summaryrefslogtreecommitdiffstats
path: root/readlicense_oo
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
commited5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch)
tree7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /readlicense_oo
parentInitial commit. (diff)
downloadlibreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz
libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'readlicense_oo')
-rw-r--r--readlicense_oo/CustomTarget_license.mk75
-rw-r--r--readlicense_oo/CustomTarget_readme.mk75
-rw-r--r--readlicense_oo/Makefile7
-rw-r--r--readlicense_oo/Module_readlicense_oo.mk20
-rw-r--r--readlicense_oo/Package_files.mk20
-rw-r--r--readlicense_oo/Package_license.mk28
-rw-r--r--readlicense_oo/Package_readlicense_oo_readmes.mk17
-rw-r--r--readlicense_oo/README.md34
-rw-r--r--readlicense_oo/docs/readme.xrm217
-rw-r--r--readlicense_oo/docs/readme.xsl170
-rw-r--r--readlicense_oo/license/CREDITS.fodt17758
-rw-r--r--readlicense_oo/license/NOTICE117
-rw-r--r--readlicense_oo/license/license.xml7261
-rw-r--r--readlicense_oo/license/license_html.xsl32
-rw-r--r--readlicense_oo/license/license_plain_text.xsl62
15 files changed, 25893 insertions, 0 deletions
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 `<div>` tag. The class attribute of
+that `<div>` 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
+
+ <title id="title" xml:lang="en-US">${PRODUCTNAME} Readme File</title>
+
+ <style type="text/css">
+ #Copyright_Trademark * {font-size: .7em;}
+ .note {border: 1px solid #993333; padding: 3px;}
+ p { margin-top: .1em; margin-bottom: .1em;}
+ .code {font-family: monospace;}
+ </style>
+ </head>
+
+ <body>
+ <div id="Intro">
+ <h1 id="Welcome" xml:lang="en-US">${PRODUCTNAME} ${PRODUCTVERSION} ReadMe</h1>
+ <p id="LatestUpdates" xml:lang="en-US">For the latest updates to this readme file, see <a href="https://git.libreoffice.org/core/tree/master/README.md">https://git.libreoffice.org/core/tree/master/README.md</a></p>
+ <p id="A6" xml:lang="en-US">This file contains important information about the ${PRODUCTNAME} software. You are recommended to read this information very carefully before starting installation.</p>
+ <p id="A7" xml:lang="en-US">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 <a href="https://www.libreoffice.org/">https://www.libreoffice.org/</a>.</p>
+ <h3 id="A10" xml:lang="en-US">Is ${PRODUCTNAME} Really Free for Any User?</h3>
+ <p id="A11" xml:lang="en-US">${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.</p>
+ <h3 id="A12" xml:lang="en-US">Why is ${PRODUCTNAME} Free for Any User?</h3>
+ <p id="A13" xml:lang="en-US">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.</p>
+ <p id="A13b" xml:lang="en-US">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 <a href="https://www.documentfoundation.org/contribution/">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind.</p>
+ </div>
+
+ <div id="Installation">
+ <h2 id="rr3fgf42r" xml:lang="en-US">Notes on Installation</h2>
+ <p class="note" id="javaneeded" xml:lang="en-US">${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.</p>
+ <h3 id="sdfsdfgf42r" xml:lang="en-US">System Requirements</h3>
+ <div class="MAC" id="SystemRequirements_OSX">
+ <ul>
+ <li>
+ <p id="macxiOSX" xml:lang="en-US">macOS 10.13 (High Sierra) or higher</p>
+ </li>
+ </ul>
+ </div>
+ <div class="WIN" id="SystemRequirements_WIN">
+ <ul>
+ <li>
+ <p id="s2s3sdf21" xml:lang="en-US">Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10</p>
+ </li>
+ </ul>
+ <p class="note" id="edssc3d" xml:lang="en-US">Please be aware that administrator rights are needed for the installation process.</p>
+ <p id="MSOReg1" xml:lang="en-US">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:</p>
+ <ul>
+ <li>
+ <p id="MSOReg2" xml:lang="en-US"><tt>REGISTER_ALL_MSO_TYPES=1</tt> will force registration of ${PRODUCTNAME} as default application for Microsoft Office formats.</p>
+ </li>
+
+ <li>
+ <p id="MSOReg3" xml:lang="en-US"><tt>REGISTER_NO_MSO_TYPES=1</tt> will suppress registration of ${PRODUCTNAME} as default application for Microsoft Office formats.</p>
+ </li>
+ </ul>
+ </div>
+ <div class="LINUX" id="Linuxi2">
+ <p id="s2we10" xml:lang="en-US">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.</p>
+ <p id="s2we11" xml:lang="en-US">This "stand-alone" ${PRODUCTNAME} installer is provided for users in need of previews, having special needs, and for out-of-the-ordinary cases.</p>
+ <ul>
+ <li>
+ <p id="s2we35" xml:lang="en-US">Linux Kernel version 3.10 or higher;</p>
+ </li>
+
+ <li>
+ <p id="s253we" xml:lang="en-US">glibc2 version 2.17 or higher;</p>
+ </li>
+
+ <li>
+ <p id="s255we" xml:lang="en-US">FreeType version 2.8.0 or higher;</p>
+ </li>
+
+ <li>
+ <p id="s256we" xml:lang="en-US">GTK version 3.20 or higher;</p>
+ </li>
+
+ <li>
+ <p id="wd2dff" xml:lang="en-US">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).</p>
+ </li>
+ </ul>
+ <p id="Linuxi3a" xml:lang="en-US">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.</p>
+ <p class="note" id="Linuxi4a" xml:lang="en-US">It is a recommended best practice to back-up your system and data before you remove or install software.</p>
+ </div>
+ <p id="Precautions" xml:lang="en-US">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.</p>
+ <h3 id="sdfsdfgf42s" xml:lang="en-US">Installation of ${PRODUCTNAME} on Debian/Ubuntu-based Linux systems</h3>
+ <p id="debianinstall1" xml:lang="en-US">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.</p>
+ <p id="debianinstall2" xml:lang="en-US">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.</p>
+ <p id="debianinstall3" xml:lang="en-US">This directory contains a subdirectory called "DEBS". Change directory to the "DEBS" directory.</p>
+ <p id="debianinstall4" xml:lang="en-US">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):</p>
+ <p id="debianinstall5" xml:lang="en-US">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):</p>
+ <p id="debianinstall6" xml:lang="en-US">sudo dpkg -i *.deb</p>
+ <p id="debianinstall9" xml:lang="en-US">The installation process is now completed, and you should have icons for all the ${PRODUCTNAME} applications in your desktop's Applications/Office menu.</p>
+ <h3 id="sdfsdfgf42t" xml:lang="en-US">Installation of ${PRODUCTNAME} on Fedora, openSUSE, Mandriva and other Linux systems using RPM packages</h3>
+ <p id="rpminstall1" xml:lang="en-US">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.</p>
+ <p id="rpminstall2" xml:lang="en-US">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.</p>
+ <p id="rpminstall3" xml:lang="en-US">This directory contains a subdirectory called "RPMS". Change directory to the "RPMS" directory.</p>
+ <p id="rpminstall4" xml:lang="en-US">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):</p>
+ <p id="rpminstall5" xml:lang="en-US">For Fedora-based systems: sudo dnf install *.rpm</p>
+ <p id="rpminstall6" xml:lang="en-US">For Mandriva-based systems: sudo urpmi *.rpm</p>
+ <p id="rpminstall7" xml:lang="en-US">For other RPM-based systems (openSUSE, etc.): rpm -Uvh *.rpm</p>
+ <p id="rpminstallE" xml:lang="en-US">The installation process is now completed, and you should have icons for all the ${PRODUCTNAME} applications in your desktop's Applications/Office menu.</p>
+ <p id="rpminstall7a" xml:lang="en-US">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.</p>
+ <h3 id="sdfsdfgf42t2" xml:lang="en-US">Notes Concerning Desktop Integration for Linux Distributions Not Covered in the Above Installation Instructions</h3>
+ <p id="otherinstall1" xml:lang="en-US">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.</p>
+ <p id="otherinstall2" xml:lang="en-US">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 (<a href="https://en.wikipedia.org/wiki/Freedesktop.org">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions.</p>
+ <h3 id="sdfsdfgf42t3" xml:lang="en-US">Installing a Language Pack</h3>
+ <p id="linuxlangpack1" xml:lang="en-US">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).</p>
+ <p id="linuxlangpack2" xml:lang="en-US">Change directory to the directory in which you extracted your downloaded language pack.</p>
+ <p id="linuxlangpack3" xml:lang="en-US">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.</p>
+ <p id="linuxlangpack4" xml:lang="en-US">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.</p>
+ <p id="linuxlangpack5" xml:lang="en-US">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):</p>
+ <p id="linuxlangpack6" xml:lang="en-US">For Debian/Ubuntu-based systems: sudo dpkg -i *.deb</p>
+ <p id="linuxlangpack7" xml:lang="en-US">For Fedora-based systems: su -c 'dnf install *.rpm'</p>
+ <p id="linuxlangpack8" xml:lang="en-US">For Mandriva-based systems: sudo urpmi *.rpm</p>
+ <p id="linuxlangpack9" xml:lang="en-US">For other RPM-using systems (openSUSE, etc.): rpm -Uvh *.rpm</p>
+ <p id="linuxlangpackA" xml:lang="en-US">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".</p>
+ <p id="linuxlangpackB" xml:lang="en-US">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).</p>
+ <p id="linuxlangpackC" xml:lang="en-US">The next time you start ${PRODUCTNAME}, it will start in the language you just installed.</p>
+ </div>
+
+ <div class="LINUX WIN" id="StartupProblems">
+ <h2 id="naso01" xml:lang="en-US">Problems During Program Startup</h2>
+ <p id="abcdef" xml:lang="en-US">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.</p>
+ </div>
+
+ <div class="WIN" id="Scroll">
+ <h2 id="naso" xml:lang="en-US">ALPS/Synaptics notebook touchpads in Windows</h2>
+ <p id="naso2" xml:lang="en-US">Due to a Windows driver issue, you cannot scroll through ${PRODUCTNAME} documents when you slide your finger across an ALPS/Synaptics touchpad.</p>
+ <p id="naso6" xml:lang="en-US">To enable touchpad scrolling, add the following lines to the "<tt>C:\Program Files\Synaptics\SynTP\SynTPEnh.ini</tt>" configuration file, and restart your computer:</p>
+ <p class="code" id="naso7">[${PRODUCTNAME}]</p>
+ <p class="code" id="naso3">FC = "SALFRAME"</p>
+ <p class="code" id="naso4">SF = 0x10000000</p>
+ <p class="code" id="naso5">SF |= 0x00004000</p>
+ <p class="note" id="naso8" xml:lang="en-US">The location of the configuration file might vary on different versions of Windows.</p>
+ </div>
+
+ <div id="Keyboard">
+ <h2 id="awe1" xml:lang="en-US">Shortcut Keys</h2>
+ <p id="w32e1" xml:lang="en-US">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.</p>
+ <div class="MAC" id="MACKeysBETA">
+ <p id="mackeys1" xml:lang="en-US">The application help of ${PRODUCTNAME} may use shortcut combinations for PC keyboards only.</p>
+ </div>
+ </div>
+
+ <div class="LINUX MAC SOLSPARC SOLX86" id="FileLocking">
+ <h2 id="gfh6w" xml:lang="en-US">File Locking</h2>
+ <p id="pji76w" xml:lang="en-US">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 <tt>soffice</tt> script and change the line "<tt>export SAL_ENABLE_FILE_LOCKING</tt>" to "<tt># export SAL_ENABLE_FILE_LOCKING</tt>". If you disable file locking, the write access of a document is not restricted to the user who first opens the document.</p>
+ </div>
+
+ <div class="LINUX" id="Graphic Performance">
+ <h2 id="gfh6w0" xml:lang="en-US">Graphic Performance</h2>
+ <p id="pji76w0" xml:lang="en-US">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.</p>
+ </div>
+
+ <div class="WIN" id="Mapi">
+ <h2 id="gfh6w1" xml:lang="en-US">Problems When Sending Documents as Emails From ${PRODUCTNAME}</h2>
+ <p id="pji76w1" xml:lang="en-US">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 <a href="https://www.microsoft.com">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for "mapi dll".</p>
+ </div>
+
+ <div id="A11y">
+ <h2 id="aw22" xml:lang="en-US">Important Accessibility Notes</h2>
+ <p id="access7" xml:lang="en-US">For more information on the accessibility features in ${PRODUCTNAME}, see <a href="https://www.libreoffice.org/accessibility/">https://www.libreoffice.org/accessibility/</a></p>
+ </div>
+
+ <div id="UserSupport">
+ <h2 id="support" xml:lang="en-US">User Support</h2>
+ <p id="support1" xml:lang="en-US">The <a href="https://www.libreoffice.org/get-help/community-support/">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href="https://www.documentfoundation.org/nabble/">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href="https://www.libreoffice.org/lists/users/">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href="mailto:users@libreoffice.org">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href="mailto:users+subscribe@libreoffice.org">users+subscribe@libreoffice.org</a>.</p>
+ <p id="faq" url="ahead" xml:lang="en-US">Also check the FAQ section at <a href="https://www.libreoffice.org/get-help/frequently-asked-questions/">the LibreOffice website</a>.</p>
+ </div>
+
+ <div id="ReportBugsIssues">
+ <h2 id="reportbugs" xml:lang="en-US">Reporting Bugs &amp; Issues</h2>
+ <p id="reportbugs1" xml:lang="en-US">Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href="https://bugs.documentfoundation.org/">https://bugs.documentfoundation.org/</a>. 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}.</p>
+ </div>
+
+ <div id="GettingInvolved">
+ <h2 id="gettinginvolved1" xml:lang="en-US">Getting Involved</h2>
+ <p id="gettinginvolved2" xml:lang="en-US">The ${PRODUCTNAME} Community would very much benefit from your active participation in the development of this important open source project.</p>
+ <p id="gettingimvolved3" xml:lang="en-US">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 <a href="https://www.libreoffice.org/community/get-involved/">the LibreOffice website</a>.</p>
+ <h3 id="howtostart" xml:lang="en-US">How to Start</h3>
+ <p id="howtostart1" xml:lang="en-US">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 <a href="https://www.libreoffice.org/community/developers/">the LibreOffice website</a>.</p>
+ <h3 id="subscribe" xml:lang="en-US">Subscribe</h3>
+ <p id="subscribe1" xml:lang="en-US">Here are a few of the mailing lists to which you can subscribe at <a href="https://www.libreoffice.org/get-help/mailing-lists/">https://www.libreoffice.org/get-help/mailing-lists/</a></p>
+ <ul>
+ <li>
+ <p id="subscribelist1" xml:lang="en-US">News: announce@documentfoundation.org *recommended to all users* (light traffic)</p>
+ </li>
+
+ <li>
+ <p id="subscribelist2" xml:lang="en-US">Main user list: users@global.libreoffice.org *easy way to lurk on discussions* (heavy traffic)</p>
+ </li>
+
+ <li>
+ <p id="subscribelist3" xml:lang="en-US">Marketing project: marketing@global.libreoffice.org *beyond development* (getting heavy)</p>
+ </li>
+
+ <li>
+ <p id="subscribelist4" xml:lang="en-US">General developer list: libreoffice@lists.freedesktop.org (heavy traffic)</p>
+ </li>
+ </ul>
+ <h3 id="joining0" xml:lang="en-US">Joining one or more Projects</h3>
+ <p id="joining" xml:lang="en-US">You can make major contributions to this important open source project even if you have limited software design or coding experience. Yes, you!</p>
+ </div>
+
+ <div id="Credits">
+ <p id="credits" xml:lang="en-US">We hope you enjoy working with the new ${PRODUCTNAME} ${PRODUCTVERSION} and will join us online.</p>
+ <p id="credits2" xml:lang="en-US">The LibreOffice Community</p>
+ </div>
+
+ <div id="ModifiedSourceCode">
+ <h2 id="ModifiedSourceCodeHeading" xml:lang="en-US">Used / Modified Source Code</h2>
+ <p id="ModifiedSourceCodePara" xml:lang="en-US">Portions Copyright 1998, 1999 James Clark. Portions Copyright 1996, 1998 Netscape Communications Corporation.</p>
+ </div>
+ </body>
+</html>
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+<!-- <xsl:output method="text" doctype-public="-//W3C//DTD HTML 3.2//EN" omit-xml-declaration="yes"/> -->
+
+ <!-- inputvariable declaration -->
+ <xsl:param name="os1"/>
+ <xsl:param name="cp1"/>
+ <xsl:param name="com1"/>
+ <xsl:param name="lang1"/>
+ <xsl:param name="type"/>
+ <xsl:param name="file"/>
+ <xsl:strip-space elements="*"/>
+
+ <xsl:param name="platform">
+ <xsl:if test="$os1='LINUX'">
+ <xsl:value-of select="'LINUX'"/>
+ </xsl:if>
+ <xsl:if test="$os1='WNT'">
+ <xsl:value-of select="'WIN'"/>
+ </xsl:if>
+ <xsl:if test="$os1='SOLARIS'">
+ <xsl:if test="$cp1='SPARC'">
+ <xsl:value-of select="'SOLSPARC'"/>
+ </xsl:if>
+ <xsl:if test="$cp1='INTEL'">
+ <xsl:value-of select="'SOLX86'"/>
+ </xsl:if>
+ </xsl:if>
+ <xsl:if test="$os1='MACOSX'">
+ <xsl:value-of select="'MAC'"/>
+ </xsl:if>
+ </xsl:param>
+
+ <xsl:param name="lf">
+ <xsl:choose>
+ <xsl:when test="$platform='WIN'"><xsl:text>&#xD;&#xA;</xsl:text></xsl:when>
+ <xsl:otherwise><xsl:text>&#xA;</xsl:text></xsl:otherwise>
+ </xsl:choose>
+ </xsl:param>
+
+ <xsl:template match="/">
+ <xsl:choose>
+ <xsl:when test="$type='html'">
+
+ <xsl:document method="html" href="{$file}" doctype-public="-//W3C//DTD HTML 3.2//EN">
+ <xsl:apply-templates mode="html"/>
+ </xsl:document>
+
+ </xsl:when>
+ <xsl:when test="$type='text'">
+
+ <xsl:document method="text" href="{$file}">
+ <xsl:call-template name="textout" />
+ </xsl:document>
+
+ </xsl:when>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template match="*" mode="html">
+ <xsl:choose>
+ <xsl:when test="(contains(@class,$platform) or not(@class) or (name(.)='p'))">
+ <xsl:if test="(@xml:lang=$lang1 or not(@xml:lang))"> <!-- check for correct language -->
+ <xsl:element name="{name(.)}">
+ <xsl:if test="(name(.)='a')">
+ <xsl:attribute name="href">
+ <xsl:value-of select="@href"/>
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:if test="(name(.)='p') and (@class)">
+ <xsl:attribute name="class">
+ <xsl:value-of select="@class"/>
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:if test="name(.)='div'">
+ <xsl:attribute name="id">
+ <xsl:value-of select="@id"/>
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:apply-templates mode="html"/>
+ </xsl:element>
+ </xsl:if>
+ </xsl:when>
+ <xsl:otherwise>
+
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template name="textout">
+ <xsl:apply-templates />
+ </xsl:template>
+
+ <xsl:template match="*">
+ <xsl:if test="(@xml:lang=$lang1 or not(@xml:lang))"> <!-- check for correct language -->
+ <xsl:choose>
+ <xsl:when test="name(.)='html'">
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='body'">
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='hr'">
+ <xsl:text>
+
+----------------------------------------------------------------------------------------------------------
+
+</xsl:text>
+ </xsl:when>
+ <xsl:when test="name(.)='div'">
+ <xsl:if test="(contains(@class,$platform) or not(@class))">
+ <xsl:apply-templates/>
+ </xsl:if>
+ </xsl:when>
+ <xsl:when test="name(.)='a'">
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='tt'">
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='li'">
+ <xsl:value-of select="$lf"/>* <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='ul'">
+ <xsl:value-of select="$lf"/>
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='ol'">
+ <xsl:value-of select="$lf"/>
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='p'">
+ <xsl:if test="(not(name(..)='li') and (count(a) = 0))">
+ <xsl:value-of select="$lf"/>
+ <xsl:value-of select="$lf"/>
+ </xsl:if>
+ <xsl:apply-templates/>
+ </xsl:when>
+ <xsl:when test="name(.)='h1'">
+ <xsl:value-of select="$lf"/>
+ <xsl:text>======================================================================</xsl:text>
+ <xsl:value-of select="$lf"/>
+ <xsl:apply-templates/>
+ <xsl:value-of select="$lf"/>
+ <xsl:text>======================================================================</xsl:text>
+ <xsl:value-of select="$lf"/>
+ </xsl:when>
+ <xsl:when test="name(.)='h2'">
+ <xsl:value-of select="$lf"/>
+ <xsl:value-of select="$lf"/>
+ <xsl:text>----------------------------------------------------------------------</xsl:text>
+ <xsl:value-of select="$lf"/>
+ <xsl:apply-templates/>
+ <xsl:value-of select="$lf"/>
+ <xsl:text>----------------------------------------------------------------------</xsl:text>
+ </xsl:when>
+ <xsl:when test="name(.)='h3'">
+ <xsl:value-of select="$lf"/>
+ <xsl:value-of select="$lf"/>
+ <xsl:apply-templates/>
+ <xsl:value-of select="$lf"/>
+ <xsl:text>----------------------------------------------------------------------</xsl:text>
+ </xsl:when>
+ </xsl:choose>
+ </xsl:if>
+ </xsl:template>
+
+</xsl:stylesheet>
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
+ <office:meta><dc:title>Credits » LibreOffice</dc:title><meta:keyword>Credits</meta:keyword><meta:keyword>contributors</meta:keyword><meta:keyword>coders</meta:keyword><meta:keyword>developers</meta:keyword><dc:description>Credits for the LibreOffice development/coding.</dc:description><meta:generator>LibreOffice/7.5.2.2$Linux_X86_64 LibreOffice_project/53bb9681a964705cf672590721dbc85eb4d0c3a2</meta:generator><dc:date>2012-02-20T22:17:18.060000000</dc:date><meta:editing-duration>PT14M12S</meta:editing-duration><meta:editing-cycles>3</meta:editing-cycles><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="2" meta:paragraph-count="4739" meta:word-count="17670" meta:character-count="127748" meta:non-whitespace-character-count="112022"/><meta:user-defined meta:name="google-site-verification">JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA</meta:user-defined></office:meta>
+ <office:settings>
+ <config:config-item-set config:name="ooo:view-settings">
+ <config:config-item config:name="ViewAreaTop" config:type="long">515</config:config-item>
+ <config:config-item config:name="ViewAreaLeft" config:type="long">501</config:config-item>
+ <config:config-item config:name="ViewAreaWidth" config:type="long">34133</config:config-item>
+ <config:config-item config:name="ViewAreaHeight" config:type="long">27148</config:config-item>
+ <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="InBrowseMode" config:type="boolean">true</config:config-item>
+ <config:config-item-map-indexed config:name="Views">
+ <config:config-item-map-entry>
+ <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
+ <config:config-item config:name="ViewLeft" config:type="long">3649</config:config-item>
+ <config:config-item config:name="ViewTop" config:type="long">3434</config:config-item>
+ <config:config-item config:name="VisibleLeft" config:type="long">501</config:config-item>
+ <config:config-item config:name="VisibleTop" config:type="long">515</config:config-item>
+ <config:config-item config:name="VisibleRight" config:type="long">34632</config:config-item>
+ <config:config-item config:name="VisibleBottom" config:type="long">27661</config:config-item>
+ <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
+ <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
+ <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
+ <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
+ </config:config-item-map-entry>
+ </config:config-item-map-indexed>
+ </config:config-item-set>
+ <config:config-item-set config:name="ooo:configuration-settings">
+ <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
+ <config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintFaxName" config:type="string"/>
+ <config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="RsidRoot" config:type="int">1557161</config:config-item>
+ <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseDataSource" config:type="string">Adressen</config:config-item>
+ <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
+ <config:config-item-map-indexed config:name="ForbiddenCharacters">
+ <config:config-item-map-entry>
+ <config:config-item config:name="Language" config:type="string">hu</config:config-item>
+ <config:config-item config:name="Country" config:type="string">HU</config:config-item>
+ <config:config-item config:name="Variant" config:type="string"/>
+ <config:config-item config:name="BeginLine" config:type="string"/>
+ <config:config-item config:name="EndLine" config:type="string"/>
+ </config:config-item-map-entry>
+ </config:config-item-map-indexed>
+ <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="Rsid" config:type="int">12220477</config:config-item>
+ <config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
+ <config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
+ <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
+ <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrinterName" config:type="string"/>
+ <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
+ <config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
+ <config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
+ <config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
+ <config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
+ <config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
+ <config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
+ </config:config-item-set>
+ </office:settings>
+ <office:scripts>
+ <office:script script:language="ooo:Basic">
+ <ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <ooo:library-embedded ooo:name="Standard"/>
+ </ooo:libraries>
+ </office:script>
+ </office:scripts>
+ <office:font-face-decls>
+ <style:font-face style:name="Albany" svg:font-family="Albany" style:font-family-generic="swiss" style:font-pitch="variable"/>
+ <style:font-face style:name="Arial Unicode MS" svg:font-family="&apos;Arial Unicode MS&apos;" style:font-pitch="variable"/>
+ <style:font-face style:name="HG Mincho Light J" svg:font-family="&apos;HG Mincho Light J&apos;" style:font-pitch="variable"/>
+ <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Bold" style:font-family-generic="swiss" style:font-pitch="variable"/>
+ <style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
+ <style:font-face style:name="Mangal" svg:font-family="Mangal"/>
+ <style:font-face style:name="Mangal1" svg:font-family="Mangal" style:font-family-generic="system" style:font-pitch="variable"/>
+ <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol"/>
+ <style:font-face style:name="SimSun" svg:font-family="SimSun" style:font-family-generic="system" style:font-pitch="variable"/>
+ <style:font-face style:name="Thorndale AMT" svg:font-family="&apos;Thorndale AMT&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
+ <style:font-face style:name="sans-serif" svg:font-family="sans-serif"/>
+ </office:font-face-decls>
+ <office:styles>
+ <style:default-style style:family="graphic">
+ <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb" style:flow-with-text="true"/>
+ <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
+ <style:tab-stops/>
+ </style:paragraph-properties>
+ <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="hu" fo:country="HU" style:letter-kerning="true" style:font-name-asian="SimSun" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Mangal1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
+ </style:default-style>
+ <style:default-style style:family="paragraph">
+ <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
+ <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="hu" fo:country="HU" style:letter-kerning="true" style:font-name-asian="SimSun" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Mangal1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
+ </style:default-style>
+ <style:default-style style:family="table">
+ <style:table-properties table:border-model="collapsing"/>
+ </style:default-style>
+ <style:default-style style:family="table-row">
+ <style:table-row-properties fo:keep-together="auto"/>
+ </style:default-style>
+ <style:style style:name="Standard" style:family="paragraph" style:class="text">
+ <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:font-name="sans-serif" fo:font-family="sans-serif" fo:font-style="normal" fo:font-weight="normal" style:font-name-asian="sans-serif" style:font-family-asian="sans-serif" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="sans-serif" style:font-family-complex="sans-serif" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+ </style:style>
+ <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
+ <style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" fo:keep-with-next="always"/>
+ <style:text-properties fo:color="#18a303" loext:opacity="100%" style:font-name="Albany" fo:font-family="Albany" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="HG Mincho Light J" style:font-family-asian="&apos;HG Mincho Light J&apos;" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="Arial Unicode MS" style:font-family-complex="&apos;Arial Unicode MS&apos;" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
+ </style:style>
+ <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false"/>
+ <style:text-properties style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" fo:language="en" fo:country="US"/>
+ </style:style>
+ <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
+ <style:text-properties style:font-size-asian="12pt" style:font-name-complex="Mangal" style:font-family-complex="Mangal"/>
+ </style:style>
+ <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
+ <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-name-complex="Mangal" style:font-family-complex="Mangal" style:font-size-complex="12pt" style:font-style-complex="italic"/>
+ </style:style>
+ <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+ <style:text-properties style:font-size-asian="12pt" style:font-name-complex="Mangal" style:font-family-complex="Mangal"/>
+ </style:style>
+ <style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="html">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" style:border-line-width-bottom="0.002cm 0.035cm 0.002cm" fo:padding="0cm" fo:border-left="none" fo:border-right="none" fo:border-top="none" fo:border-bottom="1.11pt double #808080"/>
+ <style:text-properties fo:font-size="6pt"/>
+ </style:style>
+ <style:style style:name="Sender" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:text-properties fo:font-style="italic"/>
+ </style:style>
+ <style:style style:name="Table_20_Contents" style:display-name="Table Contents" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="extra"/>
+ <style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0">
+ <style:tab-stops>
+ <style:tab-stop style:position="8.5cm" style:type="center"/>
+ <style:tab-stop style:position="17cm" style:type="right"/>
+ </style:tab-stops>
+ </style:paragraph-properties>
+ </style:style>
+ <style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0">
+ <style:tab-stops>
+ <style:tab-stop style:position="8.498cm" style:type="center"/>
+ <style:tab-stop style:position="16.999cm" style:type="right"/>
+ </style:tab-stops>
+ </style:paragraph-properties>
+ </style:style>
+ <style:style style:name="Header" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0">
+ <style:tab-stops>
+ <style:tab-stop style:position="8.498cm" style:type="center"/>
+ <style:tab-stop style:position="16.999cm" style:type="right"/>
+ </style:tab-stops>
+ </style:paragraph-properties>
+ </style:style>
+ <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
+ <style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="24pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-name-asian="HG Mincho Light J" style:font-family-asian="&apos;HG Mincho Light J&apos;" style:font-pitch-asian="variable" style:font-size-asian="24pt" style:font-weight-asian="bold" style:font-name-complex="Arial Unicode MS" style:font-family-complex="&apos;Arial Unicode MS&apos;" style:font-pitch-complex="variable" style:font-size-complex="24pt" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
+ <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
+ </style:style>
+ <style:style style:name="Text_20_body.roles" style:display-name="Text body.roles" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:text-properties fo:font-variant="small-caps"/>
+ </style:style>
+ <style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:list-style-name="" style:class="text">
+ <style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-name-asian="SimSun" style:font-family-asian="SimSun" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-name-complex="Mangal1" style:font-family-complex="Mangal" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Table_20_Heading" style:display-name="Table Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:class="extra">
+ <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" text:number-lines="false" text:line-number="0"/>
+ <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:list-style-name="" style:class="text">
+ <style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="18pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-name-asian="SimSun" style:font-family-asian="SimSun" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-name-complex="Mangal1" style:font-family-complex="Mangal" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Frame_20_contents" style:display-name="Frame contents" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="extra"/>
+ <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
+ <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+ <style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
+ <style:paragraph-properties fo:margin-top="0.106cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/>
+ <style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/>
+ </style:style>
+ <style:style style:name="Endnote_20_Symbol" style:display-name="Endnote Symbol" style:family="text"/>
+ <style:style style:name="Footnote_20_Symbol" style:display-name="Footnote Symbol" style:family="text"/>
+ <style:style style:name="Internet_20_link" style:display-name="Internet link" style:family="text">
+ <style:text-properties fo:color="#18a303" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-underline-style="none" style:text-blinking="false" style:text-overline-style="none" style:text-overline-color="font-color"/>
+ </style:style>
+ <style:style style:name="Visited_20_Internet_20_Link" style:display-name="Visited Internet Link" style:family="text">
+ <style:text-properties fo:color="#18a303" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" fo:language="zxx" fo:country="none" style:text-underline-style="none" style:text-blinking="false" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
+ </style:style>
+ <style:style style:name="Bullet_20_Symbols" style:display-name="Bullet Symbols" style:family="text">
+ <style:text-properties style:font-name="OpenSymbol" fo:font-family="OpenSymbol" style:font-name-asian="OpenSymbol" style:font-family-asian="OpenSymbol" style:font-name-complex="OpenSymbol" style:font-family-complex="OpenSymbol"/>
+ </style:style>
+ <style:style style:name="Strong_20_Emphasis" style:display-name="Strong Emphasis" style:family="text">
+ <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Frame" style:family="graphic">
+ <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content"/>
+ </style:style>
+ <style:style style:name="Graphics" style:family="graphic">
+ <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
+ </style:style>
+ <style:style style:name="OLE" style:family="graphic">
+ <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
+ </style:style>
+ <text:outline-style style:name="Outline">
+ <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.762cm" fo:text-indent="-0.762cm" fo:margin-left="0.762cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="2" loext:num-list-format="%2%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.016cm" fo:text-indent="-1.016cm" fo:margin-left="1.016cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="3" loext:num-list-format="%3%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:text-indent="-1.27cm" fo:margin-left="1.27cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="4" loext:num-list-format="%4%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.524cm" fo:text-indent="-1.524cm" fo:margin-left="1.524cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="5" loext:num-list-format="%5%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.778cm" fo:text-indent="-1.778cm" fo:margin-left="1.778cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="6" loext:num-list-format="%6%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.032cm" fo:text-indent="-2.032cm" fo:margin-left="2.032cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="7" loext:num-list-format="%7%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.286cm" fo:text-indent="-2.286cm" fo:margin-left="2.286cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="8" loext:num-list-format="%8%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:text-indent="-2.54cm" fo:margin-left="2.54cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="9" loext:num-list-format="%9%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.794cm" fo:text-indent="-2.794cm" fo:margin-left="2.794cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="10" loext:num-list-format="%10%" style:num-format="">
+ <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+ <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.048cm" fo:text-indent="-3.048cm" fo:margin-left="3.048cm"/>
+ </style:list-level-properties>
+ </text:outline-level-style>
+ </text:outline-style>
+ <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
+ <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
+ <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/>
+ </office:styles>
+ <office:automatic-styles>
+ <style:style style:name="Tabelle1" style:family="table">
+ <style:table-properties style:width="26.174cm" table:align="left"/>
+ </style:style>
+ <style:style style:name="Tabelle1.A" style:family="table-column">
+ <style:table-column-properties style:column-width="6.246cm"/>
+ </style:style>
+ <style:style style:name="Tabelle1.B" style:family="table-column">
+ <style:table-column-properties style:column-width="6.828cm"/>
+ </style:style>
+ <style:style style:name="Tabelle1.C" style:family="table-column">
+ <style:table-column-properties style:column-width="6.272cm"/>
+ </style:style>
+ <style:style style:name="Tabelle1.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle1.B435" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle2" style:family="table">
+ <style:table-properties style:width="18.157cm" table:align="left"/>
+ </style:style>
+ <style:style style:name="Tabelle2.A" style:family="table-column">
+ <style:table-column-properties style:column-width="3.865cm"/>
+ </style:style>
+ <style:style style:name="Tabelle2.B" style:family="table-column">
+ <style:table-column-properties style:column-width="4.103cm"/>
+ </style:style>
+ <style:style style:name="Tabelle2.C" style:family="table-column">
+ <style:table-column-properties style:column-width="5.293cm"/>
+ </style:style>
+ <style:style style:name="Tabelle2.D" style:family="table-column">
+ <style:table-column-properties style:column-width="4.897cm"/>
+ </style:style>
+ <style:style style:name="Tabelle2.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle2.C8" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle3" style:family="table">
+ <style:table-properties style:width="17.999cm" table:align="left"/>
+ </style:style>
+ <style:style style:name="Tabelle3.A" style:family="table-column">
+ <style:table-column-properties style:column-width="3.865cm"/>
+ </style:style>
+ <style:style style:name="Tabelle3.B" style:family="table-column">
+ <style:table-column-properties style:column-width="3.838cm"/>
+ </style:style>
+ <style:style style:name="Tabelle3.C" style:family="table-column">
+ <style:table-column-properties style:column-width="6.193cm"/>
+ </style:style>
+ <style:style style:name="Tabelle3.D" style:family="table-column">
+ <style:table-column-properties style:column-width="4.103cm"/>
+ </style:style>
+ <style:style style:name="Tabelle3.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle3.C33" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle4" style:family="table">
+ <style:table-properties style:width="17.02cm" table:align="left"/>
+ </style:style>
+ <style:style style:name="Tabelle4.A" style:family="table-column">
+ <style:table-column-properties style:column-width="3.918cm"/>
+ </style:style>
+ <style:style style:name="Tabelle4.B" style:family="table-column">
+ <style:table-column-properties style:column-width="4.897cm"/>
+ </style:style>
+ <style:style style:name="Tabelle4.C" style:family="table-column">
+ <style:table-column-properties style:column-width="4.288cm"/>
+ </style:style>
+ <style:style style:name="Tabelle4.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle4.B3" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle5" style:family="table">
+ <style:table-properties style:width="33.556cm" table:align="left"/>
+ </style:style>
+ <style:style style:name="Tabelle5.A" style:family="table-column">
+ <style:table-column-properties style:column-width="6.854cm"/>
+ </style:style>
+ <style:style style:name="Tabelle5.B" style:family="table-column">
+ <style:table-column-properties style:column-width="6.722cm"/>
+ </style:style>
+ <style:style style:name="Tabelle5.C" style:family="table-column">
+ <style:table-column-properties style:column-width="8.072cm"/>
+ </style:style>
+ <style:style style:name="Tabelle5.D" style:family="table-column">
+ <style:table-column-properties style:column-width="11.908cm"/>
+ </style:style>
+ <style:style style:name="Tabelle5.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="Tabelle5.D705" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties fo:font-size="2pt" style:font-size-asian="2pt" style:font-size-complex="2pt"/>
+ </style:style>
+ <style:style style:name="P2" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties fo:font-size="2pt" officeooo:paragraph-rsid="00aed2a1" style:font-size-asian="2pt" style:font-size-complex="2pt"/>
+ </style:style>
+ <style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties fo:font-size="2pt" officeooo:paragraph-rsid="00af6e70" style:font-size-asian="2pt" style:font-size-complex="2pt"/>
+ </style:style>
+ <style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto"/>
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P7" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P8" style:family="paragraph" style:parent-style-name="Heading_20_2">
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P9" style:family="paragraph" style:parent-style-name="Heading_20_3">
+ <style:text-properties officeooo:paragraph-rsid="00aed2a1"/>
+ </style:style>
+ <style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P11" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto"/>
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P12" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P13" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P14" style:family="paragraph" style:parent-style-name="Heading_20_2">
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P15" style:family="paragraph" style:parent-style-name="Heading_20_3">
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P16" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto"/>
+ </style:style>
+ <style:style style:name="P17" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="P18" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:paragraph-rsid="00378072"/>
+ </style:style>
+ <style:style style:name="P19" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:paragraph-rsid="00378072"/>
+ </style:style>
+ <style:style style:name="P20" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:rsid="001cf3c0" officeooo:paragraph-rsid="001cf3c0"/>
+ </style:style>
+ <style:style style:name="P21" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:paragraph-rsid="001cf3c0"/>
+ </style:style>
+ <style:style style:name="P22" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:rsid="0020b307" officeooo:paragraph-rsid="0020b307"/>
+ </style:style>
+ <style:style style:name="P23" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:paragraph-rsid="0020b307"/>
+ </style:style>
+ <style:style style:name="P24" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
+ <style:paragraph-properties style:page-number="auto" fo:padding="0cm" fo:border="none"/>
+ <style:text-properties officeooo:rsid="00378072" officeooo:paragraph-rsid="00378072"/>
+ </style:style>
+ <style:style style:name="P25" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P26" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" style:writing-mode="lr-tb"/>
+ </style:style>
+ <style:style style:name="P27" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:paragraph-rsid="0036e394"/>
+ </style:style>
+ <style:style style:name="P28" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:paragraph-rsid="00586a23"/>
+ </style:style>
+ <style:style style:name="P29" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:padding="0cm" fo:border="none"/>
+ </style:style>
+ <style:style style:name="P30" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="HTML">
+ <style:paragraph-properties style:page-number="auto"/>
+ <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+ </style:style>
+ <style:style style:name="P31" style:family="paragraph" style:parent-style-name="Table_20_Contents">
+ <style:text-properties fo:font-size="2pt" style:font-size-asian="2pt" style:font-size-complex="2pt"/>
+ </style:style>
+ <style:style style:name="P32" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
+ <style:style style:name="P33" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P34" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L2">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P35" style:family="paragraph" style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P36" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L3"/>
+ <style:style style:name="P37" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L3">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P38" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L4"/>
+ <style:style style:name="P39" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L4">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P40" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L5"/>
+ <style:style style:name="P41" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L5">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P42" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L6"/>
+ <style:style style:name="P43" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L6">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P44" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L7"/>
+ <style:style style:name="P45" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L7">
+ <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="T1" style:family="text">
+ <style:text-properties style:text-position="33% 80%"/>
+ </style:style>
+ <style:style style:name="T2" style:family="text">
+ <style:text-properties fo:font-weight="bold"/>
+ </style:style>
+ <style:style style:name="T3" style:family="text">
+ <style:text-properties officeooo:rsid="001c98bd"/>
+ </style:style>
+ <style:style style:name="T4" style:family="text">
+ <style:text-properties officeooo:rsid="0078187e"/>
+ </style:style>
+ <style:style style:name="T5" style:family="text"/>
+ <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
+ <style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="page" style:horizontal-pos="from-left" style:horizontal-rel="page" style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
+ </style:style>
+ <style:style style:name="Sect1" style:family="section">
+ <style:section-properties style:editable="false">
+ <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+ </style:section-properties>
+ </style:style>
+ <text:list-style style:name="L1">
+ <text:list-level-style-number text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ </text:list-style>
+ <text:list-style style:name="L2">
+ <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ </text:list-style>
+ <text:list-style style:name="L3">
+ <text:list-level-style-number text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ <text:list-level-style-number text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." style:num-format="a">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-number>
+ </text:list-style>
+ <text:list-style style:name="L4">
+ <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ </text:list-style>
+ <text:list-style style:name="L5">
+ <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ </text:list-style>
+ <text:list-style style:name="L6">
+ <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ </text:list-style>
+ <text:list-style style:name="L7">
+ <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="0.752cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="2.002cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="3.253cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="4.503cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="5.754cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="7.005cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="8.255cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="9.506cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="10.756cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." text:bullet-char="•">
+ <style:list-level-properties text:space-before="12.007cm" text:min-label-width="0.499cm"/>
+ </text:list-level-style-bullet>
+ </text:list-style>
+ <style:page-layout style:name="pm1">
+ <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+ <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+ </style:page-layout-properties>
+ <style:header-style/>
+ <style:footer-style/>
+ </style:page-layout>
+ <style:page-layout style:name="pm2">
+ <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+ <style:footnote-sep style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+ </style:page-layout-properties>
+ <style:header-style/>
+ <style:footer-style/>
+ </style:page-layout>
+ <style:page-layout style:name="pm3">
+ <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="1cm" fo:margin-bottom="1cm" fo:margin-left="2cm" fo:margin-right="1cm" fo:background-color="#ffffff" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" draw:fill="solid" draw:fill-color="#ffffff" draw:opacity="100%" style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+ <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+ </style:page-layout-properties>
+ <style:header-style/>
+ <style:footer-style/>
+ </style:page-layout>
+ <style:style style:name="dp1" style:family="drawing-page">
+ <style:drawing-page-properties draw:background-size="full"/>
+ </style:style>
+ <style:style style:name="dp2" style:family="drawing-page">
+ <style:drawing-page-properties draw:fill="solid" draw:background-size="full" draw:fill-color="#ffffff" draw:opacity="100%"/>
+ </style:style>
+ </office:automatic-styles>
+ <office:master-styles>
+ <style:master-page style:name="Standard" style:page-layout-name="pm1" draw:style-name="dp1"/>
+ <style:master-page style:name="Endnote" style:page-layout-name="pm2" draw:style-name="dp1"/>
+ <style:master-page style:name="HTML" style:page-layout-name="pm3" draw:style-name="dp2"/>
+ </office:master-styles>
+ <office:body>
+ <office:text text:use-soft-page-breaks="true">
+ <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+ <text:sequence-decls>
+ <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Table"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Text"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
+ </text:sequence-decls><draw:frame draw:style-name="fr1" draw:name="graphics114" text:anchor-type="page" text:anchor-page-number="1" svg:x="0.212cm" svg:y="0.28cm" svg:width="8.304cm" svg:height="2.653cm" draw:z-index="0"><draw:image draw:mime-type="image/png">
+ <office:binary-data>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=
+ </office:binary-data>
+ </draw:image>
+ </draw:frame>
+ <text:section text:style-name="Sect1" text:name="BgContainer">
+ <text:p text:style-name="P30">Credits</text:p>
+ <text:p text:style-name="Text_20_body">1867 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-05-03 02:05:41.</text:p>
+ <text:p text:style-name="Text_20_body"><text:span text:style-name="T1">*</text:span> marks developers whose first contributions happened after 2010-09-28.</text:p>
+ <text:h text:style-name="Heading_20_2" text:outline-level="2">Developers committing code since 2010-09-28</text:h>
+ <table:table table:name="Tabelle1" table:style-name="Tabelle1">
+ <table:table-column table:style-name="Tabelle1.A"/>
+ <table:table-column table:style-name="Tabelle1.B"/>
+ <table:table-column table:style-name="Tabelle1.C"/>
+ <table:table-column table:style-name="Tabelle1.B"/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ruediger Timm<text:line-break/>Commits: 82464<text:line-break/>Joined: 2000-10-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Caolán McNamara<text:line-break/>Commits: 34437<text:line-break/>Joined: 2000-10-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kurt Zenker<text:line-break/>Commits: 31752<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver Bolte<text:line-break/>Commits: 31008<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jens-Heiner Rechtien [hr]<text:line-break/>Commits: 28805<text:line-break/>Joined: 2000-09-18</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Vladimir Glazunov<text:line-break/>Commits: 25434<text:line-break/>Joined: 2000-12-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Stephan Bergmann<text:line-break/>Commits: 20534<text:line-break/>Joined: 2000-10-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Noel Grandin<text:line-break/>Commits: 17592<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Miklos Vajna<text:line-break/>Commits: 9504<text:line-break/>Joined: 2010-07-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ivo Hinkelmann<text:line-break/>Commits: 9480<text:line-break/>Joined: 2002-09-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tor Lillqvist<text:line-break/>Commits: 9160<text:line-break/>Joined: 2010-03-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Stahl<text:line-break/>Commits: 8192<text:line-break/>Joined: 2008-06-16</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kohei Yoshida<text:line-break/>Commits: 5571<text:line-break/>Joined: 2009-06-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Eike Rathke<text:line-break/>Commits: 5303<text:line-break/>Joined: 2000-10-11</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Markus Mohrhard<text:line-break/>Commits: 5203<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Frank Schoenheit [fs]<text:line-break/>Commits: 5008<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">David Tardon<text:line-break/>Commits: 3648<text:line-break/>Joined: 2009-11-12</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Julien Nabet<text:line-break/>Commits: 3620<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrea Gelmini<text:line-break/>Commits: 3481<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 3221<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Luboš Luňák<text:line-break/>Commits: 3201<text:line-break/>Joined: 2010-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Hans-Joachim Lankenau<text:line-break/>Commits: 3007<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ocke Janssen [oj]<text:line-break/>Commits: 2850<text:line-break/>Joined: 2000-09-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mike Kaganski<text:line-break/>Commits: 2700<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jan Holesovsky<text:line-break/>Commits: 2672<text:line-break/>Joined: 2009-06-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mathias Bauer<text:line-break/>Commits: 2580<text:line-break/>Joined: 2000-09-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver Specht<text:line-break/>Commits: 2549<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Meeks<text:line-break/>Commits: 2491<text:line-break/>Joined: 2004-08-05</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Bjoern Michaelsen<text:line-break/>Commits: 2488<text:line-break/>Joined: 2009-10-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Xisco Fauli<text:line-break/>Commits: 2486<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Norbert Thiebaud<text:line-break/>Commits: 2176<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thomas Arnhold<text:line-break/>Commits: 2176<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Philipp Lohmann [pl]<text:line-break/>Commits: 2089<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andras Timar<text:line-break/>Commits: 1987<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Christian Lippka<text:line-break/>Commits: 1805<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Olivier Hallot<text:line-break/>Commits: 1772<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matúš Kukan<text:line-break/>Commits: 1712<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Armin Le Grand (Allotropia)<text:line-break/>Commits: 1549<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Takeshi Abe<text:line-break/>Commits: 1486<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matteo Casalin<text:line-break/>Commits: 1476<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Sherlock<text:line-break/>Commits: 1453<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Thorsten Behrens<text:line-break/>Commits: 1441<text:line-break/>Joined: 2001-04-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Fridrich Štrba<text:line-break/>Commits: 1338<text:line-break/>Joined: 2007-02-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Thomas Lange [tl]<text:line-break/>Commits: 1310<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Niklas Nebel<text:line-break/>Commits: 1296<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan-Marek Glogowski<text:line-break/>Commits: 1232<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>andreas kainz<text:line-break/>Commits: 1228<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tamás Zolnai<text:line-break/>Commits: 1208<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Daniel Rentz [dr]<text:line-break/>Commits: 1206<text:line-break/>Joined: 2000-09-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 1161<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Szymon Kłos<text:line-break/>Commits: 1156<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Christian Lohmaier<text:line-break/>Commits: 1111<text:line-break/>Joined: 2008-06-01</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabor Kelemen<text:line-break/>Commits: 1106<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lionel Elie Mamane<text:line-break/>Commits: 1051<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Johnny_M<text:line-break/>Commits: 966<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Petr Mladek<text:line-break/>Commits: 958<text:line-break/>Joined: 2006-10-03</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Noel Power<text:line-break/>Commits: 950<text:line-break/>Joined: 2002-09-24</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kai Ahrens<text:line-break/>Commits: 909<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Henning Brinkmann<text:line-break/>Commits: 899<text:line-break/>Joined: 2002-08-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Cédric Bosdonnat<text:line-break/>Commits: 882<text:line-break/>Joined: 2009-11-16</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Malte Timmermann [mt]<text:line-break/>Commits: 864<text:line-break/>Joined: 2000-10-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Sven Jacobi<text:line-break/>Commits: 850<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maxim Monastirsky<text:line-break/>Commits: 846<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>László Németh<text:line-break/>Commits: 833<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Herbert Dürr<text:line-break/>Commits: 827<text:line-break/>Joined: 2000-10-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Martin Gallwey<text:line-break/>Commits: 827<text:line-break/>Joined: 2000-11-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mikhail Voytenko<text:line-break/>Commits: 793<text:line-break/>Joined: 2001-01-16</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Weghorn<text:line-break/>Commits: 756<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Carsten Driesner<text:line-break/>Commits: 748<text:line-break/>Joined: 2000-10-06</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Joachim Lingner<text:line-break/>Commits: 745<text:line-break/>Joined: 2000-10-05</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Katarina Behrens<text:line-break/>Commits: 745<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrzej Hunt<text:line-break/>Commits: 743<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andre Fischer<text:line-break/>Commits: 730<text:line-break/>Joined: 2001-02-06</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Release Engineering<text:line-break/>Commits: 728<text:line-break/>Joined: 2008-10-02</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zdeněk Crhonek<text:line-break/>Commits: 714<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Joerg Skottke [jsk]<text:line-break/>Commits: 678<text:line-break/>Joined: 2008-06-17</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joseph Powers<text:line-break/>Commits: 658<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jens Carl<text:line-break/>Commits: 657<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rizal Muttaqin<text:line-break/>Commits: 655<text:line-break/>Joined: <text:span text:style-name="T2">2018-05-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kai Sommerfeld<text:line-break/>Commits: 651<text:line-break/>Joined: 2000-10-10</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ingrid Halama<text:line-break/>Commits: 639<text:line-break/>Joined: 2001-01-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Justin Luth<text:line-break/>Commits: 624<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rafael Dominguez<text:line-break/>Commits: 606<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jochen Nitschke<text:line-break/>Commits: 587<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Seth Chaiklin<text:line-break/>Commits: 581<text:line-break/>Joined: <text:span text:style-name="T2">2019-11-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Rene Engelhard<text:line-break/>Commits: 577<text:line-break/>Joined: 2005-03-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yousuf Philips<text:line-break/>Commits: 569<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adolfo Jayme Barrientos<text:line-break/>Commits: 568<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Thomas Benisch [tbe]<text:line-break/>Commits: 551<text:line-break/>Joined: 2000-10-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Khaled Hosny<text:line-break/>Commits: 542<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jim Raykowski<text:line-break/>Commits: 515<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jürgen Schmidt<text:line-break/>Commits: 512<text:line-break/>Joined: 2000-10-09</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Foley<text:line-break/>Commits: 489<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jan Iversen<text:line-break/>Commits: 474<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andreas Bregas<text:line-break/>Commits: 470<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Justin Luth<text:line-break/>Commits: 468<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiko Tietze<text:line-break/>Commits: 435<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ashod Nakashian<text:line-break/>Commits: 394<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Dirk Voelzke<text:line-break/>Commits: 392<text:line-break/>Joined: 2000-11-27</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent BP<text:line-break/>Commits: 389<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ivan Timofeev<text:line-break/>Commits: 380<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver-Rainer Wittmann<text:line-break/>Commits: 372<text:line-break/>Joined: 2002-08-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Martin Hollmichel<text:line-break/>Commits: 371<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Muhammet Kara<text:line-break/>Commits: 367<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pranav Kant<text:line-break/>Commits: 366<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Matthias Huetsch [mhu]<text:line-break/>Commits: 360<text:line-break/>Joined: 2000-09-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 348<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Patrick Luby<text:line-break/>Commits: 335<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Ostrovsky<text:line-break/>Commits: 334<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marco Cecchetti<text:line-break/>Commits: 327<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 322<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Radek Doulik<text:line-break/>Commits: 305<text:line-break/>Joined: 2010-05-03</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Hung<text:line-break/>Commits: 305<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henry Castro<text:line-break/>Commits: 304<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chr. Rossmanith<text:line-break/>Commits: 300<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stanislav Horacek<text:line-break/>Commits: 286<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>August Sodora<text:line-break/>Commits: 285<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rafael Lima<text:line-break/>Commits: 285<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Siqi Liu<text:line-break/>Commits: 277<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pierre-André Jacquod<text:line-break/>Commits: 276<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vasily Melenchuk<text:line-break/>Commits: 265<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Lars Langhans<text:line-break/>Commits: 260<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Bartosz Kosiorek<text:line-break/>Commits: 255<text:line-break/>Joined: 2010-09-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Muthu Subramanian<text:line-break/>Commits: 250<text:line-break/>Joined: 2010-08-25</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Antoni Buj Gelonch<text:line-break/>Commits: 247<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Heinisch<text:line-break/>Commits: 228<text:line-break/>Joined: <text:span text:style-name="T2">2019-05-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Regina Henschel<text:line-break/>Commits: 227<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Winfried Donkers<text:line-break/>Commits: 215<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tamas Bunth<text:line-break/>Commits: 203<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ingo Schmidt<text:line-break/>Commits: 202<text:line-break/>Joined: 2004-02-05</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arkadiy Illarionov<text:line-break/>Commits: 201<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis Francis<text:line-break/>Commits: 201<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacobo Aragunde Pérez<text:line-break/>Commits: 192<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Nagy<text:line-break/>Commits: 191<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marcos Paulo de Souza<text:line-break/>Commits: 191<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Giuseppe Castagno<text:line-break/>Commits: 187<text:line-break/>Joined: 2007-12-09</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Khaled Hosny<text:line-break/>Commits: 182<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>François Tigeot<text:line-break/>Commits: 176<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tünde Tóth<text:line-break/>Commits: 174<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Philipp Riemer<text:line-break/>Commits: 171<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Balazs Varga<text:line-break/>Commits: 165<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ilmari Lauhakangas<text:line-break/>Commits: 162<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nigel Hawkins<text:line-break/>Commits: 160<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gülşah Köse<text:line-break/>Commits: 160<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gert Faller<text:line-break/>Commits: 151<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Artur Dorda<text:line-break/>Commits: 151<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Wilms<text:line-break/>Commits: 151<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Gregor Hartmann<text:line-break/>Commits: 141<text:line-break/>Joined: 2000-10-12</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthias Freund<text:line-break/>Commits: 141<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomáš Chvátal<text:line-break/>Commits: 140<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Artur Dryomov<text:line-break/>Commits: 137<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Serge Krot<text:line-break/>Commits: 132<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dante DM<text:line-break/>Commits: 132<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>panoskorovesis<text:line-break/>Commits: 131<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jesús Corrius<text:line-break/>Commits: 130<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mert Tumer<text:line-break/>Commits: 130<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Philipp Weissenbacher<text:line-break/>Commits: 129<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sophia Schröder<text:line-break/>Commits: 128<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Helge Delfs [hde]<text:line-break/>Commits: 126<text:line-break/>Joined: 2009-07-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ariel Constenla-Haile<text:line-break/>Commits: 126<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>haochen<text:line-break/>Commits: 126<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Takashi Ono<text:line-break/>Commits: 122<text:line-break/>Joined: 2009-12-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sebastian Spaeth<text:line-break/>Commits: 119<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Douglas Mencken<text:line-break/>Commits: 119<text:line-break/>Joined: <text:span text:style-name="T2">2013-12-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 117<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kalman Szalai - KAMI<text:line-break/>Commits: 116<text:line-break/>Joined: 2010-09-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joren De Cuyper<text:line-break/>Commits: 114<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hossein<text:line-break/>Commits: 114<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis Francis<text:line-break/>Commits: 113<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>I-Jui (Ray) Sung<text:line-break/>Commits: 112<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Akshay Deep<text:line-break/>Commits: 110<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aron Budea<text:line-break/>Commits: 105<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tibor Nagy<text:line-break/>Commits: 104<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Louis-Francis Ratté-Boulianne<text:line-break/>Commits: 102<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rishabh Kumar<text:line-break/>Commits: 100<text:line-break/>Joined: <text:span text:style-name="T2">2015-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thomas Klausner<text:line-break/>Commits: 99<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Attila Bakos (NISZ)<text:line-break/>Commits: 97<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent Godard<text:line-break/>Commits: 93<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juergen Funk<text:line-break/>Commits: 92<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Justin Luth<text:line-break/>Commits: 92<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paris Oplopoios<text:line-break/>Commits: 92<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Knorr<text:line-break/>Commits: 91<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Varun Dhall<text:line-break/>Commits: 91<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Krisztian Pinter<text:line-break/>Commits: 90<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pranam Lashkari<text:line-break/>Commits: 90<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Philipp Hofer<text:line-break/>Commits: 90<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Albert Thuswaldner<text:line-break/>Commits: 89<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Retout<text:line-break/>Commits: 88<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Bankston<text:line-break/>Commits: 88<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 88<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Korrawit Pruegsanusak<text:line-break/>Commits: 87<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adam Co<text:line-break/>Commits: 86<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mihaela Kedikova<text:line-break/>Commits: 85<text:line-break/>Joined: 2009-10-30</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Javier Fernandez<text:line-break/>Commits: 84<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Roman Kuznetsov<text:line-break/>Commits: 84<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tobias Krause<text:line-break/>Commits: 83<text:line-break/>Joined: 2007-10-02</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Minh Ngo<text:line-break/>Commits: 83<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ricardo Montania<text:line-break/>Commits: 82<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steve Fanning<text:line-break/>Commits: 78<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tobias Madl<text:line-break/>Commits: 74<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gergo Mocsi<text:line-break/>Commits: 72<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>weigao<text:line-break/>Commits: 72<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Thorsten Bosbach<text:line-break/>Commits: 70<text:line-break/>Joined: 2008-06-18</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michaël Lefèvre<text:line-break/>Commits: 68<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Riccardo Magliocchetti<text:line-break/>Commits: 68<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Antonio Fernandez<text:line-break/>Commits: 68<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Hunter<text:line-break/>Commits: 67<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jelle van der Waa<text:line-break/>Commits: 66<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomoyuki Kubota<text:line-break/>Commits: 66<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rohan Kumar<text:line-break/>Commits: 65<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bogdan B<text:line-break/>Commits: 64<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tagezi<text:line-break/>Commits: 63<text:line-break/>Joined: <text:span text:style-name="T2">2015-09-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mohammed Abdul Azeem<text:line-break/>Commits: 63<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Suo<text:line-break/>Commits: 63<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rosemary Sebastian<text:line-break/>Commits: 62<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Wolfram Garten [wg]<text:line-break/>Commits: 61<text:line-break/>Joined: 2009-10-23</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Hosken<text:line-break/>Commits: 61<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pierre-Eric Pelloux-Prayer<text:line-break/>Commits: 61<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver Craemer [oc]<text:line-break/>Commits: 60<text:line-break/>Joined: 2009-10-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jaskaran Singh<text:line-break/>Commits: 60<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sarper Akdemir<text:line-break/>Commits: 60<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Armin Le Grand (allotropia)<text:line-break/>Commits: 60<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Marc Neumann [msc]<text:line-break/>Commits: 59<text:line-break/>Joined: 2008-06-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shiming zhang<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Simon Steinbeiss<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ahmed ElShreif<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Attila Szűcs<text:line-break/>Commits: 58<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yiming ju<text:line-break/>Commits: 57<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>matteocam<text:line-break/>Commits: 56<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Niklas Johansson<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthew J. Francis<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Nikolai Pretzell<text:line-break/>Commits: 54<text:line-break/>Joined: 2001-03-09</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mihály Palenik<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yangzhang<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jim Raykowski<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T2">2019-05-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rob Snelders<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Kepplinger<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lior Kaplan<text:line-break/>Commits: 52<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Efe Gürkan YALAMAN<text:line-break/>Commits: 52<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Will Thompson<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Faisal M. Al-Otaibi<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cao Cuong Ngo<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rachit Gupta<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ptyl Dragon<text:line-break/>Commits: 50<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samuel Thibault<text:line-break/>Commits: 49<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marcel Metz<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Urs Fässler<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mingli ju<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emmanuel Gil Peyrot<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kohei Yoshida<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>J. Graeme Lingard<text:line-break/>Commits: 47<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Deller<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>hongyu zhong<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexandre Vicenzi<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mihai Varga<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mb93783<text:line-break/>Commits: 45<text:line-break/>Joined: 2009-07-15</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eilidh McAdam<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christophe JAILLET<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Susobhan Ghosh<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Szabolcs Toth<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Volker Ahrendt [va]<text:line-break/>Commits: 44<text:line-break/>Joined: 2002-04-15</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Robertson<text:line-break/>Commits: 44<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luc Castermans<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Philippe Jung<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marco A.G.Pinto<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Arato (NISZ)<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thorsten Behrens<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Jentsch<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Wielaard<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Damjan Jovanovic<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sébastien Le Ray<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christian M. Heller<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tsutomu Uchino<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aditya<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Francisco Saito<text:line-break/>Commits: 40<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Grzegorz Araminowicz<text:line-break/>Commits: 40<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kayo Hamid<text:line-break/>Commits: 39<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marc-André Laverdière<text:line-break/>Commits: 39<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>minwang<text:line-break/>Commits: 39<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Valentin Kettner<text:line-break/>Commits: 38<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shivam Kumar Singh<text:line-break/>Commits: 38<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Taichi Haradaguchi<text:line-break/>Commits: 38<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Iain Billett<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>abdulmajeed ahmed<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jennifer Liebel<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ayhan Yalçınsoy<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Guillaume Poussel<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Radu Ioan<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vinaya Mandke<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Csikós Tamás<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Priyanka Gaikwad<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ilhan Yesil<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aurimas Fišeras<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent Charrière<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Santiago Martinez<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>xukai liu<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dechuang<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tobias Lippert<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Łukasz Hryniuk<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Page<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yusuf Keten<text:line-break/>Commits: 35<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Mantke<text:line-break/>Commits: 34<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent Alonso<text:line-break/>Commits: 34<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rodolfo Ribeiro Gomes<text:line-break/>Commits: 34<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steve Yin<text:line-break/>Commits: 34<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cor Nouws<text:line-break/>Commits: 33<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yogesh Bharate<text:line-break/>Commits: 33<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis Roczek<text:line-break/>Commits: 33<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleksei Nikiforov<text:line-break/>Commits: 33<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gokul<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vishv Brahmbhatt<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arnold Dumas<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dmitriy Shilin<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shubham Goyal<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sarper Akdemir<text:line-break/>Commits: 32<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Srebotnjak<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sushil Shinde<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>fengzeng<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gautam Prajapati<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Patrick Jaap<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DaeHyun Sung<text:line-break/>Commits: 31<text:line-break/>Joined: <text:span text:style-name="T2">2018-05-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kenneth Venken<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wols Lists<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christoph Herzog<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Manal Alhassoun<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bryan Quigley<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Isamu Mogi<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mulei<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>kerem<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jakub Trzebiatowski<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Silva<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Regényi Balázs<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>homeboy445<text:line-break/>Commits: 30<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Harri Pitkänen<text:line-break/>Commits: 29<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Elton Chung<text:line-break/>Commits: 29<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>xinjiang<text:line-break/>Commits: 29<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthias Seidel<text:line-break/>Commits: 29<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andre Fischer&lt;andre.f.fischer<text:line-break/>Commits: 28<text:line-break/>Joined: 2010-07-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Szabolcs Dezsi<text:line-break/>Commits: 28<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jack Leigh<text:line-break/>Commits: 28<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pallavi Jadhav<text:line-break/>Commits: 28<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yeliz Taneroğlu<text:line-break/>Commits: 28<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paul Trojahn<text:line-break/>Commits: 28<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökçen Eraslan<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joel Madero<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>José Guilherme Vanz<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andres Gomez<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thorsten Wagner<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jorenz Paragas<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dipangar Niranjar<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ximeng Zu<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Grzegorz Araminowicz<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adrien Ollier<text:line-break/>Commits: 27<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nicolas Christener<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Josh Heidenreich<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maxime de Roucy<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Sikeler<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Akash Jain<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dr. David Alan Gilbert<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Noel Grandin<text:line-break/>Commits: 26<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kurosawa Takeshi<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomofumi Yagi<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Prashant Pandey<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vort<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>aleksandar-stefanovic<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>George Bateman<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Balazs Varga<text:line-break/>Commits: 25<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Baptiste Daroussin<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pedro Giffuni<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Uray M. János<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sumit Chauhan<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hannah Meeks<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paris Oplopoios<text:line-break/>Commits: 24<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Roth<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sören Möller<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lucas Baudin<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Julien Chaffraix<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christian Dywan<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Felix Zhang<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mario J. Rugiero<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marco A.G.Pinto<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ekuiitr<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacek Wolszczak<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Júlio Hoffimann<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ruslan Kabatsayev<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jian Fang Zhang<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Frédéric Wang<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>zhenyu yuan<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Colomban Wendling<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Saurav Chirania<text:line-break/>Commits: 22<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rohit Deshmukh<text:line-break/>Commits: 21<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>scito<text:line-break/>Commits: 21<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vitaliy Anderson<text:line-break/>Commits: 21<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bernhard Widl<text:line-break/>Commits: 21<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Eric Bachard<text:line-break/>Commits: 20<text:line-break/>Joined: 2005-10-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andy Holder<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Brad Sowden<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Petr Vorel<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tushar Bende<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Dent<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Patrick Luby<text:line-break/>Commits: 20<text:line-break/>Joined: <text:span text:style-name="T2">2022-12-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Xiaofei Zhang<text:line-break/>Commits: 19<text:line-break/>Joined: 2010-06-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lennard Wasserthal<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peilin Xiao<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2013-12-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sven Wehner<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ravindra Vidhate<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleksas Pantechovskis<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>krishna keshav<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiko Tietze<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2019-09-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Onur Yilmaz<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Svante Schubert<text:line-break/>Commits: 19<text:line-break/>Joined: <text:span text:style-name="T2">2020-07-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Hanno Meyer-Thurow<text:line-break/>Commits: 18<text:line-break/>Joined: 2010-09-16</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joost Wezenbeek<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abdulelah Alarifi<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Boris Dušek<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Richard PALO<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Federico Bassini<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mert Tümer<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zdibák Zoltán<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ming Hua<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Hung<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2022-05-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Povilas Kanapickas<text:line-break/>Commits: 18<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alfonso Eusebio<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bálint Dózsa<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Olivier R<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jian Hong Cheng<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>navin patidar<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Umesh Kadam<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>melikeyurtoglu<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Francisco Adrián Sánchez<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thomas Beck<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kshitij Pathania<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vikas Mahato<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2017-12-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin van Zijl<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Todor Balabanov<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mesut Çifci<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bayram Çiçek<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Florian Reuter<text:line-break/>Commits: 16<text:line-break/>Joined: 2010-09-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Dixon<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Niko Rönkkö<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jordan Ayers<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anders Jonsson<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maciej Rumianowski<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lei De Bin<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Noël Rouvignac<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tsahi glik<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Laplante<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adam Kasztenny<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nd101<text:line-break/>Commits: 16<text:line-break/>Joined: <text:span text:style-name="T2">2019-07-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Octavio Alvarez<text:line-break/>Commits: 15<text:line-break/>Joined: 2010-09-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Symes<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Povilas Kanapickas<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joachim Tremouroux<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yifan J<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cosimo Cecchi<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Bergmann<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Catalin Iacob<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nikhil Walvekar<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heena Gupta<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Brandner<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Armin Le Grand<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samuel Thibault<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2018-09-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ross Johnson<text:line-break/>Commits: 15<text:line-break/>Joined: <text:span text:style-name="T2">2021-09-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>LeMoyne Castle<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Hardeck<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Björgvin Ragnarsson<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zhe Wang<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sun Ying<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alex Henrie<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juan Picca<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zsolt Bölöny<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökhan Gurbetoğlu<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nickson Thanda<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Baole Fang<text:line-break/>Commits: 14<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Prashant Shah<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Baptiste Faure<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Muhammad Haggag<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gerhard oettl<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alia Almusaireae<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathias Hasselmann<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Manfred Blume<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sabri unal<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steve Fanning<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2019-11-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Radhey Parekh<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>VaibhavMalik4187<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 13<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jani Monoses<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wilhelm Pflueger<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomas Hlavaty<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mariusz Dykierek<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Greg Kroah-Hartman<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gábor Stefanik<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mirek Mazel<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wei Wei<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>kadertarlan<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tymyjan<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abhilash Singh<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2016-07-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kacper Kasper<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pelin Kuran<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gleb Popov<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emircan Agac<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>xuenhua<text:line-break/>Commits: 12<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mox Soini<text:line-break/>Commits: 11<text:line-break/>Joined: 2008-04-04</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Frank Peters<text:line-break/>Commits: 11<text:line-break/>Joined: 2010-05-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonas Finnemann Jensen<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>René Kjellerup<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Rabi<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Bolen<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jung-uk Kim<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Enrico Weigelt, metux ITS<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abdulaziz A Alayed<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sean Young<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Krunoslav Šebetić<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Charu Tyagi<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Jaumann<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Phillip Sz<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nadith<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2016-07-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maarten Bosmans<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fakabbir Amin<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jmzambon<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Manuj Vashist<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2017-12-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Milian Wolff<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abhyudaya Sharma<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Srijan Bhatia<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vert D<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shubham656<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anshu<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeff Huang<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Patrick Luby<text:line-break/>Commits: 11<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Timo Heino<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Petrolekas<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Theo van Klaveren<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Troy Rollo<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kristian Rietveld<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Vogt<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jianyuan Li<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Weiberg<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Benjamin Ni<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arul Michael<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chirag Manwani<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dilek Uzulmez<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kiyotaka Nishibori<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rahul Gurung<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Robbinson<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Lohmann<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>A_GAN<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Warner<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tushar<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vincent LE GARREC<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Balazs Santha<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent Balland<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Galdam<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mattias Johnsson<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Surendran Mahendran<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steven Butler<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robinson Tryon<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mihkel Tõnnov<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Dunphy<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dinesh Patil<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthew Pottage<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Deena Francis<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ryan McCoskrie<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jun Nogata<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aybuke Ozdemir<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>skswales<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pv2k<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adam Kovacs<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Scott Clarke<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Canberk TURAN<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jussi Pakkanen<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chenxiong Qi<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vojtěch Doležal<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabor Kelemen<text:line-break/>Commits: 9<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Fong Lin<text:line-break/>Commits: 8<text:line-break/>Joined: 2010-09-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jody Goldberg<text:line-break/>Commits: 8<text:line-break/>Joined: 2010-09-15</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Callahan<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Dargaud<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jenei Gábor<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Terrence Enger<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daisuke Nishino<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomcsik Bence<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonathan Adams<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Norah A. Abanumay<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Tiare Le Bigot<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Timothy Pearson<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ahmad H. Al Harthi<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>karth<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ádám Csaba Király<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Brian Fraser<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rajashri<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2013-12-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Keith Curtis<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2013-12-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sourav<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thomas Viehmann<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nathan Yee<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ursache Vladimir<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2015-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sean Davis<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiher<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2015-07-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ian<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rico Tzschichholz<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matus Uzak<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christian Barth<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2017-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shinnok<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rasmus Jonsson<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Artur Neumann<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ouyang Leyan<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>diwanshu885<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökhan Özeloğlu<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Balaharipreetha Muthu<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stéphane Guillou<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>4k5h1t<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jsala<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christian Lohmaier<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2022-12-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stéphane Guillou<text:line-break/>Commits: 8<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thies Pierdola<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sergey Davidoff<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samuel Cantrell<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alex McMurchy1917<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christoph Lutz<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Keith McRae<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gert van Valkenhoef<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Brennan Vincent<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wang Lei<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Issa Alkurtass<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christopher Copits<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathias Michel<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eric Seynaeve<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>SJacobi<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Roi Illouz<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Ring<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Trent MacAlpine<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Delma<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Giuseppe Bilotta<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>V Stuart Foote<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Raal<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>brinzing<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Feyza Yavuz<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>irem<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>apurvapriyadarshi<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>slacka<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-07-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Asela Dasanayaka<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-07-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tiago Santos<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hieronymous<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ulrich Gemkow<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marina Latini<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Furkan Ahmet Kara<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vincas Dargis<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Guilhem Moulin<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hamish McIntyre-Bhatty<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bugra<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Mayo<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pedro Pinto Silva<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökay Şatır<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matt K<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ahmet Hakan Çelik<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>BaiXiaochun<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dhiraj Holden<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2021-11-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Liu Hao<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Czeber László Ádám<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Phil Bordelon<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ricardo Moreno<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander O. Anisimov<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Di Marco<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shirahara<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Xavier ALT<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anurag Jain<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thomas Collerton<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Verrier<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anurag Kanungo<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tianyao<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeroen Nijhof<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kay Schenk<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michel Renon<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fabio Buso<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sedat Ak<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Guillaume Smaha<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ricardo Palomares<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>baltasarq<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steven Guo<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chamal<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rosen<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>giacco<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>abdulwd<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gian Domenico Ceccarini<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Sebastien Bevilacqua<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>udareechk<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kemal Ayhan<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökay ŞATIR<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Batuhan Taskaya<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mehmet Emin Başoğlu<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>iakarsu<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ivan Stefanenko<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ViKrAm-Bais<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>msrijita18<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henrik Palomäki<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2021-10-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ramreiso Kashung<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>NickWingate<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>OmkarAcharekar<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Attila Szűcs<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gil Forcada<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Hobley<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bernhard Rosenkraenzer<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Antoine Proulx<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tobias Rosenberger<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeffrey Chang<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ericb2<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael T. Whiteley<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gustavo Buzzatti Pacheco<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wei Ming Khoo<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lionel Dricot<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pavel Kysilka<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bence Babati<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pavel Janík<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Werner Koerner<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthias Hofmann<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Miguel Gomez<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pje335_NL<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ciorba Edmond<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pader Rezso<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>MÁTÉ Gergely<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Timothy Markle<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan Kantert<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pasi Lallinaho<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Berk Gureken<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yossi Zahn<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Edmund Wong<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Huzaifa Iftikhar<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tamsil1amani3<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lukas Röllin<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paul Menzel<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Corentin Noël<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2019-09-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tolunay Dündar<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eda Nur Var<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yukio Siraichi<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Oleg Shchelykalnov<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriel Masei<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomofumi Yagi<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Umut Emre Bayramoglu<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Georgy Litvinov<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Suhaas Joshi<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Baran Aytas<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juan C Sanz<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2021-09-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ismael Luceno<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2021-09-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>flywire<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2021-11-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>rash419<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pragat Pandya<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>zhutyra<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Deep17<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Siddhant Chaudhary<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Skyler Grey<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Leonid Ryzhov<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ektagoel12<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>buldi<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jaume Pujantell<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Florian Bircher<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew C. E. Dent<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Santiago Alessandri<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maja Djordjevic<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>An Leenders<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Thurgood<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Clio<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Muench<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pantelis Koukousoulas<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samphan Raruenrom<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Becker<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Roland Baudin<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>André Schnabel<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tom Tromey<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wolfgang Pechlaner<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cheng-Chia Tseng<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kate Goss<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mariana Marasoiu<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yong Lin Ma<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Raimundo Moura<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Florian Reisinger<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nicholas Shanks<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tino<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joan Montané<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Xiaoli<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sameer Deshmukh<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zheng Fan<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Elie Roux<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nourah.AlShoeibi<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Honza Havlíček<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrea Pescetti<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Campbell<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ulrich Kitzinger<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ken Biondi<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeffrey Stedfast<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Simon Danner<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Suo<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleksandr Andreev<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Derrick Rocha<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sahasranaman M S<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ccsheller<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pasqual milvaques<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>aqcoder<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Burcin Akalin<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kumar Thangavel<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>erdemdemirkapi<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>coypu<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dtm<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Eves<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gurkaran<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fabio Biocchetti<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gaurav Dhingra<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Patrick Jaap<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Piotr Drąg<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fyodor Yemelyanenko<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Olivier Tilloy<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jon Nermut<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Franklin Weng<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jozsef Szakacs<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Udvare<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleyna Doğrucan<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Efdal İncesu<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Faruk Demirbaş<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hakan Bakacak<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Burak Bala<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mohamed Sameh<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fred Kruse<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Deb Barkley-Yeung<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gokce Kuler<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vishwas<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aditya Pratap Singh<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dipanshu124<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hossein<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tobias<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gopi Krishna Menon<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Harshita Nag<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yildiray<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ehsan<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>PoonamShokeen<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arvind K<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yousef_Rabia<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bayram Çiçek<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Keith Stribley<text:line-break/>Commits: 3<text:line-break/>Joined: 2010-06-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacopo Nespolo<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alan Du<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gioele Barabucci<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Xuacu Saturio<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pascal Ullrich<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonathan Aquilina<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Koch<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan Darmochwal<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Carpenter(mordocai)<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tantai Tanakanok<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Nalley<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Guto Maia<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anthony Durity<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dimitri Duc<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mike Eberdt<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Florian Allmann-Rahn<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dmitry Ashkadov<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Bauer<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sérgio Marques<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Heinemann<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cameron Paul<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tom Thorogood<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stephan van den Akker<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Benjamin Drung<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathieu Vonlanthen<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bertrand Lorentz<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Oliver Günther<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Istvan Turi<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeremy Brown<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Baumgarten<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Markus Maier<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marina Plakalovic<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dávid Vastag<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Schick<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Petr Kraus<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Golnaz Irannejad<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>vjinoch<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jason Hulme<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nagy Akos<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriele Bulfon<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Haidong Lian<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tobias Mueller<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Senna Tschudin<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Brij Mohan Lal Srivastava<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Renato Ferreira<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Popa Adrian Marius<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthew Nicholls<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Linus Behrens<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marek Doležel<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-07-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Simon Long<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-07-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lucas Satabin<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>n.r.pearson<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-09-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sergey Fukanchik<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-09-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AlexF<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Giovanni Caligaris<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mayank Gupta<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Johannes Berg<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>drazil<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacek Fraczek<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>liongold<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>John Paul Adrian Glaubitz<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>bansan85<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dimitri Bouron<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ivan Safonov<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-07-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriel Chiquini<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bán Róbert<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Vecsernyes<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gergely Tarsoly<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ahmed GHANMI<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abhishek Shrivastava<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Telesto<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bartosz Kosiorek<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shubham Verma<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent Godard<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ulkem Kasapoglu<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Salih Sariyar<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Omer Fatih Celik<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Meryem Ezber<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrés Maldonado<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>EL-SHREIF<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stepas Toliautas<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michel Thomas<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nienzu<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Julian Kalinowski<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ian Barkley-Yeung<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pierre Marty<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eivind Samseth<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yakovru<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mariamfahmy<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Leo Wang<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gizem Ozgun<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tarun Sharma<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Batmunkh Dorjgotov<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zeynep Yavuz<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Natalia Gavrilova<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-09-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Verne-Lai<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Renwa Hiwa<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tushar Jham<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yomnasalama<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Isha_Desai<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shady Mohamed<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aman Jha<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrea Rosetti<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rakielle<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Calvince Otieno<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sebastian Andrzej Siewior<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rasenkai<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adoche Onaji<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nirnay<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vinit Agarwal<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Loiseleur Michel<text:line-break/>Commits: 2<text:line-break/>Joined: 2010-09-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Justin Malcolm<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Seo Sanghyeon<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sean McNamara<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robert Sedak<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sean McMurray<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nadav Vinik<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marcin eXine M<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dwayne Bailey<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christoph Noack<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sophie Gautier<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ed Dean<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonathan Callen<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karsten Gerloff<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean Charles Papin<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tobias Kranz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthias Klose<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Natterer<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cyril Roelandt<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kelly Anderson<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michal Svec<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mohammad Elahi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Takashi Nakamoto<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreu Correa Casablanca<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan Hubicka<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arno Teigseth<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maxim Iorsh<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emanuele Fia<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yury Tarasievich<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mateusz Zasuwik<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Milos Sramek<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Schierl<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>PKEuS<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Urmas<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bartolomé Sánchez Salado<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Greggory Hernandez<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>William Gathoye<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karthik A Padmanabhan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Wolf<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Higginson<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abeer Sethi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ferran Vidal<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vicente Vendrell<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Steele<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jose Santiago Jimenez Sarmiento<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marc Garcia<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martyn Russell<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jesso Clarence Murugan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ward van Wanrooij<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yuri Dario<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Horacio Fernandes<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andras Bartek<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Herde<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Johann Messner<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Flex Liu<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sergey Farbotka<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Louis Possoz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christos Strubulis<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arne de Bruijn<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Milan Crha<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adam Mróz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gregg King<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Benedikt Morbach<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Moritz Kuett<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Akash Shetye<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Janit Anjaria<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mmeof2<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Donizete Waterkemper<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rolf Hemmerling<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jing Xian<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Hoppe<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ri GangHu<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Neil Moore<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Viktor Varga<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Janos Farago<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Richard Hughes<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathieu Parent<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-10-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jagan Lokanatha<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Anderson Roberto<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Liška<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bisal Nayal<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hussian Alamri<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mukhiddin Yusupov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Clarence Guo<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hideki Ikeda<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Boris Egorov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>YiiChang Yen<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vinicius Vendramini<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Naruhiko Ogasawara<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Stone<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Supreme Aryal<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gary Houston<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Williams<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Clément Lassieur<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rimas Kudelis<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dbeurle<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kishor Bhat<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gamebusterz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-02-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Piet van Oostrum<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laszlo Kis-Adam<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Markus Wernig<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jingtao Yan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Austin Chen<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Valter Mura<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Carlos Luque<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-07-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lubosz Sarnecki<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>alexey.chemichev<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sheikha AL-Hinai<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yogesh Desai<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kenneth Koski<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ackepenek<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Nathansen<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michal Kubecek<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Akash Deshpande<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sophie Su<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sll<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-09-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pierre Lepage<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tibor Móger<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>G_Zoltan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>George Korepanov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeremy Bicha<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeevan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>blendergeek<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexey Vlasov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>fxwan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yash Srivastav<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-06-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sabin Frandes<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Your Name<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>G??bor Koruhely<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Furkan Tokac<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Timotej Lazar<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>martinb214<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jon Nermut<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Denis Arnaud<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>brian houston morrow<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dmitri Kharchev<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andika Triwidada<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Victor Mireyev<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-05-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Dubrulle<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>George Wood<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Réka Csékei<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Simon Quigley<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Dobo<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Izabela Bakollari<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alyssa Ross<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tóth Attila<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Patrik Vas<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dawid Gan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sass Dávid<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>kaishu-sahu<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Phil Krylov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Muzaffer Kadir YILMAZ<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Farrow<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jaromir Wysoglad<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rtch90<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DarkByt31<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>wishawa<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DaeHyun Sung<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>John Zhang<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-09-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mayank Suman<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shameempk<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mattia Rizzolo<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Batuhan Görkem Benzer<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Desmin Alpaslan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luca Carlon<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bjoern Kirchhoff<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Burak Bala<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marina Latini<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AlanTang<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>james<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Lee (李健秋)<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Louis Fuchs<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shivammore<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fatih<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yunusemre Şentürk<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ilkyu Ju<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nnamani Ezinne<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Dixon<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sven Lüppken<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zeynep İnkaya<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gül Toksöz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bartu Bayazıt<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mücahid Aydin<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ShyamPraveenSingh<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DuP-491<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>siddheshpatil777<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>halfhiddencode<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>princesinghtomar<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alchemist<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shobhit<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Quan Nguyen<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eyal Rozenberg<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Buse Orak<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Moaz<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Winston Min Tjong<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gökay Şatır<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Panos<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>rounak<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sarynasser<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mihail Balabanov<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>haru-02<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sabyasachi Bhoi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-07-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Huilin<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-07-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>oguzbalkaya<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ankur Khandelwal<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karan Abrol<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-08-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emanuel Schorsch<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-10-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Harjot<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-11-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pesi Taototo<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sinduja Y<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kunal Pawar<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>psidiumcode<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gautham Krishnan<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mostafa-elsharnoby<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rizal Muttaqin<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vincent Reher<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lukas<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AshSinc<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-05-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kurt Nordback<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-05-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nazanin yadi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nathan Pratta Teodosio<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mahdi Tizabi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>wjh-la<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stanislav Lopatin<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sam James<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Satya<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emmanuel Peter<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>insanetree<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nalini Prasad Dash<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emanuele Goldoni<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tarcísio Ladeia de Oliveira<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DowwdyJ<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>PL<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>anfanite396<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Uday Sharma<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>niket1322git<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Abdallah Elhdad<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Supriyo Paul<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>adityasingh22<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jani Saranpää<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>NeilBrown<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-09-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexandr N. Zamaraev<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nick Savage<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Neil Stalker<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Evertjan Garretsen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Denis Lackovic<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>krishnan parthasarathi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rubén Jáñez<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Trevor Murphy<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wolfgang Silbermayr<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adrià Cereto Massagué<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kalman Kemenczy<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexandre Fournier<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-11-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christopher Backhouse<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pavel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>camille<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Freek de Kruijf<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paolo Pozzan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dan Corneanu<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>armijn<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AWASHIRO Ikuya<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andy Hearn<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nikita Ofitserov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Guillaume Fillol<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pgajdos<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Sliwka<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrey Turkin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Danny Roberts<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-02-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-Yves Royer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rafael Cabral<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alberto Ruiz<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paulo José<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dona Hertel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maxime Côté<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chris Cheney<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan Nieuwenhuizen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cassio Neri<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marcel HB<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-05-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>William Lachance<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeff Aigner<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Penzes<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dolives Benoit<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ta Duc Tung<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christophe Strobbe<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andor Ertsey<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hugo Beauzée-Luyssen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-09-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bernhard M. Wiedemann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Weigel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pádraig Brady<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew West<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matt Pratt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karl Koehler<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Modestas Rimkus<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Roman Eisele<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Serg Bormant<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juan Pablo Martínez Cortés<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-11-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jesse<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vincent Povirk<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Moritz Bechler<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>James C<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tzvetelina Tzeneva<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Victor Lee<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-12-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joshua Cogliati<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kenneth Aafløy<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rich Wareham<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Da&apos;angh Khagaroth<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ankitkumar Rameshchandra Patel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Richard<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-01-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dbarisakkurt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Mihalyi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Carsten Niehaus<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Masataka Shinke<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fernando Governatore<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juergen Steinhilber<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Italo Vignoli<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karan Desai<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arfrever Frehtes Taifersar Arahesis<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aldo Román Nureña<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laureano G. Linde<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Udo Schuermann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ross Burton<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jaime Navarro<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Florent Gallaire<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vicente Rafael Estevez Vacas<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Monica Ramirez Arceda<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Javier Silva Sanahuja<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Xavi Escriche Galindo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jose Manuel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Miguel Fernández<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Javier Catala<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-04-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jordi Mallach<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gordon Lack<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Naber<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ionut Biru<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alberto Ferreira<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Travis Carter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Tillemans<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Phil Hart<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-06-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Peng<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim-Philipp Müller<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Janik<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joseph Brown<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Hausmann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dave Richards<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dave<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marco Biscaro<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nico Weyand<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Douglas Rodrigues de Almeida<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sagar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-09-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Rist<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Neven Ćosić<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chen ZuoJun<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Philipp Kaluza<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lester<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathieu D<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Naser Sharifi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paula Mannes<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-11-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Olivier Ploton<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pkoroau pkoroau<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Quentin Pradet<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-12-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tadele Assefa<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis E. Hamilton<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>OKANO Takayoshi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mark Wright<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christopher Hotchkiss<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Branch<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Brown<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hamza Abdelkebir<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Valek Filippov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-02-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kenneth Beck<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jiri Blecha<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-02</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gábor Nyers<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vojta Koukal<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ondřej Smrž<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steven Meyer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-13</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>vincent<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Johannes Widmer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacqueline Rahemipour<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lucian Constantin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomas Turek<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Goran Rakic<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hansgerd Schneider<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Honza Minarik<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ashish Banerjee<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Irányossy Knoblauch Artúr<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jakub Golebiewski<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pavel Kacer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tinderbox<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alex Ivan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ota Chasák<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jan Bobisud<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-04-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yohei Yukawa<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ricardobotto<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonathan Schultz<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Neil Voss (fourier)<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-05-24</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Richardson<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Eric S. Raymond<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jean-François Fortin Tam<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Benjamin Otte<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peng Gao<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sonakshi nathani<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-06-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alaa.Bukhari<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Erik Auerswald<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Reem.ALotaibi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-07-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Duelli<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Srijan Choudhary<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adrien<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefano Facchini<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>James Michael DuPont<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-08-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Raymond Wells<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Danny Brown<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-09-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henning Diedler<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>matt_51<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rolf Koetter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-11-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yjw9012<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-12-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ayantha Randika<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michal Siedlaczek<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>J. Fernando Lagrange<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>christianju<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mathias Supp<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tarun Kumar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jason Gerlowski<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>roopak12345<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Manas Joshi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gdm.manmeet<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Milan Zelenka<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hannah Lyhne<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aditya Kale<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ryo ONODERA<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michal Horak<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alex Gulyás<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-04-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Apostolos Syropoulos<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-05-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nrbrtx@gmail.com<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shreyansh Gandhi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Damien Chambe<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-15</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Robin Kumar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-06-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dushyant Bhalgami<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fahad Al-Saidi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Owens<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-07-27</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiko Scheidt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>xjcl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Audrey Tang<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hiroto Kagotani<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jörg Sonnenberger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-08-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Phyzer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Babu Vincent<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-09-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Seyeong Kim<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lennart Poettering<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arkadiusz Miśkiewicz<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ruggero Cyrille<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Victor Portella<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonathan Riddell<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Foo Lai Choo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-11-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>galbarnissan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mattias Põldaru<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-06</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Juan A. Suarez Romero<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Maarten Hoes<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pieter Adriaensen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2014-12-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas K. Huettel (dilfridge)<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Péter Szathmáry<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Edmund Laugasson<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Kovarik<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zirk<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Simon Wilper<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Swachhand Lokhande<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Horn<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Karthick Prasad Gunasekaran<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>robert Babiak<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-03-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dobra Gabor<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jorge Cunha Mendes<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sujith Sudhakaran<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Petr Gajdos<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ritztro<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>massinissaHamidi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yurii Kolesnykov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sam Tuke<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>umairshahid<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-05-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Antoine Cœur<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jihui Choi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-06-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Raj Natarajan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-07-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Florian Effenberger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fernando Pirani<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nathan Wells<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-09-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joan Paraiso<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-09-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Slávek Banko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Timothée Isnard<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>marstay<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-10-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ghasan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mihovil Stanić<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Keigo Kawamura<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steve Hart<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Reto Schneider<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Willian Briotto<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nicola Povoleri<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Paolo Bernardi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pierre Sauter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>William Bonnet<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Johannes Hauf<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-12-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Debarshi Ray<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shubhamtibra<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nusaiba Al-Kindi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriele Ponzo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Marc Bessières<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-01-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christoph Brill<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hank Leininger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-02-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Apachev Ivan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>HaidongWu<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mohamed Thabet<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dag Wieers<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexandru Moscu<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gleb Mishchenko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-03-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>JBurant<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sunweb<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Seraphime Kirkovski<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-04-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nurhak ALTIN<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Prashant<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sam Tygier<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Helena Svobodova<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-05-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zhengqiang Wang<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>anwilli5<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>emahaldar/em<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mike Saunders<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-06-20</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Otto Kekäläinen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-07-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Julian Mehne<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>James Clarke<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yan Pashkovsky<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>rpmbuild<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zenaan Harkness<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrea Mussap<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ilya Ponamarev<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jookia<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mirco Rondini<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Chandanathil P. Geevan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Шиповський Роман<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tamás Gulácsi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Owen Genat<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Christina Accione<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-11-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>n5xgdh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Justn Lavoie<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2016-12-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>thvallois<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Saurav Sachidanand<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleix Pol<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-01-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yellowflash104<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-02-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mike Gorse<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Atef hares<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ComputingDwarf<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Umang Jain<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>udaycoder<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis Nielen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Säger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-03-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriel Herrera<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Werner Tietz<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nikki<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Catherine Vance<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Naeil ZOUEIDI<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-04-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>frederic vroman<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kappanneo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arianna Masciolini<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Francesco Gradi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-05-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>dcvb<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-07-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sean Stangl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-07-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Luke Deller<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-07-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aditya Dewan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-07-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>serdarot5<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sanjaykumar Girishkumar Patel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dinh Le<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-05</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>66kesara99<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-09-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stoyan Dimitrov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>nigeldias<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matti Lehtonen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tjipke van der Heide<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kristóf Umann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-10-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>qzheng<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-11-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Suhail Alkowaileet<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2017-12-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dominique Leuenberger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-01-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gabriele Ponzo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rostislav Kondratenko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-02-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Reshma<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hrishabh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Álex Puchades<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>kowther<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nithin Kumar Padavu<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Brubeck Unhammer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiko Tietze<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-04-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Diadlo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-05-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Fred Kruse<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-05-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>orbea<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-06-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Louis Sautier<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ali Ahmadi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-06-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>SalimHabchi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Caio B. Silva<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-07-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>U-Vladimir\Vadim<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Don Lewis<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bijan Tabatabai<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Leo Moons<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AlicVB<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-10-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alain Romedenne<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Howard Johnson<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rizal Muttaqin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Çağrı Dolaz<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Doğa Deniz Arıcı<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2018-12-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andreas Sturmlechner<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Komal<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ajay Mahato<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jim Jagielski<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-01-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yusuf Sonmez<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Schroeder<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-02-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sainal Shah<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wenzhe Pei<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vaibhav<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>kushagrakasliwal1<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Greg Veldman<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Gagandeep Singh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jason Burns<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Regis<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Milutin Smiljanic<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-04-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrew Hyatt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-05-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cor Nouws<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-05-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jens Carl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-05-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jay Bingham<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jim MacArthur<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jim MacArthur<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-07-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kovács László Zoltán<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vipul Gupta<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kovács László Zoltán<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>AWASHIRO Ikuya<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-17</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tim Bartlett<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-08-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nicolas Fella<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-09-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dennis Schridde<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Peter Levine<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rasmus Thomsen<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-10-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Milata<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>shashikdm<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Selim Şeker<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sıla Genç<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>erto<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrés Maldonado<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>cagatay<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-12-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Elzem Atay<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Louis Meyrat<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Cumali Toprak<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Serkan Özkaya<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-01-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Emiliano Vavassori<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>praneshulleri<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kris van der Merwe<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adam Majer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sarabjot Singh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-02-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matteo Casalin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>TJ Holt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>So Yanaihara<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Harshit Jain<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Wyatt Turner<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>miki<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Volkov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Coming___soON<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pavel Klevakin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Markus Keller<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Whitaker<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>vgeof<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Igor Poboiko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Muhammet Kara<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-24</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ilia Sheshukov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>zdposter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yakov Reztsov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Pranam Lashkari<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shiro Kawai<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-06-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Baurzhan Muftakhidinov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-07-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Octavio Alvarez<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-07-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>tgds03<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ramtk6726<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-16</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>OctopusET<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-08-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hochwasser<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Felix Wiegand<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-09-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Travis Stewart<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-01</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Bryan Gazali<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nikhil<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Platon Pronko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-19</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gerrit<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Betül İnce<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ismael Olea<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-10-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jeff Law<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>TRaXIn<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arda<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>lastirembender<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henrik Karlsson<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ganeshdevare<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Edward Lynch<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-11-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>cu-16bcs1798<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gar Soul<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-12-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>csegura<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Quentin PAGÈS<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Isah Bllaca<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>anirudhS<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Antje Kazimiers<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Linus Heckemann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>vipbuoy<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Quentin DELAGE<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Victor Kukshiev<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-02-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>heet-2312<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>John<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ViswaasLP<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mani Kumar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>arpit1912<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>pekka-dev<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mehmet Sait Gülmez<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>bykivi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aritz Erkiaga<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>anirudh4583<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Blatter<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-03-31</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Felipe Lema<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Oleksii Makhotin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Vatsal32<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Carmen Bianca Bakker<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-11</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Steve Fanning<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-04-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Joshua Williams<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-05-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>MarcoFalke<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-06-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Uwe Auer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-07-12</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>YakovlevAl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-07-15</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleś Bułojčyk<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-09-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rishav Chattopadhya<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-10-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>mwarner<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-11-25</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>TheRock Builder<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Urja Rannikko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Krzysztof Hałasa<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2021-12-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>alt<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arjun<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>yalda<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>javierde22<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-01-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jwtiyar nariman<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-02-14</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Adityarup Laha<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Łukasz Leszko<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Lemures Lemniscati<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sarrah Bastawala<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-03-21</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Behrad Khorram<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zain Iftikhar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>hasban12138<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-04-28</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Daniel Kamil Kozar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-05-03</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Dietrich Schulten<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Diane Leigh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mahdyar M. M. Sadeghi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mahkame Arabgari<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-22</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Parsa<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Amir H<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>m.hashemian<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-06-29</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>am.faraji<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-09</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mohsen Rahimi<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ali_Abdollahian<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Arman Rezaei<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-11</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sakura286<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-07-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Thierry Emery<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Niko Fink<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Skyler Grey<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>cutamar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-08-28</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aleksa Savic<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-02</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Ling Yang<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Aron Fischer<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nalini Prasad Dash<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Martin Schumann<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-10</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Hemant Kumar Singh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henner Drewes<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-21</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>sahilbutoal08<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Amarjargal Gundjalam<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-10-31</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>zonnebloempje<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Siddharth<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jonas Eyov<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-18</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Theppitak Karoonboonyanan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Đoàn Trần Công Danh<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-11-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>ahsmha<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-12-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Brett T. Warden<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-12-30</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Douglas Guptill<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-01</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Shulhan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-01-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Devansh Jain<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-04</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Greg Kelesidis<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>deepanshuraj099<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-12</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>gokulakrishnan-shankar<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>WANG Xuerui<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-17</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sarthak Roy<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Grigory A. Mozhaev<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>MoazAlaa<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-05</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jucasaca<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-06</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Angelle Leger<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-10</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>DrGigioSan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-14</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Nabeel Siddiqui<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>TokieSan<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-27</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Sabri Unal<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-03-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>jpuronah<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-04-03</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle1.B435" table:number-columns-spanned="3" office:value-type="string">
+ <text:p text:style-name="P1"/>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ </table:table-row>
+ </table:table>
+ <text:h text:style-name="Heading_20_3" text:outline-level="3">Contributors to bundled templates</text:h>
+ <table:table table:name="Tabelle2" table:style-name="Tabelle2">
+ <table:table-column table:style-name="Tabelle2.A"/>
+ <table:table-column table:style-name="Tabelle2.B"/>
+ <table:table-column table:style-name="Tabelle2.C"/>
+ <table:table-column table:style-name="Tabelle2.D"/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Laurent BP<text:line-break/>Commits: 60<text:line-break/>Joined: <text:span text:style-name="T2">2015-11-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>andreas kainz<text:line-break/>Commits: 23<text:line-break/>Joined: <text:span text:style-name="T2">2020-04-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Francisco Adrián Sánchez<text:line-break/>Commits: 17<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Heiko Tietze<text:line-break/>Commits: 10<text:line-break/>Joined: <text:span text:style-name="T2">2017-08-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 7<text:line-break/>Joined: <text:span text:style-name="T2">2013-01-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Caolán McNamara<text:line-break/>Commits: 6<text:line-break/>Joined: <text:span text:style-name="T2">2011-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andras Timar<text:line-break/>Commits: 5<text:line-break/>Joined: <text:span text:style-name="T2">2011-04-25</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Alexander Wilms<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2012-05-26</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Andrea Gelmini<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-08-19</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Matthias Seidel<text:line-break/>Commits: 4<text:line-break/>Joined: <text:span text:style-name="T2">2018-11-08</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Olivier Hallot<text:line-break/>Commits: 3<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-26</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Meeks<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2010-12-08</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Istvan Turi<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>David Tardon<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2012-08-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Yousuf Philips<text:line-break/>Commits: 2<text:line-break/>Joined: <text:span text:style-name="T2">2016-10-18</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Francisco Saito<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-03-29</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Muench<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2011-06-09</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Stahl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-03-23</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Stefan Knorr (astron)<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2012-07-16</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jacqueline Rahemipour<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2013-03-23</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Péter Szathmáry<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Edmund Laugasson<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Michael Kovarik<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Jun NOGATA<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Zirk<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-01-07</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2015-04-22</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Mike Kaganski<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2019-03-13</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Rizal Muttaqin<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2020-05-04</text:span></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Kevin Suo<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2022-09-30</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T1">*</text:span>Henry Castro<text:line-break/>Commits: 1<text:line-break/>Joined: <text:span text:style-name="T2">2023-02-20</text:span></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle2.C8" table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P1"/>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ </table:table-row>
+ </table:table>
+ <text:h text:style-name="Heading_20_2" text:outline-level="2">Developers not committing code since 2010-09-28</text:h>
+ <table:table table:name="Tabelle3" table:style-name="Tabelle3">
+ <table:table-column table:style-name="Tabelle3.A"/>
+ <table:table-column table:style-name="Tabelle3.B"/>
+ <table:table-column table:style-name="Tabelle3.C"/>
+ <table:table-column table:style-name="Tabelle3.D"/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Sascha Ballach<text:line-break/>Commits: 1223<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Pascal Junck<text:line-break/>Commits: 1061<text:line-break/>Joined: 2004-10-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">jp<text:line-break/>Commits: 1037<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Peter Burow<text:line-break/>Commits: 729<text:line-break/>Joined: 2000-09-20</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Sander Vesik<text:line-break/>Commits: 695<text:line-break/>Joined: 2000-10-11</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Brauer<text:line-break/>Commits: 648<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Daniel Vogelheim<text:line-break/>Commits: 615<text:line-break/>Joined: 2000-09-27</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Daniel Boelzle<text:line-break/>Commits: 578<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andreas Schlüns<text:line-break/>Commits: 542<text:line-break/>Joined: 2000-09-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Frank Meies<text:line-break/>Commits: 536<text:line-break/>Joined: 2001-04-03</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andreas Martens<text:line-break/>Commits: 492<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jörg Barfurth<text:line-break/>Commits: 474<text:line-break/>Joined: 2000-11-07</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Nils Fuhrmann<text:line-break/>Commits: 473<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Björn Milcke<text:line-break/>Commits: 470<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Stephan Schäfer<text:line-break/>Commits: 447<text:line-break/>Joined: 2001-01-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jörg Budischewski<text:line-break/>Commits: 407<text:line-break/>Joined: 2000-09-28</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tino Rachui<text:line-break/>Commits: 364<text:line-break/>Joined: 2000-09-25</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Behrend Cornelius<text:line-break/>Commits: 354<text:line-break/>Joined: 2000-09-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">gt<text:line-break/>Commits: 351<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver Braun<text:line-break/>Commits: 271<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">th<text:line-break/>Commits: 270<text:line-break/>Joined: 2000-10-27</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Hennes Rohling<text:line-break/>Commits: 253<text:line-break/>Joined: 2000-09-27</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Dieter Loeschky<text:line-break/>Commits: 233<text:line-break/>Joined: 2000-09-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kay Ramme<text:line-break/>Commits: 230<text:line-break/>Joined: 2000-09-27</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andreas Bille<text:line-break/>Commits: 228<text:line-break/>Joined: 2000-10-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Hönnig<text:line-break/>Commits: 211<text:line-break/>Joined: 2000-10-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Christof Pintaske<text:line-break/>Commits: 181<text:line-break/>Joined: 2000-09-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Stephan Wunderlich<text:line-break/>Commits: 179<text:line-break/>Joined: 2002-02-26</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Dirk Grobler<text:line-break/>Commits: 147<text:line-break/>Joined: 2000-09-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tom Verbeek<text:line-break/>Commits: 139<text:line-break/>Joined: 2000-09-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Karl Hong<text:line-break/>Commits: 137<text:line-break/>Joined: 2002-02-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tomas O&apos;Connor<text:line-break/>Commits: 135<text:line-break/>Joined: 2002-03-04</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Duncan Foster<text:line-break/>Commits: 125<text:line-break/>Joined: 2002-09-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Martin Maher<text:line-break/>Commits: 100<text:line-break/>Joined: 2000-09-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Aidan Butler<text:line-break/>Commits: 92<text:line-break/>Joined: 2002-03-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">arellano<text:line-break/>Commits: 87<text:line-break/>Joined: 2001-02-12</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Bustamam Harun<text:line-break/>Commits: 74<text:line-break/>Joined: 2000-11-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">hg<text:line-break/>Commits: 72<text:line-break/>Joined: 2009-10-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Babak Mahbod<text:line-break/>Commits: 69<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mfe<text:line-break/>Commits: 68<text:line-break/>Joined: 2000-10-13</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Gene Anaya<text:line-break/>Commits: 66<text:line-break/>Joined: 2000-10-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">avy<text:line-break/>Commits: 58<text:line-break/>Joined: 2001-02-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Christoph Neumann<text:line-break/>Commits: 57<text:line-break/>Joined: 2003-01-30</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Bertram Nolte<text:line-break/>Commits: 46<text:line-break/>Joined: 2001-08-16</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Steffen Grund<text:line-break/>Commits: 45<text:line-break/>Joined: 2003-02-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Mi<text:line-break/>Commits: 45<text:line-break/>Joined: 2004-07-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Gerd Weiss<text:line-break/>Commits: 45<text:line-break/>Joined: 2007-04-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Armin Theissen<text:line-break/>Commits: 44<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Cyrille Moureaux<text:line-break/>Commits: 42<text:line-break/>Joined: 2002-05-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">markm<text:line-break/>Commits: 39<text:line-break/>Joined: 2002-03-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">neilm<text:line-break/>Commits: 39<text:line-break/>Joined: 2002-11-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">oisin<text:line-break/>Commits: 38<text:line-break/>Joined: 2000-10-03</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">fredrikh<text:line-break/>Commits: 34<text:line-break/>Joined: 2008-06-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Lars Oppermann<text:line-break/>Commits: 33<text:line-break/>Joined: 2002-09-30</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">pw<text:line-break/>Commits: 32<text:line-break/>Joined: 2000-10-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">tpf<text:line-break/>Commits: 32<text:line-break/>Joined: 2000-11-20</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">skotti<text:line-break/>Commits: 30<text:line-break/>Joined: 2009-10-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">John Marmion<text:line-break/>Commits: 28<text:line-break/>Joined: 2000-09-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Andre Fischer&lt;Andre.W.Fischer<text:line-break/>Commits: 28<text:line-break/>Joined: 2010-01-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">wg111939<text:line-break/>Commits: 26<text:line-break/>Joined: 2010-03-17</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">sz<text:line-break/>Commits: 25<text:line-break/>Joined: 2001-04-11</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kevin Hendricks<text:line-break/>Commits: 25<text:line-break/>Joined: 2001-05-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael E. Bohn<text:line-break/>Commits: 23<text:line-break/>Joined: 2010-08-10</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ken Foskey<text:line-break/>Commits: 22<text:line-break/>Joined: 2002-10-01</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">tb121644<text:line-break/>Commits: 22<text:line-break/>Joined: 2009-09-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mm<text:line-break/>Commits: 19<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">khz<text:line-break/>Commits: 18<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">ghiggins<text:line-break/>Commits: 18<text:line-break/>Joined: 2002-05-19</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Sarah Smith<text:line-break/>Commits: 18<text:line-break/>Joined: 2002-10-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Wu Yan<text:line-break/>Commits: 18<text:line-break/>Joined: 2010-04-28</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Amelia Wang<text:line-break/>Commits: 17<text:line-break/>Joined: 2010-09-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Csaba Borbola<text:line-break/>Commits: 16<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">dkenny<text:line-break/>Commits: 16<text:line-break/>Joined: 2001-04-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Darragh Sherwin<text:line-break/>Commits: 15<text:line-break/>Joined: 2002-03-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ping Liao<text:line-break/>Commits: 14<text:line-break/>Joined: 2000-09-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">ok<text:line-break/>Commits: 13<text:line-break/>Joined: 2000-11-16</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mindy Liu<text:line-break/>Commits: 13<text:line-break/>Joined: 2003-03-03</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Svante Schubert<text:line-break/>Commits: 12<text:line-break/>Joined: 2001-02-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">cdt<text:line-break/>Commits: 11<text:line-break/>Joined: 2000-10-16</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Bernd Eilers<text:line-break/>Commits: 11<text:line-break/>Joined: 2001-06-03</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Laszlo Kovacs<text:line-break/>Commits: 11<text:line-break/>Joined: 2002-09-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Yuan Li<text:line-break/>Commits: 10<text:line-break/>Joined: 2006-12-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">hb137859<text:line-break/>Commits: 10<text:line-break/>Joined: 2009-09-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">John Rice<text:line-break/>Commits: 9<text:line-break/>Joined: 2002-09-27</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">ma<text:line-break/>Commits: 8<text:line-break/>Joined: 2001-03-21</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Joerg Sievers<text:line-break/>Commits: 8<text:line-break/>Joined: 2008-06-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">wvd<text:line-break/>Commits: 7<text:line-break/>Joined: 2001-07-18</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">nidd<text:line-break/>Commits: 7<text:line-break/>Joined: 2001-12-25</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mwu<text:line-break/>Commits: 7<text:line-break/>Joined: 2002-07-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Mike Hayes<text:line-break/>Commits: 7<text:line-break/>Joined: 2002-10-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">lwang<text:line-break/>Commits: 7<text:line-break/>Joined: 2002-11-06</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jonathan Pryor<text:line-break/>Commits: 7<text:line-break/>Joined: 2010-09-15</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Ilko Höpping<text:line-break/>Commits: 6<text:line-break/>Joined: 2001-05-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">ts<text:line-break/>Commits: 5<text:line-break/>Joined: 2000-12-11</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">dic<text:line-break/>Commits: 5<text:line-break/>Joined: 2001-02-12</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">luctur<text:line-break/>Commits: 5<text:line-break/>Joined: 2003-11-05</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mathias<text:line-break/>Commits: 5<text:line-break/>Joined: 2009-09-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Uwe Fischer<text:line-break/>Commits: 5<text:line-break/>Joined: 2009-11-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Willem van Dorp<text:line-break/>Commits: 4<text:line-break/>Joined: 2000-09-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">ms93807<text:line-break/>Commits: 4<text:line-break/>Joined: 2010-01-08</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">tlx<text:line-break/>Commits: 3<text:line-break/>Joined: 2000-12-07</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Stella Schulze<text:line-break/>Commits: 3<text:line-break/>Joined: 2001-09-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Stefan Taxhet<text:line-break/>Commits: 3<text:line-break/>Joined: 2001-12-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">tl93732<text:line-break/>Commits: 3<text:line-break/>Joined: 2009-10-20</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jiao Jianhua<text:line-break/>Commits: 3<text:line-break/>Joined: 2010-09-13</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Terence Tse<text:line-break/>Commits: 2<text:line-break/>Joined: 2000-09-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">htajima<text:line-break/>Commits: 2<text:line-break/>Joined: 2000-12-11</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Louis Suárez-Potts<text:line-break/>Commits: 2<text:line-break/>Joined: 2001-08-17</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Michael Rauch<text:line-break/>Commits: 2<text:line-break/>Joined: 2002-03-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mxiao<text:line-break/>Commits: 2<text:line-break/>Joined: 2002-09-17</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Alexis Ledoux<text:line-break/>Commits: 2<text:line-break/>Joined: 2002-09-24</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Chris Halls<text:line-break/>Commits: 2<text:line-break/>Joined: 2002-10-04</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">jmeng<text:line-break/>Commits: 2<text:line-break/>Joined: 2003-12-04</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Wind Li<text:line-break/>Commits: 2<text:line-break/>Joined: 2004-01-30</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">jobin<text:line-break/>Commits: 2<text:line-break/>Joined: 2008-02-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">shane<text:line-break/>Commits: 1<text:line-break/>Joined: 2000-10-02</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">vs<text:line-break/>Commits: 1<text:line-break/>Joined: 2001-01-30</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">dc<text:line-break/>Commits: 1<text:line-break/>Joined: 2002-03-05</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">misha<text:line-break/>Commits: 1<text:line-break/>Joined: 2002-04-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">asaunders<text:line-break/>Commits: 1<text:line-break/>Joined: 2003-07-07</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Dan Williams<text:line-break/>Commits: 1<text:line-break/>Joined: 2004-03-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">gyang<text:line-break/>Commits: 1<text:line-break/>Joined: 2004-10-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">mbu<text:line-break/>Commits: 1<text:line-break/>Joined: 2005-10-18</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Nakata Maho<text:line-break/>Commits: 1<text:line-break/>Joined: 2006-07-08</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Artem Khvat<text:line-break/>Commits: 1<text:line-break/>Joined: 2007-12-14</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">fs93730<text:line-break/>Commits: 1<text:line-break/>Joined: 2009-10-16</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">cl93746<text:line-break/>Commits: 1<text:line-break/>Joined: 2009-10-22</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">oc93805<text:line-break/>Commits: 1<text:line-break/>Joined: 2009-11-30</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">sg128468<text:line-break/>Commits: 1<text:line-break/>Joined: 2010-01-20</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">gh93821<text:line-break/>Commits: 1<text:line-break/>Joined: 2010-04-09</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle3.C33" table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P1"/>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ </table:table-row>
+ </table:table>
+ <text:h text:style-name="Heading_20_3" text:outline-level="3">Contributors to bundled templates</text:h>
+ <table:table table:name="Tabelle4" table:style-name="Tabelle4">
+ <table:table-column table:style-name="Tabelle4.A"/>
+ <table:table-column table:style-name="Tabelle4.B"/>
+ <table:table-column table:style-name="Tabelle4.C"/>
+ <table:table-column table:style-name="Tabelle4.A"/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Oliver Bolte<text:line-break/>Commits: 418<text:line-break/>Joined: 2004-09-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Rüdiger Timm<text:line-break/>Commits: 266<text:line-break/>Joined: 2003-12-01</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Jens-Heiner Rechtien<text:line-break/>Commits: 187<text:line-break/>Joined: 2000-09-19</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Kurt Zenker<text:line-break/>Commits: 146<text:line-break/>Joined: 2004-05-19</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Vladimir Glazounov<text:line-break/>Commits: 89<text:line-break/>Joined: 2004-12-23</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Hans-Joachim Lankenau<text:line-break/>Commits: 15<text:line-break/>Joined: 2004-06-26</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Behrend Cornelius<text:line-break/>Commits: 6<text:line-break/>Joined: 2001-06-08</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Tom Verbeek<text:line-break/>Commits: 4<text:line-break/>Joined: 2001-01-26</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle4.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Volker Ahrendt [va]<text:line-break/>Commits: 2<text:line-break/>Joined: 2002-05-29</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle4.B3" table:number-columns-spanned="3" office:value-type="string">
+ <text:p text:style-name="P1"/>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ </table:table-row>
+ </table:table>
+ <text:p text:style-name="Text_20_body">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:</text:p>
+ <text:list text:style-name="L3">
+ <text:list-item>
+ <text:p text:style-name="P37">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 </text:p>
+ </text:list-item>
+ <text:list-item>
+ <text:p text:style-name="P36">b) contributors to the OOo code base should also be credited for the excellent work they do. </text:p>
+ </text:list-item>
+ </text:list>
+ <text:p text:style-name="Text_20_body">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.</text:p>
+ <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark text:name="wiki"/>Total contributions to the TDF Wiki</text:h>
+ <text:p text:style-name="P25">2819 individuals contributed: </text:p>
+ <table:table table:name="Tabelle5" table:style-name="Tabelle5">
+ <table:table-column table:style-name="Tabelle5.A"/>
+ <table:table-column table:style-name="Tabelle5.B"/>
+ <table:table-column table:style-name="Tabelle5.C"/>
+ <table:table-column table:style-name="Tabelle5.D"/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hrbrgr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hrbrgr</text:a> (57936) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beluga" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beluga</text:a> (43878) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marric" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marric</text:a> (29421) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raal</text:a> (21148) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SteenRønnow" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SteenRønnow</text:a> (19458) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HanV" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HanV</text:a> (19180) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manuelf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manuelf</text:a> (17313) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Akurery" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Akurery</text:a> (14263) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bantoniof" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bantoniof</text:a> (11366) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pierre-yves%20samyn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pierre-yves samyn</text:a> (10099) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:K-j" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">K-j</text:a> (9376) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fito" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jayme Barrientos, Adolfo</text:a> (8481) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Penny" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Penny</text:a> (8374) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dennisroczek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roczek, Dennis</text:a> (8286) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Filmsi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Filmsi</text:a> (8136) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stevefanning" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stevefanning</text:a> (7903) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kelemeng" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kelemeng</text:a> (6527) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sophi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gautier, Sophie</text:a> (5452) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tagezi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Goncharuk, Lera</text:a> (5436) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nogajun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nogata Jun</text:a> (5238) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <text:soft-page-break/>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kü" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kü</text:a> (4614) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uroveits" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Uroveits</text:a> (4564) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yaron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yaron</text:a> (4336) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Martin187" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Martin187</text:a> (4220) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kompilainenn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kompilainenn</text:a> (4184) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tagezibot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tagezibot</text:a> (3924) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qubit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tryon, Robinson</text:a> (3712) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brumla132" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brumla132</text:a> (3708) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jumbo444" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Balland-Poirier, Laurent</text:a> (3514) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Suokunlong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kevin, Suo (锁琨珑)</text:a> (3375) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeanweber" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeanweber</text:a> (3286) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rizmut" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rizmut</text:a> (3232) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hibagonsan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hibagonsan</text:a> (3073) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hossein" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Noorikhah, Hossein</text:a> (3046) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Prcek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Prcek</text:a> (2888) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LibreOfficiant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LibreOfficiant</text:a> (2539) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ohallot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hallot, Olivier</text:a> (2402) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PlateauWolf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PlateauWolf</text:a> (2393) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ronnie%20rg8888" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ronnie rg8888</text:a> (2352) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Diegoperesmarques" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Diegoperesmarques</text:a> (2142) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RBd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bielefeld, Rainer</text:a> (2077) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:X1sc0" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">X1sc0</text:a> (1864) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lyzbet" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lyzbet</text:a> (1827) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Enoki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Enoki</text:a> (1783) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Floeff" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Effenberger, Florian</text:a> (1757) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LobaLuna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LobaLuna</text:a> (1697) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bjoern-michaelsen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michaelsen, Björn</text:a> (1554) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iva%20Ot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iva Ot</text:a> (1545) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Strepon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Horáček, Stanislav</text:a> (1543) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kolarkater" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kolarkater</text:a> (1418) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcpare" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcpare</text:a> (1403) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blue.painting" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blue.painting</text:a> (1393) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GerryT" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GerryT</text:a> (1330) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Naruoga" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Naruoga</text:a> (1239) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Riyadh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Riyadh</text:a> (1211) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adailton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adailton</text:a> (1203) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gbpacheco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Buzzatti Pacheco, Gustavo</text:a> (1198) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mirek2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mirek2</text:a> (1162) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cornouws" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nouws, Cor</text:a> (1147) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:So" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">So</text:a> (1113) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Haas,%20Uwe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Haas, Uwe</text:a> (1095) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clement21.philippe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clement21.philippe</text:a> (1076) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:E.le-gall" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">E.le-gall</text:a> (1027) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davido" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ostrovsky, David</text:a> (1011) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Junmeguro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Junmeguro</text:a> (983) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nnino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Novak, Nino</text:a> (976) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mmeeks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Meeks, Michael</text:a> (959) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tom</text:a> (926) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LLAP016" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LLAP016</text:a> (875) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Htietze" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tietze, Heiko</text:a> (866) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Regina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Henschel, Regina</text:a> (836) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jucasaca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sanz Cabrero, Juan Carlos</text:a> (830) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:H-k" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">H-k</text:a> (804) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drew" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drew</text:a> (748) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Behrens, Thorsten</text:a> (739) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RobertG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RobertG</text:a> (733) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Teo91" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Teo91</text:a> (733) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jmpierre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jmpierre</text:a> (729) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mike.saunders" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mike.saunders</text:a> (720) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AAAA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AAAA</text:a> (710) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kees538" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kees538</text:a> (699) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JanIversen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iversen, Jan</text:a> (693) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ErAck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rathke, Eike</text:a> (678) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Floris%20v" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Floris v</text:a> (661) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vmiklos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vajna, Miklos</text:a> (660) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lachend" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lachend</text:a> (647) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hazel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hazel</text:a> (639) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jlv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jlv</text:a> (603) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jmadero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jmadero</text:a> (596) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raulpacheco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raulpacheco</text:a> (596) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sam%20m" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sam m</text:a> (567) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cloph" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lohmaier, Christian</text:a> (563) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elmau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elmau</text:a> (554) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChristophNoack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChristophNoack</text:a> (549) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paulo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paulo</text:a> (546) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JO3EMC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JO3EMC</text:a> (537) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Astron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Knorr, Stefan</text:a> (521) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davidnelson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davidnelson</text:a> (517) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elianedomingos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elianedomingos</text:a> (508) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vsfoote" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foote, V Stuart</text:a> (503) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Reisi007" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Reisinger, Florian</text:a> (491) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elcico" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elcico</text:a> (482) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jana.urbanova" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jana.urbanova</text:a> (478) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stahl, Michael</text:a> (478) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Veracape" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Veracape</text:a> (472) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hellotheworld" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hellotheworld</text:a> (466) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sefran" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sefran</text:a> (466) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philipz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Philips, Yousuf</text:a> (462) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kendy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Holešovský, Jan</text:a> (451) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pmladek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mladek, Petr</text:a> (450) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eskroni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eskroni</text:a> (437) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mikekaganski" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kaganski, Mike</text:a> (436) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rmfaile" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rmfaile</text:a> (436) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Timotheonb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timotheonb</text:a> (421) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chris69" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chris69</text:a> (419) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gecko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gecko</text:a> (419) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Caolan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">McNamara, Caolán</text:a> (410) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RogerioLuzCoelho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luz Coelho, Rogério</text:a> (409) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sebul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sebul</text:a> (408) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kohei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yoshida, Kohei</text:a> (407) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Markus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mohrhard, Markus</text:a> (397) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndrasTimar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndrasTimar</text:a> (393) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Schiavinatto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schiavinatto</text:a> (393) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexander%20Wilms" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexander Wilms</text:a> (392) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dtardon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tardon, David</text:a> (388) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Petr-valach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Petr-valach</text:a> (386) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Foral" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foral</text:a> (384) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Opensoftpl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Opensoftpl</text:a> (381) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StefanW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StefanW</text:a> (379) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Herissongrognon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Herissongrognon</text:a> (378) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LenkaD" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LenkaD</text:a> (377) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emanuel%20Marcatinco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emanuel Marcatinco</text:a> (374) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Felipeviggiano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Felipeviggiano</text:a> (371) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ady" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ady</text:a> (367) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thackert" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thackert</text:a> (359) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kara" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kara, Muhammet</text:a> (348) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mayan%20Tigger" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mayan Tigger</text:a> (347) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shmget" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thiebaud, Norbert</text:a> (341) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Libo02" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Libo02</text:a> (340) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vpanter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vpanter</text:a> (333) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dhsung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dhsung</text:a> (331) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Korrawit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pruegsanusak, Korrawit</text:a> (330) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drodriguez" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drodriguez</text:a> (329) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Volkerme" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Volkerme</text:a> (329) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wget" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wget</text:a> (323) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arranna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arranna</text:a> (322) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kitaygrad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kitaygrad</text:a> (314) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gang65" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kosiorek, Bartosz</text:a> (313) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Donaldo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Donaldo</text:a> (305) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khanson679" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khanson679</text:a> (305) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zerng07" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tseng, Cheng-Chia</text:a> (294) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cheche" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cheche</text:a> (292) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heinzws" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heinzws</text:a> (292) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Librelegal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Librelegal</text:a> (292) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TorLillqvist" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lillqvist, Tor</text:a> (292) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emanuel%20A.%20Marcatinco%20B." text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emanuel A. Marcatinco B.</text:a> (290) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bergmann, Stephan</text:a> (281) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HARA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HARA</text:a> (279) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Valjanovickova" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Valjanovickova</text:a> (277) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ansiklopedici" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ansiklopedici</text:a> (274) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Epix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Epix</text:a> (268) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Helen%20russian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Helen russian</text:a> (268) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kaplan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kaplan, Lior</text:a> (267) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lodahl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lodahl</text:a> (264) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dayeong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dayeong</text:a> (263) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Twistios" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Twistios</text:a> (259) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Remarques" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Remarques</text:a> (252) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Deemonizer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Deemonizer</text:a> (248) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Italovignoli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vignoli, Italo</text:a> (247) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adrianoafonso" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adrianoafonso</text:a> (246) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Saraiki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Saraiki</text:a> (244) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Loic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Loic</text:a> (240) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EricBright" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EricBright</text:a> (238) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeanmi2403" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeanmi2403</text:a> (237) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Steve" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Steve</text:a> (237) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maintenance%20script" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maintenance script</text:a> (235) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hogue" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hogue</text:a> (233) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ithaldenni20" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ithaldenni20</text:a> (233) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mesho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mesho</text:a> (233) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cbosdo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bosdonnat, Cédric</text:a> (231) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bedipp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bedipp</text:a> (226) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kerwyn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kerwyn</text:a> (221) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Naniud" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Naniud</text:a> (221) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jbfaure" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jbfaure</text:a> (220) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Almusaireae" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Almusaireae</text:a> (219) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mars" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mars</text:a> (219) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kkwet38" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kkwet38</text:a> (218) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gilvanvilarim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gilvanvilarim</text:a> (217) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khirano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khirano</text:a> (215) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Babinecm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Babinecm</text:a> (212) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ayhanyalcinsoy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">YALÇINSOY, Ayhan</text:a> (209) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ZuzuN" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ZuzuN</text:a> (208) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andreschnabel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andreschnabel</text:a> (207) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chtfn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chtfn</text:a> (207) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Daveb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Daveb</text:a> (207) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nemeth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nemeth</text:a> (206) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Deneb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Latini, Marina</text:a> (205) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:XsLiDian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">XsLiDian</text:a> (203) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Steinzeit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Steinzeit</text:a> (200) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wheatbix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wheatbix</text:a> (198) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erhardt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erhardt</text:a> (193) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schulz, Charles-H.</text:a> (191) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DmitryBowie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DmitryBowie</text:a> (188) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Franklin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Franklin</text:a> (188) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tarnhold" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tarnhold</text:a> (187) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mazerunner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mazerunner</text:a> (185) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Meixome" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Méixome, Antón</text:a> (179) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Issa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alkurtass, Issa</text:a> (178) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sw0000j" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sw0000j</text:a> (176) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raw%20text" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raw text</text:a> (175) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tobaem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Madl, Tobias</text:a> (175) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fridrich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fridrich</text:a> (172) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luizheli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luizheli</text:a> (172) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:N.yadi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">N.yadi</text:a> (171) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Furusho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Furusho</text:a> (170) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hatapitk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pitkänen, Harri</text:a> (169) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Óvári" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Óvári</text:a> (169) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yfjiang" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jiang, Yifan</text:a> (168) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Det" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Det</text:a> (165) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gippy73" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ponzo, Gabriele</text:a> (165) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matuaki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Matuaki</text:a> (163) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rosp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rosp</text:a> (163) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ckhe1215" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ckhe1215</text:a> (162) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:See" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">See</text:a> (160) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ertai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Snelders, Rob</text:a> (159) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hagar%20Delest" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hagar Delest</text:a> (159) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xystina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xystina</text:a> (154) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uminakabkbk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Uminakabkbk</text:a> (153) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Goodlinuxuser" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Goodlinuxuser</text:a> (151) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pietro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pietro</text:a> (150) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Slacka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Slacka</text:a> (150) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rhogez" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Herzog, Christoph</text:a> (149) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chris-hoh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chris-hoh</text:a> (147) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kukekko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kukekko</text:a> (147) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Valtermura" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Valtermura</text:a> (147) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Back69" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Back69</text:a> (146) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lmamane" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mamane, Lionel Elie</text:a> (146) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kirk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kirk</text:a> (145) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mipmap" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mipmap</text:a> (144) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Teseu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Teseu</text:a> (144) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michelr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michelr</text:a> (141) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lorenzo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lorenzo</text:a> (140) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tjhietala" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tjhietala</text:a> (140) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gokhan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gurbetoğlu, Gökhan</text:a> (139) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ztamas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zolnai, Tamás</text:a> (139) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guilhem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guilhem</text:a> (138) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JorenDC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">De Cuyper, Joren</text:a> (138) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mbalabanov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mbalabanov</text:a> (138) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philippw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Weissenbacher, Philipp</text:a> (138) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rutilus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rutilus</text:a> (138) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tabe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Abe, Takeshi</text:a> (138) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heliojsf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heliojsf</text:a> (137) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:P.guimberteau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">P.guimberteau</text:a> (137) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pepeleduin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pepeleduin</text:a> (137) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Norah" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Norah</text:a> (135) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shunesburg69" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shunesburg69</text:a> (135) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Filhocf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Filhocf</text:a> (132) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Llunak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Llunak</text:a> (132) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davydych" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davydych</text:a> (131) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Demetriusb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Demetriusb</text:a> (131) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Richteruwe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Richteruwe</text:a> (131) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michel, Mathias</text:a> (129) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ikuya" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ikuya</text:a> (127) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ki%20Drupadi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ki Drupadi</text:a> (127) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nik</text:a> (127) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Serval2412" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nabet, Julien</text:a> (127) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Baffclan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Baffclan</text:a> (126) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RGB.ES" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RGB.ES</text:a> (124) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JARF" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JARF</text:a> (123) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krackedpress" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krackedpress</text:a> (123) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Psluk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Psluk</text:a> (123) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Trapezus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Trapezus</text:a> (122) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JohnSmith" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JohnSmith</text:a> (120) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeyli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liebel, Jennifer</text:a> (119) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phorious" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Phorious</text:a> (118) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jstnlth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jstnlth</text:a> (117) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lqju96" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lqju96</text:a> (117) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stephan.ficht" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stephan.ficht</text:a> (117) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Spaetz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Spaeth, Sebastian</text:a> (115) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ysabeau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ysabeau</text:a> (115) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Markers" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Markers</text:a> (114) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Massimo.zaffaina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Massimo.zaffaina</text:a> (113) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PulkitKrishna00" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PulkitKrishna00</text:a> (113) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vohe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vohe</text:a> (113) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcus%20Gama" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcus Gama</text:a> (112) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bachka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bachka</text:a> (111) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dougvigliazzi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dougvigliazzi</text:a> (111) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Medieval" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Medieval</text:a> (111) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Monthoflibreoffice%20bot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Monthoflibreoffice bot</text:a> (110) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andreasma" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mantke, Andreas</text:a> (109) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nyucel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nyucel</text:a> (108) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Salix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Salix</text:a> (107) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bitsfritz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bitsfritz</text:a> (104) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Klaibson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Klaibson</text:a> (104) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MDDN" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MDDN</text:a> (104) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Timur%20LOL" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timur LOL</text:a> (104) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wope" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pechlaner, Wolfgang</text:a> (102) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JZA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JZA</text:a> (101) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WillZ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WillZ</text:a> (100) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Android272" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Android272</text:a> (99) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JeHa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JeHa</text:a> (99) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlanC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlanC</text:a> (98) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dan</text:a> (95) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vpinheiro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vpinheiro</text:a> (95) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Geraldg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Geraldg</text:a> (94) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gulsahkose" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Köse, Gülşah</text:a> (94) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Barbora" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Barbora</text:a> (93) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MagicFab" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MagicFab</text:a> (93) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andreasg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andreasg</text:a> (92) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lekle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lekle</text:a> (92) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Atalanttore" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Atalanttore</text:a> (90) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Frombenny" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Frombenny</text:a> (90) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Richv2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Richv2</text:a> (90) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zeki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zeki</text:a> (89) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Catalin%20Festila" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Catalin Festila</text:a> (88) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jhertel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hertel, Jesper</text:a> (88) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aurimas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fišeras, Aurimas</text:a> (87) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Milos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Milos</text:a> (87) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paulojose" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paulojose</text:a> (87) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Omori" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Omori</text:a> (86) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Steve-%20-" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Steve- -</text:a> (86) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eddy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eddy</text:a> (85) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Evy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Evy</text:a> (84) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jfnif" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jfnif</text:a> (84) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KorrawitBot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KorrawitBot</text:a> (84) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Santhab" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Santhab</text:a> (84) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Enio.gemmo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Enio.gemmo</text:a> (81) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JamesWalker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JamesWalker</text:a> (81) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ogervasi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ogervasi</text:a> (80) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xosé" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xosé</text:a> (80) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:80686" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">80686</text:a> (79) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KeithCu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KeithCu</text:a> (79) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kjh000121" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kjh000121</text:a> (79) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Laveni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Laveni</text:a> (79) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CharlieRamirezAnimationStudiosMX" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CharlieRamirezAnimationStudiosMX</text:a> (78) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jwtiyar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jwtiyar</text:a> (78) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcio%20Oliveira" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcio Oliveira</text:a> (78) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Northwoods35" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Northwoods35</text:a> (78) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ocleyr2lalune" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ocleyr2lalune</text:a> (78) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uwealtmann" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Uwealtmann</text:a> (78) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Socetk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Socetk</text:a> (77) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tommy.WU" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tommy.WU</text:a> (77) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quikee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quikee</text:a> (76) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Albino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Albino</text:a> (75) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:K.K.Ashisuto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">K.K.Ashisuto</text:a> (75) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emoreno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emoreno</text:a> (74) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lbalbalba" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lbalbalba</text:a> (74) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Namikawamisaki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Namikawamisaki</text:a> (73) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rachel618" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rachel618</text:a> (73) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Caster" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Castermans, Luc</text:a> (72) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Momo50" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Momo50</text:a> (72) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aury88" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aury88</text:a> (71) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RalfHB" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RalfHB</text:a> (71) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sawakaze" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sawakaze</text:a> (71) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ahmad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Al-Harthi, Ahmad Hussein</text:a> (70) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jo7ueb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jo7ueb</text:a> (70) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Malhassoun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Malhassoun</text:a> (69) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Freetank" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Freetank</text:a> (68) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fábio%20Farias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fábio Farias</text:a> (68) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gghh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gghh</text:a> (68) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SoNick%20RND" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SoNick RND</text:a> (68) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ptux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ptux</text:a> (67) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bersam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Karbasion, Bersam</text:a> (65) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bmcs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bmcs</text:a> (65) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kabe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kabe</text:a> (65) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StanG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StanG</text:a> (65) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jmux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Glogowski, Jan-Marek</text:a> (64) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oipila" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oipila</text:a> (64) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ptrsk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ptrsk</text:a> (64) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hanapospisilova" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hanapospisilova</text:a> (63) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rq" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kudelis, Rimas</text:a> (63) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sikeler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sikeler</text:a> (63) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sthibaul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thibault, Samuel</text:a> (63) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mariuz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Popa, Adrian Marius</text:a> (62) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Denco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Denco</text:a> (61) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Frieder" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Frieder</text:a> (61) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jimin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jimin</text:a> (61) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arnaudlecam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arnaudlecam</text:a> (60) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jlgrenar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jlgrenar</text:a> (60) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jmontane" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Montané, Joan</text:a> (60) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OctopusET" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OctopusET</text:a> (60) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piotrekr1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piotrekr1</text:a> (60) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tynnoel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tynnoel</text:a> (59) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndikaTriwidada" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndikaTriwidada</text:a> (58) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Camillem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Camillem</text:a> (58) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dneelyep" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Neel, Daniel</text:a> (58) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kougen250T" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kougen250T</text:a> (58) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Loflex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Loflex</text:a> (58) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kukan, Matúš</text:a> (58) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jihui%20choi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jihui choi</text:a> (57) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bubli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bubli</text:a> (56) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davefilms" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davefilms</text:a> (56) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Glen.reesor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Glen.reesor</text:a> (56) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ramones" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ramones</text:a> (56) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ramtk6726" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ramtk6726</text:a> (56) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ajrhunt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hunt, Andrzej</text:a> (55) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fifh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fifh</text:a> (55) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grandinj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grandin, Noel</text:a> (55) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jrahemipour" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jrahemipour</text:a> (55) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ccornell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cornell, Clayton</text:a> (54) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fanthomas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fanthomas</text:a> (54) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mahfiaz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mahfiaz</text:a> (54) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heben2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heben2</text:a> (53) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sunny2038" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sunny2038</text:a> (53) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lendo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lendo</text:a> (52) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Petrizzo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Petrizzo</text:a> (52) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ArnoldSchiller" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ArnoldSchiller</text:a> (51) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Helmar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Helmar</text:a> (51) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jaani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jaani</text:a> (51) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quoifleur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quoifleur</text:a> (51) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Agd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Agd</text:a> (50) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Halparker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Halparker</text:a> (50) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paz</text:a> (50) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ronaldo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ronaldo</text:a> (50) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SeoYeonJin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SeoYeonJin</text:a> (50) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mpescador" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mpescador</text:a> (49) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Magliocchetti, Riccardo</text:a> (49) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vardomescro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vardomescro</text:a> (49) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Afaccioli74" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Afaccioli74</text:a> (48) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lviktoria" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lviktoria</text:a> (48) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michaelweghorn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Weghorn, Michael</text:a> (48) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dagobert%2078" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dagobert 78</text:a> (47) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Himajin100000" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomoyuki, Kubota</text:a> (47) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jhannine20" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jhannine20</text:a> (47) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quest-88" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quest-88</text:a> (47) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rbuj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Buj Gelonch, Robert Antoni</text:a> (47) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Amtliz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Amtliz</text:a> (46) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FloF" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FloF</text:a> (46) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sk94" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sk94</text:a> (46) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sveinki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sveinki</text:a> (46) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bfo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bfo</text:a> (45) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khaledhosny" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hosny, Khaled</text:a> (45) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lua" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lua</text:a> (45) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PhilJung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jung, Philippe</text:a> (45) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Robwestein" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robwestein</text:a> (45) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bhorst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bhorst</text:a> (44) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ikh1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ikh1</text:a> (44) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aaronxu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aaronxu</text:a> (43) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cottage14" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cottage14</text:a> (43) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gareth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gareth</text:a> (43) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GerhardW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GerhardW</text:a> (43) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SimonAW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wilper, Simon</text:a> (43) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Terrence%20Enger" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Enger, Terrence</text:a> (43) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Winfried" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Donkers, Winfried</text:a> (43) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bluedwarf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bluedwarf</text:a> (42) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fkara" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fkara</text:a> (42) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KAMI" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KAMI</text:a> (42) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SangwooPark" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SangwooPark</text:a> (42) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AnXh3L0" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AnXh3L0</text:a> (41) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Another%20sam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Another sam</text:a> (41) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arjunaraoc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arjunaraoc</text:a> (41) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joey</text:a> (41) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marklh9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marklh9</text:a> (41) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pedlino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pedlino</text:a> (41) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fábio%20Coelho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fábio Coelho</text:a> (40) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kraucer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kraucer</text:a> (40) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bearon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Budea, Áron</text:a> (39) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Valdirbarbosa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Valdirbarbosa</text:a> (39) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Enervation" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Enervation</text:a> (38) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Partick.auclair" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Partick.auclair</text:a> (38) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pje335" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pje335</text:a> (38) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stephaneg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stephaneg</text:a> (38) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex%20Thurgood" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex Thurgood</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cjenkins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cjenkins</text:a> (37) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eliskavotipkova" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eliskavotipkova</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ivanslf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ivanslf</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jaragunde" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aragunde Pérez, Jacobo</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kano</text:a> (37) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kinshuksunil" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kinshuksunil</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LeMoyne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Castle, John LeMoyne</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pavel1513" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pavel1513</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RaducuG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RaducuG</text:a> (37) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sistemo2021" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sistemo2021</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tbsdy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sherlock, Chris</text:a> (37) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Caco13" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Caco13</text:a> (36) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Danishka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Danishka</text:a> (36) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Patheticcockroach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Patheticcockroach</text:a> (36) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sci%20citation" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sci citation</text:a> (36) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thep" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thep</text:a> (36) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yanpas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yan Pashkovsky</text:a> (36) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andreas%20ka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andreas ka</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arnaud%20versini" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arnaud versini</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HiTom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jingtao, Yan</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Liongold" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liongold</text:a> (35) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nora" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nora</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pingping111" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pingping111</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stalker08" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stalker08</text:a> (35) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sumuthu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Subramanian, Muthu</text:a> (35) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alg</text:a> (34) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Skagh1750" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Skagh1750</text:a> (34) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bormant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bormant</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davidlamhauge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davidlamhauge</text:a> (33) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eszka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kłos, Szymon</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FelipeAle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FelipeAle</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcorrius" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Corrius, Jesús</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lmartinezh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lmartinezh</text:a> (33) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marrod" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marrod</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mateus.m.luna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mateus.m.luna</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pereriksson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pereriksson</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ptoye" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ptoye</text:a> (33) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rafi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rafi</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shirahara" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shirahara</text:a> (33) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexanderwerner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexanderwerner</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clio</text:a> (32) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Daud" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Daud</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lenochod" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lenochod</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marinello" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marinello, Marco</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ming" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dryomov, Artur</text:a> (32) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Monocat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Monocat</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vulcain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vulcain</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xuacu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xuacu</text:a> (32) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chloeeekim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chloeeekim</text:a> (31) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:H" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">H</text:a> (31) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IvanM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IvanM</text:a> (31) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pranavk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kant, Pranav</text:a> (31) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Usayan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Usayan</text:a> (31) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Am97" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Am97</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Justman10000" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Justman10000</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maose" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maose</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Njsg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Njsg</text:a> (30) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SEVEN" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SEVEN</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Speck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Speck</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tclovis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tclovis</text:a> (30) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thardeck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thardeck</text:a> (30) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Acbaird" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Acbaird</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cida.Coltro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cida.Coltro</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Darbe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Darbe</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EdvaldoSCruz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EdvaldoSCruz</text:a> (29) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elsass68490" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elsass68490</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Haaninjo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Haaninjo</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JPLED" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ledure, Jean-Pierre</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RodolfoRG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RodolfoRG</text:a> (29) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Серж" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Серж</text:a> (29) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ace-dent" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ace-dent</text:a> (28) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FlipR" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Riemer, Philipp</text:a> (28) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PaoloPelloni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PaoloPelloni</text:a> (28) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:المسيكين" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">المسيكين</text:a> (28) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khaledhosny2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khaledhosny2</text:a> (27) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcofilippozzi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcofilippozzi</text:a> (27) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcos%20Paulo%20de%20Souza" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcos Paulo de Souza</text:a> (27) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Micm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Micm</text:a> (27) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PeppinoLib" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PeppinoLib</text:a> (27) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sarojdhakal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sarojdhakal</text:a> (27) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thuswa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thuswaldner, Albert</text:a> (27) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alayaran" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alayaran</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eresus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eresus</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ezeperez26" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ezeperez26</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fanch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fanch</text:a> (26) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Librek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Librek</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Libreofficer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Libreofficer</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Linuxman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Linuxman</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lutch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lutch</text:a> (26) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Myunghoonju" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Myunghoonju</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NigelH" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hawkins, Nigel</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pirat%20Michi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pirat Michi</text:a> (26) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vaslav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vaslav</text:a> (26) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aidsoid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aidsoid</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ailion" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ailion</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roßmanith, Christina</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Freddyrh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Freddyrh</text:a> (25) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gatlibs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sullivan, Gatlin</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lboccia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lboccia</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Linux%209x" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Linux 9x</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manuel%20De%20Franceschi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manuel De Franceschi</text:a> (25) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Noelson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Noelson</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Onur.bingo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Onur.bingo</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Papamatti" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Freund, Matthias</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SophiaS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schröder, Sophia</text:a> (25) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Winniemiel05" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Winniemiel05</text:a> (25) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blendergeek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Magee, Timothy</text:a> (24) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elpapki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elpapki</text:a> (24) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gaianer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gaianer</text:a> (24) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gérard24" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gérard24</text:a> (24) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ksoviero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ksoviero</text:a> (24) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nik%20vr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nik vr</text:a> (24) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Olivier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Olivier</text:a> (24) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hamurcu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hamurcu</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeppebundsgaard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeppebundsgaard</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lostinthiswhirlpool" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lostinthiswhirlpool</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Olorin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Olorin</text:a> (23) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Skip-on" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Skip-on</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TaeWong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TaeWong</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Team%20One" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Team One</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thumperward" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thumperward</text:a> (23) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tommy27" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tommy27</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Toxitom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Toxitom</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Trueriver" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Trueriver</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Webmink" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Webmink</text:a> (23) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Youngman, Anthony W.</text:a> (23) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aphaia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aphaia</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bellerophon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bellerophon</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bjoern" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bjoern</text:a> (22) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HenryGR" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HenryGR</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JChimene" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JChimene</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Keymap19" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Keymap19</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RegisPerdreau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RegisPerdreau</text:a> (22) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Roman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roman</text:a> (22) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Flywire" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Flywire</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Johannes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johannes</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Liusiqi43" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liusiqi43</text:a> (21) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Logisch%20dede" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Logisch dede</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MichaMuc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MichaMuc</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Necdetyucel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Necdetyucel</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Puster" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Puster</text:a> (21) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shiko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shiko</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WalterPape" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WalterPape</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wayra" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wayra</text:a> (21) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bugmenot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bugmenot</text:a> (20) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dennisfrancis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dennisfrancis</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grasip" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grasip</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grzesiek%20a" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grzesiek a</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HeinF" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HeinF</text:a> (20) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Icobgr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Icobgr</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kendram" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kendram</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LLyaudet" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LLyaudet</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mattsturgeon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mattsturgeon</text:a> (20) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mmonas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Monastirsky, Maxim</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PRosmaninho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PRosmaninho</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vdragon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vdragon</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vmalep" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vmalep</text:a> (20) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Webham" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Webham</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:XMatence" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">XMatence</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yorick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yorick</text:a> (20) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zapata" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zapata</text:a> (20) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:A-zakh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">A-zakh</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chernik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chernik</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clarice%20Vigliazzi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clarice Vigliazzi</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guateconexion" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guateconexion</text:a> (19) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Houbsi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Houbsi</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JaronBaron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JaronBaron</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jem</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Juergenf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Funk, Juergen</text:a> (19) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Juergenfenn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Juergenfenn</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kentarch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kentarch</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lothar.becker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lothar.becker</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PeeWee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PeeWee</text:a> (19) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shinnok" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ionita, Teodor-Mircea</text:a> (19) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dolezvo1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Doležal, Vojtěch</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ehsan.movahed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ehsan.movahed</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Foolfitz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foolfitz</text:a> (18) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hidayet" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hidayet</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jstaerk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jstaerk</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Narayan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Narayan</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nestifea61" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nestifea61</text:a> (18) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NoelPower" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Power, Noel</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Richard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Richard</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Serge%20Krot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Serge Krot</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sooth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sooth</text:a> (18) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:UriHerrera" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">UriHerrera</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vuhung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vuhung</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yusufketen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yusufketen</text:a> (18) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:林漢昌" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">林漢昌</text:a> (18) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Akerbeltz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Akerbeltz</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chd</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Craigo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Craigo</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dlmoretz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dlmoretz</text:a> (17) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eymux2009" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ertsey, Andor</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guilherme.vanz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guilherme.vanz</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gulmorais" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gulmorais</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcoagpinto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pinto, Marco A.G.</text:a> (17) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mihkel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tõnnov, Mihkel</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rubembarreto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rubembarreto</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sohyun99" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sohyun99</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Taken" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Taken</text:a> (17) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uli.l" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Uli.l</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uznomis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zu, Ximeng</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yumakino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yumakino</text:a> (17) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Беломир" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Беломир</text:a> (17) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Airon90" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Airon90</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexpikptz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexpikptz</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dhersh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dhersh</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elucches" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elucches</text:a> (16) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Janus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Janus</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kingu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kingu</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MoIshihara" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MoIshihara</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oweng" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oweng</text:a> (16) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:P.Guimberteau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">P.Guimberteau</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PauGNU" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PauGNU</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ristoi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ristoi</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Smarquespt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Smarquespt</text:a> (16) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Smrabelo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Smrabelo</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Syntaxerrormmm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Syntaxerrormmm</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TPJ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TPJ</text:a> (16) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:APerson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">APerson</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Akki95" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Akki95</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andy98" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andy98</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bertob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bertob</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gilward%20Kukel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gilward Kukel</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Irmhild" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Irmhild</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khlood%20Elsayed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khlood Elsayed</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lefevre00" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lefevre00</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luctur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luctur</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Miko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Miko</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Naudy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Naudy</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Npcdoom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dominguez, Rafael</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Patriciasc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Patriciasc</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rafaelff" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rafaelff</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raniaamina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raniaamina</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raul.malea" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raul.malea</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Royerjy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Royerjy</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomthorogood" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thorogood, Tom</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ulf%20hamburg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ulf hamburg</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yecril21pl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yecril21pl</text:a> (15) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:暗影遺言" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">暗影遺言</text:a> (15) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adsoncristian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adsoncristian</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AliIsingor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AliIsingor</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Darkcircle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Darkcircle</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DrRobotto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DrRobotto</text:a> (14) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elrath" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elrath</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fina</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Francis59" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Francis59</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guuml" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guuml</text:a> (14) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Halencarjunior" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Halencarjunior</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lfernandocarvalho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lfernandocarvalho</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Librosaurus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Librosaurus</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luked" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dixon, Luke</text:a> (14) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mderoucy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mderoucy</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rania" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rania</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Reinsle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Reinsle</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RiderExMachina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RiderExMachina</text:a> (14) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Susobhang70" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Susobhang70</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Svante" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Svante</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tamiliam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tamiliam</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Testnoda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Testnoda</text:a> (14) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thangamani-arun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thangamani-arun</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yoshi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yoshi</text:a> (14) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Akoscomp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Akoscomp</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alrt84" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alrt84</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alyssonware" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alyssonware</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beuss" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beuss</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cedric31" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cedric31</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Crolidge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Crolidge</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gallaecio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gallaecio</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jobo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jobo</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kadekilo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kadekilo</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Leomota" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Leomota</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ljelly" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ljelly</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luc</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mabbb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mabbb</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mikeyy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mikeyy</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mortense" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mortense</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Odd123" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Odd123</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pete%20Boyd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pete Boyd</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:S.Gecko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">S.Gecko</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Samtuke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Samtuke</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sanyii" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sanyii</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Simplicity%20Instinct" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Simplicity Instinct</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ThierryM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ThierryM</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tnishiki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tnishiki</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tusharrai2017" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tusharrai2017</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vivaelcelta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vivaelcelta</text:a> (13) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vkkodali" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vkkodali</text:a> (13) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:A8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">A8</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alfabech" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alfabech</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:And471" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">And471</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AustinW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AustinW</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bhaskar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bhaskar</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brett" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brett</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cepiloth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cepiloth</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chris2020" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chris2020</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cralin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cralin</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Debring" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Debring</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Faisal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Al-Otaibi, Faisal M.</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Halan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Halan</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Immanuelg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Immanuelg</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kikopb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kikopb</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krabina" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krabina</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kruno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Šebetić, Krunoslav</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lgodard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Godard, Laurent</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Modestas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rimkus, Modestas</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nandar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nandar</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pcapeluto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pcapeluto</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:R4chi7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gupta, Rachit</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rafaelhlima" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rafaelhlima</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Samphan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raruenrom, Samphan</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Scren" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Möller, Sören — spelled Soeren Moeller in some patches</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Staticsafe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Staticsafe</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vasily.melenchuk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Melenchuk, Vasily</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Veerh01" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Veerh01</text:a> (12) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:翼之靈歌" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">翼之靈歌</text:a> (12) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bryanquigley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bryanquigley</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cdan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cdan</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChristopheS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChristopheS</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dajare" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dajare</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ebraminio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ebraminio</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eduaraujo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eduaraujo</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gokul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gokul, S</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Johnny%20M" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johnny M</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kallecarl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kallecarl</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kolbjoern" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kolbjoern</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Leatherbottle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Leatherbottle</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luiz%20Henrique%20Natalino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luiz Henrique Natalino</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MNeto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MNeto</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Madscientist159" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pearson, Timothy</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marco%20c" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marco c</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcuskgosi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcuskgosi</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NON" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NON</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nikjoh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johansson, Niklas</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nuernbergerj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nuernbergerj</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rogeniobelem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rogeniobelem</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Salmaan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Salmaan</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sunk8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sunk8</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tanty" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gomez, Andres</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vrlivre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vrlivre</text:a> (11) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zero0w" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zero0w</text:a> (11) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aeusebio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aeusebio</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Algotruneman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Algotruneman</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beppec56" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Castagno, Giuseppe</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blargh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blargh</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChrSchultz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChrSchultz</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Diginin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Diginin</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eagles051387" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eagles051387</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eduardogula" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eduardogula</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eficheux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eficheux</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:El7r" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">El7r</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:J.baer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">J.baer</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jdittrich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jdittrich</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joacim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joacim</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kadertarlan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kadertarlan</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kirill%20NN" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kirill NN</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Linuxuser330250" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Linuxuser330250</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lionlinux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lionlinux</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mesutcfc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mesutcfc</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mfldelton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chung, Elton</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mikalai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mikalai</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Morvan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Morvan</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mpumrlova" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mpumrlova</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nateyee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nateyee</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Offtkp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Offtkp</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Olea" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Olea</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Otto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Otto</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paour" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paour</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Revol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Revol</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ronja" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ronja</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tatat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tatat</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomg</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ttocsmij" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ttocsmij</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Twstdude0to1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Twstdude0to1</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:User8192" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">User8192</text:a> (10) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wlenon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wlenon</text:a> (10) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Abdulmajeed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Al-Abdulrazzaq, Abdulmajeed</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Agger" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Agger</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aicra" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aicra</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndyB" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brandner, Andreas</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AtkinsSJ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AtkinsSJ</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Camargo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Camargo</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cnuss" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cnuss</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Compressor%20nickel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Compressor nickel</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Crazyskeggy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Crazyskeggy</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dupreyb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dupreyb</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fatdf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fatdf</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gibi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gibi</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GisbertFriege" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GisbertFriege</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Goranrakic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Goranrakic</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jim-BobHarris" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jim-BobHarris</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonatoni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jonatoni</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jopsen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jopsen</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jowyta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jowyta</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kscanne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kscanne</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lapetec" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lapetec</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lexeii" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lexeii</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mapper" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mapper</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marco</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Meo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Meo</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MertTumer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MertTumer</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Msaffron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Msaffron</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ohnemax" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ohnemax</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Onting" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Onting</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oprea.luci" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oprea.luci</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PaoloVecchi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PaoloVecchi</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pasqualm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Milvaques, Pasqual</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pefoley2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foley, Peter</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pixpray" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pixpray</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ploum" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dricot, Lionel</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rantaro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rantaro</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rogawa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rogawa</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rpr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rpr</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rptr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rptr</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Spacebat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Spacebat</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Spyros" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Spyros</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Therabi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Therabi</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Urdulizer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Urdulizer</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wastack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tamás, Bunth</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zhangxiaofei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zhangxiaofei</text:a> (9) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ميدو" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ميدو</text:a> (9) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexxed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexxed</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andrea%20Gelmini" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andrea Gelmini</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndreasL" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndreasL</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ausserirdischegesund" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ausserirdischegesund</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cocofan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cocofan</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cono" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cono</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cusiri" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cusiri</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cwendling" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cwendling</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dashohoxha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dashohoxha</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DrDub" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DrDub</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ed%20Eyles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ed Eyles</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elacheche" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elacheche</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EyalRozenberg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EyalRozenberg</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Horst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Horst</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Israel%20Chaves" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Israel Chaves</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JR" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JR</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jiero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jiero</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jrsiqueira" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jrsiqueira</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jslozier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jslozier</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Juliohm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hoffimann Mendes, Júlio</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kalikiana" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dywan, Christian</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kednar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kednar</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KristianRietveld" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rietveld, Kristian</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lee</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Leighman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Leigh, Jack</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Leo.h.hildebrandt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Leo.h.hildebrandt</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luisgulo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luisgulo</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manj%20k" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manj k</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mrmox2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mrmox2</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NightMonkey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NightMonkey</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NirajanPant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NirajanPant</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Osnola" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Osnola</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paulo.tavares" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paulo.tavares</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Peterpall" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Peterpall</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ricardolau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ricardolau</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thejack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thejack</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tibbylickle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tibbylickle</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Troumad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Troumad</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vbkaisetsu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vbkaisetsu</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VlhOwn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VlhOwn</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yakusha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yakusha</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yellow.h" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yellow.h</text:a> (8) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yostane" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yostane</text:a> (8) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:10110111" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kabatsayev, Ruslan</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ahiijny" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ahiijny</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andrea.soragna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andrea.soragna</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bastik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bastik</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Belkacem77" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Belkacem77</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Berrykevin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Berrykevin</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bjherbison" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bjherbison</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bookman900" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bookman900</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Borim7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Borim7</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Capiscuas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Capiscuas</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chin%20Zee%20Yuen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chin Zee Yuen</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ciaran" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ciaran</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dado" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dado</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drose" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drose</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Esbardu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Esbardu</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GKFX" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bateman, George</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GuKK-Devel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GuKK-Devel</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hunteke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hunter, Kevin</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ingotian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ingotian</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Levith" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Levith</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lonelyhiker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lonelyhiker</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M1cky" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">M1cky</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mariosv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mariosv</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marton</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mbayer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mbayer</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MephistoBooks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MephistoBooks</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mjayfrancis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Francis, Matthew</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nathanjh13" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nathanjh13</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ndduong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ndduong</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nemo%20bis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nemo bis</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nicolas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Christener, Nicolas</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Olivier%20DDB" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Olivier DDB</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Opensas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Opensas</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PeaceByJesus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PeaceByJesus</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Polte" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Polte</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RMCampos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RMCampos</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ravi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ravi</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raykowj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raykowj</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rodo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rodo</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Scottclarke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Scottclarke</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shady" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shady</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shantanuo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shantanuo</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shaunrobot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shaunrobot</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Simosx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Simosx</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tonnysmile" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tonnysmile</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Toxicbits" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Toxicbits</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wabuo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wabuo</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Webfork" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Webfork</text:a> (7) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Woordje" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Woordje</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:صفا%20الفليج" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">صفا الفليج</text:a> (7) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexandrorodrigez" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexandrorodrigez</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alpha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alpha</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Armin%20Dänzer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Armin Dänzer</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Asian%20flower" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Asian flower</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:At.higginson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Higginson, Andrew</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Barend" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Barend</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bobe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bobe</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bruno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bruno</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cagatayyigit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cagatayyigit</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CassieLX" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CassieLX</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cccfr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cccfr</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ClausKofoed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ClausKofoed</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Coypu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Coypu</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dag" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dag</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dali123" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BEN MANSOUR, Mohamed-Ali</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ddxavier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ddxavier</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dfriedman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dfriedman</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DotnetCarpenter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DotnetCarpenter</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dougmencken" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mencken, Douglas</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dr.Faust" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dr.Faust</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Druzhshchienschkyj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Druzhshchienschkyj</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Edmond%20ciorba" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Edmond ciorba</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Edmund.laugasson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Edmund.laugasson</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Equis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Equis</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FPhoenix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FPhoenix</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fdekruijf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fdekruijf</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fgallaire" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gallaire, Florent</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fisiu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fisiu</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Florian%20heckl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Florian heckl</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gerritg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gerritg</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ghune" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ghune</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Googly%20Googly" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Googly Googly</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HdV" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HdV</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hmoi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hmoi</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hramrach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hramrach</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Infoprof" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Infoprof</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iplaw67" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iplaw67</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ivan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timofeev, Ivan</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:James%2000cat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">James 00cat</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeffersonx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeffersonx</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kawichi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kawichi</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Levlazinskiy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Levlazinskiy</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Link%20Mauve" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Link Mauve</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MaggieT" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MaggieT</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mahdyar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mahdyar</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manas</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manop" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manop</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mas</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mgommel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mgommel</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhonline" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhonline</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mmetz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mmetz</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ndlsas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ndlsas</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oger000" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Öttl, Gerhard</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Only%20you" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Only you</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Os%20cib" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Os cib</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PLNET" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PLNET</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Perezj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Perezj</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pescetti" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pescetti</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Peter%20Chastain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Peter Chastain</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Peterhuang1kimo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Peterhuang1kimo</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piotr285" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piotr285</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Puggan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Puggan</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rotaj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rotaj</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shubhamgoyal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Goyal, Shubham</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sn!py" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sn!py</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sukit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sukit</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sumitcn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sumitcn</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Telesto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Telesto</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TheJosh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heidenreich, Josh</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thorwil" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thorwil</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TiagoSantos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TiagoSantos</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tyree" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tyree</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VACHER" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VACHER</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vgezer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vgezer</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Virthus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Virthus</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wagner%20Augusto%20Silva%20Rodrigo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wagner Augusto Silva Rodrigo</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wasserthal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wasserthal</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wigglejimmy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wigglejimmy</text:a> (6) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wiseacre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wiseacre</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xhi2018" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xhi2018</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xiaoyu2006" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xiaoyu2006</text:a> (6) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:3blz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">3blz</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adam%20Co" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adam Co</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Albucasis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Albucasis</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AleXanDeR%20G" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AleXanDeR G</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alfalb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alfalb</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alvarezp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alvarez, Octavio</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anousak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anousak</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aqcoder" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liwen, Fan</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Art.Gilvanov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Art.Gilvanov</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Augsod" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sodora, August</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AustinSaintAubin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AustinSaintAubin</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Baumgarp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Baumgarp</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bayramcicek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bayramcicek</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BillRVA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BillRVA</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bitigchi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bitigchi</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BloodIce" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BloodIce</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cray85" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cray85</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dejourdain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dejourdain</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DickStomp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DickStomp</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dmtrs32" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dmtrs32</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DoFoWerner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DoFoWerner</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Faiq%20Aminuddin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Faiq Aminuddin</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fazbdillah" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fazbdillah</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Florian.haftmann" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Florian.haftmann</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fpy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fpy</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Francewhoa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Francewhoa</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GaboXandre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GaboXandre</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ggurley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ggurley</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gpoussel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gpoussel</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gustav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gustav</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:H.Sparks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">H.Sparks</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Habib" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Habib</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hatochan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hatochan</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HubPfalz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HubPfalz</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hummer5354" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hummer5354</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HwangTW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HwangTW</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Icyitscold" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Icyitscold</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jambdev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jambdev</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jaysponsored" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jaysponsored</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JoeP" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JoeP</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:John.pratt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">John.pratt</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KadlecOn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KadlecOn</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kamataki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kamataki</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Klausmach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Klausmach</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Koji%20Annoura" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Koji Annoura</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LibreOfficeUser1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LibreOfficeUser1</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mak</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mgaster" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mgaster</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Midimarcus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Midimarcus</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mostthingsweb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Laplante, Chris</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mtg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mtg</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mtnyildrm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mtnyildrm</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Namikawa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Namikawa</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OSVALDO%20LINS%20VIANA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OSVALDO LINS VIANA</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Orcmid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Orcmid</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pepe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pepe</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pkoroau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pkoroau</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Poeml" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Poeml</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quwex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quwex</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Radish" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Radish</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rajesh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rajesh</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raknor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raknor</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Raulpaes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Raulpaes</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rautamiekka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rautamiekka</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ReneEngelhard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ReneEngelhard</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rhoslyn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rhoslyn</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rogerio%20DA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rogerio DA</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rsolipa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rsolipa</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SabinGC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SabinGC</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Salavine1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Salavine1</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Samson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Samson</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Scarabeus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chvátal, Tomáš</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Scito" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kurmann, Roland</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sergej" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sergej</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shivam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shivam</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Silva.arapi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Silva.arapi</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:So%20solid%20moo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">So solid moo</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Srividya" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Srividya</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sswales" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sswales</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Starseeker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Starseeker</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Taylorh140" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Taylorh140</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Terentev.mn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Terentev.mn</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tranzistors" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tranzistors</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wasdin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wasdin</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wt</text:a> (5) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yury%20Tarasievich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yury Tarasievich</text:a> (5) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AHi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AHi</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aalam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aalam</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aaronkyle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aaronkyle</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aas</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adderbox76" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adderbox76</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adrien.Ollier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adrien.Ollier</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Agron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Agron</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Albertoeda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Albertoeda</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aldo.roman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nureña, Aldo Román</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex1</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexstrand7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexstrand7</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AliKhP" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AliKhP</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alvarenga" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alvarenga</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alzoo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alzoo</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Amire80" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Amire80</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andréb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andréb</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Archlid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Archlid</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arhitectul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arhitectul</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arverne73" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arverne73</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Axel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Axel</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Azorpid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Azorpid</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bardo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bardo</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BathuAlike" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BathuAlike</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bernhard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Widl, Bernhard</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bigbek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bigbek</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blender3dartist" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blender3dartist</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bntser" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bntser</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cam%20AW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cam AW</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clairedwood" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clairedwood</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ConquerorsHaki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ConquerorsHaki</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Crankybot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Crankybot</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CyrilBeaussier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CyrilBeaussier</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dante" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dante</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Deivan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Deivan</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dmerker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dmerker</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DmitryRamones" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DmitryRamones</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Doubi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Doubi</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dragon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dragon</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drobertson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robertson, Daniel</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eisaks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eisaks</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erx700" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erx700</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fmolinero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fmolinero</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ftigeot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ftigeot</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Garrowolf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Garrowolf</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gmjs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gmjs</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gokaysatir" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gokaysatir</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GwenaelQ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GwenaelQ</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hdu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hdu</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ImperfectlyInformed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ImperfectlyInformed</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Izabela" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Izabela</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JKaufmann" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JKaufmann</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jamesleader" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jamesleader</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jessefrgsmith" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jessefrgsmith</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jiehong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jiehong</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jjmeric" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jjmeric</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jjpalacios" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jjpalacios</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JnRouvignac" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JnRouvignac</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonata" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jonata</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jones" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jones</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonnygrant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jonnygrant</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jooste" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jooste</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joriki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joriki</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jtlebigot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Le Bigot, Jean-Tiare</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kemalayhan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kemalayhan</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lethargilistic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lethargilistic</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Loren.rogers" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Loren.rogers</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M.m.mozffart" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">M.m.mozffart</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MHaggag" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Haggag, Muhammad</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MPascual" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MPascual</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maciej" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rumianowski, Maciej</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marinela" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marinela</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mikedoherty%20ca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mikedoherty ca</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mondeep18" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mondeep18</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Morgan%20greywolf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Morgan greywolf</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mortgage01" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mortgage01</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NGHLibreOffice" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NGHLibreOffice</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:O.villani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">O.villani</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Offidocs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Offidocs</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Orson69" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Orson69</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oscar90210" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oscar90210</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paolopoz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paolopoz</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paranemertes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paranemertes</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PatrickJ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PatrickJ</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pegasus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pegasus</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pgassmann" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pgassmann</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Philj</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phillip.davis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Phillip.davis</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pietvo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">van Oostrum, Pieter</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pjacquod" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pjacquod</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Prolog.guy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Prolog.guy</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Psao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Psao</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qubit-test" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Qubit-test</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Randolphgamo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Randolphgamo</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rebahozkoc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rebahozkoc</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Reyn100" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Reyn100</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ricgal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ricgal</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RjR" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RjR</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rodhos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rodhos</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sasha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sasha</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sealview" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sealview</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Selimseker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Selimseker</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stevenmw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stevenmw</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Surat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Surat</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tct" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tct</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tempelorg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tempelorg</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thetic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thetic</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tk</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tlequire" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tlequire</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Txwikinger" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Txwikinger</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ufas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ufas</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:UlKu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">UlKu</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Urhixidur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Urhixidur</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uzadmin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Uzadmin</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vort" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">V., Artem</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wcolen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wcolen</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wikiuser" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wikiuser</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Williamjmorenor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Williamjmorenor</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wpeixoto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wpeixoto</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:§chinagl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">§chinagl</text:a> (4) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Денис" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Денис</text:a> (4) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AbhilashSingh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AbhilashSingh</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adept" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adept</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aexyn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aexyn</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AhmadHaris" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AhmadHaris</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jain, Atishay</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex.simoes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex.simoes</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexsfagundes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexsfagundes</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Almorca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Almorca</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andrey%20Usov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andrey Usov</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Antanasb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Antanasb</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ariete" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ariete</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arkanosis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arkanosis</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Armin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Armin</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Armin%20W." text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Armin W.</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arthur%20Zennig" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arthur Zennig</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aurelien" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aurelien</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Baena" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Baena</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bellerophon2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bellerophon2</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Benjwgarner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Benjwgarner</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bernarpa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bernardi, Paolo</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bindassanant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bindassanant</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bodhi-Baum" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bodhi-Baum</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bootingman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bootingman</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bos</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brainbreaker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Prajapati, Gautam</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brub" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brub</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Burdakov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Burdakov</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CIB.Mathias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CIB.Mathias</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Canberkturan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Canberkturan</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Castro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Castro</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Charu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Charu</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChrisConCas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChrisConCas</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Claudiosegovia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Claudiosegovia</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cmorgan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cmorgan</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Colokalle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Colokalle</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:D0ugparker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">D0ugparker</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DaSch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DaSch</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DanShearer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DanShearer</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Darcy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beurle, Darcy</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dbank" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bankston, Daniel</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dilip" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dilip</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Donbrookman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Donbrookman</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dubyk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dubyk</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EdgeE" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EdgeE</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eeha0120" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eeha0120</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eisa01" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eisa01</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elproferoman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elproferoman</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emschorsch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schorsch, Emanuel</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ErSey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ErSey</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eric.ficheux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eric.ficheux</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ericatamiris" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ericatamiris</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Estebanmonge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Estebanmonge</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Farukuzun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Farukuzun</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ferlodev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ferlodev</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fofr11" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fofr11</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fraang" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fraang</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Franzjakob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Franzjakob</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Frob%20tea" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Frob tea</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fulldecent" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fulldecent</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FunkyPenguin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FunkyPenguin</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gmasei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gmasei</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gokcen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gokcen</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gouchi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gouchi</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gsmaha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Smaha, Guillaume</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hansgerd.schneider" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hansgerd.schneider</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Harshita" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nag,Harshita</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Herrmarder" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Herrmarder</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hwpplayer1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hwpplayer1</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IanL" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IanL</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Imanuelr10" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Imanuelr10</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Imcon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Imcon</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:It-christian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">It-christian</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IvanMM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IvanMM</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JDM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JDM</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jammon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jammon</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcrben" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jcrben</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jennifer.park" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jennifer.park</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jessemoreirao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jessemoreirao</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jessoclarence" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Murugan, Jesso Clarence</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jhbn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jhbn</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jo%20Cab" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jo Cab</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joe312213" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joe312213</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Johannes%20Rohr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johannes Rohr</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joseroberto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joseroberto</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Juanpabl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Juanpabl</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Julianm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Julianm</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:K%20Karthikeyan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">K Karthikeyan</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Katasisc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Katasisc</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kbiondi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kbiondi</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KeilaAlonso" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KeilaAlonso</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kevinob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kevinob</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kfogel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kfogel</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khunshan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khunshan</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KingAwiin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KingAwiin</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kkrothapalli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kkrothapalli</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LO%20Rob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LO Rob</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lennoazevedo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lennoazevedo</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LewisCowles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LewisCowles</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Libcub" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Libcub</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lpranam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lpranam</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LucaCappelletti" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LucaCappelletti</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lukequaint" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hryniuk, Łukasz</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lupp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lupp</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luuk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luuk</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Machey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Machey</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bessières, Marc</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Margott" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Margott</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marializ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marializ</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matteocam" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Matteocam</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mattias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mattias</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maxwell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maxwell</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Measure%20for%20Measure" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Measure for Measure</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Melike" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Melike</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Meryemezber" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Meryemezber</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhoes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhoes</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhsmsantos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhsmsantos</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michaelwheatland" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michaelwheatland</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mike98" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mike98</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Neookano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Neookano</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NickWingate" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NickWingate</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NicksonT" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NicksonT</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nicolas.abel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nicolas.abel</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Niconil" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Niconil</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nifgraup" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ragnarsson, Björgvin</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nloira" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nloira</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Noel%20Power" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Noel Power</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OOarthurOo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OOarthurOo</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ochosi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Steinbeiß, Simon</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ojeremyj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ojeremyj</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oliverguenther" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oliverguenther</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oprea%20luci" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oprea luci</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Penalvch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Penalvch</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pr410" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pr410</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Prakash72" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Prakash72</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rajatvijay" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rajatvijay</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rapha.ksf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rapha.ksf</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rauloliverpaes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rauloliverpaes</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Realitix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bevilacqua, Jean-Sébastien</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RebeccaHodgson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RebeccaHodgson</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rick</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Robert.E.A.Harvey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robert.E.A.Harvey</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rosemary" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rosemary</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:S8321414" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">S8321414</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sander%20Klootwijk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sander Klootwijk</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sangeeta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sangeeta</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Saper" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Saper</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Satabin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Satabin</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sayt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sayt</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Schroed(ing)er" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schroed(ing)er</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sebby" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sebby</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sergey%20Aka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sergey Aka</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shelandy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shelandy</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Skinnerbird" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Skinnerbird</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Smile4ever" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Smile4ever</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Soliac" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Soliac</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Songchuan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Songchuan</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sotrud%20nik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sotrud nik</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Soued031" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Soued031</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StefanRing" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StefanRing</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StefanU" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StefanU</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SteveKelem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SteveKelem</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Steveo%20o" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Steveo o</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Strugee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Strugee</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Suren" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Suren</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sushils" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sushils</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Taylor46" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Taylor46</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TheWebalyst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TheWebalyst</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tiagosilva.anps" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tiagosilva.anps</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Timsamoff" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timsamoff</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tititou36" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tititou36</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tk7ua" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kumar, Tarun</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Toki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Toki</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomi%20Toivio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomi Toivio</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ToniB" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ToniB</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Toxifier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Toxifier</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TrnsltLife" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TrnsltLife</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tushantin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tushantin</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ubap" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ubap</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ulkitz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kitzinger, Ulrich</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Underdog" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Underdog</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vinctor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vinctor</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vljubovic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vljubovic</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wagnerluis1982" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wagnerluis1982</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Weimzz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khoo, Wei Ming</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WesPeacock" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WesPeacock</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xaker1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xaker1</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yeominstall" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yeominstall</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yukawa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yukawa</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yurikoles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kolesnykov, Yurii</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yvon%20Henel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yvon Henel</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zaria" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zaria</text:a> (3) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zaxebo1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zaxebo1</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ترجمان05" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ترجمان05</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:さかみのかさね" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">さかみのかさね</text:a> (3) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AbbeyI19jfjc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AbbeyI19jfjc</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AdamPrado8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AdamPrado8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AdrianValdez4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AdrianValdez4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adsha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adsha</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Agarciamog" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Agarciamog</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aggelalex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aggelalex</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ale2017" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ale2017</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AliceOliver7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AliceOliver7</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alina12345" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alina12345</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alisha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alisha</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlmedaFrancis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlmedaFrancis</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlphonsoNava4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlphonsoNava4</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Amunizp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Amunizp</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AmyCarney5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AmyCarney5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anasiic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anasiic</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndresChandia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndresChandia</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andrew" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andrew</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndrewKuhn7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndrewKuhn7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndrewUlrich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndrewUlrich</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andthebrain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andthebrain</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anipeter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anipeter</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anjar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anjar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ankit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ankit</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AnnabelMcmullen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AnnabelMcmullen</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AnnunciationGunn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AnnunciationGunn</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anonimus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anonimus</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AntoniaMead8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AntoniaMead8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anuragjain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jain, Anurag</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aplatypus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aplatypus</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ApostlesSheldon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ApostlesSheldon</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arachan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arachan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Asal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Asal</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ashaneba" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ashaneba</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ashod" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nakashian, Ashod</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AvaGreer1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AvaGreer1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aybuke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ozdemir, Aybuke</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BZT42" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BZT42</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bansan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Le Garrec, Vincent</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Baole.fang" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Baole.fang</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BernardMeza9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BernardMeza9</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beto</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BirdRivas2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BirdRivas2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BlazejJones1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BlazejJones1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BlessedOrozco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BlessedOrozco</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blume" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blume</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blushingorg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blushingorg</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BoD" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BoD</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bogcahi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bogcahi</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Boivie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Boivie</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Boldizsakawi7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Boldizsakawi7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BoleslausSaunders" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BoleslausSaunders</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bram" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bram</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BrandiToomer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BrandiToomer</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BridgetJarvis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BridgetJarvis</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bruceschaller" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bruceschaller</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BryantMclean6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BryantMclean6</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ButlerBarron6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ButlerBarron6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:C0bb3r" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">C0bb3r</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:C1pr1an" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">C1pr1an</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CallieMvzap" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CallieMvzap</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CallieSalgado" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CallieSalgado</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CamilleMccarthy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CamilleMccarthy</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CandidoRutherford" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CandidoRutherford</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CapistranOleary" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CapistranOleary</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Capri99" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Capri99</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CaraDang6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CaraDang6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Carlosr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Carlosr</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CarolinaCalling" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CarolinaCalling</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CarrieDaniels" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CarrieDaniels</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CarrollRico2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CarrollRico2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cataliniacob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iacob, Catalin</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CavesGill8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CavesGill8</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Celsovsm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Celsovsm</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cgrosdemange" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cgrosdemange</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chabermu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chabermu</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChanieSnow2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChanieSnow2</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chemyakyn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chemyakyn</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChrisBarth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChrisBarth</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChrzcicielCampbell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChrzcicielCampbell</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cipriano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cipriano</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cjbackhouse" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cjbackhouse</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cl-r" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cl-r</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ClariceThorne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ClariceThorne</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ClaudiaCramer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ClaudiaCramer</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clemen%20Beek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clemen Beek</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CodeMouse92" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">McDonald, Jason C.</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Codingmicha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Codingmicha</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Colabo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Colabo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Conrado" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Conrado</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Coogor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Coogor</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CoralieCarr7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CoralieCarr7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Crxssi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Crxssi</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CupertinoDarnell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CupertinoDarnell</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cvk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cvk</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CyrillicEscobedo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CyrillicEscobedo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cœur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cœur, Antoine</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DaCaPo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DaCaPo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dairdev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dairdev</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DaisieQuigley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DaisieQuigley</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Damascene" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Damascene</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DanForrest2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DanForrest2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Danese" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Danese</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Danielt998" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Danielt998</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Danthedev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Danthedev</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Darkixion" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Darkixion</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:David4you" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">David4you</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Db3l" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bolen, David</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:De-jourdain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">De-jourdain</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Debugercz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Debugercz</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DelinaRomano5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DelinaRomano5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DellePoole7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DellePoole7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DenisArnaud" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DenisArnaud</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dennis&apos;%20Spam%20test%20account" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dennis&apos; Spam test account</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Denytracom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Denytracom</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Devilcynthy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Devilcynthy</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Diazbastian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Diazbastian</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Diocles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Retout, Tim</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Django" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Django</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DoctorBaxter7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DoctorBaxter7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Domasj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Domasj</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Domsau2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Domsau2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DonaldBryant7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DonaldBryant7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Donals" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Donals</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DrDrack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DrDrack</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dreami" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Röllin, Lukas</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Duiliodias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Duiliodias</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DukeDejesus7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DukeDejesus7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EarleSiegel7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EarleSiegel7</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ed</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EdaFreeman3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EdaFreeman3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eduardoarandah" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eduardoarandah</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Edwardcottreau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Edwardcottreau</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Efdali" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Efdali</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Efs710920mex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Efs710920mex</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ejep520" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ejep520</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elbarto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sánchez, Bartolomé</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eldan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eldan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ElisabethHolcomb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ElisabethHolcomb</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elixir" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elixir</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EllieBowers3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EllieBowers3</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ElmaGray6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ElmaGray6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eloquence" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eloquence</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ElsieMacias7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ElsieMacias7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emily" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emily</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EmperorErnst5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EmperorErnst5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eneville" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eneville</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EnosKraus6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EnosKraus6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erdalronahi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erdalronahi</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eren" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eren</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ErieTovar6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ErieTovar6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erikcht" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erikcht</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ersteinmal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ersteinmal</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ErwinHammond3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ErwinHammond3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Escriba" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Escriba</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EssieKeller8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EssieKeller8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EsterEngland7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EsterEngland7</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EthylCardenas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EthylCardenas</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:F.werner.pohl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">F.werner.pohl</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FannyTillman8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FannyTillman8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FateHarrington" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FateHarrington</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fbartels" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fbartels</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fcelik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fcelik</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fcojavmc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fcojavmc</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Feldo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Feldo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ffinlo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ffinlo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FlaviaPratt8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FlaviaPratt8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FlorenceGrossman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FlorenceGrossman</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FlorenceKim1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FlorenceKim1</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FordRhodes5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FordRhodes5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FranciscoByrne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FranciscoByrne</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FredaDowning7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FredaDowning7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fukanchik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fukanchik, Sergey</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fyodore82" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fyodor, Yemelyanenko</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Garcia.marc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Garcia.marc</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gauste" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gauste</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GayeRossetti" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GayeRossetti</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GeoDowning4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GeoDowning4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GeoffLawrence" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GeoffLawrence</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GeorgiannaOchoa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GeorgiannaOchoa</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gerardgiraud" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gerardgiraud</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gerpunzel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gerpunzel</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GertieEllington" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GertieEllington</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GiertrudaLehman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GiertrudaLehman</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Girvinh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Girvinh</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GiuseppOQH" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GiuseppOQH</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Glanbeav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Glanbeav</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Glococo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Glococo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gmealer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gmealer</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gmolleda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gmolleda</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GraciaNorwood" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GraciaNorwood</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grakic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grakic</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grim</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gualtiero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gualtiero</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guillem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guillem</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hacmiranda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hacmiranda</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hagar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hagar</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HannaEspinoza" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HannaEspinoza</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HardyBurris1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HardyBurris1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HarleyWatkins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HarleyWatkins</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hasithakj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hasithakj</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hector" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hector</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hedaja" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hedaja</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hellpé" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hellpé</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Helo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Helo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hemmerling" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hemmerling</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HenrikJ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jensen, Henrik</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HeriberDacomb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HeriberDacomb</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HermitMuller1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HermitMuller1</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Herronrobertson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Herronrobertson</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HershelPeterson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HershelPeterson</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IIIYates8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IIIYates8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ian22" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ian22</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iannz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iannz</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IkeVasquez9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IkeVasquez9</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IlaRoberts4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IlaRoberts4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Imagin8or" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Imagin8or</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:InezFinney8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">InezFinney8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IraLane4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IraLane4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IrinaMccormack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IrinaMccormack</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IrvinBernard9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IrvinBernard9</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IsadoraFoster" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IsadoraFoster</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IsaiahBuck5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IsaiahBuck5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IsiahLackey2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IsiahLackey2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IvaRoach5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IvaRoach5</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JBurant" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Burant, Jiri</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JOIMER%20REYES" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JOIMER REYES</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JacintaGibson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JacintaGibson</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adams, Jonathan</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JamesC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">C., James</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JanuariusStringer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JanuariusStringer</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jasmins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jasmins</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JasperSawyer7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JasperSawyer7</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JavierFernandez" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JavierFernandez</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JayStafford3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JayStafford3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcarl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jcarl</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcentel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jcentel</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcubic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jcubic</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeraldinesewell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeraldinesewell</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JesseBHXEmrh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JesseBHXEmrh</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JettieGibson2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JettieGibson2</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jgpestana" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jgpestana</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jgraeme" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lingard, J. Graeme</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jnicolas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jnicolas</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JoWi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JoWi</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Johnki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johnki</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonathanacohen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jonathanacohen</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JonesRichter8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JonesRichter8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jowenshaw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jowenshaw</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:João%20Pedro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">João Pedro</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jsargey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jsargey</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jsbueno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jsbueno</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jstaniek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jstaniek</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JudasPeoples9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JudasPeoples9</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JudasPritchard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JudasPritchard</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JudithGraves6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JudithGraves6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jumoun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jumoun</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JustinaEldridge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JustinaEldridge</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:K.euser" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">K.euser</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kammreiter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kammreiter</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KamranMackey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kamran Mackey</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Karakartala" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Karakartala</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KarkGunn4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KarkGunn4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Karolus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Karolus</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kasos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kasos</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kay%20D" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kay D</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kazuyuki%20Yoshimura" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kazuyuki Yoshimura</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Keepiledar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Keepiledar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KeithC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KeithC</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Khokkanen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khokkanen</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KittyBauer5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KittyBauer5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KlementynaMckinney" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KlementynaMckinney</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kmr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kmr</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KolbeKline1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KolbeKline1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kolorguild" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kolorguild</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krauss" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krauss</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krishnakeshav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">keshav, krishna</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KrisvdMewe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KrisvdMewe</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KroniK907" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KroniK907</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krumelmonster" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krumelmonster</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KrystalMinchin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KrystalMinchin</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KsaweryDempsey" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KsaweryDempsey</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kwilliams" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kwilliams</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:L" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">L</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LariaJohn3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LariaJohn3</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LeanaParks2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LeanaParks2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LemuelHo1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LemuelHo1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LemuelWerner5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LemuelWerner5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LeoNeo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LeoNeo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lhcezar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lhcezar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LidaMasters1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LidaMasters1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lino</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Liotier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liotier</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lj%20LO" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lj LO</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lliehu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lliehu</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lohsol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Scheidt, Heiko</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LovisaKessler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LovisaKessler</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lpetrolekas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Petrolekas, Luke</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LubomyrWalden" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LubomyrWalden</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LucretiLlb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LucretiLlb</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lukasjelinek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lukasjelinek</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LynnForbes3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LynnForbes3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M.casalin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Casalin, Matteo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M42" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">M42</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MMariana" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mărăşoiu, Mariana</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MZNBelendndq" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MZNBelendndq</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ma83mit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ma83mit</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MabelleStanley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MabelleStanley</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MadisonDarnell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MadisonDarnell</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MagdaleneOneal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MagdaleneOneal</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MaggieGray2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MaggieGray2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MagnoliaParsons" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MagnoliaParsons</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manebule" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manebule</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mangat%20veer%20sagar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mangat veer sagar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manu.unni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manu.unni</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarMai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarMai</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarchCourtney" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarchCourtney</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcinz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcinz</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marco74" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marco74</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MargeretRiley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MargeretRiley</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarillaMarsh7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarillaMarsh7</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marius" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marius</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MartaRollins2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MartaRollins2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarthaBright4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarthaBright4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MartinPC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MartinPC</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MateuszDominguez" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MateuszDominguez</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matt%2051" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Matt 51</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MauroTrevisan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MauroTrevisan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mazuritz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mazuritz</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mbemidio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mbemidio</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Meghanmcfadden15" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Meghanmcfadden15</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MercedesDelatorre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MercedesDelatorre</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Merchantbusiness" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Merchantbusiness</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Merge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kepplinger, Martin</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MerleGlass6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MerleGlass6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mesutkullar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mesutkullar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mgiri" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mgiri</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michaelx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michaelx</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michal.p" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michal.p</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michel%20Gagnon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michel Gagnon</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michiel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michiel</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mifritscher" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mifritscher</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MikeyZ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MikeyZ</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MinaHuggins7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MinaHuggins7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mind4z" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mind4z</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MinervaLuna8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MinervaLuna8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mitcoes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mitcoes</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mjkopp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mjkopp</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mklever" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mklever</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mlechner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lechner, Marco</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mloiseleur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mloiseleur</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mnalima" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mnalima</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mnsoto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mnsoto</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mochir" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mochir</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mordocai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mordocai</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MorganJohnstone" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MorganJohnstone</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mrugiero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rugiero, Mario</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mst0" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mst0</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mttza1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mttza1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Musicstave" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Musicstave</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mustafa22" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mustafa22</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Muxer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nathansen, Martin</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mzalewski" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mzalewski</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nacerix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nacerix</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nak47" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nak47</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Narcisgarcia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Narcisgarcia</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NealEspinoza6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NealEspinoza6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nestor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nestor</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NettaHurd9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NettaHurd9</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NettieParra1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NettieParra1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NewtonZuniga9" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NewtonZuniga9</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Niboshi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nishino, Daisuke</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NicholasLanier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NicholasLanier</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nickk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nickk</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NinaLam6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NinaLam6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Noirin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Noirin</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NoricumArthur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NoricumArthur</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NorrisAndersen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NorrisAndersen</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NovemberVogel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NovemberVogel</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nsharifi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nsharifi</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nuclearbob" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nuclearbob</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nzoueidi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Naeil, Zoueidi</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OUPS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OUPS</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oashnic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oashnic</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Odalcet" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Odalcet</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oiaohm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oiaohm</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OlaPost6" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OlaPost6</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OlieBooth3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OlieBooth3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OlivierC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OlivierC</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OnopriyBrandon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OnopriyBrandon</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OrlandoArellano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OrlandoArellano</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:OscarMeredith" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">OscarMeredith</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paolettopn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paolettopn</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paolobenve" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paolobenve</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pascaje" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pascaje</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paultrojahn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paultrojahn</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Penguin42" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Penguin42</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Percherie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Percherie</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PercherskySanford" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PercherskySanford</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Peter.senna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Senna Tschudin, Peter</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pgraber" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pgraber</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phil.davis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Phil.davis</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phillip" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Szelat, Phillip</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pierre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pierre</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piotrdrag" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piotrdrag</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pitonyak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pitonyak</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pkst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pkst</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Plubius" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Plubius</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PolishHungarianSharp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PolishHungarianSharp</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Posterboy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Posterboy</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PragueBergman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PragueBergman</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pulsifer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pulsifer</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:R.Yu." text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">R.Yu.</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rahul050" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rahul050</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rbecke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rbecke</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ReeseShepherd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ReeseShepherd</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ReginaldMcgraw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ReginaldMcgraw</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RenniePrescott" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RenniePrescott</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RetaStern5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RetaStern5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RhodaMackey3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RhodaMackey3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RiceBurger3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RiceBurger3</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ritlay" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ritlay</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rmarquardt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rmarquardt</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Roadrunner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roadrunner</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RollandHannah" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RollandHannah</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RosaliaFair4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RosaliaFair4</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RosannaPaul7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RosannaPaul7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RosariaLampungm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RosariaLampungm</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RoyFokker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RoyFokker</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RoyShelton7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RoyShelton7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ryan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ryan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SDann22" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SDann22</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sagar.libo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sagar.libo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sahas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sahasranaman M S</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sam888" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sam888</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SamBenavides5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SamBenavides5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sankarshan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sankarshan</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SavinaShaffer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SavinaShaffer</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sbosio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bosio, Santiago</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Seanyoung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Seanyoung</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SebastianNorth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SebastianNorth</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sebutler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sebutler</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sergwish" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sergwish</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sfeuser" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sfeuser</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sgrotz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sgrotz</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shaforostoff" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shaforostoff</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shankar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shankar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shaun.schutte" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shaun.schutte</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shitamo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shitamo</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SidneyArredondo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SidneyArredondo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sidorelauku" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sidorelauku</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Silwol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Silwol</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Simplecontrast" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Simplecontrast</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SlavicNapier8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SlavicNapier8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Slideon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kasztenny, Adam</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Soothsilver" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Soothsilver</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Spledger" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Spledger</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sshelagh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sshelagh</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sshi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sshi</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ssorgatem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ssorgatem</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StaciBorthwick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StaciBorthwick</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stappers" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stappers</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stefan.weiberg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Weiberg, Stefan</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stephan66" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stephan66</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StillSven" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StillSven</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stuarta0" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stuarta0</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sturm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sturm</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sungkhum" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sungkhum</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Superurbi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Superurbi</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SusanSwain3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SusanSwain3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sven.fischer.de" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sven.fischer.de</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Swazmo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Swazmo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sydbarrett74" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sydbarrett74</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Synanceia%20(Pierre)" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Synanceia (Pierre)</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tauon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tauon</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Techal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Techal</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Teelittle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Teelittle</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TeresaMacias3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TeresaMacias3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Teresavillegas1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Teresavillegas1</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TheaGallardo8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TheaGallardo8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TheodoseyPeralta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TheodoseyPeralta</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TheophilusHess" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TheophilusHess</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thomase" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thomase</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thomeck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thomeck</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thorongil" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thorongil</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tim1075" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tim1075</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Timeshifter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timeshifter</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Timj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Timj</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TimothyChilds" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TimothyChilds</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tolunaydundar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tolunaydundar</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TomaMora8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TomaMora8</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomkeb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomkeb</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomrobert87" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomrobert87</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TressieCulver" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TressieCulver</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tsimonq2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tsimonq2</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TuMadre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TuMadre</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tux3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Isnard, Timothée</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tux40000" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tux40000</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Unhammer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Unhammer</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Unknown%2032" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Unknown 32</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Usik64" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Usik64</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ValessioBrito" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ValessioBrito</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VanHogan7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VanHogan7</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Varun.dhall" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dhall, Varun</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VasylynaKendall" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VasylynaKendall</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VerneDodd5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VerneDodd5</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VeronaXiong3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VeronaXiong3</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VeronicaGrimes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VeronicaGrimes</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Villeroy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Villeroy</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Viper550" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Viper550</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VirginArredondo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VirginArredondo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VladimirBassett" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VladimirBassett</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VladimirPrince" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VladimirPrince</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VladislavA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VladislavA</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Volker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Volker</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VolodymyraGagnon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VolodymyraGagnon</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vossman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vossman</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WaclawaSavage" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WaclawaSavage</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WalentynaPatrick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WalentynaPatrick</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WallaceSolano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WallaceSolano</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WarrenChristian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WarrenChristian</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WashingtonOakley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WashingtonOakley</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Watermelons" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Watermelons</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WeronikaKeene" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WeronikaKeene</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wi24rd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wi24rd</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WikiImporter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WikiImporter</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WilhelminaEaton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WilhelminaEaton</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WincentyMorrison" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WincentyMorrison</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wirelessben" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wirelessben</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wkn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wkn</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wulei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wulei</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xdelatour" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xdelatour</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xoristzatziki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xoristzatziki</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yalda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yalda</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yaw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yaw</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ZiriaKo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ZiriaKo</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ZoraWinkler1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ZoraWinkler1</text:a> (2) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:流星依旧" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">流星依旧</text:a> (2) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:29jm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">29jm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:A%20H" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">A H</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:A.jadiba" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">A.jadiba</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AJW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AJW</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AaronPeterson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AaronPeterson</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Abdulaziz%20A%20Alayed" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Abdulaziz A Alayed</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Absolute%20Garcinia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Absolute Garcinia</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Acagastya" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Acagastya</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ackepenek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kepenek, Ahmet Can</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AdalberDesailll" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AdalberDesailll</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Adlard.matthew" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Adlard.matthew</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aevora" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aevora</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Agradecido" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Agradecido</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ainurshakirov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ainurshakirov</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ajaxfiore" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ajaxfiore</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Akshit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sudheer Kumar, Akshit</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alagris" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alagris</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alavec" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alavec</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Albrechtloh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Albrechtloh</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aleks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aleks</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aleksio%20Kverka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aleksio Kverka</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex%20Henrie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Henrie, Alex</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex-16" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex-16</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex38-68" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex38-68</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alex80" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alex80</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlexF" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlexF</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlexP111223" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlexP111223</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlexPS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlexPS</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexandrevicenzi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexandrevicenzi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexandri" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexandri</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexey.chemichev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chemichev, Alexey</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexis%200071" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexis 0071</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexis%20Wilke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexis Wilke</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexnivan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexnivan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alexsandro%20Matias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alexsandro Matias</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aleyna.sare" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aleyna.sare</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ali" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ali</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AlphonsDen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AlphonsDen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alvaropg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alvaropg</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Alverne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Alverne</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Amacater" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Amacater</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andarilhobotto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andarilhobotto</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anderius" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anderius</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndreasEk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndreasEk</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndreasK" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndreasK</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AndreasNeudecker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AndreasNeudecker</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andrey.turkin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andrey.turkin</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Andriazdk2177" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Andriazdk2177</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AniVar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AniVar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anjilajoli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anjilajoli</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ankurkh1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ankur, Khandelwal</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AntoineVe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AntoineVe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Antonello%20Lobianco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Antonello Lobianco</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AntoniePonder" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AntoniePonder</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Anurag%20kanungo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anurag kanungo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Apfelsaft" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Apfelsaft</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Apps" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Priyadarshi, Apurva</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arekm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arekm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ari" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ari</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ArielleWx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ArielleWx</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arkonide" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arkonide</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Armandos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Armandos</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arnaudc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arnaudc</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arnoldu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arnoldu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arnotixe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Teigseth, Arno</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Artintal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Artintal</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ArturNeumann" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ArturNeumann</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Arulm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Arulm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Asiersar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Asiersar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Asselbornmauro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Asselbornmauro</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Astalaseven" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Astalaseven</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Aszucs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Aszucs</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Atpnguyen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Atpnguyen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Audreyt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tang, Audrey</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:AundreaPqf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">AundreaPqf</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Averell7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Averell7</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ayoooub" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ayoooub</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:B3t" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">B3t</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bailiwick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bailiwick</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bailly02" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bailly02</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bami" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bami</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bandera" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bandera</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BarryLovegrove" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BarryLovegrove</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bavincen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vincent, Babu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bburak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bburak</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bckurera" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bckurera</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Behrad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Khorram, Behrad</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BernardHannafor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BernardHannafor</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bestdating" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bestdating</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beyoken" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beyoken</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Beznogov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beznogov</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bezzy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bezzy</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bgloberman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bgloberman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bgranados" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bgranados</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bhumikasethi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bhumikasethi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BillyBurke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BillyBurke</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Biofool" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Biofool</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bittin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bittin</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bjossir" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bjossir</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bkg2018" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bkg2018</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BlakeGartrell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BlakeGartrell</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BlancheBelstead" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BlancheBelstead</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BlancheClopton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BlancheClopton</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Blandyna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Blandyna</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Boboo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Boboo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bolo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bolo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Borowcm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Borowcm</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bortis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bortis</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sowden, Brad</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BrentHawthorne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BrentHawthorne</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BridgettC" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BridgettC</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Brinzing" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brinzing, Oliver</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BroderiHolyman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BroderiHolyman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BryceBrassell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BryceBrassell</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BryceMoorhouse" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BryceMoorhouse</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Budo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Budo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Burcin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Burcin</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bureken" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bureken</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Burger.ga" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Burger.ga</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bvarga91" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bvarga91</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bwi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bwi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Bzsolt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bzsolt</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:BáthoryPéter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">BáthoryPéter</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CalebSommer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CalebSommer</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CalebWgypcu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CalebWgypcu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Campaul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paul, Cameron</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Capira" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Capira</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CarloASilva" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CarloASilva</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Carlos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Carlos</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Carlos.gilaranz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Carlos.gilaranz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Castarco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Castarco</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cathy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cathy</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CedricQ73ktehvp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CedricQ73ktehvp</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cesera" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cesera</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChantalWalker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChantalWalker</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CharlesJenkins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CharlesJenkins</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chatjoe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chatjoe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chmilblick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chmilblick</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chouquette" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Beauzée-Luyssen, Hugo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ChrPr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ChrPr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chrism" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chrism</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Christoph.herzog" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Christoph.herzog</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Chrlutz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chrlutz</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ciampix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ciampix</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CiaraLockie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CiaraLockie</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ciriaco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ciriaco</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Classieur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Classieur</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Claudio%20Pannacci" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Claudio Pannacci</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cleitongalvao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cleitongalvao</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Clem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clem</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:CletaValentino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">CletaValentino</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cnzhx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cnzhx</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Company" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Company</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cora17" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cora17</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Corsolibreoffice" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Corsolibreoffice</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cosmopolitan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cosmopolitan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cpatrick08" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cpatrick08</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cpinedar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cpinedar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cpmipn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cpmipn</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Craigsbookclub" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Craigsbookclub</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Csanyipal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Csanyipal</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Csongorhalmai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Csongorhalmai</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Css17" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Css17</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ctfranz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ctfranz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Cycpe950609" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Cycpe950609</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DaisieDavison" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DaisieDavison</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Danichocolate" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Danichocolate</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dar18proore" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dar18proore</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Darianospb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Darianospb</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DarylAlcantar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DarylAlcantar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DarylBoot" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DarylBoot</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dave" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dave</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DavidDyck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DavidDyck</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davidmichel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davidmichel</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Davidredick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Davidredick</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DawnOgles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DawnOgles</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dbojan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dbojan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ddimarco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Di Marco, Daniel</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DeShark" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DeShark</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DeannaQuaife" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DeannaQuaife</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DebarshiRay" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ray, Debarshi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DeborahW18" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DeborahW18</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Decs75" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Decs75</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dennisroczek&apos;s%20Test%20Account" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dennisroczek&apos;s Test Account</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Deragon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Deragon</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dezsiszabi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dezsiszabi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dfighter1985" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kis-Ádám, László</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dherde" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Herde, Daniel</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dhiren" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dhiren</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dianasedlak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dianasedlak</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dirgita" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dirgita</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Divayth" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kettner, Valentin</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Diver" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Diver</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dldld" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dldld</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Do%20Nhu%20Vy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Do Nhu Vy</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DocuFree" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DocuFree</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dominiko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dominiko</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dominuk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dominuk</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Donadel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Donadel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:DoreenDuell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">DoreenDuell</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Douglasm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Douglasm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drizamanuber" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drizamanuber</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drlandi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drlandi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Drtimwright" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Drtimwright</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dschulten" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dschulten</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dusek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dusek</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Dxider" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dxider</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eardeleanu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eardeleanu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EarnestLamaro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EarnestLamaro</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Echada" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Echada</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EdgardoRios" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EdgardoRios</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Edsonlead" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Edsonlead</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Edz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Edz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Efcis" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Efcis</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Efegurkan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Efegurkan</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Egore911" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Brill, Christoph</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ehenryb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ehenryb</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ekuiitr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ekuiitr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ElahiMohammad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ElahiMohammad</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elliot1415" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elliot1415</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ElmaWalcott" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ElmaWalcott</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Elshize" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Elshize</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emad</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emanuele.gissi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emanuele.gissi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Emyr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Emyr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Enesates" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Enesates</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ennael" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ennael</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erasmo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erasmo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erdemdemirkapi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erdemdemirkapi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eric" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eric</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ErickRijoJr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ErickRijoJr</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ernsttremel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ernsttremel</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eroux" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roux, Elie</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Erto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Erto</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Esben%20aaberg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Esben aaberg</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:EstelaAWTxiu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">EstelaAWTxiu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Etinos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Etinos</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Etua" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Etua</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Eulerian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Eulerian</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Evfool" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Evfool</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FMA" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FMA</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Factooor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Factooor</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Falatooni" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Falatooni</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Falcao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Falcao</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Farhaf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Farhaf</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Farhank" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Farhank</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Farlfr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Farlfr</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FarzanehSarafraz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FarzanehSarafraz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Faseeh1218" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Faseeh1218</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fdem" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fdem</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fenchi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fenchi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:FerminAndrade" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">FerminAndrade</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Feyza" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Feyza</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fgland" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fgland</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Flaviodegodoi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Flaviodegodoi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Flirtwomens" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Flirtwomens</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Foadv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foadv</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Foobar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Foobar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fourdollars" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fourdollars</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Francesco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Francesco</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fred.th" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fred.th</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Fujimoto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Fujimoto</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Funnym0nk3y" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Funnym0nk3y</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Future1529" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manas Joshi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gabix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gabix</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GabrielSwart" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GabrielSwart</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gabrielcossette" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gabrielcossette</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gabrielezorzi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gabrielezorzi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ganton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ganton</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gbilotta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gbilotta</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gcoelho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gcoelho</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GeeZ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GeeZ</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gekacheka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gekacheka</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Geoff%20newson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Geoff newson</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gerard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gerard</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gertvv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">van Valkenhoef, Gert</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ghouston" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Houston, Gary</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Giancav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Giancav</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gicmo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gicmo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gmeijssen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gmeijssen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Goldensgui" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Goldensgui</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gpmanrpi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gpmanrpi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grahl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grahl</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GrantCelley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GrantCelley</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Grass-tree" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Grass-tree</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gregghz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hernandez, Gregg</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gregkel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gregkel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:GroverYQVvwokac" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">GroverYQVvwokac</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gstein" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gstein</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guhde" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guhde</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Guillaume" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Guillaume</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Gxyd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gxyd</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:H%20Wettlaufer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">H Wettlaufer</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HFujimaki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HFujimaki</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HKagerer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HKagerer</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HLGZorawdi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HLGZorawdi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Haggai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Haggai</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hagos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hagos</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hamati" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hamati</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hamkins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hamkins</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hapeck" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hapeck</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hasinasi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hasinasi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hbr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hbr</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heiher" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rui Wang</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hermeli2856" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hermeli2856</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HessnovTHR44" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HessnovTHR44</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heygo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heygo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Heyheyitshay" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Heyheyitshay</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hfischer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hfischer</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hillrich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hillrich</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HiltonFtel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HiltonFtel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hitomi%20t" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hitomi t</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hkdocholid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hkdocholid</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hlavaty" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hlavaty, Tomas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hoaivan27299" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hoaivan27299</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Homeboy445" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">K, Akshit</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Honza.havlicek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Honza.havlicek</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hopman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hopman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HoracioRydge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HoracioRydge</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hornmichaels" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hornmichaels</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hosiryuhosi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hosiryuhosi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hriostat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hriostat</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:HumbertGno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">HumbertGno</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Hwoehrle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Hwoehrle</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ialbors" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ialbors</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ian</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iandol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iandol</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ianjo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ianjo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iantheprogrammer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iantheprogrammer</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IbraM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IbraM</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IceBlur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IceBlur</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ida" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ida</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Igilham" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gilham, Ian</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Igorizyumin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Igorizyumin</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Imypsychconsult" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Imypsychconsult</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Insanetree" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Insanetree</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iosonja" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Iosonja</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Iremsendur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Şendur, İrem</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Irene" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Irene</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IrrevdJohn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IrrevdJohn</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IrvinFunkw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IrvinFunkw</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ismael" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ismael</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:IvanP" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">IvanP</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JDługosz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JDługosz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JJ2020" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JJ2020</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JK2308" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JK2308</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jab" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jab</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jailletc36" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jailletc36</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JaimeS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JaimeS</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jamil" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jamil</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JanEnEm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JanEnEm</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Janani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Janani</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jani</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jano</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Janvlug" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Janvlug</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jayppc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jayppc</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jazzon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jazzon</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jcdericco" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jcdericco</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jchaffraix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chaffraix, Julien</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jean.fr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jean.fr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JeanAmessdvaei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JeanAmessdvaei</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JeanMcPhillamy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JeanMcPhillamy</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JefferyMackenna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JefferyMackenna</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jentron256" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jentron256</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jeongkyu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jeongkyu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jerdum" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jerdum</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JeremyBicha" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bicha, Jeremy</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JerryShi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JerryShi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JessicaParker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JessicaParker</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jessie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Gao, Qiwen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JestineNww" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JestineNww</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jetomit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lazar, Timotej</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jflory7" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jflory7</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jhbruhn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bruhn, Jan-Henrik</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jinocvla" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jinocvla</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JiroMatsuzawa" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JiroMatsuzawa</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jj151515" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jj151515</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jmarchn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jmarchn</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joachim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joachim</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joanluc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joanluc</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joaofernando" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joaofernando</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JoelH" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JoelH</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JohnTheHuman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JohnTheHuman</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Johnplay2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Johnplay2</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JomarSilva" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JomarSilva</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonatanpc8" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jonatanpc8</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JonelleFritz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JonelleFritz</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jonny.Wu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wu, Haidong</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JordanS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JordanS</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jorge%20Rodríguez%20Fonseca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jorge Rodríguez Fonseca</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jorgemendes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jorgemendes</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JoseGatica" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JoseGatica</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joselaurian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joselaurian</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Joshun" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Joshun</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:José%20Eduardo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">José Eduardo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jp.santi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jp.santi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jpl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jpl</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jrtc27" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Clarke, James</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JudeMcCafferty" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JudeMcCafferty</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Juergen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Juergen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:JuliannSnider" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">JuliannSnider</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jumapico" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Picca, Juan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Jwcampbell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jwcampbell</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KDubrulle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Dubrulle, Kevin</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kader" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kader</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kapoorsahab" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kapoorsahab</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KatjaG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KatjaG</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kbhat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bhat, Kishor</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Keith%20Long" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Keith Long</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kenb" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kenb</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kenneth.venken" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kenneth.venken</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kenton3255" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kenton3255</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kiyotaka%20Nishibori" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kiyotaka Nishibori</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kkasper" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kasper, Kacper</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kkremitzki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kkremitzki</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Knobo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Knobo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Koeleman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Koeleman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KoffeinFlummi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KoffeinFlummi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kosmous" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kosmous</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:KourtneNester" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">KourtneNester</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kr1shna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kr1shna</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Krotow" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krotow</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kumar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kumar, Thangavel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Kying" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kying</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LKPSharylptwsdo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LKPSharylptwsdo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LMKemm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LMKemm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LOFF" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LOFF</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LaPingvino" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LaPingvino</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Laskov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Laskov</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LatoshaZnu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LatoshaZnu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LaverneNavarret" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LaverneNavarret</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LavinaVandermar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LavinaVandermar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Learner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Learner</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Librestez54" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Librestez54</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Likoski" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Likoski</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LillieNlowccx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LillieNlowccx</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lineinthesand" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lineinthesand</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Literacyglenys" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Literacyglenys</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Litishia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Litishia</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Liturgist" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Liturgist</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Llalllal1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Llalllal1</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lnjuanj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lnjuanj</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lobillo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lobillo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lonaowna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lonaowna</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lopp%20Rs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lopp Rs</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lorne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lorne</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lplatypus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lplatypus</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luca</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Lucas%20Filho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Lucas Filho</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:LudieNutter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">LudieNutter</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luiz%20Cláudio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luiz Cláudio</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luiz%20Rezende" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luiz Rezende</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Luke" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Luke</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M.sacharewicz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">M.sacharewicz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:M1ndfr3ak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">M1ndfr3ak</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ME-ON1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ME-ON1</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MJW" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MJW</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maahicool" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maahicool</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mabel7997eelu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mabel7997eelu</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maemst" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maemst</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Magicienap" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Magicienap</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Magmag" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Magmag</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mahdiekrani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mahdiekrani</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mahmudul" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mahmudul</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maliuta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maliuta</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Manveru1986" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Manveru1986</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mapreri" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rizzolo, Mattia</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarcK" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarcK</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarcelProut" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarcelProut</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarcoZ" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarcoZ</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcobiscaro2112" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Biscaro, Marco</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcosalex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcosalex</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marcosps" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marcosps</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MargoBergman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MargoBergman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarianaConnell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarianaConnell</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mariano%20Gaudix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mariano Gaudix</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarkWielaaard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarkWielaaard</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Markcoomes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Markcoomes</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Markzog21" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Markzog21</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MarthaWaterman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MarthaWaterman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Martinvanzijl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Martinvanzijl</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Marwan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Marwan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maryanndefo91" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maryanndefo91</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Masaki%20tamakoshi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Masaki tamakoshi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Masakim-icraft" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Masakim-icraft</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Massao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Massao</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mastizada" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mastizada</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matsuura" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Matsuura</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MattTheGeek" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MattTheGeek</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matteo.campanelli" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Campanelli, Matteo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Matěj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Matěj</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mau" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mau</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MavropaliasG" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MavropaliasG</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Maxjf1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Maxjf1</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mazinho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mazinho</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mbechler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bechler, Moritz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mblume3" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mblume3</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mdolezel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Doležel, Marek</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Megan44Dgxg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Megan44Dgxg</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Melikeyurtoglu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Melikeyurtoglu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Menturi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Menturi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MeskoBalazs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MeskoBalazs</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mete0r" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mete0r</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhaehnel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhaehnel</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhcrnl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhcrnl</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mhenriday" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mhenriday</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mibm123" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mibm123</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michaelwood" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michaelwood</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Michka%20B" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Michka B</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Midomidi2013" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Midomidi2013</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MiguelKastner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MiguelKastner</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Miguelteixeira" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Miguelteixeira</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Miguelverdu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Miguelverdu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mike-y" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mike-y</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MikeLittle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MikeLittle</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mikolg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mikolg</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MilagroWilkerso" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MilagroWilkerso</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Milanbv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Milanbv</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Miles" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Miles</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Minarja4" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Minarja4</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mirsad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mirsad</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Miurahr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Miurahr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mixer" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mixer</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mixstah" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mixstah</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mlager" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mlager</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mmeof" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mmeof</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Moaz%20eldfrawy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Moaz eldfrawy</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Moberg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Moberg</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mohammedzalta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mohammedzalta</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mohsenzl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mohsenzl</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Monikayadav" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Monikayadav</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Morenonatural" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Morenonatural</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mox" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Soini, Mox</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mrund" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mrund</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Muhammadsufyanzainalabidin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Muhammadsufyanzainalabidin</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Mw" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Mw</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Myan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Myan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:MyraBlacklow" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">MyraBlacklow</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:N3rd4i" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">N3rd4i</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NEOhidra" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NEOhidra</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NNe8Lx2gc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NNe8Lx2gc</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nanotron" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nanotron</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nattu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nattu</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ncaio" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ncaio</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nedrichards" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nedrichards</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NellieSMWX" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NellieSMWX</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Neteler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Neteler</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nevanos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nevanos</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ngoswami" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ngoswami</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nickko" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nickko</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nilss" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nilss</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nithin.padavu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nithin.padavu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nlminhtl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ngo, Minh</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nnino2" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nnino2</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Norty" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Norty</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Notafish" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Notafish</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:NotesTracker" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">NotesTracker</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nouiurm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nouiurm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nrbrtx" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Norbert X</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Nurohman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nurohman</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oclei" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oclei</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oig" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oig</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oiouitt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oiouitt</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Okusi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Okusi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Olr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Olr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Omansmith" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Omansmith</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Omerta" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Omerta</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Onurkucuk67" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Onurkucuk67</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oosterkamp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oosterkamp</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Opestawon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Opestawon</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Orbea" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sezen, Hunter</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Orrd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Orrd</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Osoitz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Osoitz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Otrembad" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Otrembad</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Oui" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Oui</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ouyang.leyan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ouyang.leyan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Owenanderson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Anderson, Owen</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ozcanesen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Esen, Özcan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ozpoz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ozpoz</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ozturkemre" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Öztürk, Emre</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:P12tic" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">P12tic</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PBsoft" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PBsoft</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pa1pal" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pal, Pawan</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Padenton" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Padenton</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paintdog" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paintdog</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PamalaDorsch" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PamalaDorsch</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pankaj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pankaj</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Papesky" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Papesky</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Passerpunt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Passerpunt</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pastim" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pastim</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paulmenzel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paulmenzel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Paulolima" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paulolima</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pedro.silva" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pedro.silva</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pelambrera" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pelambrera</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PelinKuran" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PelinKuran</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PenelopHewlett" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PenelopHewlett</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Peternowee" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Nowee, Peter</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pevik" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vorel, Petr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pharmankur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pharmankur</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phb.nbnet.nb.ca" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Phb.nbnet.nb.ca</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pherjung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pherjung</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PhilDur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PhilDur</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philhart" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Philhart</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PhilipTimms" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PhilipTimms</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philipp.weissenbacher" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Philipp.weissenbacher</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philippe43" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Philippe43</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Philkrylov" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Krylov, Phil</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phomes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Phomes</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Phora" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Paraiso, Joan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piero" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piero</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PieterDeBruijn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PieterDeBruijn</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pietro.caballeri" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pietro.caballeri</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pilavi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pilavi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piratu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piratu</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Piternoize" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Piternoize</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pjotr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pjotr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pkavinda" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pkavinda</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Plastique" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Plastique</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Plastovicka" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Plastovicka</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ploxiz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Moscu, Alexandru</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PopularOutcast" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">PopularOutcast</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Por" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Por</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:PrinceManfred" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Carter, Travis</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Prosper" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Prosper</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Psauthor" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Psauthor</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Psmits" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Psmits</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Psychicread531" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Psychicread531</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pv2k" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vidhey Pv</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Pwz266266" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Pwz266266</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qarkai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Illarionov, Arkadiy</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qiguo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Qiguo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qtwallaert" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Qtwallaert</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quick8130" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quick8130</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Quickbooktech" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Quickbooktech</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Qwe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Qwe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rahuldeshmukh101" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rahuldeshmukh101</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rainy" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rainy</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ramonturner" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ramonturner</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Randallperry" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Randallperry</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ratajs" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ratajs</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ratias" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ratias</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rcampbelllaos" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rcampbelllaos</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RebeccaToscano" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RebeccaToscano</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rettichschnidi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rettichschnidi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RexRTEJnlzus" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RexRTEJnlzus</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rholler" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rholler</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rich" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rich</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Richardprins" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Richardprins</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RickieHpejt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RickieHpejt</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Riessmi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Riessmi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rif" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rif</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rifkiaz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rifkiaz</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rimas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rimas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ringlerloje" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ringlerloje</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rion" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rion</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ritztro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ritzema, Brent</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rizobix" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rizobix</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rkond" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Kondratenko, Rostislav</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Robert%20Wetzlmayr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robert Wetzlmayr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Robineh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robineh</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Robustchao" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Robustchao</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rockers" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rockers</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rodney78" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rodney78</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rogach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rogach</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rohit%20deshmukh11" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Deshmukh, Rohit</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rombert" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rombert</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ron1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ron1</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ronakkothari123" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ronakkothari123</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ronny" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ronny</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Roscoe5731" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Roscoe5731</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rosemarie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rosemarie</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rpott" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rpott</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rsedak" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rsedak</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:RuleAndLine" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">RuleAndLine</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Rvr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Rvr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ryho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ryho</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ryoon" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ONODERA, Ryo</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SallyMorales" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SallyMorales</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Samanicute" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Samanicute</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sambhav2612" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sambhav2612</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Samtygier" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tygier, Sam</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sandeeps" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sandeeps</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sanipache" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sanipache</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Saracans" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Saracans</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sariyar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sariyar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Satya%20kompella" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Satya kompella</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sbar1" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sbar1</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sbraz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sautier, Louis</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Schrillesbunteshamburg" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Schrillesbunteshamburg</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Scno" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Scno</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sctenebro" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sctenebro</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sdc" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sdc</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sedat" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ak, Sedat</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Senopen" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Senopen</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Serdarot5" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Serdarot5</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Seriouslaughbore" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Seriouslaughbore</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shay030" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shay030</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ShaynaMan" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ShaynaMan</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SherylMillingto" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SherylMillingto</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ShimonShore" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shore, Shimon</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shin%20en" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shin en</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shobhit" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Chaurasia, Shobhit</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Shortblack" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shortblack</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ShyamPraveenSingh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ShyamPraveenSingh</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Siegi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Siegi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Silvestr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Silvestr</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Silvia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Silvia</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Simonbr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Simonbr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Skierpage" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Skierpage</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Smalalur" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Smalalur</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Socialmitchell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Socialmitchell</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Son%20Sonson" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Son Sonson</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sourabh1031" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sourabh1031</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sovichet" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sovichet</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SpeedyGonsales" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SpeedyGonsales</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sphericalhorse" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sphericalhorse</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Spreadsheetsorter" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Spreadsheetsorter</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Srijanani" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Srijanani</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stewart75H" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stewart75H</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Stonehubmn" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Stonehubmn</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:StuartHalliday" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">StuartHalliday</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Subhash" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Subhash</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Supportex" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Supportex</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Susanne" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Susanne</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SusieVeasley" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SusieVeasley</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Svalo" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Svalo</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:SvenHornung" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">SvenHornung</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Svend-ev" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Svend-ev</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sviola" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sviola</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Svtlichnijj" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Svtlichnijj</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Sébastien%20C." text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Sébastien C.</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:T-otsuki" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">T-otsuki</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TAQSamueld" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TAQSamueld</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Talueses" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Talueses</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tanguy%20k" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tanguy k</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tantai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thanakanok, Tantai</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TaylorSlemp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TaylorSlemp</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Techsquirrel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Techsquirrel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TeganCreswick" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TeganCreswick</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tegas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tegas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Terber" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Terber</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Testsflirt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Testsflirt</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:The%20Magpie" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">The Magpie</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ThePokehach" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ThePokehach</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thephilosoft" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thephilosoft</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thom" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thom</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Thor574" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thor574</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ThudDriver" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ThudDriver</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tifroumi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tifroumi</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tigerbeard" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tigerbeard</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tilt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tilt</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tmongkol" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tmongkol</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomasdd" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tomasdd</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TomofumiYagi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TomofumiYagi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tomv" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Viehmann, Thomas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tpokorra" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tpokorra</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Transcend" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Transcend</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Trebledcliff" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Trebledcliff</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:TrevorPfe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">TrevorPfe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Trondtr" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Trondtr</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ttv20" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ttv20</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tuliouel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tuliouel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tuping" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tuping</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Tvallois" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Thibault, Vallois</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uajain" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Jain, Umang</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Udit%20Sharma" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Udit Sharma</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Umairshahid" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Shahid, Umair</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Uman" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vincent, Brennan</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Unho" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Unho</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:UrmasD" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">UrmasD</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:UrsulaHorrell" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">UrsulaHorrell</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Ushabtay" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Ushabtay</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VIPSylar" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VIPSylar</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VPUJamikajklq" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VPUJamikajklq</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vandenoever" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vandenoever</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Veeven" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Veeven</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vera%20Cavalcante" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vera Cavalcante</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:VernaSchulze" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">VernaSchulze</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vincentvikram" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vincentvikram</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Vinkas" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Vinkas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Virus009" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Virus009</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WOBFriedauk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WOBFriedauk</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wadrian" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wadrian</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:WandaSingletary" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">WandaSingletary</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wastl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wastl</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Waynemcl" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Waynemcl</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Webistrator" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Webistrator</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wedeluxe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wedeluxe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wes" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wes</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Westantenna" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Westantenna</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wezchlebaty" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wezchlebaty</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wilhelm" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Wilhelm</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:William%20Avery" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">William Avery</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Williewortel" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Williewortel</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wiz" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Klausner, Thomas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Woulouf" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Woulouf</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Wtjong" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Tjong, Winston Min</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:XSXKristin" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">XSXKristin</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xapantu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Baudin, Lucas</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:XeroxMe" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">XeroxMe</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xsdcfghjk" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xsdcfghjk</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xsoh" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Suhail Alkowaileet</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:XtinaS" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">XtinaS</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xtrusia" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xtrusia</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Xuenhua" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Xuenhua</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yangyiji" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yangyiji</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:YaroslavRutledge" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">YaroslavRutledge</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yazu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yazu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yeliztaneroglu" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yeliztaneroglu</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yogeshdesai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Desai, Yogesh</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yoshiharu%20Kawai" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yoshiharu Kawai</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yowbooks" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yowbooks</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:YvanM" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">YvanM</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yy%20y%20ja%20jp" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Yy y ja jp</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Yzsolt" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Bölöny, Zsolt</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:ZBMCallumbwire" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">ZBMCallumbwire</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zangune" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zangune</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zibi" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zibi</text:a> (1) </text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zizzle" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zizzle</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:Zonnebloempje" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">Zonnebloempje</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents"><text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/User:鄒延" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">鄒延</text:a> (1) </text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Tabelle5.D705" office:value-type="string">
+ <text:p text:style-name="P1"/>
+ </table:table-cell>
+ </table:table-row>
+ </table:table>
+ <text:p text:style-name="Text_20_body">If you want to replace your Wiki user name with your full name, go to <text:a xlink:type="simple" xlink:href="http://wiki.documentfoundation.org/Development/Developers" text:style-name="Internet_20_link" text:visited-style-name="Visited_20_Internet_20_Link">this wiki page</text:a> and add yourself to the name mapping list.</text:p>
+ </text:section>
+ </office:text>
+ </office:body>
+</office:document> \ 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 <http://www.oracle.com/>.
+
+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 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
+ <title id="title" xml:lang="en-US" lang="en-US">Licensing and Legal information</title>
+</head>
+<body>
+ <h1 style="text-align: center;">Licensing and Legal information</h1>
+ <p>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.</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2</a></p>
+ <p>Third Party Code Additional copyright notices and license terms applicable to portions of the Software can be
+ found <a href="#thirdparty">below</a> in this document.</p>
+ <p>All trademarks and registered trademarks mentioned herein are the property of their respective owners.</p>
+ <p>Copyright © 2000–2022 LibreOffice contributors. All rights reserved.</p>
+ <p>This product is based on OpenOffice.org. Portions of this software are copyright © 2000-2011, Oracle and/or its
+ affiliates.</p>
+ <p>This product has been created by The Document Foundation, incorporating many modifications from different
+ contributors, see <a href="http://www.libreoffice.org/">http://www.libreoffice.org/</a> for more details.</p>
+ <p><strong>Note:</strong> Do not translate or localize this document. Only English version is legally binding.</p>
+ <h2>Contents</h2>
+ <p><a href="#a__Libraries">Libraries</a></p>
+ <p><a href="#a__Extensions">Extensions</a></p>
+ <div class="MORE_FONTS">
+ <p><a href="#a__Fonts">Fonts</a></p>
+ </div>
+ <div class="DICTIONARIES">
+ <p><a href="#a__Dictionaries">Dictionaries</a></p>
+ </div>
+ <p><a href="#a__Artwork">Artwork</a></p>
+ <div class="no_mpl_subset">
+ <p><a href="#a__LGPL_version_3">GNU Lesser General Public License Version 3</a></p>
+ <p><a href="#a__LGPL_version_2_1">GNU Lesser General Public License Version 2.1</a></p>
+ <p><a href="#a__LGPL_version_2">GNU Library General Public License Version 2</a></p>
+ <p><a href="#a__GPL_version_3">GNU General Public License Version 3</a></p>
+ <p><a href="#a__GPL_version_2">GNU General Public License Version 2</a></p>
+ </div>
+ <div class="COINMP">
+ <p><a href="#a__CPL_version_1_0">Common Public License Version 1.0 (CPL)</a></p>
+ </div>
+ <p><a href="#a__MPL_version_1_1">Mozilla Public License Version 1.1</a></p>
+ <p><a href="#a__MPL_version_2">Mozilla Public License Version 2.0</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">SIL Open Font License Version 1.1</a></p>
+ <p><a href="#a__Apache_License_version_2_0">Apache License</a></p>
+ <div class="DICTIONARIES">
+ <p><a href="#a__LPPL">The LaTeX Project Public License</a></p>
+ </div>
+ <p><a href="#a__CC-BY-SA_3_0">Creative Commons Attribution-ShareAlike 3.0 Unported</a></p>
+ <p><a href="#a__CC-BY-SA_4_0">Creative Commons Attribution-ShareAlike 4.0 International</a></p>
+ <hr />
+ <h1 style="text-align: center;"><a id="thirdparty" name="thirdparty">Third Party Code Additional Copyright
+ Notices and License Terms</a></h1>
+ <h1><a id="a__Libraries" name="a__Libraries">Libraries</a></h1>
+ <div class="BSH">
+ <h2>beanshell</h2>
+ <p>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:</p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ </div>
+ <div class="BOOST">
+ <h2>C++ Boost Library</h2>
+ <p>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:</p>
+ <p>Boost Software License - Version 1.0 - August 17th, 2003</p>
+ <p>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:</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="BREAKPAD">
+ <h2>Breakpad</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2006, Google Inc.</p>
+ <p>All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ul>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <hr />
+ <p>Copyright 2001-2004 Unicode, Inc.</p>
+ <p>Disclaimer</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="BZIP2">
+ <h2>Bzip2</h2>
+ <p>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:</p>
+ <p>This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2010
+ Julian R Seward. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ol>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>Altered source versions must be plainly marked as such, and must not be misrepresented as being the
+ original software.</li>
+ <li>The name of the author may not be used to endorse or promote products derived from this software
+ without specific prior written permission.</li>
+ </ol>
+ <p>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.</p>
+ <p>Julian Seward, jseward@bzip.org</p>
+ </div>
+ <div class="CAIRO">
+ <h2>Cairo</h2>
+ <p>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:</p>
+ <p>Cairo is free software.</p>
+ <p>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.</p>
+ <p>See the following files in this directory for the precise terms and conditions of either license:</p>
+ <p><span> <a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></span></p>
+ <p><span> <a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></span></p>
+ <p>Please see each file in the implementation for copyright and licensing information, (in the opening comment
+ of each file).</p>
+ <p>[*] 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).</p>
+ <p>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.</p>
+ </div>
+ <div class="OPENCL">
+ <h2>CLEW</h2>
+ <p>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:</p>
+ <p>Boost Software License - Version 1.0 - August 17th, 2003</p>
+ <p>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:</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="CLUCENE">
+ <h2>CLucene</h2>
+ <p>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:</p>
+ <p>CLucene is distributed under the GNU Lesser General Public License (LGPL) or the Apache License, Version
+ 2.0</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ </div>
+ <div class="COINMP">
+ <h2>CoinMP</h2>
+ <p>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:</p>
+ <p><a href="#a__CPL_version_1_0">Jump to Common Public License Version 1.0 (CPL)</a></p>
+ </div>
+ <div class="EPOXY">
+ <h2>Epoxy</h2>
+ <p>The following software may be included in this product: epoxy.</p>
+ <p>The libepoxy project code is covered by the MIT license:</p>
+ <blockquote>
+ <p>Copyright © 2013-2014 Intel Corporation</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice (including the next paragraph) shall be included
+ in all copies or substantial portions of the Software.</p>
+ <p>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.</p>
+ </blockquote>
+ <p>The generated code is derived from Khronos's xml files, which appear under the following license:</p>
+ <blockquote>
+ <p>Copyright (c) 2013 The Khronos Group Inc.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Materials.</p>
+ <p>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.</p>
+ </blockquote>
+ </div>
+ <div class="EXPAT">
+ <h2>expat XML Parser Toolkit</h2>
+ <p>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:</p>
+ <p>Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper</p>
+ <p>Copyright (c) 2001, 2002, 2003 Expat maintainers.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="JFREEREPORT">
+ <h2>Flute</h2>
+ <p>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:</p>
+ <h3>W3C IPR SOFTWARE NOTICE</h3>
+ <p>Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de
+ Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</p>
+ <p><span class="T1">Note:</span> The original version of the W3C Software Copyright Notice and License could be
+ found at <a href=
+ "http://www.w3.org/Consortium/Legal/copyright-software-19980720">http://www.w3.org/Consortium/Legal/copyright-software-19980720</a></p>
+ <p>Copyright © 1994-2000 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href=
+ "http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut
+ National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>).
+ All Rights Reserved. <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a></p>
+ <p>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:</p>
+ <p>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:</p>
+ <ol>
+ <li>The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</li>
+ <li>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 <a href="http://www.w3.org/">World Wide Web
+ Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href=
+ "http://www.inria.fr/">Institut National de Recherche en Informatique et en Automatique</a>, <a href=
+ "http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. <a href=
+ "http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a>" </li>
+ <li>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.)</li>
+ </ol>
+ <p>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.</p>
+ <p>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
+ ANY USE OF THE SOFTWARE OR DOCUMENTATION.</p>
+ <p>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.</p>
+ </div>
+ <div class="FREETYPE">
+ <h2>Freetype Library</h2>
+ <p>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:</p>
+ <h3>0. Definitions</h3>
+ <p>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.</p>
+ <p>`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'.</p>
+ <p>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.</p>
+ <p>The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All
+ rights reserved except as specified below.</p>
+ <h3>1. No Warranty</h3>
+ <p>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.</p>
+ <h3>2. Redistribution</h3>
+ <p>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:</p>
+ <ul>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <h3>3. Advertising</h3>
+ <p>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.</p>
+ <p>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'.</p>
+ <p>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.</p>
+ <h3>4. Contacts</h3>
+ <p>There are two mailing lists related to FreeType:</p>
+ <ul>
+ <li>freetype@freetype.org</li>
+ </ul>
+ <p>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.</p>
+ <ul>
+ <li>devel@freetype.org</li>
+ </ul>
+ <p>Discusses bugs, as well as engine internals, design issues, specific licenses, porting, etc.</p>
+ <ul>
+ <li><a href="http://www.freetype.org/">http://www.freetype.org</a></li>
+ </ul>
+ <p>Holds the current FreeType web page, which will allow you to download our latest development version and
+ read online documentation.</p>
+ <p>You can also contact us individually at:</p>
+ <p>David Turner<br />
+ Robert Wilhelm<br />
+ Werner Lemberg<br /></p>
+ </div>
+ <div class="FIREBIRD" >
+ <h2>Firebird</h2>
+ <p>The applicable and approved licenses for the source files of the Firebird RDBMS project are:</p>
+ <p>1) InterBase Public License (IPL), version 1.0</p>
+ <p>2) Initial Developer's Public License (IDPL), version 1.0</p>
+ <p>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 <a href=
+ "http://www.firebirdsql.org/en/licensing/">http://www.firebirdsql.org/en/licensing/</a></p>
+ </div>
+ <div class="FONTCONFIG">
+ <h2>fontconfig</h2>
+ <p>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:</p>
+ <p>Copyright © 2002 Keith Packard</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="GLM">
+ <h2>GLM</h2>
+ <p>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:</p>
+ <h3>The MIT License</h3>
+ <p>Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.net)</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="GPGMEPP">
+ <h2>GPGME</h2>
+ <p>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:</p>
+ <p>Copyright 2001-2017 g10 Code GmbH</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="GRAPHITE">
+ <h2>Graphite2</h2>
+ <p>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:</p>
+ <p>Copyright 2010, SIL International All rights reserved.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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 <a href=
+ "http://www.fsf.org/licenses/lgpl.html">http://www.fsf.org/licenses/lgpl.html</a>.</p>
+ <p>Alternatively, you may use this library under the terms of the Mozilla Public License (<a href=
+ "http://mozilla.org/MPL">http://mozilla.org/MPL</a>) 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.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="HARFBUZZ">
+ <h2>HarfBuzz</h2>
+ <p>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.</p>
+ <p>Copyright © 2010,2011,2012  Google, Inc.<br />
+ Copyright © 2012  Mozilla Foundation<br />
+ Copyright © 2011  Codethink Limited<br />
+ Copyright © 2008,2010  Nokia Corporation and/or its subsidiary(-ies)<br />
+ Copyright © 2009  Keith Stribley<br />
+ Copyright © 2009  Martin Hosken and SIL International<br />
+ Copyright © 2007  Chris Wilson<br />
+ Copyright © 2006  Behdad Esfahbod<br />
+ Copyright © 2005  David Turner<br />
+ Copyright © 2004,2007,2008,2009,2010  Red Hat, Inc.<br />
+ Copyright © 1998-2004  David Turner and Werner Lemberg</p>
+ <p>For full copyright notices consult the individual files in the package.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="HSQLDB">
+ <h2>HSQLDB</h2>
+ <p>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:</p>
+ <h3>ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt")</h3>
+ <p>For content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:</p>
+ <p>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:</p>
+ <p>Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt)</h3>
+ <p>Copyright (c) 2001-2004, The HSQL Development Group All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <p>Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="HUNSPELL">
+ <h2>Hunspell</h2>
+ <p>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:</p>
+ <p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license</p>
+ <p>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").</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="HYPH">
+ <h2>Hyphen</h2>
+ <p>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:</p>
+ <p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license</p>
+ <p>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").</p>
+ <p>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."</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <h2>IAccessible2</h2>
+ <p>The following software may be included in this product: IAccessible2 API.</p>
+ <p>IAccessible2 IDL Specification</p>
+ <p>Copyright (c) 2007, 2013 Linux Foundation<br />
+ Copyright (c) 2006 IBM Corporation<br />
+ Copyright (c) 2000, 2006 Sun Microsystems, Inc.<br />
+ All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+ following conditions are met:</p>
+ <ol>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p>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.</p>
+ <p>This BSD License conforms to the Open Source Initiative "Simplified BSD License" as published at: <a href=
+ "http://www.opensource.org/licenses/bsd-license.php">http://www.opensource.org/licenses/bsd-license.php</a></p>
+ <p>IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 mark may be used in accordance with the
+ <a href="http://www.linuxfoundation.org/collaborate/workgroups/accessibility/trademark-policy">Linux Foundation
+ Trademark Policy</a> to indicate compliance with the IAccessible2 specification.</p>
+ <p>Find out more about IAccessible2 at <a href=
+ "http://accessibility.linuxfoundation.org/">http://accessibility.linuxfoundation.org/</a>.</p>
+ <div class="ICU">
+ <h2>ICU</h2>
+ <p>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:</p>
+ <h3>ICU License - ICU 1.8.1 and later</h3>
+ <p>COPYRIGHT AND PERMISSION NOTICE</p>
+ <p>Copyright (c) 1995-2002 International Business Machines Corporation and others All rights reserved.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>All trademarks and registered trademarks mentioned herein are the property of their respective owners.</p>
+ </div>
+ <div class="ABW" >
+ <h2>libabw</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBASSUAN">
+ <h2>Libassuan</h2>
+ <p>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:</p>
+ <p>Copyright (C) 2001-2013 Free Software Foundation, Inc.</p>
+ <p>Copyright (C) 2001-2017 g10 Code GmbH</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="LIBATOMIC_OPS">
+ <h2>libatomic_ops</h2>
+ <p>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:</p>
+ <p>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.</p>
+ <p>A few library routines are covered by the <a href="#a__GPL_version_2">GNU General Public License</a>. These
+ are put into a separate library, libatomic_ops_gpl.a.</p>
+ <p>The low-level part of the library is mostly covered by the following license:</p>
+ <hr />
+ <p>Copyright (c) ...</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <hr />
+ <p>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:</p>
+ <hr />
+ <p>Copyright (c) ...</p>
+ <p>THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN
+ RISK.</p>
+ <p>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.</p>
+ <hr />
+ <p>Note: the portion needed for Firebird (libatomic_ops) is MIT licensed.</p>
+ </div>
+ <div class="CDR">
+ <h2>libcdr</h2>
+ <p>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:</p>
+ <p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="LIBCMIS" >
+ <h2>libcmis</h2>
+ <p>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:</p>
+ <p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="CURL" >
+ <h2>libcurl</h2>
+ <p>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:</p>
+ <p>Copyright (c) 1996 - 2009, Daniel Stenberg, &lt;daniel@haxx.se&gt;.</p>
+ <p>All rights reserved.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="EBOOK" >
+ <h2>libe-book</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBEOT" >
+ <h2>libeot</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="EPUBGEN" >
+ <h2>libepubgen</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="ETONYEK">
+ <h2>libetonyek</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBEXTTEXTCAT_DATA" >
+ <h2>libexttextcat</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2003, WiseGuys Internet B.V.</p>
+ <p>All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <p>- Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</p>
+ <p>- 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.</p>
+ <p>- 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.</p>
+ <p>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.</p>
+ </div>
+ <div class="FREEHAND">
+ <h2>libfreehand</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBGPGERROR">
+ <h2>Libgpg-error</h2>
+ <p>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:</p>
+ <p>Copyright (C) 2001-2017 g10 Code GmbH</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="LIBJPEG_TURBO">
+ <h2>libjpeg-turbo</h2>
+ <p>The following software may be included in this product: libjpeg-turbo. libjpeg-turbo is covered by three
+ compatible BSD-style open source licenses:</p>
+ <ul>
+ <li>
+ <p>The IJG (Independent JPEG Group) License, which is listed <a href="#a__IJG_License">below</a></p>
+ <p>This license applies to the libjpeg API library and associated programs (any code inherited from
+ libjpeg, and any modifications to that code.)</p>
+ </li>
+ <li>
+ <p>The Modified (3-clause) BSD License, which is listed below</p>
+ <p>This license covers the TurboJPEG API library and associated programs, as well as the build
+ system.</p>
+ </li>
+ <li>
+ <p>The <a href="#a__Zlib_license">zlib License</a></p>
+ <p>This license is a subset of the other two, and it covers the libjpeg-turbo SIMD extensions.</p>
+ </li>
+ </ul>
+ <h3>Complying with the libjpeg-turbo Licenses</h3>
+ <p>This section provides a roll-up of the libjpeg-turbo licensing terms, to the best of our understanding.</p>
+ <ol>
+ <li>
+ <p>If you are distributing a modified version of the libjpeg-turbo source, then:</p>
+ <ol type="i">
+ <li>
+ <p>You cannot alter or remove any existing copyright or license notices from the source.</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>Clause 1 of the IJG License</li>
+ <li>Clause 1 of the Modified BSD License</li>
+ <li>Clauses 1 and 3 of the zlib License</li>
+ </ul>
+ </li>
+ <li>
+ <p>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.)</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>Clause 1 of the IJG License</li>
+ <li>Clause 2 of the zlib License</li>
+ </ul>
+ </li>
+ <li>
+ <p>You must include the IJG README file, and you must not alter any of the copyright or license
+ text in that file.</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>Clause 1 of the IJG License</li>
+ </ul>
+ </li>
+ </ol>
+ </li>
+ <li>
+ <p>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:</p>
+ <ol type="i">
+ <li>
+ <p>Your product documentation must include a message stating:</p>
+ <p>This software is based in part on the work of the Independent JPEG Group.</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>Clause 2 of the IJG license</li>
+ </ul>
+ </li>
+ <li>
+ <p>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.)</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>Clause 2 of the Modified BSD License</li>
+ </ul>
+ </li>
+ </ol>
+ </li>
+ <li>
+ <p>You cannot use the name of the IJG or The libjpeg-turbo Project or the contributors thereof in
+ advertising, publicity, etc.</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>IJG License</li>
+ <li>Clause 3 of the Modified BSD License</li>
+ </ul>
+ </li>
+ <li>
+ <p>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.</p>
+ <p><strong>Origin</strong></p>
+ <ul>
+ <li>IJG License</li>
+ <li>Modified BSD License</li>
+ <li>zlib License</li>
+ </ul>
+ </li>
+ </ol>
+ <h3>The Modified (3-clause) BSD License</h3>
+ <p>Copyright (C)2009-2019 D. R. Commander. All Rights Reserved. Copyright (C)2015 Viktor Szathmáry. All Rights
+ Reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ul>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <h3>Why Three Licenses?</h3>
+ <p>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.</p>
+ <h3><a name="a__IJG_License" id="a__IJG_License">IJG JPEG Library License</a></h3>
+ <p>In plain English:</p>
+ <ol>
+ <li>We don't promise that this software works. (But if you find any bugs, please let us know!) </li>
+ <li>You can use this software for whatever you want. You don't have to pay us.</li>
+ <li>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.</li>
+ </ol>
+ <p>In legalese:</p>
+ <p>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.</p>
+ <p>This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights Reserved except as specified below.</p>
+ <p>Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for
+ any purpose, without fee, subject to these conditions:</p>
+ <ol>
+ <li>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.</li>
+ <li>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".</li>
+ <li>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.</li>
+ </ol>
+ <p>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.</p>
+ <p>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".</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&amp;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.</p>
+ <p>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.</p>
+ <p>We are required to state that</p>
+ <blockquote>
+ "The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated.  GIF(sm) is a
+ Service Mark property of CompuServe Incorporated."
+ </blockquote>
+ <h3><a name="a__Zlib_license" id="a__Zlib_license">The zlib/libpng License (Zlib)</a></h3>
+ <p>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.</p>
+ <p>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:</p>
+ <ol>
+ <li>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.</li>
+ <li>Altered source versions must be plainly marked as such, and must not be misrepresented as being the
+ original software.</li>
+ <li>This notice may not be removed or altered from any source distribution.</li>
+ </ol>
+ </div>
+ <div class="LIBLANGTAG">
+ <h2>liblangtag</h2>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBTIFF">
+ <h2>libtiff</h2>
+ <p>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:</p>
+ <p>Copyright © 1988-1997 Sam Leffler</p>
+ <p>Copyright © 1991-1997 Silicon Graphics, Inc.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="ORCUS">
+ <h2>liborcus</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="MSPUB">
+ <h2>libmspub</h2>
+ <p>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:</p>
+ <p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="MWAW">
+ <h2>libmwaw</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBNUMBERTEXT">
+ <h2>libnumbertext</h2>
+ <p>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:</p>
+ <p>Copyright 2009–2019 László Németh et al.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ol>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p>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.</p>
+ </div>
+ <div class="ODFGEN">
+ <h2>libodfgen</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBORCUS">
+ <h2>liborcus</h2>
+ <p>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:</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="LIBPNG">
+ <h2>libpng</h2>
+ <p>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:</p>
+ <p>This copy of the libpng notices is provided for your convenience.  In case of<br />
+ any discrepancy between this copy and the notices in the file png.h that is<br />
+ included in the libpng distribution, the latter shall prevail.<br />
+ <br />
+ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:<br />
+ <br />
+ If you modify libpng you may insert additional notices immediately following<br />
+ this sentence.<br />
+ <br />
+ This code is released under the libpng license.<br />
+ <br />
+ libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3, 2011, are<br />
+ Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are<br />
+ distributed according to the same disclaimer and license as libpng-1.2.5<br />
+ with the following individual added to the list of Contributing Authors<br />
+ <br />
+   Cosmin Truta<br />
+ <br />
+ libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are<br />
+ Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are<br />
+ distributed according to the same disclaimer and license as libpng-1.0.6<br />
+ with the following individuals added to the list of Contributing Authors<br />
+ <br />
+   Simon-Pierre Cadieux<br />
+   Eric S. Raymond<br />
+   Gilles Vollant<br />
+ <br />
+ and with the following additions to the disclaimer:<br />
+ <br />
+   There is no warranty against interference with your enjoyment of the<br />
+   library or against infringement.  There is no warranty that our<br />
+   efforts or the library will fulfill any of your particular purposes<br />
+   or needs.  This library is provided with all faults, and the entire<br />
+   risk of satisfactory quality, performance, accuracy, and effort is with<br />
+   the user.<br />
+ <br />
+ libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are<br />
+ Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are<br />
+ distributed according to the same disclaimer and license as libpng-0.96,<br />
+ with the following individuals added to the list of Contributing Authors:<br />
+ <br />
+   Tom Lane<br />
+   Glenn Randers-Pehrson<br />
+   Willem van Schaik<br />
+ <br />
+ libpng versions 0.89, June 1996, through 0.96, May 1997, are<br />
+ Copyright (c) 1996, 1997 Andreas Dilger<br />
+ Distributed according to the same disclaimer and license as libpng-0.88,<br />
+ with the following individuals added to the list of Contributing Authors:<br />
+ <br />
+   John Bowler<br />
+   Kevin Bracey<br />
+   Sam Bushell<br />
+   Magnus Holmgren<br />
+   Greg Roelofs<br />
+   Tom Tanner<br />
+ <br />
+ libpng versions 0.5, May 1995, through 0.88, January 1996, are<br />
+ Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.<br />
+ <br />
+ For the purposes of this copyright and license, "Contributing Authors"<br />
+ is defined as the following set of individuals:<br />
+ <br />
+   Andreas Dilger<br />
+   Dave Martindale<br />
+   Guy Eric Schalnat<br />
+   Paul Schmidt<br />
+   Tim Wegner<br />
+ <br />
+ The PNG Reference Library is supplied "AS IS".  The Contributing Authors<br />
+ and Group 42, Inc. disclaim all warranties, expressed or implied,<br />
+ including, without limitation, the warranties of merchantability and of<br />
+ fitness for any purpose.  The Contributing Authors and Group 42, Inc.<br />
+ assume no liability for direct, indirect, incidental, special, exemplary,<br />
+ or consequential damages, which may result from the use of the PNG<br />
+ Reference Library, even if advised of the possibility of such damage.<br />
+ <br />
+ Permission is hereby granted to use, copy, modify, and distribute this<br />
+ source code, or portions hereof, for any purpose, without fee, subject<br />
+ to the following restrictions:<br />
+ <br />
+ 1. The origin of this source code must not be misrepresented.<br />
+ <br />
+ 2. Altered versions must be plainly marked as such and must not<br />
+   be misrepresented as being the original source.<br />
+ <br />
+ 3. This Copyright notice may not be removed or altered from any<br />
+   source or altered source distribution.<br />
+ <br />
+ The Contributing Authors and Group 42, Inc. specifically permit, without<br />
+ fee, and encourage the use of this source code as a component to<br />
+ supporting the PNG file format in commercial products.  If you use this<br />
+ source code in a product, acknowledgment is not required but would be<br />
+ appreciated.<br />
+ <br />
+ <br />
+ A "png_get_copyright" function is available, for convenient use in "about"<br />
+ boxes and the like:<br />
+ <br />
+   printf("%s",png_get_copyright(NULL));<br />
+ <br />
+ Also, the PNG logo (in PNG format, of course) is supplied in the<br />
+ files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).<br />
+ <br />
+ Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a<br />
+ certification mark of the Open Source Initiative.<br />
+ <br />
+ Glenn Randers-Pehrson<br />
+ glennrp at users.sourceforge.net<br />
+ February 3, 2011  </p>
+ </div>
+ <div class="LIBWEBP">
+ <h2>libwebp</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2010, Google Inc. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:</p>
+ <ol>
+ <li>Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p>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.</p>
+ </div>
+ <div class="PAGEMAKER">
+ <h2>libpagemaker</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="QXP">
+ <h2>libqxp</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="REVENGE">
+ <h2>librevenge</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="STAROFFICE">
+ <h2>libstaroffice</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="FIREBIRD">
+ <h2>LibTomMath</h2>
+ <p>The following software may be included in this product: LibTomMath. LibTomMath is public domain.</p>
+ </div>
+ <div class="VISIO">
+ <h2>libvisio</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="WPD">
+ <h2>libwpd</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="WPG">
+ <h2>libwpg</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="WPS">
+ <h2>libwps</h2>
+ <p>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:</p>
+ <p>LGPL v2.1+ / MPL 2</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LIBXML">
+ <h2>libxml2</h2>
+ <p>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:</p>
+ <p>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:</p>
+ <p>Copyright (C) 1998-2003 Daniel Veillard.  All Rights Reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="LIBXSLT">
+ <h2>libxslt</h2>
+ <p>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:</p>
+ <h3>License for libxslt except libexslt</h3>
+ <p>Copyright (C) 2001-2002 Daniel Veillard.  All Rights Reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>License for libexslt</h3>
+ <p>Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All Rights Reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="ZMF">
+ <h2>libzmf</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
+ </div>
+ <div class="LCMS2">
+ <h2>Little CMS (lcms2)</h2>
+ <p>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:</p>
+ <p>Copyright (c) 1998-2011 Marti Maria Saguer</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="LPSOLVE" >
+ <h2>lpsolve</h2>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="MARIADB_CONNECTOR_C">
+ <h2>MariaDB Connector/C</h2>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="MDDS">
+ <h2>mdds</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2010 Kohei Yoshida</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="MDNSRESPONDER">
+ <h2>mDNSResponder</h2>
+ <p>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.</p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ <p>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".</p>
+ <p>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).</p>
+ </div>
+ <div class="WNT">
+ <h2>Microsoft Visual C++ 2015 Runtime Libraries</h2>
+ <p>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:</p>
+ <p>MICROSOFT SOFTWARE LICENSE TERMS</p>
+ <p>MICROSOFT VISUAL STUDIO 2015 ADD-ONs, VISUAL STUDIO SHELLS and C++ REDISTRIBUTABLE</p>
+ <p>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.</p>
+ <p>IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.</p>
+ <ol>
+ <li>INSTALLATION AND USE RIGHTS.</li>
+ <ol type="a">
+ <li>You may install and use any number of copies of the software.</li>
+ <li>Backup copy. You may make one backup copy of the software, for reinstalling the software.</li>
+ </ol>
+ <li>TERMS FOR SPECIFIC COMPONENTS.</li>
+ <ol type="a">
+ <li>Utilities. The software may contain some items on the Utilities List at <a href=
+ "http://go.microsoft.com/fwlink/?LinkID=523763&amp;clcid=0x409">&lt;http://go.microsoft.com/fwlink/?LinkID=523763&amp;clcid=0x409&gt;</a>.
+ 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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <li>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 <a href=
+ "http://go.microsoft.com/fwlink/?LinkID=528096&amp;clcid=0x409">&lt;http://go.microsoft.com/fwlink/?LinkID=528096&amp;clcid=0x409&gt;</a>.
+ Your use of the software operates as your consent to these practices.</li>
+ <li>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</li>
+ <ul>
+ <li>work around any technical limitations in the software;</li>
+ <li>reverse engineer, decompile or disassemble the software, except and only to the extent that
+ applicable law expressly permits, despite this limitation;</li>
+ <li>remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;</li>
+ <li>use the software in any way that is against the law; or</li>
+ <li>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.</li>
+ </ul>
+ <li>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 <a href=
+ "http://www.microsoft.com/exporting">&lt;http://www.microsoft.com/exporting&gt;</a>.</li>
+ <li>SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for
+ it.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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</li>
+ <li>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.</li>
+ <li>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.<br />
+ 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.<br />
+ 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.</li>
+ </ol>
+ <p>EULAID: VS2015_RTM_ShellsRedist_ENU</p>
+ </div>
+ <div class="MYTHES">
+ <h2>MyThes</h2>
+ <p>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:</p>
+ <p>Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada And Contributors. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <p>1. Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="NSS" >
+ <h2>Network Security Services (NSS)</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL 1.1</a></p>
+ </div>
+ <div class="OPENLDAP">
+ <h2>OpenLDAP</h2>
+ <p>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:</p>
+ <h3>The OpenLDAP Public License</h3>
+ <p>Version 2.8, 17 August 2003</p>
+ <p>Redistribution and use of this software and associated documentation ("Software"), with or without
+ modification, are permitted provided that the following conditions are met:</p>
+ <ol>
+ <li>Redistributions in source form must retain copyright statements and notices,</li>
+ <li>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</li>
+ <li>Redistributions must contain a verbatim copy of this document.</li>
+ </ol>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>OpenLDAP is a registered trademark of the OpenLDAP Foundation.</p>
+ <p>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.</p>
+ </div>
+ <div class="OPENSSL">
+ <h2>OpenSSL</h2>
+ <p>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:</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>OpenSSL License</h3>
+ <p>Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ol>
+ <li>Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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. </li>
+ <li>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. (<a href="http://www.openssl.org/">http://www.openssl.org/</a>)" </li>
+ <li>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. </li>
+ <li>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. </li>
+ <li>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 (<a href=
+ "http://www.openssl.org/">http://www.openssl.org/</a>)" </li>
+ </ol>
+ <p>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.</p>
+ <p>This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product
+ includes software written by Tim Hudson (tjh@cryptsoft.com).</p>
+ <h3>Original SSLeay License</h3>
+ <p>Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.</p>
+ <p>This package is an SSL implementation written by Eric Young (<a href=
+ "mailto:eay@cryptsoft.com">eay@cryptsoft.com</a>).<br />
+ The implementation was written so as to conform with Netscapes SSL.</p>
+ <p>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).</p>
+ <p>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.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ol>
+ <li>Redistribution of source code must retain the copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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. </li>
+ <li>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 :-). </li>
+ <li>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)" </li>
+ </ol>
+ <p>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.</p>
+ <p>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.]</p>
+ </div>
+ <div class="PDFIUM">
+ <h2>PDFium</h2>
+ <p>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:</p>
+ <p>Copyright 2014 PDFium Authors. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ul>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ </div>
+ <div class="JFREEREPORT">
+ <h2>Pentaho Reporting Flow Engine</h2>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <div class="CAIRO">
+ <h2>Pixman</h2>
+ <p>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:</p>
+ <p>The following is the MIT license, agreed upon by most contributors.</p>
+ <p>Copyright holders of new code should use this license statement where possible. They may also add themselves to
+ the list below.</p>
+ <p>Copyright 1987, 1988, 1989, 1998  The Open Group<br />
+ Copyright 1987, 1988, 1989 Digital Equipment Corporation<br />
+ Copyright 1999, 2004, 2008 Keith Packard<br />
+ Copyright 2000 SuSE, Inc.<br />
+ Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.<br />
+ Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.<br />
+ Copyright 2004 Nicholas Miell<br />
+ Copyright 2005 Lars Knoll &amp; Zack Rusin, Trolltech<br />
+ Copyright 2005 Trolltech AS<br />
+ Copyright 2007 Luca Barbato<br />
+ Copyright 2008 Aaron Plattner, NVIDIA Corporation<br />
+ Copyright 2008 Rodrigo Kumpera<br />
+ Copyright 2008 André Tupinambá<br />
+ Copyright 2008 Mozilla Corporation<br />
+ Copyright 2008 Frederic Plourde<br />
+ Copyright 2009, Oracle and/or its affiliates. All rights reserved.<br />
+ Copyright 2009, 2010 Nokia Corporation</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="POPPLER">
+ <h2>poppler</h2>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p>The cidToUnicode, nameToUnicode and unicodeMap data files
+ installed by the poppler-data package are Copyright Glyph &amp; Cog, LLC
+ and are licensed under the GNU General Public License (GPL), <a href="#a__GPL_version_2">version 2</a>
+ or <a href="#a__GPL_version_3">version 3</a>.</p>
+ <p>The cMap data files installed by the poppler-data package are governed by the terms of the license below:</p>
+ <p>Copyright 1990-2019 Adobe.</p>
+ <p>All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or
+ without modification, are permitted provided that the
+ following conditions are met:</p>
+ <p>Redistributions of source code must retain the above
+ copyright notice, this list of conditions and the following
+ disclaimer.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="POSTGRES">
+ <h2>PostgreSQL</h2>
+ <p>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:</p>
+ <p>PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or
+ MIT licenses.</p>
+ <p>PostgreSQL Database Management System<br />
+ (formerly known as Postgres, then as Postgres95)</p>
+ <p>Portions Copyright (c) 1996-2012, The PostgreSQL Global Development Group</p>
+ <p>Portions Copyright (c) 1994, The Regents of the University of California</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class ="LIBFFI">
+ <h2>libffi</h2>
+ <p>The following software may be included in this product: libffi</p>
+ <p>The libffi project code is covered by the MIT license:</p>
+ <p>libffi - Copyright (c) 1996-2019 Anthony Green, Red Hat, Inc and others.</p>
+ <p>See source files for details.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="PYTHON">
+ <h2>Python</h2>
+ <p>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:</p>
+ <h3>PSF LICENSE AGREEMENT FOR PYTHON 2.3</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>6. This License Agreement will automatically terminate upon a material breach of its terms and
+ conditions.</p>
+ <p>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.</p>
+ <p>8. By copying, installing or otherwise using Python 2.3, Licensee agrees to be bound by the terms and
+ conditions of this License Agreement.</p>
+ <p>BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0</p>
+ <p>BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1</p>
+ <p>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").</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>5. This License Agreement will automatically terminate upon a material breach of its terms and
+ conditions.</p>
+ <p>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
+ <a href="http://www.pythonlabs.com/logos.html">http://www.pythonlabs.com/logos.html</a> may be used according
+ to the permissions granted on that web page.</p>
+ <p>7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and
+ conditions of this License Agreement.</p>
+ <h3>CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1</h3>
+ <p>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.</p>
+ <p>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: <a href=
+ "http://hdl.handle.net/1895.22/1013">http://hdl.handle.net/1895.22/1013</a>".</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>6. This License Agreement will automatically terminate upon a material breach of its terms and
+ conditions.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>        ACCEPT</p>
+ <h3>CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2</h3>
+ <p>Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands.  All rights
+ reserved.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <h2>Dragonbox</h2>
+ <p>The following software may be included in this product: Dragonbox.</p>
+ <p>Dragonbox code is covered by the following license:</p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ <blockquote>
+ <p>--- LLVM Exceptions to the Apache 2.0 License ----</p>
+
+ <p>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.</p>
+
+ <p>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.</p>
+ </blockquote>
+ <h2>dtoa</h2>
+ <p>The following software may be included in this product: dtoa.</p>
+ <p>dtoa code is covered by the MIT license:</p>
+ <blockquote>
+ <p> The author of this software is David M. Gay.</p>
+
+ <p> Copyright (c) 1991, 2000, 2001 by Lucent Technologies.</p>
+
+ <p>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.</p>
+
+ <p>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.</p>
+ </blockquote>
+
+ <h2>libfixmath</h2>
+ <p>The following software may be included in this product: libfixmath.</p>
+ <p>libfixmath code is covered by the MIT license:</p>
+ <blockquote>
+ <p>libfixmath is Copyright (c) 2011-2021 Flatmush &lt;Flatmush@gmail.com&gt;,
+ Petteri Aimonen &lt;Petteri.Aimonen@gmail.com&gt;, &amp; libfixmath AUTHORS</p>
+
+ <p>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:</p>
+
+ <p>The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.</p>
+
+ <p>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.</p>
+ </blockquote>
+
+ <h2>Random123: a Library of Counter-Based Random Number Generators</h2>
+ <p>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:</p>
+ <p>Copyright 2010-2011, D. E. Shaw Research.</p>
+ <p>All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without</p>
+ <p>modification, are permitted provided that the following conditions are</p>
+ <p>met:</p>
+ <p>* Redistributions of source code must retain the above copyright notice, this list of conditions, and the
+ following disclaimer.</p>
+ <p>* 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.</p>
+ <p>* 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.</p>
+ <p>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.</p>
+ <h2>Raptor RDF Parser Library</h2>
+ <p>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:</p>
+ <p>Copyright (C) 2000-2008 <a href="http://www.dajobe.org/">David Beckett</a><br />
+ Copyright (C) 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a>. All Rights Reserved.</p>
+ <p>All the licenses below are alternatives and if you select one license, that one alone applies.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ <h2>Rasqal RDF Query Library</h2>
+ <p>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:</p>
+ <p>Copyright (C) 2000-2008 <a href="http://www.dajobe.org/">David Beckett</a><br />
+ Copyright (C) 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a>. All Rights Reserved.</p>
+ <p>All the licenses below are alternatives and if you select one license, that one alone applies.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ <div class="REDLAND">
+ <h2>Redland RDF Application Framework</h2>
+ <p>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:</p>
+ <p>Copyright (C) 2000-2008 <a href="http://www.dajobe.org/">David Beckett</a><br />
+ Copyright (C) 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a>. All Rights Reserved.</p>
+ <p>All the licenses below are alternatives and if you select one license, that one alone applies.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ </div>
+ <div class="MACOSX">
+ <h2>Remote Control Wrapper</h2>
+ <p>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:</p>
+ <p>Created by Martin Kahr under a MIT-style license. Copyright (c) 2006/2007 martinkahr.com. All rights
+ reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ </div>
+ <div class="RHINO">
+ <h2>Rhino</h2>
+ <p>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:</p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ </div>
+ <div class="SANE">
+ <h2>SANE</h2>
+ <p>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:</p>
+ <p>sane - Scanner Access Now Easy. Copyright (C) 1997-1999 David Mosberger-Tang and Andreas Beck</p>
+ <p>This file is part of the SANE package.</p>
+ <p>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).</p>
+ <p>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.</p>
+ <p>This file declares SANE application interface. See the SANE standard for a detailed explanation of the
+ interface.</p>
+ </div>
+ <h2>SVGPathSeg polyfill</h2>
+ <p>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:</p>
+ <p>Copyright 2015 The Chromium Authors. All rights reserved.</p>
+ <p>The Chromium Authors can be found at <a href=
+ "https://src.chromium.org/viewvc/chrome/trunk/src/AUTHORS">https://src.chromium.org/viewvc/chrome/trunk/src/AUTHORS</a></p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+ following conditions are met:</p>
+ <ul>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <div class="WNT">
+ <h2>TWAIN</h2>
+ <p>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:</p>
+ <h3>The TWAIN License</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <h2>Unicode CLDR data repository</h2>
+ <p>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:</p>
+ <p>Copyright 1991-2005 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in <a href=
+ "http://www.unicode.org/copyright.html">http://www.unicode.org/copyright.html</a>.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <h2>UnixODBC</h2>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <div class="JFREEREPORT">
+ <h2>W3C Simple API for CSS (SAC)</h2>
+ <p>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:</p>
+ <h3>W3C IPR SOFTWARE NOTICE</h3>
+ <p>Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de
+ Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</p>
+ <p><span class="T1">Note:</span> The original version of the W3C Software Copyright Notice and License could be
+ found at <a href=
+ "http://www.w3.org/Consortium/Legal/copyright-software-19980720">http://www.w3.org/Consortium/Legal/copyright-software-19980720</a></p>
+ <p>Copyright © 1994-2002 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href=
+ "http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut
+ National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>).
+ All Rights Reserved. <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a></p>
+ <p>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:</p>
+ <p>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:</p>
+ <ol>
+ <li>The full text of this NOTICE in a location viewable to users of the redistributed or derivative
+ work. </li>
+ <li>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 <a href="http://www.w3.org/">World Wide Web
+ Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href=
+ "http://www.inria.fr/">Institut National de</a> <a href="http://www.inria.fr/">Recherche en Informatique et en
+ Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. <a href=
+ "http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a>" </li>
+ <li>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.)</li>
+ </ol>
+ <p>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.</p>
+ <p>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
+ ANY USE OF THE SOFTWARE OR DOCUMENTATION.</p>
+ <p>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.</p>
+ <p>X11 XRender Extension</p>
+ <p>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:</p>
+ <p>Copyright © 2000 SuSE, Inc.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ <div class="XMLSEC">
+ <h2>XML Security Library (xmlsec)</h2>
+ <p>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:</p>
+ <h3>xmlsec, xmlsec-openssl, xmlsec-gnutls libraries</h3>
+ <p>Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>xmlsec-nss library</h3>
+ <p>Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved.</p>
+ <p>Copyright (c) 2003 America Online, Inc. All rights reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>Portions of the Software were created using source code and/or APIs governed by the Mozilla Public License
+ (MPL). The MPL is available at <a href=
+ "http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>. 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <div class="WNT">
+ <h3>xmlsec-mscrypto library</h3>
+ <p>Copyright (C) 2002-2016 Aleksey Sanin &lt;aleksey@aleksey.com&gt;. All Rights Reserved.</p>
+ <p>Copyright (C) 2003 Cordys R&amp;D BV, All rights reserved.</p>
+ <p>Copyright (C) 2007 Roumen Petrov.</p>
+ <p>Copyright (c) 2005-2006 Cryptocom LTD (http://www.cryptocom.ru).</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>xmlsec-mscng library</h3>
+ <p>Copyright (C) 2018 Aleksey Sanin. All Rights Reserved.</p>
+ <p>Copyright (C) 2018 Miklos Vajna. All Rights Reserved.</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ </div>
+ </div>
+ <div class="XSLTML">
+ <h2>XSLT MathML Library</h2>
+ <p>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:</p>
+ <h3>Copyright</h3>
+ <p>Copyright (C) 2001-2003 Vasil Yaroshevich</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of
+ the Software.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>Warranty</h3>
+ <p>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.</p>
+ </div>
+ <div class="ZLIB">
+ <h2>zlib</h2>
+ <p>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:</p>
+ <p>(C) 1995-2002 Jean-loup Gailly and Mark Adler</p>
+ <p>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.</p>
+ <p>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:</p>
+ <p>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.</p>
+ <p>2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the
+ original software.</p>
+ <p>3. This notice may not be removed or altered from any source distribution.</p>
+ </div>
+ <div class="SKIA">
+ <h2>Skia</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2011 Google Inc. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ul>
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ </div>
+ <hr />
+ <h1><a id="a__Extensions" name="a__Extensions">Extensions</a></h1>
+ <p>Only third party extensions are listed here whose source code is not in the LibreOffice tree.</p>
+ <div class="NUMBERTEXT"><!-- FIXME: license_*.xsl written in XSLT 1.0 matches this when LIBNUMBERTEXT is defined -->
+ <h2>Numbertext</h2>
+ <p>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:</p>
+ <p>License: LGPL/BSD dual-license, 2009-2010 (C) László Németh (nemeth at openoffice dot org)</p>
+ <p>Numbertext language data (Soros programs):</p>
+ <p>LGPL/BSD dual-license, 2009-2010 (C) László Németh et al. (see AUTHORS)</p>
+ <p>Serbian modules:</p>
+ <p>CC/LGPL/BSD tri-license, 2009 (C) Goran Rakić (grakic at devbase dot net)</p>
+ <p>Note: for full distribution with specifications, IDE and JavaScript implementation, see <a href=
+ "http://NUMBERTEXT.org/">http://NUMBERTEXT.org</a></p>
+ <p>Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
+ either express or implied.</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ </div>
+ <div class="NLPSOLVER">
+ <h2>Solver for Nonlinear Programming</h2>
+ <p>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:</p>
+ <p>Copyright 2009 by Sun Microsystems, Inc.</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ </div>
+ <div class="MORE_FONTS">
+ <hr />
+ <h1><a id="a__Fonts" name="a__Fonts">Fonts</a></h1>
+ <h2>Alef</h2>
+ <p>Copyright (c) 2012, HaGilda &amp; Mushon Zer-Aviv (&lt;http://hagilda.com|info@hagilda.com&gt;), with
+ Reserved Font Name Alef Regular.</p>
+ <p>Copyright (c) 2012, HaGilda &amp; Mushon Zer-Aviv (&lt;http://hagilda.com|info@hagilda.com&gt;), with
+ Reserved Font Name Alef Bold.</p>
+ <p>This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.</p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Amiri</h2>
+ <p>Copyright (c) 2010-2017, Khaled Hosny (&lt;khaledhosny@eglug.org&gt;)</p>
+ <p>This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.</p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Caladea</h2>
+ <p>Copyright (c) 2012 Huerta Tipográfica</p>
+ <p>This Font Software is licensed under the Apache License, Version 2.0 as shown below.</p>
+ <p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
+ <h2>Carlito</h2>
+ <p>Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Carlito".</p>
+ <p>This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.</p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <div class="no_mpl_subset">
+ <h2>Culmus</h2>
+ <p>This package is distributed under the terms of GNU General Public License version 2.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p>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 &amp; Development;</p>
+ <p>Hebrew Cantillation marks GSUB and GPOS OpenType positioning rules copyright (c) 2010 by Yoram Gnat
+ (yoram.gnat@gmail.com)</p>
+ <p>Inspired by the Hebrew OpenType Layout logic copyright (c) 2003 &amp; 2007, Ralph Hancock &amp; John
+ Hudson published under the MIT License.</p>
+ <p>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.</p>
+ <p> </p>
+ <p>Keter YG font family is Copyright 2009 by Yoram Gnat (yoram.gnat@gmail.com) Hebrew OpenType Layout logic
+ copyright (c) 2003 &amp; 2007, Ralph Hancock &amp; John Hudson. This layout logic for Biblical Hebrew is
+ open source software under the MIT License; for details contact copyright holders at
+ &lt;license@tiro.com&gt;.</p>
+ <p>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.</p>
+ <p> </p>
+ <p>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.</p>
+ <p>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.</p>
+ <p> </p>
+ <p>Simple font family is copyright 2007-2010 by Yoram Gnat (yoram-gnat@homeil.com). Latin glyphs, digits
+ and punctuation copyright 1999 by (URW)++ Design &amp; Development. All rights reserved.</p>
+ <p>Hebrew vowel marks positioning algorithms Copyright 2010 by Yoram Gnat 2010. (yoram.gnat@gmail.com.</p>
+ <p>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.</p>
+ <p> </p>
+ <p>Stam Ashkenaz font is copyright 2007-2010 by Yoram Gnat (yoram.gnat@gmail.com).</p>
+ <p>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.</p>
+ <p> </p>
+ <p>Stam Sefarad font is copyright 2008-2010 by Yoram Gnat (yoram.gnat@gmail.com).</p>
+ <p>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.</p>
+ <p> </p>
+ <p>Miriam font family is copyright 2004-2010 by Maxim Iorsh (iorsh@users.sourceforge.net). All rights
+ reserved.</p>
+ <p> </p>
+ <p>Yehuda font family is copyright 2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights
+ reserved.</p>
+ <p> </p>
+ <p>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 &amp; Development. All rights reserved.</p>
+ <p> </p>
+ <p>Ellinia font family is copyright 2003,2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights
+ reserved.</p>
+ <p> </p>
+ <p>Caladings collection is copyright 2003,2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights
+ reserved.</p>
+ <p> </p>
+ <p>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 &amp; Development. All rights reserved.</p>
+ <p> </p>
+ <p>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:</p>
+ <blockquote>
+ <p>(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.</p>
+ <p>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.</p>
+ <p>BITSTREAM CHARTER is a registered trademark of Bitstream Inc.</p>
+ </blockquote>
+ <p> </p>
+ <p>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 &amp;
+ Development. All rights reserved.</p>
+ <p> </p>
+ <p>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 &amp; Development. All
+ rights reserved.</p>
+ <p> </p>
+ <p>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 &amp; Development. All
+ rights reserved.</p>
+ </div>
+ <h2>Deja Vu</h2>
+ <p>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:</p>
+ <p>Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts
+ are (c) Tavmjong Bah (see below)</p>
+ <h3>Bitstream Vera Fonts Copyright</h3>
+ <p>Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream,
+ Inc.</p>
+ <p>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:</p>
+ <p>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.</p>
+ <p>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".</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>Arev Fonts Copyright</h3>
+ <p>Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.</p>
+ <p>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:</p>
+ <p>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.</p>
+ <p>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".</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h2>EmojiOne Color</h2>
+ <h3>Licenses</h3>
+ <ul>
+ <li>Copyright 2016 Brad Erickson CC-BY-4.0/MIT</li>
+ <li>Copyright 2015 Ranks.com Inc. CC-BY-4.0</li>
+ <li>Copyright 2013 Joe Loughry and Terence Eden MIT</li>
+ </ul>
+ <h4>Artwork</h4>
+ <ul>
+ <li>Applies to SVG files and TTF font files</li>
+ <li>License: Creative Commons Attribution 4.0 International</li>
+ <li>Human Readable License: <a href=
+ "http://creativecommons.org/licenses/by/4.0/">http://creativecommons.org/licenses/by/4.0/</a></li>
+ <li>Complete Legal Terms: <a href=
+ "http://creativecommons.org/licenses/by/4.0/legalcode">http://creativecommons.org/licenses/by/4.0/legalcode</a></li>
+ </ul>
+ <h4>Source Code</h4>
+ <ul>
+ <li>Applies to everything else</li>
+ <li>License: MIT</li>
+ <li>Complete Legal Terms: http://opensource.org/licenses/MIT</li>
+ </ul>
+ <h4>EmojiOne License</h4>
+ <p>The SVG files of the <a href="http://emojione.com/">EmojiOne</a> project have been modified to create the
+ fallback emoji glyphs and used as-is for the SVGinOT color glyphs. Files are stored in
+ <code>assets/emojione-svg</code>.</p>
+ <ul>
+ <li>Source: https://github.com/Ranks/emojione</li>
+ <li>Art License: Creative Commons Attribution 4.0 International</li>
+ </ul>
+ <p>Please review the specific attribution requirements for commercial use of EmojiOne graphics:
+ <a href="http://emojione.com/licensing/">http://emojione.com/licensing/</a></p>
+ <h4>Power Symbol License</h4>
+ <p>The SVG files from the <a href="http://unicodepowersymbol.com/">Unicode Power Symbol</a> project have been
+ modified to create B&amp;W Power Symbol glyphs. Files are stored in <code>assets/svg-bw</code>.</p>
+ <ul>
+ <li>Source: <a href="https://github.com/jloughry/Unicode">https://github.com/jloughry/Unicode</a></li>
+ <li>Art License: MIT</li>
+ </ul>
+ <h2>Gentium</h2>
+ <p>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:</p>
+ <p>Copyright (c) 2003-2008 SIL International (<a href="http://www.sil.org/">http://www.sil.org/</a>), with
+ Reserved Font Names "Gentium" and "SIL".</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <div class="no_mpl_subset">
+ <h2>KACST</h2>
+ <p>KACST fonts are free fonts donated by King Abdulaziz City For Science And Technology (KACST) under GPL.</p>
+ <p>KACST holds the copyright of the included Arabic font which is donated under GPL by KACST.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ </div>
+ <h2>Liberation</h2>
+ <p>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:</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h3>LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY<br />
+ LIBERATION FONT SOFTWARE</h3>
+ <p>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.</p>
+ <p>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:</p>
+ <p> (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.</p>
+ <p> (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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc.</p>
+ <h2>Linux Libertine G and Linux Biolinum G</h2>
+ <p>This Font Software is Copyright (c) 2003-2006, Philipp H. Poll (<a href=
+ "http://linuxlibertine.sf.net/">http://linuxlibertine.sf.net/</a>).<br />
+ All Rights Reserved.<br />
+ <br />
+ "Linux Libertine" is a Reserved Font Name for this Font Software.</p>
+ <p>Graphite extension of the original Linux Libertine font was made by Laszlo Nemeth under the same
+ license.<br />
+ <br />
+ 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".</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL version 2</a></p>
+ <p>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.</p>
+ <p>Additionally our fonts are licensed under the Open Fonts License (see below).</p>
+ <p>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:
+ <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <h3>SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p>DEFINITIONS "Font Software" refers to any and all of the following: <span> - font files</span> <span> -
+ data files</span> <span> - source code</span> <span> - build scripts</span> <span> -
+ documentation</span></p>
+ <p>"Reserved Font Name" refers to the Font Software name as seen by users and any other names as specified
+ after the copyright statement.</p>
+ <p>"Standard Version" refers to the collection of Font Software components as distributed by the Copyright
+ Holder.</p>
+ <p>"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.</p>
+ <p>"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to
+ the Font Software.</p>
+ <p>PERMISSION &amp; 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:</p>
+ <p>1) Neither the Font Software nor any of its individual components, in Standard or Modified Versions, may be
+ sold by itself.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>TERMINATION This license becomes null and void if any of the above conditions are not met.</p>
+ <p>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.</p>
+ <h2>Libre Hebrew</h2>
+ <p>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:</p>
+ <p>Copyright 2015 The Frank Ruhl Hofshi Project Authors.</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Noto</h2>
+ <p>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:</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Reem Kufi</h2>
+ <p>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:</p>
+ <p>Portions copyright (c) 2015, Khaled Hosny (khaledhosny@eglug.org). Copyright (c) 2010 by Typemade, with
+ Reserved Font Name 'Josefin. All Rights Reserved.</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Scheherazade</h2>
+ <p>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:</p>
+ <p>Copyright (c) 1994-2015, SIL International (http://www.sil.org/).</p>
+ <p>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:
+ <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Source Code Pro</h2>
+ <p>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:</p>
+ <p>Copyright 2010, 2012 Adobe Systems Incorporated (<a href="http://www.adobe.com/">http://www.adobe.com/</a>),
+ with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in
+ the United States and/or other countries.</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Source Sans Pro</h2>
+ <p>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:</p>
+ <p>Copyright 2010, 2012 Adobe Systems Incorporated (<a href="http://www.adobe.com/">http://www.adobe.com/</a>),
+ with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in
+ the United States and/or other countries.</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ <h2>Source Serif Pro</h2>
+ <p>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:</p>
+ <p>Copyright 2014 Adobe Systems Incorporated (<a href="http://www.adobe.com/">http://www.adobe.com/</a>),
+ with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in
+ the United States and/or other countries.</p>
+ <p>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: <a href="http://scripts.sil.org/OFL">http://scripts.sil.org/OFL</a></p>
+ <p><a href="#a__SIL_Open_Font_License__version_1_1">Jump to SIL Open Font License, Version 1.1</a></p>
+ </div>
+ <div class="DICTIONARIES">
+ <hr />
+ <h1><a id="a__Dictionaries" name="a__Dictionaries">Dictionaries</a></h1>
+ <h2>Afrikaans</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <h4>Afrikaans Wordlist</h4>
+ <p>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 <a href="#a__LGPL_version_3">LGPL</a>. The majority
+ of the words are derived from the Nieuwoudt and Viljoen list.</p>
+ <p>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</p>
+ <p>Copyright (C) 1993, 2003 Bernard A Nieuwoudt relicensed under the <a href="#a__LGPL_version_3">LGPL</a>.</p>
+ <p>The Viljoen list is derived from the original Nieuwoudt list and is used with permission of the author and
+ relicensed under the <a href="#a__LGPL_version_3">LGPL</a>.</p>
+ <p>Copyright (C) 1998 Danie Viljoen</p>
+ <h4>MySpell Affix File</h4>
+ <p>Copyright (C) 2003 Dwayne Bailey under the <a href="#a__LGPL_version_3">LGPL</a> based on the original ispell list by
+ Renier de Vos which was released under the BSD license.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2005 Friedel Wolff</p>
+ <p>This library is free software; you can redistribute it and/or modify it under the terms of the <a href=
+ "#a__LGPL_version_2_1">GNU Lesser General Public License</a> as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your option) any later version.</p>
+ <h2>Albanian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h2>Arabic</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Author of Hunspell-ar, the arabic dictionary for Hunspell (spellchecker): 2006-2008, Mohamed Kebdani,
+ med.kebdani (at) gmail.com</p>
+ <p><a href="#a__GPL_version_2">GPL 2.0</a>/<a href="#a__LGPL_version_2_1">LGPL 2.1</a>/<a href="#a__MPL_version_1_1">MPL 1.1</a>
+ tri-license</p>
+ <p>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").</p>
+ <p>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.</p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>2006-2009, Taha Zerrouki, taha_zerrouki at gawab.com</p>
+ <p><a href="#a__GPL_version_2">GPL 2.0</a>/<a href="#a__LGPL_version_2_1">LGPL 2.1</a>/<a href="#a__MPL_version_1_1">MPL 1.1</a>
+ tri-license</p>
+ <p>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").</p>
+ <p>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.</p>
+ <h2>Aragonese</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (c) 2011 Santiago Paricio (sparicio&lt;at&gt;gmail&lt;dot&gt;com)<br />
+ Copyright (c) 2011 Juan Pablo Martínez (jpmart&lt;at&gt;unizar&lt;dot&gt;es)</p>
+ <p><a href="#a__MPL_version_1_1">MPL1.1</a>/<a href="#a__GPL_version_3">GPLv3+</a>/<a href="#a__LGPL_version_3">LGPLv3+</a>
+ Tri-licence</p>
+ <p>Version 0.2 of the wordlist (an_ES.dic) has been built using free corpuses have been used as Wikipedia in
+ Aragonese (<a href="http://an.wikipedia.org/">http://an.wikipedia.org</a>) and wordlists obtained from Apertium
+ dictionaries (<a href=
+ "http://apertium.svn.sourceforge.net/viewvc/apertium/tags/apertium-es-an/release-2.0/">http://apertium.svn.sourceforge.net/viewvc/apertium/tags/apertium-es-an/release-2.0/</a>).</p>
+ <h2>Belarusian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Creative Commons <a href="#a__CC-BY-SA_3_0">CC-BY-SA</a></p>
+ <p>Author: Mikalai Udodau &lt;mikalai.udodau@gmail.com&gt;<br />
+ Origin: Словазбор аўтарскі; арфаграфія паводле ТСБМ-2005</p>
+ <h3>Hyphenation Dictionary</h3>
+ <p>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:</p>
+ <p>Creative Commons <a href="#a__CC-BY-SA_4_0">CC-BY-SA</a> or <a href="#a__LGPL_version_3">LGPLv3</a></p>
+ <p>Created by: Alex Buloichik &lt;alex73mail@gmail.com&gt;<br />
+ Hyphenation rules according to 'Pravapis 2008'</p>
+ <h2>Bengali</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h2>Bosnian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">GPL 2.0</a>/<a href="#a__LGPL_version_2_1">LGPL 2.1</a>/<a href="#a__MPL_version_1_1">MPL 1.1</a>
+ tri-license</p>
+ <h2>Breton</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>LICENSE: "An Drouizig" spelling dictionary: <a href="#a__LGPL_version_3">LGPL</a></p>
+ <h2>Bulgarian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2001 Anton Zinoviev and Borislav Mitev<br />
+ Maintained by Radostin Radnev</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2001 Radostin Radnev</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h2>Catalan</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2002-2008 Joan Moratinos &lt;<a href=
+ "mailto:jmo@softcatala.org">jmo@softcatala.org</a>&gt;</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2009 Joan Montané &lt;joan@montane.cat&gt; --- Softcatalà</p>
+ <p>License: GPL/LGPL</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL version 3</a></p>
+ <h2>Czech</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GNU GPL version 2.0</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Origin: Generated from an English &lt;-&gt; Czech translation dictionary, <a href=
+ "https://www.svobodneslovniky.cz/">https://www.svobodneslovniky.cz/</a></p>
+ <p>License: GNU Free Documentation License 1.1 or later, details in <a href=
+ "https://gerrit.libreoffice.org/plugins/gitiles/dictionaries/+/master/cs_CZ/README_en.txt">Appendix A</a></p>
+ <p>The thesaurus is generated automatically via a script by Jan Holesovsky &lt;kendy@collabora.com&gt;, based
+ on idea of Zdenek Zabokrtsky - big thanks!</p>
+ <h2>Central Kurdish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>Author: Sina Ahmadi &lt;ahmadi.sina@outlook.com&gt;<br />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:</p>
+ <p>Creative Commons <a href="#a__CC-BY-SA_4_0">CC-BY-SA</a></p>
+ <p>The source CKB dictionary is available from <a href="https://github.com/sinaahmadi/KurdishHunspell">Kurdish Hunspell</a> project.</p>
+ <h2>Croatian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>These patterns were manually converted from TeX hyphenation patterns using the guide at <a href=
+ "http://wiki.services.openoffice.org/wiki/Documentation/SL/Using_TeX_hyphenation_patterns_in_OpenOffice.org">http://wiki.services.openoffice.org/wiki/Documentation/SL/Using_TeX_hyphenation_patterns_in_OpenOffice.org</a></p>
+ <p>Original version: <a href=
+ "http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt?revision=416">http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt?revision=416</a></p>
+ <p>License: OpenOffice.org adaption of this file is licensed under the GNU LGPL license.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p>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.</p>
+ <p>Source: hrhyph.tex (1996-04-10) Author: Marinović Igor &lt;migor at student.math.hr&gt;</p>
+ <p>The above mentioned file should become obsolete, and the author of the original file should preferably
+ modify this file instead.</p>
+ <p>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.</p>
+ <p>Modifications were done by Jonathan Kew, Mojca Miklavec &amp; Arthur Reutenauer with help &amp; 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 &amp; integrated patterns into TeX Live</p>
+ <p>However, the "copyright/copyleft" owner of patterns remains the original author.</p>
+ <p>The copyright statement of this file is thus:</p>
+ <p>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 &amp; credits that we added here - you are the Queen / the
+ King, we are only the servants.</p>
+ <p>If you want to change this file, rather than uploading directly to CTAN, we would be grateful if you could
+ send it to us (<a href="http://tug.org/tex-hyphen">http://tug.org/tex-hyphen</a>) or ask for credentials for
+ SVN repository and commit it yourself; we will then upload the whole "package" to CTAN.</p>
+ <p>Before a new "pattern-revolution" starts, please try to follow some guidelines if possible:</p>
+ <p>- \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</p>
+ <p>We know that TeX is extremely powerful, but give a stupid parser at least a chance to read your
+ patterns.</p>
+ <p>For more information see <a href="http://tug.org/tex-hyphen">http://tug.org/tex-hyphen</a></p>
+ <h2>Danish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Stavekontrolden - Danish dictionary files for Hunspell</p>
+ <p>Version 1.6 - 2010-09-19</p>
+ <p>da_DK.dic, da_DK.aff: © 2010 Foreningen for frit tilgængelige sprogværktøjer</p>
+ <p><a href="http://www.stavekontrolden.dk/">http://www.stavekontrolden.dk</a></p>
+ <p>These files are published under the following open source licenses:</p>
+ <ul>
+ <li><a href="#a__GPL_version_2">GNU GPL version 2.0</a></li>
+ <li><a href="#a__LGPL_version_2_1">GNU LGPL version 2.1</a></li>
+ <li><a href="#a__MPL_version_1_1">Mozilla MPL version 1.1</a></li>
+ </ul>
+ <p>This dictionary is based on data from Det Danske Sprog- og Litteraturselskab</p>
+ <p>(The Danish Society for Language and Literature), <a href="http://www.dsl.dk/">http://www.dsl.dk</a>.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <ul>
+ <li><a href="#a__GPL_version_2">GNU GPL version 2.0</a></li>
+ <li><a href="#a__LGPL_version_2_1">GNU LGPL version 2.1</a></li>
+ <li><a href="#a__MPL_version_1_1">Mozilla MPL version 1.1</a></li>
+ </ul>
+ <p>Stavekontrolden - Danish thesaurus files for OpenOffice.org 3.0.</p>
+ <p>Den Danske Ordbog - Synonymer</p>
+ <p>DanNet - leksikalsk-semantisk ordnet fra Det Danske Sprog- og Litteraturselskab og Center for
+ Sprogteknologi, Københavns Universitet</p>
+ <p>© 2007 Foreningen for frit tilgængelige sprogværktøjer</p>
+ <h2>Dutch</h2>
+ <h3>Spelling dictionary and hyphenation patterns</h3>
+ <p>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:</p>
+ <p>1. Name: Dutch word list for spell checking - OpenTaal</p>
+ <p>2. Version of words list: 2.10G; version of spell checking: 2.10G.</p>
+ <p>3. Requirements: Hunspell 1.2.8 and higher</p>
+ <p>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:
+ <a href="http://www.taalunieversum.org/keurmerk/">http://www.taalunieversum.org/keurmerk/</a></p>
+ <p>5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., © 1996 Nederlandstalige Tex
+ Gebruikersgroep</p>
+ <p>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.</p>
+ <p>   A. BSD (revised version):</p>
+ <p>   - Full license text: <a href=
+ "http://creativecommons.org/licenses/BSD/legalcode">http://creativecommons.org/licenses/BSD/legalcode</a></p>
+ <p>   - Summary: <a href=
+ "http://creativecommons.org/licenses/BSD/deed.en">http://creativecommons.org/licenses/BSD/deed.en</a></p>
+ <p>   B. Creative Commons, Attribution 3.0 (unported)</p>
+ <p>   - Full license text: <a href=
+ "http://creativecommons.org/licenses/by/3.0/legalcode">http://creativecommons.org/licenses/by/3.0/legalcode</a></p>
+ <p>   - Summary: <a href=
+ "http://creativecommons.org/licenses/by/3.0/deed.en">http://creativecommons.org/licenses/by/3.0/deed.en</a></p>
+ <p>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: <a href="http://belastingdienst.nl/anbi/">http://belastingdienst.nl/anbi/</a></p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>10.Contact: OpenTaal Foundation, <a href="http://www.opentaal.org/">http://www.opentaal.org</a>,
+ bestuur@opentaal.org</p>
+ <h2>German</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Author: Franz Michael Baumann &lt;frami.baumann@web.de&gt;</p>
+ <p>License: <a href="#a__GPL_version_2">GNU GPL Version 2</a> or <a href="#a__GPL_version_3">GPL Version
+ 3</a> or <a href="#a__OASIS_0_1">OASIS 0.1</a></p>
+ <p>The "frami"-dictionary contains the complete word list of Björn Jacke's "igerman98"</p>
+ <p>(Version: 2011-03-21) and numerous supplements by Franz Michael Baumann according to the reform of
+ 2006-08-01.</p>
+ <h4><a id="a__OASIS_0_1" name="a__OASIS_0_1">OASIS distribution license agreement 0.1 from 2005-11-10</a></h4>
+ <p>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.</p>
+ <p>This requires that all licenses and copyright files are also distributed together with the package the
+ dictionary is shipped with.</p>
+ <p>Any modifications of the dictionary files are not allowed for this agreement, modifications require the use
+ of the GNU GENERAL PUBLIC LICENSE.</p>
+ <p>If you have questions or don't get along with this, send me your comments/questions/ideas to Bjoern Jacke
+ &lt;bjoern@j3e.de&gt;</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <p><a href="#a__GPL_version_2">Jump to GPL version 2</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Authors: Marco Huggenberger &lt;marco@by-night.ch&gt; / Daniel Naber &lt;naber at danielnaber de&gt;</p>
+ <p>Version: 2011-05-05 (author and license information in source file added)</p>
+ <p>License: GNU LGPL</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen</p>
+ <p>Version: 2011-05-04 AT</p>
+ <p>License: GNU LGPL</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Greek</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">GPL 2.0</a>/<a href="#a__LGPL_version_2_1">LGPL 2.1</a>/<a href="#a__MPL_version_1_1">MPL 1.1</a>
+ tri-license</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>English (Australia)</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2006  Cameron Roy</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL version 2</a></p>
+ <h2><a id="a__See_English_Canada" name="a__See_English_Canada">English (Canada)</a></h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Wordlist en_CA spelling and morphological dictionary for OpenOffice.org</p>
+ <p>Version 2008-12-18</p>
+ <p> </p>
+ <p>Based on Wordlist Hunspell dictionaries version 2008-12-05</p>
+ <p>and Wordlist POS and AGID data created by Kevin Atkinson</p>
+ <p>and released on <a href="http://wordlist.sourceforge.net/">http://wordlist.sourceforge.net</a>.</p>
+ <p> </p>
+ <p>Other fixes:</p>
+ <p> </p>
+ <p>OOo Issue 48060 - add numbers with affixes by COMPOUNDRULE (1st, 111th, 1990s etc.)</p>
+ <p>New REP items (better suggestions for accented words and a few mistakes)</p>
+ <p>OOo Issue 63541 - remove *dessicated, *dessication</p>
+ <p> </p>
+ <p>László Németh &lt;nemeth at OO.o&gt;</p>
+ <p> </p>
+ <p>Original license:</p>
+ <p> </p>
+ <p>2008-12-05 Release</p>
+ <p> </p>
+ <p>README file for en_US and en_CA Hunspell dictionaries</p>
+ <p> </p>
+ <p>These dictionaries are created using the speller/make-hunspell-dict</p>
+ <p>dictionary in SCOWL, SVN revision 74.</p>
+ <p> </p>
+ <p>The NOSUGGEST flag was added to certain taboo words.  While I made an</p>
+ <p>honest attempt to flag the strongest taboo words with the NOSUGGEST</p>
+ <p>flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.</p>
+ <p>The list was originally derived from Németh László, however I removed</p>
+ <p>some words which, while being considered taboo by some dictionaries,</p>
+ <p>are not really considered swear words in today's society.</p>
+ <p> </p>
+ <p>You can find SCOWL and friend at <a href=
+ "http://wordlist.sourceforge.net/">http://wordlist.sourceforge.net/</a>.</p>
+ <p>Bug reports should go to the Issue Tracker found on the previously</p>
+ <p>mentioned web site.  General discussion should go to the</p>
+ <p>wordlist-devel at sourceforge net mailing list.</p>
+ <p> </p>
+ <p>COPYRIGHT, SOURCES, and CREDITS:</p>
+ <p> </p>
+ <p>The en_US and en_CA dictionaries come directly from SCOWL (up to level</p>
+ <p>60) and is thus under the same copyright of SCOWL.  The affix file is</p>
+ <p>a heavily modified version of the original english.aff file which was</p>
+ <p>released as part of Geoff Kuenning's Ispell and as such is covered by</p>
+ <p>his BSD license.  Part of SCOWL is also based on Ispell thus the</p>
+ <p>Ispell copyright is included with the SCOWL copyright.</p>
+ <p> </p>
+ <p>The collective work is Copyright 2000-2007 by Kevin Atkinson as well</p>
+ <p>as any of the copyrights mentioned below:</p>
+ <p> </p>
+ <p>  Copyright 2000-2007 by Kevin Atkinson</p>
+ <p> </p>
+ <p>  Permission to use, copy, modify, distribute and sell these word</p>
+ <p>  lists, the associated scripts, the output created from the scripts,</p>
+ <p>  and its documentation for any purpose is hereby granted without fee,</p>
+ <p>  provided that the above copyright notice appears in all copies and</p>
+ <p>  that both that copyright notice and this permission notice appear in</p>
+ <p>  supporting documentation. Kevin Atkinson makes no representations</p>
+ <p>  about the suitability of this array for any purpose. It is provided</p>
+ <p>  "as is" without express or implied warranty.</p>
+ <p> </p>
+ <p>Alan Beale &lt;biljir@pobox.com&gt; also deserves special credit as he has,</p>
+ <p>in addition to providing the 12Dicts package and being a major</p>
+ <p>contributor to the ENABLE word list, given me an incredible amount of</p>
+ <p>feedback and created a number of special lists (those found in the</p>
+ <p>Supplement) in order to help improve the overall quality of SCOWL.</p>
+ <p> </p>
+ <p>The 10 level includes the 1000 most common English words (according to</p>
+ <p>the Moby (TM) Words II [MWords] package), a subset of the 1000 most</p>
+ <p>common words on the Internet (again, according to Moby Words II), and</p>
+ <p>frequently class 16 from Brian Kelk's "UK English Wordlist</p>
+ <p>with Frequency Classification".</p>
+ <p> </p>
+ <p>The MWords package was explicitly placed in the public domain:</p>
+ <p> </p>
+ <p>    The Moby lexicon project is complete and has</p>
+ <p>    been place into the public domain. Use, sell,</p>
+ <p>    rework, excerpt and use in any way on any platform.</p>
+ <p> </p>
+ <p>    Placing this material on internal or public servers is</p>
+ <p>    also encouraged. The compiler is not aware of any</p>
+ <p>    export restrictions so freely distribute world-wide.</p>
+ <p> </p>
+ <p>    You can verify the public domain status by contacting</p>
+ <p> </p>
+ <p>    Grady Ward</p>
+ <p>    3449 Martha Ct.</p>
+ <p>    Arcata, CA  95521-4884</p>
+ <p> </p>
+ <p>    grady@netcom.com</p>
+ <p>    grady@northcoast.com</p>
+ <p> </p>
+ <p>The "UK English Wordlist With Frequency Classification" is also in the</p>
+ <p>Public Domain:</p>
+ <p> </p>
+ <p>  Date: Sat, 08 Jul 2000 20:27:21 +0100</p>
+ <p>  From: Brian Kelk &lt;Brian.Kelk@cl.cam.ac.uk&gt;</p>
+ <p> </p>
+ <p>  &gt; I was wondering what the copyright status of your "UK English</p>
+ <p>  &gt; Wordlist With Frequency Classification" word list as it seems to</p>
+ <p>  &gt; be lacking any copyright notice.</p>
+ <p> </p>
+ <p>  There were many many sources in total, but any text marked</p>
+ <p>  "copyright" was avoided. Locally-written documentation was one</p>
+ <p>  source. An earlier version of the list resided in a filespace called</p>
+ <p>  PUBLIC on the University mainframe, because it was considered public</p>
+ <p>  domain.</p>
+ <p> </p>
+ <p>  Date: Tue, 11 Jul 2000 19:31:34 +0100</p>
+ <p> </p>
+ <p>  &gt; So are you saying your word list is also in the public domain?</p>
+ <p> </p>
+ <p>  That is the intention.</p>
+ <p> </p>
+ <p>The 20 level includes frequency classes 7-15 from Brian's word list.</p>
+ <p> </p>
+ <p>The 35 level includes frequency classes 2-6 and words appearing in at</p>
+ <p>least 11 of 12 dictionaries as indicated in the 12Dicts package.  All</p>
+ <p>words from the 12Dicts package have had likely inflections added via</p>
+ <p>my inflection database.</p>
+ <p> </p>
+ <p>The 12Dicts package and Supplement is in the Public Domain.</p>
+ <p> </p>
+ <p>The WordNet database, which was used in the creation of the</p>
+ <p>Inflections database, is under the following copyright:</p>
+ <p> </p>
+ <p>  This software and database is being provided to you, the LICENSEE,</p>
+ <p>  by Princeton University under the following license.  By obtaining,</p>
+ <p>  using and/or copying this software and database, you agree that you</p>
+ <p>  have read, understood, and will comply with these terms and</p>
+ <p>  conditions.:</p>
+ <p> </p>
+ <p>  Permission to use, copy, modify and distribute this software and</p>
+ <p>  database and its documentation for any purpose and without fee or</p>
+ <p>  royalty is hereby granted, provided that you agree to comply with</p>
+ <p>  the following copyright notice and statements, including the</p>
+ <p>  disclaimer, and that the same appear on ALL copies of the software,</p>
+ <p>  database and documentation, including modifications that you make</p>
+ <p>  for internal use or for distribution.</p>
+ <p> </p>
+ <p>  WordNet 1.6 Copyright 1997 by Princeton University.  All rights</p>
+ <p>  reserved.</p>
+ <p> </p>
+ <p>  THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON</p>
+ <p>  UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</p>
+ <p>  IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON</p>
+ <p>  UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-</p>
+ <p>  ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE</p>
+ <p>  LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY</p>
+ <p>  THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</p>
+ <p> </p>
+ <p>  The name of Princeton University or Princeton may not be used in</p>
+ <p>  advertising or publicity pertaining to distribution of the software</p>
+ <p>  and/or database.  Title to copyright in this software, database and</p>
+ <p>  any associated documentation shall at all times remain with</p>
+ <p>  Princeton University and LICENSEE agrees to preserve same.</p>
+ <p> </p>
+ <p>The 40 level includes words from Alan's 3esl list found in version 4.0</p>
+ <p>of his 12dicts package.  Like his other stuff the 3esl list is also in the</p>
+ <p>public domain.</p>
+ <p> </p>
+ <p>The 50 level includes Brian's frequency class 1, words appearing</p>
+ <p>in at least 5 of 12 of the dictionaries as indicated in the 12Dicts</p>
+ <p>package, and uppercase words in at least 4 of the previous 12</p>
+ <p>dictionaries.  A decent number of proper names is also included: The</p>
+ <p>top 1000 male, female, and Last names from the 1990 Census report; a</p>
+ <p>list of names sent to me by Alan Beale; and a few names that I added</p>
+ <p>myself.  Finally a small list of abbreviations not commonly found in</p>
+ <p>other word lists is included.</p>
+ <p> </p>
+ <p>The name files form the Census report is a government document which I</p>
+ <p>don't think can be copyrighted.</p>
+ <p> </p>
+ <p>The file special-jargon.50 uses common.lst and word.lst from the</p>
+ <p>Unofficial Jargon File Word Lists" which is derived from "The Jargon</p>
+ <p>.  All of which is in the Public Domain.  This file also contain</p>
+ <p>a few extra UNIX terms which are found in the file "unix-terms" in the</p>
+ <p>special/ directory.</p>
+ <p>The 55 level includes words from Alan's 2of4brif list found in version</p>
+ <p>4.0 of his 12dicts package.  Like his other stuff the 2of4brif is also</p>
+ <p>in the public domain.</p>
+ <p> </p>
+ <p>The 60 level includes Brian's frequency class 0 and all words</p>
+ <p>appearing in at least 2 of the 12 dictionaries as indicated by the</p>
+ <p>12Dicts package.  A large number of names are also included: The 4,946</p>
+ <p>female names and the 3,897 male names from the MWords package.</p>
+ <p> </p>
+ <p>The 70 level includes the 74,550 common dictionary words and the</p>
+ <p>21,986 names list from the MWords package The common dictionary words,</p>
+ <p>like those from the 12Dicts package, have had all likely inflections</p>
+ <p>added.  The 70 level also included the 5desk list from version 4.0 of</p>
+ <p>the 12Dics package which is the public domain</p>
+ <p> </p>
+ <p>The 80 level includes the ENABLE word list, all the lists in the</p>
+ <p>ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics</p>
+ <p>(UKACD), the list of signature words in from YAWL package,</p>
+ <p>and the 10,196 places list from the MWords package.</p>
+ <p> </p>
+ <p>The ENABLE package, mainted by M\Cooper &lt;thegrendel@theriver.com&gt;,</p>
+ <p>is in the Public Domain:</p>
+ <p> </p>
+ <p>  The ENABLE master word list, WORD.LST, is herewith formally released</p>
+ <p>  into the Public Domain. Anyone is free to use it or distribute it in</p>
+ <p>  any manner they see fit. No fee or registration is required for its</p>
+ <p>  use nor are "contributions" solicited (if you feel you absolutely</p>
+ <p>  must contribute something for your own peace of mind, the authors of</p>
+ <p>  the ENABLE list ask that you make a donation on their behalf to your</p>
+ <p>  favorite charity). This word list is our gift to the Scrabble</p>
+ <p>  community, as an alternate to "official" word lists. Game designers</p>
+ <p>  may feel free to incorporate the WORD.LST into their games. Please</p>
+ <p>  mention the source and credit us as originators of the list. Note</p>
+ <p>  that if you, as a game designer, use the WORD.LST in your product,</p>
+ <p>  you may still copyright and protect your product, but you may *not*</p>
+ <p>  legally copyright or in any way restrict redistribution of the</p>
+ <p>  WORD.LST portion of your product. This *may* under law restrict your</p>
+ <p>  rights to restrict your users' rights, but that is only fair.</p>
+ <p> </p>
+ <p>UKACD, by J Ross Beresford &lt;ross@bryson.demon.co.uk&gt;, is under the</p>
+ <p>following copyright:</p>
+ <p> </p>
+ <p>  Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.</p>
+ <p> </p>
+ <p>  The following restriction is placed on the use of this publication:</p>
+ <p>  if The UK Advanced Cryptics Dictionary is used in a software package</p>
+ <p>  or redistributed in any form, the copyright notice must be</p>
+ <p>  prominently displayed and the text of this document must be included</p>
+ <p>  verbatim.</p>
+ <p> </p>
+ <p>  There are no other restrictions: I would like to see the list</p>
+ <p>  distributed as widely as possible.</p>
+ <p> </p>
+ <p>The 95 level includes the 354,984 single words and 256,772 compound</p>
+ <p>words from the MWords package, ABLE.LST from the ENABLE Supplement,</p>
+ <p>and some additional words found in my part-of-speech database that</p>
+ <p>were not found anywhere else.</p>
+ <p> </p>
+ <p>Accent information was taken from UKACD.</p>
+ <p> </p>
+ <p>My VARCON package was used to create the American, British, and</p>
+ <p>Canadian word list.</p>
+ <p> </p>
+ <p>Since the original word lists used in the VARCON package came</p>
+ <p>from the Ispell distribution they are under the Ispell copyright:</p>
+ <p> </p>
+ <p>  Copyright 1993, Geoff Kuenning, Granada Hills, CA</p>
+ <p>  All rights reserved.</p>
+ <p> </p>
+ <p>  Redistribution and use in source and binary forms, with or without</p>
+ <p>  modification, are permitted provided that the following conditions</p>
+ <p>  are met:</p>
+ <p> </p>
+ <p>  1. Redistribution of source code must retain the above copyright</p>
+ <p>     notice, this list of conditions and the following disclaimer.</p>
+ <p>  2. Redistribution in binary form must reproduce the above copyright</p>
+ <p>     notice, this list of conditions and the following disclaimer in the</p>
+ <p>     documentation and/or other materials provided with the distribution.</p>
+ <p>  3. All modifications to the source code must be clearly marked as</p>
+ <p>     such.  Binary redistribution based on modified source code</p>
+ <p>     must be clearly marked as modified versions in the documentation</p>
+ <p>     and/or other materials provided with the distribution.</p>
+ <p>  (clause 4 removed with permission from Geoff Kuenning)</p>
+ <p>  5. The name of Geoff Kuenning may not be used to endorse or promote</p>
+ <p>     products derived from this software without specific prior</p>
+ <p>     written permission.</p>
+ <p> </p>
+ <p>  THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS</p>
+ <p>  IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</p>
+ <p>  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS</p>
+ <p>  FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GEOFF</p>
+ <p>  KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,</p>
+ <p>  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,</p>
+ <p>  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</p>
+ <p>  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</p>
+ <p>  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT</p>
+ <p>  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN</p>
+ <p>  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE</p>
+ <p>  POSSIBILITY OF SUCH DAMAGE.</p>
+ <h2>English (South Africa)</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>English (United Kingdom)</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>BSD-style. Unlimited copying, redistribution and modification of this file is permitted with this copyright
+ and license information.</p>
+ <h2>English (USA)</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__See_English_Canada">See English (Canada)</a>.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>BSD-style. Unlimited copying, redistribution and modification of this file<br />
+ is permitted with this copyright and license information.</p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>WordNet Release 2.1</p>
+ <p>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.:</p>
+ <p>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.</p>
+ <p>WordNet 2.1 Copyright 2005 by Princeton University. All rights reserved.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>English sentence checker for LibreOffice</h3>
+ <p>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:</p>
+ <p>2011-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h2>Esperanto</h2>
+ <h3>Spelling dictionary, hyphenation patterns, and thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">GNU General Public License version 3</a>.</p>
+ <h2>Estonian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Dictionary is adapted to myspell by Jaak Pruulmann (jjpp@meso.ee, <a href=
+ "http://www.meso.ee/~jjpp/speller/">http://www.meso.ee/~jjpp/speller/</a> ) 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 <a href="http://www.eki.ee/eki/licence.html">http://www.eki.ee/eki/licence.html</a>. 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.</p>
+ <h4>Software License Agreement</h4>
+ <p>Institute of the Estonian Language</p>
+ <p>Copyright © Institute of the Estonian Language</p>
+ <p>E-mail: tarkvara@eki.ee</p>
+ <p>URL: <a href="http://www.eki.ee/tarkvara/">http://www.eki.ee/tarkvara/</a></p>
+ <p>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:</p>
+ <p>The present License Agreement should belong unaltered to each copy ever made of this Product;</p>
+ <p>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;</p>
+ <p>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.)</p>
+ <p>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.</p>
+ <p>Institute of the Estonian Language</p>
+ <p>Roosikrantsi 6<br />
+ EE-10119 Tallinn<br />
+ ESTONIA</p>
+ <p>E-mail: eki@eki.ee<br />
+ Phone &amp; Fax: +372-6411443</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Hyphenation file is adapted to OpenOffice.org by Jaak Pruulmann (jjpp@meso.ee, <a href=
+ "http://www.meso.ee/~jjpp/speller/">http://www.meso.ee/~jjpp/speller/</a>) 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 <a href=
+ "http://www.cs.ut.ee/~tqnu/eehyph.tex">http://www.cs.ut.ee/~tqnu/eehyph.tex</a> 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).</p>
+ <p><a href="#a__LPPL">Jump to LPPL</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>French</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Olivier R. - dicollecte&lt;at&gt;free&lt;dot&gt;fr</p>
+ <p>Dicollecte: <a href="http://www.dicollecte.org/">http://www.dicollecte.org/</a></p>
+ <p>Licenses:</p>
+ <ul>
+ <li>MPL: <a href="#a__MPL_version_1_1">Mozilla Public License version 1.1</a> or
+ higher </li>
+ <li>GPL: <a href="#a__GPL_version_2">GNU General Public License version 2.0</a> or
+ higher </li>
+ <li>LGPL: <a href="#a__LGPL_version_2_1">GNU Lesser General Public License
+ version 2.1</a> or higher </li>
+ </ul>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Origin: Based on the TeX hyphenation tables frhyph.tex (V2.12) &lt;2002/12/11&gt; <a href=
+ "http://mirror.ctan.org/language/hyphenation/frhyph.tex">http://mirror.ctan.org/language/hyphenation/frhyph.tex</a></p>
+ <p>The TeX hyphenation tables are released under the LaTeX Project Public License (LPPL)</p>
+ <p><a href="#a__LPPL">Jump to LPPL</a></p>
+ <p>License: OpenOffice.org adaptions of this package are licensed under the GNU Lesser General Public License
+ (LGPL) version 2.1 or higher.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p>Author: Conversion author is Paul Pichaureau &lt;paul.pichaureau@alcandre.net&gt;</p>
+ <p>Based on a previous conversion by Blaise Drayer &lt;blaise@drayer.ch&gt;</p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Licence: LGPL: GNU Lesser General Public License version 2.1 or higher.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Galician</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>This extension was made by Frco. Javier Rial Rodríguez for Mancomún, Centro de Referencia e Servizos de
+ Software Libre 2008</p>
+ <p>Spellchecker files (gl_ES.aff, gl_ES.dic) from Mar Castro Pereiro also developed for Mancomún.</p>
+ <p>Distributed under the GPL License.</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Guarani</h2>
+ <h3>Spelling dictionary</h3>
+ <p>The following software may be included in this product: Guarani spelling dictionary.</p> <!-- FIXME license missing -->
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>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".</p>
+ <h2>Gujarati</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Hebrew</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>This dictionary is Copyright (C) 2000-2009, Nadav Har'El (nyh@math.technion.ac.il) and Dan Kenigsberg
+ (<a href="mailto:danken@cs.technion.ac.il">danken@cs.technion.ac.il</a>).</p>
+ <p>It is licensed under the GNU General Public License (GPL).</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Hindi</h2>
+ <p>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:</p>
+ <p>GNU Aspell Hindi Word List Package<br />
+ Copyright © 2005 Swapnil {Hajare, Sant} &lt;<a href=
+ "mailto:janabhaaratii@ncst.ernet.in">janabhaaratii@ncst.ernet.in</a>&gt;</p>
+ <p>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.</p>
+ <p>Conversion made by Laszlo Nemeth, for demonstration of Hunspell Unicode support.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Hungarian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>MPLv2 and LesserGPLv3+</p>
+ <p>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).</p>
+ <p>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.</p>
+ <p>2018 (c) László Németh &amp; Ferenc Godó</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright © Bence Nagy &lt;gimb (at) freemail (dot) hu&gt;, 2006</p>
+ <p>Original license: GPL v2</p>
+ <p>Patch author: László Németh &lt;nemeth (at) OOo&gt;</p>
+ <p>Patch license: MPL/GPL/LGPL</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2009, László Németh</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Hungarian sentence checker for LibreOffice</h3>
+ <p>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:</p>
+ <p>2009-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h2>Indonesian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>The following software may be included in this product: Indonesian hyphenation patterns.</p> <!-- FIXME license missing -->
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Icelandic</h2>
+ <h3>Spelling dictionary, hyphenation and thesaurus</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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 <a href=
+ "http://www.malfong.is/index.php?lang=en&amp;pg=hyphen">http://www.malfong.is/index.php?lang=en&amp;pg=hyphen</a>
+ under a Creative Commons Attribution 4.0 International license (CC BY 4.0).</p>
+ <p>You are free:<br />
+ <br />
+    to Share — to copy, distribute and transmit the work<br />
+    to Remix — to adapt the work<br />
+    to make commercial use of the work<br />
+ <br />
+ Under the following conditions:<br />
+ <br />
+    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).<br />
+ <br />
+    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.</p>
+ <p><a href="#a__CC-BY-SA_3_0">Jump to CC-BY-SA 3.0</a></p>
+ <h2>Italian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2001, 2002 Gianluca Turconi<br />
+ Copyright (C) 2002, 2003, 2004 Gianluca Turconi and Davide Prina<br />
+ Copyright (C) 2004, 2005, 2006, 2007  Davide Prina<br />
+ Copyright (C) 2010  Andrea Pescetti</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Origin:   Based on the TeX hyphenation tables by Claudio Beccari</p>
+ <p>Author:   conversion author is Giuseppe Bilotta &lt;<a href=
+ "mailto:giuseppe.bilotta@gmail.com">giuseppe.bilotta@gmail.com</a>&gt;</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2004,2005,2006,2007,2008 Daniela Volta<br />
+ Copyright (C) 2008 Giovanni Zuliani<br />
+ Copyright (C) 2006,2007,2008 Davide Prina<br />
+ Copyright (C) 2010  Andrea Pescetti</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Kurdish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>(C) Copyright Reimar Heider &lt;hunspell at ferheng dot org&gt;</p>
+ <p>With contributions from Kevin P. Scannell &lt;scannell@slu.edu&gt; and Rêzan Tovjîn</p>
+ <p>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.</p>
+ <p>Originally GPL, relicensed on 04-07-2007 to GPLv3, LGPLv3, MPL 1.1</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h2>Lao</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2013 by Brian Eugene Wilson, Robert Martin Campbell</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Latvian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, <a href="http://dict.dv.lv/">http://dict.dv.lv</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2004-2005 Jânis Vilims, jvilims@apollo.lv</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, <a href="http://dict.dv.lv/">http://dict.dv.lv</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Lithuanian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (c) Albertas Agejevas &lt;alga@uosis.mif.vu.lt&gt;, 2000, 2001. All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ol>
+ <li>Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer. </li>
+ <li>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. </li>
+ <li>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. </li>
+ </ol>
+ <p>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.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Origin: TeX hyphenation tables by Sigitas Tolusis and Vytas Statulevicius. The original tables can be found
+ at <a href="http://www.vtex.lt/tex/download/zip/texmf.zip">http://www.vtex.lt/tex/download/zip/texmf.zip</a>
+  as lthyphen.tex.</p>
+ <p>Author: Converted to OOo format by Albertas Agejevas &lt;alga@akl.lt&gt;</p>
+ <p>License: LaTeX Project Public Licence</p>
+ <p><a href="#a__LPPL">Jump to LPPL</a></p>
+ <h2>Mongolian</h2>
+ <h3>Spelling dictionary and hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__LPPL">Jump to LPPL</a></p>
+ <h2>Nepali</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Compiled by Madan Puraskar Pustakalaya</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Compiled by Madan Puraskar Pustakalaya</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Norwegian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Occitan</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2006 Bruno GALLART</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Polish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>This dictionary for spell-checking Polish texts is licensed under GPL, LGPL, MPL (Mozilla Public License)
+ and Creative Commons ShareAlike licenses (see <a href=
+ "http://creativecommons.org/licenses/sa/1.0">http://creativecommons.org/licenses/sa/1.0</a>).</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>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:<a href=
+ "http://ctan.binkerton.com/ctan.readme.php?filename=language/polish/plhyph.tex">http://ctan.binkerton.com/ctan.readme.php?filename=language/polish/plhyph.tex</a>
+ and is licensed under LPPL.</p>
+ <p>License: OpenOffice.org Adaptions of this package are licensed under the GNU LGPL license.</p>
+ <p>Author: conversion and corrects author is Artur Polaczyński &lt;artiip@gmail.com&gt;</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2004-2008 Marcin Miłkowski &lt;<a href=
+ "mailto:milek_pl@users.sourceforge.net">milek_pl@users.sourceforge.net</a>&gt;</p>
+ <p>This product is made available subject to the terms of GNU Lesser General Public License Version 2.1.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Portuguese</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2006  Jose Joao de Almeida, Rui Vilela, Alberto Simões</p>
+ <p>Dep. Informatica, Universidade do Minho, Portugal</p>
+ <p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Based on the TeX hyphenation tables by Pedro J. de Rezende (Brazilian) and tuned up by J.Joao Dias
+ Almeida</p>
+ <p>Author: conversion author is Paulo Morgado</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Portuguese (Brazilian)</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>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
+ <a href=
+ "https://pt-br.libreoffice.org/projetos/vero">https://pt-br.libreoffice.org/projetos/vero</a>/
+ and you can find new releases at <a href=
+ "https://extensions.libreoffice.org/">https://extensions.libreoffice.org</a></p>
+ <p>Copyright (C) 2006 - 2013 by Raimundo Santos Moura &lt;raimundo.smoura@gmail.com&gt;</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>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
+ <a href=
+ "https://pt-br.libreoffice.org/projetos/vero">https://pt-br.libreoffice.org/projetos/vero</a>/
+ and you can find new releases at <a href=
+ "https://extensions.libreoffice.org/">https://extensions.libreoffice.org</a></p>
+ <p>Copyright (C) 2006 - 2013 by Raimundo Santos Moura &lt;raimundo.smoura@gmail.com&gt;</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Portuguese Brazilian sentence checker for LibreOffice</h3>
+ <p>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:</p>
+ <p>MPL 1.1 / GPLv3+ / LGPLv3+</p>
+ <p>2013 © Raimundo Santos Moura</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h2>Romanian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>GNU General Public License Version 2</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>GNU General Public License Version 2 or later</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Russian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (c) 1997-2008, Alexander I. Lebedev</p>
+ <p>All rights reserved.</p>
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
+ the following conditions are met:</p>
+ <ul>
+ <li>Redistribution of source code must retain the above copyright notice, this list of conditions and the
+ following disclaimer. </li>
+ <li>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. </li>
+ <li>Modified versions must be clearly marked as such. </li>
+ <li>The name of Alexander I. Lebedev may not be used to endorse or promote products derived from this
+ software without specific prior written permission.</li>
+ </ul>
+ <p>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.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>unknown</p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>License: GNU LGPL</p>
+ <p>Author: Mikhail Korolyov &lt;mkorolyov@yandex.ru&gt;</p>
+ <p>Origin: Абрамовъ, Н. Словарь русскихъ синонимовъ и сходныхъ по
+ смыслу выраженiй. Изд. 3-е, доп., Пг., 1911</p>
+ <h3>Russian grammar checker</h3>
+ <p>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:</p>
+ <p>2009, 2011, 2012 (c) Yakov Reztsov &lt;yr at myooo dot ru&gt;, license: MPL 1.1 / GPL / LGPL</p>
+ <h2>Scottish Gaelic</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Serbian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Serbian spelling dictionary is developed by Milutin Smiljanic &lt;msmiljanic.gm@gmail.com&gt; 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.</p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>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ć &lt;dejan@hello-penguin.com&gt;
+ 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.</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Sinhala</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) &lt;2010&gt;  Laknath Semage &lt;blaknath [at] gmail [dot] com&gt;</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <h2>Slovak</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Data are released under these licenses (you can select one):</p>
+ <ul>
+ <li>The GNU General Public License (GPL) Version 2, June 1991 </li>
+ <li>GNU Lesser General Public License Version 2.1, February 1999 </li>
+ <li>Mozilla Public License 1.1 (MPL 1.1) </li>
+ </ul>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Dictionary is created by converting TeX hyphenation patterns for Slovak (Author: Jana Chlebíková) with
+ lingucomponent-tools (<a href=
+ "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/">http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/</a>).</p>
+ <p>Original license: LPPL</p>
+ <p><a href="#a__LPPL">Jump to LPPL</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>Copyright (c) 2004-2010 Tibor Bako, yorik (at) szm.sk, Zdenko Podobný, zposter (at) gmail.com</p>
+ <p>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:</p>
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial
+ portions of the Data.</p>
+ <p>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.</p>
+ <h2>Slovenian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Spanish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Swahili</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2004 Jason M Githeko</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Swahili</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h2>Swedish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright © 2003-12 Göran Andersson &lt;<a href="mailto:goran@init.se">goran@init.se</a>&gt;.</p>
+ <p>This dictionary is made available subject to the terms of GNU Lesser General Public License Version 3.</p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>This thesaurus was directly converted from Synlex. The synonyms will be displayed sorted by their voted
+ synonym level.</p>
+ <p>The synlex file &lt;synpairs.xml&gt; license, You are free to use this file with the same license</p>
+ <p>Copyright (c) Viggo Kann KTH 2009</p>
+ <p>THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED.  ANY USE IS AT YOUR OWN
+ RISK.</p>
+ <p>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.</p>
+ <h2>Telugu</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>GNU Hunspell Telugu  Word List Package adaptation</p>
+ <p>Copyright © 2010 adaptation to Hunspell, Arjuna Rao Chavala<br />
+ Copyright © 2005 Aspell Telugu word list released by IndLinux, Khadir</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright © 2009 Santhosh Thottingal</p>
+ <p>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")</p>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ <h2>Thai</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <h2>Tibetan</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>This work and the derived files are under the Creative Commons CC0 license (Public Domain).</p>
+ <h2>Turkish</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>This dictionary is released under Mozilla Public License Version 2.0.</p>
+ <p><a href="#a__MPL_version_2">Jump to MPL Version 2</a></p>
+ <h2>Ukrainian</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Copyright (C) 1999 Vladimir Yakovchuk, Oleg Podgurniy<br />
+ Copyright (C) 2001 Dmytro Kovalyov, Maksym Polyakov, Andriy Rysin<br />
+ Copyright (C) 2002 Valentyn Solomko, Volodymyr M. Lisivka<br />
+ Copyright (C) 2005 Andriy Rysin, Eugeniy Meshcheryakov, Dmytro Kovalyov<br />
+ Copyright (C) 2006-2009 Andriy Rysin</p>
+ <p>This dictionary is licensed under GPL 2.0 or above, LGPL 2.1 or above and MPL (Mozilla Public License) 1.1
+ licenses.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright 1998-2002 Maksym Polyakov.</p>
+ <p>License: GNU General Public License version 2 or any later version</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h3>Thesaurus</h3>
+ <p>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:</p>
+ <p>This thesaurus is based on: П. М. Деркач, Короткий словник синонімів
+ української мови, Радянська школа, Київ, 1960 С. Караванський,
+ Пошук українського слова</p>
+ <p>Copyright (C) 2009 Andriy Rysin</p>
+ <p>This thesaurus is licensed under GPL, LGPL and MPL (Mozilla Public License) licenses.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ <p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
+ <h2>Vietnamese</h2>
+ <h3>Spelling dictionary</h3>
+ <p>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:</p>
+ <p>Authors:<br />
+ Ivan Garcia &lt;capiscuas@gmail.com&gt;<br />
+ Nguyễn Xuân Minh &lt;<a href="mailto:mxn@zoomtown.com">mxn@zoomtown.com</a>&gt;</p>
+ <p>This spellchecker for OpenOffice was based on the Vietnamese Dictionary list from Professor Hồ Ngọc
+ Đức</p>
+ <p>This spellchecker is released with GPLv2 license.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ <h2>Zulu</h2>
+ <h3>Hyphenation patterns</h3>
+ <p>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:</p>
+ <p>Copyright (C) 2005, 2007 Friedel Wolff</p>
+ <p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
+ </div>
+ <hr />
+ <h1><a id="a__Artwork" name="a__Artwork">Artwork</a></h1>
+ <div class="breeze">
+ <h2>Breeze</h2>
+ <p>Breeze icon theme from KDE to fit in with the Plasma 5 desktop.</p>
+ <p>Breeze Icon Theme has been developed by The KDE Visual Design Group. <a href=
+ "https://forum.kde.org/viewforum.php?f=285">https://forum.kde.org/viewforum.php?f=285</a></p>
+ <p>Copyright 2014 Uri Herrera &lt;kaisergreymon99@gmail.com&gt;</p>
+ <p>Copyright 2015 Andreas Kainz &lt;kainz.a@gmail.com&gt; and other contributors</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
+ </div>
+ <div class="colibre">
+ <h2>Colibre</h2>
+ <p>The Colibre Icon Theme in icons/</p>
+ <p>Original author: Andreas Kainz &lt;kainz.a@gmail.com&gt;</p>
+ <p>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.</p>
+ <p>For additional Information go to the Creative Commons webpage <a href=
+ "https://creativecommons.org/publicdomain/zero/1.0/">https://creativecommons.org/publicdomain/zero/1.0/</a></p>
+ </div>
+ <div class="elementary">
+ <h2>Elementary</h2>
+ <p>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 <a href=
+ "https://github.com/rizmut/libreoffice-style-elementary/commits">https://github.com/rizmut/libreoffice-style-elementary/commits</a></p>
+ <p>Elementary theme for LibreOffice</p>
+ <ul>
+ <li>libreoffice-style-elementary: Available under the terms of the GPL</li>
+ <ul>
+ <li>Copyright 2018 by Rizal Muttaqin &lt;riz_17_oke@yahoo.co.id&gt;</li>
+ <li>Copyright 2017 by Andreas Kainz &lt;kainz.a@gmail.com&gt;</li>
+ <li>Copyright 2015 by Simon Steinbeiss &lt;simon@xfce.org&gt;, Pasi Lallinaho
+ &lt;pasi@shimmerproject.org&gt;</li>
+ </ul>
+ <li>elementary(-xfce): Available under the terms of the GPL</li>
+ <ul>
+ <li>Copyright 2008-2015 by Daniel Foré &lt;Daniel.p.Fore@gmail.com&gt;</li>
+ <li>Copyright 2010-2015 by Simon Steinbeiss &lt;simon@xfce.org&gt;</li>
+ </ul>
+ </ul>
+ <p>Human theme for LibreOffice (2015-05-31)</p>
+ <ul>
+ <li>libreoffice-style-human: Available under the terms of the LGPL</li>
+ <ul>
+ <li>Copyright 2006-2007 by Gabriel Hurley</li>
+ </ul>
+ <li>humanity-icon-theme: Available under the terms of the GPL</li>
+ <ul>
+ <li>Copyright 2009 by Daniel Foré &lt;Daniel.p.Fore@gmail.com&gt;, Jonian Guveli
+ &lt;jonian.guveli@gmail.com&gt;, K.Vishnoo Charan Reddy &lt;vish@ubuntu.com&gt;</li>
+ <li>Copyright 2006, 2009 by Gabriel Hurley</li>
+ </ul>
+ </ul>
+ <p><a href="#a__GPL_version_3">Jump to GPL Version 3</a></p>
+ </div>
+ <div class="karasa_jaga">
+ <h2>Karasa Jaga</h2>
+ <p>Karasa Jaga Icon Theme for Sundara OS</p>
+ <blockquote>
+ Copyright (c) 2014 Rizal Muttaqin &lt;sundaralinux@gmail.com&gt;<br />
+ Copyright (c) 2018 Rania Amina &lt;rania@libreoffice.id&gt;
+ </blockquote>
+ <p>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 <a href=
+ "https://github.com/rizmut/libreoffice-style-karasa-jaga">https://github.com/rizmut/libreoffice-style-karasa-jaga</a></p>.
+ <p>The Oxygen Icon Theme</p>
+ <blockquote>
+ Copyright (C) 2007 Nuno Pinheiro &lt;nuno@oxygen-icons.org&gt;<br />
+ Copyright (C) 2007 David Vignoni &lt;david@icon-king.com&gt;<br />
+ Copyright (C) 2007 David Miller &lt;miller@oxygen-icons.org&gt;<br />
+ Copyright (C) 2007 Johann Ollivier Lapeyre &lt;johann@oxygen-icons.org&gt;<br />
+ Copyright (C) 2007 Kenneth Wimer &lt;kwwii@bootsplash.org&gt;<br />
+ Copyright (C) 2007 Riccardo Iaconelli &lt;riccardo@oxygen-icons.org&gt;
+ </blockquote>
+ <p>and others</p>
+ <blockquote>
+ <p>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.</p>
+ <p>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.</p>
+ <p>You should have received a copy of the GNU Lesser General Public License along with this library. If
+ not, see <a href="http://www.gnu.org/licenses/">&lt;http://www.gnu.org/licenses/&gt;</a>.</p>
+ </blockquote>
+ <p>Clarification:</p>
+ <blockquote>
+ <p>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.</p>
+ <p>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.</p>
+ <p>Source code, for this library means:</p>
+ <ul>
+ <li>where they exist, SVG;</li>
+ <li>otherwise, if applicable, the multi-layered formats xcf or psd, or otherwise png.</li>
+ </ul>
+ <p>The LGPL in some sections obliges you to make the files carry notices. With images this is in some cases
+ impossible or hardly useful.</p>
+ <p>With this library a notice is placed at a prominent place in the directory containing the elements. You
+ may follow this practice.</p>
+ <p>The exception in section 5 of the GNU Lesser General Public License covers the use of elements of this
+ art library in a GUI.</p>
+ <p>kde-artists [at] kde.org</p>
+ </blockquote>
+ <p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
+ </div>
+ <div class="sifr">
+ <h2>Sifr</h2>
+ <p>This work is distributed under the terms of the Creative Commons BY-SA 3.0 license.</p>
+ <p><a href="#a__CC-BY-SA_3_0">Jump to CC-BY-SA 3.0</a></p>
+ </div>
+ <div class="sukapura">
+ <h2>Sukapura</h2>
+ <p>Sukapura Icon Theme</p>
+ <blockquote>
+ Copyright (c) 2019-2020 Rizal Muttaqin &lt;riz_17_oke@yahoo.co.co.id&gt;<br />
+ </blockquote>
+ <blockquote>
+ <p>This work is distributed under the terms of Mozilla Public License version 2.0. To view a copy of this
+ licence, visit <a href="https://www.mozilla.org/en-US/MPL/2.0/ ">https://www.mozilla.org/en-US/MPL/2.0/</a>
+ </p>
+ <p><a href="a__MPL_version_2">Jump to MPL 2.0</a></p>
+ </blockquote>
+ </div>
+ <div class="no_mpl_subset">
+ <hr />
+ <h1><a id="a__LGPL_version_3" name="a__LGPL_version_3">GNU LESSER GENERAL PUBLIC LICENSE</a></h1>
+ <p>Version 3, 29 June 2007</p>
+ <p>Copyright © 2007 Free Software Foundation, Inc. &lt;<a href="https://fsf.org/">https://fsf.org/</a>&gt;</p>
+ <p>Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is
+ not allowed.</p>
+ <p>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.</p>
+ <h2>0. Additional Definitions.</h2>
+ <p>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.</p>
+ <p>“The Library” refers to a covered work governed by this License, other than an Application or a Combined
+ Work as defined below.</p>
+ <p>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.</p>
+ <p>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”.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h2>1. Exception to Section 3 of the GNU GPL.</h2>
+ <p>You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the
+ GNU GPL.</p>
+ <h2>2. Conveying Modified Versions.</h2>
+ <p>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:</p>
+ <ol type="a">
+ <li>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</li>
+ <li>under the GNU GPL, with none of the additional permissions of this License applicable to that
+ copy.</li>
+ </ol>
+ <h2>3. Object Code Incorporating Material from Library Header Files.</h2>
+ <p>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:</p>
+ <ol type="a">
+ <li>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.</li>
+ <li>Accompany the object code with a copy of the GNU GPL and this license document.</li>
+ </ol>
+ <h2>4. Combined Works.</h2>
+ <p>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:</p>
+ <ol type="a">
+ <li>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.</li>
+ <li>Accompany the Combined Work with a copy of the GNU GPL and this license document.</li>
+ <li>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.</li>
+ <li>Do one of the following:
+ <ol type="1">
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ </li>
+ <li>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.)</li>
+ </ol>
+ <h2>5. Combined Libraries.</h2>
+ <p>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:</p>
+ <ol type="a">
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <h2>6. Revised Versions of the GNU Lesser General Public License.</h2>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <hr />
+ <h1><a id="a__LGPL_version_2_1" name="a__LGPL_version_2_1">GNU LESSER GENERAL PUBLIC LICENSE</a></h1>
+ <p>Version 2.1, February 1999</p>
+ <pre>
+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.]
+</pre>
+ <h2>Preamble</h2>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h2>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</h2>
+ <p><strong>0.</strong> 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".</p>
+ <p>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.</p>
+ <p>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".)</p>
+ <p>"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.</p>
+ <p>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.</p>
+ <p><strong>1.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>2.</strong> 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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> The modified work must itself be a software library.</li>
+ <li><strong>b)</strong> You must cause the files modified to carry prominent notices stating that you
+ changed the files and the date of any change.</li>
+ <li><strong>c)</strong> You must cause the whole of the work to be licensed at no charge to all third
+ parties under the terms of this License.</li>
+ <li>
+ <strong>d)</strong> 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.
+ <p>(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.)</p>
+ </li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>3.</strong> 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.</p>
+ <p>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.</p>
+ <p>This option is useful when you wish to copy part of the code of the Library into a program that is not a
+ library.</p>
+ <p><strong>4.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>5.</strong> 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.)</p>
+ <p>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.</p>
+ <p><strong>6.</strong> 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.</p>
+ <p>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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> 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.)</li>
+ <li><strong>b)</strong> 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.</li>
+ <li><strong>c)</strong> 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.</li>
+ <li><strong>d)</strong> 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.</li>
+ <li><strong>e)</strong> Verify that the user has already received a copy of these materials or that you
+ have already sent this user a copy.</li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>7.</strong> 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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> 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.</li>
+ <li><strong>b)</strong> 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.</li>
+ </ul>
+ <p><strong>8.</strong> 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.</p>
+ <p><strong>9.</strong> 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.</p>
+ <p><strong>10.</strong> 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.</p>
+ <p><strong>11.</strong> 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this
+ License.</p>
+ <p><strong>12.</strong> 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.</p>
+ <p><strong>13.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>14.</strong> 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.</p>
+ <p><strong>NO WARRANTY</strong></p>
+ <p><strong>15.</strong> 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.</p>
+ <p><strong>16.</strong> 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.</p>
+ <h2>END OF TERMS AND CONDITIONS</h2>
+ <h2>How to Apply These Terms to Your New Libraries</h2>
+ <p>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).</p>
+ <p>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.</p>
+ <pre>
+<var>one line to give the library's name and an idea of what it does.</var>
+Copyright (C) <var>year</var> <var>name of author</var>
+
+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
+</pre>
+ <p>Also add information on how to contact you by electronic and paper mail.</p>
+ <p>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:</p>
+ <pre>
+Yoyodyne, Inc., hereby disclaims all copyright interest in
+the library `Frob' (a library for tweaking knobs) written
+by James Random Hacker.
+
+<var>signature of Ty Coon</var>, 1 April 1990
+Ty Coon, President of Vice
+</pre>
+ <p>That's all there is to it!</p>
+ <hr />
+ <h1><a id="a__LGPL_version_2" name="a__LGPL_version_2">GNU LIBRARY GENERAL PUBLIC LICENSE</a></h1>
+ <p>Version 2, June 1991</p>
+ <pre>
+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.]
+</pre>
+ <h2>Preamble</h2>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>Note that it is possible for a library to be covered by the ordinary General Public License rather than by
+ this special one.</p>
+ <h2>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</h2>
+ <p><strong>0.</strong> 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".</p>
+ <p>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.</p>
+ <p>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".)</p>
+ <p>"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.</p>
+ <p>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.</p>
+ <p><strong>1.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>2.</strong> 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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> The modified work must itself be a software library.</li>
+ <li><strong>b)</strong> You must cause the files modified to carry prominent notices stating that you
+ changed the files and the date of any change.</li>
+ <li><strong>c)</strong> You must cause the whole of the work to be licensed at no charge to all third
+ parties under the terms of this License.</li>
+ <li>
+ <strong>d)</strong> 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.
+ <p>(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.)</p>
+ </li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>3.</strong> 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.</p>
+ <p>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.</p>
+ <p>This option is useful when you wish to copy part of the code of the Library into a program that is not a
+ library.</p>
+ <p><strong>4.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>5.</strong> 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.)</p>
+ <p>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.</p>
+ <p><strong>6.</strong> 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.</p>
+ <p>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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> 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.)</li>
+ <li><strong>b)</strong> 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.</li>
+ <li><strong>c)</strong> 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.</li>
+ <li><strong>d)</strong> Verify that the user has already received a copy of these materials or that you
+ have already sent this user a copy.</li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>7.</strong> 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:</p>
+ <ul style="list-style:none;">
+ <li><strong>a)</strong> 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.</li>
+ <li><strong>b)</strong> 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.</li>
+ </ul>
+ <p><strong>8.</strong> 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.</p>
+ <p><strong>9.</strong> 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.</p>
+ <p><strong>10.</strong> 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.</p>
+ <p><strong>11.</strong> 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this
+ License.</p>
+ <p><strong>12.</strong> 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.</p>
+ <p><strong>13.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>14.</strong> 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.</p>
+ <p><strong>NO WARRANTY</strong></p>
+ <p><strong>15.</strong> 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.</p>
+ <p><strong>16.</strong> 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.</p>
+ <h2>END OF TERMS AND CONDITIONS</h2>
+ <h2>How to Apply These Terms to Your New Libraries</h2>
+ <p>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).</p>
+ <p>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.</p>
+ <pre>
+<var>one line to give the library's name and an idea of what it does.</var>
+Copyright (C) <var>year</var> <var>name of author</var>
+
+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.
+</pre>
+ <p>Also add information on how to contact you by electronic and paper mail.</p>
+ <p>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:</p>
+ <pre>
+Yoyodyne, Inc., hereby disclaims all copyright interest in
+the library `Frob' (a library for tweaking knobs) written
+by James Random Hacker.
+
+<var>signature of Ty Coon</var>, 1 April 1990
+Ty Coon, President of Vice
+</pre>
+ <p>That's all there is to it!</p>
+ <hr />
+ <h1><a id="a__GPL_version_3" name="a__GPL_version_3">GNU GENERAL PUBLIC LICENSE</a></h1>
+ <p>Version 3, 29 June 2007</p>
+ <p>Copyright © 2007 Free Software Foundation, Inc. &lt;<a href="https://fsf.org/">https://fsf.org/</a>&gt;</p>
+ <p>Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is
+ not allowed.</p>
+ <h3>Preamble</h3>
+ <p>The GNU General Public License is a free, copyleft license for software and other kinds of works.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>The precise terms and conditions for copying, distribution and modification follow.</p>
+ <h3>TERMS AND CONDITIONS</h3>
+ <h4>0. Definitions.</h4>
+ <p>“This License” refers to version 3 of the GNU General Public License.</p>
+ <p>“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor
+ masks.</p>
+ <p>“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.</p>
+ <p>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.</p>
+ <p>A “covered work” means either the unmodified Program or a work based on the Program.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>1. Source Code.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>The Corresponding Source need not include anything that users can regenerate automatically from other parts
+ of the Corresponding Source.</p>
+ <p>The Corresponding Source for a work in source code form is that same work.</p>
+ <h4>2. Basic Permissions.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <p>Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing
+ is not allowed; section 10 makes it unnecessary.</p>
+ <h4>3. Protecting Users' Legal Rights From Anti-Circumvention Law.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>4. Conveying Verbatim Copies.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>5. Conveying Modified Source Versions.</h4>
+ <p>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:</p>
+ <ul style="list-style:none;">
+ <li>a) The work must carry prominent notices stating that you modified it, and giving a relevant date.</li>
+ <li>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”.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <h4>6. Conveying Non-Source Forms.</h4>
+ <p>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:</p>
+ <ul style="list-style:none;">
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p>“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.</p>
+ <p>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).</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>7. Additional Terms.</h4>
+ <p>“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.</p>
+ <p>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.</p>
+ <p>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:</p>
+ <ul style="list-style:none;">
+ <li>a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this
+ License; or</li>
+ <li>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</li>
+ <li>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</li>
+ <li>d) Limiting the use for publicity purposes of names of licensors or authors of the material; or</li>
+ <li>e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service
+ marks; or</li>
+ <li>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.</li>
+ </ul>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>8. Termination.</h4>
+ <p>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).</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>9. Acceptance Not Required for Having Copies.</h4>
+ <p>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.</p>
+ <h4>10. Automatic Licensing of Downstream Recipients.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>11. Patents.</h4>
+ <p>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”.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>12. No Surrender of Others' Freedom.</h4>
+ <p>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.</p>
+ <h4>13. Use with the GNU Affero General Public License.</h4>
+ <p>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.</p>
+ <h4>14. Revised Versions of this License.</h4>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h4>15. Disclaimer of Warranty.</h4>
+ <p>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.</p>
+ <h4>16. Limitation of Liability.</h4>
+ <p>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.</p>
+ <h4>17. Interpretation of Sections 15 and 16.</h4>
+ <p>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.</p>
+ <p>END OF TERMS AND CONDITIONS</p>
+ <h3>How to Apply These Terms to Your New Programs</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <pre> &lt;one line to give the program's name and a brief idea of what it does.&gt;
+ Copyright (C) &lt;year&gt; &lt;name of author&gt;
+
+ 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 &lt;https://www.gnu.org/licenses/&gt;.
+</pre>
+ <p>Also add information on how to contact you by electronic and paper mail.</p>
+ <p>If the program does terminal interaction, make it output a short notice like this when it starts in an
+ interactive mode:</p>
+ <pre> &lt;program&gt; Copyright (C) &lt;year&gt; &lt;name of author&gt;
+ 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.
+</pre>
+ <p>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”.</p>
+ <p>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 &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</p>
+ <p>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 &lt;<a href=
+ "https://www.gnu.org/licenses/why-not-lgpl.html">https://www.gnu.org/licenses/why-not-lgpl.html</a>&gt;.</p>
+ <hr />
+ <h1><a id="a__GPL_version_2" name="a__GPL_version_2">GNU GENERAL PUBLIC LICENSE</a></h1>
+ <p>Version 2, June 1991</p>
+ <pre>
+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.
+</pre>
+ <h3>Preamble</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>The precise terms and conditions for copying, distribution and modification follow.</p>
+ <h3>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</h3>
+ <p><strong>0.</strong> 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".</p>
+ <p>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.</p>
+ <p><strong>1.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>2.</strong> 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:</p>
+ <dl>
+ <dd><strong>a)</strong> You must cause the modified files to carry prominent notices stating that you
+ changed the files and the date of any change.</dd>
+ <dd><strong>b)</strong> 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.</dd>
+ <dd><strong>c)</strong> 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.)</dd>
+ </dl>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>3.</strong> 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:</p>
+ <dl>
+ <dd><strong>a)</strong> 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,</dd>
+ <dd><strong>b)</strong> 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,</dd>
+ <dd><strong>c)</strong> 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.)</dd>
+ </dl>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>4.</strong> 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.</p>
+ <p><strong>5.</strong> 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.</p>
+ <p><strong>6.</strong> 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.</p>
+ <p><strong>7.</strong> 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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this
+ License.</p>
+ <p><strong>8.</strong> 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.</p>
+ <p><strong>9.</strong> 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.</p>
+ <p>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.</p>
+ <p><strong>10.</strong> 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.</p>
+ <p><strong>NO WARRANTY</strong></p>
+ <p><strong>11.</strong> 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.</p>
+ <p><strong>12.</strong> 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.</p>
+ <h3>END OF TERMS AND CONDITIONS</h3>
+ <h3>How to Apply These Terms to Your New Programs</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <pre>
+<var>one line to give the program's name and an idea of what it does.</var>
+Copyright (C) <var>yyyy</var> <var>name of author</var>
+
+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.
+</pre>
+ <p>Also add information on how to contact you by electronic and paper mail.</p>
+ <p>If the program is interactive, make it output a short notice like this when it starts in an interactive
+ mode:</p>
+ <pre>
+Gnomovision version 69, Copyright (C) <var>year</var> <var>name of author</var>
+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.
+</pre>
+ <p>The hypothetical commands <samp>`show w'</samp> and <samp>`show c'</samp> should show the appropriate parts
+ of the General Public License. Of course, the commands you use may be called something other than <samp>`show
+ w'</samp> and <samp>`show c'</samp>; they could even be mouse-clicks or menu items--whatever suits your
+ program.</p>
+ <p>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:</p>
+ <pre>
+Yoyodyne, Inc., hereby disclaims all copyright
+interest in the program `Gnomovision'
+(which makes passes at compilers) written
+by James Hacker.
+
+<var>signature of Ty Coon</var>, 1 April 1989
+Ty Coon, President of Vice
+</pre>
+ <p>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 <a href="https://www.gnu.org/licenses/lgpl.html">GNU
+ Lesser General Public License</a> instead of this License.</p>
+ </div>
+ <hr />
+ <div class="COINMP">
+ <h1><a id="a__CPL_version_1_0" name="a__CPL_version_1_0">Common Public License Version 1.0 (CPL)</a></h1>
+ <p><tt>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.</tt></p>
+ <p><tt><strong>1. DEFINITIONS</strong></tt></p>
+ <p><tt>"Contribution" means:</tt></p>
+ <blockquote>
+ <p><tt>a) in the case of the initial Contributor, the initial code and documentation distributed under this
+ Agreement, and</tt></p>
+ <p><tt>b) in the case of each subsequent Contributor:</tt></p>
+ <p><tt>i) changes to the Program, and</tt></p>
+ <p><tt>ii) additions to the Program;</tt></p>
+ <p><tt>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.</tt></p>
+ </blockquote>
+ <p><tt>"Contributor" means any person or entity that distributes the Program.</tt></p>
+ <p><tt>"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.</tt></p>
+ <p><tt>"Program" means the Contributions distributed in accordance with this Agreement.</tt></p>
+ <p><tt>"Recipient" means anyone who receives the Program under this Agreement, including all
+ Contributors.</tt></p>
+ <p><tt><strong>2. GRANT OF RIGHTS</strong></tt></p>
+ <blockquote>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ </blockquote>
+ <p><tt><strong>3. REQUIREMENTS</strong></tt></p>
+ <p><tt>A Contributor may choose to distribute the Program in object code form under its own license agreement,
+ provided that:</tt></p>
+ <blockquote>
+ <p><tt>a) it complies with the terms and conditions of this Agreement; and</tt></p>
+ <p><tt>b) its license agreement:</tt></p>
+ <p><tt>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;</tt></p>
+ <p><tt>ii) effectively excludes on behalf of all Contributors all liability for damages, including direct,
+ indirect, special, incidental and consequential damages, such as lost profits;</tt></p>
+ <p><tt>iii) states that any provisions which differ from this Agreement are offered by that Contributor
+ alone and not by any other party; and</tt></p>
+ <p><tt>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.</tt></p>
+ </blockquote>
+ <p><tt>When the Program is made available in source code form:</tt></p>
+ <blockquote>
+ <p><tt>a) it must be made available under this Agreement; and</tt></p>
+ <p><tt>b) a copy of this Agreement must be included with each copy of the Program.</tt></p>
+ </blockquote>
+ <p><tt>Contributors may not remove or alter any copyright notices contained within the Program.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt><strong>4. COMMERCIAL DISTRIBUTION</strong></tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt><strong>5. NO WARRANTY</strong></tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt><strong>6. DISCLAIMER OF LIABILITY</strong></tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt><strong>7. GENERAL</strong></tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <p><tt>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.</tt></p>
+ <hr />
+ </div>
+ <h1><a id="a__MPL_version_1_1" name="a__MPL_version_1_1">Mozilla Public License Version 1.1</a></h1>
+ <h2 id="mpl_v_1_1_section-1">1. Definitions.</h2>
+ <dl>
+ <dt id="mpl_v_1_1_section-1.0.1">1.0.1. "Commercial Use"</dt>
+ <dd>means distribution or otherwise making the Covered Code available to a third party.</dd>
+ <dt id="mpl_v_1_1_section-1.1">1.1. "Contributor"</dt>
+ <dd>means each entity that creates or contributes to the creation of Modifications.</dd>
+ <dt id="mpl_v_1_1_section-1.2">1.2. "Contributor Version"</dt>
+ <dd>means the combination of the Original Code, prior Modifications used by a Contributor, and the
+ Modifications made by that particular Contributor.</dd>
+ <dt id="mpl_v_1_1_section-1.3">1.3. "Covered Code"</dt>
+ <dd>means the Original Code or Modifications or the combination of the Original Code and Modifications, in each
+ case including portions thereof.</dd>
+ <dt id="mpl_v_1_1_section-1.4">1.4. "Electronic Distribution Mechanism"</dt>
+ <dd>means a mechanism generally accepted in the software development community for the electronic transfer of
+ data.</dd>
+ <dt id="mpl_v_1_1_section-1.5">1.5. "Executable"</dt>
+ <dd>means Covered Code in any form other than Source Code.</dd>
+ <dt id="mpl_v_1_1_section-1.6">1.6. "Initial Developer"</dt>
+ <dd>means the individual or entity identified as the Initial Developer in the Source Code notice required by
+ <a href="#mpl_v_1_1_exhibit-a">Exhibit A</a>.</dd>
+ <dt id="mpl_v_1_1_section-1.7">1.7. "Larger Work"</dt>
+ <dd>means a work which combines Covered Code or portions thereof with code not governed by the terms of this
+ License.</dd>
+ <dt id="mpl_v_1_1_section-1.8">1.8. "License"</dt>
+ <dd>means this document.</dd>
+ <dt id="mpl_v_1_1_section-1.8.1">1.8.1. "Licensable"</dt>
+ <dd>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.</dd>
+ <dt id="mpl_v_1_1_section-1.9">1.9. "Modifications"</dt>
+ <dd>
+ <p>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:</p>
+ <ol type="a">
+ <li id="mpl_v_1_1_section-1.9-a">Any addition to or deletion from the contents of a file containing
+ Original Code or previous Modifications.</li>
+ <li id="mpl_v_1_1_section-1.9-b">Any new file that contains any part of the Original Code or previous
+ Modifications.</li>
+ </ol>
+ </dd>
+ <dt id="mpl_v_1_1_section-1.10">1.10. "Original Code"</dt>
+ <dd>means Source Code of computer software code which is described in the Source Code notice required by
+ <a href="#mpl_v_1_1_exhibit-a">Exhibit A</a> as Original Code, and which, at the time of its release under this
+ License is not already Covered Code governed by this License.</dd>
+ <dt id="mpl_v_1_1_section-1.10.1">1.10.1. "Patent Claims"</dt>
+ <dd>means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process,
+ and apparatus claims, in any patent Licensable by grantor.</dd>
+ <dt id="mpl_v_1_1_section-1.11">1.11. "Source Code"</dt>
+ <dd>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.</dd>
+ <dt id="mpl_v_1_1_section-1.12">1.12. "You" (or "Your")</dt>
+ <dd>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 <a href="#mpl_v_1_1_section-6.1">Section 6.1.</a> 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.</dd>
+ </dl>
+ <h2 id="mpl_v_1_1_section-2">2. Source Code License.</h2>
+ <h3 id="mpl_v_1_1_section-2.1">2.1. The Initial Developer Grant.</h3>
+ <p>The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third
+ party intellectual property claims:</p>
+ <ol type="a">
+ <li id="mpl_v_1_1_section-2.1-a">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</li>
+ <li id="mpl_v_1_1_section-2.1-b">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).</li>
+ <li id="mpl_v_1_1_section-2.1-c">the licenses granted in this Section 2.1 (<a href=
+ "#mpl_v_1_1_section-2.1-a">a</a>) and (<a href="#mpl_v_1_1_section-2.1-b">b</a>) are effective on the date
+ Initial Developer first distributes Original Code under the terms of this License.</li>
+ <li id="mpl_v_1_1_section-2.1-d">Notwithstanding Section 2.1 (<a href="#mpl_v_1_1_section-2.1-b">b</a>) 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.</li>
+ </ol>
+ <h3 id="mpl_v_1_1_section-2.2">2.2. Contributor Grant.</h3>
+ <p>Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide,
+ royalty-free, non-exclusive license</p>
+ <ol type="a">
+ <li id="mpl_v_1_1_section-2.2-a">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</li>
+ <li id="mpl_v_1_1_section-2.2-b">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).</li>
+ <li id="mpl_v_1_1_section-2.2-c">the licenses granted in Sections 2.2 (<a href=
+ "#mpl_v_1_1_section-2.2-a">a</a>) and 2.2 (<a href="#mpl_v_1_1_section-2.2-b">b</a>) are effective on the date
+ Contributor first makes Commercial Use of the Covered Code.</li>
+ <li id="mpl_v_1_1_section-2.2-d">Notwithstanding Section 2.2 (<a href="#mpl_v_1_1_section-2.2-b">b</a>) 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.</li>
+ </ol>
+ <h2 id="mpl_v_1_1_section-3">3. Distribution Obligations.</h2>
+ <h3 id="mpl_v_1_1_section-3.1">3.1. Application of License.</h3>
+ <p>The Modifications which You create or to which You contribute are governed by the terms of this License,
+ including without limitation Section <a href="#mpl_v_1_1_section-2.2">2.2</a>. 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 <a href="#mpl_v_1_1_section-6.1">6.1</a>, 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 <a href=
+ "#mpl_v_1_1_section-3.5">3.5</a>.</p>
+ <h3 id="mpl_v_1_1_section-3.2">3.2. Availability of Source Code.</h3>
+ <p>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.</p>
+ <h3 id="mpl_v_1_1_section-3.3">3.3. Description of Modifications.</h3>
+ <p>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.</p>
+ <h3 id="mpl_v_1_1_section-3.4">3.4. Intellectual Property Matters</h3>
+ <h4 id="mpl_v_1_1_section-3.4-a">(a) Third Party Claims</h4>
+ <p>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 <a href="#mpl_v_1_1_section-2.1">2.1</a> or <a href=
+ "#mpl_v_1_1_section-2.2">2.2</a>, 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 <a href="#mpl_v_1_1_section-3.2">3.2</a>, 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.</p>
+ <h4 id="mpl_v_1_1_section-3.4-b">(b) Contributor APIs</h4>
+ <p>If Contributor's Modifications include an application programming interface and Contributor has knowledge of
+ patent licenses which are reasonably necessary to implement that <abbr>API</abbr>, Contributor must also include
+ this information in the <strong class="very-strong">legal</strong> file.</p>
+ <h4 id="mpl_v_1_1_section-3.4-c">(c) Representations.</h4>
+ <p>Contributor represents that, except as disclosed pursuant to Section 3.4 (<a href=
+ "#mpl_v_1_1_section-3.4-a">a</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.</p>
+ <h3 id="mpl_v_1_1_section-3.5">3.5. Required Notices.</h3>
+ <p>You must duplicate the notice in <a href="#mpl_v_1_1_exhibit-a">Exhibit A</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 <a href="#mpl_v_1_1_exhibit-a">Exhibit A</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.</p>
+ <h3 id="mpl_v_1_1_section-3.6">3.6. Distribution of Executable Versions.</h3>
+ <p>You may distribute Covered Code in Executable form only if the requirements of Sections <a href=
+ "#mpl_v_1_1_section-3.1">3.1</a>, <a href="#mpl_v_1_1_section-3.2">3.2</a>, <a href=
+ "#mpl_v_1_1_section-3.3">3.3</a>, <a href="#mpl_v_1_1_section-3.4">3.4</a> and <a href=
+ "#mpl_v_1_1_section-3.5">3.5</a> 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 <a href="#mpl_v_1_1_section-3.2">3.2</a>. 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.</p>
+ <h3 id="mpl_v_1_1_section-3.7">3.7. Larger Works.</h3>
+ <p>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.</p>
+ <h2 id="mpl_v_1_1_section-4">4. Inability to Comply Due to Statute or Regulation.</h2>
+ <p>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 <strong class="very-strong">legal</strong> file described in Section <a href=
+ "#mpl_v_1_1_section-3.4">3.4</a> 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.</p>
+ <h2 id="mpl_v_1_1_section-5">5. Application of this License.</h2>
+ <p>This License applies to code to which the Initial Developer has attached the notice in <a href=
+ "#mpl_v_1_1_exhibit-a">Exhibit A</a> and to related Covered Code.</p>
+ <h2 id="mpl_v_1_1_section-6">6. Versions of the License.</h2>
+ <h3 id="mpl_v_1_1_section-6.1">6.1. New Versions</h3>
+ <p>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.</p>
+ <h3 id="mpl_v_1_1_section-6.2">6.2. Effect of New Versions</h3>
+ <p>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.</p>
+ <h3 id="mpl_v_1_1_section-6.3">6.3. Derivative Works</h3>
+ <p>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 <a href=
+ "#mpl_v_1_1_exhibit-a">Exhibit A</a> shall not of themselves be deemed to be modifications of this License.)</p>
+ <h2 id="mpl_v_1_1_section-7">7. <strong class="very-strong">Disclaimer of warranty</strong></h2>
+ <p><strong class="very-strong">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.</strong></p>
+ <h2 id="mpl_v_1_1_section-8">8. Termination</h2>
+ <p id="mpl_v_1_1_section-8.1">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.</p>
+ <p id="mpl_v_1_1_section-8.2">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:</p>
+ <ol type="a">
+ <li id="mpl_v_1_1_section-8.2-a">such Participant's Contributor Version directly or indirectly infringes any
+ patent, then any and all rights granted by such Participant to You under Sections <a href=
+ "#mpl_v_1_1_section-2.1">2.1</a> and/or <a href="#mpl_v_1_1_section-2.2">2.2</a> 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 <a href="#mpl_v_1_1_section-2.1">2.1</a> and/or
+ <a href="#mpl_v_1_1_section-2.2">2.2</a> automatically terminate at the expiration of the 60 day notice period
+ specified above.</li>
+ <li id="mpl_v_1_1_section-8.2-b">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(<a href="#mpl_v_1_1_section-2.1-b">b</a>) and 2.2(<a href="#mpl_v_1_1_section-2.2-b">b</a>) are
+ revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by
+ that Participant.</li>
+ </ol>
+ <p id="mpl_v_1_1_section-8.3">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 <a href="#mpl_v_1_1_section-2.1">2.1</a> or <a href=
+ "#mpl_v_1_1_section-2.2">2.2</a> shall be taken into account in determining the amount or value of any payment or
+ license.</p>
+ <p id="mpl_v_1_1_section-8.4">8.4. In the event of termination under Sections <a href=
+ "#mpl_v_1_1_section-8.1">8.1</a> or <a href="#mpl_v_1_1_section-8.2">8.2</a> 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.</p>
+ <h2 id="mpl_v_1_1_section-9">9. <strong class="very-strong">Limitation of liability</strong></h2>
+ <p><strong class="very-strong">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.</strong></p>
+ <h2 id="mpl_v_1_1_section-10">10. <abbr title="United States">U.S.</abbr> government end users</h2>
+ <p>The Covered Code is a "commercial item," as that term is defined in 48 <abbr>C.F.R.</abbr> 2.101 (<abbr title=
+ "October">Oct.</abbr> 1995), consisting of "commercial computer software" and "commercial computer software
+ documentation," as such terms are used in 48 <abbr>C.F.R.</abbr> 12.212 (<abbr title="September">Sept.</abbr>
+ 1995). Consistent with 48 <abbr>C.F.R.</abbr> 12.212 and 48 <abbr>C.F.R.</abbr> 227.7202-1 through 227.7202-4 (June
+ 1995), all <abbr>U.S.</abbr> Government End Users acquire Covered Code with only those rights set forth herein.</p>
+ <h2 id="mpl_v_1_1_section-11">11. Miscellaneous</h2>
+ <p>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.</p>
+ <h2 id="mpl_v_1_1_section-12">12. Responsibility for claims</h2>
+ <p>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.</p>
+ <h2 id="mpl_v_1_1_section-13">13. Multiple-licensed code</h2>
+ <p>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
+ <abbr>MPL</abbr> or the alternative licenses, if any, specified by the Initial Developer in the file described in
+ <a href="#mpl_v_1_1_exhibit-a">Exhibit A</a>.</p>
+ <h2 id="mpl_v_1_1_exhibit-a">Exhibit A - Mozilla Public License.</h2>
+ <pre>
+"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."
+</pre>
+ <p>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.</p>
+ <hr />
+ <h1><a id="a__MPL_version_2" name="a__MPL_version_2">Mozilla Public License Version 2.0</a></h1>
+ <h2>1. Definitions</h2>
+ <dl>
+ <dt>1.1. “Contributor”</dt>
+ <dd>
+ <p>means each individual or legal entity that creates, contributes to the creation of, or owns Covered
+ Software.</p>
+ </dd>
+ <dt>1.2. “Contributor Version”</dt>
+ <dd>
+ <p>means the combination of the Contributions of others (if any) used by a Contributor and that particular
+ Contributor´s Contribution.</p>
+ </dd>
+ <dt>1.3. “Contribution”</dt>
+ <dd>
+ <p>means Covered Software of a particular Contributor.</p>
+ </dd>
+ <dt>1.4. “Covered Software”</dt>
+ <dd>
+ <p>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.</p>
+ </dd>
+ <dt>1.5. “Incompatible With Secondary Licenses”</dt>
+ <dd>
+ <p>means</p>
+ <ol type="a">
+ <li>
+ <p>that the initial Contributor has attached the notice described in Exhibit B to the Covered
+ Software; or</p>
+ </li>
+ <li>
+ <p>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.</p>
+ </li>
+ </ol>
+ </dd>
+ <dt>1.6. “Executable Form”</dt>
+ <dd>
+ <p>means any form of the work other than Source Code Form.</p>
+ </dd>
+ <dt>1.7. “Larger Work”</dt>
+ <dd>
+ <p>means a work that combines Covered Software with other material, in a separate file or files, that is
+ not Covered Software.</p>
+ </dd>
+ <dt>1.8. “License”</dt>
+ <dd>
+ <p>means this document.</p>
+ </dd>
+ <dt>1.9. “Licensable”</dt>
+ <dd>
+ <p>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.</p>
+ </dd>
+ <dt>1.10. “Modifications”</dt>
+ <dd>
+ <p>means any of the following:</p>
+ <ol type="a">
+ <li>
+ <p>any file in Source Code Form that results from an addition to, deletion from, or modification of
+ the contents of Covered Software; or</p>
+ </li>
+ <li>
+ <p>any new file in Source Code Form that contains any Covered Software.</p>
+ </li>
+ </ol>
+ </dd>
+ <dt>1.11. “Patent Claims” of a Contributor</dt>
+ <dd>
+ <p>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.</p>
+ </dd>
+ <dt>1.12. “Secondary License”</dt>
+ <dd>
+ <p>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.</p>
+ </dd>
+ <dt>1.13. “Source Code Form”</dt>
+ <dd>
+ <p>means the form of the work preferred for making modifications.</p>
+ </dd>
+ <dt>1.14. “You” (or “Your”)</dt>
+ <dd>
+ <p>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.</p>
+ </dd>
+ </dl>
+ <h2>2. License Grants and Conditions</h2>
+ <h3>2.1. Grants</h3>
+ <p>Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:</p>
+ <ol type="a">
+ <li>
+ <p>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</p>
+ </li>
+ <li>
+ <p>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.</p>
+ </li>
+ </ol>
+ <h3>2.2. Effective Date</h3>
+ <p>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.</p>
+ <h3>2.3. Limitations on Grant Scope</h3>
+ <p>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:</p>
+ <ol type="a">
+ <li>
+ <p>for any code that a Contributor has removed from Covered Software; or</p>
+ </li>
+ <li>
+ <p>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</p>
+ </li>
+ <li>
+ <p>under Patent Claims infringed by Covered Software in the absence of its Contributions.</p>
+ </li>
+ </ol>
+ <p>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).</p>
+ <h3>2.4. Subsequent Licenses</h3>
+ <p>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).</p>
+ <h3>2.5. Representation</h3>
+ <p>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.</p>
+ <h3>2.6. Fair Use</h3>
+ <p>This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair
+ dealing, or other equivalents.</p>
+ <h3>2.7. Conditions</h3>
+ <p>Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.</p>
+ <h2>3. Responsibilities</h2>
+ <h3>3.1. Distribution of Source Form</h3>
+ <p>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.</p>
+ <h3>3.2. Distribution of Executable Form</h3>
+ <p>If You distribute Covered Software in Executable Form then:</p>
+ <ol type="a">
+ <li>
+ <p>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</p>
+ </li>
+ <li>
+ <p>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.</p>
+ </li>
+ </ol>
+ <h3>3.3. Distribution of a Larger Work</h3>
+ <p>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).</p>
+ <h3>3.4. Notices</h3>
+ <p>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.</p>
+ <h3>3.5. Application of Additional Terms</h3>
+ <p>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.</p>
+ <h2>4. Inability to Comply Due to Statute or Regulation</h2>
+ <p>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.</p>
+ <h2>5. Termination</h2>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h2>6. Disclaimer of Warranty</h2>
+ <p><em>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.</em></p>
+ <h2>7. Limitation of Liability</h2>
+ <p><em>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.</em></p>
+ <h2>8. Litigation</h2>
+ <p>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.</p>
+ <h2>9. Miscellaneous</h2>
+ <p>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.</p>
+ <h2>10. Versions of the License</h2>
+ <h3>10.1. New Versions</h3>
+ <p>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.</p>
+ <h3>10.2. Effect of New Versions</h3>
+ <p>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.</p>
+ <h3>10.3. Modified Versions</h3>
+ <p>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).</p>
+ <h3>10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses</h3>
+ <p>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.</p>
+ <h2>Exhibit A - Source Code Form License Notice</h2>
+ <blockquote>
+ <p>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/.</p>
+ </blockquote>
+ <p>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.</p>
+ <p>You may add additional accurate notices of copyright ownership.</p>
+ <h2>Exhibit B - “Incompatible With Secondary Licenses” Notice</h2>
+ <blockquote>
+ <p>This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public
+ License, v. 2.0.</p>
+ </blockquote>
+ <hr />
+ <h1><a id="a__SIL_Open_Font_License__version_1_1" name="a__SIL_Open_Font_License__version_1_1">SIL Open Font
+ License Version 1.1 – 26 February 2007</a></h1>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>"Reserved Font Name" refers to any names specified as such after the copyright statement(s).</p>
+ <p>"Original Version" refers to the collection of Font Software components as distributed by the Copyright
+ Holder(s).</p>
+ <p>"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.</p>
+ <p>"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the
+ Font Software.</p>
+ <p>PERMISSION &amp; 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:</p>
+ <p>1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold
+ by itself.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>TERMINATION This license becomes null and void if any of the above conditions are not met.</p>
+ <p>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.</p>
+ <hr />
+ <h1><a id="a__Apache_License_version_2_0" name="a__Apache_License_version_2_0">Apache License</a></h1>
+ <p>Version 2.0, January 2004</p>
+ <p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p>
+ <p><strong>1. Definitions</strong>.</p>
+ <p>"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1
+ through 9 of this document.</p>
+ <p>"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the
+ License.</p>
+ <p>"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.</p>
+ <p>"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.</p>
+ <p>"Source" form shall mean the preferred form for making modifications, including but not limited to software
+ source code, documentation source, and configuration files.</p>
+ <p>"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.</p>
+ <p>"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).</p>
+ <p>"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.</p>
+ <p>"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."</p>
+ <p>"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.</p>
+ <p><strong>2. Grant of Copyright License</strong>. 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.</p>
+ <p><strong>3. Grant of Patent License</strong>. 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.</p>
+ <p><strong>4. Redistribution</strong>. 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:</p>
+ <ol>
+ <li>You must give any other recipients of the Work or Derivative Works a copy of this License; and</li>
+ <li>You must cause any modified files to carry prominent notices stating that You changed the files; and</li>
+ <li>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</li>
+ <li>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.</li>
+ </ol>
+ <p><strong>5. Submission of Contributions</strong>. 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.</p>
+ <p><strong>6. Trademarks</strong>. 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.</p>
+ <p><strong>7. Disclaimer of Warranty</strong>. 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.</p>
+ <p><strong>8. Limitation of Liability</strong>. 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.</p>
+ <p><strong>9. Accepting Warranty or Additional Liability</strong>. 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.</p>
+ <p>END OF TERMS AND CONDITIONS</p>
+ <h2>APPENDIX: How to apply the Apache License to your work</h2>
+ <p>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.</p>
+ <p>   Copyright [yyyy] [name of copyright owner]</p>
+ <p> </p>
+ <p>   Licensed under the Apache License, Version 2.0 (the "License");</p>
+ <p>   you may not use this file except in compliance with the License.</p>
+ <p>   You may obtain a copy of the License at</p>
+ <p> </p>
+ <p>       <a href=
+ "http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></p>
+ <p> </p>
+ <p>   Unless required by applicable law or agreed to in writing, software</p>
+ <p>   distributed under the License is distributed on an "AS IS" BASIS,</p>
+ <p>   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</p>
+ <p>   See the License for the specific language governing permissions and</p>
+ <p>   limitations under the License.</p>
+ <hr />
+ <div class="DICTIONARIES">
+ <h1><a id="a__LPPL" name="a__LPPL">The LaTeX Project Public License</a></h1>
+ <p><em>LPPL Version 1.3c 2008-05-04</em></p>
+ <p><strong>Copyright 1999 2002-2008 LaTeX3 Project</strong></p>
+ <p>Everyone is allowed to distribute verbatim copies of this license document, but modification of it is not
+ allowed.</p>
+ <h2><a name="item1" id="item1">PREAMBLE</a></h2>
+ <p>The LaTeX Project Public License (LPPL) is the primary license under which the LaTeX kernel and the base
+ LaTeX packages are distributed.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <h2><a name="item2" id="item2">DEFINITIONS</a></h2>
+ <p>In this license document the following terms are used:</p>
+ <dl>
+ <dt>`Work'</dt>
+ <dd>Any work being distributed under this License.</dd>
+ <dt>`Derived Work'</dt>
+ <dd>Any work that under any applicable law is derived from the Work.</dd>
+ <dt>`Modification'</dt>
+ <dd>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.</dd>
+ <dt>`Modify'</dt>
+ <dd>To apply any procedure that produces a Derived Work under any applicable law.</dd>
+ <dt>`Distribution'</dt>
+ <dd>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).</dd>
+ <dt>`Compiled Work'</dt>
+ <dd>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.</dd>
+ <dt>`Current Maintainer'</dt>
+ <dd>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.</dd>
+ <dt>`Base Interpreter'</dt>
+ <dd>A program or process that is normally needed for running or interpreting a part or the whole of the
+ Work.<br />
+ <br />
+ 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'.</dd>
+ </dl>
+ <h2><a name="item3" id="item3">CONDITIONS ON DISTRIBUTION AND MODIFICATION</a></h2>
+ <ol>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.
+ <ol>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>You distribute at least one of the following with the Derived Work:
+ <ol>
+ <li>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;</li>
+ <li>Information that is sufficient to obtain a complete, unmodified copy of the Work.</li>
+ </ol>
+ </li>
+ </ol>
+ </li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>
+ <ol>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ </li>
+ <li>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.</li>
+ <li>Nothing in this license is intended to, or may be used to, prevent complete compliance by all parties
+ with all applicable laws.</li>
+ </ol>
+ <h2><a name="item4" id="item4">NO WARRANTY</a></h2>
+ <p>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.</p>
+ <p>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.</p>
+ <h2><a name="item5" id="item5">MAINTENANCE OF THE WORK</a></h2>
+ <p>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'.</p>
+ <p>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.</p>
+ <p>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.</p>
+ <p>You can become the Current Maintainer of the Work by agreement with any existing Current Maintainer to take
+ over this role.</p>
+ <p>If the Work is unmaintained, you can become the Current Maintainer of the Work through the following
+ steps:</p>
+ <ol>
+ <li>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.</li>
+ <li>If this search is successful, then enquire whether the Work is still maintained.
+ <ol>
+ <li>If it is being maintained, then ask the Current Maintainer to update their communication data
+ within one month.</li>
+ <li>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.)</li>
+ </ol>
+ </li>
+ <li>
+ <ol>
+ <li>If the Current Maintainer is reachable and agrees to pass maintenance of the Work to you, then
+ this takes effect immediately upon announcement.</li>
+ <li>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.</li>
+ </ol>
+ </li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p>A change in the Current Maintainer does not, of itself, alter the fact that the Work is distributed under
+ the LPPL license.</p>
+ <p>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.</p>
+ <h2><a name="item6" id="item6">WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE</a></h2>
+ <p>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.</p>
+ <h3>Choosing This License or Another License</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <h3>A Recommendation on Modification Without Distribution</h3>
+ <p>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.</p>
+ <h3>How to Use This License</h3>
+ <p>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.</p>
+ <p>Here is an example of such a notice and statement:</p>
+ <pre>
+ %% 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.
+</pre>
+ <p>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'.</p>
+ <p>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.</p>
+ <h3>Derived Works That Are Not Replacements</h3>
+ <p>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.</p>
+ <h3>Important Recommendations</h3>
+ <h4>Defining What Constitutes the Work</h4>
+ <p>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:</p>
+ <pre>
+ % This work consists of all files listed in manifest.txt.
+</pre>
+ <p>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.</p>
+ <hr />
+ </div>
+ <h1><a id="a__CC-BY-SA_3_0" name="a__CC-BY-SA_3_0">Creative Commons Attribution-ShareAlike 3.0 Unported</a></h1>
+ <blockquote>
+ 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.
+ </blockquote>
+ <h3><em>License</em></h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p><strong>1. Definitions</strong></p>
+ <ol type="a">
+ <li><strong>"Adaptation"</strong> 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.</li>
+ <li><strong>"Collection"</strong> 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.</li>
+ <li><strong>"Creative Commons Compatible License"</strong> 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.</li>
+ <li><strong>"Distribute"</strong> 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.</li>
+ <li><strong>"License Elements"</strong> means the following high-level license attributes as selected by
+ Licensor and indicated in the title of this License: Attribution, ShareAlike.</li>
+ <li><strong>"Licensor"</strong> means the individual, individuals, entity or entities that offer(s) the Work
+ under the terms of this License.</li>
+ <li><strong>"Original Author"</strong> 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.</li>
+ <li><strong>"Work"</strong> 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.</li>
+ <li><strong>"You"</strong> 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.</li>
+ <li><strong>"Publicly Perform"</strong> 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.</li>
+ <li><strong>"Reproduce"</strong> 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.</li>
+ </ol>
+ <p><strong>2. Fair Dealing Rights.</strong> 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.</p>
+ <p><strong>3. License Grant.</strong> 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:</p>
+ <ol type="a">
+ <li>to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as
+ incorporated in the Collections;</li>
+ <li>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.";</li>
+ <li>to Distribute and Publicly Perform the Work including as incorporated in Collections; and,</li>
+ <li>to Distribute and Publicly Perform Adaptations.</li>
+ <li>
+ <p>For the avoidance of doubt:</p>
+ <ol type="i">
+ <li><strong>Non-waivable Compulsory License Schemes</strong>. 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;</li>
+ <li><strong>Waivable Compulsory License Schemes</strong>. 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,</li>
+ <li><strong>Voluntary License Schemes</strong>. 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.</li>
+ </ol>
+ </li>
+ </ol>
+ <p>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.</p>
+ <p><strong>4. Restrictions.</strong> The license granted in Section 3 above is expressly made subject to and
+ limited by the following restrictions:</p>
+ <ol type="a">
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p><strong>5. Representations, Warranties and Disclaimer</strong></p>
+ <p>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.</p>
+ <p><strong>6. Limitation on Liability.</strong> 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.</p>
+ <p><strong>7. Termination</strong></p>
+ <ol type="a">
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <p><strong>8. Miscellaneous</strong></p>
+ <ol type="a">
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ <li>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.</li>
+ </ol>
+ <blockquote>
+ <h3>Creative Commons Notice</h3>
+ <p>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.</p>
+ <p>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.</p>
+ <p>Creative Commons may be contacted at <a href=
+ "https://creativecommons.org/">https://creativecommons.org/</a>.</p>
+ </blockquote>
+ <h1><a id="a__CC-BY-SA_4_0" name="a__CC-BY-SA_4_0">Creative Commons Attribution-ShareAlike 4.0 International</a></h1>
+ <blockquote>
+ <p>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.</p>
+ </blockquote>
+ <p><strong>Using Creative Commons Public Licenses</strong></p>
+ <p>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.</p>
+ <p class="usage-considerations"><strong>Considerations for licensors:</strong> 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. <a href="https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors">More
+ considerations for licensors.</a></p>
+ <p class="usage-considerations"><strong>Considerations for the public:</strong> 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. <a href="https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees">More
+ considerations for the public.</a></p>
+ <h3>Creative Commons Attribution-ShareAlike 4.0 International Public License</h3>
+ <p>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.</p>
+ <p id="s1"><strong>Section 1 – Definitions.</strong></p>
+ <ol type="a">
+ <li id="s1a"><strong>Adapted Material</strong> 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.</li>
+ <li id="s1b"><strong>Adapter's License</strong> 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.</li>
+ <li id="s1c"><strong>BY-SA Compatible License</strong> means a license listed at <a href="https://creativecommons.org/compatiblelicenses">
+ creativecommons.org/compatiblelicenses</a>, approved by Creative Commons as essentially the equivalent
+ of this Public License.</li>
+ <li id="s1d"><strong>Copyright and Similar Rights</strong> 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 <a href="#s2b">2(b)(1)-(2)</a> are not Copyright and
+ Similar Rights.</li>
+ <li id="s1e"><strong>Effective Technological Measures</strong> 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.</li>
+ <li id="s1f"><strong>Exceptions and Limitations</strong> 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.</li>
+ <li id="s1g"><strong>License Elements</strong> 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.</li>
+ <li id="s1h"><strong>Licensed Material</strong> means the artistic or literary work, database, or other
+ material to which the Licensor applied this Public License.</li>
+ <li id="s1i"><strong>Licensed Rights</strong> 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.</li>
+ <li id="s1j"><strong>Licensor</strong> means the individual(s) or entity(ies) granting rights under this Public
+ License.</li>
+ <li id="s1k"><strong>Share</strong> 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.</li>
+ <li id="s1l"><strong>Sui Generis Database Rights</strong> 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.</li>
+ <li id="s1m"><strong>You</strong> means the individual or entity exercising the Licensed Rights under this
+ Public License. <strong>Your</strong> has a corresponding meaning.</li>
+ </ol>
+ <p id="s2"><strong>Section 2 – Scope.</strong></p>
+ <ol type="a">
+ <li id="s2a"><strong>License grant</strong>.
+ <ol>
+ <li id="s2a1">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:
+ <ol type="A">
+ <li id="s2a1A">reproduce and Share the Licensed Material, in whole or in part; and</li>
+ <li id="s2a1B">produce, reproduce, and Share Adapted Material.</li>
+ </ol>
+ </li>
+ <li id="s2a2"><span style="text-decoration: underline;">Exceptions and Limitations</span>. 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.</li>
+ <li id="s2a3"><span style="text-decoration: underline;">Term</span>. The term of this Public License is
+ specified in Section <a href="#s6a">6(a)</a>.</li>
+ <li id="s2a4"><span style="text-decoration: underline;">Media and formats; technical modifications
+ allowed</span>. 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 <a href="#s2a4">2(a)(4)</a> never
+ produces Adapted Material.</li>
+ <li id="s2a5"><span style="text-decoration: underline;">Downstream recipients</span>.
+ <ol type="A">
+ <li id="s2a5A"><span style="text-decoration: underline;">Offer from the Licensor – Licensed
+ Material</span>. 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.</li>
+ <li id="s2a5B"><span style="text-decoration: underline;">Additional offer from the Licensor –
+ Adapted Material</span>. 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.</li>
+ <li id="s2a5C"><span style="text-decoration: underline;">No downstream restrictions</span>. 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.</li>
+ </ol>
+ </li>
+ <li id="s2a6"><span style="text-decoration: underline;">No endorsement</span>. 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 <a href="#s3a1Ai">3(a)(1)(A)(i)</a>.</li>
+ </ol>
+ </li>
+ <li id="s2b">
+ <p><strong>Other rights</strong>.</p>
+ <ol>
+ <li id="s2b1">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.</li>
+ <li id="s2b2">Patent and trademark rights are not licensed under this Public License.</li>
+ <li id="s2b3">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.</li>
+ </ol>
+ </li>
+ </ol>
+ <p id="s3"><strong>Section 3 – License Conditions.</strong></p>
+ <p>Your exercise of the Licensed Rights is expressly made subject to the following conditions.</p>
+ <ol type="a">
+ <li id="s3a">
+ <p><strong>Attribution</strong>.</p>
+ <ol>
+ <li id="s3a1">
+ <p>If You Share the Licensed Material (including in modified form), You must:</p>
+ <ol type="A">
+ <li id="s3a1A">retain the following if it is supplied by the Licensor with the Licensed
+ Material:
+ <ol type="i">
+ <li id="s3a1Ai">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);</li>
+ <li id="s3a1Aii">a copyright notice;</li>
+ <li id="s3a1Aiii">a notice that refers to this Public License; </li>
+ <li id="s3a1Aiv">a notice that refers to the disclaimer of warranties;</li>
+ <li id="s3a1Av">a URI or hyperlink to the Licensed Material to the extent reasonably
+ practicable;</li>
+ </ol>
+ </li>
+ <li id="s3a1B">indicate if You modified the Licensed Material and retain an indication of any
+ previous modifications; and</li>
+ <li id="s3a1C">indicate the Licensed Material is licensed under this Public License, and
+ include the text of, or the URI or hyperlink to, this Public License.</li>
+ </ol>
+ </li>
+ <li id="s3a2">You may satisfy the conditions in Section <a href="#s3a1">3(a)(1)</a> 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.</li>
+ <li id="s3a3">If requested by the Licensor, You must remove any of the information required by Section
+ <a href="#s3a1A">3(a)(1)(A)</a> to the extent reasonably practicable.</li>
+ </ol>
+ </li>
+ <li id="s3b"><strong>ShareAlike</strong>. <p>In addition to the conditions in Section <a href="#s3a">3(a)</a>,
+ if You Share Adapted Material You produce, the following conditions also apply.</p>
+ <ol>
+ <li id="s3b1">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.</li>
+ <li id="s3b2">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.</li>
+ <li id="s3b3">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.</li>
+ </ol>
+ </li>
+ </ol>
+ <p id="s4"><strong>Section 4 – Sui Generis Database Rights.</strong></p>
+ <p>Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:</p>
+ <ol type="a">
+ <li id="s4a">for the avoidance of doubt, Section <a href="#s2a1">2(a)(1)</a> grants You the right to extract,
+ reuse, reproduce, and Share all or a substantial portion of the contents of the database;</li>
+ <li id="s4b">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 <a href="#s3b">3(b)</a>;
+ and</li>
+ <li id="s4c">You must comply with the conditions in Section <a href="#s3a">3(a)</a> if You Share all or a
+ substantial portion of the contents of the database.</li>
+ </ol> For the avoidance of doubt, this Section <a href="#s4">4</a> supplements and does not replace Your
+ obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. <p id="s5"><strong>Section
+ 5 – Disclaimer of Warranties and Limitation of Liability.</strong></p>
+ <ol style="font-weight: bold;" type="a">
+ <li id="s5a"><strong>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.</strong></li>
+ <li id="s5b"><strong>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.</strong></li>
+ </ol>
+ <ol start="3" type="a">
+ <li id="s5c">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.</li>
+ </ol>
+ <p id="s6"><strong>Section 6 – Term and Termination.</strong></p>
+ <ol type="a">
+ <li id="s6a">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.</li>
+ <li id="s6b">
+ <p>Where Your right to use the Licensed Material has terminated under Section <a href="#s6a">6(a)</a>, it
+ reinstates:</p>
+ <ol>
+ <li id="s6b1">automatically as of the date the violation is cured, provided it is cured within 30 days
+ of Your discovery of the violation; or</li>
+ <li id="s6b2">upon express reinstatement by the Licensor.</li>
+ </ol> For the avoidance of doubt, this Section <a href="#s6b">6(b)</a> does not affect any right the
+ Licensor may have to seek remedies for Your violations of this Public License.
+ </li>
+ <li id="s6c">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.</li>
+ <li id="s6d">Sections <a href="#s1">1</a>, <a href="#s5">5</a>, <a href="#s6">6</a>, <a href="#s7">7</a>, and
+ <a href="#s8">8</a> survive termination of this Public License.</li>
+ </ol>
+ <p id="s7"><strong>Section 7 – Other Terms and Conditions.</strong></p>
+ <ol type="a">
+ <li id="s7a">The Licensor shall not be bound by any additional or different terms or conditions communicated by
+ You unless expressly agreed.</li>
+ <li id="s7b">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.</li>
+ </ol>
+ <p id="s8"><strong>Section 8 – Interpretation.</strong></p>
+ <ol type="a">
+ <li id="s8a">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.</li>
+ <li id="s8b">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.</li>
+ <li id="s8c">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.</li>
+ <li id="s8d">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.</li>
+ </ol>
+ <p class="shaded">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 <a
+ href="https://creativecommons.org/publicdomain/zero/1.0/legalcode">CC0 Public Domain Dedication</a>. 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 <a href="https://creativecommons.org/policies">creativecommons.org/policies</a>,
+ 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.<br /><br />Creative Commons may be contacted at <a href="https://creativecommons.org/">creativecommons.org</a>.</p>
+</body>
+</html>
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="http://www.w3.org/1999/xhtml" version="1.0">
+
+ <xsl:output method="xml"/>
+
+ <xsl:param name="build_type" />
+ <xsl:param name="no_mpl_subset" />
+ <xsl:param name="os" />
+ <xsl:param name="themes" />
+
+ <xsl:template match="x:div">
+ <xsl:choose>
+ <xsl:when test="(
+ not(contains($build_type,@class)) and
+ not(contains($no_mpl_subset,@class)) and
+ not(contains($os,@class)) and
+ not(contains($themes,@class)) and @class)">
+ <!-- do not write out license text for these externals -->
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates select="node()"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template match="@* | node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@* | node()"/>
+ </xsl:copy>
+ </xsl:template>
+
+</xsl:stylesheet>
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="http://www.w3.org/1999/xhtml" version="1.0">
+
+ <xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
+
+ <xsl:param name="build_type" />
+ <xsl:param name="no_mpl_subset" />
+ <xsl:param name="os" />
+ <xsl:param name="themes" />
+
+ <xsl:strip-space elements="*"/>
+
+ <xsl:template match="/">
+ <xsl:apply-templates select="x:html/x:body"/>
+ </xsl:template>
+
+ <xsl:template match="x:body">
+ <xsl:apply-templates />
+ </xsl:template>
+
+ <xsl:template match="x:div">
+ <xsl:choose>
+ <xsl:when test="(
+ not(contains($build_type,@class)) and
+ not(contains($no_mpl_subset,@class)) and
+ not(contains($os,@class)) and
+ not(contains($themes,@class)) and @class)">
+ <!-- do not write out license text for these externals -->
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template match="x:p|x:li">
+ <xsl:value-of select="concat(.,'&#10;')"/>
+ <xsl:text>&#xa;</xsl:text>
+ <xsl:apply-templates />
+ </xsl:template>
+
+ <xsl:template match="x:h1">
+ <xsl:text># </xsl:text>
+ <xsl:value-of select="concat(.,'&#10;')"/>
+ <xsl:text>&#xA;</xsl:text>
+ </xsl:template>
+
+ <xsl:template match="x:h2">
+ <xsl:text>## </xsl:text>
+ <xsl:value-of select="concat(.,'&#10;')"/>
+ <xsl:text>&#xa;</xsl:text>
+ </xsl:template>
+
+ <xsl:template match="x:h3">
+ <xsl:text>### </xsl:text>
+ <xsl:value-of select="concat(.,'&#10;')"/>
+ <xsl:text>&#xa;</xsl:text>
+ </xsl:template>
+
+ <xsl:template match="text()|@*"></xsl:template>
+
+</xsl:stylesheet>