ooxml: Preserve shape theme attribute for solid fill

Users can select the fill color for a shape among the theme-defined
colors. This results in the following XML:

  <wps:spPr>
    ...
    <a:solidFill>
      <a:schemeClr val="accent2"/>
    </a:solidFill>
    ...
  </wps:spPr>

Now we store both the original fill color and the name of the
theme-defined color, if it exists, on the import phase. They are put
into the InteropGrabBag of the shape with the names
OriginalSolidFillClr and SpPrSolidFillSchemeClr. Additionally, we
needed to to store the decoded theme color inside StyleFillRef.

On the export phase we have to take into account several combinations
of factors:
* If the final color for the shape fill is different from the
  original color, we must ignore any theme attributes and write the
  new color.
* If the fill color is unchanged and some theme color exists, we must
  write the theme color.
* If the fill color is unchanged and no theme color exists, we must
  check if the original color matches the style-defined color. If it
  does, we must not write any <a:solidFill> tag.
* Otherwise we must write the <a:solidFill> tag with the RGB color.

The method putPropertiesToGrabBag was added to the Shape object for
convenience.

The data files for some /sd/qa/ unit tests were updated to reflect
the new properties inside the Shape InteropGrabBag.

Change-Id: If0915c5442872a8acab0a8a081f60c89c97277bd
This commit is contained in:
Jacobo Aragunde Pérez 2014-01-16 10:27:46 +01:00
parent 15e01d90b9
commit bc0a9076aa
11 changed files with 583 additions and 126 deletions

View File

@ -219,6 +219,8 @@ protected:
void putPropertyToGrabBag(
const ::com::sun::star::beans::PropertyValue& pProperty );
void putPropertiesToGrabBag(
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aProperties );
std::vector< ShapePtr > maChildren; // only used for group shapes
com::sun::star::awt::Size maChSize; // only used for group shapes

View File

@ -118,6 +118,7 @@ public:
void WriteConnectorConnections( EscherConnectorListEntry& rConnectorEntry, sal_Int32 nStartID, sal_Int32 nEndID );
void WriteSolidFill( sal_uInt32 nColor );
void WriteSolidFill( OUString sSchemeName );
void WriteSolidFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet );
void WriteGradientFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet );
void WriteBlipFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, OUString sURLPropName, sal_Int32 nXmlNamespace );

View File

@ -568,11 +568,13 @@ Reference< XShape > Shape::createAndInsert(
OUString sColorScheme = pFillRef->maPhClr.getSchemeName();
if( !sColorScheme.isEmpty() )
{
Sequence< PropertyValue > aProperties(2);
Sequence< PropertyValue > aProperties(3);
aProperties[0].Name = "SchemeClr";
aProperties[0].Value = Any( sColorScheme );
aProperties[1].Name = "Idx";
aProperties[1].Value = Any( pFillRef->mnThemedIdx );
aProperties[2].Name = "Color";
aProperties[2].Value = Any( nFillPhClr );
PropertyValue pStyleFillRef;
pStyleFillRef.Name = "StyleFillRef";
@ -764,6 +766,18 @@ Reference< XShape > Shape::createAndInsert(
mxShape->setPosition(awt::Point(aShapeRectHmm.X, aShapeRectHmm.Y));
mxShape->setSize(awt::Size(aShapeRectHmm.Width, aShapeRectHmm.Height));
}
Sequence< PropertyValue > aProperties( 1 );
aProperties[0].Name = "OriginalSolidFillClr";
aProperties[0].Value = aShapeProps[PROP_FillColor];
OUString sColorFillScheme = aFillProperties.maFillColor.getSchemeName();
if( !aFillProperties.maFillColor.isPlaceHolder() && !sColorFillScheme.isEmpty() )
{
aProperties.realloc( 2 );
aProperties[1].Name = "SpPrSolidFillSchemeClr";
aProperties[1].Value = Any( sColorFillScheme );
}
putPropertiesToGrabBag( aProperties );
}
// These can have a custom geometry, so position should be set here,
@ -1070,6 +1084,33 @@ void Shape::putPropertyToGrabBag( const PropertyValue& pProperty )
}
}
void Shape::putPropertiesToGrabBag( const Sequence< PropertyValue >& aProperties )
{
Reference< XPropertySet > xSet( mxShape, UNO_QUERY );
Reference< XPropertySetInfo > xSetInfo( xSet->getPropertySetInfo() );
const OUString& aGrabBagPropName = OUString( UNO_NAME_MISC_OBJ_INTEROPGRABBAG );
if( mxShape.is() && xSet.is() && xSetInfo.is() && xSetInfo->hasPropertyByName( aGrabBagPropName ) )
{
// get existing grab bag
Sequence< PropertyValue > aGrabBag;
xSet->getPropertyValue( aGrabBagPropName ) >>= aGrabBag;
sal_Int32 length = aGrabBag.getLength();
// update grab bag size to contain the new items
aGrabBag.realloc( length + aProperties.getLength() );
// put the new items
for( sal_Int32 i=0; i < aProperties.getLength(); ++i )
{
aGrabBag[length + i].Name = aProperties[i].Name;
aGrabBag[length + i].Value = aProperties[i].Value;
}
// put it back to the shape
xSet->setPropertyValue( aGrabBagPropName, Any( aGrabBag ) );
}
}
// ============================================================================
} }

View File

@ -174,10 +174,65 @@ void DrawingML::WriteSolidFill( sal_uInt32 nColor )
mpFS->endElementNS( XML_a, XML_solidFill );
}
void DrawingML::WriteSolidFill( OUString sSchemeName )
{
mpFS->startElementNS( XML_a, XML_solidFill, FSEND );
mpFS->singleElementNS( XML_a, XML_schemeClr, XML_val,
OUStringToOString( sSchemeName, RTL_TEXTENCODING_ASCII_US ).getStr(),
FSEND );
mpFS->endElementNS( XML_a, XML_solidFill );
}
void DrawingML::WriteSolidFill( Reference< XPropertySet > rXPropSet )
{
if ( GetProperty( rXPropSet, "FillColor" ) )
WriteSolidFill( *((sal_uInt32*) mAny.getValue()) & 0xffffff );
// get fill color
sal_uInt32 nFillColor;
if ( !GetProperty( rXPropSet, "FillColor" ) )
return;
mAny >>= nFillColor;
// get InteropGrabBag and search the relevant attributes
OUString sColorFillScheme;
sal_uInt32 nOriginalColor;
Sequence< PropertyValue > aStyleProperties;
if ( GetProperty( rXPropSet, "InteropGrabBag" ) )
{
Sequence< PropertyValue > aGrabBag;
mAny >>= aGrabBag;
for( sal_Int32 i=0; i < aGrabBag.getLength(); ++i )
if( aGrabBag[i].Name == "SpPrSolidFillSchemeClr" )
aGrabBag[i].Value >>= sColorFillScheme;
else if( aGrabBag[i].Name == "OriginalSolidFillClr" )
aGrabBag[i].Value >>= nOriginalColor;
else if( aGrabBag[i].Name == "StyleFillRef" )
aGrabBag[i].Value >>= aStyleProperties;
}
// write XML
if ( nFillColor != nOriginalColor )
// the user has set a different color for the shape
WriteSolidFill( nFillColor & 0xffffff );
else if ( !sColorFillScheme.isEmpty() )
// the shape had a scheme color and the user didn't change it
WriteSolidFill( sColorFillScheme );
else if ( aStyleProperties.hasElements() )
{
sal_uInt32 nThemeColor;
for( sal_Int32 i=0; i < aStyleProperties.getLength(); ++i )
if( aStyleProperties[i].Name == "Color" )
{
aStyleProperties[i].Value >>= nThemeColor;
break;
}
if ( nFillColor != nThemeColor )
// the shape contains a theme but it wasn't being used
WriteSolidFill( nFillColor & 0xffffff );
// in case the shape used the style color and the user didn't change it,
// we must not write a <a: solidFill> tag.
}
else
// the shape had a custom color and the user didn't change it
WriteSolidFill( nFillColor & 0xffffff );
}
void DrawingML::WriteGradientStop( sal_uInt16 nStop, sal_uInt32 nColor )

View File

@ -24,10 +24,12 @@
<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>
@ -92,10 +94,12 @@
<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>
@ -160,10 +164,12 @@
<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>
@ -228,10 +234,12 @@
<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>

View File

@ -6,6 +6,8 @@
<Line2 column1="0.000000" column2="19046.000000" column3="-75.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
</XShape>
</XShapes>

View File

@ -13,7 +13,10 @@
<Line2 column1="0.000000" column2="15193.000000" column3="1324.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<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/>

View File

@ -14,10 +14,13 @@
<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>
@ -107,7 +110,9 @@
<Line2 column1="-1004.091629" column2="1026.011940" column3="7175.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@ -185,7 +190,9 @@
<Line2 column1="1003.384523" column2="1026.011940" column3="6171.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>

View File

@ -13,7 +13,9 @@
<Line2 column1="0.000000" column2="7620.000000" column3="7197.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@ -100,7 +102,9 @@
<Line2 column1="0.000000" column2="9529.000000" column3="4229.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@ -187,7 +191,9 @@
<Line2 column1="0.000000" column2="1274.000000" column3="5715.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@ -341,7 +347,9 @@
<Line2 column1="0.000000" column2="1274.000000" column3="6125.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@ -495,7 +503,9 @@
<Line2 column1="0.000000" column2="2672.000000" column3="6125.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>

File diff suppressed because it is too large Load Diff

View File

@ -13,7 +13,9 @@
<Line2 column1="1371.000000" column2="0.000000" column3="6036.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@ -80,7 +82,9 @@
<Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@ -165,7 +169,9 @@
<Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
<InteropGrabBag/>
<InteropGrabBag>
<PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
</InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@ -259,10 +265,12 @@
<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>
@ -331,10 +339,12 @@
<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>
@ -403,10 +413,12 @@
<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>
@ -475,10 +487,12 @@
<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>
@ -547,10 +561,12 @@
<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>
@ -619,10 +635,12 @@
<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>
@ -691,10 +709,12 @@
<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>
@ -763,10 +783,12 @@
<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>
@ -835,10 +857,12 @@
<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>
@ -907,10 +931,12 @@
<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>
@ -979,10 +1005,12 @@
<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>
@ -1051,10 +1079,12 @@
<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>
@ -1123,10 +1153,12 @@
<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>
@ -1195,10 +1227,12 @@
<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>
@ -1267,10 +1301,12 @@
<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>
@ -1339,10 +1375,12 @@
<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>
@ -1411,10 +1449,12 @@
<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>
@ -1483,10 +1523,12 @@
<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>
@ -1555,10 +1597,12 @@
<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>
@ -1627,10 +1671,12 @@
<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>
@ -1699,10 +1745,12 @@
<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>
@ -1771,10 +1819,12 @@
<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>
@ -1843,10 +1893,12 @@
<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>
@ -1915,10 +1967,12 @@
<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>
@ -1987,10 +2041,12 @@
<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>
@ -2059,10 +2115,12 @@
<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>
@ -2131,10 +2189,12 @@
<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>
@ -2203,10 +2263,12 @@
<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>
@ -2275,10 +2337,12 @@
<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>
@ -2347,10 +2411,12 @@
<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>
@ -2419,10 +2485,12 @@
<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>
@ -2491,10 +2559,12 @@
<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>
@ -2563,10 +2633,12 @@
<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>
@ -2635,10 +2707,12 @@
<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>
@ -2707,10 +2781,12 @@
<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>
@ -2779,10 +2855,12 @@
<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>
@ -2851,10 +2929,12 @@
<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>
@ -2923,10 +3003,12 @@
<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>
@ -2995,10 +3077,12 @@
<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>
@ -3067,10 +3151,12 @@
<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>
@ -3139,10 +3225,12 @@
<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>
@ -3211,10 +3299,12 @@
<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>
@ -3283,10 +3373,12 @@
<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>
@ -3355,10 +3447,12 @@
<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>
@ -3427,10 +3521,12 @@
<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>
@ -3499,10 +3595,12 @@
<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>
@ -3571,10 +3669,12 @@
<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>
@ -3643,10 +3743,12 @@
<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>