Blame SOURCES/0026-bnc-862510-Improve-handling-of-OOXML-gradients.patch

f085be
From 7a34e0815d541709e96fcb7162895e90a8d08f30 Mon Sep 17 00:00:00 2001
f085be
From: Tor Lillqvist <tml@collabora.com>
f085be
Date: Mon, 14 Jul 2014 20:23:22 +0300
f085be
Subject: [PATCH 026/137] bnc#862510: Improve handling of OOXML gradients
f085be
f085be
OOXML gradients can have an arbitrary number of "stops". LibreOffice gradients
f085be
have just a start and end colour, plus an optional uniformly coloured border
f085be
(on the "start" side). In addition, LibreOffice has the "axial" gradient mode,
f085be
which means the gradient is reflected in the middle.
f085be
f085be
It is thus obviously impossible in general to losslessly map OOXML gradients
f085be
to LibreOffice ones. But let's try a bit harder than earlier to get visually
f085be
more similar result, in at least some simple sample cases.
f085be
f085be
We look for the widest gradient segment and use that for the start and end
f085be
colours of the LibreOffice gradient.
f085be
f085be
Also, map an OOXML gradient to an axial LibreOffice gradient only if it is
f085be
symmetrical. Also, use the border property when suitable. In general, look for
f085be
the widest OOXML gradient segment (once a segment corresponding to the
f085be
LibreOffice gradient border, if any, has been accounted for) and use that as
f085be
the LibreOffice gradient.
f085be
f085be
Possibly some perceptionally better heuristic should be used... Like, if we
f085be
have a three-segment gradient, with a wide gradient segment between two
f085be
visually very similar colours (for example, two shades of red), and a narrower
f085be
segment ending with a visually very different colour (for example, yellow), it
f085be
probably would be best to represent that in LibreOffice as a gradient from the
f085be
first red shade to yellow, instead of as a gradient between the two shades of
f085be
red. Or even, if a first or last gradient segment is between very similar
f085be
colours, equalize those start and end colours, thus using a border colour in
f085be
LibreOffice instead. The possibilities for bikeshedding are endless.
f085be
f085be
I am sure there are instances where the old code (by accident?) produced
f085be
visually more pleasing results... But hopefully this works more pleasingly and
f085be
consistently in a larger number of cases.
f085be
f085be
Change-Id: If153e986ad943454307e3ba718479d5ac4cdc7ab
f085be
Reviewed-on: https://gerrit.libreoffice.org/10359
f085be
Reviewed-by: Andras Timar <andras.timar@collabora.com>
f085be
Tested-by: Andras Timar <andras.timar@collabora.com>
f085be
---
f085be
 include/sal/log-areas.dox               |   1 +
f085be
 oox/Library_oox.mk                      |   6 +-
f085be
 oox/source/drawingml/fillproperties.cxx | 212 ++++++++++++++++++++++++++++----
f085be
 sd/qa/unit/data/xml/n819614_0.xml       | 102 +++++++--------
f085be
 4 files changed, 244 insertions(+), 77 deletions(-)
f085be
f085be
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
f085be
index 7d8d70f..46656e2 100644
f085be
--- a/include/sal/log-areas.dox
f085be
+++ b/include/sal/log-areas.dox
f085be
@@ -140,6 +140,7 @@ certain functionality.
f085be
 @li @c filter.xslt - xslt import/export
f085be
 @li @c oox.cscode - see oox/source/drawingml/customshapes/README
f085be
 @li @c oox.drawingml - DrawingML
f085be
+@li @c oox.drawingml.gradient
f085be
 @li @c oox.ppt - pptx filter
f085be
 @li @c oox.storage - ZipStorage class
f085be
 @li @c oox.xmlstream - XmlStream class
f085be
diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk
f085be
index d933b56..a8b2161 100644
f085be
--- a/oox/Library_oox.mk
f085be
+++ b/oox/Library_oox.mk
f085be
@@ -59,16 +59,18 @@ $(eval $(call gb_Library_use_libraries,oox,\
f085be
 	$(gb_UWINAPI) \
f085be
 ))
f085be
 
f085be
-ifeq ($(TLS),OPENSSL)
f085be
 $(eval $(call gb_Library_use_externals,oox,\
f085be
 	boost_headers \
f085be
+))
f085be
+
f085be
+ifeq ($(TLS),OPENSSL)
f085be
+$(eval $(call gb_Library_use_externals,oox,\
f085be
 	openssl \
f085be
 	openssl_headers \
f085be
 ))
f085be
 else
f085be
 ifeq ($(TLS),NSS)
f085be
 $(eval $(call gb_Library_use_externals,oox,\
f085be
-       boost_headers \
f085be
        plc4 \
f085be
        nss3 \
f085be
 ))
f085be
diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx
f085be
index 99026a9..a5eb026 100644
f085be
--- a/oox/source/drawingml/fillproperties.cxx
f085be
+++ b/oox/source/drawingml/fillproperties.cxx
f085be
@@ -17,6 +17,9 @@
f085be
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
f085be
  */
f085be
 
f085be
+#include <iterator>
f085be
+#include <boost/utility.hpp>
f085be
+
f085be
 #include "oox/drawingml/fillproperties.hxx"
f085be
 
f085be
 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
f085be
@@ -340,8 +343,8 @@ void FillProperties::pushToPropMap( ShapePropertyMap& rPropMap,
f085be
                     aGradient.StartIntensity = 100;
f085be
                     aGradient.EndIntensity = 100;
f085be
 
f085be
-                    size_t nColorCount = maGradientProps.maGradientStops.size();
f085be
-                    if( nColorCount > 1 )
f085be
+                    // Old code, values in aGradient overwritten in many cases by newer code below
f085be
+                    if( maGradientProps.maGradientStops.size() > 1 )
f085be
                     {
f085be
                         aGradient.StartColor = maGradientProps.maGradientStops.begin()->second.getColor( rGraphicHelper, nPhClr );
f085be
                         aGradient.EndColor = maGradientProps.maGradientStops.rbegin()->second.getColor( rGraphicHelper, nPhClr );
f085be
@@ -377,33 +380,194 @@ void FillProperties::pushToPropMap( ShapePropertyMap& rPropMap,
f085be
                     }
f085be
                     else
f085be
                     {
f085be
-                        /*  Try to detect a VML axial gradient. This type of
f085be
-                            gradient is simulated by a 3-point linear gradient.
f085be
-                            Even if it's a multi-color linear gradient, its probably better to assume
f085be
-                            axial gradient, when there are 3 or more points.
f085be
-                         */
f085be
-                        bool bAxial = (nColorCount >= 3);
f085be
-                        aGradient.Style = bAxial ? awt::GradientStyle_AXIAL : awt::GradientStyle_LINEAR;
f085be
-                        nDmlAngle = maGradientProps.moShadeAngle.get( 0 ) - nShapeRotation;
f085be
-                        // convert DrawingML angle (in 1/60000 degrees) to API angle (in 1/10 degrees)
f085be
-                        aGradient.Angle = static_cast< sal_Int16 >( (4500 - (nDmlAngle / (PER_DEGREE / 10))) % 3600 );
f085be
-                        if( bAxial )
f085be
+                        // A copy of the gradient stops for local modification
f085be
+                        GradientFillProperties::GradientStopMap aGradientStops(maGradientProps.maGradientStops);
f085be
+
f085be
+                        // Add a fake gradient stop at 0% and 100% if necessary, so that the gradient always starts
f085be
+                        // at 0% and ends at 100%, to make following logic clearer (?).
f085be
+                        if( aGradientStops.find(0.0) == aGradientStops.end() )
f085be
+                        {
f085be
+                            // temp variable required
f085be
+                            Color aFirstColor(aGradientStops.begin()->second);
f085be
+                            aGradientStops[0.0] = aFirstColor;
f085be
+                        }
f085be
+
f085be
+                        if( aGradientStops.find(1.0) == aGradientStops.end() )
f085be
+                        {
f085be
+                            // ditto
f085be
+                            Color aLastColor(aGradientStops.rbegin()->second);
f085be
+                            aGradientStops[1.0] = aLastColor;
f085be
+                        }
f085be
+
f085be
+                        // Check if the gradient is symmetric, which we will emulate with an "axial" gradient.
f085be
+                        bool bSymmetric(true);
f085be
+                        {
f085be
+                            GradientFillProperties::GradientStopMap::const_iterator aItA( aGradientStops.begin() );
f085be
+                            GradientFillProperties::GradientStopMap::const_iterator aItZ( boost::prior( aGradientStops.end() ) );
f085be
+                            while( bSymmetric && aItA->first < aItZ->first )
f085be
+                            {
f085be
+                                if( aItA->second.getColor( rGraphicHelper, nPhClr ) != aItZ->second.getColor( rGraphicHelper, nPhClr ) ||
f085be
+                                    aItA->second.getTransparency() != aItZ->second.getTransparency() )
f085be
+                                    bSymmetric = false;
f085be
+                                else
f085be
+                                {
f085be
+                                    aItA++;
f085be
+                                    aItZ = boost::prior(aItZ);
f085be
+                                }
f085be
+                            }
f085be
+                            // Don't be fooled if the middlemost stop isn't at 0.5.
f085be
+                            if( bSymmetric && aItA == aItZ && aItA->first != 0.5 )
f085be
+                                bSymmetric = false;
f085be
+
f085be
+                            // If symmetric, do the rest of the logic for just a half.
f085be
+                            if( bSymmetric )
f085be
+                            {
f085be
+                                // aItZ already points to the colour for the middle, but insert a fake stop at the
f085be
+                                // exact middle if necessary.
f085be
+                                if( aItA->first != aItZ->first )
f085be
+                                {
f085be
+                                    Color aMiddleColor = aItZ->second;
f085be
+                                    aGradientStops[0.5] = aMiddleColor;
f085be
+                                }
f085be
+                                // Drop the rest of the stops
f085be
+                                while( aGradientStops.rbegin()->first > 0.5 )
f085be
+                                    aGradientStops.erase( aGradientStops.rbegin()->first );
f085be
+                            }
f085be
+                        }
f085be
+
f085be
+                        SAL_INFO("oox.drawingml.gradient", "symmetric: " << (bSymmetric ? "YES" : "NO") <<
f085be
+                                 ", number of stops: " << aGradientStops.size());
f085be
+                        for (GradientFillProperties::GradientStopMap::iterator p(aGradientStops.begin());
f085be
+                             p != aGradientStops.end();
f085be
+                             p++)
f085be
+                            SAL_INFO("oox.drawingml.gradient", "  " << std::distance(aGradientStops.begin(), p) << ": " <<
f085be
+                                     p->first << ": " <<
f085be
+                                     std::hex << p->second.getColor( rGraphicHelper, nPhClr ) << std::dec <<
f085be
+                                     "@" << (100-p->second.getTransparency()) << "%");
f085be
+
f085be
+                        // Now estimate the simple LO style gradient (only two stops, at n% and 100%, where n ==
f085be
+                        // the "border") that best emulates the gradient between begin() and prior(end()).
f085be
+
f085be
+                        // First look for the largest segment in the gradient.
f085be
+                        GradientFillProperties::GradientStopMap::iterator aIt(aGradientStops.begin());
f085be
+                        double nWidestWidth = -1;
f085be
+                        GradientFillProperties::GradientStopMap::iterator aWidestSegmentStart;
f085be
+                        aIt++;
f085be
+                        while( aIt != aGradientStops.end() )
f085be
+                        {
f085be
+                            if( aIt->first - boost::prior(aIt)->first > nWidestWidth )
f085be
+                            {
f085be
+                                nWidestWidth = aIt->first - boost::prior(aIt)->first;
f085be
+                                aWidestSegmentStart = boost::prior(aIt);
f085be
+                            }
f085be
+                            aIt++;
f085be
+                        }
f085be
+                        assert( nWidestWidth > 0 );
f085be
+
f085be
+                        double nBorder = 0;
f085be
+                        bool bSwap(false);
f085be
+
f085be
+                        // Do we have just two segments, and either one is of uniform colour, or three or more
f085be
+                        // segments, and the widest one is the first or last one, and is it of uniform colour? If
f085be
+                        // so, deduce the border from it, and drop that segment.
f085be
+                        if( aGradientStops.size() == 3 &&
f085be
+                            aGradientStops.begin()->second.getColor( rGraphicHelper, nPhClr ) == boost::next(aGradientStops.begin())->second.getColor( rGraphicHelper, nPhClr ) &&
f085be
+                            aGradientStops.begin()->second.getTransparency() == boost::next(aGradientStops.begin())->second.getTransparency( ) )
f085be
+                        {
f085be
+                            // Two segments, first is uniformly coloured
f085be
+                            SAL_INFO("oox.drawingml.gradient", "two segments, first is uniformly coloured");
f085be
+                            nBorder = boost::next(aGradientStops.begin())->first - aGradientStops.begin()->first;
f085be
+                            aGradientStops.erase(aGradientStops.begin());
f085be
+                            aWidestSegmentStart = aGradientStops.begin();
f085be
+                        }
f085be
+                        else if( !bSymmetric &&
f085be
+                                 aGradientStops.size() == 3 &&
f085be
+                                 boost::next(aGradientStops.begin())->second.getColor( rGraphicHelper, nPhClr ) == boost::prior(aGradientStops.end())->second.getColor( rGraphicHelper, nPhClr ) &&
f085be
+                                 boost::next(aGradientStops.begin())->second.getTransparency() == boost::prior(aGradientStops.end())->second.getTransparency( ) )
f085be
                         {
f085be
-                            GradientFillProperties::GradientStopMap::const_iterator aIt = maGradientProps.maGradientStops.begin();
f085be
-                            // Try to find the axial median
f085be
-                            for(size_t i=0;i
f085be
-                                ++aIt;
f085be
-                            // API StartColor is inner color in axial gradient
f085be
-                            // aIt->second.hasColor() kind would be better than Color != API_RGB_WHITE
f085be
-                            if( aGradient.StartColor == aGradient.EndColor &&
f085be
-                                ( !aIt->second.hasTransparency() || aIt->second.getColor( rGraphicHelper, nPhClr ) != API_RGB_WHITE ) )
f085be
+                            // Two segments, second is uniformly coloured
f085be
+                            SAL_INFO("oox.drawingml.gradient", "two segments, second is uniformly coloured");
f085be
+                            nBorder = boost::prior(aGradientStops.end())->first - boost::next(aGradientStops.begin())->first;
f085be
+                            aGradientStops.erase(boost::next(aGradientStops.begin()));
f085be
+                            aWidestSegmentStart = aGradientStops.begin();
f085be
+                            bSwap = true;
f085be
+                            nShapeRotation = 180*60000 - nShapeRotation;
f085be
+                        }
f085be
+                        else if( !bSymmetric &&
f085be
+                                 aGradientStops.size() >= 4 &&
f085be
+                                 aWidestSegmentStart->second.getColor( rGraphicHelper, nPhClr ) == boost::next(aWidestSegmentStart)->second.getColor( rGraphicHelper, nPhClr ) &&
f085be
+                                 aWidestSegmentStart->second.getTransparency() == boost::next(aWidestSegmentStart)->second.getTransparency() &&
f085be
+                                 ( aWidestSegmentStart == aGradientStops.begin() ||
f085be
+                                   boost::next(aWidestSegmentStart) == boost::prior( aGradientStops.end() ) ) )
f085be
+                        {
f085be
+                            // Not symmetric, three or more segments, the widest is first or last and is uniformly coloured
f085be
+                            SAL_INFO("oox.drawingml.gradient", "first or last segment is widest and is uniformly coloured");
f085be
+                            nBorder = boost::next(aWidestSegmentStart)->first - aWidestSegmentStart->first;
f085be
+
f085be
+                            // If it's the last segment that is uniformly coloured, rotate the gradient 180
f085be
+                            // degrees and swap start and end colours
f085be
+                            if( boost::next(aWidestSegmentStart) == boost::prior( aGradientStops.end() ) )
f085be
                             {
f085be
-                                aGradient.StartColor = aIt->second.getColor( rGraphicHelper, nPhClr );
f085be
+                                bSwap = true;
f085be
+                                nShapeRotation = 180*60000 - nShapeRotation;
f085be
                             }
f085be
 
f085be
-                            if( nStartTrans == nEndTrans && aIt->second.hasTransparency() )
f085be
-                                nStartTrans = aIt->second.getTransparency()*255/100;
f085be
+                            aGradientStops.erase( aWidestSegmentStart );
f085be
+
f085be
+                            // Look for which is widest now
f085be
+                            aIt = boost::next(aGradientStops.begin());
f085be
+                            nWidestWidth = -1;
f085be
+                            while( aIt != aGradientStops.end() )
f085be
+                            {
f085be
+                                if( aIt->first - boost::prior(aIt)->first > nWidestWidth )
f085be
+                                {
f085be
+                                    nWidestWidth = aIt->first - boost::prior(aIt)->first;
f085be
+                                    aWidestSegmentStart = boost::prior(aIt);
f085be
+                                }
f085be
+                                aIt++;
f085be
+                            }
f085be
+                        }
f085be
+                        SAL_INFO("oox.drawingml.gradient", "widest segment start: " << aWidestSegmentStart->first << ", border: " << nBorder);
f085be
+                        assert( (!bSymmetric && !bSwap) || !(bSymmetric && bSwap) );
f085be
+
f085be
+                        // Now we have a potential border and a largest segment. Use those.
f085be
+
f085be
+                        aGradient.Style = bSymmetric ? awt::GradientStyle_AXIAL : awt::GradientStyle_LINEAR;
f085be
+                        nDmlAngle = maGradientProps.moShadeAngle.get( 0 ) - nShapeRotation;
f085be
+                        // convert DrawingML angle (in 1/60000 degrees) to API angle (in 1/10 degrees)
f085be
+                        aGradient.Angle = static_cast< sal_Int16 >( (4500 - (nDmlAngle / (PER_DEGREE / 10))) % 3600 );
f085be
+                        Color aStartColor, aEndColor;
f085be
+                        if( bSymmetric )
f085be
+                        {
f085be
+                            aStartColor = boost::next(aWidestSegmentStart)->second;
f085be
+                            aEndColor = aWidestSegmentStart->second;
f085be
+                            nBorder *= 2;
f085be
+                        }
f085be
+                        else if( bSwap )
f085be
+                        {
f085be
+                            aStartColor = boost::next(aWidestSegmentStart)->second;
f085be
+                            aEndColor = aWidestSegmentStart->second;
f085be
                         }
f085be
+                        else
f085be
+                        {
f085be
+                            aStartColor = aWidestSegmentStart->second;
f085be
+                            aEndColor = boost::next(aWidestSegmentStart)->second;
f085be
+                        }
f085be
+
f085be
+                        SAL_INFO("oox.drawingml.gradient", "start color: " << std::hex << aStartColor.getColor( rGraphicHelper, nPhClr ) << std::dec <<
f085be
+                                 "@" << (100-aStartColor.getTransparency()) << "%" <<
f085be
+                                 ", end color: " << std::hex << aEndColor.getColor( rGraphicHelper, nPhClr ) << std::dec <<
f085be
+                                 "@" << (100-aEndColor.getTransparency()) << "%");
f085be
+
f085be
+                        aGradient.StartColor = aStartColor.getColor( rGraphicHelper, nPhClr );
f085be
+                        aGradient.EndColor = aEndColor.getColor( rGraphicHelper, nPhClr );
f085be
+
f085be
+                        if( aStartColor.hasTransparency() )
f085be
+                            nStartTrans = aStartColor.getTransparency()*255/100;
f085be
+                        if( aEndColor.hasTransparency() )
f085be
+                            nEndTrans = aEndColor.getTransparency()*255/100;
f085be
+
f085be
+                        aGradient.Border = 100*nBorder;
f085be
                     }
f085be
 
f085be
                     // push gradient or named gradient to property map
f085be
diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
f085be
index 3c0b5b1..e9e724c 100644
f085be
--- a/sd/qa/unit/data/xml/n819614_0.xml
f085be
+++ b/sd/qa/unit/data/xml/n819614_0.xml
f085be
@@ -3346,7 +3346,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11049" positionY="2544" sizeX="2531" sizeY="1078" type="com.sun.star.drawing.CustomShape" text="Test1
" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3411,7 +3411,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="182" positionY="4529" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="A " fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3476,7 +3476,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="792" positionY="5919" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="A1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3606,7 +3606,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="792" positionY="7189" sizeX="2728" sizeY="1268" type="com.sun.star.drawing.CustomShape" text="A3" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3671,7 +3671,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="792" positionY="8671" sizeX="2653" sizeY="1156" type="com.sun.star.drawing.CustomShape" text="A4" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3736,7 +3736,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="791" positionY="9939" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="A5" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3801,7 +3801,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="741" positionY="11210" sizeX="2850" sizeY="1151" type="com.sun.star.drawing.CustomShape" text="A6" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3866,7 +3866,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="792" positionY="12483" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="A7" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3931,7 +3931,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="1430" positionY="13753" sizeX="2683" sizeY="1036" type="com.sun.star.drawing.CustomShape" text="A7i" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -3996,7 +3996,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="1369" positionY="14901" sizeX="2694" sizeY="1062" type="com.sun.star.drawing.CustomShape" text="A7ii" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4061,7 +4061,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="730" positionY="16071" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="A8" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4126,7 +4126,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4319" positionY="4529" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="B" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4191,7 +4191,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="5005" positionY="5921" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4256,7 +4256,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4885" positionY="17689" sizeX="2922" sizeY="1148" type="com.sun.star.drawing.CustomShape" text="B2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4321,7 +4321,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="7277" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B3" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4386,7 +4386,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="8585" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B4" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4451,7 +4451,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="9893" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B5" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4516,7 +4516,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="11200" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B6" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4581,7 +4581,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="5382" positionY="12508" sizeX="2663" sizeY="1210" type="com.sun.star.drawing.CustomShape" text="B6i" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4646,7 +4646,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="13816" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B7" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4711,7 +4711,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="15124" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B8" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4776,7 +4776,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="4946" positionY="16432" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="B9" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4841,7 +4841,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="7973" positionY="4529" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="C" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4906,7 +4906,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8659" positionY="5921" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="C1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -4971,7 +4971,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8659" positionY="7201" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="C2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5036,7 +5036,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8659" positionY="8480" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="C3" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5101,7 +5101,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8659" positionY="9759" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="C4" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5166,7 +5166,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8659" positionY="11039" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="C5" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5231,7 +5231,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="8686" positionY="12309" sizeX="2663" sizeY="1100" type="com.sun.star.drawing.CustomShape" text="C6" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5296,7 +5296,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11253" positionY="4526" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="D" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5361,7 +5361,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11817" positionY="5866" sizeX="2743" sizeY="1365" type="com.sun.star.drawing.CustomShape" text="D1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5426,7 +5426,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="12481" positionY="7416" sizeX="2477" sizeY="1087" type="com.sun.star.drawing.CustomShape" text="D1i" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5491,7 +5491,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="12489" positionY="8677" sizeX="2466" sizeY="1007" type="com.sun.star.drawing.CustomShape" text="D1ii" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5621,7 +5621,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11990" positionY="16505" sizeX="2743" sizeY="1033" type="com.sun.star.drawing.CustomShape" text="D2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5751,7 +5751,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11991" positionY="10999" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="D4" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5816,7 +5816,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="11991" positionY="12479" sizeX="2973" sizeY="1337" type="com.sun.star.drawing.CustomShape" text="D5" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5881,7 +5881,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="12627" positionY="13962" sizeX="2444" sizeY="1183" type="com.sun.star.drawing.CustomShape" text="D5i" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -5946,7 +5946,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="12627" positionY="15233" sizeX="2444" sizeY="1143" type="com.sun.star.drawing.CustomShape" text="D5ii" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6011,7 +6011,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="14956" positionY="4526" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="E" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6076,7 +6076,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="15642" positionY="5918" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="E1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6141,7 +6141,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="15642" positionY="7198" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="E2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6206,7 +6206,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="15642" positionY="8477" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="E3" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6271,7 +6271,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="18239" positionY="4526" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="F" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6336,7 +6336,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="18875" positionY="5947" sizeX="2740" sizeY="1130" type="com.sun.star.drawing.CustomShape" text="F1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6401,7 +6401,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="19301" positionY="7223" sizeX="2636" sizeY="968" type="com.sun.star.drawing.CustomShape" text="F1i" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6466,7 +6466,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="18972" positionY="11059" sizeX="2629" sizeY="1230" type="com.sun.star.drawing.CustomShape" text="F2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6596,7 +6596,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="18972" positionY="8371" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="F4" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6661,7 +6661,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="18972" positionY="9715" sizeX="2743" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="F5" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6726,7 +6726,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="22111" positionY="4457" sizeX="2743" sizeY="1244" type="com.sun.star.drawing.CustomShape" text="G" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6791,7 +6791,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="22750" positionY="5947" sizeX="2557" sizeY="1131" type="com.sun.star.drawing.CustomShape" text="G1" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
@@ -6856,7 +6856,7 @@
f085be
    </XShape>
f085be
    <XShape positionX="22750" positionY="7224" sizeX="2421" sizeY="1100" type="com.sun.star.drawing.CustomShape" text="G2" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="12" textRightDistance="12" textUpperDistance="12" textLowerDistance="12" 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="GRADIENT" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
f085be
     <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
-    <FillGradient style="AXIAL" startColor="ffffff" endColor="ffffff" angle="1800" border="0" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
+    <FillGradient style="LINEAR" startColor="ffffff" endColor="ffffff" angle="1800" border="35" xOffset="0" yOffset="0" startIntensity="100" endIntensity="100" stepCount="0"/>
f085be
     <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
f085be
     <FillBitmap width="32" height="32"/>
f085be
     <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
f085be
-- 
f085be
1.9.3
f085be