[Libreoffice-commits] core.git: drawinglayer/source include/drawinglayer sd/qa

Jacobo Aragunde Pérez jaragunde at igalia.com
Tue Jan 28 01:48:48 PST 2014


 drawinglayer/source/dumper/XShapeDumper.cxx |   24 -
 include/drawinglayer/XShapeDumper.hxx       |    2 
 sd/qa/unit/data/xml/fdo47434_0.xml          |   40 --
 sd/qa/unit/data/xml/fdo71434_0.xml          |    3 
 sd/qa/unit/data/xml/n593612_0.xml           |    4 
 sd/qa/unit/data/xml/n762695_0.xml           |   17 
 sd/qa/unit/data/xml/n762695_1.xml           |   15 
 sd/qa/unit/data/xml/n819614_0.xml           |  339 -------------------
 sd/qa/unit/data/xml/n820786_0.xml           |  490 ----------------------------
 sd/qa/unit/data/xml/shapes-test_page0.xml   |   22 -
 sd/qa/unit/data/xml/shapes-test_page1.xml   |   12 
 sd/qa/unit/data/xml/shapes-test_page2.xml   |   18 -
 sd/qa/unit/data/xml/shapes-test_page3.xml   |   11 
 sd/qa/unit/data/xml/shapes-test_page4.xml   |    5 
 sd/qa/unit/data/xml/shapes-test_page5.xml   |    4 
 sd/qa/unit/data/xml/shapes-test_page7.xml   |    1 
 16 files changed, 13 insertions(+), 994 deletions(-)

New commits:
commit 0583c889c3af30e7f569127827cdb77b6c4770bd
Author: Jacobo Aragunde Pérez <jaragunde at igalia.com>
Date:   Tue Jan 28 10:27:06 2014 +0100

    sd/qa: Remove InteropGrabBag property from XML dumps
    
    The InteropGrabBag property adds a lot of noise to this tests and it
    doesn't actually have any purpose, because we are building their own
    tests for InteropGrabBag-supported document attributes.
    
    We have removed this property by default but we left a flag to enable
    it when it's convenient for debugging.
    
    Change-Id: I97cc7ba171783222a57ab5a96e5755070b949505

diff --git a/drawinglayer/source/dumper/XShapeDumper.cxx b/drawinglayer/source/dumper/XShapeDumper.cxx
index accb18a..43b335d 100644
--- a/drawinglayer/source/dumper/XShapeDumper.cxx
+++ b/drawinglayer/source/dumper/XShapeDumper.cxx
@@ -148,14 +148,14 @@ void dumpSizeAsAttribute(const com::sun::star::awt::Size& rSize, xmlTextWriterPt
 
 // the rest
 void dumpShapeDescriptorAsAttribute( com::sun::star::uno::Reference< com::sun::star::drawing::XShapeDescriptor > xDescr, xmlTextWriterPtr xmlWriter );
-void dumpXShape(com::sun::star::uno::Reference< com::sun::star::drawing::XShape > xShape, xmlTextWriterPtr xmlWriter);
-void dumpXShapes( com::sun::star::uno::Reference< com::sun::star::drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter );
+void dumpXShape(com::sun::star::uno::Reference< com::sun::star::drawing::XShape > xShape, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties);
+void dumpXShapes( com::sun::star::uno::Reference< com::sun::star::drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties );
 void dumpTextPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 void dumpFillPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 void dumpLinePropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 void dumpShadowPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 void dumpPolyPolygonDescriptorService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
-void dumpShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
+void dumpShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties);
 void dumpPolyPolygonBezierDescriptorService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 void dumpCustomShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
 
@@ -1674,7 +1674,7 @@ void dumpPolyPolygonDescriptorService(uno::Reference< beans::XPropertySet > xPro
     }
 }
 
-void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter)
+void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties)
 {
     uno::Reference< beans::XPropertySetInfo> xInfo = xPropSet->getPropertySetInfo();
     {
@@ -1744,7 +1744,7 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
         if(anotherAny >>= sHyperlink)
             dumpHyperlinkAsAttribute(sHyperlink, xmlWriter);
     }
-    if(xInfo->hasPropertyByName("InteropGrabBag"))
+    if(xInfo->hasPropertyByName("InteropGrabBag") && bDumpInteropProperties)
     {
         uno::Any anotherAny = xPropSet->getPropertyValue("InteropGrabBag");
         uno::Sequence< beans::PropertyValue> aInteropGrabBag;
@@ -1805,7 +1805,7 @@ void dumpCustomShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlT
     }
 }
 
-void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWriter)
+void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties)
 {
     xmlTextWriterStartElement( xmlWriter, BAD_CAST( "XShape" ) );
     uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY_THROW);
@@ -1851,7 +1851,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
     if(xServiceInfo->supportsService("com.sun.star.drawing.GroupShape"))
     {
         uno::Reference< drawing::XShapes > xShapes(xShape, uno::UNO_QUERY_THROW);
-        dumpXShapes(xShapes, xmlWriter);
+        dumpXShapes(xShapes, xmlWriter, bDumpInteropProperties);
     }
     if(xServiceInfo->supportsService("com.sun.star.drawing.FillProperties"))
         dumpFillPropertiesService(xPropSet, xmlWriter);
@@ -1866,7 +1866,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
         dumpShadowPropertiesService(xPropSet, xmlWriter);
 
     if(xServiceInfo->supportsService("com.sun.star.drawing.Shape"))
-        dumpShapeService(xPropSet, xmlWriter);
+        dumpShapeService(xPropSet, xmlWriter, bDumpInteropProperties);
 
     if(xServiceInfo->supportsService("com.sun.star.drawing.PolyPolygonBezierDescriptor"))
         dumpPolyPolygonBezierDescriptorService(xPropSet, xmlWriter);
@@ -1921,7 +1921,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter )
+void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties )
 {
     xmlTextWriterStartElement( xmlWriter, BAD_CAST( "XShapes" ) );
     uno::Reference< container::XIndexAccess > xIA( xShapes, uno::UNO_QUERY_THROW);
@@ -1929,14 +1929,14 @@ void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr x
     for (sal_Int32 i = 0; i < nLength; ++i)
     {
         uno::Reference< drawing::XShape > xShape( xIA->getByIndex( i ), uno::UNO_QUERY_THROW );
-        dumpXShape( xShape, xmlWriter );
+        dumpXShape( xShape, xmlWriter, bDumpInteropProperties );
     }
 
     xmlTextWriterEndElement( xmlWriter );
 }
 } //end of namespace
 
-OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes)
+OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes, bool bDumpInteropProperties)
 {
 
     OStringBuffer aString;
@@ -1948,7 +1948,7 @@ OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes)
 
     try
     {
-        dumpXShapes( xPageShapes, xmlWriter );
+        dumpXShapes( xPageShapes, xmlWriter, bDumpInteropProperties );
     }
     catch (const beans::UnknownPropertyException& e)
     {
diff --git a/include/drawinglayer/XShapeDumper.hxx b/include/drawinglayer/XShapeDumper.hxx
index 98d1445..b18de91 100644
--- a/include/drawinglayer/XShapeDumper.hxx
+++ b/include/drawinglayer/XShapeDumper.hxx
@@ -46,7 +46,7 @@ class DRAWINGLAYER_DLLPUBLIC XShapeDumper
 
 public:
     XShapeDumper();
-    OUString dump(com::sun::star::uno::Reference<com::sun::star::drawing::XShapes> xPageShapes);
+    OUString dump(com::sun::star::uno::Reference<com::sun::star::drawing::XShapes> xPageShapes, bool bDumpInteropProperties=false);
 
 };
 #endif
diff --git a/sd/qa/unit/data/xml/fdo47434_0.xml b/sd/qa/unit/data/xml/fdo47434_0.xml
index f091b2a..bd91804 100644
--- a/sd/qa/unit/data/xml/fdo47434_0.xml
+++ b/sd/qa/unit/data/xml/fdo47434_0.xml
@@ -23,16 +23,6 @@
    <Line2 column1="0.000000" column2="2.000000" column3="4366.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
@@ -93,16 +83,6 @@
    <Line2 column1="0.000000" column2="2.000000" column3="5159.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="MirroredX" value="true" handle="0" propertyState="DIRECT_VALUE"/>
@@ -163,16 +143,6 @@
    <Line2 column1="0.000000" column2="2.000000" column3="4366.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
@@ -233,16 +203,6 @@
    <Line2 column1="0.000000" column2="2.000000" column3="5159.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="MirroredX" value="true" handle="0" propertyState="DIRECT_VALUE"/>
diff --git a/sd/qa/unit/data/xml/fdo71434_0.xml b/sd/qa/unit/data/xml/fdo71434_0.xml
index 46efeb1..5c58fa2 100644
--- a/sd/qa/unit/data/xml/fdo71434_0.xml
+++ b/sd/qa/unit/data/xml/fdo71434_0.xml
@@ -6,8 +6,5 @@
    <Line2 column1="0.000000" column2="19046.000000" column3="-75.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
  </XShape>
 </XShapes>
diff --git a/sd/qa/unit/data/xml/n593612_0.xml b/sd/qa/unit/data/xml/n593612_0.xml
index aa5d1f7..5d5189b 100644
--- a/sd/qa/unit/data/xml/n593612_0.xml
+++ b/sd/qa/unit/data/xml/n593612_0.xml
@@ -13,10 +13,6 @@
    <Line2 column1="0.000000" column2="15193.000000" column3="1324.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" value="3968147" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="SpPrSolidFillSchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
diff --git a/sd/qa/unit/data/xml/n762695_0.xml b/sd/qa/unit/data/xml/n762695_0.xml
index 7b61b2e9..99ce643 100644
--- a/sd/qa/unit/data/xml/n762695_0.xml
+++ b/sd/qa/unit/data/xml/n762695_0.xml
@@ -13,17 +13,6 @@
    <Line2 column1="0.000000" column2="10856.000000" column3="5160.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" value="12834459" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="SpPrSolidFillSchemeClr" value="accent3" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -110,9 +99,6 @@
    <Line2 column1="-1004.091629" column2="1026.011940" column3="7175.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues>
@@ -190,9 +176,6 @@
    <Line2 column1="1003.384523" column2="1026.011940" column3="6171.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues>
diff --git a/sd/qa/unit/data/xml/n762695_1.xml b/sd/qa/unit/data/xml/n762695_1.xml
index 2cc28c2..91ab117 100644
--- a/sd/qa/unit/data/xml/n762695_1.xml
+++ b/sd/qa/unit/data/xml/n762695_1.xml
@@ -13,9 +13,6 @@
    <Line2 column1="0.000000" column2="7620.000000" column3="7197.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -102,9 +99,6 @@
    <Line2 column1="0.000000" column2="9529.000000" column3="4229.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -191,9 +185,6 @@
    <Line2 column1="0.000000" column2="1274.000000" column3="5715.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues>
@@ -347,9 +338,6 @@
    <Line2 column1="0.000000" column2="1274.000000" column3="6125.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues>
@@ -503,9 +491,6 @@
    <Line2 column1="0.000000" column2="2672.000000" column3="6125.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues>
diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
index 8157412..fb879cd 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -21,7 +21,6 @@
    <Line2 column1="0.000000" column2="101.000000" column3="0.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag/>
  </XShape>
  <XShape positionX="182" positionY="2544" sizeX="25125" sizeY="16293" type="com.sun.star.drawing.GroupShape">
   <XShapes>
@@ -38,9 +37,6 @@
      <Line2 column1="0.000000" column2="254.000000" column3="3496.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -100,9 +96,6 @@
      <Line2 column1="0.000000" column2="2072.000000" column3="5702.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -162,9 +155,6 @@
      <Line2 column1="0.000000" column2="811.000000" column3="5702.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -224,9 +214,6 @@
      <Line2 column1="0.000000" column2="834.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -290,9 +277,6 @@
      <Line2 column1="0.000000" column2="4509.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -352,9 +336,6 @@
      <Line2 column1="0.000000" column2="3165.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -414,9 +395,6 @@
      <Line2 column1="0.000000" column2="7483.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -476,9 +454,6 @@
      <Line2 column1="0.000000" column2="5903.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -538,9 +513,6 @@
      <Line2 column1="0.000000" column2="630.000000" column3="7078.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -600,9 +572,6 @@
      <Line2 column1="0.000000" column2="741.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -662,9 +631,6 @@
      <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -728,9 +694,6 @@
      <Line2 column1="0.000000" column2="3272.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -790,9 +753,6 @@
      <Line2 column1="0.000000" column2="1992.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -852,9 +812,6 @@
      <Line2 column1="0.000000" column2="713.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -914,9 +871,6 @@
      <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -980,9 +934,6 @@
      <Line2 column1="0.000000" column2="1989.000000" column3="13817.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1042,9 +993,6 @@
      <Line2 column1="0.000000" column2="737.000000" column3="13817.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1104,9 +1052,6 @@
      <Line2 column1="0.000000" column2="7377.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1166,9 +1111,6 @@
      <Line2 column1="0.000000" column2="5851.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1228,9 +1170,6 @@
      <Line2 column1="0.000000" column2="12373.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1290,9 +1229,6 @@
      <Line2 column1="0.000000" column2="11250.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1352,9 +1288,6 @@
      <Line2 column1="0.000000" column2="3177.000000" column3="7232.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1414,9 +1347,6 @@
      <Line2 column1="0.000000" column2="1949.000000" column3="7232.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1476,9 +1406,6 @@
      <Line2 column1="0.000000" column2="728.000000" column3="7232.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1538,9 +1465,6 @@
      <Line2 column1="0.000000" column2="777.000000" column3="5771.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1600,9 +1524,6 @@
      <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1666,9 +1587,6 @@
      <Line2 column1="0.000000" column2="7085.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1728,9 +1646,6 @@
      <Line2 column1="0.000000" column2="5830.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1790,9 +1705,6 @@
      <Line2 column1="0.000000" column2="4551.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1852,9 +1764,6 @@
      <Line2 column1="0.000000" column2="3272.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1914,9 +1823,6 @@
      <Line2 column1="0.000000" column2="1992.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -1976,9 +1882,6 @@
      <Line2 column1="0.000000" column2="713.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2038,9 +1941,6 @@
      <Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2104,9 +2004,6 @@
      <Line2 column1="0.000000" column2="11224.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2166,9 +2063,6 @@
      <Line2 column1="0.000000" column2="9916.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2228,9 +2122,6 @@
      <Line2 column1="0.000000" column2="8608.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2290,9 +2181,6 @@
      <Line2 column1="0.000000" column2="781.000000" column3="12333.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2352,9 +2240,6 @@
      <Line2 column1="0.000000" column2="5992.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2414,9 +2299,6 @@
      <Line2 column1="0.000000" column2="4684.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2476,9 +2358,6 @@
      <Line2 column1="0.000000" column2="3376.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2538,9 +2417,6 @@
      <Line2 column1="0.000000" column2="2068.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2600,9 +2476,6 @@
      <Line2 column1="0.000000" column2="12490.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2662,9 +2535,6 @@
      <Line2 column1="0.000000" column2="713.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2724,9 +2594,6 @@
      <Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2790,9 +2657,6 @@
      <Line2 column1="0.000000" column2="10863.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2852,9 +2716,6 @@
      <Line2 column1="0.000000" column2="1817.000000" column3="13615.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2914,9 +2775,6 @@
      <Line2 column1="0.000000" column2="657.000000" column3="13615.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -2976,9 +2834,6 @@
      <Line2 column1="0.000000" column2="7275.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3038,9 +2893,6 @@
      <Line2 column1="0.000000" column2="6012.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3100,9 +2952,6 @@
      <Line2 column1="0.000000" column2="4731.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3162,9 +3011,6 @@
      <Line2 column1="0.000000" column2="3475.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3224,9 +3070,6 @@
      <Line2 column1="0.000000" column2="2049.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3286,9 +3129,6 @@
      <Line2 column1="0.000000" column2="12187.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3348,9 +3188,6 @@
      <Line2 column1="0.000000" column2="710.000000" column3="5774.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3410,9 +3247,6 @@
      <Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3476,9 +3310,6 @@
      <Line2 column1="0.000000" column2="1079.000000" column3="2544.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3543,9 +3374,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3610,9 +3438,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="5919.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3677,10 +3502,6 @@
      <Line2 column1="0.000000" column2="1223.000000" column3="17350.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3745,9 +3566,6 @@
      <Line2 column1="0.000000" column2="1269.000000" column3="7189.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3812,9 +3630,6 @@
      <Line2 column1="0.000000" column2="1157.000000" column3="8671.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3879,9 +3694,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="9939.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -3946,9 +3758,6 @@
      <Line2 column1="0.000000" column2="1152.000000" column3="11210.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4013,9 +3822,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="12483.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4080,9 +3886,6 @@
      <Line2 column1="0.000000" column2="1037.000000" column3="13753.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4147,9 +3950,6 @@
      <Line2 column1="0.000000" column2="1063.000000" column3="14901.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4214,9 +4014,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="16071.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4281,9 +4078,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4348,9 +4142,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="5921.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4415,9 +4206,6 @@
      <Line2 column1="0.000000" column2="1149.000000" column3="17689.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4482,9 +4270,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="7277.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4549,9 +4334,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="8585.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4616,9 +4398,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="9893.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4683,9 +4462,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="11200.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4750,9 +4526,6 @@
      <Line2 column1="0.000000" column2="1211.000000" column3="12508.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4817,9 +4590,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="13816.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4884,9 +4654,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="15124.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -4951,9 +4718,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="16432.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5018,9 +4782,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5085,9 +4846,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="5921.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5152,9 +4910,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="7201.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5219,9 +4974,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="8480.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5286,9 +5038,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="9759.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5353,9 +5102,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="11039.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5420,9 +5166,6 @@
      <Line2 column1="0.000000" column2="1101.000000" column3="12309.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5487,9 +5230,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5554,9 +5294,6 @@
      <Line2 column1="0.000000" column2="1366.000000" column3="5866.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5621,9 +5358,6 @@
      <Line2 column1="0.000000" column2="1088.000000" column3="7416.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5688,9 +5422,6 @@
      <Line2 column1="0.000000" column2="1008.000000" column3="8677.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5755,10 +5486,6 @@
      <Line2 column1="0.000000" column2="925.000000" column3="9946.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5823,9 +5550,6 @@
      <Line2 column1="0.000000" column2="1034.000000" column3="16505.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5890,10 +5614,6 @@
      <Line2 column1="0.000000" column2="912.000000" column3="17689.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -5958,9 +5678,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="10999.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6025,9 +5742,6 @@
      <Line2 column1="0.000000" column2="1338.000000" column3="12479.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6092,9 +5806,6 @@
      <Line2 column1="0.000000" column2="1184.000000" column3="13962.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6159,9 +5870,6 @@
      <Line2 column1="0.000000" column2="1144.000000" column3="15233.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6226,9 +5934,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6293,9 +5998,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="5918.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6360,9 +6062,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="7198.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6427,9 +6126,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="8477.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6494,9 +6190,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6561,9 +6254,6 @@
      <Line2 column1="0.000000" column2="1131.000000" column3="5947.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6628,9 +6318,6 @@
      <Line2 column1="0.000000" column2="969.000000" column3="7223.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6695,9 +6382,6 @@
      <Line2 column1="0.000000" column2="1231.000000" column3="11059.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6762,10 +6446,6 @@
      <Line2 column1="0.000000" column2="1422.000000" column3="12543.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6830,9 +6510,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="8371.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6897,9 +6574,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="9715.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -6964,9 +6638,6 @@
      <Line2 column1="0.000000" column2="1245.000000" column3="4457.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -7031,9 +6702,6 @@
      <Line2 column1="0.000000" column2="1132.000000" column3="5947.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -7098,9 +6766,6 @@
      <Line2 column1="0.000000" column2="1101.000000" column3="7224.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -7165,9 +6830,6 @@
      <Line2 column1="0.000000" column2="983.000000" column3="3341.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -7225,6 +6887,5 @@
    <Line2 column1="0.000000" column2="16294.000000" column3="2544.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag/>
  </XShape>
 </XShapes>
diff --git a/sd/qa/unit/data/xml/n820786_0.xml b/sd/qa/unit/data/xml/n820786_0.xml
index 81d667b..8ceec6b 100644
--- a/sd/qa/unit/data/xml/n820786_0.xml
+++ b/sd/qa/unit/data/xml/n820786_0.xml
@@ -13,9 +13,6 @@
    <Line2 column1="1371.000000" column2="0.000000" column3="6036.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -82,9 +79,6 @@
      <Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -169,9 +163,6 @@
      <Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
      <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
     </Transformation>
-    <InteropGrabBag>
-     <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-    </InteropGrabBag>
     <CustomShapeGeometry>
      <PropertyValue name="AdjustmentValues">
       <AdjustmentValues/>
@@ -249,7 +240,6 @@
    <Line2 column1="0.000000" column2="1058.000000" column3="11701.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag/>
  </XShape>
  <XShape positionX="6985" positionY="2309" sizeX="1481" sizeY="1481" type="com.sun.star.drawing.CustomShape" name="Rectangle 1" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="HATCH" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
   <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -264,16 +254,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -338,16 +318,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -412,16 +382,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -486,16 +446,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -560,16 +510,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -634,16 +574,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -708,16 +638,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -782,16 +702,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -856,16 +766,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -930,16 +830,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1004,16 +894,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1078,16 +958,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1152,16 +1022,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1226,16 +1086,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1300,16 +1150,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1374,16 +1214,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1448,16 +1278,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1522,16 +1342,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1596,16 +1406,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1670,16 +1470,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1744,16 +1534,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1818,16 +1598,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1892,16 +1662,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -1966,16 +1726,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2040,16 +1790,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2114,16 +1854,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2188,16 +1918,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2262,16 +1982,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2336,16 +2046,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2410,16 +2110,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2484,16 +2174,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2558,16 +2238,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2632,16 +2302,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2706,16 +2366,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2780,16 +2430,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2854,16 +2494,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -2928,16 +2558,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -3002,16 +2622,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -3076,16 +2686,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -3150,16 +2750,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
    <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
   </Transformation>
-  <InteropGrabBag>
-   <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="StyleFillRef">
-    <StyleFillRef>
-     <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
-     <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
-    </StyleFillRef>
-   </PropertyValue>
-  </InteropGrabBag>
   <CustomShapeGeometry>
    <PropertyValue name="AdjustmentValues">
     <AdjustmentValues/>
@@ -3224,16 +2814,6 @@
    <Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list