[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - 10 commits - cppcanvas/source include/oox include/vcl offapi/com oox/source sd/qa svtools/source vcl/source

Muthu Subramanian sumuthu at collabora.com
Fri Oct 18 06:50:46 PDT 2013


 cppcanvas/source/mtfrenderer/emfplus.cxx             |    5 
 include/oox/drawingml/customshapeproperties.hxx      |    2 
 include/oox/drawingml/fillproperties.hxx             |    1 
 include/oox/drawingml/fillpropertiesgroupcontext.hxx |   24 
 include/vcl/bitmap.hxx                               |    2 
 offapi/com/sun/star/graphic/XGraphicTransformer.idl  |    9 
 oox/source/drawingml/colorchoicecontext.cxx          |    1 
 oox/source/drawingml/customshapeproperties.cxx       |    5 
 oox/source/drawingml/fillproperties.cxx              |   65 
 oox/source/drawingml/fillpropertiesgroupcontext.cxx  |   26 
 oox/source/drawingml/shape.cxx                       |    5 
 sd/qa/unit/data/n762695.pptx                         |binary
 sd/qa/unit/data/xml/n762695_0.xml                    |  243 
 sd/qa/unit/data/xml/n762695_1.xml                    |  634 
 sd/qa/unit/data/xml/n819614_0.xml                    |13840 +++++++++----------
 sd/qa/unit/import-tests.cxx                          |    3 
 svtools/source/graphic/transformer.cxx               |   26 
 svtools/source/graphic/transformer.hxx               |    5 
 vcl/source/gdi/bitmap4.cxx                           |   43 
 19 files changed, 8049 insertions(+), 6890 deletions(-)

New commits:
commit d609c6fc1e8f00af42b0cbb8cc3d7ab404b2918c
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Thu Oct 10 19:37:16 2013 +0530

    Partially revert alpha handling.
    
    Spec talks about x% while documents seem to contain x*1000

diff --git a/oox/source/drawingml/colorchoicecontext.cxx b/oox/source/drawingml/colorchoicecontext.cxx
index 47e2f3a..fac287b 100644
--- a/oox/source/drawingml/colorchoicecontext.cxx
+++ b/oox/source/drawingml/colorchoicecontext.cxx
@@ -87,8 +87,6 @@ Reference< XFastContextHandler > ColorValueContext::createFastChildContext(
     switch( nElement )
     {
         case A_TOKEN( alpha ):
-            mrColor.addTransformation( nElement, rAttribs.getInteger( XML_val, 0 )*PER_PERCENT );
-            break;
         case A_TOKEN( alphaMod ):
         case A_TOKEN( alphaOff ):
         case A_TOKEN( blue ):
commit 813d833590babc971a9942e6bfe9161750ef8dfd
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Thu Oct 10 18:03:51 2013 +0530

    n#812793: clrChange applying for EMFs
    
    Also fixed alpha clrChanges.

diff --git a/oox/source/drawingml/colorchoicecontext.cxx b/oox/source/drawingml/colorchoicecontext.cxx
index 40f1cd6..47e2f3a 100644
--- a/oox/source/drawingml/colorchoicecontext.cxx
+++ b/oox/source/drawingml/colorchoicecontext.cxx
@@ -17,6 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include "oox/drawingml/drawingmltypes.hxx"
 #include "oox/drawingml/colorchoicecontext.hxx"
 #include "oox/helper/attributelist.hxx"
 #include "oox/drawingml/color.hxx"
@@ -86,6 +87,8 @@ Reference< XFastContextHandler > ColorValueContext::createFastChildContext(
     switch( nElement )
     {
         case A_TOKEN( alpha ):
+            mrColor.addTransformation( nElement, rAttribs.getInteger( XML_val, 0 )*PER_PERCENT );
+            break;
         case A_TOKEN( alphaMod ):
         case A_TOKEN( alphaOff ):
         case A_TOKEN( blue ):
diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx
index bb2eb57..bdc2c2f 100644
--- a/oox/source/drawingml/fillproperties.cxx
+++ b/oox/source/drawingml/fillproperties.cxx
@@ -71,6 +71,29 @@ Reference< XGraphic > lclCheckAndApplyDuotoneTransform( BlipFillProperties aBlip
     return xGraphic;
 }
 
+Reference< XGraphic > lclCheckAndApplyChangeColorTransform( const BlipFillProperties &aBlipProps, Reference< XGraphic > xGraphic,
+                                                            const GraphicHelper& rGraphicHelper, const sal_Int32 nPhClr )
+{
+    if( aBlipProps.maColorChangeFrom.isUsed() && aBlipProps.maColorChangeTo.isUsed() )
+    {
+        sal_Int32 nFromColor = aBlipProps.maColorChangeFrom.getColor( rGraphicHelper, nPhClr );
+        sal_Int32 nToColor = aBlipProps.maColorChangeTo.getColor( rGraphicHelper, nPhClr );
+        if ( (nFromColor != nToColor) || aBlipProps.maColorChangeTo.hasTransparency() ) try
+        {
+            sal_Int16 nToTransparence = aBlipProps.maColorChangeTo.getTransparency();
+            sal_Int8 nToAlpha = static_cast< sal_Int8 >( (100 - nToTransparence) * 2.55 );
+            Reference< XGraphicTransformer > xTransformer( aBlipProps.mxGraphic, UNO_QUERY_THROW );
+            xGraphic = xTransformer->colorChange( xGraphic, nFromColor, 9, nToColor, nToAlpha );
+        }
+        catch( Exception& )
+        {
+        }
+    }
+    return xGraphic;
+}
+
+
+
 BitmapMode lclGetBitmapMode( sal_Int32 nToken )
 {
     OSL_ASSERT((nToken & sal_Int32(0xFFFF0000))==0);
@@ -480,21 +503,7 @@ void GraphicProperties::pushToPropMap( PropertyMap& rPropMap, const GraphicHelpe
     {
         // created transformed graphic
         Reference< XGraphic > xGraphic = lclCheckAndApplyDuotoneTransform( maBlipProps, maBlipProps.mxGraphic, rGraphicHelper, nPhClr );
-        if( maBlipProps.maColorChangeFrom.isUsed() && maBlipProps.maColorChangeTo.isUsed() )
-        {
-            sal_Int32 nFromColor = maBlipProps.maColorChangeFrom.getColor( rGraphicHelper, nPhClr );
-            sal_Int32 nToColor = maBlipProps.maColorChangeTo.getColor( rGraphicHelper, nPhClr );
-            if ( (nFromColor != nToColor) || maBlipProps.maColorChangeTo.hasTransparency() ) try
-            {
-                sal_Int16 nToTransparence = maBlipProps.maColorChangeTo.getTransparency();
-                sal_Int8 nToAlpha = static_cast< sal_Int8 >( (100 - nToTransparence) / 39.062 );   // ?!? correct ?!?
-                Reference< XGraphicTransformer > xTransformer( maBlipProps.mxGraphic, UNO_QUERY_THROW );
-                xGraphic = xTransformer->colorChange( maBlipProps.mxGraphic, nFromColor, 9, nToColor, nToAlpha );
-            }
-            catch( Exception& )
-            {
-            }
-        }
+        xGraphic = lclCheckAndApplyChangeColorTransform( maBlipProps, xGraphic, rGraphicHelper, nPhClr );
 
         rPropMap[ PROP_Graphic ] <<= xGraphic;
 
diff --git a/svtools/source/graphic/transformer.cxx b/svtools/source/graphic/transformer.cxx
index 0b0381b..30f07c7 100644
--- a/svtools/source/graphic/transformer.cxx
+++ b/svtools/source/graphic/transformer.cxx
@@ -86,7 +86,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL GraphicTransformer::colorChange(
     BitmapColor aColorTo( static_cast< sal_uInt8 >( nColorTo ), static_cast< sal_uInt8 >( nColorTo >> 8 ), static_cast< sal_uInt8 >( nColorTo  >> 16 ) );
     const sal_uInt8 cIndexFrom = aColorFrom.GetBlueOrIndex();
 
-    if ( aGraphic.GetType() == GRAPHIC_BITMAP )
+    if ( aGraphic.GetType() == GRAPHIC_BITMAP || aGraphic.GetType() == GRAPHIC_GDIMETAFILE )
     {
         BitmapEx    aBitmapEx( aGraphic.GetBitmapEx() );
         Bitmap      aBitmap( aBitmapEx.GetBitmap() );
@@ -100,7 +100,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL GraphicTransformer::colorChange(
         }
         else if ( aBitmapEx.IsTransparent() )
         {
-            if ( ( nAlphaTo == 0 ) || ( nAlphaTo == sal::static_int_cast<sal_Int8>(0xff) ) )
+            if ( nAlphaTo == sal::static_int_cast<sal_Int8>(0xff) )
             {
                 Bitmap aMask( aBitmapEx.GetMask() );
                 Bitmap aMask2( aBitmap.CreateMask( aColorFrom, nTolerance ) );
@@ -111,7 +111,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL GraphicTransformer::colorChange(
             else
             {
                 AlphaMask aAlphaMask( aBitmapEx.GetMask() );
-                setAlpha( aBitmap, aAlphaMask, cIndexFrom, nAlphaTo );
+                setAlpha( aBitmap, aAlphaMask, cIndexFrom, 0xff - nAlphaTo );
                 aBitmap.Replace( aColorFrom, aColorTo, nTolerance );
                 aGraphic = ::Graphic( BitmapEx( aBitmap, aAlphaMask ) );
             }
commit b5e615afa9955997b852bb9330d0e5abd0b7d24a
Author: Jacobo Aragunde Pérez <jaragunde at igalia.com>
Date:   Tue Oct 15 18:14:09 2013 +0200

    sd: Fix output for unit test file n819614.pptx
    
    Change-Id: Ida2d2bab3a30beaa8e686a23355e4d6f41182f3f
    Reviewed-on: https://gerrit.libreoffice.org/6257
    Tested-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
index 050ba3f..713ad74 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -21,12 +21,7 @@
    <Line2 column1="0.000000" column2="101.000000" column3="0.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OOXColor" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="OOXData" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="OOXLayout" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="OOXStyle" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
+  <InteropGrabBag/>
  </XShape>
  <XShape positionX="182" positionY="2544" sizeX="25125" sizeY="16293" type="com.sun.star.drawing.GroupShape">
   <XShapes>
commit df79773c20d2588b721b050e5c4aea3d4534f56b
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Fri Oct 18 19:19:56 2013 +0530

    n#819614: Lines running off the screens.
    
    Merged:
    cd40d2ba9e8ed17cc870606b17ac2dffceb2813d
    d5fc6f61416567b044b72ffa7acdcdb0dc8e5c5a (only n819614_0.xml)

diff --git a/include/oox/drawingml/customshapeproperties.hxx b/include/oox/drawingml/customshapeproperties.hxx
index e44f20db..00f47de 100644
--- a/include/oox/drawingml/customshapeproperties.hxx
+++ b/include/oox/drawingml/customshapeproperties.hxx
@@ -130,7 +130,7 @@ public:
 
     void pushToPropSet( const ::oox::core::FilterBase& rFilterBase,
             const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > & xPropSet,
-                        const ::com::sun::star::uno::Reference < ::com::sun::star::drawing::XShape > & xShape);
+                        const ::com::sun::star::uno::Reference < ::com::sun::star::drawing::XShape > & xShape, const ::com::sun::star::awt::Size &aSize );
 
     sal_Int32 getShapePresetType() const { return mnShapePresetType; }
     OUString getShapePresetTypeName() const;
diff --git a/oox/source/drawingml/customshapeproperties.cxx b/oox/source/drawingml/customshapeproperties.cxx
index aab5cc4..d83b3e3 100644
--- a/oox/source/drawingml/customshapeproperties.cxx
+++ b/oox/source/drawingml/customshapeproperties.cxx
@@ -109,7 +109,7 @@ static OUString GetConnectorShapeType( sal_Int32 nType )
 
 
 void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFilterBase */,
-    const Reference < XPropertySet >& xPropSet, const Reference < XShape > & xShape )
+    const Reference < XPropertySet >& xPropSet, const Reference < XShape > & xShape, const awt::Size &aSize )
 {
     if ( mnShapePresetType >= 0 )
     {
@@ -213,8 +213,7 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
         aPropertyMap[ PROP_Type ] <<= OUString( "ooxml-non-primitive" );
         aPropertyMap[ PROP_MirroredX ] <<= Any( mbMirroredX );
         aPropertyMap[ PROP_MirroredY ] <<= Any( mbMirroredY );
-        awt::Size aSize;
-        awt::Rectangle aViewBox( 0, 0, aSize.Width * 360, aSize.Height * 360 );
+        awt::Rectangle aViewBox( 0, 0, aSize.Width, aSize.Height );
         aPropertyMap[ PROP_ViewBox ] <<= aViewBox;
 
         Sequence< EnhancedCustomShapeAdjustmentValue > aAdjustmentValues( maAdjustmentGuideList.size() );
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 2e65b27..48e208c 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -596,7 +596,7 @@ Reference< XShape > Shape::createAndInsert(
             }
 
             SAL_INFO("oox", "==cscode== shape name: '" << msName << "'");
-            mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, mxShape );
+            mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, mxShape, maSize );
         }
         else if( getTextBody() )
             getTextBody()->getTextProperties().pushVertSimulation();
diff --git a/sd/qa/unit/data/xml/n762695_0.xml b/sd/qa/unit/data/xml/n762695_0.xml
index dd0922f..ec66dad 100644
--- a/sd/qa/unit/data/xml/n762695_0.xml
+++ b/sd/qa/unit/data/xml/n762695_0.xml
@@ -82,7 +82,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="4820911" height="3908235"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
diff --git a/sd/qa/unit/data/xml/n762695_1.xml b/sd/qa/unit/data/xml/n762695_1.xml
index 5e9715a..5dbc23a 100644
--- a/sd/qa/unit/data/xml/n762695_1.xml
+++ b/sd/qa/unit/data/xml/n762695_1.xml
@@ -82,7 +82,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="6477000" height="2743200"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
@@ -168,7 +168,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="6365875" height="3430587"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
index 0c88665..050ba3f 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -1,6866 +1,9 @@
 <?xml version="1.0"?>
 <XShapes>
- <XShape positionX="10751" positionY="3496" sizeX="1563" sizeY="253" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="1564.000000" column2="0.000000" column3="10751.000000"/>
-   <Line2 column1="0.000000" column2="254.000000" column3="3496.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="1564" type="0"/>
-        <Second value="127" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="1564" type="0"/>
-        <Second value="337" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="337" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="22386" positionY="5702" sizeX="363" sizeY="2071" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="364.000000" column2="0.000000" column3="22386.000000"/>
-   <Line2 column1="0.000000" column2="2072.000000" column3="5702.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="2072" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="364" type="0"/>
-        <Second value="2072" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="22386" positionY="5702" sizeX="363" sizeY="810" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="364.000000" column2="0.000000" column3="22386.000000"/>
-   <Line2 column1="0.000000" column2="811.000000" column3="5702.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="811" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="364" type="0"/>
-        <Second value="811" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="11167" sizeY="833" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="11168.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="834.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="760" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="11168" type="0"/>
-        <Second value="760" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="11168" type="0"/>
-        <Second value="834" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="4508" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="4509.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="4509" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="4509" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="3164" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="3165.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3165" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="3165" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="362" sizeY="7482" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="363.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="7483.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="7483" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="363" type="0"/>
-        <Second value="7483" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="5902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="5903.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="5903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="5903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="19023" positionY="7078" sizeX="253" sizeY="629" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="254.000000" column2="0.000000" column3="19023.000000"/>
-   <Line2 column1="0.000000" column2="630.000000" column3="7078.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="127" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="127" type="0"/>
-        <Second value="630" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="278" type="0"/>
-        <Second value="630" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="361" sizeY="740" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="362.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="741.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="741" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="362" type="0"/>
-        <Second value="741" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="7295" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="7296.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="7296" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="7296" type="0"/>
-        <Second value="903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="3271" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="3272.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3272" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="3272" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="1991" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="1992.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1992" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="1992" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="712" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="713.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="713" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="713" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="4012" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="4013.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="4013" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="4013" type="0"/>
-        <Second value="903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12289" positionY="13817" sizeX="337" sizeY="1988" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="338.000000" column2="0.000000" column3="12289.000000"/>
-   <Line2 column1="0.000000" column2="1989.000000" column3="13817.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1989" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="338" type="0"/>
-        <Second value="1989" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12289" positionY="13817" sizeX="337" sizeY="736" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="338.000000" column2="0.000000" column3="12289.000000"/>
-   <Line2 column1="0.000000" column2="737.000000" column3="13817.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="737" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="338" type="0"/>
-        <Second value="737" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="463" sizeY="7376" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="464.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="7377.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="7377" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="464" type="0"/>
-        <Second value="7377" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="463" sizeY="5850" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="464.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="5851.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="5851" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="464" type="0"/>
-        <Second value="5851" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="458" sizeY="12372" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="459.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="12373.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="12373" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="459" type="0"/>
-        <Second value="12373" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="462" sizeY="11249" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="463.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="11250.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="11250" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="463" type="0"/>
-        <Second value="11250" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="397" sizeY="3176" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="398.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="3177.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3177" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="398" type="0"/>
-        <Second value="3177" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="397" sizeY="1948" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="398.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="1949.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1949" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="398" type="0"/>
-        <Second value="1949" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="389" sizeY="727" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="390.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="728.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="728" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="390" type="0"/>
-        <Second value="728" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="289" sizeY="776" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="290.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="777.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="777" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="290" type="0"/>
-        <Second value="777" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="309" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465af" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465af" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="310.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list