diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2017-10-18 07:53:21 +0300 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-10-19 21:55:09 +0200 |
commit | 334a9f16cd1d1f9694f885c759903a41aa3d4833 (patch) | |
tree | 4a40e181386131b6a535adecc2649cd61060ac3a | |
parent | 2c41e9924120ec2e399de9b4d8248f25712ae400 (diff) |
tdf#113211: fix calculations with big integers
... and munbers with few fractional bits
Change-Id: I86c3e8021e803fed498fae768ded9c9e5337c8bd
Reviewed-on: https://gerrit.libreoffice.org/43477
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | config_host.mk.in | 1 | ||||
-rw-r--r-- | config_host/config_global.h.in | 1 | ||||
-rw-r--r-- | configure.ac | 10 | ||||
-rw-r--r-- | sal/rtl/math.cxx | 53 | ||||
-rw-r--r-- | sc/qa/unit/data/functions/mathematical/fods/mod.fods | 1256 |
5 files changed, 592 insertions, 729 deletions
diff --git a/config_host.mk.in b/config_host.mk.in index 8442f07425f0..f602bbc0802d 100644 --- a/config_host.mk.in +++ b/config_host.mk.in @@ -238,6 +238,7 @@ export HAMCREST_JAR=@HAMCREST_JAR@ export HAVE_GCC_AVX=@HAVE_GCC_AVX@ export HAVE_GCC_STACK_PROTECTOR_STRONG=@HAVE_GCC_STACK_PROTECTOR_STRONG@ export HAVE_GCC_BUILTIN_ATOMIC=@HAVE_GCC_BUILTIN_ATOMIC@ +export HAVE_GCC_BUILTIN_FFS=@HAVE_GCC_BUILTIN_FFS@ export HAVE_GCC_FINLINE_LIMIT=@HAVE_GCC_FINLINE_LIMIT@ export HAVE_GCC_FNO_DEFAULT_INLINE=@HAVE_GCC_FNO_DEFAULT_INLINE@ export HAVE_GCC_FNO_ENFORCE_EH_SPECS=@HAVE_GCC_FNO_ENFORCE_EH_SPECS@ diff --git a/config_host/config_global.h.in b/config_host/config_global.h.in index 850792479644..0a7912e6dd69 100644 --- a/config_host/config_global.h.in +++ b/config_host/config_global.h.in @@ -14,6 +14,7 @@ Any change in this header will cause a rebuild of almost everything. #define HAVE_CXX14_CONSTEXPR 0 #define HAVE_GCC_BUILTIN_ATOMIC 0 +#define HAVE_GCC_BUILTIN_FFS 0 /* _Pragma */ #define HAVE_GCC_PRAGMA_OPERATOR 0 #define HAVE_GCC_DEPRECATED_MESSAGE 0 diff --git a/configure.ac b/configure.ac index ac8dbc52463d..a330547d2b21 100644 --- a/configure.ac +++ b/configure.ac @@ -5795,6 +5795,15 @@ if test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then AC_MSG_RESULT([no]) fi + AC_MSG_CHECKING([whether $CC supports __builtin_ffs]) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[ return __builtin_ffs(1); ]])],[HAVE_GCC_BUILTIN_FFS=TRUE],[]) + if test "$HAVE_GCC_BUILTIN_FFS" = "TRUE"; then + AC_MSG_RESULT([yes]) + AC_DEFINE(HAVE_GCC_BUILTIN_FFS) + else + AC_MSG_RESULT([no]) + fi + AC_MSG_CHECKING([whether $CC supports __attribute__((deprecated(message)))]) save_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Werror" @@ -5943,6 +5952,7 @@ fi AC_SUBST(HAVE_GCC_AVX) AC_SUBST(HAVE_GCC_STACK_PROTECTOR_STRONG) AC_SUBST(HAVE_GCC_BUILTIN_ATOMIC) +AC_SUBST(HAVE_GCC_BUILTIN_FFS) dnl =================================================================== dnl Identify the C++ library diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx index 338f40d1469f..32121b34b2f1 100644 --- a/sal/rtl/math.cxx +++ b/sal/rtl/math.cxx @@ -37,6 +37,10 @@ #include <math.h> #include <stdlib.h> +#if !HAVE_GCC_BUILTIN_FFS && !defined _WIN32 + #include <strings.h> +#endif + static int const n10Count = 16; static double const n10s[2][n10Count] = { { 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, @@ -169,6 +173,47 @@ bool isRepresentableInteger(double fAbsValue) return false; } +// Returns 1-based index of least significant bit in a number, or zero if number is zero +int findFirstSetBit(unsigned n) +{ +#if HAVE_GCC_BUILTIN_FFS + return __builtin_ffs(n); +#elif defined _WIN32 + unsigned long pos; + unsigned char bNonZero = _BitScanForward(&pos, n); + return (bNonZero == 0) ? 0 : pos + 1; +#else + return ffs(n); +#endif +} + +/** Returns number of binary bits for fractional part of the number + Expects a proper non-negative double value, not +-INF, not NAN + */ +int getBitsInFracPart(double fAbsValue) +{ + assert(rtl::math::isFinite(fAbsValue) && fAbsValue >= 0.0); + if (fAbsValue == 0.0) + return 0; + auto pValParts = reinterpret_cast< const sal_math_Double * >(&fAbsValue); + int nExponent = pValParts->inf_parts.exponent - 1023; + if (nExponent >= 52) + return 0; // All bits in fraction are in integer part of the number + int nLeastSignificant = findFirstSetBit(pValParts->inf_parts.fraction_lo); + if (nLeastSignificant == 0) + { + nLeastSignificant = findFirstSetBit(pValParts->inf_parts.fraction_hi); + if (nLeastSignificant == 0) + nLeastSignificant = 53; // the implied leading 1 is the least significant + else + nLeastSignificant += 32; + } + int nFracSignificant = 53 - nLeastSignificant; + int nBitsInFracPart = nFracSignificant - nExponent; + + return nBitsInFracPart > 0 ? nBitsInFracPart : 0; +} + template< typename T > inline void doubleToString(typename T::String ** pResult, sal_Int32 * pResultCapacity, sal_Int32 nResultOffset, @@ -1136,7 +1181,8 @@ double SAL_CALL rtl_math_pow10Exp(double fValue, int nExp) SAL_THROW_EXTERN_C() double SAL_CALL rtl_math_approxValue( double fValue ) SAL_THROW_EXTERN_C() { - if (fValue == 0.0 || fValue == HUGE_VAL || !::rtl::math::isFinite( fValue)) + const double fBigInt = 2199023255552.0; // 2^41 -> only 11 bits left for fractional part, fine as decimal + if (fValue == 0.0 || fValue == HUGE_VAL || !::rtl::math::isFinite( fValue) || fValue > fBigInt) { // We don't handle these conditions. Bail out. return fValue; @@ -1148,6 +1194,11 @@ double SAL_CALL rtl_math_approxValue( double fValue ) SAL_THROW_EXTERN_C() if (bSign) fValue = -fValue; + // If the value is either integer representable as double, + // or only has small number of bits in fraction part, then we need not do any approximation + if (isRepresentableInteger(fValue) || getBitsInFracPart(fValue) <= 11) + return fOrigValue; + int nExp = static_cast< int >(floor(log10(fValue))); nExp = 14 - nExp; double fExpValue = getN10Exp(nExp); diff --git a/sc/qa/unit/data/functions/mathematical/fods/mod.fods b/sc/qa/unit/data/functions/mathematical/fods/mod.fods index d77966ed16fb..7148b59df4b7 100644 --- a/sc/qa/unit/data/functions/mathematical/fods/mod.fods +++ b/sc/qa/unit/data/functions/mathematical/fods/mod.fods @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <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: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: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.spreadsheet"> - <office:meta><meta:creation-date>2016-06-25T07:16:38.437590147</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64 LibreOffice_project/66b67f40a7785f08ae214e62b669e001148b474c</meta:generator><meta:document-statistic meta:table-count="3" meta:cell-count="333" meta:object-count="0"/></office:meta> + <office:meta><meta:creation-date>2016-06-25T07:16:38.437590147</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOfficeDev/5.3.0.0.beta2$Windows_X86_64 LibreOffice_project/a7e30712ad6d8bc9286007b37aa581983e0caba3</meta:generator><meta:document-statistic meta:table-count="4" meta:cell-count="360" meta:object-count="0"/></office:meta> <office:settings> <config:config-item-set config:name="ooo:view-settings"> <config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item> @@ -48,6 +48,24 @@ <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> </config:config-item-map-entry> + <config:config-item-map-entry config:name="tdf113211"> + <config:config-item config:name="CursorPositionX" config:type="int">3</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">1</config:config-item> + <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> + <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> + <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> + <config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item> + <config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item> + <config:config-item config:name="PositionLeft" config:type="int">0</config:config-item> + <config:config-item config:name="PositionRight" config:type="int">0</config:config-item> + <config:config-item config:name="PositionTop" config:type="int">0</config:config-item> + <config:config-item config:name="PositionBottom" config:type="int">0</config:config-item> + <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> + <config:config-item config:name="ZoomValue" config:type="int">95</config:config-item> + <config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item> + <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> + <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> + </config:config-item-map-entry> <config:config-item-map-entry config:name="tdf86219"> <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item> <config:config-item config:name="CursorPositionY" config:type="int">18</config:config-item> @@ -68,7 +86,7 @@ </config:config-item-map-entry> </config:config-item-map-named> <config:config-item config:name="ActiveTable" config:type="string">Sheet2</config:config-item> - <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1857</config:config-item> + <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1360</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomValue" config:type="int">95</config:config-item> <config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item> @@ -94,27 +112,27 @@ </config:config-item-map-indexed> </config:config-item-set> <config:config-item-set config:name="ooo:configuration-settings"> - <config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item> - <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item> - <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item> - <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> - <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item> - <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item> - <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> - <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item> - <config:config-item config:name="RasterResolutionX" config:type="int">1270</config:config-item> - <config:config-item config:name="RasterResolutionY" config:type="int">1270</config:config-item> <config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item> - <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item> - <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item> - <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item> - <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item> - <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> + <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> <config:config-item config:name="GridColor" config:type="long">12632256</config:config-item> + <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item> + <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item> + <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item> + <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item> + <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item> + <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item> <config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item> - <config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item> + <config:config-item config:name="RasterResolutionX" config:type="int">1270</config:config-item> + <config:config-item config:name="RasterResolutionY" config:type="int">1270</config:config-item> + <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item> + <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item> + <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item> + <config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item> + <config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item> + <config:config-item config:name="PrinterName" config:type="string">Microsoft Print to PDF</config:config-item> + <config:config-item config:name="PrinterSetup" config:type="base64Binary">GRb+/01pY3Jvc29mdCBQcmludCB0byBQREYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATWljcm9zb2Z0IFByaW50IFRvIFBERgAAAAAAAAAAAAAWAAEANhUAAAAAAAAEAAhSAAAEdAAAM1ROVwAAAAAKAE0AaQBjAHIAbwBzAG8AZgB0ACAAUAByAGkAbgB0ACAAdABvACAAUABEAEYAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAMG3ABQFAMvAQABAAkAmgs0CGQAAQAPAFgCAgABAFgCAwABAEEANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAIAAAABAAAA/////0dJUzQAAAAAAAAAAAAAAABESU5VIgDIACQDLBE/XXt+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyAAAAFNNVEoAAAAAEAC4AHsAMAA4ADQARgAwADEARgBBAC0ARQA2ADMANAAtADQARAA3ADcALQA4ADMARQBFAC0AMAA3ADQAOAAxADcAQwAwADMANQA4ADEAfQAAAFJFU0RMTABVbmlyZXNETEwAUGFwZXJTaXplAEE0AE9yaWVudGF0aW9uAFBPUlRSQUlUAFJlc29sdXRpb24AUmVzT3B0aW9uMQBDb2xvck1vZGUAQ29sb3IAAAAAAAAAAAAAAAAAAAAAAAAsEQAAVjRETQEAAAAAAAAAnApwIhwAAADsAAAAAwAAAPoBTwg05ndNg+4HSBfANYHQAAAATAAAAAMAAAAACAAAAAAAAAAAAAADAAAAAAgAACoAAAAACAAAAwAAAEAAAABWAAAAABAAAEQAbwBjAHUAbQBlAG4AdABVAHMAZQByAFAAYQBzAHMAdwBvAHIAZAAAAEQAbwBjAHUAbQBlAG4AdABPAHcAbgBlAHIAUABhAHMAcwB3AG8AcgBkAAAARABvAGMAdQBtAGUAbgB0AEMAcgB5AHAAdABTAGUAYwB1AHIAaQB0AHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgBDT01QQVRfRFVQTEVYX01PREUTAER1cGxleE1vZGU6OlVua25vd24=</config:config-item> <config:config-item-map-indexed config:name="ForbiddenCharacters"> <config:config-item-map-entry> <config:config-item config:name="Language" config:type="string">en</config:config-item> @@ -124,14 +142,14 @@ <config:config-item config:name="EndLine" config:type="string"/> </config:config-item-map-entry> </config:config-item-map-indexed> - <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item> - <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item> - <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item> - <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item> - <config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item> - <config:config-item config:name="PrinterSetup" config:type="base64Binary">kQH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAsgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MApjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQARHVwbGV4Ok5vbmUAABIAQ09NUEFUX0RVUExFWF9NT0RFDwBEdXBsZXhNb2RlOjpPZmY=</config:config-item> - <config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item> <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item> + <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> + <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item> + <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> + <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item> + <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item> + <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> + <config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item> </config:config-item-set> </office:settings> <office:scripts> @@ -155,6 +173,8 @@ <style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/> <style:font-face style:name="Mangal" svg:font-family="Mangal" style:font-family-generic="system" style:font-pitch="variable"/> <style:font-face style:name="Microsoft YaHei" svg:font-family="'Microsoft YaHei'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Segoe UI" svg:font-family="'Segoe UI'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Tahoma1" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/> </office:font-face-decls> <office:styles> <style:default-style style:family="table-cell"> @@ -523,7 +543,8 @@ <number:time-style style:name="N185"> <number:minutes number:style="long"/> <number:text>:</number:text> - <number:seconds number:style="long" number:decimal-places="1"/> + <number:seconds number:style="long"/> + <number:text>,</number:text> </number:time-style> <number:number-style style:name="N186"> <number:scientific-number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="3" number:min-exponent-digits="1" loext:exponent-interval="3" loext:forced-exponent-sign="true"/> @@ -1030,108 +1051,101 @@ <number:currency-symbol number:language="fr" number:country="FR">€</number:currency-symbol> <style:map style:condition="value()>=0" style:apply-style-name="N268P0"/> </number:currency-style> - <number:date-style style:name="N269"> - <number:day number:style="long"/> - <number:text>.</number:text> - <number:month number:style="long"/> - <number:text>.</number:text> - <number:year number:style="long"/> - </number:date-style> - <number:number-style style:name="N271P0" style:volatile="true"> + <number:number-style style:name="N270P0" style:volatile="true"> <number:text>WAHR</number:text> </number:number-style> - <number:number-style style:name="N271P1" style:volatile="true"> + <number:number-style style:name="N270P1" style:volatile="true"> <number:text>WAHR</number:text> </number:number-style> - <number:number-style style:name="N271"> + <number:number-style style:name="N270"> <number:text>FALSCH</number:text> - <style:map style:condition="value()>0" style:apply-style-name="N271P0"/> - <style:map style:condition="value()<0" style:apply-style-name="N271P1"/> + <style:map style:condition="value()>0" style:apply-style-name="N270P0"/> + <style:map style:condition="value()<0" style:apply-style-name="N270P1"/> </number:number-style> - <number:number-style style:name="N272"> + <number:number-style style:name="N271"> <number:number number:decimal-places="20" loext:min-decimal-places="20" number:min-integer-digits="1"/> </number:number-style> - <number:number-style style:name="N274P0" style:volatile="true"> + <number:number-style style:name="N273P0" style:volatile="true"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N274"> + <number:number-style style:name="N273"> <number:text>-</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N274P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N273P0"/> </number:number-style> - <number:number-style style:name="N275P0" style:volatile="true"> + <number:number-style style:name="N274P0" style:volatile="true"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N275"> + <number:number-style style:name="N274"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N275P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N274P0"/> </number:number-style> - <number:number-style style:name="N277P0" style:volatile="true"> + <number:number-style style:name="N276P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N277"> + <number:number-style style:name="N276"> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N277P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N276P0"/> </number:number-style> - <number:number-style style:name="N278P0" style:volatile="true"> + <number:number-style style:name="N277P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N278"> + <number:number-style style:name="N277"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N278P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N277P0"/> </number:number-style> - <number:number-style style:name="N279"> + <number:number-style style:name="N278"> <number:number number:decimal-places="19" loext:min-decimal-places="19" number:min-integer-digits="1"/> </number:number-style> - <number:date-style style:name="N280"> + <number:date-style style:name="N279"> <number:month number:textual="true"/> <number:text> </number:text> <number:year number:style="long"/> </number:date-style> - <number:percentage-style style:name="N281"> + <number:percentage-style style:name="N280"> <number:number number:decimal-places="4" loext:min-decimal-places="4" number:min-integer-digits="1"/> <number:text>%</number:text> </number:percentage-style> - <number:number-style style:name="N282P0" style:volatile="true"> + <number:number-style style:name="N281P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1"/> </number:number-style> - <number:number-style style:name="N282"> + <number:number-style style:name="N281"> <style:text-properties fo:color="#ff0000"/> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1"/> - <style:map style:condition="value()>=0" style:apply-style-name="N282P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N281P0"/> </number:number-style> - <number:number-style style:name="N283"> + <number:number-style style:name="N282"> <number:scientific-number number:decimal-places="16" loext:min-decimal-places="16" number:min-integer-digits="1" number:min-exponent-digits="2" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N285P0" style:volatile="true"> + <number:number-style style:name="N284P0" style:volatile="true"> <number:number number:decimal-places="16" loext:min-decimal-places="16" number:min-integer-digits="1" number:grouping="true"/> <number:text> €</number:text> </number:number-style> - <number:number-style style:name="N285"> + <number:number-style style:name="N284"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="16" loext:min-decimal-places="16" number:min-integer-digits="1" number:grouping="true"/> <number:text> €</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N285P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N284P0"/> </number:number-style> - <number:percentage-style style:name="N286"> + <number:percentage-style style:name="N285"> <number:number number:decimal-places="16" loext:min-decimal-places="16" number:min-integer-digits="1"/> <number:text>%</number:text> </number:percentage-style> - <number:time-style style:name="N287"> + <number:time-style style:name="N286"> <number:hours/> <number:text>:</number:text> <number:minutes number:style="long"/> @@ -1140,180 +1154,181 @@ <number:text> </number:text> <number:am-pm/> </number:time-style> - <number:time-style style:name="N288"> + <number:time-style style:name="N287"> <number:hours number:style="long"/> <number:text>:</number:text> <number:minutes number:style="long"/> <number:text>:</number:text> - <number:seconds number:style="long" number:decimal-places="1"/> + <number:seconds number:style="long"/> + <number:text>,</number:text> </number:time-style> - <number:currency-style style:name="N290P0" style:volatile="true"> + <number:currency-style style:name="N289P0" style:volatile="true"> <number:currency-symbol>€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> </number:currency-style> - <number:currency-style style:name="N290"> + <number:currency-style style:name="N289"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:currency-symbol>€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N290P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N289P0"/> </number:currency-style> - <number:currency-style style:name="N292P0" style:volatile="true"> + <number:currency-style style:name="N291P0" style:volatile="true"> <number:currency-symbol>€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> </number:currency-style> - <number:currency-style style:name="N292"> + <number:currency-style style:name="N291"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:currency-symbol>€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N292P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N291P0"/> </number:currency-style> - <number:number-style style:name="N293"> + <number:number-style style:name="N292"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="12"/> </number:number-style> - <number:number-style style:name="N294P0" style:volatile="true"> + <number:number-style style:name="N293P0" style:volatile="true"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> </number:number-style> - <number:number-style style:name="N294"> + <number:number-style style:name="N293"> <number:text>-</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N294P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N293P0"/> </number:number-style> - <number:number-style style:name="N295P0" style:volatile="true"> + <number:number-style style:name="N294P0" style:volatile="true"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> </number:number-style> - <number:number-style style:name="N295"> + <number:number-style style:name="N294"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N295P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N294P0"/> </number:number-style> - <number:number-style style:name="N296P0" style:volatile="true"> + <number:number-style style:name="N295P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> </number:number-style> - <number:number-style style:name="N296"> + <number:number-style style:name="N295"> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N296P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N295P0"/> </number:number-style> - <number:number-style style:name="N297P0" style:volatile="true"> + <number:number-style style:name="N296P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> </number:number-style> - <number:number-style style:name="N297"> + <number:number-style style:name="N296"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> - <style:map style:condition="value()>=0" style:apply-style-name="N297P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N296P0"/> </number:number-style> - <number:number-style style:name="N299P0" style:volatile="true"> + <number:number-style style:name="N298P0" style:volatile="true"> <number:text>t$</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N299"> + <number:number-style style:name="N298"> <number:text>(t$</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text>)</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N299P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N298P0"/> </number:number-style> - <number:number-style style:name="N300P0" style:volatile="true"> + <number:number-style style:name="N299P0" style:volatile="true"> <number:text>t$</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N300"> + <number:number-style style:name="N299"> <style:text-properties fo:color="#ff0000"/> <number:text>(t$</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text>)</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N300P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N299P0"/> </number:number-style> - <number:number-style style:name="N302P0" style:volatile="true"> + <number:number-style style:name="N301P0" style:volatile="true"> <number:text>t$</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N302"> + <number:number-style style:name="N301"> <number:text>(t$</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text>)</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N302P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N301P0"/> </number:number-style> - <number:number-style style:name="N303P0" style:volatile="true"> + <number:number-style style:name="N302P0" style:volatile="true"> <number:text>t$</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> </number:number-style> - <number:number-style style:name="N303"> + <number:number-style style:name="N302"> <style:text-properties fo:color="#ff0000"/> <number:text>(t$</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text>)</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N303P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N302P0"/> </number:number-style> - <number:number-style style:name="N304"> + <number:number-style style:name="N303"> <number:text>t</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="2"/> </number:number-style> - <number:currency-style style:name="N306P0" style:volatile="true"> + <number:currency-style style:name="N305P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:currency-symbol number:language="tr" number:country="TR">YTL</number:currency-symbol> </number:currency-style> - <number:currency-style style:name="N306"> + <number:currency-style style:name="N305"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:currency-symbol number:language="tr" number:country="TR">YTL</number:currency-symbol> - <style:map style:condition="value()>=0" style:apply-style-name="N306P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N305P0"/> </number:currency-style> - <number:currency-style style:name="N308P0" style:volatile="true"> + <number:currency-style style:name="N307P0" style:volatile="true"> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:currency-symbol number:language="tr" number:country="TR">TL</number:currency-symbol> </number:currency-style> - <number:currency-style style:name="N308"> + <number:currency-style style:name="N307"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:currency-symbol number:language="tr" number:country="TR">TL</number:currency-symbol> - <style:map style:condition="value()>=0" style:apply-style-name="N308P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N307P0"/> </number:currency-style> - <number:currency-style style:name="N311P0" style:volatile="true"> + <number:currency-style style:name="N309P0" style:volatile="true"> <number:currency-symbol number:language="nl" number:country="NL">€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> </number:currency-style> - <number:currency-style style:name="N311"> + <number:currency-style style:name="N309"> <style:text-properties fo:color="#ff0000"/> <number:currency-symbol number:language="nl" number:country="NL">€</number:currency-symbol> <number:text> </number:text> <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:text>-</number:text> - <style:map style:condition="value()>=0" style:apply-style-name="N311P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N309P0"/> </number:currency-style> - <number:number-style style:name="N312"> + <number:number-style style:name="N310"> <number:scientific-number number:decimal-places="15" loext:min-decimal-places="15" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N313"> + <number:number-style style:name="N311"> <number:scientific-number number:decimal-places="16" loext:min-decimal-places="16" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N314"> + <number:number-style style:name="N312"> <number:scientific-number number:decimal-places="17" loext:min-decimal-places="17" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N315"> + <number:number-style style:name="N313"> <number:scientific-number number:decimal-places="18" loext:min-decimal-places="18" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N316"> + <number:number-style style:name="N314"> <number:scientific-number number:decimal-places="19" loext:min-decimal-places="19" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N317"> + <number:number-style style:name="N315"> <number:scientific-number number:decimal-places="20" loext:min-decimal-places="20" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> - <number:number-style style:name="N318"> + <number:number-style style:name="N316"> <number:scientific-number number:decimal-places="43" loext:min-decimal-places="43" number:min-integer-digits="1" number:min-exponent-digits="3" loext:exponent-interval="1" loext:forced-exponent-sign="true"/> </number:number-style> <number:date-style style:name="N10121" number:language="en" number:country="US"> @@ -1713,7 +1728,8 @@ <number:time-style style:name="N20126" number:language="de" number:country="DE"> <number:minutes number:style="long"/> <number:text>:</number:text> - <number:seconds number:style="long" number:decimal-places="1"/> + <number:seconds number:style="long"/> + <number:text>,</number:text> </number:time-style> <number:date-style style:name="N30143" number:language="th" number:country="TH"> <number:day/> @@ -1880,7 +1896,8 @@ <number:time-style style:name="N30167" number:language="th" number:country="TH" number:transliteration-format="๑" number:transliteration-language="th" number:transliteration-country="TH" number:transliteration-style="short"> <number:minutes number:style="long"/> <number:text>:</number:text> - <number:seconds number:style="long" number:decimal-places="1"/> + <number:seconds number:style="long"/> + <number:text>.</number:text> </number:time-style> <style:style style:name="Default" style:family="table-cell"> <style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Droid Sans Devanagari" style:font-family-complex="'Droid Sans Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/> @@ -1890,10 +1907,10 @@ <style:paragraph-properties fo:text-align="center"/> <style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/> </style:style> - <style:style style:name="Heading1" style:family="table-cell" style:parent-style-name="Heading"> - <style:table-cell-properties style:rotation-angle="90"/> + <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading"> + <style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/> </style:style> - <style:style style:name="Heading2" style:family="table-cell" style:parent-style-name="Heading"> + <style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading"> <style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/> </style:style> <style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/> @@ -1927,6 +1944,23 @@ <style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/> </style:style> + <style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent"> + <style:table-cell-properties fo:background-color="#000000"/> + <style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/> + </style:style> + <style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent"> + <style:table-cell-properties fo:background-color="#808080"/> + <style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/> + </style:style> + <style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent"> + <style:table-cell-properties fo:background-color="#dddddd"/> + </style:style> + <style:style style:name="Heading1" style:family="table-cell" style:parent-style-name="Heading"> + <style:table-cell-properties style:rotation-angle="90"/> + </style:style> + <style:style style:name="Heading2" style:family="table-cell" style:parent-style-name="Heading"> + <style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/> + </style:style> <style:style style:name="Accent1" style:family="table-cell" style:parent-style-name="Accent"> <style:table-cell-properties fo:background-color="#000000"/> <style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/> @@ -2028,6 +2062,12 @@ <style:style style:name="co11" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="110.35pt"/> </style:style> + <style:style style:name="co12" style:family="table-column"> + <style:table-column-properties fo:break-before="auto" style:column-width="99.89pt"/> + </style:style> + <style:style style:name="co13" style:family="table-column"> + <style:table-column-properties fo:break-before="auto" style:column-width="76.31pt"/> + </style:style> <style:style style:name="ro1" style:family="table-row"> <style:table-row-properties style:row-height="24.46pt" fo:break-before="auto" style:use-optimal-row-height="true"/> </style:style> @@ -2112,229 +2152,181 @@ <number:boolean-style style:name="N40099" number:language="en" number:country="GB"> <number:boolean/> </number:boolean-style> - <style:style style:name="ce1" style:family="table-cell" style:parent-style-name="Default"/> - <style:style style:name="ce55" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0pt"/> <style:text-properties fo:font-size="20pt" fo:font-weight="bold" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce56" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce57" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce41" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> <style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce58" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce42" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> + <style:paragraph-properties fo:text-align="end" fo:margin-left="0pt"/> + </style:style> + <style:style style:name="ce43" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> </style:style> - <style:style style:name="ce59" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce44" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B3"/> <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B3"/> <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B3"/> </style:style> - <style:style style:name="ce60" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce45" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B8"/> <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B8"/> <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B8"/> </style:style> - <style:style style:name="ce61" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce46" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B8"/> <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B8"/> <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B8"/> </style:style> - <style:style style:name="ce62" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce47" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties fo:wrap-option="wrap"/> <style:text-properties 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 Serif" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> </style:style> - <style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> - </style:style> - <style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"/> - <style:style style:name="ce15" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> - <style:table-cell-properties fo:wrap-option="wrap"/> - <style:text-properties 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 Sans2" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> - </style:style> - <style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> - <style:text-properties style:font-name="Liberation Sans" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Droid Sans Devanagari"/> - </style:style> - <style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> - <style:text-properties style:font-name="Liberation Sans2"/> - </style:style> - <style:style style:name="ce23" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties style:font-name="Liberation Sans" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Droid Sans Devanagari"/> + <style:style style:name="ce72" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/> + <style:paragraph-properties fo:text-align="center"/> </style:style> - <style:style style:name="ce67" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> - <style:table-cell-properties fo:background-color="transparent"/> + <style:style style:name="ce76" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"/> + <style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default"> + <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce68" style:family="table-cell" style:parent-style-name="Default"> - <style:table-cell-properties fo:background-color="transparent"/> + <style:style style:name="ce95" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties fo:background-color="#ffffcc"/> </style:style> - <style:style style:name="ce13" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties style:font-name="DejaVu Sans"/> + <style:style style:name="ce96" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties fo:background-color="#dddddd"/> </style:style> - <style:style style:name="ce41" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce25" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C2"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C2"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C2"/> + <style:paragraph-properties fo:text-align="start" fo:margin-left="0pt"/> + <style:text-properties fo:font-size="20pt" fo:font-weight="bold" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce42" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce49" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce70" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce50" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce71" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce51" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:paragraph-properties fo:text-align="end" fo:margin-left="0pt"/> </style:style> - <style:style style:name="ce72" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce52" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> </style:style> - <style:style style:name="ce73" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B3"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B3"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B3"/> </style:style> - <style:style style:name="ce74" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce54" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B8"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B8"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B8"/> </style:style> - <style:style style:name="ce75" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce55" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet1.B8"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet1.B8"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet1.B8"/> </style:style> - <style:style style:name="ce76" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce56" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties fo:wrap-option="wrap"/> + <style:text-properties 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 Serif" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> </style:style> - <style:style style:name="ce77" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce78" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"/> + <style:style style:name="ce15" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> + <style:table-cell-properties fo:wrap-option="wrap"/> + <style:text-properties 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 Sans2" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> </style:style> - <style:style style:name="ce79" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> + <style:text-properties style:font-name="Liberation Sans" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Droid Sans Devanagari"/> </style:style> - <style:style style:name="ce80" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127"> + <style:text-properties style:font-name="Liberation Sans2"/> </style:style> - <style:style style:name="ce81" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce23" style:family="table-cell" style:parent-style-name="Default"> + <style:text-properties style:font-name="Liberation Sans" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Droid Sans Devanagari"/> </style:style> - <style:style style:name="ce82" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce67" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> + <style:table-cell-properties fo:background-color="transparent"/> </style:style> - <style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default"> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce68" style:family="table-cell" style:parent-style-name="Default"> + <style:table-cell-properties fo:background-color="transparent"/> </style:style> - <style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:style style:name="ce13" style:family="table-cell" style:parent-style-name="Default"> + <style:text-properties style:font-name="DejaVu Sans"/> </style:style> - <style:style style:name="ce20" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce66" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> - <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C3"/> - <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C3"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C2"/> + </style:style> + <style:style style:name="ce48" style:family="table-cell" style:parent-style-name="Default"> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C2"/> </style:style> - <style:style style:name="ce58" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce70" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="Sheet2.C2"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="Sheet2.C2"/> </style:style> <style:style style:name="ce21" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties style:font-name-asian="Microsoft YaHei" style:font-name-complex="Mangal"/> </style:style> - <style:style style:name="ce87" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce73" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/> <style:paragraph-properties fo:text-align="center"/> </style:style> - <style:style style:name="ce94" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce74" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" style:vertical-align="middle"/> <style:paragraph-properties fo:text-align="center"/> <style:text-properties 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 Serif" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> </style:style> - <style:style style:name="ce62" style:family="table-cell" style:parent-style-name="Default"> - <style:table-cell-properties fo:wrap-option="wrap"/> - <style:text-properties 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 Serif" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" 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"/> - </style:style> <style:style style:name="ce89" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0pt"/> </style:style> <style:style style:name="ce24" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N10099"/> - <style:style style:name="ce91" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"/> + <style:style style:name="ce78" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"/> <style:style style:name="ce22" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties 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="Arial" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> @@ -2350,7 +2342,7 @@ <style:table-cell-properties style:cell-protect="none" style:print-content="true"/> <style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/> </style:style> - <style:style style:name="ce98" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce86" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce32" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N104"/> @@ -2364,17 +2356,17 @@ <style:style style:name="ce38" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N41"/> <style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N40"/> <style:style style:name="ce98" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> - </style:style> - <style:style style:name="ce91" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"/> - <style:style style:name="ce107" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties fo:background-color="#ffffcc"/> </style:style> - <style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce99" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties fo:background-color="#dddddd"/> </style:style> - <style:style style:name="ta_extref" style:family="table"> - <style:table-properties table:display="false"/> + <style:style style:name="ce100" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N99"> + <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> + <style:paragraph-properties fo:text-align="center" fo:margin-left="0pt"/> + <style:map style:condition="cell-content()=""" style:apply-style-name="Default" style:base-cell-address="tdf113211.D2"/> + <style:map style:condition="cell-content()=0" style:apply-style-name="Untitled1" style:base-cell-address="tdf113211.D2"/> + <style:map style:condition="cell-content()=1" style:apply-style-name="Untitled2" style:base-cell-address="tdf113211.D2"/> </style:style> <style:page-layout style:name="pm1"> <style:page-layout-properties fo:page-width="1190.55pt" fo:page-height="841.89pt" style:num-format="1" style:print-orientation="landscape" style:shadow="none" style:writing-mode="lr-tb"/> @@ -2416,7 +2408,7 @@ <text:p><text:sheet-name>???</text:sheet-name> (<text:title>???</text:title>)</text:p> </style:region-left> <style:region-right> - <text:p><text:date style:data-style-name="N2" text:date-value="2016-10-13">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="21:41:09.362929754">00:00:00</text:time></text:p> + <text:p><text:date style:data-style-name="N2" text:date-value="2017-10-18">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="15:30:27.296000000">00:00:00</text:time></text:p> </style:region-right> </style:header> <style:header-left style:display="false"/> @@ -2432,10 +2424,10 @@ <table:table table:name="Sheet1" table:style-name="ta1"> <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> <table:table-column table:style-name="co1" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co1" table:default-cell-style-name="ce58"/> + <table:table-column table:style-name="co1" table:default-cell-style-name="ce52"/> <table:table-column table:style-name="co2" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> - <table:table-cell table:style-name="ce55" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce25" office:value-type="string" calcext:value-type="string"> <text:p>MOD Function</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="2"/> @@ -2444,11 +2436,11 @@ <table:table-cell table:number-columns-repeated="3"/> </table:table-row> <table:table-row table:style-name="ro3"> - <table:table-cell table:style-name="ce56" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string"> <text:p>Result</text:p> </table:table-cell> - <table:table-cell table:style-name="ce59" table:formula="of:=AND([.B8:.B95])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> - <text:p>TRUE</text:p> + <table:table-cell table:style-name="ce53" table:formula="of:=AND([.B8:.B95])" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> </table:table-cell> <table:table-cell/> </table:table-row> @@ -2456,13 +2448,13 @@ <table:table-cell table:number-columns-repeated="3"/> </table:table-row> <table:table-row table:style-name="ro4"> - <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce50" office:value-type="string" calcext:value-type="string"> <text:p>Sheet</text:p> </table:table-cell> - <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce50" office:value-type="string" calcext:value-type="string"> <text:p>Result</text:p> </table:table-cell> - <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce50" office:value-type="string" calcext:value-type="string"> <text:p>Description</text:p> </table:table-cell> </table:table-row> @@ -2470,7 +2462,7 @@ <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce60" table:formula="of:=AND([Sheet2.C2:.C92])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce54" table:formula="of:=AND([Sheet2.C2:.C92])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell office:value-type="string" calcext:value-type="string"> @@ -2479,26 +2471,37 @@ </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell/> - <table:table-cell table:style-name="ce60" table:formula="of:=AND([tdf86219.A22:.A92])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce54" table:formula="of:=AND([tdf86219.A22:.A92])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>Simple MOD formulas with local references and values</text:p> </table:table-cell> </table:table-row> - <table:table-row table:style-name="ro2" table:number-rows-repeated="2"> + <table:table-row table:style-name="ro5"> + <table:table-cell table:style-name="ce51" office:value-type="string" calcext:value-type="string"> + <text:p>tdf113211</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce54" table:formula="of:=AND([$tdf113211.D2:.D100])" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>MOD on big integers (representable with double)</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro2"> <table:table-cell/> - <table:table-cell table:style-name="ce61"/> + <table:table-cell table:style-name="ce55"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell/> - <table:table-cell table:style-name="ce61"/> - <table:table-cell table:style-name="ce62"/> + <table:table-cell table:style-name="ce55"/> + <table:table-cell table:style-name="ce56"/> </table:table-row> <table:table-row table:style-name="ro2" table:number-rows-repeated="26"> <table:table-cell/> - <table:table-cell table:style-name="ce61"/> + <table:table-cell table:style-name="ce55"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2" table:number-rows-repeated="1048537"> @@ -2524,7 +2527,7 @@ <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> <table:table-column table:style-name="co4" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co5" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co6" table:default-cell-style-name="ce58"/> + <table:table-column table:style-name="co6" table:default-cell-style-name="ce52"/> <table:table-column table:style-name="co7" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co8" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co9" table:default-cell-style-name="Default"/> @@ -2557,7 +2560,7 @@ <table:table-cell table:style-name="ce67" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce41" table:formula="of:=ROUND([Sheet2.A2];12)=ROUND([Sheet2.B2];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A2];12)=ROUND([Sheet2.B2];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A2])" office:value-type="string" office:string-value="=MOD(22,3)" calcext:value-type="string"> @@ -2574,7 +2577,7 @@ <table:table-cell table:style-name="ce67" office:value-type="float" office:value="1.25" calcext:value-type="float"> <text:p>1.25</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A3];12)=ROUND([Sheet2.B3];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A3];12)=ROUND([Sheet2.B3];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A3])" office:value-type="string" office:string-value="=MOD(11.25,2.5)" calcext:value-type="string"> @@ -2589,14 +2592,14 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A4];12)=ROUND([Sheet2.B4];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A4];12)=ROUND([Sheet2.B4];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A4])" office:value-type="string" office:string-value="=MOD(3, 2)" calcext:value-type="string"> <text:p>=MOD(3, 2)</text:p> </table:table-cell> <table:table-cell table:style-name="ce23"/> - <table:table-cell table:style-name="ce91"/> + <table:table-cell table:style-name="ce78"/> <table:table-cell table:number-columns-repeated="9"/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2606,14 +2609,14 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A5];12)=ROUND([Sheet2.B5];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A5];12)=ROUND([Sheet2.B5];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A5])" office:value-type="string" office:string-value="=MOD(-3, 2)" calcext:value-type="string"> <text:p>=MOD(-3, 2)</text:p> </table:table-cell> <table:table-cell table:style-name="ce23"/> - <table:table-cell table:style-name="ce91"/> + <table:table-cell table:style-name="ce78"/> <table:table-cell table:number-columns-repeated="9"/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2623,7 +2626,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="-1" calcext:value-type="float"> <text:p>-1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A6];12)=ROUND([Sheet2.B6];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A6];12)=ROUND([Sheet2.B6];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A6])" office:value-type="string" office:string-value="=MOD(3, -2)" calcext:value-type="string"> @@ -2642,7 +2645,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="-1" calcext:value-type="float"> <text:p>-1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A7];12)=ROUND([Sheet2.B7];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A7];12)=ROUND([Sheet2.B7];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A7])" office:value-type="string" office:string-value="=MOD(-3, -2)" calcext:value-type="string"> @@ -2661,7 +2664,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A8];12)=ROUND([Sheet2.B8];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A8];12)=ROUND([Sheet2.B8];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A8])" office:value-type="string" office:string-value="=MOD((3^31)-1,2)" calcext:value-type="string"> @@ -2682,13 +2685,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A9];12)=ROUND([Sheet2.B9];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A9];12)=ROUND([Sheet2.B9];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A9])" office:value-type="string" office:string-value="=MOD(Sheet2.F9*1000,5)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F9*1000,5)</text:p> </table:table-cell> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="5"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="5"> <text:p>AOO#54529</text:p> </table:table-cell> <table:table-cell office:value-type="float" office:value="1.41" calcext:value-type="float"> @@ -2704,7 +2707,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A10];12)=ROUND([Sheet2.B10];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A10];12)=ROUND([Sheet2.B10];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A10])" office:value-type="string" office:string-value="=MOD(Sheet2.F10*1000,5)" calcext:value-type="string"> @@ -2724,7 +2727,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A11];12)=ROUND([Sheet2.B11];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A11];12)=ROUND([Sheet2.B11];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A11])" office:value-type="string" office:string-value="=MOD(Sheet2.F11*1000,5)" calcext:value-type="string"> @@ -2736,7 +2739,7 @@ </table:table-cell> <table:table-cell table:style-name="ce22"/> <table:table-cell table:number-columns-repeated="3"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="4"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="4"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2746,7 +2749,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A12];12)=ROUND([Sheet2.B12];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A12];12)=ROUND([Sheet2.B12];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A12])" office:value-type="string" office:string-value="=MOD(Sheet2.F12*1000,5)" calcext:value-type="string"> @@ -2766,7 +2769,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A13];12)=ROUND([Sheet2.B13];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A13];12)=ROUND([Sheet2.B13];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A13])" office:value-type="string" office:string-value="=MOD(Sheet2.F13*1000,5)" calcext:value-type="string"> @@ -2788,7 +2791,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A14];12)=ROUND([Sheet2.B14];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A14];12)=ROUND([Sheet2.B14];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A14])" office:value-type="string" office:string-value="=MOD(COLUMN(Sheet2.I13:N13),2)" calcext:value-type="string"> @@ -2810,21 +2813,21 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A15];12)=ROUND([Sheet2.B15];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A15];12)=ROUND([Sheet2.B15];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A15])" office:value-type="string" office:string-value="=MOD(COLUMN(Sheet2.N13),2)" calcext:value-type="string"> <text:p>=MOD(COLUMN(Sheet2.N13),2)</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="6"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:style-name="ce14" table:formula="of:=MOD(26^15;77)" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0.00000000000000E+000</text:p> </table:table-cell> <table:table-cell table:style-name="ce68"/> - <table:table-cell table:style-name="ce70"/> + <table:table-cell table:style-name="ce66"/> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A16])" office:value-type="string" office:string-value="=MOD(26^15,77)" calcext:value-type="string"> <text:p>=MOD(26^15,77)</text:p> </table:table-cell> @@ -2840,20 +2843,20 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce42" table:formula="of:=ROUND([Sheet2.A17];12)=ROUND([Sheet2.B17];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A17];12)=ROUND([Sheet2.B17];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A17])" office:value-type="string" office:string-value="=MOD(Sheet2.F17*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F17*100, 10)</text:p> </table:table-cell> - <table:table-cell table:style-name="ce94" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="11"> + <table:table-cell table:style-name="ce74" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="11"> <text:p>Tdf#50299</text:p> </table:table-cell> <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="3"/> - <table:table-cell table:style-name="ce98"/> + <table:table-cell table:style-name="ce86"/> <table:table-cell table:number-columns-repeated="5"/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2863,19 +2866,19 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A18];12)=ROUND([Sheet2.B18];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A18];12)=ROUND([Sheet2.B18];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A18])" office:value-type="string" office:string-value="=MOD(Sheet2.F18*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F18*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.1" calcext:value-type="float"> <text:p>0.1</text:p> </table:table-cell> <table:table-cell table:style-name="ce22"/> <table:table-cell table:number-columns-repeated="3"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="4"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="4"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2885,13 +2888,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A19];12)=ROUND([Sheet2.B19];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A19];12)=ROUND([Sheet2.B19];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A19])" office:value-type="string" office:string-value="=MOD(Sheet2.F19*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F19*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.2" calcext:value-type="float"> <text:p>0.2</text:p> </table:table-cell> @@ -2905,13 +2908,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce72" table:formula="of:=ROUND([Sheet2.A20];12)=ROUND([Sheet2.B20];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A20];12)=ROUND([Sheet2.B20];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A20])" office:value-type="string" office:string-value="=MOD(Sheet2.F20*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F20*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.3" calcext:value-type="float"> <text:p>0.3</text:p> </table:table-cell> @@ -2925,21 +2928,21 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A21];12)=ROUND([Sheet2.B21];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A21];12)=ROUND([Sheet2.B21];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A21])" office:value-type="string" office:string-value="=MOD(Sheet2.F21*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F21*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.4" calcext:value-type="float"> <text:p>0.4</text:p> </table:table-cell> - <table:table-cell table:style-name="ce91"/> + <table:table-cell table:style-name="ce78"/> <table:table-cell table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce32"/> <table:table-cell/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -2949,13 +2952,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A22];12)=ROUND([Sheet2.B22];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A22];12)=ROUND([Sheet2.B22];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A22])" office:value-type="string" office:string-value="=MOD(Sheet2.F22*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F22*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.5" calcext:value-type="float"> <text:p>0.5</text:p> </table:table-cell> @@ -2970,13 +2973,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce73" table:formula="of:=ROUND([Sheet2.A23];12)=ROUND([Sheet2.B23];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A23];12)=ROUND([Sheet2.B23];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A23])" office:value-type="string" office:string-value="=MOD(Sheet2.F23*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F23*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.6" calcext:value-type="float"> <text:p>0.6</text:p> </table:table-cell> @@ -2991,20 +2994,20 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A24];12)=ROUND([Sheet2.B24];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A24];12)=ROUND([Sheet2.B24];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A24])" office:value-type="string" office:string-value="=MOD(Sheet2.F24*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F24*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.7" calcext:value-type="float"> <text:p>0.7</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce35"/> <table:table-cell/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3014,20 +3017,20 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A25];12)=ROUND([Sheet2.B25];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A25];12)=ROUND([Sheet2.B25];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A25])" office:value-type="string" office:string-value="=MOD(Sheet2.F25*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F25*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.8" calcext:value-type="float"> <text:p>0.8</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce35"/> <table:table-cell/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3037,20 +3040,20 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A26];12)=ROUND([Sheet2.B26];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A26];12)=ROUND([Sheet2.B26];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A26])" office:value-type="string" office:string-value="=MOD(Sheet2.F26*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F26*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="0.9" calcext:value-type="float"> <text:p>0.9</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce35"/> <table:table-cell/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3060,13 +3063,13 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce71" table:formula="of:=ROUND([Sheet2.A27];12)=ROUND([Sheet2.B27];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A27];12)=ROUND([Sheet2.B27];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A27])" office:value-type="string" office:string-value="=MOD(Sheet2.F27*100, 10)" calcext:value-type="string"> <text:p>=MOD(Sheet2.F27*100, 10)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> @@ -3081,7 +3084,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="3" calcext:value-type="float"> <text:p>3</text:p> </table:table-cell> - <table:table-cell table:style-name="ce74" table:formula="of:=ROUND([Sheet2.A28];12)=ROUND([Sheet2.B28];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A28];12)=ROUND([Sheet2.B28];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A28])" office:value-type="string" office:string-value="=MOD((3^31),14)" calcext:value-type="string"> @@ -3092,7 +3095,7 @@ <table:table-cell table:number-columns-repeated="4"/> <table:table-cell table:style-name="ce37"/> <table:table-cell/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3102,7 +3105,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> - <table:table-cell table:style-name="ce75" table:formula="of:=ROUND([Sheet2.A29];12)=ROUND([Sheet2.B29];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A29];12)=ROUND([Sheet2.B29];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A29])" office:value-type="string" office:string-value="=MOD((3^31)-1,14)" calcext:value-type="string"> @@ -3120,7 +3123,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce76" table:formula="of:=ROUND([Sheet2.A30];12)=ROUND([Sheet2.B30];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A30];12)=ROUND([Sheet2.B30];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A30])" office:value-type="string" office:string-value="=MOD((3^31)-2,14)" calcext:value-type="string"> @@ -3138,7 +3141,7 @@ <table:table-cell table:style-name="ce68" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce77" table:formula="of:=ROUND([Sheet2.A31];12)=ROUND([Sheet2.B31];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A31];12)=ROUND([Sheet2.B31];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A31])" office:value-type="string" office:string-value="=MOD((3^31)-3,14)" calcext:value-type="string"> @@ -3146,7 +3149,7 @@ </table:table-cell> <table:covered-table-cell/> <table:table-cell table:number-columns-repeated="4"/> - <table:table-cell table:style-name="ce91"/> + <table:table-cell table:style-name="ce78"/> <table:table-cell table:number-columns-repeated="5"/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3156,13 +3159,13 @@ <table:table-cell table:style-name="ce13" office:value-type="float" office:value="71" calcext:value-type="float"> <text:p>71</text:p> </table:table-cell> - <table:table-cell table:style-name="ce78" table:formula="of:=ROUND([Sheet2.A32];12)=ROUND([Sheet2.B32];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A32];12)=ROUND([Sheet2.B32];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A32])" office:value-type="string" office:string-value="=MOD(5310866044487,128)" calcext:value-type="string"> <text:p>=MOD(5310866044487,128)</text:p> </table:table-cell> - <table:table-cell table:style-name="ce94" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="2"> + <table:table-cell table:style-name="ce74" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="2"> <text:p>Tdf#71131</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="10"/> @@ -3174,15 +3177,15 @@ <table:table-cell office:value-type="float" office:value="27" calcext:value-type="float"> <text:p>27</text:p> </table:table-cell> - <table:table-cell table:style-name="ce79" table:formula="of:=ROUND([Sheet2.A33];12)=ROUND([Sheet2.B33];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A33];12)=ROUND([Sheet2.B33];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A33])" office:value-type="string" office:string-value="=MOD(40595547922587,128)" calcext:value-type="string"> <text:p>=MOD(40595547922587,128)</text:p> </table:table-cell> - <table:covered-table-cell table:style-name="ce62"/> + <table:covered-table-cell table:style-name="ce56"/> <table:table-cell table:number-columns-repeated="4"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro5"> @@ -3192,7 +3195,7 @@ <table:table-cell office:value-type="float" office:value="0.7" calcext:value-type="float"> <text:p>0.7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce80" table:formula="of:=ROUND([Sheet2.A34];12)=ROUND([Sheet2.B34];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A34];12)=ROUND([Sheet2.B34];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A34])" office:value-type="string" office:string-value="=MOD(7,2.1)" calcext:value-type="string"> @@ -3207,7 +3210,7 @@ <table:table-cell office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> - <table:table-cell table:style-name="ce81" table:formula="of:=ROUND([Sheet2.A35];12)=ROUND([Sheet2.B35];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ROUND([Sheet2.A35];12)=ROUND([Sheet2.B35];12)" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A35])" office:value-type="string" office:string-value="=MOD(2,7.1)" calcext:value-type="string"> @@ -3222,43 +3225,43 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>Err502</text:p> </table:table-cell> - <table:table-cell table:style-name="ce82" table:formula="of:=ISERROR([.A36])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> + <table:table-cell table:style-name="ce66" table:formula="of:=ISERROR([.A36])" office:value-type="boolean" office:boolean-value="true" calcext:value-type="boolean"> <text:p>TRUE</text:p> </table:table-cell> <table:table-cell table:style-name="ce21" table:formula="of:=FORMULA([Sheet2.A36])" office:value-type="string" office:string-value="=MOD(25.4,0)" calcext:value-type="string"> <text:p>=MOD(25.4,0)</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="5"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:style-name="ce23"/> <table:table-cell/> - <table:table-cell table:style-name="ce83"/> + <table:table-cell table:style-name="ce48"/> <table:table-cell table:style-name="ce21"/> <table:table-cell table:number-columns-repeated="11"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce83"/> + <table:table-cell table:style-name="ce48"/> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce83"/> + <table:table-cell table:style-name="ce48"/> <table:table-cell table:number-columns-repeated="8"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="3"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="3"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce83"/> + <table:table-cell table:style-name="ce48"/> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce83"/> + <table:table-cell table:style-name="ce48"/> <table:table-cell table:style-name="ce21"/> <table:table-cell table:style-name="ce68" office:value-type="string" calcext:value-type="string"> <text:p>Tdf#86219 is about arrays as argument, see sheet tdf86219</text:p> @@ -3267,43 +3270,38 @@ </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="6"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2" table:number-rows-repeated="2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="6"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> <table:table-cell/> </table:table-row> <table:table-row table:style-name="ro2" table:number-rows-repeated="2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="6"/> - <table:table-cell table:style-name="ce98" table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce86" table:number-columns-repeated="5"/> <table:table-cell/> </table:table-row> - <table:table-row table:style-name="ro2" table:number-rows-repeated="52"> - <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce19"/> - <table:table-cell table:number-columns-repeated="12"/> - </table:table-row> - <table:table-row table:style-name="ro2" table:number-rows-repeated="1000"> + <table:table-row table:style-name="ro2" table:number-rows-repeated="1052"> <table:table-cell table:number-columns-repeated="2"/> - <table:table-cell table:style-name="ce20"/> + <table:table-cell table:style-name="ce70"/> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2" table:number-rows-repeated="1047475"> @@ -3313,303 +3311,28 @@ <table:table-cell table:number-columns-repeated="15"/> </table:table-row> <calcext:conditional-formats> - <calcext:conditional-format calcext:target-range-address="Sheet2.C3:Sheet2.C100"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C3"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C3:Sheet2.C1100"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C3"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C3:Sheet2.C100"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C3"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C3:Sheet2.C100"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C3"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C3"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C37:Sheet2.C41 Sheet2.C24:Sheet2.C27 Sheet2.C17:Sheet2.C19 Sheet2.C21:Sheet2.C22 Sheet2.C2:Sheet2.C15"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C2"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C2"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C2"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C37:Sheet2.C41 Sheet2.C24:Sheet2.C27 Sheet2.C17:Sheet2.C19 Sheet2.C21:Sheet2.C22 Sheet2.C2:Sheet2.C15"> + <calcext:conditional-format calcext:target-range-address="Sheet2.C2:Sheet2.C1100"> <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C2"/> <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C2"/> <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C2"/> </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C37:Sheet2.C41 Sheet2.C24:Sheet2.C27 Sheet2.C18:Sheet2.C19 Sheet2.C21:Sheet2.C22"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C18"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C18"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C18"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C37:Sheet2.C41 Sheet2.C24:Sheet2.C27 Sheet2.C18:Sheet2.C19 Sheet2.C21:Sheet2.C22"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C18"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C18"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C18"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C28:Sheet2.C28"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C28"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C28:Sheet2.C28"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C28"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C28:Sheet2.C28"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C28"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C28:Sheet2.C28"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C28"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C28"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C29:Sheet2.C29"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C29"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C29:Sheet2.C29"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C29"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C29:Sheet2.C29"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C29"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C29:Sheet2.C29"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C29"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C29"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C30:Sheet2.C30"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C30"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C30:Sheet2.C30"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C30"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C30:Sheet2.C30"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C30"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C30:Sheet2.C30"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C30"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C30"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C31:Sheet2.C31"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C31"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C31:Sheet2.C31"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C31"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C31:Sheet2.C31"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C31"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C31:Sheet2.C31"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C31"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C31"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C20:Sheet2.C20"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C20"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C20:Sheet2.C20"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C20"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C20:Sheet2.C20"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C20"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C20:Sheet2.C20"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C20"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C20"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C23:Sheet2.C23"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C23"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C23:Sheet2.C23"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C23"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C23:Sheet2.C23"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C23"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C23:Sheet2.C23"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C23"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C23"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C32:Sheet2.C32"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C32"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C32:Sheet2.C32"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C32"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C32:Sheet2.C32"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C32"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C32:Sheet2.C32"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C32"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C32"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C33:Sheet2.C33"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C33"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C33:Sheet2.C33"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C33"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C33:Sheet2.C33"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C33"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C33:Sheet2.C33"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C33"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C33"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C34:Sheet2.C34"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C34"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C34:Sheet2.C34"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C34"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C34:Sheet2.C34"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C34"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C34:Sheet2.C34"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C34"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C34"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C35:Sheet2.C35"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C35"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C35:Sheet2.C35"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C35"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C35:Sheet2.C35"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C35"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C35:Sheet2.C35"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C35"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C35"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C36:Sheet2.C36"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C36"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C36:Sheet2.C36"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C36"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C36:Sheet2.C36"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C36"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C36:Sheet2.C36"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C36"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C36"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C16:Sheet2.C16"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C16"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C16:Sheet2.C16"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C16"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C16:Sheet2.C16"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C16"/> - </calcext:conditional-format> - <calcext:conditional-format calcext:target-range-address="Sheet2.C16:Sheet2.C16"> - <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="Sheet2.C16"/> - <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="Sheet2.C16"/> - </calcext:conditional-format> </calcext:conditional-formats> </table:table> <table:table table:name="tdf86219" table:style-name="ta1" table:print="false"> - <table:table-column table:style-name="co3" table:default-cell-style-name="ce91"/> + <table:table-column table:style-name="co3" table:default-cell-style-name="ce78"/> <table:table-column table:style-name="co3" table:number-columns-repeated="12" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro2"> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>MOD(array;array)</text:p> </table:table-cell> <table:covered-table-cell/> <table:table-cell table:number-columns-repeated="3"/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="4" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="4" table:number-rows-spanned="1"> <text:p>MOD(scalar;scalar) to see expected results</text:p> </table:table-cell> <table:covered-table-cell table:number-columns-repeated="3"/> <table:table-cell/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>Other functions fails also</text:p> </table:table-cell> <table:covered-table-cell/> @@ -3648,33 +3371,33 @@ <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=MOD([.B4:.B6];[.C3:.D3])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=MOD([.B4:.B6];[.C3:.D3])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell/> <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F4];[.G$3])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F4];[.G$3])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F4];[.H$3])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F4];[.H$3])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> <text:p>CEILING</text:p> </table:table-cell> <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=CEILING([.K4:.K6];[.L3:.M3])" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=CEILING([.K4:.K6];[.L3:.M3])" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> </table:table-row> @@ -3683,20 +3406,20 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell/> <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F5];[.G$3])" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F5];[.G$3])" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F5];[.H$3])" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F5];[.H$3])" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell/> @@ -3704,10 +3427,10 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> </table:table-row> @@ -3716,20 +3439,20 @@ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell/> <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F6];[.G$3])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F6];[.G$3])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:formula="of:=MOD([.$F6];[.H$3])" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:formula="of:=MOD([.$F6];[.H$3])" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell/> @@ -3737,10 +3460,10 @@ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="10" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="10" calcext:value-type="float"> <text:p>10</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> </table:table-row> @@ -3749,12 +3472,12 @@ <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>MOD(array;scalar)</text:p> </table:table-cell> <table:covered-table-cell/> <table:table-cell table:number-columns-repeated="3"/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>Workaround with INT()</text:p> </table:table-cell> <table:covered-table-cell/> @@ -3780,16 +3503,16 @@ <text:p>3</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> <text:p>FLOOR</text:p> </table:table-cell> <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=FLOOR([.K9:.K11];[.L8:.M8])" office:value-type="float" office:value="6" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=FLOOR([.K9:.K11];[.L8:.M8])" office:value-type="float" office:value="6" calcext:value-type="float"> <text:p>6</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="6" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="6" calcext:value-type="float"> <text:p>6</text:p> </table:table-cell> </table:table-row> @@ -3798,17 +3521,17 @@ <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="1" table:number-matrix-rows-spanned="3" table:formula="of:=MOD([.B10:.B12];[.C9])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="1" table:number-matrix-rows-spanned="3" table:formula="of:=MOD([.B10:.B12];[.C9])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="2"/> <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=[.F10:.F12]-[.G9:.H9]*INT([.F10:.F12]/[.G9:.H9])" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=[.F10:.F12]-[.G9:.H9]*INT([.F10:.F12]/[.G9:.H9])" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell/> @@ -3816,10 +3539,10 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="6" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="6" calcext:value-type="float"> <text:p>6</text:p> </table:table-cell> </table:table-row> @@ -3828,17 +3551,17 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="2"/> <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell/> @@ -3846,10 +3569,10 @@ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> </table:table-row> @@ -3858,17 +3581,17 @@ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="2"/> <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="5"/> @@ -3884,21 +3607,21 @@ </table:table-cell> </table:table-row> <table:table-row table:style-name="ro2"> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>MOD(scalar;array)</text:p> </table:table-cell> <table:covered-table-cell/> <table:table-cell table:number-columns-repeated="7"/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="1" table:number-rows-spanned="3"> <text:p>QUOTIENT</text:p> </table:table-cell> <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float"> <text:p>7</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=QUOTIENT([.K14:.K16];[.L13:.M13])" office:value-type="float" office:value="3" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="3" table:formula="of:=QUOTIENT([.K14:.K16];[.L13:.M13])" office:value-type="float" office:value="3" calcext:value-type="float"> <text:p>3</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> </table:table-row> @@ -3916,10 +3639,10 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="4" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="4" calcext:value-type="float"> <text:p>4</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> </table:table-row> @@ -3928,10 +3651,10 @@ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="1" table:formula="of:=MOD([.B16];[.C15:.D15])" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" table:number-matrix-columns-spanned="2" table:number-matrix-rows-spanned="1" table:formula="of:=MOD([.B16];[.C15:.D15])" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="5"/> @@ -3939,10 +3662,10 @@ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="4" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="4" calcext:value-type="float"> <text:p>4</text:p> </table:table-cell> - <table:table-cell table:style-name="ce107" office:value-type="float" office:value="3" calcext:value-type="float"> + <table:table-cell table:style-name="ce98" office:value-type="float" office:value="3" calcext:value-type="float"> <text:p>3</text:p> </table:table-cell> </table:table-row> @@ -3953,7 +3676,7 @@ <table:table-row table:style-name="ro2"> <table:table-cell table:style-name="Default"/> <table:table-cell table:number-columns-repeated="9"/> - <table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> + <table:table-cell table:style-name="ce73" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <text:p>Non-exaustive list…</text:p> </table:table-cell> <table:covered-table-cell/> @@ -3964,7 +3687,7 @@ <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro2"> - <table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"> + <table:table-cell table:style-name="ce86" office:value-type="string" calcext:value-type="string"> <text:p>Correct</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="12"/> @@ -3974,7 +3697,7 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:number-columns-repeated="2" table:style-name="ce108" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:number-columns-repeated="2" table:style-name="ce99" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -3984,10 +3707,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -3997,10 +3720,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="1" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="1" calcext:value-type="float"> <text:p>1</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="0" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="0" calcext:value-type="float"> <text:p>0</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4130,10 +3853,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4143,10 +3866,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4156,10 +3879,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="10" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="10" calcext:value-type="float"> <text:p>10</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4187,7 +3910,7 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:number-columns-repeated="2" table:style-name="ce108" office:value-type="float" office:value="6" calcext:value-type="float"> + <table:table-cell table:number-columns-repeated="2" table:style-name="ce99" office:value-type="float" office:value="6" calcext:value-type="float"> <text:p>6</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4197,10 +3920,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="6" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="6" calcext:value-type="float"> <text:p>6</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4210,10 +3933,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="8" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="8" calcext:value-type="float"> <text:p>8</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="9" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="9" calcext:value-type="float"> <text:p>9</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4241,10 +3964,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="3" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="3" calcext:value-type="float"> <text:p>3</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4254,10 +3977,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="4" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="4" calcext:value-type="float"> <text:p>4</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="2" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="2" calcext:value-type="float"> <text:p>2</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4267,10 +3990,10 @@ <text:p>TRUE</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="4" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="4" calcext:value-type="float"> <text:p>4</text:p> </table:table-cell> - <table:table-cell table:style-name="ce108" office:value-type="float" office:value="3" calcext:value-type="float"> + <table:table-cell table:style-name="ce99" office:value-type="float" office:value="3" calcext:value-type="float"> <text:p>3</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="9"/> @@ -4294,35 +4017,112 @@ <table:table-cell table:number-columns-repeated="12"/> </table:table-row> </table:table> - <table:table table:name="'file:///home/zdenek/Dokumenty/LO/sc-unit-test/Project%20Calc%20functions%20tests/fods/mod.fods/mod.fods/log10.fods/log.fods/ln.fods/bitxor.fods/bitxor.fods/bitor.fods/bitand.fods/bitand.fods/atan.fods/asinh.fods/asin.fods/acos.fods/abs.fods/abs.fods/xor.fods/xor.fods/not.fods/ifna.fods/ifna.fods/iferror.fods/iferror.fods/if.fods/and.fods/and.fods/and.fods/and.fods/type.fods/isna.fods/isna.fods/islogical.fods/isformula.fods/iserr.fods/isblank.fods/info.fods/formula.fods/formula.fods/current.fods/cell.fods/cell.fods/minute.fods/minute.fods/year.fods/function_based_test_Example.fods/function_based_test_Example_reference.fods'#Sheet2" table:print="false" table:style-name="ta_extref"> - <table:table-source xlink:type="simple" xlink:href="/home/zdenek/Dokumenty/LO/sc-unit-test/Project%20Calc%20functions%20tests/fods/mod.fods/mod.fods/log10.fods/log.fods/ln.fods/bitxor.fods/bitxor.fods/bitor.fods/bitand.fods/bitand.fods/atan.fods/asinh.fods/asin.fods/acos.fods/abs.fods/abs.fods/xor.fods/xor.fods/not.fods/ifna.fods/ifna.fods/iferror.fods/iferror.fods/if.fods/and.fods/and.fods/and.fods/and.fods/type.fods/isna.fods/isna.fods/islogical.fods/isformula.fods/iserr.fods/isblank.fods/info.fods/formula.fods/formula.fods/current.fods/cell.fods/cell.fods/minute.fods/minute.fods/year.fods/function_based_test_Example.fods/function_based_test_Example_reference.fods" table:table-name="Sheet2" table:mode="copy-results-only"/> - <table:table-column table:number-columns-repeated="8"/> - <table:table-row table:number-rows-repeated="2"> - <table:table-cell table:number-columns-repeated="8"/> + <table:table table:name="tdf113211" table:style-name="ta1"> + <table:table-column table:style-name="co12" table:default-cell-style-name="Default"/> + <table:table-column table:style-name="co13" table:default-cell-style-name="Default"/> + <table:table-column table:style-name="co3" table:default-cell-style-name="Default"/> + <table:table-column table:style-name="co3" table:default-cell-style-name="ce100"/> + <table:table-row table:style-name="ro2"> + <table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string"> + <text:p>Value</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string"> + <text:p>MOD(Value;2)</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string"> + <text:p>Expected</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string"> + <text:p>Correct</text:p> + </table:table-cell> </table:table-row> - <table:table-row> - <table:table-cell table:number-columns-repeated="7"/> - <table:table-cell table:style-name="ce1" office:value-type="float" office:value="4"> - <text:p>4</text:p> + <table:table-row table:style-name="ro5"> + <table:table-cell office:value-type="float" office:value="254387690162237" calcext:value-type="float"> + <text:p>254387690162237</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=MOD([.A2];2)" office:value-type="string" office:string-value="" calcext:value-type="error"> + <text:p>#VALUE!</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> + <text:p>1</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=IFERROR([.B2]=[.C2];FALSE())" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> </table:table-cell> </table:table-row> - </table:table> - <table:table table:name="'file:///home/zdenek/Dokumenty/LO/sc-unit-test/Project%20Calc%20functions%20tests/fods/mod.fods/mod.fods/log10.fods/log.fods/ln.fods/bitxor.fods/bitxor.fods/bitor.fods/bitand.fods/bitand.fods/atan.fods/asinh.fods/asin.fods/acos.fods/abs.fods/abs.fods/xor.fods/xor.fods/not.fods/ifna.fods/ifna.fods/iferror.fods/iferror.fods/if.fods/and.fods/and.fods/and.fods/and.fods/type.fods/isna.fods/isna.fods/islogical.fods/isformula.fods/sc-unit-test/information-functions.ods'#Information" table:print="false" table:style-name="ta_extref"> - <table:table-source xlink:type="simple" xlink:href="/home/zdenek/Dokumenty/LO/sc-unit-test/Project%20Calc%20functions%20tests/fods/mod.fods/mod.fods/log10.fods/log.fods/ln.fods/bitxor.fods/bitxor.fods/bitor.fods/bitand.fods/bitand.fods/atan.fods/asinh.fods/asin.fods/acos.fods/abs.fods/abs.fods/xor.fods/xor.fods/not.fods/ifna.fods/ifna.fods/iferror.fods/iferror.fods/if.fods/and.fods/and.fods/and.fods/and.fods/type.fods/isna.fods/isna.fods/islogical.fods/isformula.fods/sc-unit-test/information-functions.ods" table:table-name="Information" table:mode="copy-results-only"/> - <table:table-column table:number-columns-repeated="15"/> - <table:table-row table:number-rows-repeated="6"> - <table:table-cell table:number-columns-repeated="15"/> + <table:table-row table:style-name="ro5"> + <table:table-cell office:value-type="float" office:value="508775380324475" calcext:value-type="float"> + <text:p>508775380324475</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=MOD([.A3];2)" office:value-type="string" office:string-value="" calcext:value-type="error"> + <text:p>#VALUE!</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> + <text:p>1</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=IFERROR([.B3]=[.C3];FALSE())" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> + </table:table-cell> </table:table-row> - <table:table-row> - <table:table-cell table:number-columns-repeated="14"/> - <table:table-cell table:style-name="ce1" office:value-type="string"> - <text:p>O5</text:p> + <table:table-row table:style-name="ro5"> + <table:table-cell office:value-type="float" office:value="2035101521297910" calcext:value-type="float"> + <text:p>2035101521297910</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=MOD([.A4];2)" office:value-type="string" office:string-value="" calcext:value-type="error"> + <text:p>#VALUE!</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=IFERROR([.B4]=[.C4];FALSE())" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> </table:table-cell> </table:table-row> + <table:table-row table:style-name="ro5"> + <table:table-cell office:value-type="float" office:value="4070203042595810" calcext:value-type="float"> + <text:p>4070203042595810</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=MOD([.A5];2)" office:value-type="string" office:string-value="" calcext:value-type="error"> + <text:p>#VALUE!</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=IFERROR([.B5]=[.C5];FALSE())" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro5"> + <table:table-cell office:value-type="float" office:value="8140406085191602" calcext:value-type="float"> + <text:p>8140406085191602</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=MOD([.A6];2)" office:value-type="string" office:string-value="" calcext:value-type="error"> + <text:p>#VALUE!</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=IFERROR([.B6]=[.C6];FALSE())" office:value-type="boolean" office:boolean-value="false" calcext:value-type="boolean"> + <text:p>FALSE</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro2" table:number-rows-repeated="93"> + <table:table-cell table:number-columns-repeated="4"/> + </table:table-row> + <table:table-row table:style-name="ro2"> + <table:table-cell table:number-columns-repeated="4"/> + </table:table-row> + <calcext:conditional-formats> + <calcext:conditional-format calcext:target-range-address="tdf113211.D2:tdf113211.D100"> + <calcext:condition calcext:apply-style-name="Default" calcext:value="=""" calcext:base-cell-address="tdf113211.D2"/> + <calcext:condition calcext:apply-style-name="Untitled1" calcext:value="=0" calcext:base-cell-address="tdf113211.D2"/> + <calcext:condition calcext:apply-style-name="Untitled2" calcext:value="=1" calcext:base-cell-address="tdf113211.D2"/> + </calcext:conditional-format> + </calcext:conditional-formats> </table:table> <table:named-expressions> <table:named-range table:name="range" table:base-cell-address="$Sheet2.$D$2" table:cell-range-address="$Sheet2.$D$2:.$D$4"/> </table:named-expressions> </office:spreadsheet> </office:body> -</office:document> +</office:document>
\ No newline at end of file |