From 154a61f3fc5fe3f391d485be19315d3e775c51bd Mon Sep 17 00:00:00 2001 From: bokuweb Date: Tue, 1 Nov 2022 15:10:06 +0900 Subject: [PATCH] feat: Support specVanish (#559) --- docx-core/src/documents/elements/mod.rs | 2 + .../src/documents/elements/run_property.rs | 8 + .../src/documents/elements/spec_vanish.rs | 35 + docx-core/src/reader/run_property.rs | 1 + docx-core/src/reader/xml_element.rs | 2 + docx-core/src/xml_builder/elements.rs | 1 + docx-wasm/js/json/run.ts | 1 + .../test/__snapshots__/index.test.js.snap | 12735 ++++++++++++++++ docx-wasm/test/index.test.js | 11 +- fixtures/spec_vanish/spec_vanish.docx | Bin 0 -> 45394 bytes 10 files changed, 12794 insertions(+), 2 deletions(-) create mode 100644 docx-core/src/documents/elements/spec_vanish.rs create mode 100644 fixtures/spec_vanish/spec_vanish.docx diff --git a/docx-core/src/documents/elements/mod.rs b/docx-core/src/documents/elements/mod.rs index fee7f6c..b3d83eb 100644 --- a/docx-core/src/documents/elements/mod.rs +++ b/docx-core/src/documents/elements/mod.rs @@ -106,6 +106,7 @@ mod text_direction; mod underline; mod v_align; mod vanish; +mod spec_vanish; mod vert_align; mod vertical_merge; mod wp_anchor; @@ -221,6 +222,7 @@ pub use text_direction::*; pub use underline::*; pub use v_align::*; pub use vanish::*; +pub use spec_vanish::*; pub use vert_align::*; pub use vertical_merge::*; pub use wp_anchor::*; diff --git a/docx-core/src/documents/elements/run_property.rs b/docx-core/src/documents/elements/run_property.rs index dfc941d..a10e4e0 100644 --- a/docx-core/src/documents/elements/run_property.rs +++ b/docx-core/src/documents/elements/run_property.rs @@ -33,6 +33,8 @@ pub struct RunProperty { #[serde(skip_serializing_if = "Option::is_none")] pub vanish: Option, #[serde(skip_serializing_if = "Option::is_none")] + pub spec_vanish: Option, + #[serde(skip_serializing_if = "Option::is_none")] pub character_spacing: Option, #[serde(skip_serializing_if = "Option::is_none")] pub fonts: Option, @@ -121,6 +123,11 @@ impl RunProperty { self } + pub fn spec_vanish(mut self) -> RunProperty { + self.spec_vanish = Some(SpecVanish::new()); + self + } + pub fn fonts(mut self, font: RunFonts) -> RunProperty { self.fonts = Some(font); self @@ -157,6 +164,7 @@ impl BuildXML for RunProperty { .add_optional_child(&self.highlight) .add_optional_child(&self.underline) .add_optional_child(&self.vanish) + .add_optional_child(&self.spec_vanish) .add_optional_child(&self.fonts) .add_optional_child(&self.text_border) .add_optional_child(&self.ins) diff --git a/docx-core/src/documents/elements/spec_vanish.rs b/docx-core/src/documents/elements/spec_vanish.rs new file mode 100644 index 0000000..b262eb8 --- /dev/null +++ b/docx-core/src/documents/elements/spec_vanish.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize, Serializer}; + +use crate::documents::BuildXML; +use crate::xml_builder::*; + +#[derive(Debug, Clone, Deserialize, PartialEq)] +pub struct SpecVanish {} + +impl SpecVanish { + pub fn new() -> SpecVanish { + SpecVanish {} + } +} + +impl Default for SpecVanish { + fn default() -> Self { + SpecVanish {} + } +} + +impl BuildXML for SpecVanish { + fn build(&self) -> Vec { + let b = XMLBuilder::new(); + b.spec_vanish().build() + } +} + +impl Serialize for SpecVanish { + fn serialize(&self, serializer: S) -> Result + where + S: Serializer, + { + serializer.serialize_bool(true) + } +} diff --git a/docx-core/src/reader/run_property.rs b/docx-core/src/reader/run_property.rs index df8af7b..c0c741e 100644 --- a/docx-core/src/reader/run_property.rs +++ b/docx-core/src/reader/run_property.rs @@ -107,6 +107,7 @@ impl ElementReader for RunProperty { rp = rp.italic(); } XMLElement::Vanish => rp = rp.vanish(), + XMLElement::SpecVanish => rp = rp.spec_vanish(), XMLElement::TextBorder => { if let Ok(attr) = read_border(&attributes) { let mut border = TextBorder::new() diff --git a/docx-core/src/reader/xml_element.rs b/docx-core/src/reader/xml_element.rs index bf6ee5d..dfa75c7 100644 --- a/docx-core/src/reader/xml_element.rs +++ b/docx-core/src/reader/xml_element.rs @@ -20,6 +20,7 @@ pub enum XMLElement { SizeCs, Spacing, Vanish, + SpecVanish, TextBorder, Italic, ItalicCs, @@ -256,6 +257,7 @@ impl FromStr for XMLElement { "i" => Ok(XMLElement::Italic), "iCs" => Ok(XMLElement::ItalicCs), "vanish" => Ok(XMLElement::Vanish), + "specVanish" => Ok(XMLElement::SpecVanish), "italic" => Ok(XMLElement::Italic), "name" => Ok(XMLElement::Name), "tab" => Ok(XMLElement::Tab), diff --git a/docx-core/src/xml_builder/elements.rs b/docx-core/src/xml_builder/elements.rs index bfdb6c6..3538151 100644 --- a/docx-core/src/xml_builder/elements.rs +++ b/docx-core/src/xml_builder/elements.rs @@ -410,6 +410,7 @@ impl XMLBuilder { closed_with_str!(level_justification, "w:lvlJc"); closed_with_str!(abstract_num_id, "w:abstractNumId"); closed!(vanish, "w:vanish"); + closed!(spec_vanish, "w:specVanish"); open!(open_drawing, "w:drawing"); open!(open_anchor, "wp:anchor"); diff --git a/docx-wasm/js/json/run.ts b/docx-wasm/js/json/run.ts index 6f7606f..5d8837d 100644 --- a/docx-wasm/js/json/run.ts +++ b/docx-wasm/js/json/run.ts @@ -40,6 +40,7 @@ export type RunPropertyJSON = { italic?: boolean | null; italicCs?: boolean | null; vanish?: boolean | null; + specVanish?: boolean | null; spacing?: number | null; textBorder?: TextBorderJSON | null; ins?: InsertJSONData | null; diff --git a/docx-wasm/test/__snapshots__/index.test.js.snap b/docx-wasm/test/__snapshots__/index.test.js.snap index 32ac1ed..9c9dcb2 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -21561,6 +21561,7 @@ Object { }, "italic": false, "italicCs": false, + "specVanish": true, "strike": false, "underline": "none", "vanish": true, @@ -21632,6 +21633,7 @@ Object { "characterSpacing": 0, "italic": false, "italicCs": false, + "specVanish": true, "strike": false, "underline": "none", "vanish": true, @@ -87207,6 +87209,12739 @@ Object { } `; +exports[`reader should read specVanish 1`] = ` +Object { + "comments": Object { + "comments": Array [], + }, + "commentsExtended": Object { + "children": Array [], + }, + "contentType": Object { + "custom_xml_count": 1, + "footer_count": 2, + "header_count": 2, + "types": Object { + "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", + "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", + "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", + "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", + "/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml", + "/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml", + "/word/footer1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml", + "/word/footer2.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml", + "/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml", + "/word/header2.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml", + "/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml", + "/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml", + "/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml", + }, + "web_extension_count": 1, + }, + "customItemProps": Array [], + "customItemRels": Array [], + "customItems": Array [], + "docProps": Object { + "app": Object {}, + "core": Object { + "config": Object { + "created": null, + "creator": null, + "description": null, + "language": null, + "lastModifiedBy": null, + "modified": null, + "revision": null, + "subject": null, + "title": null, + }, + }, + "custom": Object { + "properties": Object { + "DOCXDOCID": "Block DocID", + }, + }, + }, + "document": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "03717F66", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "343116B1", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "5A404556", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "6EB0E78E", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "13B02155", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "66FB7F56", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "5950EEB1", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "10E1DE16", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "BYLAWS", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " OF", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "4411A70B", + "property": Object { + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "style": "CenterTextBold", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "[", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "INSERT US SUB NAME", + }, + "type": "text", + }, + ], + "runProperty": Object { + "highlight": "yellow", + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "]", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "74421B8C", + "property": Object { + "runProperty": Object {}, + "style": "CenterTextBold", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "alias": null, + "dataBinding": null, + "runProperty": Object {}, + }, + }, + "type": "structuredDataTag", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "2727BFCC", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Adopted ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "_____", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "__________", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "___", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "20", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "21", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "3AF5CB5A", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "02871829", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "13B695EB", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "sectionProperty": Object { + "columns": 1, + "docGrid": Object { + "charSpace": null, + "gridType": "default", + "linePitch": 326, + }, + "firstFooterReference": Object { + "footerType": "first", + "id": "rId10", + }, + "footerReference": Object { + "footerType": "default", + "id": "rId9", + }, + "headerReference": Object { + "headerType": "default", + "id": "rId8", + }, + "pageMargin": Object { + "bottom": 1440, + "footer": 1080, + "gutter": 0, + "header": 1440, + "left": 1440, + "right": 1440, + "top": 1440, + }, + "pageSize": Object { + "h": 15840, + "orient": null, + "w": 12240, + }, + "space": 425, + "textDirection": "lrTb", + "titlePg": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 0, + "name": "_Toc511045564", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "BYLAWS", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "3C46632B", + "property": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 1, + "name": "_Toc56436101", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "MEETINGS OF STOCKHOLDERS", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 0, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 1, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "73574AC6", + "property": Object { + "runProperty": Object {}, + "style": "Heading1", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 2, + "name": "_Toc511045565", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 3, + "name": "_Toc56436102", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Place of Meetings", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 2, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 3, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "7E3BCA47", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  Meetings of stockholders of ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "[", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Insert US Sub Name", + }, + "type": "text", + }, + ], + "runProperty": Object { + "highlight": "yellow", + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "]", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "(the “", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Company", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "”) shall be held at ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "a ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "place, ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "if any, ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "within or outside the State of Delaware, determined by the Company’s board of directors (the “", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Board", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "”). The Board may, in its sole discretion, determine that a meeting of stockholders shall not be held at any place, but may ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "instead", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " be held solely by means of remote communication as authorized by Section 211(a)(2) of the Delaware General Corporation Law (the “", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "DGCL", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "”). In the absence of any such designation or determination, stockholders’ meetings shall be held at the Company’s principal executive office.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "The Board may cancel, postpone, or reschedule any previously scheduled meeting of stockholders at any time, before or after the notice for such meeting has been given to the stockholders.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "05FAC377", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 4, + "name": "_Toc511045566", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 5, + "name": "_Ref104634833", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 6, + "name": "_Toc56436103", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Annual Meeting", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 4, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 5, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 6, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "0CBFAF4E", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  Unless directors are elected by written consent in lieu of an annual meeting as permitted by ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Section 211(b", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ") of the DGCL, a", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "n annual meeting of stockholders shall be held for the election of directors at such date and time as may be designated by resolution of the Board from time to time. ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Stockholders may, unless the certificate of incorporation otherwise provides, act by written consent to elect directors; ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided, however,", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " that, if such ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "consent", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " is less than unanimous, such action by written consent may be in lieu of holding an annual meeting only if all of the directorships to which directors could be elected at an annual meeting held at the effective time of such action are vacant and are filled by such action. Any other proper business may be transacted at the annual meeting.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "4E15B6C1", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 7, + "name": "_Toc511045567", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 8, + "name": "_Ref519419004", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 9, + "name": "_Toc56436104", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Special Meeting", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 7, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 8, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 9, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "706B5A04", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  A special meeting of the stockholders may be called at any time by the Board, Chairperson of the Board, Chief Executive Officer or President (in the absence of a Chief Executive Officer)", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "4C92ECDF", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "If a special meeting of the stockholders has been called, the Company", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "shall cause notice to be given to the stockholders entitled to vote at such meeting, in accordance with these bylaws, that a meeting will be held at the time requested by the person or persons calling the meeting. No business may be transacted at such special meeting other than the business specified in such notice to stockholders. Nothing contained in this paragraph of this ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref519419004 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.3", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " shall be construed as limiting, fixing, or affecting the time when a meeting of stockholders called by action of the Board may be held", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " or the business that may be transacted at such meeting", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "3B9606FF", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 10, + "name": "_Toc56436105", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 11, + "name": "_Toc511045568", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 12, + "name": "_Ref519418984", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Notice of Stockholders’ Meetings", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 10, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "4EFE88B8", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 11, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 12, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "  Whenever stockholders are required or permitted to take any action at a meeting, a notice of the meeting ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "in the form of a wri", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ting or electronic transmission (as defined in ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Section", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref11843605 \\\\r \\\\h ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "7.1", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws) ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "shall be given which shall state the place, if any, date and hour of the meeting, the means of remote communications, if any, by which stockholders and proxy holders may be deemed to be present in person and vote at such meeting, the record date for determining the stockholders entitled to vote at the meeting, if such date is different from the record date for determining stockholders entitled to notice of the meeting, and, in the case of a special meeting, the purpose or purposes for which the meeting is called. Except as otherwise provided in the DGCL, the certificate of incorporation or these bylaws, the notice of any meeting of ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "stockholders", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " shall be given not less than 10 nor more than 60 days before the date of the meeting to each stockholder entitled to vote at such meeting as of the record date for determining the stockholders entitled to notice of the meeting.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "14701513", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 13, + "name": "_Toc56436106", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 14, + "name": "_Toc511045570", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Quorum", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 13, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "15CFE95E", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ". ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 14, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " Except as otherwise provided by law, the certificate of incorporation or these bylaws, at each meeting of stockholders the ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "presence", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " in person or by proxy of the holders of shares of stock ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "having a majority of the votes which could be cast by the holders of all outstanding shares of stock entitled to vote at the meeting shall be necessary and sufficient to constitute a quorum. Where a separate vote by a class or series or classes or series is required, a majority of the outstanding shares of such class or series or classes or series, present in person or represented by proxy, shall constitute a quorum entitled to take action with respect to that vote on that matter, except as otherwise provided by law, the certificate of incorporation or these bylaws.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "37E7B2EF", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "If, however, such quorum is not present or represented at any meeting of the stockholders, then either (i) the chairperson of the meeting, or (ii) the stockholders entitled to vote at the meeting, present in person or represented by proxy, shall have the power to adjourn the meeting from time to time, in the manner provided in ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Section", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref83462018 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.6", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", until a quorum is present or represe", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "nted.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "4EC84527", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 15, + "name": "_Toc511045571", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 16, + "name": "_Ref83462018", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 17, + "name": "_Toc56436107", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Adjourned Meeting; Notice", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 15, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 16, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 17, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "64386B8D", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  Any meeting of stockholders, annual or special, may adjourn from time to time to reconvene at the same or some other place, and notice need not be given of the adjourned meeting if the time, place, if any, thereof, and the means of remote communications, if any, by which stockholders and proxy holders may be deemed to be present in person and vote at such adjourned meeting are ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "announced", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " at the meeting at which the adjournment is taken. At the adjourned meeting, the Company may transact any business which might have been transacted at the original meeting. If the adjournment is for more than 30 days, a notice of the adjourned meeting shall be given to each stockholder of record entitled to vote at the meeting. If after the adjournment a new record date for stockholders entitled to vote is fixed for the adjourned meeting, the Board shall fix a new record date for notice of such adjourned meeting in accordance with Section 213(a) of the DGCL and ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref237060849 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.10", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws, and shall give notice of the adjourned meeting to each stockholder of record entitled to vote at such adjourned meeting as of the record date fixed for notice of such adjourned meeting.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "6986E8FB", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 18, + "name": "_Toc56436108", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 19, + "name": "_Toc511045572", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Conduct of Business", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 18, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "6382E719", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 19, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "  Meetings of stockholders shall be presided over by the Chairperson of the Board, if any, or in his or her absence by the Vice Chairperson of the Board, if any, or in the absence of the foregoing persons by the Chief Executive Officer, or in the absence of the foregoing persons by the President, or in the absence of the foregoing persons by a Vice President, or in the absence of the foregoing persons by a chairperson designated by the Board, or in the absence of such designation by a chairperson chosen at the meeting. The Secretary shall act as secretary of the meeting, but in his or her absence the chairperson of the meeting may appoint any person to act as secretary of the meeting. The chairperson of any meeting of stockholders shall determine the order of business and the procedure at the meeting, including such regulation of ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "the", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " manner of voting and the conduct of business", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", and shall have the power to adjourn the meeting to another place, if any, date or time, whether or not a quorum is present", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "0A296DDA", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 20, + "name": "_Toc56436109", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 21, + "name": "_Toc511045573", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Voting", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 20, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "2FE892FC", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 21, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "  The stockholders entitled to vote at any meeting of stockholders shall be determined in accordance with the ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provisions", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref520773517 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.10", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws, subject to Section 217 (relating to voting rights of fiduciaries, pledgors and joint owners of stock) and Section 218 (relating to voting trusts and other voting agreements) of the DGCL.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "17566D06", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Except as may be otherwise provided in the certificate of incorporation, each stockholder entitled to vote at any meeting of stockholders shall be entitled to one vote for each share of capital stock held by such stockholder ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "as of the applicable record date ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "which has voting power upon the matter in question. Voting at meetings of stockholders need not be by written ballot and, unless otherwise required by law, need not be conducted by inspectors of election unless so determined by the holders of shares of stock having a majority of the votes which could be cast by the holders of all outstanding shares of stock entitled to vote thereon which are present in person or by proxy at such meeting. If authorized by the Board, such requirement of a written ballot shall be satisfied by a ballot submitted by electronic transmission, ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "that any such electronic transmission must either set forth or be submitted with information from which it can be determined that the electronic transmission was authorized by the stockholder or proxy holder.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "69A144F0", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Except as otherwise required by law, the certificate of incorporation or these bylaws, in all matters other than the election of directors, the affirmative vote of a majority of the voting power of the shares present in person or represented by proxy at the meeting and entitled to vote on the subject matter shall be the act of the stockholders. Except as otherwise required by law, the certificate of incorporation or these bylaws, directors shall be elected by a plurality of the voting power of the shares present in person or represented by proxy at the meeting and entitled to vote on the election of directors. Where a separate vote by a class or series or classes or series is required, in all matters other than the election of directors, the affirmative vote of the majority of shares of such class or series or classes or series present in person or represented by proxy at the meeting ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "and entitled to vote on the subject matter ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "shall be the act of such class or series or classes or series, except as otherwise provided by law, the certificate of incorporation or these bylaws.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "6ADE8925", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 22, + "name": "_Toc511045574", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 23, + "name": "_Ref104634855", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 24, + "name": "_Ref394069908", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 25, + "name": "_Ref12360794", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 26, + "name": "_Ref12360825", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 27, + "name": "_Toc56436110", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Stockholder Action by Written Consent Without a Meeting", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 22, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 23, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 24, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 25, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 26, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 27, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "085B8C6A", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  Unless otherwise provided in the certificate of incorporation, any action required by the DGCL to be taken at any annual or special meeting of stockholders of a corporation, or any action which may be taken at any annual or special meeting of such stockholders, may be taken without ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "a meeting, without prior notice", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " and without a vote, if a consent or consents in writing, setting forth the action so taken, shall be signed by the holders of outstanding stock having not less than the minimum number of votes that would be necessary to authorize or take such action at a meeting at which all shares entitled to vote thereon were present and voted.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "1B1AEA6F", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "N", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "eastAsia": "Calibri", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "o written consent shall be effective to take the corporate action referred to therein unless written consents signed by a sufficient number of holders to take action are delivered to the Company", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "eastAsia": "Calibri", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " in the manner required by Section 228 of the DGCL within 60 days of the first date on which a written consent is so delivered to the Company", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "eastAsia": "Calibri", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ". Any person executing a consent may provide, whether through instruction to an agent or otherwise, that such a consent will be effective at a future time (including a time determined upon the happening of an event), no later than 60 days after such instruction is given or such provision is made, if evidence of such instruction or provision is provided to the Company. Unless otherwise provided, any such consent shall be revocable prior to its becoming effective.", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "eastAsia": "Calibri", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "72A067D5", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "An electronic transmission consenting to an action to be taken and transmitted by a stockholder or proxy holder, or by a person or persons authorized to act for a stockholder or proxy holder", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", shall be deemed to be written and", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " signed for purposes of this ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref12360794 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.9", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " that any such electronic transmission sets forth or is delivered with information from which the Company can determine (i) that the electronic transmission was transmitted by the stockholder or proxy holder or by a person or persons authorized to act for the stockholder or proxy holder and (ii) the date on which such stockholder or proxy holder or authorized person or persons transmitted such electronic transmission.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "0EBC4979", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "A consent given by electronic transmission is delivered to the Company upon the earliest of (i) when the consent enters an information processing system, if any, designated by the Company for receiving consents, so long as the electronic transmission is in a form capable of being processed by that system and the Company is able to retrieve that electronic transmission; (ii) when a paper reproduction of the consent is delivered to the Company’s principal place of business or an officer or agent of the Company having custody of the book in which proceedings of meetings of stockholders are recorded; (iii) when a paper reproduction of the consent is delivered to the Company’s registered office in the State of Delaware by hand or by certified or registered mail, return receipt requested; or (iv) when delivered in such other manner, if any, provided by resolution of the Board. A consent given by electronic transmission is delivered under this ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref12360825 \\\\r \\\\h \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.9", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " even if no person is aware of its receipt. Receipt of an electronic acknowledgement ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "from an information processing system establishes that a consent given by electronic transmission was received but, by itself, does not establish that the content sent corresponds to the content received.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "685B5A6E", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "In the event that the Board shall have instructed the officers of the Company to solicit the vote or written consent of the stockholders of the Company, an electronic transmission of a stockholder written consent given pursuant to such solicitation", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ", to be effective,", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "must", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " be delivered ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "by electronic mail ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "(as defined in ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref11843640 \\\\r \\\\h ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "7.1", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ")", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "or facsimile telecommunications ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "to the Secretary or the President of the Company", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " or", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " to a person designated by the ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Company for receiving such consent, or ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "delivered ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "to an information processing system designated by the Company for receiving such consent", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "13A92600", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Prompt notice of the taking of the corporate action without a meeting by less than unanimous written consent shall be given to those stockholders who have not consented in writing and who, if the action had been taken at a meeting, would have been entitled to notice of the meeting if the record date for notice of such meeting had been the date that written consents signed by a sufficient number of holders to take the action were delivered to the Company as provided in Section 228 of the DGCL. In the event that the action which is consented to is such as would have required the filing of a certificate under any provision of the DGCL, if such action had been voted on by stockholders at a meeting thereof, the certificate filed under such provision shall state, in lieu of any statement required by such provision concerning any vote of stockholders, that written consent has been given in accordance with Section 228 of the DGCL.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "5B238106", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 28, + "name": "_Toc511045575", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 29, + "name": "_Ref520773517", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 30, + "name": "_Ref236817545", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 31, + "name": "_Ref237060849", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 32, + "name": "_Toc56436111", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Record Date", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 28, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 29, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 30, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "s", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 31, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 32, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "3B268132", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  In order that the Company may determine the stockholders entitled to notice of any meeting of stockholders or any adjournment thereof, the Board may fix a record date, which record date shall not precede the date upon which the resolution fixing the record date is adopted by the Board and which record date shall not be more than 60 nor less than 10 days before the date of such meeting. If the Board so fixes a date, such date shall also be the record date for determining the stockholders entitled to vote at such meeting unless the Board determines, at the time it fixes such record date, that a later date on or before the date of the meeting shall be the date for making such determination.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "01ABCC53", + "property": Object { + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "If no record date is fixed by the Board, the record date for determining stockholders entitled to notice of and to vote at a meeting of stockholders shall be at the close of business on the day next preceding the day on which notice is given, or, if notice is waived, at the close of business on the day next preceding the day on which the meeting is held.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "36CA31D8", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "A determination of stockholders of record entitled to notice of or to vote at a meeting of stockholders shall apply to any adjournment of the meeting; ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided, however,", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " that the Board may fix a new record date for determination of stockholders entitled to vote at the adjourned meeting, and in such case shall also fix as the record date for stockholders entitled to notice of such adjourned meeting the same or an earlier date as that fixed for determination of stockholders entitled to vote in accordance with the provisions of Section 213 of the DGCL and this ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref236817545 \\\\r \\\\h ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "1.10", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " at the adjourned meeting.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "05E6ECF6", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "In order that the Company may determine the stockholders entitled to consent to corporate action in writing without a meeting, the Board may fix a record date, which record date shall not precede the date upon which the resolution fixing the record date is adopted by the Board, and which date shall not be more than 10 days after the date upon which the resolution fixing the record date is adopted by the Board. If no record date has been fixed by the Board, the record date for determining stockholders entitled to consent to corporate action in writing without a meeting, when no prior action by the Board is required by law, shall be the first date on which a signed written consent setting forth the action taken or proposed to be taken is delivered to the Company in accordance with applicable law. If no record date has been fixed by the Board and prior action by the Board is required by law, the record date for determining stockholders entitled to ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "consent to corporate action in writing without a meeting shall be at the close of business on the day on which the Board adopts the resolution taking such prior action.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "071D5A69", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "In order that the Company may determine the stockholders entitled to receive payment of any dividend or other distribution or allotment of any rights or the stockholders entitled to exercise any rights in respect of any change, conversion or exchange of stock, or for the purpose of any other lawful action, the Board may fix a record date, which record date shall not precede the date upon which the resolution fixing the record date is adopted, and which record date shall be not more than 60 days prior to such action. If no record date is fixed, the record date for determining stockholders for any such purpose shall be at the close of business on the day on which the Board adopts the resolution relating thereto.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "0C2214BC", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 33, + "name": "_Toc511045576", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 34, + "name": "_Ref519419070", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 35, + "name": "_Toc56436112", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Proxies", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 33, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 34, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 35, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "4F3727F7", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".  Each stockholder entitled to vote at a meeting of stockholders or to express consent or dissent to corporate action in writing without a meeting may authorize another person or persons to act for such stockholder by proxy authorized by ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "a document", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "(as defined in ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "S", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ection ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " REF _Ref11843605 \\\\r \\\\h ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " \\\\* MERGEFORMAT ", + "type": "instrTextString", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "7.1", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of these bylaws) ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "or by ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "an electronic ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "transmission", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "permitted by law filed in accordance with the procedure established for the meeting, but no such proxy shall be voted or acted upon ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "after", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " three years from its date, unless the proxy provides for a longer period. The revocability of a proxy that states on its face that it is irrevocable shall be governed by the provisions of Section 212 of the DGCL.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "28C53085", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 36, + "name": "_Toc56436113", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 37, + "name": "_Toc511045577", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "List of Stockholders Entitled to Vote", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": true, + "boldCs": true, + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 36, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": false, + "id": "30B7C9BA", + "property": Object { + "alignment": "both", + "runProperty": Object { + "specVanish": true, + "vanish": true, + }, + "style": "Heading2", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": ".", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "id": 37, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "  ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "T", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "he Company shall prepare, at least ten days before every meeting of stockholders, a complete list of the stockholders entitled to vote at the meeting; ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided, however,", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " if the record date for determining the stockholders entitled to vote is less than 10 days before the meeting date, the list shall reflect the stockholders entitled to vote as of the tenth day before the meeting date, arranged in alphabetical order, and showing the address of each stockholder and the number of shares registered in the name of each stockholder. The Company shall not be required to include electronic mail addresses or other electronic contact information on such list. Such list shall be open to the examination of any stockholder for any purpose germane to the meeting for a period of at least ten days prior to the meeting: (i) on a reasonably accessible electronic network, ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "provided", + }, + "type": "text", + }, + ], + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " that the information required to gain access to such list is provided with the notice of the meeting, or (ii) during ordinary business hours, at the Company’s principal place of business. In the event that the Company determines to make the list available on an electronic network, the Company may take reasonable steps to ensure that such information is available only to stockholders of the Company. If the meeting is to be held at a place, then ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "a list of stockholders entitled to vote at the meeting", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " shall be produced and kept at the time and place of the meeting during the whole time thereof, and may be examined by any stockholder who is present. If the meeting is to be held solely by means of remote communication, then ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "such", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " list shall also be open to the examination of any stockholder during the whole time of the meeting on a reasonably accessible electronic network, and the information required to access such list shall be provided ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "with the notice of the meeting.", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "16BDD851", + "property": Object { + "runProperty": Object {}, + "style": "BodyText", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "sectionProperty": Object { + "columns": 1, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "firstFooter": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "35EBA1B6", + "property": Object { + "runProperty": Object {}, + "style": "Footer", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "firstFooterReference": Object { + "footerType": "first", + "id": "rId14", + }, + "firstHeader": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "7E13A7D4", + "property": Object { + "runProperty": Object {}, + "style": "Header", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "firstHeaderReference": Object { + "headerType": "first", + "id": "rId13", + }, + "footer": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "- ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": " PAGE ", + "type": "instrTextString", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "4", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "fieldCharType": "end", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " -", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "411BA123", + "property": Object { + "alignment": "center", + "runProperty": Object {}, + "style": "Footer", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "footerReference": Object { + "footerType": "default", + "id": "rId12", + }, + "header": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "4705FF9A", + "property": Object { + "alignment": "left", + "runProperty": Object {}, + "style": "Header", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "headerReference": Object { + "headerType": "default", + "id": "rId11", + }, + "pageMargin": Object { + "bottom": 1440, + "footer": 1080, + "gutter": 0, + "header": 1440, + "left": 1440, + "right": 1440, + "top": 1440, + }, + "pageSize": Object { + "h": 15840, + "orient": null, + "w": 12240, + }, + "space": 425, + "textDirection": "lrTb", + "titlePg": true, + }, + }, + "documentRels": Object { + "customXmlCount": 0, + "footerCount": 2, + "hasComments": false, + "hasNumberings": false, + "headerCount": 2, + "hyperlinks": Array [], + "images": Array [], + }, + "fontTable": Object {}, + "hyperlinks": Array [], + "images": Array [], + "media": Array [], + "numberings": Object { + "abstractNums": Array [ + Object { + "id": 0, + "levels": Array [ + Object { + "format": "upperRoman", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading1", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "nothing", + "text": "ARTICLE %1 — ", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 720, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading2", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "hint": "default", + }, + "italic": false, + "italicCs": false, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "lowerRoman", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 1440, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading3", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2160, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading4", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "lowerRoman", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2880, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 3600, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading6", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%6)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 4680, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading7", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%7)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 5040, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading8", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%8)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 144, + }, + "start": 1584, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Heading9", + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 1, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 720, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Def2Heading1", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 1440, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Def2Heading2", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2520, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Def2Heading5", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2880, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 3600, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Def2Heading5", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%5)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 4680, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%6)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 5040, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%7)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 5760, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3240, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 2, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 720, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "ExAHeading1", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 1440, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "ExAHeading2", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2520, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "ExAHeading5", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2880, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "none", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 3600, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "ExAHeading5", + "runProperty": Object { + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "a)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 3960, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%6)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 4680, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 5040, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8)", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 144, + }, + "start": 1584, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 3, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 720, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Style1", + "runProperty": Object { + "fonts": Object { + "ascii": "Symbol", + "hiAnsi": "Symbol", + "hint": "default", + }, + "sz": 18, + "szCs": 18, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 4, + "levels": Array [ + Object { + "format": "lowerRoman", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 1296, + }, + "start": 144, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "i", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + ], + "numberings": Array [ + Object { + "abstractNumId": 1, + "id": 1, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 2, + "id": 2, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 3, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 4, + "id": 4, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 3, + "id": 5, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 6, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 0, + "id": 7, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 0, + "id": 8, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 7, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 4, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 4, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + ], + }, + "rels": Object { + "rels": Array [ + Array [ + "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties", + "rId1", + "docProps/core.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties", + "rId2", + "docProps/app.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument", + "rId3", + "word/document.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], + ], + }, + "settings": Object { + "adjustLineHeightInTable": false, + "defaultTabStop": 720, + "docId": null, + "docVars": Array [ + Object { + "name": "FieldRemovalRan", + "val": "Yes", + }, + ], + "evenAndOddHeaders": false, + "zoom": 100, + }, + "styles": Object { + "docDefaults": Object { + "runPropertyDefault": Object { + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "eastAsia": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + }, + }, + }, + "styles": Array [ + Object { + "basedOn": null, + "name": "Normal", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 720, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 240, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 22, + "szCs": 22, + }, + "styleId": "Normal", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 1", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "keepLines": true, + "keepNext": true, + "lineSpacing": Object { + "before": 480, + }, + "numberingProperty": Object { + "id": 3, + "level": null, + }, + "outlineLvl": 0, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Times New Roman Bold", + "hiAnsi": "Times New Roman Bold", + }, + }, + "styleId": "Heading1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 2", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "keepLines": true, + "keepNext": true, + "numberingProperty": Object { + "id": 3, + "level": 1, + }, + "outlineLvl": 1, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 3", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 3, + "level": 2, + }, + "outlineLvl": 2, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 4", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 3, + "level": 3, + }, + "outlineLvl": 3, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "outlineLvl": 4, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 6", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 3, + "level": 5, + }, + "outlineLvl": 5, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 7", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 3, + "level": 6, + }, + "outlineLvl": 6, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 8", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 3, + "level": 7, + }, + "outlineLvl": 7, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Heading8", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "heading 9", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 60, + }, + "numberingProperty": Object { + "id": 3, + "level": 8, + }, + "outlineLvl": 8, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Arial", + "hiAnsi": "Arial", + }, + "italic": true, + "italicCs": true, + "sz": 18, + "szCs": 18, + }, + "styleId": "Heading9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Default Paragraph Font", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "DefaultParagraphFont", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Normal Table", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableNormal", + "styleType": "table", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": null, + "insideH": null, + "insideV": null, + "left": null, + "right": null, + "top": null, + }, + "justification": "left", + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "dxa", + }, + "left": Object { + "val": 108, + "widthType": "dxa", + }, + "right": Object { + "val": 108, + "widthType": "dxa", + }, + "top": Object { + "val": 0, + "widthType": "dxa", + }, + }, + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "No List", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "NoList", + "styleType": "numbering", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "header", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Header", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "footer", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Footer", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 1", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 720, + }, + "start": 720, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "after": 120, + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 2", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 720, + }, + "start": 1440, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "page number", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "PageNumber", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Center Text", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "CenterText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "footnote text", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 360, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FootnoteText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "endnote text", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 360, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 20, + "szCs": 20, + }, + "styleId": "EndnoteText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "footnote reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + "vertAlign": "superscript", + }, + "styleId": "FootnoteReference", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "envelope address", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 2880, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "EnvelopeAddress", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "CenterText", + "name": "Center Text Bold", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "CenterTextBold", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "CenterText", + "name": "Center Text Bold/Und", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "underline": "single", + }, + "styleId": "CenterTextBoldUnd", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Def2 Heading 1", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 1, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Def2Heading1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Def2 Heading 2", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 1, + "level": 1, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Def2Heading2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Def2 Heading 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2520, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Def2Heading3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Def2 Heading 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2880, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Def2Heading4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Def2 Heading 5", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 1, + "level": 4, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Def2Heading5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "ExA Heading 1", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 2, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ExAHeading1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "ExA Heading 2", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 2, + "level": 1, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ExAHeading2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "ExA Heading 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2520, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ExAHeading3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "ExA Heading 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 2880, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ExAHeading4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "ExA Heading 5", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 2, + "level": 4, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ExAHeading5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Flush Right", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FlushRight", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Signature Line", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "SignatureLine", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Signature Line 2-col", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "SignatureLine2-col", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Table Style", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableStyle", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "annotation reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 16, + "szCs": 16, + }, + "styleId": "CommentReference", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "envelope return", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "EnvelopeReturn", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "annotation text", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 20, + "szCs": 20, + }, + "styleId": "CommentText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 720, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 6", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 7", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 8", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC8", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "toc 9", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1920, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TOC9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Label", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Label", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Signature", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 4320, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Signature", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Body Text Indent", + "next": null, + "paragraphProperty": Object { + "keepLines": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "BodyTextIndent", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Body Text Indent 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 28, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "BodyTextIndent2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Body Text Indent 3", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "BodyTextIndent3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "endnote reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "vertAlign": "superscript", + }, + "styleId": "EndnoteReference", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "(i)", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 4, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "i", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Style1", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 5, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Style1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "CommentText", + "name": "annotation subject", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "CommentSubject", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Char", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "after": 160, + "before": 0, + "line": 240, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Verdana", + "cs": "Verdana", + "hiAnsi": "Verdana", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "Char", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Body Text", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "BodyText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "section-para", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "after": 100, + "before": 100, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "section-para", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Normal", + "name": "Balloon Text", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Tahoma", + "cs": "Tahoma", + "hiAnsi": "Tahoma", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "BalloonText", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Balloon Text Char", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Tahoma", + "cs": "Tahoma", + "hiAnsi": "Tahoma", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "BalloonTextChar", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "DefaultParagraphFont", + "name": "Placeholder Text", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "808080", + }, + "styleId": "PlaceholderText", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "DefaultParagraphFont", + "name": "Heading 2 Char", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 22, + "szCs": 22, + }, + "styleId": "Heading2Char", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + ], + }, + "taskpanes": null, + "taskpanesRels": Object { + "rels": Array [], + }, + "themes": Array [ + Object { + "fontSchema": Object { + "majorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游ゴシック Light", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线 Light", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Times New Roman", + }, + Object { + "script": "Hebr", + "typeface": "Times New Roman", + }, + Object { + "script": "Thai", + "typeface": "Angsana New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "MoolBoran", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Times New Roman", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "Calibri Light", + }, + "minorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游明朝", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Arial", + }, + Object { + "script": "Hebr", + "typeface": "Arial", + }, + Object { + "script": "Thai", + "typeface": "Cordia New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "DaunPenh", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Arial", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "Calibri", + }, + }, + }, + ], + "webExtensions": Array [], + "webSettings": Object { + "divs": Array [ + Object { + "divsChild": Array [], + "id": "930162107", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1118259637", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1886748407", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + }, +} +`; + exports[`reader should read strike docx 1`] = ` Object { "comments": Object { diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index f48191a..55a1492 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -166,7 +166,9 @@ describe("reader", () => { }); test("should read sectionProperty in ppr", () => { - const buffer = readFileSync("../fixtures/section_property_in_ppr/section_property_in_ppr.docx"); + const buffer = readFileSync( + "../fixtures/section_property_in_ppr/section_property_in_ppr.docx" + ); const json = w.readDocx(buffer); expect(json).toMatchSnapshot(); }); @@ -176,6 +178,12 @@ describe("reader", () => { const json = w.readDocx(buffer); expect(json).toMatchSnapshot(); }); + + test("should read specVanish", () => { + const buffer = readFileSync("../fixtures/spec_vanish/spec_vanish.docx"); + const json = w.readDocx(buffer); + expect(json).toMatchSnapshot(); + }); }); describe("writer", () => { @@ -202,7 +210,6 @@ describe("writer", () => { } } writeFileSync("../output/js/align.docx", buffer); - }); test("should write strike", () => { diff --git a/fixtures/spec_vanish/spec_vanish.docx b/fixtures/spec_vanish/spec_vanish.docx new file mode 100644 index 0000000000000000000000000000000000000000..0ffdfdf8a7f81af5688df63aeb557fb61b9b6b8d GIT binary patch literal 45394 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 literal 0 HcmV?d00001