Blame SOURCES/0001-tdf-97630-xmloff-ODF-extended-draw-fit-to-size-mess.patch

91334d
From e2aea006ba385dfbbfde27997372c4d941561b2c Mon Sep 17 00:00:00 2001
91334d
From: Michael Stahl <mstahl@redhat.com>
91334d
Date: Tue, 17 Oct 2017 17:24:03 +0200
91334d
Subject: [PATCH] tdf#97630 xmloff: ODF extended draw:fit-to-size mess
91334d
91334d
The plan:
91334d
91334d
1. As Regina points out, there is already (in ODF 1.2, but not ODF 1.1)
91334d
   a style:shrink-to-fit attribute for shapes, so use this to represent
91334d
   the AUTOFIT value.
91334d
91334d
   The fallback from AUTOFIT to draw:fit-to-size="true" was a stupid
91334d
   idea anyway, probably "false" is less annoying in practice.
91334d
91334d
   There are 2 different shapes that implement TextFitToSize property:
91334d
91334d
   a) text shapes already interpret ALLLINES and PROPORTIONAL exactly
91334d
      the same
91334d
   b) fontwork custom shapes interpret ALLLINES but do nothing for
91334d
      PROPORTIONAL
91334d
91334d
   As Regina points out, there is no shape that needs to distinguish
91334d
   between ALLLINES and PROPORTIONAL, so we do a minor behavioral
91334d
   API CHANGE and from now on interpret PROPORTIONAL as ALLLINES
91334d
   on fontwork custom shapes.  This obviates the need to distinguish
91334d
   the values in ODF and so we don't need a new attribute,
91334d
   just use draw:fit-to-size="true" for both.
91334d
91334d
   On import, use MID_FLAG_MERGE_PROPERTY to combine the 2 attributes
91334d
   into one value.
91334d
91334d
2. Restrict the export of draw:fit-to-size to only the standard
91334d
   values "true"/"false".
91334d
91334d
This implements step 1, the step 2 will be done in the future when
91334d
most users have the import of the style:shrink-to-fit.
91334d
91334d
Change-Id: I4a378aa110fdb82db7a99a839d7ff207248a73e7
91334d
Reviewed-on: https://gerrit.libreoffice.org/43521
91334d
Tested-by: Jenkins <ci@libreoffice.org>
91334d
Reviewed-by: Michael Stahl <mstahl@redhat.com>
91334d
(cherry picked from commit 33eb9fdb61033b3fd35d923900b1f5791f4b71c8)
91334d
---
91334d
 filter/source/msfilter/escherex.cxx                |   3 +-
91334d
 sd/qa/unit/data/fit-to-size.fodp                   | 724 +++++++++++++++++++++
91334d
 sd/qa/unit/export-tests.cxx                        | 101 +++
91334d
 .../customshapes/EnhancedCustomShapeFontWork.cxx   |   5 +-
91334d
 svx/source/toolbars/fontworkbar.cxx                |  10 +-
91334d
 xmloff/inc/xmlsdtypes.hxx                          |   1 +
91334d
 xmloff/source/draw/sdpropls.cxx                    |  71 +-
91334d
 7 files changed, 902 insertions(+), 13 deletions(-)
91334d
 create mode 100644 sd/qa/unit/data/fit-to-size.fodp
91334d
91334d
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
91334d
index b8b5b831bd99..4285bcd04c14 100644
91334d
--- a/filter/source/msfilter/escherex.cxx
91334d
+++ b/filter/source/msfilter/escherex.cxx
91334d
@@ -3470,7 +3470,8 @@ void EscherPropertyContainer::CreateCustomShapeProperties( const MSO_SPT eShapeT
91334d
                                 case drawing::TextHorizontalAdjust_BLOCK:
91334d
                                     {
91334d
                                         SdrFitToSizeType  eFTS( static_cast<const SdrTextFitToSizeTypeItem&>(pCustoShape->GetMergedItem( SDRATTR_TEXT_FITTOSIZE )).GetValue() );
91334d
-                                        if ( eFTS == SdrFitToSizeType::AllLines)
91334d
+                                        if (eFTS == SdrFitToSizeType::AllLines ||
91334d
+                                            eFTS == SdrFitToSizeType::Proportional)
91334d
                                         {
91334d
                                             gTextAlign = mso_alignTextStretch;
91334d
                                         }
91334d
diff --git a/sd/qa/unit/data/fit-to-size.fodp b/sd/qa/unit/data/fit-to-size.fodp
91334d
new file mode 100644
91334d
index 000000000000..734cf8a3a6c6
91334d
--- /dev/null
91334d
+++ b/sd/qa/unit/data/fit-to-size.fodp
91334d
@@ -0,0 +1,724 @@
91334d
+
91334d
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.presentation">
91334d
+ <office:meta><meta:creation-date>2017-10-18T22:06:17.203271648</meta:creation-date><dc:date>2017-10-19T22:51:45.845520353</dc:date><meta:editing-duration>PT31M43S</meta:editing-duration><meta:editing-cycles>4</meta:editing-cycles><meta:generator>LibreOfficeDev/5.3.8.0.0$Linux_X86_64 LibreOffice_project/a0fae00a2d52960eebbb14f08d2de251e0a8ff3f</meta:generator><meta:document-statistic meta:object-count="31"/></office:meta>
91334d
+ <office:font-face-decls>
91334d
+  <style:font-face style:name="Arial Black" svg:font-family="'Arial Black'" style:font-family-generic="roman"/>
91334d
+  <style:font-face style:name="MS Gothic" svg:font-family="'MS Gothic'" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
91334d
+  <style:font-face style:name="Source Han Sans CN Regular" svg:font-family="'Source Han Sans CN Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
91334d
+ </office:font-face-decls>
91334d
+ <office:styles>
91334d
+  <draw:marker draw:name="Arrow" svg:viewBox="0 0 20 30" svg:d="M10 0l-10 30h20z"/>
91334d
+  <style:default-style style:family="graphic">
91334d
+   <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap"/>
91334d
+   <style:paragraph-properties style:text-autospace="ideograph-alpha" style:punctuation-wrap="simple" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
91334d
+    <style:tab-stops/>
91334d
+   </style:paragraph-properties>
91334d
+   <style:text-properties style:use-window-font-color="true" style:font-name="Liberation Serif" fo:font-size="24pt" fo:language="de" fo:country="DE" style:font-name-asian="DejaVu Sans" style:font-size-asian="24pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans" style:font-size-complex="24pt" style:language-complex="hi" style:country-complex="IN"/>
91334d
+  </style:default-style>
91334d
+  <style:style style:name="standard" style:family="graphic">
91334d
+   <style:graphic-properties draw:stroke="solid" svg:stroke-width="0cm" svg:stroke-color="#3465a4" draw:marker-start-width="0.2cm" draw:marker-start-center="false" draw:marker-end-width="0.2cm" draw:marker-end-center="false" draw:fill="solid" draw:fill-color="#729fcf" draw:textarea-horizontal-align="justify" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080">
91334d
+    <text:list-style style:name="standard">
91334d
+     <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+      <style:list-level-properties text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="2" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="4" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+    </text:list-style>
91334d
+   </style:graphic-properties>
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-indent="0cm"/>
91334d
+   <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="18pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="objectwitharrow" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="solid" svg:stroke-width="0.15cm" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.7cm" draw:marker-start-center="true" draw:marker-end-width="0.3cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="objectwithshadow" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="objectwithoutfill" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties svg:stroke-color="#000000" draw:fill="none"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Object_20_with_20_no_20_fill_20_and_20_no_20_line" style:display-name="Object with no fill and no line" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="text" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="textbody" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:text-properties fo:font-size="16pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="textbodyjustfied" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:text-align="justify"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="textbodyindent" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0.6cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="title" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:text-properties fo:font-size="44pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="title1" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="solid" draw:fill-color="#008080" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
91334d
+   <style:paragraph-properties fo:text-align="center"/>
91334d
+   <style:text-properties fo:font-size="24pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="title2" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties svg:stroke-width="0.05cm" draw:fill-color="#ffcc99" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.2cm" fo:margin-top="0.1cm" fo:margin-bottom="0.1cm" fo:text-align="center" fo:text-indent="0cm"/>
91334d
+   <style:text-properties fo:font-size="36pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="headline" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
91334d
+   <style:text-properties fo:font-size="24pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="headline1" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
91334d
+   <style:text-properties fo:font-size="18pt" fo:font-weight="bold"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="headline2" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
91334d
+   <style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="measure" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="solid" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.2cm" draw:marker-end="Arrow" draw:marker-end-width="0.2cm" draw:fill="none" draw:show-unit="true"/>
91334d
+   <style:text-properties fo:font-size="12pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-background" style:family="presentation">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:text-properties style:letter-kerning="true"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-backgroundobjects" style:family="presentation">
91334d
+   <style:graphic-properties draw:textarea-horizontal-align="justify" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
91334d
+   <style:text-properties style:letter-kerning="true"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-notes" style:family="presentation">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none"/>
91334d
+   <style:paragraph-properties fo:margin-left="0.6cm" fo:margin-right="0cm" fo:text-indent="-0.6cm"/>
91334d
+   <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="20pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="20pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="20pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline1" style:family="presentation">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:auto-grow-height="false" draw:fit-to-size="shrink-to-fit">
91334d
+    <text:list-style style:name="Default-outline1">
91334d
+     <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="0.3cm" text:min-label-width="0.9cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="2" text:bullet-char="–">
91334d
+      <style:list-level-properties text:space-before="1.5cm" text:min-label-width="0.9cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="75%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="2.8cm" text:min-label-width="0.8cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="4" text:bullet-char="–">
91334d
+      <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="75%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="6.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="7.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="9cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="10.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="11.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+    </text:list-style>
91334d
+   </style:graphic-properties>
91334d
+   <style:paragraph-properties fo:margin-top="0.5cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="32pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="32pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="32pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline2" style:family="presentation" style:parent-style-name="Default-outline1">
91334d
+   <style:paragraph-properties fo:margin-top="0.4cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="28pt" style:font-size-asian="28pt" style:font-size-complex="28pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline3" style:family="presentation" style:parent-style-name="Default-outline2">
91334d
+   <style:paragraph-properties fo:margin-top="0.3cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="24pt" style:font-size-asian="24pt" style:font-size-complex="24pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline4" style:family="presentation" style:parent-style-name="Default-outline3">
91334d
+   <style:paragraph-properties fo:margin-top="0.2cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline5" style:family="presentation" style:parent-style-name="Default-outline4">
91334d
+   <style:paragraph-properties fo:margin-top="0.1cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline6" style:family="presentation" style:parent-style-name="Default-outline5">
91334d
+   <style:paragraph-properties fo:margin-top="0.1cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline7" style:family="presentation" style:parent-style-name="Default-outline6">
91334d
+   <style:paragraph-properties fo:margin-top="0.1cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline8" style:family="presentation" style:parent-style-name="Default-outline7">
91334d
+   <style:paragraph-properties fo:margin-top="0.1cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-outline9" style:family="presentation" style:parent-style-name="Default-outline8">
91334d
+   <style:paragraph-properties fo:margin-top="0.1cm" fo:margin-bottom="0cm"/>
91334d
+   <style:text-properties fo:font-size="20pt" style:font-size-asian="20pt" style:font-size-complex="20pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-subtitle" style:family="presentation">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle">
91334d
+    <text:list-style style:name="Default-subtitle">
91334d
+     <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+      <style:list-level-properties text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="2" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="4" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+    </text:list-style>
91334d
+   </style:graphic-properties>
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" fo:text-indent="0cm"/>
91334d
+   <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="32pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="32pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="32pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="Default-title" style:family="presentation">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle">
91334d
+    <text:list-style style:name="Default-title">
91334d
+     <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+      <style:list-level-properties text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="2" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="4" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+     <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+      <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+      <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+     </text:list-level-style-bullet>
91334d
+    </text:list-style>
91334d
+   </style:graphic-properties>
91334d
+   <style:paragraph-properties fo:text-align="center"/>
91334d
+   <style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="44pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="44pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="44pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:presentation-page-layout style:name="AL0T26">
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="2.058cm" svg:y="1.743cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="15.414cm" svg:y="1.743cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="2.058cm" svg:y="3.612cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="15.414cm" svg:y="3.612cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="2.058cm" svg:y="5.481cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+   <presentation:placeholder presentation:object="handout" svg:x="15.414cm" svg:y="5.481cm" svg:width="10.556cm" svg:height="-0.233cm"/>
91334d
+  </style:presentation-page-layout>
91334d
+  <style:presentation-page-layout style:name="AL1T0">
91334d
+   <presentation:placeholder presentation:object="title" svg:x="2.058cm" svg:y="1.743cm" svg:width="23.912cm" svg:height="3.507cm"/>
91334d
+   <presentation:placeholder presentation:object="subtitle" svg:x="2.058cm" svg:y="5.838cm" svg:width="23.912cm" svg:height="13.23cm"/>
91334d
+  </style:presentation-page-layout>
91334d
+ </office:styles>
91334d
+ <office:automatic-styles>
91334d
+  <style:page-layout style:name="PM0">
91334d
+   <style:page-layout-properties fo:margin-top="0cm" fo:margin-bottom="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:page-width="21cm" fo:page-height="29.7cm" style:print-orientation="portrait"/>
91334d
+  </style:page-layout>
91334d
+  <style:page-layout style:name="PM1">
91334d
+   <style:page-layout-properties fo:margin-top="0cm" fo:margin-bottom="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:page-width="28cm" fo:page-height="21cm" style:print-orientation="landscape"/>
91334d
+  </style:page-layout>
91334d
+  <style:style style:name="dp1" style:family="drawing-page">
91334d
+   <style:drawing-page-properties draw:background-size="border" draw:fill="none"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="dp2" style:family="drawing-page">
91334d
+   <style:drawing-page-properties presentation:display-header="true" presentation:display-footer="true" presentation:display-page-number="false" presentation:display-date-time="true"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="dp3" style:family="drawing-page">
91334d
+   <style:drawing-page-properties presentation:background-visible="true" presentation:background-objects-visible="true" presentation:display-footer="true" presentation:display-page-number="false" presentation:display-date-time="true"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="gr1" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:fill-color="#ffffff" draw:auto-grow-height="false" fo:min-height="1.485cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="gr2" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-vertical-align="bottom" draw:auto-grow-height="false" fo:min-height="1.485cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="gr3" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="solid" svg:stroke-width="0.026cm" svg:stroke-color="#000000" draw:marker-start="" draw:marker-start-width="0.3cm" draw:marker-start-center="false" draw:marker-end="" draw:marker-end-width="0.3cm" draw:marker-end-center="false" draw:stroke-linejoin="miter" draw:fill="solid" draw:fill-color="#000000" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" draw:fit-to-size="false" fo:min-height="1.14cm" fo:min-width="9.501cm" fo:padding-top="0.13cm" fo:padding-bottom="0.13cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" fo:wrap-option="wrap" draw:shadow="hidden" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:shadow-color="#808080"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="gr4" style:family="graphic" style:parent-style-name="standard">
91334d
+   <style:graphic-properties draw:stroke="solid" svg:stroke-width="0.026cm" svg:stroke-color="#000000" draw:marker-start="" draw:marker-start-width="0.3cm" draw:marker-start-center="false" draw:marker-end="" draw:marker-end-width="0.3cm" draw:marker-end-center="false" draw:stroke-linejoin="miter" draw:fill="solid" draw:fill-color="#000000" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" draw:fit-to-size="all" fo:min-height="1.14cm" fo:min-width="9.501cm" fo:padding-top="0.13cm" fo:padding-bottom="0.13cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" fo:wrap-option="wrap" draw:shadow="hidden" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:shadow-color="#808080"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="gr5" style:family="graphic">
91334d
+   <style:graphic-properties style:protect="size"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr1" style:family="presentation" style:parent-style-name="Default-backgroundobjects">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:fill-color="#ffffff" draw:auto-grow-height="false" fo:min-height="1.449cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr2" style:family="presentation" style:parent-style-name="Default-backgroundobjects">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:fill-color="#ffffff" draw:auto-grow-height="false" fo:min-height="1.485cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr3" style:family="presentation" style:parent-style-name="Default-backgroundobjects">
91334d
+   <style:graphic-properties draw:stroke="none" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-vertical-align="bottom" draw:auto-grow-height="false" fo:min-height="1.485cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr4" style:family="presentation" style:parent-style-name="Default-subtitle">
91334d
+   <style:graphic-properties draw:fill-color="#ffffff" draw:fit-to-size="false" fo:min-height="4.686cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr5" style:family="presentation" style:parent-style-name="Default-subtitle">
91334d
+   <style:graphic-properties draw:fill-color="#ffffff" draw:fit-to-size="true" fo:min-height="5.085cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr6" style:family="presentation" style:parent-style-name="Default-subtitle">
91334d
+   <style:graphic-properties draw:fill-color="#ffffff" draw:fit-to-size="all" fo:min-height="4.485cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr7" style:family="presentation" style:parent-style-name="Default-subtitle">
91334d
+   <style:graphic-properties draw:fill-color="#ffffff" draw:fit-to-size="shrink-to-fit" fo:min-height="3.885cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="pr8" style:family="presentation" style:parent-style-name="Default-notes">
91334d
+   <style:graphic-properties draw:fill-color="#ffffff" fo:min-height="13.364cm"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P1" style:family="paragraph">
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P2" style:family="paragraph">
91334d
+   <loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P3" style:family="paragraph">
91334d
+   <style:paragraph-properties fo:text-align="end"/>
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P4" style:family="paragraph">
91334d
+   <loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
91334d
+   <style:paragraph-properties fo:text-align="end"/>
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P5" style:family="paragraph">
91334d
+   <style:paragraph-properties fo:text-align="center"/>
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P6" style:family="paragraph">
91334d
+   <loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
91334d
+   <style:paragraph-properties fo:text-align="center"/>
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P7" style:family="paragraph">
91334d
+   <loext:graphic-properties draw:fill-color="#ffffff"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="P8" style:family="paragraph">
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:punctuation-wrap="simple" style:line-break="normal" style:writing-mode="lr-tb">
91334d
+    <style:tab-stops/>
91334d
+   </style:paragraph-properties>
91334d
+  </style:style>
91334d
+  <style:style style:name="P9" style:family="paragraph">
91334d
+   <loext:graphic-properties draw:fill="solid" draw:fill-color="#000000"/>
91334d
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:punctuation-wrap="simple" style:line-break="normal" style:writing-mode="lr-tb">
91334d
+    <style:tab-stops/>
91334d
+   </style:paragraph-properties>
91334d
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Arial Black" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Tahoma" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="T1" style:family="text">
91334d
+   <style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
91334d
+  </style:style>
91334d
+  <style:style style:name="T2" style:family="text">
91334d
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Arial Black" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Tahoma" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
91334d
+  </style:style>
91334d
+  <text:list-style style:name="L1">
91334d
+   <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+    <style:list-level-properties text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="2" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="4" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+  </text:list-style>
91334d
+  <text:list-style style:name="L2">
91334d
+   <text:list-level-style-bullet text:level="1" text:bullet-char="●">
91334d
+    <style:list-level-properties text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="2" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="3" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="4" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="5" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="6" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="7" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="8" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="9" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+   <text:list-level-style-bullet text:level="10" text:bullet-char="●">
91334d
+    <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
91334d
+    <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
91334d
+   </text:list-level-style-bullet>
91334d
+  </text:list-style>
91334d
+ </office:automatic-styles>
91334d
+ <office:master-styles>
91334d
+  <draw:layer-set>
91334d
+   <draw:layer draw:name="layout"/>
91334d
+   <draw:layer draw:name="background"/>
91334d
+   <draw:layer draw:name="backgroundobjects"/>
91334d
+   <draw:layer draw:name="controls"/>
91334d
+   <draw:layer draw:name="measurelines"/>
91334d
+  </draw:layer-set>
91334d
+  <style:handout-master presentation:presentation-page-layout-name="AL0T26" style:page-layout-name="PM0" draw:style-name="dp2">
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="1cm" svg:y="2.898cm"/>
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="1cm" svg:y="11.474cm"/>
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="1cm" svg:y="20.05cm"/>
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="11cm" svg:y="2.898cm"/>
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="11cm" svg:y="11.474cm"/>
91334d
+   <draw:page-thumbnail draw:layer="backgroundobjects" svg:width="8.999cm" svg:height="6.749cm" svg:x="11cm" svg:y="20.05cm"/>
91334d
+   <draw:frame draw:style-name="gr1" draw:text-style-name="P2" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="0cm" svg:y="0cm" presentation:class="header">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P1"><text:span text:style-name="T1"><presentation:header/></text:span><presentation:header/></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <draw:frame draw:style-name="gr1" draw:text-style-name="P4" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="11.886cm" svg:y="0cm" presentation:class="date-time">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P3"><text:span text:style-name="T1"><presentation:date-time/></text:span><presentation:date-time/></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <draw:frame draw:style-name="gr2" draw:text-style-name="P2" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="0cm" svg:y="28.215cm" presentation:class="footer">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P1"><text:span text:style-name="T1"><presentation:footer/></text:span><presentation:footer/></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <draw:frame draw:style-name="gr2" draw:text-style-name="P4" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="11.886cm" svg:y="28.215cm" presentation:class="page-number">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P3"><text:span text:style-name="T1"><text:page-number><number></text:page-number></text:span><text:page-number><number></text:page-number></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+  </style:handout-master>
91334d
+  <style:master-page style:name="Default" style:page-layout-name="PM1" draw:style-name="dp1">
91334d
+   <draw:frame presentation:style-name="Default-title" draw:layer="backgroundobjects" svg:width="25.199cm" svg:height="3.506cm" svg:x="1.4cm" svg:y="0.837cm" presentation:class="title" presentation:placeholder="true">
91334d
+    <draw:text-box/>
91334d
+   </draw:frame>
91334d
+   <draw:frame presentation:style-name="Default-outline1" draw:layer="backgroundobjects" svg:width="25.199cm" svg:height="12.179cm" svg:x="1.4cm" svg:y="4.914cm" presentation:class="outline" presentation:placeholder="true">
91334d
+    <draw:text-box/>
91334d
+   </draw:frame>
91334d
+   <draw:frame presentation:style-name="Default-outline1" draw:layer="backgroundobjects" svg:width="25.199cm" svg:height="12.179cm" svg:x="1.4cm" svg:y="4.914cm" presentation:class="outline" presentation:placeholder="true">
91334d
+    <draw:text-box/>
91334d
+   </draw:frame>
91334d
+   <draw:frame presentation:style-name="pr1" draw:text-style-name="P2" draw:layer="backgroundobjects" svg:width="6.523cm" svg:height="1.448cm" svg:x="1.4cm" svg:y="19.131cm" presentation:class="date-time">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P1"><text:span text:style-name="T1"><presentation:date-time/></text:span><presentation:date-time/></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <draw:frame presentation:style-name="pr1" draw:text-style-name="P6" draw:layer="backgroundobjects" svg:width="8.875cm" svg:height="1.448cm" svg:x="9.576cm" svg:y="19.131cm" presentation:class="footer">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P5"><text:span text:style-name="T1"><presentation:footer/></text:span><presentation:footer/></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <draw:frame presentation:style-name="pr1" draw:text-style-name="P4" draw:layer="backgroundobjects" svg:width="6.523cm" svg:height="1.448cm" svg:x="20.076cm" svg:y="19.131cm" presentation:class="page-number">
91334d
+    <draw:text-box>
91334d
+     <text:p text:style-name="P3"><text:span text:style-name="T1"><text:page-number><number></text:page-number></text:span><text:page-number><number></text:page-number></text:p>
91334d
+    </draw:text-box>
91334d
+   </draw:frame>
91334d
+   <presentation:notes style:page-layout-name="PM0">
91334d
+    <draw:page-thumbnail presentation:style-name="Default-title" draw:layer="backgroundobjects" svg:width="14.848cm" svg:height="11.136cm" svg:x="3.075cm" svg:y="2.257cm" presentation:class="page"/>
91334d
+    <draw:frame presentation:style-name="Default-notes" draw:layer="backgroundobjects" svg:width="16.799cm" svg:height="13.364cm" svg:x="2.1cm" svg:y="14.107cm" presentation:class="notes" presentation:placeholder="true">
91334d
+     <draw:text-box/>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="Default-notes" draw:layer="backgroundobjects" svg:width="16.799cm" svg:height="13.364cm" svg:x="2.1cm" svg:y="14.107cm" presentation:class="notes" presentation:placeholder="true">
91334d
+     <draw:text-box/>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr2" draw:text-style-name="P2" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="0cm" svg:y="0cm" presentation:class="header">
91334d
+     <draw:text-box>
91334d
+      <text:p text:style-name="P1"><text:span text:style-name="T1"><presentation:header/></text:span><presentation:header/></text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr2" draw:text-style-name="P4" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="11.886cm" svg:y="0cm" presentation:class="date-time">
91334d
+     <draw:text-box>
91334d
+      <text:p text:style-name="P3"><text:span text:style-name="T1"><presentation:date-time/></text:span><presentation:date-time/></text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr3" draw:text-style-name="P2" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="0cm" svg:y="28.215cm" presentation:class="footer">
91334d
+     <draw:text-box>
91334d
+      <text:p text:style-name="P1"><text:span text:style-name="T1"><presentation:footer/></text:span><presentation:footer/></text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr3" draw:text-style-name="P4" draw:layer="backgroundobjects" svg:width="9.113cm" svg:height="1.484cm" svg:x="11.886cm" svg:y="28.215cm" presentation:class="page-number">
91334d
+     <draw:text-box>
91334d
+      <text:p text:style-name="P3"><text:span text:style-name="T1"><text:page-number><number></text:page-number></text:span><text:page-number><number></text:page-number></text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+   </presentation:notes>
91334d
+  </style:master-page>
91334d
+ </office:master-styles>
91334d
+ <office:body>
91334d
+  <office:presentation>
91334d
+   <draw:page draw:name="page1" draw:style-name="dp3" draw:master-page-name="Default" presentation:presentation-page-layout-name="AL1T0">
91334d
+    <draw:frame presentation:style-name="pr4" draw:text-style-name="P7" draw:layer="layout" svg:width="12.4cm" svg:height="4.686cm" svg:x="1.4cm" svg:y="2cm" presentation:class="subtitle" presentation:user-transformed="true">
91334d
+     <draw:text-box>
91334d
+      <text:p>1</text:p>
91334d
+      <text:p>foo</text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr5" draw:text-style-name="P7" draw:layer="layout" svg:width="12.599cm" svg:height="5.085cm" svg:x="14cm" svg:y="2.4cm">
91334d
+     <draw:text-box>
91334d
+      <text:p>2</text:p>
91334d
+      <text:p>foo</text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr6" draw:text-style-name="P7" draw:layer="layout" svg:width="12.599cm" svg:height="4.485cm" svg:x="1.201cm" svg:y="10.115cm">
91334d
+     <draw:text-box>
91334d
+      <text:p>3</text:p>
91334d
+      <text:p>foo</text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:frame presentation:style-name="pr7" draw:text-style-name="P7" draw:layer="layout" svg:width="12.399cm" svg:height="3.885cm" svg:x="14.2cm" svg:y="10.2cm">
91334d
+     <draw:text-box>
91334d
+      <text:p>4</text:p>
91334d
+      <text:p>foo</text:p>
91334d
+     </draw:text-box>
91334d
+    </draw:frame>
91334d
+    <draw:custom-shape draw:style-name="gr3" draw:text-style-name="P9" draw:layer="layout" svg:width="10cm" svg:height="1.4cm" svg:x="2.6cm" svg:y="18cm">
91334d
+     <text:p text:style-name="P8"><text:span text:style-name="T2">5</text:span></text:p>
91334d
+     <text:p text:style-name="P8"><text:span text:style-name="T2">Fontwork</text:span></text:p>
91334d
+     <draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="?f18 ?f0 ?f20 10800 ?f19 ?f1 ?f21 10800" draw:text-areas="0 0 21600 21600" draw:text-path="true" draw:text-path-mode="shape" draw:text-path-scale="path" draw:text-path-same-letter-heights="false" draw:type="fontwork-wave" draw:modifiers="4460 10800" draw:enhanced-path="M ?f7 ?f0 C ?f15 ?f9 ?f16 ?f10 ?f12 ?f0 N M ?f29 ?f1 C ?f27 ?f28 ?f25 ?f26 ?f24 ?f1 N">
91334d
+      <draw:equation draw:name="f0" draw:formula="$0 "/>
91334d
+      <draw:equation draw:name="f1" draw:formula="21600-?f0 "/>
91334d
+      <draw:equation draw:name="f2" draw:formula="$1 "/>
91334d
+      <draw:equation draw:name="f3" draw:formula="?f2 -10800"/>
91334d
+      <draw:equation draw:name="f4" draw:formula="?f3 *2"/>
91334d
+      <draw:equation draw:name="f5" draw:formula="abs(?f4 )"/>
91334d
+      <draw:equation draw:name="f6" draw:formula="4320-?f5 "/>
91334d
+      <draw:equation draw:name="f7" draw:formula="if(?f3 ,0,?f5 )"/>
91334d
+      <draw:equation draw:name="f8" draw:formula="15800*?f0 /4460"/>
91334d
+      <draw:equation draw:name="f9" draw:formula="?f0 -?f8 "/>
91334d
+      <draw:equation draw:name="f10" draw:formula="?f0 +?f8 "/>
91334d
+      <draw:equation draw:name="f11" draw:formula="21600-?f4 "/>
91334d
+      <draw:equation draw:name="f12" draw:formula="if(?f3 ,?f11 ,21600)"/>
91334d
+      <draw:equation draw:name="f13" draw:formula="?f12 -?f7 "/>
91334d
+      <draw:equation draw:name="f14" draw:formula="?f5 /2"/>
91334d
+      <draw:equation draw:name="f15" draw:formula="?f7 +7200-?f14 "/>
91334d
+      <draw:equation draw:name="f16" draw:formula="?f12 +?f14 -7200"/>
91334d
+      <draw:equation draw:name="f17" draw:formula="?f13 /2"/>
91334d
+      <draw:equation draw:name="f18" draw:formula="?f7 +?f17 "/>
91334d
+      <draw:equation draw:name="f19" draw:formula="21600-?f18 "/>
91334d
+      <draw:equation draw:name="f20" draw:formula="?f5 /2"/>
91334d
+      <draw:equation draw:name="f21" draw:formula="21600-?f20 "/>
91334d
+      <draw:equation draw:name="f22" draw:formula="?f0 *2"/>
91334d
+      <draw:equation draw:name="f23" draw:formula="21600-?f22 "/>
91334d
+      <draw:equation draw:name="f24" draw:formula="21600-?f7 "/>
91334d
+      <draw:equation draw:name="f25" draw:formula="21600-?f15 "/>
91334d
+      <draw:equation draw:name="f26" draw:formula="?f1 +?f8 "/>
91334d
+      <draw:equation draw:name="f27" draw:formula="21600-?f16 "/>
91334d
+      <draw:equation draw:name="f28" draw:formula="?f1 -?f8 "/>
91334d
+      <draw:equation draw:name="f29" draw:formula="21600-?f12 "/>
91334d
+      <draw:handle draw:handle-position="left $0" draw:handle-range-y-minimum="0" draw:handle-range-y-maximum="4460"/>
91334d
+      <draw:handle draw:handle-position="$1 21600" draw:handle-range-x-minimum="8640" draw:handle-range-x-maximum="12960"/>
91334d
+     </draw:enhanced-geometry>
91334d
+    </draw:custom-shape>
91334d
+    <draw:custom-shape draw:style-name="gr4" draw:text-style-name="P9" draw:layer="layout" svg:width="10cm" svg:height="1.4cm" svg:x="15cm" svg:y="18cm">
91334d
+     <text:p text:style-name="P8"><text:span text:style-name="T2">6</text:span></text:p>
91334d
+     <text:p text:style-name="P8"><text:span text:style-name="T2">Fontwork</text:span></text:p>
91334d
+     <draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="?f18 ?f0 ?f20 10800 ?f19 ?f1 ?f21 10800" draw:text-areas="0 0 21600 21600" draw:text-path="true" draw:text-path-mode="shape" draw:text-path-scale="path" draw:text-path-same-letter-heights="false" draw:type="fontwork-wave" draw:modifiers="4460 10800" draw:enhanced-path="M ?f7 ?f0 C ?f15 ?f9 ?f16 ?f10 ?f12 ?f0 N M ?f29 ?f1 C ?f27 ?f28 ?f25 ?f26 ?f24 ?f1 N">
91334d
+      <draw:equation draw:name="f0" draw:formula="$0 "/>
91334d
+      <draw:equation draw:name="f1" draw:formula="21600-?f0 "/>
91334d
+      <draw:equation draw:name="f2" draw:formula="$1 "/>
91334d
+      <draw:equation draw:name="f3" draw:formula="?f2 -10800"/>
91334d
+      <draw:equation draw:name="f4" draw:formula="?f3 *2"/>
91334d
+      <draw:equation draw:name="f5" draw:formula="abs(?f4 )"/>
91334d
+      <draw:equation draw:name="f6" draw:formula="4320-?f5 "/>
91334d
+      <draw:equation draw:name="f7" draw:formula="if(?f3 ,0,?f5 )"/>
91334d
+      <draw:equation draw:name="f8" draw:formula="15800*?f0 /4460"/>
91334d
+      <draw:equation draw:name="f9" draw:formula="?f0 -?f8 "/>
91334d
+      <draw:equation draw:name="f10" draw:formula="?f0 +?f8 "/>
91334d
+      <draw:equation draw:name="f11" draw:formula="21600-?f4 "/>
91334d
+      <draw:equation draw:name="f12" draw:formula="if(?f3 ,?f11 ,21600)"/>
91334d
+      <draw:equation draw:name="f13" draw:formula="?f12 -?f7 "/>
91334d
+      <draw:equation draw:name="f14" draw:formula="?f5 /2"/>
91334d
+      <draw:equation draw:name="f15" draw:formula="?f7 +7200-?f14 "/>
91334d
+      <draw:equation draw:name="f16" draw:formula="?f12 +?f14 -7200"/>
91334d
+      <draw:equation draw:name="f17" draw:formula="?f13 /2"/>
91334d
+      <draw:equation draw:name="f18" draw:formula="?f7 +?f17 "/>
91334d
+      <draw:equation draw:name="f19" draw:formula="21600-?f18 "/>
91334d
+      <draw:equation draw:name="f20" draw:formula="?f5 /2"/>
91334d
+      <draw:equation draw:name="f21" draw:formula="21600-?f20 "/>
91334d
+      <draw:equation draw:name="f22" draw:formula="?f0 *2"/>
91334d
+      <draw:equation draw:name="f23" draw:formula="21600-?f22 "/>
91334d
+      <draw:equation draw:name="f24" draw:formula="21600-?f7 "/>
91334d
+      <draw:equation draw:name="f25" draw:formula="21600-?f15 "/>
91334d
+      <draw:equation draw:name="f26" draw:formula="?f1 +?f8 "/>
91334d
+      <draw:equation draw:name="f27" draw:formula="21600-?f16 "/>
91334d
+      <draw:equation draw:name="f28" draw:formula="?f1 -?f8 "/>
91334d
+      <draw:equation draw:name="f29" draw:formula="21600-?f12 "/>
91334d
+      <draw:handle draw:handle-position="left $0" draw:handle-range-y-minimum="0" draw:handle-range-y-maximum="4460"/>
91334d
+      <draw:handle draw:handle-position="$1 21600" draw:handle-range-x-minimum="8640" draw:handle-range-x-maximum="12960"/>
91334d
+     </draw:enhanced-geometry>
91334d
+    </draw:custom-shape>
91334d
+    <presentation:notes draw:style-name="dp2">
91334d
+     <draw:page-thumbnail draw:style-name="gr5" draw:layer="layout" svg:width="14.848cm" svg:height="11.136cm" svg:x="3.075cm" svg:y="2.257cm" draw:page-number="1" presentation:class="page"/>
91334d
+     <draw:frame presentation:style-name="pr8" draw:text-style-name="P7" draw:layer="layout" svg:width="16.799cm" svg:height="13.364cm" svg:x="2.1cm" svg:y="14.107cm" presentation:class="notes" presentation:placeholder="true" presentation:user-transformed="true">
91334d
+      <draw:text-box/>
91334d
+     </draw:frame>
91334d
+    </presentation:notes>
91334d
+   </draw:page>
91334d
+   <presentation:settings presentation:mouse-visible="false"/>
91334d
+  </office:presentation>
91334d
+ </office:body>
91334d
+</office:document>
91334d
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx
91334d
index 3f2882384031..6bbb2a53648b 100644
91334d
--- a/sd/qa/unit/export-tests.cxx
91334d
+++ b/sd/qa/unit/export-tests.cxx
91334d
@@ -84,6 +84,7 @@ public:
91334d
     void testN821567();
91334d
     void testMediaEmbedding();
91334d
     void testFdo84043();
91334d
+    void testTdf97630();
91334d
     void testSwappedOutImageExport();
91334d
     void testOOoXMLAnimations();
91334d
     void testTdf80020();
91334d
@@ -98,6 +99,7 @@ public:
91334d
     CPPUNIT_TEST(testN821567);
91334d
     CPPUNIT_TEST(testMediaEmbedding);
91334d
     CPPUNIT_TEST(testFdo84043);
91334d
+    CPPUNIT_TEST(testTdf97630);
91334d
     CPPUNIT_TEST(testSwappedOutImageExport);
91334d
     CPPUNIT_TEST(testOOoXMLAnimations);
91334d
     CPPUNIT_TEST(testTdf80020);
91334d
@@ -125,6 +127,7 @@ public:
91334d
             { "table", "urn:oasis:names:tc:opendocument:xmlns:table:1.0" },
91334d
             { "text", "urn:oasis:names:tc:opendocument:xmlns:text:1.0" },
91334d
             { "xlink", "http://www.w3c.org/1999/xlink" },
91334d
+            { "loext", "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" },
91334d
         };
91334d
         for (size_t i = 0; i < SAL_N_ELEMENTS(namespaces); ++i)
91334d
         {
91334d
@@ -246,6 +249,104 @@ void SdExportTest::testFdo84043()
91334d
     xDocShRef->DoClose();
91334d
 }
91334d
 
91334d
+void SdExportTest::testTdf97630()
91334d
+{
91334d
+    ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/fit-to-size.fodp"), FODP);
91334d
+
91334d
+    {
91334d
+        uno::Reference<drawing::XDrawPagesSupplier> xDPS(xDocShRef->GetModel(), uno::UNO_QUERY);
91334d
+        uno::Reference<drawing::XDrawPage> xDP(xDPS->getDrawPages()->getByIndex(0), uno::UNO_QUERY);
91334d
+
91334d
+        drawing::TextFitToSizeType tmp;
91334d
+        // text shapes
91334d
+        uno::Reference<beans::XPropertySet> xShape0(xDP->getByIndex(0), uno::UNO_QUERY);
91334d
+        xShape0->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_NONE, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape1(xDP->getByIndex(1), uno::UNO_QUERY);
91334d
+        xShape1->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_PROPORTIONAL, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape2(xDP->getByIndex(2), uno::UNO_QUERY);
91334d
+        xShape2->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_ALLLINES, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape3(xDP->getByIndex(3), uno::UNO_QUERY);
91334d
+        xShape3->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_AUTOFIT, tmp);
91334d
+
91334d
+        // fontworks
91334d
+        uno::Reference<beans::XPropertySet> xShape4(xDP->getByIndex(4), uno::UNO_QUERY);
91334d
+        xShape4->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_NONE, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape5(xDP->getByIndex(5), uno::UNO_QUERY);
91334d
+        xShape5->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_ALLLINES, tmp);
91334d
+
91334d
+    }
91334d
+
91334d
+    utl::TempFile aTempFile;
91334d
+    xDocShRef = saveAndReload(xDocShRef.get(), ODP, &aTempFile);
91334d
+
91334d
+    {
91334d
+        uno::Reference<drawing::XDrawPagesSupplier> xDPS(xDocShRef->GetModel(), uno::UNO_QUERY);
91334d
+        uno::Reference<drawing::XDrawPage> xDP(xDPS->getDrawPages()->getByIndex(0), uno::UNO_QUERY);
91334d
+
91334d
+        drawing::TextFitToSizeType tmp;
91334d
+        // text shapes
91334d
+        uno::Reference<beans::XPropertySet> xShape0(xDP->getByIndex(0), uno::UNO_QUERY);
91334d
+        xShape0->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_NONE, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape1(xDP->getByIndex(1), uno::UNO_QUERY);
91334d
+        xShape1->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_PROPORTIONAL, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape2(xDP->getByIndex(2), uno::UNO_QUERY);
91334d
+        xShape2->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+#if 1
91334d
+// TODO see TODO in sdpropls.cxx
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_ALLLINES, tmp);
91334d
+#else
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_PROPORTIONAL, tmp);
91334d
+#endif
91334d
+        uno::Reference<beans::XPropertySet> xShape3(xDP->getByIndex(3), uno::UNO_QUERY);
91334d
+        xShape3->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_AUTOFIT, tmp);
91334d
+
91334d
+        // fontworks
91334d
+        uno::Reference<beans::XPropertySet> xShape4(xDP->getByIndex(4), uno::UNO_QUERY);
91334d
+        xShape4->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_NONE, tmp);
91334d
+        uno::Reference<beans::XPropertySet> xShape5(xDP->getByIndex(5), uno::UNO_QUERY);
91334d
+        xShape5->getPropertyValue("TextFitToSize") >>= tmp;
91334d
+#if 1
91334d
+// TODO see TODO in sdpropls.cxx
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_ALLLINES, tmp);
91334d
+#else
91334d
+        CPPUNIT_ASSERT_EQUAL(drawing::TextFitToSizeType_PROPORTIONAL, tmp);
91334d
+#endif
91334d
+    }
91334d
+
91334d
+    xmlDocPtr pXmlDoc = parseExport(aTempFile, "content.xml");
91334d
+    // text shapes
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='false' and @style:shrink-to-fit='false']", 1);
91334d
+#if 1
91334d
+// TODO see TODO in sdpropls.cxx
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='true' and @style:shrink-to-fit='false']", 1);
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='all' and @style:shrink-to-fit='false']", 1);
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='shrink-to-fit' and @style:shrink-to-fit='true']", 1);
91334d
+#else
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='true' and @style:shrink-to-fit='false']", 2);
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='presentation']/style:graphic-properties[@draw:fit-to-size='false' and @style:shrink-to-fit='true']", 1);
91334d
+#endif
91334d
+    // fontworks
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='graphic']/style:graphic-properties[@draw:fit-to-size='false' and @style:shrink-to-fit='false']", 1);
91334d
+#if 1
91334d
+// TODO see TODO in sdpropls.cxx
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='graphic']/style:graphic-properties[@draw:fit-to-size='all' and @style:shrink-to-fit='false']", 1);
91334d
+#else
91334d
+    assertXPath(pXmlDoc, "//style:style[@style:family='graphic']/style:graphic-properties[@draw:fit-to-size='true' and @style:shrink-to-fit='false']", 1);
91334d
+#endif
91334d
+
91334d
+    xDocShRef->DoClose();
91334d
+}
91334d
+
91334d
 void SdExportTest::testSwappedOutImageExport()
91334d
 {
91334d
     // Problem was with the swapped out images, which were not swapped in during export.
91334d
diff --git a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
91334d
index a999791a5c5a..26f227e8b9a4 100644
91334d
--- a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
91334d
+++ b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
91334d
@@ -433,7 +433,10 @@ void GetFontWorkOutline( FWData& rFWData, const SdrObject* pCustomShape )
91334d
     while ( aTextAreaIter != aTextAreaIEnd )
91334d
     {
91334d
         GetTextAreaOutline( rFWData, pCustomShape, *aTextAreaIter, bSameLetterHeights );
91334d
-        if ( eFTS == SdrFitToSizeType::AllLines )
91334d
+        if (eFTS == SdrFitToSizeType::AllLines ||
91334d
+            // tdf#97630 interpret PROPORTIONAL same as ALLLINES so we don't
91334d
+            // need another ODF attribute!
91334d
+            eFTS == SdrFitToSizeType::Proportional)
91334d
         {
91334d
             std::vector< FWParagraphData >::iterator aParagraphIter( aTextAreaIter->vParagraphs.begin() );
91334d
             std::vector< FWParagraphData >::const_iterator aParagraphIEnd( aTextAreaIter->vParagraphs.end() );
91334d
diff --git a/svx/source/toolbars/fontworkbar.cxx b/svx/source/toolbars/fontworkbar.cxx
91334d
index a148de31cf13..329cd2bcb006 100644
91334d
--- a/svx/source/toolbars/fontworkbar.cxx
91334d
+++ b/svx/source/toolbars/fontworkbar.cxx
91334d
@@ -73,10 +73,16 @@ void SetAlignmentState( SdrView* pSdrView, SfxItemSet& rSet )
91334d
                 case SDRTEXTHORZADJUST_RIGHT  : nAlignment = 2; break;
91334d
                 case SDRTEXTHORZADJUST_BLOCK  :
91334d
                 {
91334d
-                    if ( rTextFitToSizeTypeItem.GetValue() == SdrFitToSizeType::NONE )
91334d
+                    auto const fit(rTextFitToSizeTypeItem.GetValue());
91334d
+                    if (fit == SdrFitToSizeType::NONE)
91334d
+                    {
91334d
                         nAlignment = 3;
91334d
-                    else if ( rTextFitToSizeTypeItem.GetValue() == SdrFitToSizeType::AllLines )
91334d
+                    }
91334d
+                    else if (fit == SdrFitToSizeType::AllLines ||
91334d
+                             fit == SdrFitToSizeType::Proportional)
91334d
+                    {
91334d
                         nAlignment = 4;
91334d
+                    }
91334d
                 }
91334d
             }
91334d
             if ( ( nOldAlignment != -1 ) && ( nOldAlignment != nAlignment ) )
91334d
diff --git a/xmloff/inc/xmlsdtypes.hxx b/xmloff/inc/xmlsdtypes.hxx
91334d
index 8e388cf032c7..675b16fc1377 100644
91334d
--- a/xmloff/inc/xmlsdtypes.hxx
91334d
+++ b/xmloff/inc/xmlsdtypes.hxx
91334d
@@ -67,6 +67,7 @@
91334d
 #define XML_SD_TYPE_CONTROL_BORDER_COLOR            (XML_SD_TYPES_START + 33 )
91334d
 #define XML_SD_TYPE_IMAGE_SCALE_MODE                (XML_SD_TYPES_START + 34 )
91334d
 #define XML_SD_TYPE_LINECAP                         (XML_SD_TYPES_START + 35 )
91334d
+#define XML_SD_TYPE_FITTOSIZE_AUTOFIT               (XML_SD_TYPES_START + 36 )
91334d
 
91334d
 //////////////////////////////////////////////////////////////////////////////
91334d
 // 3D property types
91334d
diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx
91334d
index 72d6315fa088..12c900eb50cc 100644
91334d
--- a/xmloff/source/draw/sdpropls.cxx
91334d
+++ b/xmloff/source/draw/sdpropls.cxx
91334d
@@ -131,7 +131,8 @@ const XMLPropertyMapEntry aXMLSDProperties[] =
91334d
     GMAP( "TextVerticalAdjust",             XML_NAMESPACE_DRAW, XML_TEXTAREA_VERTICAL_ALIGN,    XML_SD_TYPE_VERTICAL_ALIGN, 0 ),
91334d
     GMAP( "TextAutoGrowHeight",             XML_NAMESPACE_DRAW, XML_AUTO_GROW_HEIGHT,       XML_TYPE_BOOL, 0 ),
91334d
     GMAP( "TextAutoGrowWidth",              XML_NAMESPACE_DRAW, XML_AUTO_GROW_WIDTH,        XML_TYPE_BOOL, 0 ),
91334d
-    GMAP( "TextFitToSize",                  XML_NAMESPACE_DRAW, XML_FIT_TO_SIZE,            XML_SD_TYPE_FITTOSIZE, 0 ),
91334d
+    GMAP( "TextFitToSize",                  XML_NAMESPACE_DRAW, XML_FIT_TO_SIZE,            XML_SD_TYPE_FITTOSIZE|MID_FLAG_MERGE_PROPERTY, 0),
91334d
+    GMAPV( "TextFitToSize",                 XML_NAMESPACE_STYLE, XML_SHRINK_TO_FIT,         XML_SD_TYPE_FITTOSIZE_AUTOFIT|MID_FLAG_MERGE_PROPERTY, 0, SvtSaveOptions::ODFVER_012 ),
91334d
     GMAP( "TextContourFrame",               XML_NAMESPACE_DRAW, XML_FIT_TO_CONTOUR,         XML_TYPE_BOOL, 0 ),
91334d
     GMAP( "TextMaximumFrameHeight",         XML_NAMESPACE_FO,   XML_MAX_HEIGHT,             XML_TYPE_MEASURE, 0 ),
91334d
     GMAP( "TextMaximumFrameWidth",          XML_NAMESPACE_FO,   XML_MAX_WIDTH,              XML_TYPE_MEASURE, 0 ),
91334d
@@ -615,12 +616,13 @@ static SvXMLEnumMapEntry const pXML_VerticalAlign_Enum[] =
91334d
     { XML_TOKEN_INVALID, 0 }
91334d
 };
91334d
 
91334d
+// note: PROPORTIONAL and ALLLINES are the same thing now!
91334d
 static SvXMLEnumMapEntry const pXML_FitToSize_Enum_Odf12[] =
91334d
 {
91334d
     { XML_FALSE,        drawing::TextFitToSizeType_NONE },
91334d
     { XML_TRUE,         drawing::TextFitToSizeType_PROPORTIONAL },
91334d
     { XML_TRUE,         drawing::TextFitToSizeType_ALLLINES },
91334d
-    { XML_TRUE,         drawing::TextFitToSizeType_AUTOFIT },
91334d
+    { XML_FALSE,        drawing::TextFitToSizeType_AUTOFIT },
91334d
     { XML_TOKEN_INVALID, 0 }
91334d
 };
91334d
 
91334d
@@ -633,6 +635,15 @@ static SvXMLEnumMapEntry const pXML_FitToSize_Enum[] =
91334d
     { XML_TOKEN_INVALID, 0 }
91334d
 };
91334d
 
91334d
+static SvXMLEnumMapEntry const pXML_ShrinkToFit_Enum[] =
91334d
+{
91334d
+    { XML_FALSE,        drawing::TextFitToSizeType_NONE },
91334d
+    { XML_FALSE,        drawing::TextFitToSizeType_PROPORTIONAL },
91334d
+    { XML_FALSE,        drawing::TextFitToSizeType_ALLLINES },
91334d
+    { XML_TRUE,         drawing::TextFitToSizeType_AUTOFIT },
91334d
+    { XML_TOKEN_INVALID, (drawing::TextFitToSizeType)0 }
91334d
+};
91334d
+
91334d
 static SvXMLEnumMapEntry const pXML_MeasureUnit_Enum[] =
91334d
 {
91334d
     { XML_AUTOMATIC,    0 },
91334d
@@ -853,6 +864,40 @@ bool XMLSdHeaderFooterVisibilityTypeHdl::exportXML(
91334d
     return bRet;
91334d
 }
91334d
 
91334d
+class XMLFitToSizeEnumPropertyHdl : public XMLEnumPropertyHdl
91334d
+{
91334d
+public:
91334d
+    XMLFitToSizeEnumPropertyHdl(
91334d
+            const SvXMLEnumMapEntry *const pMap)
91334d
+        : XMLEnumPropertyHdl(pMap, cppu::UnoType<css::drawing::TextFitToSizeType>::get())
91334d
+    {
91334d
+    }
91334d
+
91334d
+    virtual bool importXML(const OUString& rStrImpValue, uno::Any& rValue,
91334d
+                           const SvXMLUnitConverter& rUC) const override
91334d
+    {
91334d
+        // we don't know here what the actual attribute name is -
91334d
+        // but we can combine the 2 attributes by just taking the
91334d
+        // "largest" result value; this can never result in ALLLINES
91334d
+        // so the implementation has to interpret PROPORTIONAL as ALLLINES;
91334d
+        // both "true" is invalid anyway.
91334d
+        Any any;
91334d
+        auto const bRet = XMLEnumPropertyHdl::importXML(rStrImpValue, any, rUC);
91334d
+        if (!bRet)
91334d
+        {
91334d
+            return false;
91334d
+        }
91334d
+        assert(any.hasValue());
91334d
+        if (!rValue.hasValue() ||
91334d
+            rValue.get<drawing::TextFitToSizeType>() < any.get<drawing::TextFitToSizeType>())
91334d
+        {
91334d
+            rValue = any;
91334d
+        }
91334d
+        return true;
91334d
+    }
91334d
+};
91334d
+
91334d
+
91334d
 XMLSdPropHdlFactory::XMLSdPropHdlFactory( uno::Reference< frame::XModel > const & xModel, SvXMLImport& rImport )
91334d
 : mxModel( xModel ), mpExport(nullptr), mpImport( &rImport )
91334d
 {
91334d
@@ -1047,19 +1092,27 @@ const XMLPropertyHandler* XMLSdPropHdlFactory::GetPropertyHandler( sal_Int32 nTy
91334d
                 break;
91334d
             case XML_SD_TYPE_FITTOSIZE:
91334d
                 {
91334d
-                    if (mpExport && (mpExport->getDefaultVersion()
91334d
-                                        <= SvtSaveOptions::ODFVER_012))
91334d
+                    if (mpExport
91334d
+#if 1
91334d
+// TODO: remove in a couple releases, when users have the import of style:shrink-to-fit
91334d
+                            && (mpExport->getDefaultVersion()
91334d
+                                        <= SvtSaveOptions::ODFVER_012)
91334d
+#endif
91334d
+                        )
91334d
                     {
91334d
-                        pHdl = new XMLEnumPropertyHdl(pXML_FitToSize_Enum_Odf12,
91334d
-                            cppu::UnoType<css::drawing::TextFitToSizeType>::get());
91334d
+                        pHdl = new XMLFitToSizeEnumPropertyHdl(pXML_FitToSize_Enum_Odf12);
91334d
                     }
91334d
                     else
91334d
-                    {
91334d
-                        pHdl = new XMLEnumPropertyHdl(pXML_FitToSize_Enum,
91334d
-                            cppu::UnoType<css::drawing::TextFitToSizeType>::get());
91334d
+                    {   // import all values written by old LO
91334d
+                        pHdl = new XMLFitToSizeEnumPropertyHdl(pXML_FitToSize_Enum);
91334d
                     }
91334d
                 }
91334d
                 break;
91334d
+            case XML_SD_TYPE_FITTOSIZE_AUTOFIT:
91334d
+                {
91334d
+                    pHdl = new XMLFitToSizeEnumPropertyHdl(pXML_ShrinkToFit_Enum);
91334d
+                }
91334d
+                break;
91334d
             case XML_SD_TYPE_MEASURE_UNIT:
91334d
                 pHdl = new XMLEnumPropertyHdl( pXML_MeasureUnit_Enum, ::cppu::UnoType<sal_Int32>::get() );
91334d
                 break;
91334d
-- 
91334d
2.14.1
91334d