fix: Se añade firmas
This commit is contained in:
parent
70562ccac4
commit
7d73b6141f
@ -12,6 +12,7 @@ class Configuration(ModelSingleton, ModelSQL, ModelView):
|
||||
invima = fields.Char('Invima', states={
|
||||
'required': Eval('technician_responsible', True)
|
||||
})
|
||||
technician_signature = fields.Binary('Technician Signature')
|
||||
equipment_sequence = fields.Many2One(
|
||||
'ir.sequence', "Equipment Sequence", domain=[
|
||||
('sequence_type', '=',
|
||||
|
@ -105,6 +105,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
|
||||
|
||||
technician_responsible = fields.Char('Technician Responsible')
|
||||
invima = fields.Char('Invima')
|
||||
technician_signature = fields.Binary('Technician Signature')
|
||||
|
||||
@fields.depends('maintenance_type', 'code')
|
||||
def get_rec_name(self, name):
|
||||
@ -221,6 +222,14 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
|
||||
if config.technician_responsible:
|
||||
return config.technician_responsible.invima
|
||||
|
||||
@classmethod
|
||||
def default_technician_signature(cls):
|
||||
pool = Pool()
|
||||
ConfigurationEquipment = pool.get('optical_equipment.configuration')
|
||||
config = ConfigurationEquipment(1)
|
||||
if config.technician_signature:
|
||||
return config.technician_signature
|
||||
|
||||
@classmethod
|
||||
def _get_origin(cls):
|
||||
'Return list of Model names for origin Reference'
|
||||
@ -373,6 +382,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
|
||||
|
||||
technician_responsible = fields.Char('Technician Responsible')
|
||||
invima = fields.Char('Invima')
|
||||
technician_signature = fields.Binary('Technician Signature')
|
||||
|
||||
@classmethod
|
||||
def default_technician_responsible(cls):
|
||||
@ -392,6 +402,14 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
|
||||
if config.technician_responsible:
|
||||
return config.technician_responsible.invima
|
||||
|
||||
@classmethod
|
||||
def default_technician_signature(cls):
|
||||
pool = Pool()
|
||||
ConfigurationEquipment = pool.get('optical_equipment.configuration')
|
||||
config = ConfigurationEquipment(1)
|
||||
if config.technician_signature:
|
||||
return config.technician_signature
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super(MaintenanceServiceLine, cls).__setup__()
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form: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:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-09-24T21:21:08.221447105</dc:date><meta:editing-duration>PT5H1M34S</meta:editing-duration><meta:editing-cycles>67</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="103" meta:word-count="357" meta:character-count="3960" meta:non-whitespace-character-count="3701"/></office:meta>
|
||||
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-11-28T08:48:44.926878907</dc:date><meta:editing-duration>PT5H2M20S</meta:editing-duration><meta:editing-cycles>68</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="106" meta:word-count="361" meta:character-count="4019" meta:non-whitespace-character-count="3758"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">59584</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">98725</config:config-item>
|
||||
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">24502</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">11499</config:config-item>
|
||||
@ -14,11 +14,11 @@
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">3455</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">103734</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">108315</config:config-item>
|
||||
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">59584</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">98725</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">24500</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">71081</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">110222</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
|
||||
@ -73,7 +73,7 @@
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="AddFrameOffsets" 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="Rsid" config:type="int">5156974</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">5278623</config:config-item>
|
||||
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
|
||||
@ -164,8 +164,8 @@
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="graphic">
|
||||
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
|
||||
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
|
||||
<style:tab-stops/>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
@ -267,10 +267,10 @@
|
||||
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="Graphics" style:family="graphic">
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:background-color="transparent" draw:fill="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="Frame" style:family="graphic">
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:background-color="transparent" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
|
||||
</style:style>
|
||||
<text:outline-style style:name="Outline">
|
||||
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
|
||||
@ -327,16 +327,16 @@
|
||||
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
|
||||
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
|
||||
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
|
||||
<number:currency-style style:name="N130P0" style:volatile="true">
|
||||
<number:currency-style style:name="N115P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N130">
|
||||
<number:currency-style style:name="N115">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N130P0"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N115P0"/>
|
||||
</number:currency-style>
|
||||
<style:default-page-layout>
|
||||
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
|
||||
@ -518,6 +518,18 @@
|
||||
<style:style style:name="Tabla1.A5" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10" style:family="table">
|
||||
<style:table-properties style:width="6.925in" table:align="margins"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A" style:family="table-column">
|
||||
<style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.1" style:family="table-row">
|
||||
<style:table-row-properties style:min-row-height="0.2778in"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A1" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00066dfa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
@ -605,219 +617,6 @@
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003ca753" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="001f8cbc" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0020199a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0029fa5d" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045b610" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="002195ce" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0020199a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-name-complex="Arial" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-name-complex="Arial" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00205712" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00205712" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="003efa1b" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:font-weight="normal" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Footer">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0032e8b3" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003f4f1d" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="001f8cbc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="003974dc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00209ed6" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
@ -825,10 +624,250 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004eb06e" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003ca753" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="001f8cbc" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0020199a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0029fa5d" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045b610" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="002195ce" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="0020199a" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-name-complex="Arial" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-name-complex="Arial" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00205712" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00205712" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="003efa1b" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:font-weight="normal" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="004eb06e" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Footer">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0032e8b3" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003f4f1d" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="001f8cbc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="003974dc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00209ed6" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="001b9ac0" officeooo:paragraph-rsid="004eb06e" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P84" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="00508b9f" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P85" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="00508b9f" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P86" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00508b9f" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P87" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00508b9f" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P88" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00508b9f" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
@ -1006,10 +1045,18 @@
|
||||
<style:style style:name="T59" style:family="text">
|
||||
<style:text-properties fo:font-size="10pt" officeooo:rsid="001b9ac0" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="T60" style:family="text">
|
||||
<style:text-properties officeooo:rsid="001b9ac0"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
|
||||
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
</style:style>
|
||||
<style:style style:name="fr3" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="bottom" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
@ -1732,10 +1779,10 @@
|
||||
<table:table-column table:style-name="Tabla2.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
|
||||
<text:p text:style-name="P23">Fecha: <text:span text:style-name="T52"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)"><format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P24">Fecha: <text:span text:style-name="T52"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)"><format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
|
||||
<text:p text:style-name="P22">Consecutivo: <text:s/><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="maintenance.code"><maintenance.code></text:placeholder></text:span><text:span text:style-name="T38"><text:s/></text:span></text:p>
|
||||
<text:p text:style-name="P23">Consecutivo: <text:s/><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="maintenance.code"><maintenance.code></text:placeholder></text:span><text:span text:style-name="T38"><text:s/></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
@ -1743,11 +1790,11 @@
|
||||
<table:table-column table:style-name="Tabla5.A"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A1" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:span text:style-name="T46">Señores:</text:span><text:span text:style-name="T35"> <text:s/></text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary.name"><maintenance.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P21"><text:span text:style-name="T38">D</text:span><text:span text:style-name="T37">ocumento: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span><text:span text:style-name="T51"><text:s/></text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><maintenance.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P21"><text:span text:style-name="T37">Ciudad: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P27"><text:span text:style-name="T40">D</text:span><text:span text:style-name="T39">irección:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary_address.street"><maintenance.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P45"/>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T46">Señores:</text:span><text:span text:style-name="T35"> <text:s/></text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary.name"><maintenance.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P22"><text:span text:style-name="T38">D</text:span><text:span text:style-name="T37">ocumento: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span><text:span text:style-name="T51"><text:s/></text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><maintenance.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P22"><text:span text:style-name="T37">Ciudad: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T40">D</text:span><text:span text:style-name="T39">irección:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary_address.street"><maintenance.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P46"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
@ -1755,7 +1802,7 @@
|
||||
<table:table-column table:style-name="Tabla7.A"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:span text:style-name="T40">A</text:span><text:span text:style-name="T39">sunto: </text:span><text:span text:style-name="T30">Certificación de calibración</text:span></text:p>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T40">A</text:span><text:span text:style-name="T39">sunto: </text:span><text:span text:style-name="T30">Certificación de calibración</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
@ -1764,53 +1811,53 @@
|
||||
<table:table-column table:style-name="Tabla3.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T40">Método </text:span><text:span text:style-name="T43">de calibración</text:span><text:span text:style-name="T41">:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T49">Comparaci</text:span><text:span text:style-name="T47">ón</text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="T39">Rango de medición:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.measuring_range"><maintenance.equipment.product.measuring_range></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==1"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Ojo Esquemático</text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==2"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Lente</text:span><text:span text:style-name="T34">s</text:span><text:span text:style-name="T33"> de Prueba</text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==3"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Pesas de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==4"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T34">Esferas de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:span text:style-name="T55">Patrón utilizado: </text:span><text:span text:style-name="T58">Barras de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></otherwise></text:placeholder></text:p>
|
||||
<text:p text:style-name="P79"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'medico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> Médico</text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'basico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T46">Uso:</text:span> Básico</text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'apoyo'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> Apoyo</text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> n/a</text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"></otherwise></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53"><text:span text:style-name="T54">División de escala:</text:span><text:span text:style-name="T56"> </text:span><text:span text:style-name="T57"><text:placeholder text:placeholder-type="text" text:description=""0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg""><"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P42"><text:span text:style-name="T46">Sitio de medición: </text:span><text:span text:style-name="T35">Consultorio</text:span></text:p>
|
||||
<text:p text:style-name="P39"><text:span text:style-name="T40">Método </text:span><text:span text:style-name="T43">de calibración</text:span><text:span text:style-name="T41">:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T49">Comparaci</text:span><text:span text:style-name="T47">ón</text:span></text:p>
|
||||
<text:p text:style-name="P31"><text:span text:style-name="T39">Rango de medición:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.measuring_range"><maintenance.equipment.product.measuring_range></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==1"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Ojo Esquemático</text:span></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==2"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Lente</text:span><text:span text:style-name="T34">s</text:span><text:span text:style-name="T33"> de Prueba</text:span></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==3"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Pesas de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==4"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T34">Esferas de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"><text:span text:style-name="T55">Patrón utilizado: </text:span><text:span text:style-name="T58">Barras de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></otherwise></text:placeholder></text:p>
|
||||
<text:p text:style-name="P81"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'medico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T46">Uso:</text:span> Médico</text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'basico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:span text:style-name="T46">Uso:</text:span> Básico</text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'apoyo'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T46">Uso:</text:span> Apoyo</text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T46">Uso:</text:span> n/a</text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></otherwise></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:span text:style-name="T54">División de escala:</text:span><text:span text:style-name="T56"> </text:span><text:span text:style-name="T57"><text:placeholder text:placeholder-type="text" text:description=""0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg""><"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P43"><text:span text:style-name="T46">Sitio de medición: </text:span><text:span text:style-name="T35">Consultorio</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:span text:style-name="T39">Equipo:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.name"><maintenance.equipment.product.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">arca: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.mark_category.name"><maintenance.equipment.mark_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P29"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">odelo: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.model_category.name"><maintenance.equipment.model_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P29"><text:span text:style-name="T40">R</text:span><text:span text:style-name="T42">eferencia: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.reference_category.name"><maintenance.equipment.reference_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T46">Serie:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T36"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.serial"><maintenance.equipment.serial></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T39">Equipo:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.name"><maintenance.equipment.product.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P29"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">arca: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.mark_category.name"><maintenance.equipment.mark_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">odelo: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.model_category.name"><maintenance.equipment.model_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="T40">R</text:span><text:span text:style-name="T42">eferencia: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.reference_category.name"><maintenance.equipment.reference_category.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P42"><text:span text:style-name="T46">Serie:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T36"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.serial"><maintenance.equipment.serial></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P68"/>
|
||||
<text:p text:style-name="P69"/>
|
||||
<text:p text:style-name="P70"/>
|
||||
<text:p text:style-name="P71"/>
|
||||
<table:table table:name="Tabla6" table:style-name="Tabla6">
|
||||
<table:table-column table:style-name="Tabla6.A"/>
|
||||
<table:table-column table:style-name="Tabla6.B"/>
|
||||
@ -1818,7 +1865,7 @@
|
||||
<table:table-column table:style-name="Tabla6.D"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla6.A1" table:number-columns-spanned="4" office:value-type="string">
|
||||
<text:p text:style-name="P72">Condiciones Ambientales</text:p>
|
||||
<text:p text:style-name="P74">Condiciones Ambientales</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1826,88 +1873,88 @@
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P24">Temperatura Min</text:p>
|
||||
<text:p text:style-name="P25">Temperatura Min</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else """><str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P47"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else """><str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P24">Humedad Min</text:p>
|
||||
<text:p text:style-name="P25">Humedad Min</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.D2" office:value-type="string">
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else """><str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P47"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else """><str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P24">Temperatura Max</text:p>
|
||||
<text:p text:style-name="P25">Temperatura Max</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P47"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else """><str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else """><str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P24">Humedad Max</text:p>
|
||||
<text:p text:style-name="P25">Humedad Max</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.D2" office:value-type="string">
|
||||
<text:p text:style-name="P47"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else """><str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else """><str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P65"/>
|
||||
<text:p text:style-name="P70"/>
|
||||
<text:p text:style-name="P67"/>
|
||||
<text:p text:style-name="P72"/>
|
||||
<table:table table:name="Tabla8" table:style-name="Tabla8">
|
||||
<table:table-column table:style-name="Tabla8.A"/>
|
||||
<table:table-column table:style-name="Tabla8.B"/>
|
||||
<table:table-column table:style-name="Tabla8.C"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A1" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P73">Medida Tomadas</text:p>
|
||||
<text:p text:style-name="P75">Medida Tomadas</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A2" office:value-type="string">
|
||||
<text:p text:style-name="P25">Patrón</text:p>
|
||||
<text:p text:style-name="P26">Patrón</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla8.A2" office:value-type="string">
|
||||
<text:p text:style-name="P25">Valor en Equipo</text:p>
|
||||
<text:p text:style-name="P26">Valor en Equipo</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla8.A1" office:value-type="string">
|
||||
<text:p text:style-name="P26">% <text:span text:style-name="T53">Error</text:span></text:p>
|
||||
<text:p text:style-name="P27">% <text:span text:style-name="T53">Error</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A3" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P71"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.lines_calibration""><for each="line in maintenance.lines_calibration"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P73"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.lines_calibration""><for each="line in maintenance.lines_calibration"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A4" office:value-type="string">
|
||||
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text"><line.value_patterns.pattern></text:placeholder></text:p>
|
||||
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text"><line.value_patterns.pattern></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla8.A4" office:value-type="string">
|
||||
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text"><line.value_equipment></text:placeholder></text:p>
|
||||
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text"><line.value_equipment></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla8.A3" office:value-type="string">
|
||||
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text"><line.mistake_rate></text:placeholder><text:s/>%</text:p>
|
||||
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text"><line.mistake_rate></text:placeholder><text:s/>%</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A3" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P66"/>
|
||||
<text:p text:style-name="P68"/>
|
||||
<text:p text:style-name="P18">Resultados de calibración:</text:p>
|
||||
<text:p text:style-name="P18"/>
|
||||
<text:p text:style-name="P44">La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95%</text:p>
|
||||
<text:p text:style-name="P43"/>
|
||||
<text:p text:style-name="P45">La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95%</text:p>
|
||||
<text:p text:style-name="P44"/>
|
||||
<table:table table:name="Tabla1" table:style-name="Tabla1">
|
||||
<table:table-column table:style-name="Tabla1.A"/>
|
||||
<table:table-column table:style-name="Tabla1.B"/>
|
||||
@ -1916,52 +1963,52 @@
|
||||
<table:table-column table:style-name="Tabla1.E"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P74"><text:placeholder text:placeholder-type="text" text:description=""Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg""><"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P76"><text:placeholder text:placeholder-type="text" text:description=""Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg""><"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P75">Desviación estándar</text:p>
|
||||
<text:p text:style-name="P77">Desviación estándar</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P76">Promedio</text:p>
|
||||
<text:p text:style-name="P78">Promedio</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P75">Incertidumbre Expandida</text:p>
|
||||
<text:p text:style-name="P77">Incertidumbre Expandida</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.E1" office:value-type="string">
|
||||
<text:p text:style-name="P75">Estado</text:p>
|
||||
<text:p text:style-name="P77">Estado</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P36"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.calibration_total""><for each="line in maintenance.calibration_total"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.calibration_total""><for each="line in maintenance.calibration_total"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
<table:table-cell table:style-name="Tabla1.D2" table:number-columns-spanned="2" office:value-type="string">
|
||||
<text:p text:style-name="P36"/>
|
||||
<text:p text:style-name="P37"/>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A3" office:value-type="string">
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><line.diopter></text:placeholder></text:p>
|
||||
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text"><line.diopter></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.B3" office:value-type="string">
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"><line.dev_std></text:placeholder></text:p>
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><line.dev_std></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.C3" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><line.mean></text:placeholder></text:p>
|
||||
<text:p text:style-name="P35"><text:placeholder text:placeholder-type="text"><line.mean></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.D3" office:value-type="string">
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="line.uncertain_expanded"><line.uncertain_expanded></text:placeholder></text:p>
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text" text:description="line.uncertain_expanded"><line.uncertain_expanded></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.E3" office:value-type="string">
|
||||
<text:p text:style-name="P36"><text:placeholder text:placeholder-type="text" text:description="line.state"><line.state></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text" text:description="line.state"><line.state></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabla1.4">
|
||||
<table:table-cell table:style-name="Tabla1.A4" table:number-columns-spanned="5" office:value-type="string">
|
||||
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1970,7 +2017,7 @@
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabla1.5">
|
||||
<table:table-cell table:style-name="Tabla1.A5" table:number-columns-spanned="5" office:value-type="string">
|
||||
<text:p text:style-name="P64">Este certificado de calibración no podrá ser reproducido.</text:p>
|
||||
<text:p text:style-name="P66">Este certificado de calibración no podrá ser reproducido.</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1978,18 +2025,33 @@
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P63"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.graph_calibration, 'image/png')" text:anchor-type="char" svg:width="3.4327in" svg:height="2.5736in" draw:z-index="4">
|
||||
<text:p text:style-name="P65"><draw:frame draw:style-name="fr3" draw:name="image: (maintenance.graph_calibration, 'image/png')" text:anchor-type="char" svg:width="3.4327in" svg:height="2.5736in" draw:z-index="4">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P77"/>
|
||||
<text:p text:style-name="P79"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T50">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T48">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
|
||||
<text:p text:style-name="P67"/>
|
||||
<text:p text:style-name="P67"/>
|
||||
<text:p text:style-name="P81"><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="maintenance.code"><maintenance.technician_responsible></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P80"><text:span text:style-name="T38">INVIMA : </text:span><text:span text:style-name="T59"><text:placeholder text:placeholder-type="text" text:description="maintenance.invima"><maintenance.invima></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P35"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T50">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T48">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
|
||||
<text:p text:style-name="P88"/>
|
||||
<table:table table:name="Tabla10" table:style-name="Tabla10">
|
||||
<table:table-column table:style-name="Tabla10.A"/>
|
||||
<table:table-row table:style-name="Tabla10.1">
|
||||
<table:table-cell table:style-name="Tabla10.A1" office:value-type="string">
|
||||
<text:p text:style-name="P84"><text:placeholder text:placeholder-type="text"><if test="maintenance.technician_signature"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P84"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.technician_signature, 'image/png')" text:anchor-type="paragraph" svg:x="0.0791in" svg:y="0.1161in" svg:width="1.6173in" svg:height="0.7673in" draw:z-index="5">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P79"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText1" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">2</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame></text:p>
|
||||
<text:p text:style-name="P87"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P86"><text:placeholder text:placeholder-type="text"><maintenance.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P86">INVIMA :<text:placeholder text:placeholder-type="text"><maintenance.invima></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P85"><text:span text:style-name="T59"/></text:p>
|
||||
<text:p text:style-name="P36"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</office:text>
|
||||
</office:body>
|
||||
</office:document>
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form: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:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-09-24T21:38:02.659407388</dc:date><meta:editing-duration>PT5H43M50S</meta:editing-duration><meta:editing-cycles>81</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="5" meta:paragraph-count="107" meta:word-count="363" meta:character-count="3999" meta:non-whitespace-character-count="3738"/></office:meta>
|
||||
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-11-28T11:29:06.916953005</dc:date><meta:editing-duration>PT5H49M30S</meta:editing-duration><meta:editing-cycles>83</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:image-count="1" meta:object-count="0" meta:page-count="5" meta:paragraph-count="110" meta:word-count="367" meta:character-count="4042" meta:non-whitespace-character-count="3779"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">92710</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">111014</config:config-item>
|
||||
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">49003</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">22994</config:config-item>
|
||||
@ -14,11 +14,11 @@
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">15706</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">104103</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">129817</config:config-item>
|
||||
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">92710</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">111014</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">49001</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">115702</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">134006</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
|
||||
@ -73,7 +73,7 @@
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="AddFrameOffsets" 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="Rsid" config:type="int">5372653</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">5446825</config:config-item>
|
||||
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
|
||||
@ -267,10 +267,10 @@
|
||||
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="Graphics" style:family="graphic">
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
|
||||
</style:style>
|
||||
<style:style style:name="Frame" style:family="graphic">
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
|
||||
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
|
||||
</style:style>
|
||||
<text:outline-style style:name="Outline">
|
||||
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
|
||||
@ -327,16 +327,16 @@
|
||||
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
|
||||
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
|
||||
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
|
||||
<number:currency-style style:name="N130P0" style:volatile="true">
|
||||
<number:currency-style style:name="N115P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N130">
|
||||
<number:currency-style style:name="N115">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N130P0"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N115P0"/>
|
||||
</number:currency-style>
|
||||
<style:default-page-layout>
|
||||
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
|
||||
@ -518,6 +518,18 @@
|
||||
<style:style style:name="Tabla1.A5" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10" style:family="table">
|
||||
<style:table-properties style:width="6.925in" table:align="margins"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A" style:family="table-column">
|
||||
<style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.1" style:family="table-row">
|
||||
<style:table-row-properties style:min-row-height="0.2778in"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A1" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00066dfa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
@ -789,107 +801,7 @@
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="004cb448" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Footer">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0032e8b3" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003f4f1d" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="001f8cbc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="003974dc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P84" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P85" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00209ed6" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P86" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P87" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P88" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P89" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:page-number="1">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P90" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
@ -897,9 +809,133 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0051faed" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P91" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="005271c9" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0051faed" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="005271c9" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Footer">
|
||||
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0032e8b3" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003f4f1d" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0045c0e3" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="003359e1" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="0036953a" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" officeooo:paragraph-rsid="005271c9" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="001f8cbc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P84" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00387de2" officeooo:paragraph-rsid="00387de2" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P85" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P86" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003ca753" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P87" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00387de2" officeooo:paragraph-rsid="003974dc" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P88" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P89" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0042f8d6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P90" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00209ed6" officeooo:paragraph-rsid="00209ed6" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P91" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003b2e2b" officeooo:paragraph-rsid="003b2e2b" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P92" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P93" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0045b610" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P94" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="005271c9" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P95" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="005271c9" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P96" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="005271c9" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P97" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.6425in"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
@ -1096,6 +1132,11 @@
|
||||
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
</style:style>
|
||||
<style:style style:name="fr3" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="bottom" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
@ -1799,7 +1840,7 @@
|
||||
<text:p text:style-name="Standard"/>
|
||||
</style:header>
|
||||
<style:footer>
|
||||
<text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">1</text:page-number></text:p>
|
||||
<text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">5</text:page-number></text:p>
|
||||
</style:footer>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
@ -1814,7 +1855,7 @@
|
||||
</text:sequence-decls>
|
||||
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text" text:description="for each="maintenance in records""><for each="service in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text"><for each="maintenance in service.lines"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text" text:description="if test="maintenance.equipment.product.calibration""><if test="maintenance.equipment.product.calibration"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P70"><text:placeholder text:placeholder-type="text" text:description="if test="maintenance.equipment.product.calibration""><if test="maintenance.equipment.product.calibration"></text:placeholder></text:p>
|
||||
<table:table table:name="Tabla2" table:style-name="Tabla2">
|
||||
<table:table-column table:style-name="Tabla2.A"/>
|
||||
<table:table-column table:style-name="Tabla2.B"/>
|
||||
@ -1867,15 +1908,15 @@
|
||||
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.use_pattern.id==4"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:span text:style-name="T47">Patrón utilizado: </text:span><text:span text:style-name="T37">Esferas de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><otherwise test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:span text:style-name="T58">Patrón utilizado: </text:span><text:span text:style-name="T61">Barras de Calibración</text:span></text:p>
|
||||
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text"></otherwise></text:placeholder></text:p>
|
||||
<text:p text:style-name="P88"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P93"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'medico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"><text:span text:style-name="T49">Uso:</text:span> Médico</text:p>
|
||||
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'basico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'basico'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:span text:style-name="T49">Uso:</text:span> Básico</text:p>
|
||||
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.use == 'apoyo'"></text:placeholder></text:p>
|
||||
@ -1897,8 +1938,8 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P78"/>
|
||||
<text:p text:style-name="P79"/>
|
||||
<text:p text:style-name="P83"/>
|
||||
<text:p text:style-name="P84"/>
|
||||
<table:table table:name="Tabla6" table:style-name="Tabla6">
|
||||
<table:table-column table:style-name="Tabla6.A"/>
|
||||
<table:table-column table:style-name="Tabla6.B"/>
|
||||
@ -1906,7 +1947,7 @@
|
||||
<table:table-column table:style-name="Tabla6.D"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla6.A1" table:number-columns-spanned="4" office:value-type="string">
|
||||
<text:p text:style-name="P82">Condiciones Ambientales</text:p>
|
||||
<text:p text:style-name="P87">Condiciones Ambientales</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1917,13 +1958,13 @@
|
||||
<text:p text:style-name="P27">Temperatura Min</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else """><str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else """><str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P27">Humedad Min</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla6.D2" office:value-type="string">
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else """><str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""></text:placeholder><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else """><str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
@ -1941,15 +1982,15 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P75"/>
|
||||
<text:p text:style-name="P80"/>
|
||||
<text:p text:style-name="P79"/>
|
||||
<text:p text:style-name="P85"/>
|
||||
<table:table table:name="Tabla8" table:style-name="Tabla8">
|
||||
<table:table-column table:style-name="Tabla8.A"/>
|
||||
<table:table-column table:style-name="Tabla8.B"/>
|
||||
<table:table-column table:style-name="Tabla8.C"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A1" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P83">Medida Tomadas</text:p>
|
||||
<text:p text:style-name="P88">Medida Tomadas</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1967,7 +2008,7 @@
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A3" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P81"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.lines_calibration""><for each="line in maintenance.lines_calibration"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P86"><text:placeholder text:placeholder-type="text" text:description="for each="line in maintenance.lines_calibration""><for each="line in maintenance.lines_calibration"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -1983,6 +2024,7 @@
|
||||
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text"><line.mistake_rate></text:placeholder><text:s/>%</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<text:soft-page-break/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla8.A3" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
@ -1991,7 +2033,7 @@
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P76"/>
|
||||
<text:p text:style-name="P80"/>
|
||||
<text:p text:style-name="P20">Resultados de calibración:</text:p>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P50">La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95%</text:p>
|
||||
@ -2004,19 +2046,19 @@
|
||||
<table:table-column table:style-name="Tabla1.E"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P84"><text:placeholder text:placeholder-type="text" text:description=""Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg""><"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P89"><text:placeholder text:placeholder-type="text" text:description=""Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg""><"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P85">Desviación estándar</text:p>
|
||||
<text:p text:style-name="P90">Desviación estándar</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P86">Promedio</text:p>
|
||||
<text:p text:style-name="P91">Promedio</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P85">Incertidumbre Expandida</text:p>
|
||||
<text:p text:style-name="P90">Incertidumbre Expandida</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.E1" office:value-type="string">
|
||||
<text:p text:style-name="P85">Estado</text:p>
|
||||
<text:p text:style-name="P90">Estado</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
@ -2058,7 +2100,7 @@
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabla1.5">
|
||||
<table:table-cell table:style-name="Tabla1.A5" table:number-columns-spanned="5" office:value-type="string">
|
||||
<text:p text:style-name="P74">Este certificado de calibración no podrá ser reproducido.</text:p>
|
||||
<text:p text:style-name="P78">Este certificado de calibración no podrá ser reproducido.</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
@ -2066,21 +2108,38 @@
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P73"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.graph_calibration, 'image/png')" text:anchor-type="char" svg:width="3.4327in" svg:height="2.5736in" draw:z-index="5">
|
||||
<text:p text:style-name="P77"><draw:frame draw:style-name="fr3" draw:name="image: (maintenance.graph_calibration, 'image/png')" text:anchor-type="char" svg:width="3.4327in" svg:height="2.5736in" draw:z-index="5">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P87"/>
|
||||
<text:p text:style-name="P92"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P46"><text:span text:style-name="T53">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T51">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
|
||||
<text:p text:style-name="P77"/>
|
||||
<text:p text:style-name="P77"/>
|
||||
<text:p text:style-name="P77"/>
|
||||
<text:p text:style-name="P91"><text:span text:style-name="T64"><text:placeholder text:placeholder-type="text" text:description="maintenance.technician_responsible"><maintenance.technician_responsible></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P90">INVIMA : <text:span text:style-name="T64"><text:placeholder text:placeholder-type="text" text:description="maintenance.invima"><maintenance.invima></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P30"/>
|
||||
<text:p text:style-name="P89"/>
|
||||
<text:p text:style-name="P69"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
</draw:frame></text:p>
|
||||
<text:p text:style-name="P46"><text:soft-page-break/><text:span text:style-name="T53">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T51">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
|
||||
<text:p text:style-name="P81"/>
|
||||
<text:p text:style-name="P82"/>
|
||||
<table:table table:name="Tabla10" table:style-name="Tabla10">
|
||||
<table:table-column table:style-name="Tabla10.A"/>
|
||||
<table:table-row table:style-name="Tabla10.1">
|
||||
<table:table-cell table:style-name="Tabla10.A1" office:value-type="string">
|
||||
<text:p text:style-name="P68"><text:placeholder text:placeholder-type="text"><if test="maintenance.technician_signature"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P68"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.technician_signature, 'image/png')" text:anchor-type="paragraph" svg:x="0.0791in" svg:y="0.1161in" svg:width="1.6173in" svg:height="0.7673in" draw:z-index="6">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P92"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText1" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">2</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame></text:p>
|
||||
<text:p text:style-name="P95"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P94"><text:placeholder text:placeholder-type="text"><maintenance.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P94">INVIMA :<text:placeholder text:placeholder-type="text"><maintenance.invima></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P66"/>
|
||||
<text:p text:style-name="P73"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P73"/>
|
||||
<text:p text:style-name="P73"/>
|
||||
<text:p text:style-name="P73"/>
|
||||
<text:p text:style-name="P73"/>
|
||||
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P41"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</office:text>
|
||||
|
@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form: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:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-11-28T07:51:36.432994205</dc:date><meta:editing-duration>PT2H3M37S</meta:editing-duration><meta:editing-cycles>41</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="92" meta:word-count="254" meta:character-count="3115" meta:non-whitespace-character-count="2937"/></office:meta>
|
||||
<office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-11-28T11:27:08.556904665</dc:date><meta:editing-duration>PT2H19M47S</meta:editing-duration><meta:editing-cycles>49</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="96" meta:word-count="262" meta:character-count="3211" meta:non-whitespace-character-count="3028"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">52148</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">69393</config:config-item>
|
||||
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">16425</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">15688</config:config-item>
|
||||
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
|
||||
<config:config-item-map-indexed config:name="Views">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">8707</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">65952</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">21586</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">72498</config:config-item>
|
||||
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">52148</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">69393</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">68571</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">85079</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
|
||||
@ -73,7 +73,7 @@
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="AddFrameOffsets" 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="Rsid" config:type="int">2443876</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">2638665</config:config-item>
|
||||
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
|
||||
@ -160,7 +160,7 @@
|
||||
<office:styles>
|
||||
<style:default-style style:family="graphic">
|
||||
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
|
||||
<style:tab-stops/>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
@ -437,16 +437,13 @@
|
||||
<style:style style:name="Tabla1.A3" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10" style:family="table">
|
||||
<style:style style:name="Tabla3" style:family="table">
|
||||
<style:table-properties style:width="6.925in" table:align="margins"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A" style:family="table-column">
|
||||
<style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
|
||||
<style:style style:name="Tabla3.A" style:family="table-column">
|
||||
<style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.1" style:family="table-row">
|
||||
<style:table-row-properties style:min-row-height="0.2778in"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A1" style:family="table-cell">
|
||||
<style:style style:name="Tabla3.A1" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
|
||||
@ -537,183 +534,232 @@
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="0014b27d" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties officeooo:paragraph-rsid="0049dca0"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000e7fd8" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="00274931" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="002413cf" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="11pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="11pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001f79ec" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="000a7d47"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="00269ea8" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00269ea8" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00269ea8" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00286adc" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties officeooo:paragraph-rsid="0049dca0"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000e7fd8" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="002413cf" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="11pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="11pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001f79ec" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00254a64" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="002413cf" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002413cf" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="000a7d47"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000d0c4f" officeooo:paragraph-rsid="00111685" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="00284349" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00274931" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00284349" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00284349" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00284349" officeooo:paragraph-rsid="00284349" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph">
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
</style:style>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
@ -821,41 +867,55 @@
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T36" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T37" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T38" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T39" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T40" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="002413cf" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T41" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="002413cf" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T42" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T43" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T44" style:family="text">
|
||||
<style:text-properties officeooo:rsid="00106d28"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T45" style:family="text">
|
||||
<style:text-properties fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="00286adc" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T46" style:family="text">
|
||||
<style:text-properties officeooo:rsid="00106d28"/>
|
||||
</style:style>
|
||||
<style:style style:name="T47" style:family="text">
|
||||
<style:text-properties fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T48" style:family="text">
|
||||
<style:text-properties officeooo:rsid="002413cf"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
|
||||
<style:graphic-properties style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
</style:style>
|
||||
<style:style style:name="gr1" style:family="graphic">
|
||||
<style:graphic-properties svg:stroke-color="#000000" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" style:run-through="foreground" style:wrap="run-through" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph"/>
|
||||
</style:style>
|
||||
<style:page-layout style:name="pm1">
|
||||
<style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.2165in" style:layout-grid-ruby-height="0in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.1457in" style:layout-grid-snap-to="true" style:footnote-max-height="0in" loext:margin-gutter="0in">
|
||||
<style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
|
||||
@ -1439,40 +1499,40 @@
|
||||
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
|
||||
</text:sequence-decls>
|
||||
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text"><for each="maintenance in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P44">REGISTRO DE MANTENIMIENTO <text:span text:style-name="T46">INICIAL</text:span></text:p>
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P43">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P47">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T42">Fecha</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, '%25B %25d ,%25Y %25H:%25M%25p', maintenance.company.timezone)"><format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T41">Consecutivo</text:span> <text:span text:style-name="T43"><text:placeholder text:placeholder-type="text"><maintenance.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P59"/>
|
||||
<text:p text:style-name="P42"><text:span text:style-name="T31">INFORMACIÓN</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T31">DEL</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T31">PROPIETARIO</text:span></text:p>
|
||||
<text:p text:style-name="P67"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54">REGISTRO DE MANTENIMIENTO <text:span text:style-name="T48">INICIAL</text:span></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T43">Fecha</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, '%25B %25d ,%25Y %25H:%25M%25p', maintenance.company.timezone)"><format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T42">Consecutivo</text:span> <text:span text:style-name="T44"><text:placeholder text:placeholder-type="text"><maintenance.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P71"/>
|
||||
<text:p text:style-name="P52"><text:span text:style-name="T31">INFORMACIÓN</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T31">DEL</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T31">PROPIETARIO</text:span></text:p>
|
||||
<table:table table:name="Tabla4" table:style-name="Tabla4">
|
||||
<table:table-column table:style-name="Tabla4.A"/>
|
||||
<table:table-column table:style-name="Tabla4.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T31">Nombre / Razón Social: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T31">Ciudad: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P39"><text:span text:style-name="T31">Teléfono:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><maintenance.propietary.phone></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T32">Movil</text:span><text:span text:style-name="T33">:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><maintenance.propietary.mobile></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P48"><text:span text:style-name="T31">Nombre / Razón Social: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P48"><text:span text:style-name="T31">Ciudad: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Teléfono:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><maintenance.propietary.phone></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T32">Movil</text:span><text:span text:style-name="T33">:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><maintenance.propietary.mobile></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T31">Tipo Documento: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T31">Documento:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P38"><text:span text:style-name="T31">Dirección:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P48"><text:span text:style-name="T31">Tipo Documento: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P48"><text:span text:style-name="T31">Documento:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P48"><text:span text:style-name="T31">Dirección:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><maintenance.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P29"/>
|
||||
<text:p text:style-name="P30">INFORMACIÓN DEL DISPOSITIVO</text:p>
|
||||
<text:p text:style-name="P39"/>
|
||||
<text:p text:style-name="P40">INFORMACIÓN DEL DISPOSITIVO</text:p>
|
||||
<table:table table:name="Tabla2" table:style-name="Tabla2">
|
||||
<table:table-column table:style-name="Tabla2.A"/>
|
||||
<table:table-column table:style-name="Tabla2.B"/>
|
||||
@ -1489,140 +1549,155 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P30"/>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="P19"/>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P67"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P64"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P17">Trabajo Realizado</text:p>
|
||||
<table:table table:name="Tabla5" table:style-name="Tabla5">
|
||||
<table:table-column table:style-name="Tabla5.A"/>
|
||||
<table:table-column table:style-name="Tabla5.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A1" office:value-type="string">
|
||||
<text:p text:style-name="P35">1. Verificación inicial de funcionamiento:</text:p>
|
||||
<text:p text:style-name="P45">1. Verificación inicial de funcionamiento:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B1" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.initial_operation else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.initial_operation else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" office:value-type="string">
|
||||
<text:p text:style-name="P35">2. Revisión del Equipo:</text:p>
|
||||
<text:p text:style-name="P45">2. Revisión del Equipo:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_equipment else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_equipment else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" office:value-type="string">
|
||||
<text:p text:style-name="P35">3. Revisión del sistema eléctrico:</text:p>
|
||||
<text:p text:style-name="P45">3. Revisión del sistema eléctrico:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_electric_system else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_electric_system else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" office:value-type="string">
|
||||
<text:p text:style-name="P35">4. Limpieza interior y exterior:</text:p>
|
||||
<text:p text:style-name="P45">4. Limpieza interior y exterior:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.clean_int_ext else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.clean_int_ext else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" office:value-type="string">
|
||||
<text:p text:style-name="P35">5. Limpieza de lentes y espejos:</text:p>
|
||||
<text:p text:style-name="P45">5. Limpieza de lentes y espejos:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.clean_eyes else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.clean_eyes else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" office:value-type="string">
|
||||
<text:p text:style-name="P35">6. Verificar Calibración:</text:p>
|
||||
<text:p text:style-name="P45">6. Verificar Calibración:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_calibration else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><"X" if maintenance.check_calibration else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50">Trabajo Realizado</text:p>
|
||||
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><when test="maintenance.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P60">Trabajo Realizado</text:p>
|
||||
<table:table table:name="Tabla1" table:style-name="Tabla1">
|
||||
<table:table-column table:style-name="Tabla1.A"/>
|
||||
<table:table-column table:style-name="Tabla1.B"/>
|
||||
<table:table-column table:style-name="Tabla1.C"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P45">Repuesto</text:p>
|
||||
<text:p text:style-name="P55">Repuesto</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P46">Actividad de Mantenimiento</text:p>
|
||||
<text:p text:style-name="P56">Actividad de Mantenimiento</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.C1" office:value-type="string">
|
||||
<text:p text:style-name="P46">Descripción</text:p>
|
||||
<text:p text:style-name="P56">Descripción</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"><for each="line in maintenance.maintenance_lines"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"><for each="line in maintenance.maintenance_lines"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A3" office:value-type="string">
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"><"X" if line.line_replace else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"><"X" if line.line_replace else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A3" office:value-type="string">
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"><"X" if line.line_maintenance_activity else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"><"X" if line.line_maintenance_activity else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"><line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"><line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name></text:placeholder></text:p>
|
||||
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text"><if test="line.description"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text"><for each="description in line.description.split('\n')"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text"><description></text:placeholder></text:p>
|
||||
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"/>
|
||||
<text:p text:style-name="P66"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.preventive_activities"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P64">Actividades Realizadas:</text:p>
|
||||
<text:p text:style-name="P62"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><for each="description in (maintenance.equipment.product.preventive_activities or '').split('\n')"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><description></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P67"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P70"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P69"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><when test="maintenance.equipment.product.preventive_activities"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P31">Actividades Realizadas:</text:p>
|
||||
<text:p text:style-name="P25"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><for each="description in (maintenance.equipment.product.preventive_activities or '').split('\n')"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text"><description></text:placeholder></text:p>
|
||||
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P18">Observaciones</text:p>
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><maintenance.description_activity></text:placeholder></text:p>
|
||||
<text:p text:style-name="P34"/>
|
||||
<text:p text:style-name="P34"/>
|
||||
<text:p text:style-name="P18">Fecha del <text:span text:style-name="T44">p</text:span>róximo mantenimiento <text:span text:style-name="T36"><text:placeholder text:placeholder-type="text"><str(maintenance.next_maintenance)[0:11]></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text"><maintenance.description_activity></text:placeholder></text:p>
|
||||
<text:p text:style-name="P44"/>
|
||||
<text:p text:style-name="P44"/>
|
||||
<text:p text:style-name="P18">Fecha del <text:span text:style-name="T46">p</text:span>róximo mantenimiento <text:span text:style-name="T37"><text:placeholder text:placeholder-type="text"><str(maintenance.next_maintenance)[0:11]></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P18"/>
|
||||
<table:table table:name="Tabla10" table:style-name="Tabla10">
|
||||
<table:table-column table:style-name="Tabla10.A"/>
|
||||
<table:table-row table:style-name="Tabla10.1">
|
||||
<table:table-cell table:style-name="Tabla10.A1" office:value-type="string">
|
||||
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text"><maintenance.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P32">INVIMA :<text:placeholder text:placeholder-type="text"><maintenance.invima></text:placeholder></text:p>
|
||||
<text:p text:style-name="P18"/>
|
||||
<table:table table:name="Tabla3" table:style-name="Tabla3">
|
||||
<table:table-column table:style-name="Tabla3.A" table:number-columns-repeated="2"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P74"><text:placeholder text:placeholder-type="text"><if test="maintenance.technician_signature"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P74"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.technician_signature, 'image/png')" text:anchor-type="paragraph" svg:x="0.0791in" svg:y="0.1161in" svg:width="1.6173in" svg:height="0.7673in" draw:z-index="3">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P36"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame></text:p>
|
||||
<text:p text:style-name="P78"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P77"><text:placeholder text:placeholder-type="text"><maintenance.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P77">INVIMA :<text:placeholder text:placeholder-type="text"><maintenance.invima></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P79"><draw:line text:anchor-type="paragraph" draw:z-index="4" draw:name="Línea horizontal 1" draw:style-name="gr1" draw:text-style-name="P80" svg:x1="-0.0016in" svg:y1="0.6909in" svg:x2="2.3866in" svg:y2="0.6909in">
|
||||
<text:p/>
|
||||
</draw:line>Recibido a Satisfacción:</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P18"/>
|
||||
<text:p text:style-name="P20"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P37"/>
|
||||
<text:p text:style-name="P47"/>
|
||||
<text:p text:style-name="P20"/>
|
||||
</office:text>
|
||||
</office:body>
|
||||
|
@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form: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:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-11-28T07:41:00.422955630</dc:date><meta:editing-duration>PT4H16M40S</meta:editing-duration><meta:editing-cycles>70</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="89" meta:word-count="253" meta:character-count="2869" meta:non-whitespace-character-count="2689"/></office:meta>
|
||||
<office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-11-28T08:44:57.381710837</dc:date><meta:editing-duration>PT4H28M54S</meta:editing-duration><meta:editing-cycles>78</meta:editing-cycles><meta:generator>LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="92" meta:word-count="257" meta:character-count="2940" meta:non-whitespace-character-count="2758"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">43954</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">30379</config:config-item>
|
||||
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">16425</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">15688</config:config-item>
|
||||
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
|
||||
<config:config-item-map-indexed config:name="Views">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">8707</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">66784</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">12497</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">71221</config:config-item>
|
||||
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">43954</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">30379</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">60378</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">46066</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
|
||||
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
|
||||
@ -73,7 +73,7 @@
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="AddFrameOffsets" 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="Rsid" config:type="int">2756670</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">2955950</config:config-item>
|
||||
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
|
||||
@ -437,6 +437,18 @@
|
||||
<style:style style:name="Tabla1.A3" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10" style:family="table">
|
||||
<style:table-properties style:width="6.925in" table:align="margins"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A" style:family="table-column">
|
||||
<style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.1" style:family="table-row">
|
||||
<style:table-row-properties style:min-row-height="0.2778in"/>
|
||||
</style:style>
|
||||
<style:style style:name="Tabla10.A1" style:family="table-cell">
|
||||
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="00066dfa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
@ -533,164 +545,183 @@
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0026c073" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:break-before="page" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00282c1f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00286adc" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties officeooo:paragraph-rsid="0049dca0"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0026c073" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0023d3e5" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="002570b4" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001f51eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="00282c1f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" officeooo:paragraph-rsid="002a103e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" officeooo:paragraph-rsid="002a103e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00286adc" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00286adc" officeooo:paragraph-rsid="002a103e" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Header">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties officeooo:paragraph-rsid="0049dca0"/>
|
||||
</style:style>
|
||||
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Frame_20_contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0026c073" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0012f95a" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0023d3e5" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="002570b4" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00286adc" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001f51eb" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002a103e" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="001f51eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="002bef4b" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
@ -797,41 +828,49 @@
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T36" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T37" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T38" style:family="text">
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T39" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="T40" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T41" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T42" style:family="text">
|
||||
<style:text-properties officeooo:rsid="00106d28"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T43" style:family="text">
|
||||
<style:text-properties officeooo:rsid="00286adc"/>
|
||||
<style:text-properties officeooo:rsid="00106d28"/>
|
||||
</style:style>
|
||||
<style:style style:name="T44" style:family="text">
|
||||
<style:text-properties fo:font-size="8pt" style:text-underline-style="none" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:text-properties officeooo:rsid="00286adc"/>
|
||||
</style:style>
|
||||
<style:style style:name="T45" style:family="text">
|
||||
<style:text-properties fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
<style:text-properties fo:font-size="8pt" style:text-underline-style="none" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="T46" style:family="text">
|
||||
<style:text-properties fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="T47" style:family="text">
|
||||
<style:text-properties style:font-name="Droid Sans Japanese1" style:text-underline-style="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
|
||||
<style:graphic-properties style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
|
||||
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0in"/>
|
||||
</style:graphic-properties>
|
||||
</style:style>
|
||||
<style:page-layout style:name="pm1">
|
||||
<style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.2165in" style:layout-grid-ruby-height="0in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.1457in" style:layout-grid-snap-to="true" style:footnote-max-height="0in" loext:margin-gutter="0in">
|
||||
<style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
|
||||
@ -1416,40 +1455,40 @@
|
||||
</text:sequence-decls>
|
||||
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text"><for each="maintenance in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text"><for each="line in maintenance.lines"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P44">REGISTRO DE MANTENIMIENTO <text:span text:style-name="T43">INICIAL</text:span></text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P44">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P47">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P42"><text:span text:style-name="T40">Fecha</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="maintenance.estimated_agended.date()"><maintenance.estimated_agended.date()></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P42"><text:span text:style-name="T39">Consecutivo</text:span> <text:span text:style-name="T41"><text:placeholder text:placeholder-type="text"><line.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P57"/>
|
||||
<text:p text:style-name="P43"><text:span text:style-name="T31">INFORMACIÓN</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T31">DEL</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T31">PROPIETARIO</text:span></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53">REGISTRO DE MANTENIMIENTO <text:span text:style-name="T44">INICIAL</text:span></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'preventive'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P53">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
|
||||
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T41">Fecha</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="maintenance.estimated_agended.date()"><maintenance.estimated_agended.date()></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P51"><text:span text:style-name="T40">Consecutivo</text:span> <text:span text:style-name="T42"><text:placeholder text:placeholder-type="text"><line.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P67"/>
|
||||
<text:p text:style-name="P52"><text:span text:style-name="T31">INFORMACIÓN</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T31">DEL</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T31">PROPIETARIO</text:span></text:p>
|
||||
<table:table table:name="Table1" table:style-name="Table1">
|
||||
<table:table-column table:style-name="Table1.A"/>
|
||||
<table:table-column table:style-name="Table1.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T31">Nombre / Razón Social: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T31">Ciudad: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T31">Teléfono:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><line.propietary.phone></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T32">Movil</text:span><text:span text:style-name="T33">:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><line.propietary.mobile></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Nombre / Razón Social: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Ciudad: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary_address.subdivision_municipality.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T31">Teléfono:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><line.propietary.phone></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P50"><text:span text:style-name="T32">Movil</text:span><text:span text:style-name="T33">:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text"><line.propietary.mobile></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T31">Tipo Documento: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><"NIT" if line.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T31">Documento:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P40"><text:span text:style-name="T31">Dirección:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Tipo Documento: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><"NIT" if line.propietary.tax_identifier.type=="31" else "CC"></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Documento:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P49"><text:span text:style-name="T31">Dirección:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text"><line.propietary_address.street></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P35"/>
|
||||
<text:p text:style-name="P36">INFORMACIÓN DEL DISPOSITIVO</text:p>
|
||||
<text:p text:style-name="P42"/>
|
||||
<text:p text:style-name="P43">INFORMACIÓN DEL DISPOSITIVO</text:p>
|
||||
<table:table table:name="Table2" table:style-name="Table2">
|
||||
<table:table-column table:style-name="Table2.A"/>
|
||||
<table:table-column table:style-name="Table2.B"/>
|
||||
@ -1466,8 +1505,8 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'preventive' or line.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P63"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'preventive' or line.maintenance_type == 'initial'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P18">Trabajo Realizado</text:p>
|
||||
<text:p text:style-name="P19"/>
|
||||
<table:table table:name="Tabla1_1" table:style-name="Tabla1_5f_1">
|
||||
@ -1475,118 +1514,130 @@
|
||||
<table:table-column table:style-name="Tabla1_5f_1.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P39">1. Verificación inicial de funcionamiento:</text:p>
|
||||
<text:p text:style-name="P47">1. Verificación inicial de funcionamiento:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B1" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.initial_operation else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.initial_operation else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<text:soft-page-break/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P39">2. Revisión del Equipo:</text:p>
|
||||
<text:p text:style-name="P47">2. Revisión del Equipo:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B2" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.check_equipment else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.check_equipment else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P39">3. Revisión del sistema eléctrico:</text:p>
|
||||
<text:p text:style-name="P47">3. Revisión del sistema eléctrico:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B2" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.check_electric_system else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.check_electric_system else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P39">4. Limpieza interior y exterior:</text:p>
|
||||
<text:p text:style-name="P47">4. Limpieza interior y exterior:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B2" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.clean_int_ext else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.clean_int_ext else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P39">5. Limpieza de lentes y espejos:</text:p>
|
||||
<text:p text:style-name="P47">5. Limpieza de lentes y espejos:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B2" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.clean_eyes else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.clean_eyes else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P39">6. Verificar Calibración:</text:p>
|
||||
<text:p text:style-name="P47">6. Verificar Calibración:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1_5f_1.B2" office:value-type="string">
|
||||
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text"><"X" if line.check_calibration else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text"><"X" if line.check_calibration else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P25"/>
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P49">Trabajo Realizado</text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P30"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"><when test="line.maintenance_type == 'corrective'"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P58">Trabajo Realizado</text:p>
|
||||
<table:table table:name="Tabla1" table:style-name="Tabla1">
|
||||
<table:table-column table:style-name="Tabla1.A"/>
|
||||
<table:table-column table:style-name="Tabla1.B"/>
|
||||
<table:table-column table:style-name="Tabla1.C"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P45">Repuesto</text:p>
|
||||
<text:p text:style-name="P54">Repuesto</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P46">Actividad de Mantenimiento</text:p>
|
||||
<text:p text:style-name="P55">Actividad de Mantenimiento</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.C1" office:value-type="string">
|
||||
<text:p text:style-name="P46">Descripción</text:p>
|
||||
<text:p text:style-name="P55">Descripción</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><for each="line_maintenance in line.maintenance_lines"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><for each="line_maintenance in line.maintenance_lines"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A3" office:value-type="string">
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><"X" if line_maintenance.line_replace else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><"X" if line_maintenance.line_replace else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A3" office:value-type="string">
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><"X" if line_maintenance.line_maintenance_activity else ""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><"X" if line_maintenance.line_maintenance_activity else ""></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"><line_maintenance.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"><line_maintenance.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla1.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"><when test="line.equipment.product.preventive_activities"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P62">Actividades Realizadas:</text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><for each="description in (line.equipment.product.preventive_activities or '').split('\n')"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"><description></text:placeholder></text:p>
|
||||
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P65"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"><choose test=""></text:placeholder></text:p>
|
||||
<text:p text:style-name="P31"><text:placeholder text:placeholder-type="text"><when test="line.equipment.product.preventive_activities"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P35">Actividades Realizadas:</text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"><for each="description in (line.equipment.product.preventive_activities or '').split('\n')"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"><description></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P31"><text:placeholder text:placeholder-type="text"></when></text:placeholder></text:p>
|
||||
<text:p text:style-name="P66"><text:placeholder text:placeholder-type="text"></choose></text:placeholder></text:p>
|
||||
<text:p text:style-name="P20">Observaciones:</text:p>
|
||||
<text:p text:style-name="P38"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><line.description_activity></text:placeholder></text:p>
|
||||
<text:p text:style-name="P38"/>
|
||||
<text:p text:style-name="P38"/>
|
||||
<text:p text:style-name="P20">Fecha del <text:span text:style-name="T42">p</text:span>róximo mantenimiento <text:span text:style-name="T36"><text:placeholder text:placeholder-type="text"><str(line.next_maintenance)[0:11]></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text"><line.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P24"><text:span text:style-name="T31">INVIMA : </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text"><line.invima></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P23"/>
|
||||
<text:p text:style-name="P46"><text:soft-page-break/><text:placeholder text:placeholder-type="text"><line.description_activity></text:placeholder></text:p>
|
||||
<text:p text:style-name="P20">Fecha del <text:span text:style-name="T43">p</text:span>róximo mantenimiento <text:span text:style-name="T37"><text:placeholder text:placeholder-type="text"><str(line.next_maintenance)[0:11]></text:placeholder></text:span></text:p>
|
||||
<table:table table:name="Tabla10" table:style-name="Tabla10">
|
||||
<table:table-column table:style-name="Tabla10.A"/>
|
||||
<table:table-row table:style-name="Tabla10.1">
|
||||
<table:table-cell table:style-name="Tabla10.A1" office:value-type="string">
|
||||
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text"><if test="line.technician_signature"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P27"><draw:frame draw:style-name="fr2" draw:name="image: (line.technician_signature, 'image/png')" text:anchor-type="paragraph" svg:x="0.0791in" svg:y="0.1161in" svg:width="1.6173in" svg:height="0.7673in" draw:z-index="4">
|
||||
<draw:text-box>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
|
||||
</draw:text-box>
|
||||
</draw:frame></text:p>
|
||||
<text:p text:style-name="P68"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
|
||||
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text"><line.technician_responsible></text:placeholder></text:p>
|
||||
<text:p text:style-name="P45">INVIMA :<text:placeholder text:placeholder-type="text"><line.invima></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P25"/>
|
||||
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P22"/>
|
||||
|
@ -48,4 +48,7 @@ this repository contains the full copyright notices and license terms. -->
|
||||
|
||||
<label name="invima"/>
|
||||
<field name="invima"/>
|
||||
|
||||
<label name="technician_signature"/>
|
||||
<field name="technician_signature"/>
|
||||
</form>
|
||||
|
@ -62,7 +62,7 @@
|
||||
|
||||
<label name="technician_responsible"/>
|
||||
<field name="technician_responsible"/>
|
||||
|
||||
|
||||
<label name="invima"/>
|
||||
<field name="invima"/>
|
||||
</page>
|
||||
|
Loading…
Reference in New Issue
Block a user