diff --git a/.gitignore b/.gitignore index 8ace808..6ab8476 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ node_modules *.docx# *.docx output/*.docx +output/*.json +output/*.xml vrt/screenshot/actual vrt/screenshot/diff vrt/report.html diff --git a/docx-core/src/documents/elements/mod.rs b/docx-core/src/documents/elements/mod.rs index 9b622bd..11709de 100644 --- a/docx-core/src/documents/elements/mod.rs +++ b/docx-core/src/documents/elements/mod.rs @@ -70,6 +70,7 @@ mod table_cell_property; mod table_cell_width; mod table_grid; mod table_indent; +mod table_layout; mod table_property; mod table_row; mod table_row_property; @@ -160,6 +161,7 @@ pub use table_cell_property::*; pub use table_cell_width::*; pub use table_grid::*; pub use table_indent::*; +pub use table_layout::*; pub use table_property::*; pub use table_row::*; pub use table_row_property::*; diff --git a/docx-core/src/documents/elements/table.rs b/docx-core/src/documents/elements/table.rs index a3f025c..9392241 100644 --- a/docx-core/src/documents/elements/table.rs +++ b/docx-core/src/documents/elements/table.rs @@ -64,6 +64,11 @@ impl Table { self } + pub fn layout(mut self, t: TableLayoutType) -> Table { + self.property = self.property.layout(t); + self + } + pub fn width(mut self, w: usize, t: WidthType) -> Table { self.property = self.property.width(w, t); self @@ -153,7 +158,7 @@ mod tests { let t = Table::new(vec![]).set_grid(vec![100, 200, 300]); assert_eq!( serde_json::to_string(&t).unwrap(), - r#"{"rows":[],"grid":[100,200,300],"hasNumbering":false,"property":{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":55,"left":54,"bottom":55,"right":55},"indent":null,"style":null}}"# + r#"{"rows":[],"grid":[100,200,300],"hasNumbering":false,"property":{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":55,"left":54,"bottom":55,"right":55},"indent":null,"style":null,"layout":null}}"# ); } } diff --git a/docx-core/src/documents/elements/table_layout.rs b/docx-core/src/documents/elements/table_layout.rs new file mode 100644 index 0000000..1894bc0 --- /dev/null +++ b/docx-core/src/documents/elements/table_layout.rs @@ -0,0 +1,34 @@ +use serde::{Serialize, Serializer}; + +use crate::documents::BuildXML; +use crate::types::*; +use crate::xml_builder::*; + +#[derive(Debug, Clone, PartialEq)] +pub struct TableLayout { + layout_type: TableLayoutType, +} + +impl TableLayout { + pub fn new(t: TableLayoutType) -> TableLayout { + TableLayout { + layout_type: t, + } + } +} + +impl BuildXML for TableLayout { + fn build(&self) -> Vec { + let b = XMLBuilder::new(); + b.table_layout(&self.layout_type.to_string()).build() + } +} + +impl Serialize for TableLayout { + fn serialize(&self, serializer: S) -> Result + where + S: Serializer, + { + serializer.serialize_str(&self.layout_type.to_string()) + } +} diff --git a/docx-core/src/documents/elements/table_property.rs b/docx-core/src/documents/elements/table_property.rs index 368666c..a99fe15 100644 --- a/docx-core/src/documents/elements/table_property.rs +++ b/docx-core/src/documents/elements/table_property.rs @@ -14,6 +14,7 @@ pub struct TableProperty { margins: TableCellMargins, indent: Option, style: Option, + layout: Option, } impl Default for TableProperty { @@ -25,6 +26,7 @@ impl Default for TableProperty { margins: TableCellMargins::new(), indent: None, style: None, + layout: None, } } } @@ -85,6 +87,11 @@ impl TableProperty { self.style = Some(TableStyle::new(s)); self } + + pub fn layout(mut self, t: TableLayoutType) -> Self { + self.layout = Some(TableLayout::new(t)); + self + } } impl BuildXML for TableProperty { @@ -97,6 +104,7 @@ impl BuildXML for TableProperty { .add_child(&self.margins) .add_optional_child(&self.indent) .add_optional_child(&self.style) + .add_optional_child(&self.layout) .close() .build() } @@ -130,7 +138,7 @@ mod tests { let p = TableProperty::new().indent(100); assert_eq!( serde_json::to_string(&p).unwrap(), - r#"{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":55,"left":54,"bottom":55,"right":55},"indent":{"width":100,"widthType":"DXA"},"style":null}"# + r#"{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":55,"left":54,"bottom":55,"right":55},"indent":{"width":100,"widthType":"DXA"},"style":null,"layout":null}"# ); } } diff --git a/docx-core/src/types/mod.rs b/docx-core/src/types/mod.rs index d874fef..4b67f90 100644 --- a/docx-core/src/types/mod.rs +++ b/docx-core/src/types/mod.rs @@ -15,6 +15,7 @@ pub mod spacing; pub mod special_indent_type; pub mod style_type; pub mod table_alignment_type; +pub mod table_layout_type; pub mod text_direction_type; pub mod vertical_align_type; pub mod vertical_merge_type; @@ -37,6 +38,7 @@ pub use spacing::*; pub use special_indent_type::*; pub use style_type::*; pub use table_alignment_type::*; +pub use table_layout_type::*; pub use text_direction_type::*; pub use vertical_align_type::*; pub use vertical_merge_type::*; diff --git a/docx-core/src/types/table_layout_type.rs b/docx-core/src/types/table_layout_type.rs new file mode 100644 index 0000000..6e03b6b --- /dev/null +++ b/docx-core/src/types/table_layout_type.rs @@ -0,0 +1,33 @@ +use serde::{Deserialize, Serialize}; +use std::fmt; +use wasm_bindgen::prelude::*; + +use super::errors; +use std::str::FromStr; + +#[wasm_bindgen] +#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] +#[serde(rename_all = "camelCase")] +pub enum TableLayoutType { + Fixed, + Autofit, +} + +impl fmt::Display for TableLayoutType { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match *self { + TableLayoutType::Fixed => write!(f, "fixed"), + TableLayoutType::Autofit => write!(f, "autofit"), + } + } +} + +impl FromStr for TableLayoutType { + type Err = errors::TypeError; + fn from_str(s: &str) -> Result { + match s { + "fixed" => Ok(TableLayoutType::Fixed), + _ => Ok(TableLayoutType::Autofit), + } + } +} diff --git a/docx-core/src/xml_builder/elements.rs b/docx-core/src/xml_builder/elements.rs index 89ca327..e405c34 100644 --- a/docx-core/src/xml_builder/elements.rs +++ b/docx-core/src/xml_builder/elements.rs @@ -184,6 +184,7 @@ impl XMLBuilder { open!(open_table_borders, "w:tblBorders"); open!(open_table_cell_margins, "w:tblCellMar"); + closed!(table_layout, "w:tblLayout", "w:type"); closed_with_str!(table_style, "w:tblStyle"); closed_w_with_type_el!(table_width, "w:tblW"); closed_w_with_type_el!(table_indent, "w:tblInd"); diff --git a/docx-core/tests/snapshots/lib__reader__read_bom.snap b/docx-core/tests/snapshots/lib__reader__read_bom.snap index aa2d376..7e8f861 100644 --- a/docx-core/tests/snapshots/lib__reader__read_bom.snap +++ b/docx-core/tests/snapshots/lib__reader__read_bom.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_bookmark.snap b/docx-core/tests/snapshots/lib__reader__read_bookmark.snap index 5b2f507..f24d918 100644 --- a/docx-core/tests/snapshots/lib__reader__read_bookmark.snap +++ b/docx-core/tests/snapshots/lib__reader__read_bookmark.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_comment.snap b/docx-core/tests/snapshots/lib__reader__read_comment.snap index 43cbdda..94c6d11 100644 --- a/docx-core/tests/snapshots/lib__reader__read_comment.snap +++ b/docx-core/tests/snapshots/lib__reader__read_comment.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_decoration.snap b/docx-core/tests/snapshots/lib__reader__read_decoration.snap index beb19b5..478e83f 100644 --- a/docx-core/tests/snapshots/lib__reader__read_decoration.snap +++ b/docx-core/tests/snapshots/lib__reader__read_decoration.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap b/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap index 1c41d12..9690e18 100644 --- a/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap +++ b/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_from_doc.snap b/docx-core/tests/snapshots/lib__reader__read_from_doc.snap index 052f5d6..3d3bec3 100644 --- a/docx-core/tests/snapshots/lib__reader__read_from_doc.snap +++ b/docx-core/tests/snapshots/lib__reader__read_from_doc.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_hello.snap b/docx-core/tests/snapshots/lib__reader__read_hello.snap index 7c64d1c..271d776 100644 --- a/docx-core/tests/snapshots/lib__reader__read_hello.snap +++ b/docx-core/tests/snapshots/lib__reader__read_hello.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap b/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap index 69bfbaa..4cfb7cc 100644 --- a/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap +++ b/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_history.snap b/docx-core/tests/snapshots/lib__reader__read_history.snap index 4b29449..6f29817 100644 --- a/docx-core/tests/snapshots/lib__reader__read_history.snap +++ b/docx-core/tests/snapshots/lib__reader__read_history.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap b/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap index 9d1bb17..a47db33 100644 --- a/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap +++ b/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_insert_table.snap b/docx-core/tests/snapshots/lib__reader__read_insert_table.snap index 41335fe..96217d4 100644 --- a/docx-core/tests/snapshots/lib__reader__read_insert_table.snap +++ b/docx-core/tests/snapshots/lib__reader__read_insert_table.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap b/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap index 8045b8f..2653897 100644 --- a/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap +++ b/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_numbering.snap b/docx-core/tests/snapshots/lib__reader__read_numbering.snap index 2239671..5845f4b 100644 --- a/docx-core/tests/snapshots/lib__reader__read_numbering.snap +++ b/docx-core/tests/snapshots/lib__reader__read_numbering.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"space\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"space\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap b/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap index 2afa350..4b8f575 100644 --- a/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap +++ b/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_table_docx.snap b/docx-core/tests/snapshots/lib__reader__read_table_docx.snap index 7623954..ebf4866 100644 --- a/docx-core/tests/snapshots/lib__reader__read_table_docx.snap +++ b/docx-core/tests/snapshots/lib__reader__read_table_docx.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap b/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap index f0a1adb..b52f671 100644 --- a/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap +++ b/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_textbox.snap b/docx-core/tests/snapshots/lib__reader__read_textbox.snap index bc2a39d..0e04815 100644 --- a/docx-core/tests/snapshots/lib__reader__read_textbox.snap +++ b/docx-core/tests/snapshots/lib__reader__read_textbox.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_bom.snap b/docx-core/tests/snapshots/reader__read_bom.snap index aa2d376..7e8f861 100644 --- a/docx-core/tests/snapshots/reader__read_bom.snap +++ b/docx-core/tests/snapshots/reader__read_bom.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_bookmark.snap b/docx-core/tests/snapshots/reader__read_bookmark.snap index 5b2f507..f24d918 100644 --- a/docx-core/tests/snapshots/reader__read_bookmark.snap +++ b/docx-core/tests/snapshots/reader__read_bookmark.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_comment.snap b/docx-core/tests/snapshots/reader__read_comment.snap index 43cbdda..94c6d11 100644 --- a/docx-core/tests/snapshots/reader__read_comment.snap +++ b/docx-core/tests/snapshots/reader__read_comment.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_decoration.snap b/docx-core/tests/snapshots/reader__read_decoration.snap index beb19b5..478e83f 100644 --- a/docx-core/tests/snapshots/reader__read_decoration.snap +++ b/docx-core/tests/snapshots/reader__read_decoration.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_extended_comments.snap b/docx-core/tests/snapshots/reader__read_extended_comments.snap index 1c41d12..9690e18 100644 --- a/docx-core/tests/snapshots/reader__read_extended_comments.snap +++ b/docx-core/tests/snapshots/reader__read_extended_comments.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_from_doc.snap b/docx-core/tests/snapshots/reader__read_from_doc.snap index 052f5d6..3d3bec3 100644 --- a/docx-core/tests/snapshots/reader__read_from_doc.snap +++ b/docx-core/tests/snapshots/reader__read_from_doc.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_hello.snap b/docx-core/tests/snapshots/reader__read_hello.snap index 7c64d1c..271d776 100644 --- a/docx-core/tests/snapshots/reader__read_hello.snap +++ b/docx-core/tests/snapshots/reader__read_hello.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap b/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap index 69bfbaa..4cfb7cc 100644 --- a/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap +++ b/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_history.snap b/docx-core/tests/snapshots/reader__read_history.snap index 4b29449..6f29817 100644 --- a/docx-core/tests/snapshots/reader__read_history.snap +++ b/docx-core/tests/snapshots/reader__read_history.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_indent_word_online.snap b/docx-core/tests/snapshots/reader__read_indent_word_online.snap index 9d1bb17..a47db33 100644 --- a/docx-core/tests/snapshots/reader__read_indent_word_online.snap +++ b/docx-core/tests/snapshots/reader__read_indent_word_online.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n }\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_insert_table.snap b/docx-core/tests/snapshots/reader__read_insert_table.snap index 41335fe..96217d4 100644 --- a/docx-core/tests/snapshots/reader__read_insert_table.snap +++ b/docx-core/tests/snapshots/reader__read_insert_table.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"underline\": \"none\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_lvl_override.snap b/docx-core/tests/snapshots/reader__read_lvl_override.snap index 8045b8f..2653897 100644 --- a/docx-core/tests/snapshots/reader__read_lvl_override.snap +++ b/docx-core/tests/snapshots/reader__read_lvl_override.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_numbering.snap b/docx-core/tests/snapshots/reader__read_numbering.snap index 2239671..5845f4b 100644 --- a/docx-core/tests/snapshots/reader__read_numbering.snap +++ b/docx-core/tests/snapshots/reader__read_numbering.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"space\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"space\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"nothing\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_tab_and_break.snap b/docx-core/tests/snapshots/reader__read_tab_and_break.snap index 2afa350..4b8f575 100644 --- a/docx-core/tests/snapshots/reader__read_tab_and_break.snap +++ b/docx-core/tests/snapshots/reader__read_tab_and_break.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_table_docx.snap b/docx-core/tests/snapshots/reader__read_table_docx.snap index 7623954..ebf4866 100644 --- a/docx-core/tests/snapshots/reader__read_table_docx.snap +++ b/docx-core/tests/snapshots/reader__read_table_docx.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null\n },\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"pstyle\": null,\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n }\n },\n \"lineHeight\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"suffix\": \"tab\"\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap b/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap index f0a1adb..b52f671 100644 --- a/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap +++ b/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_textbox.snap b/docx-core/tests/snapshots/reader__read_textbox.snap index bc2a39d..0e04815 100644 --- a/docx-core/tests/snapshots/reader__read_textbox.snap +++ b/docx-core/tests/snapshots/reader__read_textbox.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": 55,\n \"left\": 54,\n \"bottom\": 55,\n \"right\": 55\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n }\n}" diff --git a/docx-wasm/js/index.ts b/docx-wasm/js/index.ts index 877d29a..039dc09 100644 --- a/docx-wasm/js/index.ts +++ b/docx-wasm/js/index.ts @@ -442,6 +442,17 @@ export class Docx { } } + switch (t.property.layout) { + case "fixed": { + table = table.layout(wasm.TableLayoutType.Fixed); + break; + } + case "autofit": { + table = table.layout(wasm.TableLayoutType.Autofit); + break; + } + } + return table; } diff --git a/docx-wasm/js/json/table.ts b/docx-wasm/js/json/table.ts index b431f04..98858c6 100644 --- a/docx-wasm/js/json/table.ts +++ b/docx-wasm/js/json/table.ts @@ -3,6 +3,7 @@ import { BorderJSON } from "./border"; import { HeightRule } from "../table-row"; import { TextDirectionType } from "../table-cell"; import { ShadingJSON } from "./shading"; +import { TableLayoutType } from "../table"; export type TableCellChildJSON = ParagraphJSON; @@ -67,6 +68,7 @@ export type TablePropertyJSON = { widthType: WidthType; }; style: string | null; + layout: TableLayoutType | null; }; export type TableJSON = { diff --git a/docx-wasm/js/table.ts b/docx-wasm/js/table.ts index c42b40a..f53ab53 100644 --- a/docx-wasm/js/table.ts +++ b/docx-wasm/js/table.ts @@ -1,6 +1,7 @@ import { TableRow } from "./table-row"; export type TableAlignmentType = "center" | "left" | "right"; +export type TableLayoutType = "fixed" | "autofit"; export type TableProperty = { indent?: number; @@ -12,6 +13,7 @@ export type TableProperty = { bottom: number; right: number; }; + layout?: TableLayoutType; }; export class Table { @@ -43,6 +45,11 @@ export class Table { return this; } + layout(l: TableLayoutType) { + this.property.layout = l; + return this; + } + width(w: number) { this.property.width = w; return this; diff --git a/docx-wasm/package.json b/docx-wasm/package.json index 6cdbd39..142b276 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -1,6 +1,6 @@ { "name": "docx-wasm", - "version": "0.0.173", + "version": "0.0.174", "main": "dist/node/index.js", "browser": "dist/web/index.js", "author": "bokuweb ", diff --git a/docx-wasm/src/table.rs b/docx-wasm/src/table.rs index d1340e8..adbcfdc 100644 --- a/docx-wasm/src/table.rs +++ b/docx-wasm/src/table.rs @@ -43,7 +43,18 @@ impl Table { self } - pub fn set_cell_margins(mut self, top: usize, right: usize, bottom: usize, left: usize) -> Table { + pub fn layout(mut self, t: docx_rs::TableLayoutType) -> Table { + self.0 = self.0.layout(t); + self + } + + pub fn set_cell_margins( + mut self, + top: usize, + right: usize, + bottom: usize, + left: usize, + ) -> Table { let m = docx_rs::TableCellMargins::new().margin(top, right, bottom, left); self.0.property = self.0.property.set_margins(m); self diff --git a/docx-wasm/test/__snapshots__/index.test.js.snap b/docx-wasm/test/__snapshots__/index.test.js.snap index d1a0f51..3162c02 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -797,6 +797,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -944,6 +945,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -3016,6 +3018,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -3118,6 +3121,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -3184,6 +3188,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -3286,6 +3291,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -5393,6 +5399,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -5495,6 +5502,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -5561,6 +5569,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -5663,6 +5672,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -5770,6 +5780,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8460,6 +8471,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8562,6 +8574,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8628,6 +8641,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8730,6 +8744,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8832,6 +8847,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -8934,6 +8950,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9036,6 +9053,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9138,6 +9156,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9240,6 +9259,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9342,6 +9362,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9444,6 +9465,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -9524,6 +9546,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10346,6 +10369,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10448,6 +10472,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10538,6 +10563,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10640,6 +10666,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10736,6 +10763,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -10815,6 +10843,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11363,6 +11392,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11465,6 +11495,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11531,6 +11562,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11633,6 +11665,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11735,6 +11768,7 @@ Object { }, "indent": null, "justification": "left", + "layout": null, "margins": Object { "bottom": 55, "left": 54, @@ -11995,6 +12029,36 @@ exports[`writer should write page size 3`] = ` " `; +exports[`writer should write table layout 1`] = ` +" + + + + + + +" +`; + +exports[`writer should write table layout 2`] = ` +" + + + + + + +Hello!! +" +`; + +exports[`writer should write table layout 3`] = ` +" + + +" +`; + exports[`writer should write text border 1`] = ` " diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index acf97c9..125b117 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -216,6 +216,21 @@ describe("writer", () => { } }); + test("should write table layout", () => { + const p = new w.Paragraph().addRun(new w.Run().addText("Hello!!")); + const table = new w.Table() + .addRow(new w.TableRow().addCell(new w.TableCell().addParagraph(p))) + .layout("fixed"); + const buffer = new w.Docx().addTable(table).build(); + const z = new Zip(Buffer.from(buffer)); + for (const e of z.getEntries()) { + if (e.entryName.match(/document.xml|numbering.xml/)) { + expect(z.readAsText(e)).toMatchSnapshot(); + } + } + writeFileSync("../output/table_layout.docx", buffer); + }); + test("should write text border", () => { const p = new w.Paragraph() .addRun(new w.Run().addText("Hello "))