core.git: Branch 'distro/collabora/libreoffice-25-2+backports' - 275 commits - android/source avmedia/source basctl/uiconfig basic/qa basic/source chart2/qa chart2/source configure.ac connectivity/source cui/source desktop/source dictionaries download.lst drawinglayer/inc drawinglayer/source editeng/source extensions/source external/curl external/expat external/freetype external/libwebp external/libxml2 external/libxslt external/mariadb-connector-c external/poppler external/zxcvbn-c extras/source filter/qa filter/source formula/inc framework/source .gitignore .gitreview helpcontent2 i18npool/CustomTarget_breakiterator.mk i18npool/qa i18npool/source i18nutil/qa i18nutil/source include/drawinglayer include/i18nutil include/svtools include/svx include/unotools include/vcl linguistic/source Makefile.in officecfg/registry oox/qa oox/source package/inc package/qa package/source readlicense_oo/license sal/qa sal/rtl sc/CppunitTest_sc_inlinearray.mk sc/inc sc/Module_sc.mk sc/qa sc/s ource sdext/source sd/inc sd/qa sd/source sd/uiconfig sfx2/source solenv/bin solenv/gbuild svgio/inc svgio/qa svgio/source svtools/source svx/source svx/uiconfig sw/CppunitTest_sw_uiwriter11.mk sw/CppunitTest_sw_writerfilter_dmapper.mk sw/CppunitTest_sw_writerfilter_ooxml.mk sw/CppunitTest_sw_writerfilter_rtftok.mk sw/inc sw/Module_sw.mk sw/qa sw/source sysui/desktop translations ucb/source unotools/source vcl/inc vcl/qa vcl/source vcl/unx vcl/win wizards/source xmloff/qa xmloff/source xmlsecurity/source

Wed, 03 Dec 2025 02:10:41 -0800

Rebased ref, commits from common ancestor:
commit 598bdca22b1cec7e8b9b68b11c269f05ccd72d9d
Author:     Andras Timar <[email protected]>
AuthorDate: Wed Dec 3 11:09:49 2025 +0100
Commit:     Andras Timar <[email protected]>
CommitDate: Wed Dec 3 11:09:49 2025 +0100

    Bump version to 25.2.7.3
    
    Change-Id: I1bec395a1e68bbf5b40e9247626bfcc674709a8f

diff --git a/configure.ac b/configure.ac
index 1a65b45eaa69..14e4f0085e8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[25.2.7.2],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[25.2.7.3],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
commit cc9c692540c664f8a526d78595d7a7d62686ed7d
Author:     Mike Kaganski <[email protected]>
AuthorDate: Thu Nov 27 16:44:53 2025 +0500
Commit:     Andras Timar <[email protected]>
CommitDate: Wed Dec 3 11:08:59 2025 +0100

    tdf#169399: try again when frames were moved forward by objects
    
    The problem in the bug document was caused by the extra call to
    SwFrame::OptCalc in SwLayAction::FormatLayout. It was there since
    initial import, as a shortcut; but its conditions were changed in
    commits 610c6f02b11b4b4c555a78b0feb2a1eb35159e39 (tdf#156724
    tdf#156722 tdf#156745 sw: layout: partially remove IsPaintLocked(),
    2023-08-14), 61a78a523a6131ff98b5d846368e5626fe58d99c (tdf#156724
    tdf#156722 sw: layout: remove IsPaintLocked() check, 2023-08-15).
    Commit c303981cfd95ce1c3881366023d5495ae2edce97 (tdf#156724 sw:
    layout: fix tables not splitting due to footnotes differently,
    2023-08-24) had dropped that code completely, but it was restored
    in commit 397d72e582c725d162c7e0b819dc6c0bb62e42b0 (Related:
    tdf#158986 sw floattable: fix unexpected page break with sections,
    2024-02-23), with more strict conditions. Its conditions were
    restricted in commit 607fcac441c7f3a7d3c169c19039e581d707f2bb
    (tdf#160067 sw floattable: fix missing move bwd of paras in split
    section frame, 2024-04-08). There, it was noted, that "probably a
    cleaner way would be to completely stop calculating content frames
    in SwLayAction::FormatLayout() and only do that in FormatContent()",
    which emphasizes the problematic nature of that code.
    
    I looked into restricting the conditions there more for the bug
    document, but failed to come with the working condition. So the
    change drops that code again, and tries to keep the bugs fixed by
    re-introduction of that code fixed.
    
    My understanding of the mechanism causing tdf#158986 is following:
    
    Document's SwLayouter keeps track of the nodes, which frames were
    moved forward by objects. This data will disallow those frames from
    moving backwards (see uses of SwLayouter::FrameMovedFwdByObjPos).
    
    The problem in the bug document comes from the fly attached to a
    paragraph inside a multicolumn section. During the iterative layout
    of the section, there is a stage where the height of the section is
    too small for the object, and its paragraph gets moved forward to
    a new page (together with some previous paragraphs). When layout
    finishes, the height of the section is enough, but the paragraph
    cannot move back, keeping the extra page.
    
    I tried hard to solve it in many less-bruteforce ways. The ideas
    included prevention of the wrong too small section height during
    layout (e.g., in lcl_FormatContentOfLayoutFrame); attempts to find
    a place where a specific "moved forward" record becomes obsolete
    and should be removed (tried to modify fly.cxx' CalcContent and
    SwObjectFormatterTextFrame::DoFormatObj); and modifications to let
    page body's resize code (called when a section's height is changed)
    to re-position the objects. But all these attempts produced layout
    loops.
    
    This change introduces a hack. In SwLayAction::Action, when the
    first call to InternalAction increases the number of frames that
    were moved forward, it clears the layouter entries, and tries once
    more. I hope that at some point, a better fix will be possible.
    
    Change-Id: I47315473982cb1fe5c8d77f7603cd24de08afa89
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194712
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <[email protected]>
    Signed-off-by: Xisco Fauli <[email protected]>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194759

diff --git a/sw/qa/extras/layout/data/tdf169399.fodt 
b/sw/qa/extras/layout/data/tdf169399.fodt
new file mode 100644
index 000000000000..29a375ca84a8
--- /dev/null
+++ b/sw/qa/extras/layout/data/tdf169399.fodt
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<office:document 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible: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:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text">
+ <office:styles>
+  <style:style style:name="Frame" style:family="graphic"/>
+ </office:styles>
+ <office:automatic-styles>
+  <style:style style:name="P1" style:family="paragraph">
+   <style:paragraph-properties fo:line-height="115%"/>
+  </style:style>
+  <style:style style:name="fr1" style:family="graphic" 
style:parent-style-name="Frame">
+   <style:graphic-properties style:wrap="none" style:vertical-pos="from-top" 
style:vertical-rel="paragraph" style:horizontal-pos="from-left" 
style:horizontal-rel="paragraph-content" fo:border="0.06pt solid #000000"/>
+  </style:style>
+  <style:page-layout style:name="pm1">
+   <style:page-layout-properties fo:page-width="210mm" fo:page-height="297mm" 
style:print-orientation="portrait" fo:margin-top="15mm" fo:margin-bottom="1cm" 
fo:margin-left="2cm" fo:margin-right="2cm"/>
+  </style:page-layout>
+ </office:automatic-styles>
+ <office:master-styles>
+  <style:master-page style:name="Standard" style:page-layout-name="pm1"/>
+ </office:master-styles>
+ <office:body>
+  <office:text>
+   <text:p>p1</text:p>
+   <text:p><draw:frame draw:style-name="fr1" draw:name="Frame1" 
text:anchor-type="paragraph" svg:x="0" svg:y="0" svg:width="5cm" 
svg:height="78mm">
+     <draw:text-box/>
+    </draw:frame>p2</text:p>
+   <text:section text:name="Section1">
+    <text:p>p3</text:p>
+   </text:section>
+   <text:p>p4</text:p>
+   <text:section text:name="Section2">
+    <text:p>p5</text:p>
+   </text:section>
+   <text:section text:name="Section3">
+    <text:p>p6</text:p>
+   </text:section>
+   <text:p>p7</text:p>
+   <text:section text:name="Section4">
+    <text:p 
text:style-name="P1">p8<text:line-break/><text:line-break/><text:line-break/><text:line-break/><text:line-break/><text:line-break/></text:p>
+    <text:section text:name="Section5">
+     <text:p>p9 must be on page 1</text:p>
+     <text:p>p10</text:p>
+    </text:section>
+   </text:section>
+  </office:text>
+ </office:body>
+</office:document>
\ No newline at end of file
diff --git a/sw/qa/extras/layout/layout4.cxx b/sw/qa/extras/layout/layout4.cxx
index eb9abea5a538..ac06bbacf85c 100644
--- a/sw/qa/extras/layout/layout4.cxx
+++ b/sw/qa/extras/layout/layout4.cxx
@@ -1882,6 +1882,15 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter4, TestTdf163285)
     CPPUNIT_ASSERT(topText3.startsWith("pg_3"));
 }
 
+CPPUNIT_TEST_FIXTURE(SwLayoutWriter4, testTdf169399)
+{
+    createSwDoc("tdf169399.fodt");
+
+    xmlDocUniquePtr pXmlDoc = parseLayoutDump();
+    // Without the fix, this failed, because there were two pages:
+    assertXPath(pXmlDoc, "/root/page", 1);
+}
+
 CPPUNIT_TEST_FIXTURE(SwLayoutWriter4, TestTdf152839_firstRows)
 {
     createSwDoc("tdf152839_firstrows.rtf");
diff --git a/sw/source/core/doc/DocumentLayoutManager.cxx 
b/sw/source/core/doc/DocumentLayoutManager.cxx
index c1d7cfb2edf7..abf24927db4b 100644
--- a/sw/source/core/doc/DocumentLayoutManager.cxx
+++ b/sw/source/core/doc/DocumentLayoutManager.cxx
@@ -492,6 +492,17 @@ void DocumentLayoutManager::ClearSwLayouterEntries()
     SwLayouter::ClearMoveBwdLayoutInfo( m_rDoc );
 }
 
+size_t DocumentLayoutManager::GetMovedFwdFramesCount() const
+{
+    return SwLayouter::GetMovedFwdFramesCount(m_rDoc);
+}
+
+void DocumentLayoutManager::ClearSwLayouterEntriesWithInvalidation()
+{
+    SwLayouter::InvalidateMovedFwdFrames(m_rDoc);
+    ClearSwLayouterEntries();
+}
+
 DocumentLayoutManager::~DocumentLayoutManager()
 {
 }
diff --git a/sw/source/core/inc/DocumentLayoutManager.hxx 
b/sw/source/core/inc/DocumentLayoutManager.hxx
index 8db5cbe328fe..42315aeb6d55 100644
--- a/sw/source/core/inc/DocumentLayoutManager.hxx
+++ b/sw/source/core/inc/DocumentLayoutManager.hxx
@@ -54,6 +54,8 @@ public:
 
     //Non Interface methods
     void ClearSwLayouterEntries();
+    size_t GetMovedFwdFramesCount() const;
+    void ClearSwLayouterEntriesWithInvalidation();
 
     virtual ~DocumentLayoutManager() override;
 
diff --git a/sw/source/core/inc/layouter.hxx b/sw/source/core/inc/layouter.hxx
index 34d025843ccd..afd3d98370b7 100644
--- a/sw/source/core/inc/layouter.hxx
+++ b/sw/source/core/inc/layouter.hxx
@@ -117,6 +117,8 @@ public:
     static bool FrameMovedFwdByObjPos( const SwDoc& _rDoc,
                                      const SwTextFrame& _rTextFrame,
                                      sal_uInt32& _ornToPageNum );
+    static size_t GetMovedFwdFramesCount(const SwDoc& _rDoc);
+    static void InvalidateMovedFwdFrames(const SwDoc& _rDoc);
     // --> #i40155# - unmark given frame as to be moved forward.
     static void RemoveMovedFwdFrame( const SwDoc& _rDoc,
                                    const SwTextFrame& _rTextFrame );
diff --git a/sw/source/core/inc/movedfwdfrmsbyobjpos.hxx 
b/sw/source/core/inc/movedfwdfrmsbyobjpos.hxx
index c42944060ced..c1f6a639201f 100644
--- a/sw/source/core/inc/movedfwdfrmsbyobjpos.hxx
+++ b/sw/source/core/inc/movedfwdfrmsbyobjpos.hxx
@@ -51,6 +51,10 @@ class SwMovedFwdFramesByObjPos
         bool DoesRowContainMovedFwdFrame( const SwRowFrame& _rRowFrame ) const;
 
         void Clear() { maMovedFwdFrames.clear(); };
+
+        size_t Count() const { return maMovedFwdFrames.size(); }
+
+        void InvalidateAll();
 };
 
 #endif
diff --git a/sw/source/core/layout/layact.cxx b/sw/source/core/layout/layact.cxx
index db71081a8e49..4ca83c97c8b3 100644
--- a/sw/source/core/layout/layact.cxx
+++ b/sw/source/core/layout/layact.cxx
@@ -36,6 +36,7 @@
 #include <IDocumentDrawModelAccess.hxx>
 #include <IDocumentStatistics.hxx>
 #include <IDocumentLayoutAccess.hxx>
+#include <DocumentLayoutManager.hxx>
 
 #include <sfx2/event.hxx>
 
@@ -393,9 +394,20 @@ void SwLayAction::Action(OutputDevice* pRenderContext)
     if ( IsCalcLayout() )
         SetCheckPages( false );
 
+    // tdf#169399: workaround for frames unable to move backward after moved 
forward by objects
+    // in incomplete layout
+    auto& rLayoutManager = 
m_pRoot->GetFormat()->GetDoc().GetDocumentLayoutManager();
+    const auto nOldMovedCount = rLayoutManager.GetMovedFwdFramesCount();
+
     InternalAction(pRenderContext);
     if (RemoveEmptyBrowserPages())
         SetAgain(true);
+    if (nOldMovedCount < rLayoutManager.GetMovedFwdFramesCount())
+    {
+        // Only do it once
+        rLayoutManager.ClearSwLayouterEntriesWithInvalidation();
+        SetAgain(true);
+    }
     while ( IsAgain() )
     {
         SetAgain(false);
@@ -1475,11 +1487,6 @@ bool SwLayAction::FormatLayout( OutputDevice 
*pRenderContext, SwLayoutFrame *pLa
                 PopFormatLayout();
             }
         }
-        else if (pLay->IsSctFrame() && pLay->GetNext() && 
pLay->GetNext()->IsSctFrame() && pLow->IsTextFrame() && pLow == 
pLay->GetLastLower())
-        {
-            // else: only calc the last text lower of sections, followed by 
sections
-            pLow->OptCalc();
-        }
 
         if ( IsAgain() )
             return false;
diff --git a/sw/source/core/layout/layouter.cxx 
b/sw/source/core/layout/layouter.cxx
index a9dcd3a45e5d..08d4fdcd4c59 100644
--- a/sw/source/core/layout/layouter.cxx
+++ b/sw/source/core/layout/layouter.cxx
@@ -368,6 +368,27 @@ bool SwLayouter::FrameMovedFwdByObjPos( const SwDoc& _rDoc,
     }
 }
 
+// static
+size_t SwLayouter::GetMovedFwdFramesCount(const SwDoc& _rDoc)
+{
+    if (_rDoc.getIDocumentLayoutAccess().GetLayouter()
+        && _rDoc.getIDocumentLayoutAccess().GetLayouter()->mpMovedFwdFrames)
+    {
+        return 
_rDoc.getIDocumentLayoutAccess().GetLayouter()->mpMovedFwdFrames->Count();
+    }
+    return 0;
+}
+
+// static
+void SwLayouter::InvalidateMovedFwdFrames(const SwDoc& _rDoc)
+{
+    if (_rDoc.getIDocumentLayoutAccess().GetLayouter()
+        && _rDoc.getIDocumentLayoutAccess().GetLayouter()->mpMovedFwdFrames)
+    {
+        
_rDoc.getIDocumentLayoutAccess().GetLayouter()->mpMovedFwdFrames->InvalidateAll();
+    }
+}
+
 // #i26945#
 bool SwLayouter::DoesRowContainMovedFwdFrame( const SwDoc& _rDoc,
                                             const SwRowFrame& _rRowFrame )
diff --git a/sw/source/core/layout/movedfwdfrmsbyobjpos.cxx 
b/sw/source/core/layout/movedfwdfrmsbyobjpos.cxx
index 7aba4b74a37b..a99e35110324 100644
--- a/sw/source/core/layout/movedfwdfrmsbyobjpos.cxx
+++ b/sw/source/core/layout/movedfwdfrmsbyobjpos.cxx
@@ -87,4 +87,19 @@ bool SwMovedFwdFramesByObjPos::DoesRowContainMovedFwdFrame( 
const SwRowFrame& _r
     return bDoesRowContainMovedFwdFrame;
 }
 
+void SwMovedFwdFramesByObjPos::InvalidateAll()
+{
+    for (const auto& rEntry : maMovedFwdFrames)
+    {
+        SwIterator<SwTextFrame, SwTextNode, sw::IteratorMode::UnwrapMulti> 
aFrameIter(
+            *rEntry.first);
+        for (SwTextFrame* pTextFrame = aFrameIter.First(); pTextFrame;
+             pTextFrame = aFrameIter.Next())
+        {
+            pTextFrame->InvalidatePos();
+            pTextFrame->InvalidatePage();
+        }
+    }
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 5cbfd1ab6520636bb5f7b99185aa69bd7456825d
Author:     Christian Lohmaier <[email protected]>
AuthorDate: Fri Oct 24 17:29:01 2025 +0200
Commit:     Christian Lohmaier <[email protected]>
CommitDate: Fri Oct 24 17:29:01 2025 +0200

    Version 25.2.7.2, tag libreoffice-25.2.7.2

diff --git a/dictionaries b/dictionaries
index c32352d0c8e2..127e5c3983d8 160000
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit c32352d0c8e2496f8f2a6798a5dc67c761675eb8
+Subproject commit 127e5c3983d8f3666cef9cf677555a71ffafed19
diff --git a/helpcontent2 b/helpcontent2
index 06f0b985c079..6cc34aa91675 160000
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 06f0b985c079804643abacd3895baedc18f114f3
+Subproject commit 6cc34aa91675c15ba8cb8e05da3c9adf499f16fb
diff --git a/translations b/translations
index e1247500036f..e68d1db8f557 160000
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit e1247500036f1d30bcc421cbcc61eddf031641d8
+Subproject commit e68d1db8f557a72c8315165d16f74bedaac65f3c
commit a8ece6cd86ed10bd728856769c166ccb1760f81f
Author:     Christian Lohmaier <[email protected]>
AuthorDate: Fri Oct 24 17:28:51 2025 +0200
Commit:     Christian Lohmaier <[email protected]>
CommitDate: Fri Oct 24 17:28:51 2025 +0200

    bump product version to 25.2.7.2
    
    Change-Id: I9231c5c9e1b800a7345b6ef6ca67e3d7ad0a41a4

diff --git a/configure.ac b/configure.ac
index 0096eabadd8b..1a65b45eaa69 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[25.2.7.1.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[25.2.7.2],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
commit 73e2c6a1d05aba7943d34c79136d7918af5a8f85
Author:     Christian Lohmaier <[email protected]>
AuthorDate: Fri Oct 24 17:20:44 2025 +0200
Commit:     Christian Lohmaier <[email protected]>
CommitDate: Fri Oct 24 17:24:04 2025 +0200

    update credits
    
    Change-Id: Id71076a39bde8f6c01283e207773f80b3acbb6e2
    (cherry picked from commit b65b00d904f8ae1c84c9dbdd9e6629080aee858a)
    (cherry picked from commit ad553337a3b48085ae6a3ee7026ef217e5e28cf2)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 8701c8f83c18..e34a8ecad11c 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,13 +1,13 @@
 <?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:c
 alcext="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.4" 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/25.8.0.4$Linux_X86_64
 
LibreOffice_project/48f00303701489684e67c38c28aff00cd5929e67</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="5139" meta:word-count="19415" 
meta:character-count="140713" 
meta:non-whitespace-character-count="123482"/><meta:user-defined 
meta:name="google-site-verification">JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA</meta:user-defined></office:meta>
+ <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/25.8.2.2$Linux_X86_64
 
LibreOffice_project/d401f2107ccab8f924a8e2df40f573aab7605b6f</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="5171" meta:word-count="19557" 
meta:character-count="141724" 
meta:non-whitespace-character-count="124371"/><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">563</config:config-item>
+   <config:config-item config:name="ViewAreaTop" 
config:type="long">3150</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">26901</config:config-item>
-   <config:config-item config:name="ViewAreaHeight" 
config:type="long">24926</config:config-item>
+   <config:config-item config:name="ViewAreaWidth" 
config:type="long">27077</config:config-item>
+   <config:config-item config:name="ViewAreaHeight" 
config:type="long">25102</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">
@@ -16,9 +16,9 @@
      <config:config-item config:name="ViewLeft" 
config:type="long">3323</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">563</config:config-item>
-     <config:config-item config:name="VisibleRight" 
config:type="long">27400</config:config-item>
-     <config:config-item config:name="VisibleBottom" 
config:type="long">25486</config:config-item>
+     <config:config-item config:name="VisibleTop" 
config:type="long">3150</config:config-item>
+     <config:config-item config:name="VisibleRight" 
config:type="long">27577</config:config-item>
+     <config:config-item config:name="VisibleBottom" 
config:type="long">28250</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>
@@ -29,6 +29,7 @@
      <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 config:name="IgnoreBreakAfterMultilineField" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="UseTrailingEmptyLinesInLayout" 
config:type="boolean">false</config:config-item>
     </config:config-item-map-entry>
    </config:config-item-map-indexed>
   </config:config-item-set>
@@ -156,7 +157,7 @@
    <config:config-item config:name="UseOldPrinterMetrics" 
config:type="boolean">false</config:config-item>
    <config:config-item config:name="RedlineProtectionKey" 
config:type="base64Binary"/>
    <config:config-item config:name="TabsRelativeToIndent" 
config:type="boolean">true</config:config-item>
-   <config:config-item config:name="Rsid" 
config:type="int">14805319</config:config-item>
+   <config:config-item config:name="Rsid" 
config:type="int">14857222</config:config-item>
    <config:config-item config:name="UpdateFromTemplate" 
config:type="boolean">true</config:config-item>
    <config:config-item config:name="ProtectForm" 
config:type="boolean">false</config:config-item>
    <config:config-item config:name="MsWordCompMinLineHeightByFly" 
config:type="boolean">false</config:config-item>
@@ -185,13 +186,13 @@
  <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:flow-with-text="true"/>
-   <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:line-break="strict" style:font-independent-line-spacing="false">
+   <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:line-break="strict" loext:tab-stop-distance="0cm" 
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: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"/>
   </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:paragraph-properties fo:hyphenation-ladder-count="no-limit" 
fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column" 
loext:hyphenation-keep-line="false" 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">
@@ -203,7 +204,7 @@
   <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:style style:name="Heading" style:family="paragraph" 
style:parent-style-name="Standard" style:next-style-name="Text_20_body" 
style:class="chapter">
    <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>
@@ -254,7 +255,7 @@
     </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: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="chapter">
    <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">
@@ -263,14 +264,14 @@
   <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: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="chapter">
    <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: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="chapter">
    <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"/>
@@ -360,61 +361,77 @@
   <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"/>
+  <loext:theme loext:name="Office">
+   <loext:theme-colors loext:name="LibreOffice">
+    <loext:color loext:name="dark1" loext:color="#000000"/>
+    <loext:color loext:name="light1" loext:color="#ffffff"/>
+    <loext:color loext:name="dark2" loext:color="#000000"/>
+    <loext:color loext:name="light2" loext:color="#ffffff"/>
+    <loext:color loext:name="accent1" loext:color="#18a303"/>
+    <loext:color loext:name="accent2" loext:color="#0369a3"/>
+    <loext:color loext:name="accent3" loext:color="#a33e03"/>
+    <loext:color loext:name="accent4" loext:color="#8e03a3"/>
+    <loext:color loext:name="accent5" loext:color="#c99c00"/>
+    <loext:color loext:name="accent6" loext:color="#c9211e"/>
+    <loext:color loext:name="hyperlink" loext:color="#0000ee"/>
+    <loext:color loext:name="followed-hyperlink" loext:color="#551a8b"/>
+   </loext:theme-colors>
+  </loext:theme>
  </office:styles>
  <office:automatic-styles>
   <style:style style:name="Tabelle1" style:family="table">
-   <style:table-properties style:width="22.677cm" table:align="left"/>
+   <style:table-properties style:width="26.049cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle1.A" style:family="table-column">
-   <style:table-column-properties style:column-width="5.773cm"/>
+   <style:table-column-properties style:column-width="6.761cm"/>
   </style:style>
   <style:style style:name="Tabelle1.B" style:family="table-column">
-   <style:table-column-properties style:column-width="5.777cm"/>
+   <style:table-column-properties style:column-width="6.144cm"/>
   </style:style>
   <style:style style:name="Tabelle1.C" style:family="table-column">
-   <style:table-column-properties style:column-width="5.126cm"/>
+   <style:table-column-properties style:column-width="6.872cm"/>
   </style:style>
   <style:style style:name="Tabelle1.D" style:family="table-column">
-   <style:table-column-properties style:column-width="6.001cm"/>
+   <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.D498" 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.528cm" table:align="left"/>
+   <style:table-properties style:width="18.219cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle2.A" style:family="table-column">
-   <style:table-column-properties style:column-width="4.129cm"/>
+   <style:table-column-properties style:column-width="4.286cm"/>
   </style:style>
   <style:style style:name="Tabelle2.B" style:family="table-column">
-   <style:table-column-properties style:column-width="4.209cm"/>
+   <style:table-column-properties style:column-width="4.761cm"/>
   </style:style>
   <style:style style:name="Tabelle2.C" style:family="table-column">
-   <style:table-column-properties style:column-width="4.817cm"/>
+   <style:table-column-properties style:column-width="3.842cm"/>
   </style:style>
   <style:style style:name="Tabelle2.D" style:family="table-column">
-   <style:table-column-properties style:column-width="5.373cm"/>
+   <style:table-column-properties style:column-width="5.33cm"/>
   </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.D9" 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:table-properties style:width="17.941cm" 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:table-column-properties style:column-width="3.852cm"/>
   </style:style>
   <style:style style:name="Tabelle3.B" style:family="table-column">
-   <style:table-column-properties style:column-width="3.838cm"/>
+   <style:table-column-properties style:column-width="3.826cm"/>
   </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:table-column-properties style:column-width="4.069cm"/>
   </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"/>
@@ -423,16 +440,19 @@
    <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:table-properties style:width="16.907cm" 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:table-column-properties style:column-width="3.881cm"/>
   </style:style>
   <style:style style:name="Tabelle4.B" style:family="table-column">
-   <style:table-column-properties style:column-width="4.897cm"/>
+   <style:table-column-properties style:column-width="4.867cm"/>
   </style:style>
   <style:style style:name="Tabelle4.C" style:family="table-column">
-   <style:table-column-properties style:column-width="4.288cm"/>
+   <style:table-column-properties style:column-width="4.255cm"/>
+  </style:style>
+  <style:style style:name="Tabelle4.D" style:family="table-column">
+   <style:table-column-properties style:column-width="3.905cm"/>
   </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"/>
@@ -441,27 +461,27 @@
    <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="22.677cm" table:align="left"/>
+   <style:table-properties style:width="26.795cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle5.A" style:family="table-column">
-   <style:table-column-properties style:column-width="4.602cm"/>
+   <style:table-column-properties style:column-width="6.276cm"/>
   </style:style>
   <style:style style:name="Tabelle5.B" style:family="table-column">
-   <style:table-column-properties style:column-width="4.897cm"/>
+   <style:table-column-properties style:column-width="7.569cm"/>
   </style:style>
   <style:style style:name="Tabelle5.C" style:family="table-column">
-   <style:table-column-properties style:column-width="7.131cm"/>
+   <style:table-column-properties style:column-width="7.451cm"/>
   </style:style>
   <style:style style:name="Tabelle5.D" style:family="table-column">
-   <style:table-column-properties style:column-width="6.047cm"/>
+   <style:table-column-properties style:column-width="5.5cm"/>
   </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.D747" style:family="table-cell">
+  <style:style style:name="Tabelle5.D748" 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="Heading_20_1" style:master-page-name="">
+  <style:style style:name="P1" 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>
@@ -469,51 +489,22 @@
    <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-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P3" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
-   <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-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P4" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
-   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P5" style:family="paragraph" 
style:parent-style-name="Table_20_Contents">
+  <style:style style:name="P3" 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="P6" style:family="paragraph" 
style:parent-style-name="Text_20_body">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
-  </style:style>
-  <style:style style:name="P7" 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="P8" 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="P9" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
-   <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-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P10" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
-   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P11" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
+  <style:style style:name="P4" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
    <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-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P12" 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="P13" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
-  <style:style style:name="P14" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1">
+  <style:style style:name="P5" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1">
    <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
   </style:style>
-  <style:style style:name="P15" 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:name="P6" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
+  <style:style style:name="P7" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
+   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P16" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L2"/>
-  <style:style style:name="P17" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L2">
+  <style:style style:name="P8" 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="T1" style:family="text">
@@ -525,7 +516,6 @@
   <style:style style:name="T3" style:family="text">
    <style:text-properties fo:font-weight="bold"/>
   </style:style>
-  <style:style style:name="T4" 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>
@@ -566,38 +556,6 @@
     <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-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>
   <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"/>
@@ -904,10 +862,10 @@
     </draw:image>
    </draw:frame>
    <text:section text:style-name="Sect1" text:name="BgContainer">
-    <text:p text:style-name="P8">Credits</text:p>
-    <text:p text:style-name="Text_20_body">2098 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2025-09-17 21:01:28.</text:p>
+    <text:p text:style-name="P1"><text:span 
text:style-name="T1">Credits</text:span></text:p>
+    <text:p text:style-name="Text_20_body">2121 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2025-10-23 18:35:55.</text:p>
     <text:p text:style-name="Text_20_body"><text:span 
text:style-name="T2">*</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>
+    <text:h text:style-name="P2" 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"/>
@@ -918,7 +876,7 @@
        <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: 37041<text:line-break/>Joined: 
2000-10-10</text:p>
+       <text:p text:style-name="Table_20_Contents">Caolán 
McNamara<text:line-break/>Commits: 37167<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>
@@ -935,24 +893,24 @@
        <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: 21600<text:line-break/>Joined: 
2000-10-04</text:p>
+       <text:p text:style-name="Table_20_Contents">Stephan 
Bergmann<text:line-break/>Commits: 21530<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="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 
20438<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-12-12</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 
20480<text:line-break/>Joined: <text:span 
text:style-name="T3">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: 10332<text:line-break/>Joined: 
2010-07-29</text:p>
+       <text:p text:style-name="Table_20_Contents">Miklos 
Vajna<text:line-break/>Commits: 10356<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: 9161<text:line-break/>Joined: 
2010-03-23</text:p>
+       <text:p text:style-name="Table_20_Contents">Tor 
Lillqvist<text:line-break/>Commits: 9162<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: 8708<text:line-break/>Joined: 
2008-06-16</text:p>
+       <text:p text:style-name="Table_20_Contents">Michael 
Stahl<text:line-break/>Commits: 8681<text:line-break/>Joined: 
2008-06-16</text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -971,24 +929,24 @@
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 
4468<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-10-30</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 
4541<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-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="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 
4468<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-04-26</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 
4474<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 
4019<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 
4020<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 
3821<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-02-06</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 
3861<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 
3732<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-06-02</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 
3835<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 
3729<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-09-10</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 
3750<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-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">David 
Tardon<text:line-break/>Commits: 3648<text:line-break/>Joined: 
2009-11-12</text:p>
@@ -1016,13 +974,13 @@
        <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">Michael 
Meeks<text:line-break/>Commits: 2532<text:line-break/>Joined: 
2004-08-05</text:p>
+       <text:p text:style-name="Table_20_Contents">Michael 
Meeks<text:line-break/>Commits: 2541<text:line-break/>Joined: 
2004-08-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">Bjoern 
Michaelsen<text:line-break/>Commits: 2510<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="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 
2477<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-25</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 
2489<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-25</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1036,7 +994,7 @@
        <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="T2">*</text:span>Andras Timar<text:line-break/>Commits: 
2078<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-02</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andras Timar<text:line-break/>Commits: 
2079<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-02</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1044,19 +1002,16 @@
        <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">Armin Le Grand 
(Collabora)<text:line-break/>Commits: 1788<text:line-break/>Joined: 
2000-09-22</text:p>
+       <text:p text:style-name="Table_20_Contents">Armin Le Grand 
(Collabora)<text:line-break/>Commits: 1787<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="T2">*</text:span>Matúš Kukan<text:line-break/>Commits: 
1712<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Christopher 
Sherlock<text:line-break/>Commits: 1613<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-02-25</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Christopher 
Sherlock<text:line-break/>Commits: 1615<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-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">Thorsten 
Behrens<text:line-break/>Commits: 1535<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"><text:span 
text:style-name="T2">*</text:span>Takeshi Abe<text:line-break/>Commits: 
1486<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-08</text:span></text:p>
       </table:table-cell>
@@ -1064,27 +1019,27 @@
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Matteo Casalin<text:line-break/>Commits: 
1476<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
1459<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-06-18</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Christian 
Lohmaier<text:line-break/>Commits: 1454<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">Christian 
Lohmaier<text:line-break/>Commits: 1442<text:line-break/>Joined: 
2008-06-01</text:p>
+       <text:p text:style-name="Table_20_Contents">Thorsten 
Behrens<text:line-break/>Commits: 1442<text:line-break/>Joined: 
2001-04-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="T2">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 
1357<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-06-08</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 
1350<text:line-break/>Joined: <text:span 
text:style-name="T3">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">Fridrich 
Štrba<text:line-break/>Commits: 1340<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"><text:span 
text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 
1328<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-03-22</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 
1329<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-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">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>
@@ -1094,13 +1049,16 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>andreas kainz<text:line-break/>Commits: 
1228<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 
1209<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 
1208<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-08-06</text:span></text:p>
+       <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">Daniel Rentz 
[dr]<text:line-break/>Commits: 1206<text:line-break/>Joined: 2000-09-28</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
1163<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Lionel Elie Mamane<text:line-break/>Commits: 
1051<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-15</text:span></text:p>
@@ -1120,7 +1078,7 @@
        <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"><text:span 
text:style-name="T2">*</text:span>Khaled Hosny<text:line-break/>Commits: 
933<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-28</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Khaled Hosny<text:line-break/>Commits: 
935<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-28</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1181,7 +1139,7 @@
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 
680<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-16</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 
685<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
679<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-04-21</text:span></text:p>
@@ -1204,7 +1162,7 @@
        <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-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 
646<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-10-06</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 
651<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-10-06</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1218,12 +1176,12 @@
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Seth Chaiklin<text:line-break/>Commits: 
618<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Rafael Dominguez<text:line-break/>Commits: 
606<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-02-13</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Rene 
Engelhard<text:line-break/>Commits: 606<text:line-break/>Joined: 
2005-03-14</text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <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: 605<text:line-break/>Joined: 
2005-03-14</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Rafael Dominguez<text:line-break/>Commits: 
606<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Adolfo Jayme 
Barrientos<text:line-break/>Commits: 590<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-06-21</text:span></text:p>
@@ -1254,19 +1212,16 @@
        <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="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
467<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-07-05</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 
447<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 
445<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-10-12</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Henry Castro<text:line-break/>Commits: 
414<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Ashod Nakashian<text:line-break/>Commits: 
405<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Henry Castro<text:line-break/>Commits: 
403<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Marco Cecchetti<text:line-break/>Commits: 
399<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-04-14</text:span></text:p>
       </table:table-cell>
@@ -1276,25 +1231,25 @@
       <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="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
390<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Laurent BP<text:line-break/>Commits: 
389<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-08-31</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 
390<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 
386<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-11-01</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Laurent BP<text:line-break/>Commits: 
389<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-08-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="T2">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 
383<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-05</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 
384<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Ivan Timofeev<text:line-break/>Commits: 
380<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-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="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
377<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-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">Oliver-Rainer 
Wittmann<text:line-break/>Commits: 372<text:line-break/>Joined: 
2002-08-09</text:p>
       </table:table-cell>
@@ -1304,11 +1259,11 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Muhammet Kara<text:line-break/>Commits: 
367<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Pranav Kant<text:line-break/>Commits: 
366<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-03-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">Matthias Huetsch 
[mhu]<text:line-break/>Commits: 360<text:line-break/>Joined: 2000-09-28</text:p>
       </table:table-cell>
@@ -1318,11 +1273,11 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>David Ostrovsky<text:line-break/>Commits: 
334<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-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="T2">*</text:span>Andreas Heinisch<text:line-break/>Commits: 
334<text:line-break/>Joined: <text:span 
text:style-name="T3">2019-05-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="T2">*</text:span>Stanislav Horacek<text:line-break/>Commits: 
333<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-12-09</text:span></text:p>
       </table:table-cell>
@@ -1332,19 +1287,22 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mark Hung<text:line-break/>Commits: 
305<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 
301<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-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="T2">*</text:span>Chr. Rossmanith<text:line-break/>Commits: 
300<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 
299<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
286<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>August Sodora<text:line-break/>Commits: 
285<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Ilmari Lauhakangas<text:line-break/>Commits: 
281<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-15</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ilmari Lauhakangas<text:line-break/>Commits: 
284<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-15</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1365,19 +1323,22 @@
       <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"><text:span 
text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
254<text:line-break/>Joined: <text:span 
text:style-name="T3">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">Muthu 
Subramanian<text:line-break/>Commits: 250<text:line-break/>Joined: 
2010-08-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="T2">*</text:span>Robert Antoni Buj 
Gelonch<text:line-break/>Commits: 247<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-06-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="T2">*</text:span>Winfried Donkers<text:line-break/>Commits: 
217<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Dennis Francis<text:line-break/>Commits: 
206<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-11-15</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Dennis Francis<text:line-break/>Commits: 
207<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-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="T2">*</text:span>Tamas Bunth<text:line-break/>Commits: 
203<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-03-08</text:span></text:p>
@@ -1385,11 +1346,11 @@
       <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-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Arkadiy Illarionov<text:line-break/>Commits: 
201<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-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="T2">*</text:span>Jacobo Aragunde 
Pérez<text:line-break/>Commits: 192<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-09-25</text:span></text:p>
       </table:table-cell>
@@ -1399,13 +1360,13 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Marcos Paulo de 
Souza<text:line-break/>Commits: 191<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-09-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">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="T2">*</text:span>Gülşah Köse<text:line-break/>Commits: 
183<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-03-14</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gülşah Köse<text:line-break/>Commits: 
185<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-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="T2">*</text:span>Tünde Tóth<text:line-break/>Commits: 
178<text:line-break/>Joined: <text:span 
text:style-name="T3">2019-03-14</text:span></text:p>
@@ -1413,13 +1374,13 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>François Tigeot<text:line-break/>Commits: 
176<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Pranam Lashkari<text:line-break/>Commits: 
174<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-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="T2">*</text:span>Nagy Tibor<text:line-break/>Commits: 
173<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-04-01</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Pranam Lashkari<text:line-break/>Commits: 
175<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Tibor Nagy<text:line-break/>Commits: 
172<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Philipp Riemer<text:line-break/>Commits: 
171<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-05-25</text:span></text:p>
@@ -1427,56 +1388,64 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Hossein<text:line-break/>Commits: 
171<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
165<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Nigel Hawkins<text:line-break/>Commits: 
160<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-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="T2">*</text:span>Aron Budea<text:line-break/>Commits: 
153<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-12-22</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Aron Budea<text:line-break/>Commits: 
156<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-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="T2">*</text:span>Patrick Luby<text:line-break/>Commits: 
152<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-02-11</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Patrick Luby<text:line-break/>Commits: 
153<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-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="T2">*</text:span>Gert Faller<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Artur Dorda<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Alexander Wilms<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">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"><text:span 
text:style-name="T2">*</text:span>Sarper Akdemir<text:line-break/>Commits: 
150<text:line-break/>Joined: <text:span 
text:style-name="T3">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">Gregor 
Hartmann<text:line-break/>Commits: 141<text:line-break/>Joined: 
2000-10-12</text:p>
+       <text:p text:style-name="Table_20_Contents">Gregor 
Hartmann&lt;gh<text:line-break/>Commits: 141<text:line-break/>Joined: 
2000-10-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="T2">*</text:span>Matthias Freund<text:line-break/>Commits: 
141<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-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="T2">*</text:span>Tomáš Chvátal<text:line-break/>Commits: 
140<text:line-break/>Joined: <text:span 
text:style-name="T3">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="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 
138<text:line-break/>Joined: <text:span 
text:style-name="T3">2021-02-17</text:span></text:p>
-e 
... etc. - the rest is truncated

Reply via email to