fix: Table property
parent
7153db3ed8
commit
f0b33fa19b
|
@ -38,7 +38,7 @@ mod tests {
|
||||||
let b = Table::new(vec![TableRow::new(vec![])]).build();
|
let b = Table::new(vec![TableRow::new(vec![])]).build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tbl><w:tblPr><w:tblW w:w="9638" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
|
r#"<w:tbl><w:tblPr><w:tblW w:w="0" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
|
||||||
<w:top w:w="55" w:type="dxa" />
|
<w:top w:w="55" w:type="dxa" />
|
||||||
<w:left w:w="54" w:type="dxa" />
|
<w:left w:w="54" w:type="dxa" />
|
||||||
<w:bottom w:w="55" w:type="dxa" />
|
<w:bottom w:w="55" w:type="dxa" />
|
||||||
|
|
|
@ -96,9 +96,9 @@ impl Default for TableBorders {
|
||||||
top: Some(TableBorder::new(BorderPosition::Top)),
|
top: Some(TableBorder::new(BorderPosition::Top)),
|
||||||
left: Some(TableBorder::new(BorderPosition::Left)),
|
left: Some(TableBorder::new(BorderPosition::Left)),
|
||||||
bottom: Some(TableBorder::new(BorderPosition::Bottom)),
|
bottom: Some(TableBorder::new(BorderPosition::Bottom)),
|
||||||
right: None,
|
right: Some(TableBorder::new(BorderPosition::Right)),
|
||||||
inside_h: Some(TableBorder::new(BorderPosition::IndideH)),
|
inside_h: Some(TableBorder::new(BorderPosition::IndideH)),
|
||||||
inside_v: None,
|
inside_v: Some(TableBorder::new(BorderPosition::IndideV)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -161,7 +161,7 @@ mod tests {
|
||||||
let b = TableBorders::new().build();
|
let b = TableBorders::new().build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders>"#
|
r#"<w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ mod tests {
|
||||||
.build();
|
.build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tblBorders><w:left w:val="single" w:sz="2" w:space="0" w:color="AAAAAA" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders>"#
|
r#"<w:tblBorders><w:left w:val="single" w:sz="2" w:space="0" w:color="AAAAAA" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,10 +51,7 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cell() {
|
fn test_cell() {
|
||||||
let b = TableCell::new().build();
|
let b = TableCell::new().build();
|
||||||
assert_eq!(
|
assert_eq!(str::from_utf8(&b).unwrap(), r#"<w:tc><w:tcPr /></w:tc>"#);
|
||||||
str::from_utf8(&b).unwrap(),
|
|
||||||
r#"<w:tc><w:tcPr><w:tcBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tcBorders></w:tcPr></w:tc>"#
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -64,7 +61,7 @@ mod tests {
|
||||||
.build();
|
.build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tc><w:tcPr><w:tcBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tcBorders></w:tcPr><w:p><w:pPr><w:pStyle w:val="Normal" /><w:rPr /></w:pPr><w:r><w:rPr /><w:t xml:space="preserve">Hello</w:t></w:r></w:p></w:tc>"#
|
r#"<w:tc><w:tcPr /><w:p><w:pPr><w:pStyle w:val="Normal" /><w:rPr /></w:pPr><w:r><w:rPr /><w:t xml:space="preserve">Hello</w:t></w:r></w:p></w:tc>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,9 +84,9 @@ impl Default for TableCellBorders {
|
||||||
top: Some(TableCellBorder::new(BorderPosition::Top)),
|
top: Some(TableCellBorder::new(BorderPosition::Top)),
|
||||||
left: Some(TableCellBorder::new(BorderPosition::Left)),
|
left: Some(TableCellBorder::new(BorderPosition::Left)),
|
||||||
bottom: Some(TableCellBorder::new(BorderPosition::Bottom)),
|
bottom: Some(TableCellBorder::new(BorderPosition::Bottom)),
|
||||||
right: None,
|
right: Some(TableCellBorder::new(BorderPosition::Right)),
|
||||||
inside_h: Some(TableCellBorder::new(BorderPosition::IndideH)),
|
inside_h: Some(TableCellBorder::new(BorderPosition::IndideH)),
|
||||||
inside_v: None,
|
inside_v: Some(TableCellBorder::new(BorderPosition::IndideV)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -135,21 +135,3 @@ impl BuildXML for TableCellBorders {
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
|
|
||||||
use super::*;
|
|
||||||
#[cfg(test)]
|
|
||||||
use pretty_assertions::assert_eq;
|
|
||||||
use std::str;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_table_borders() {
|
|
||||||
let b = TableCellBorders::new().build();
|
|
||||||
assert_eq!(
|
|
||||||
str::from_utf8(&b).unwrap(),
|
|
||||||
r#"<w:tcBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tcBorders>"#
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,34 +1,34 @@
|
||||||
use super::TableCellBorders;
|
use super::{TableCellBorders, TableCellWidth};
|
||||||
use crate::documents::BuildXML;
|
use crate::documents::BuildXML;
|
||||||
// use crate::types::*;
|
use crate::types::*;
|
||||||
use crate::xml_builder::*;
|
use crate::xml_builder::*;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct TableCellProperty {
|
pub struct TableCellProperty {
|
||||||
// width: TableCellWidth,
|
width: Option<TableCellWidth>,
|
||||||
borders: TableCellBorders,
|
borders: Option<TableCellBorders>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TableCellProperty {
|
impl TableCellProperty {
|
||||||
pub fn new() -> TableCellProperty {
|
pub fn new() -> TableCellProperty {
|
||||||
TableCellProperty {
|
TableCellProperty {
|
||||||
// width: TableCellWidth::new(w, WidthType::DXA),
|
width: None,
|
||||||
borders: TableCellBorders::new(),
|
borders: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// pub fn width(mut self, v: usize) -> TableCellProperty {
|
pub fn width(mut self, v: usize, t: WidthType) -> TableCellProperty {
|
||||||
// self.width = TableCellWidth::new(v, WidthType::DXA);
|
self.width = Some(TableCellWidth::new(v, t));
|
||||||
// self
|
self
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl BuildXML for TableCellProperty {
|
impl BuildXML for TableCellProperty {
|
||||||
fn build(&self) -> Vec<u8> {
|
fn build(&self) -> Vec<u8> {
|
||||||
XMLBuilder::new()
|
XMLBuilder::new()
|
||||||
.open_table_cell_property()
|
.open_table_cell_property()
|
||||||
// .add_child(&self.width)
|
.add_optional_child(&self.width)
|
||||||
.add_child(&self.borders)
|
.add_optional_child(&self.borders)
|
||||||
.close()
|
.close()
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
@ -46,9 +46,6 @@ mod tests {
|
||||||
fn test_default() {
|
fn test_default() {
|
||||||
let c = TableCellProperty::new();
|
let c = TableCellProperty::new();
|
||||||
let b = c.build();
|
let b = c.build();
|
||||||
assert_eq!(
|
assert_eq!(str::from_utf8(&b).unwrap(), r#"<w:tcPr />"#);
|
||||||
str::from_utf8(&b).unwrap(),
|
|
||||||
r#"<w:tcPr><w:tcBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tcBorders></w:tcPr>"#
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ pub struct TableProperty {
|
||||||
impl Default for TableProperty {
|
impl Default for TableProperty {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
TableProperty {
|
TableProperty {
|
||||||
width: TableWidth::new(9638, WidthType::DXA),
|
width: TableWidth::new(0, WidthType::AUTO),
|
||||||
justification: Justification::new("left"),
|
justification: Justification::new("left"),
|
||||||
borders: TableBorders::new(),
|
borders: TableBorders::new(),
|
||||||
margins: TableCellMargins::new(),
|
margins: TableCellMargins::new(),
|
||||||
|
@ -34,13 +34,13 @@ impl TableProperty {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn width(mut self, v: usize) -> TableProperty {
|
pub fn width(mut self, v: usize, t: WidthType) -> TableProperty {
|
||||||
self.width = TableWidth::new(v, WidthType::DXA);
|
self.width = TableWidth::new(v, t);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn justify(mut self, v: &str) -> TableProperty {
|
pub fn align(mut self, v: TableAlignmentType) -> TableProperty {
|
||||||
self.justification = Justification::new(v);
|
self.justification = Justification::new(v.to_string());
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,7 +73,7 @@ mod tests {
|
||||||
let b = c.build();
|
let b = c.build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tblPr><w:tblW w:w="9638" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
|
r#"<w:tblPr><w:tblW w:w="0" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
|
||||||
<w:top w:w="55" w:type="dxa" />
|
<w:top w:w="55" w:type="dxa" />
|
||||||
<w:left w:w="54" w:type="dxa" />
|
<w:left w:w="54" w:type="dxa" />
|
||||||
<w:bottom w:w="55" w:type="dxa" />
|
<w:bottom w:w="55" w:type="dxa" />
|
||||||
|
|
|
@ -38,7 +38,7 @@ mod tests {
|
||||||
let b = TableRow::new(vec![TableCell::new()]).build();
|
let b = TableRow::new(vec![TableCell::new()]).build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tcBorders></w:tcPr></w:tc></w:tr>"#
|
r#"<w:tr><w:trPr /><w:tc><w:tcPr /></w:tc></w:tr>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,11 @@ impl Docx {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn add_table(mut self, t: Table) -> Docx {
|
||||||
|
self.document = self.document.add_table(t);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn build(&self) -> XMLDocx {
|
pub fn build(&self) -> XMLDocx {
|
||||||
XMLDocx {
|
XMLDocx {
|
||||||
content_type: self.content_type.build(),
|
content_type: self.content_type.build(),
|
||||||
|
|
|
@ -3,6 +3,7 @@ pub mod border_position;
|
||||||
pub mod border_type;
|
pub mod border_type;
|
||||||
pub mod special_indent_type;
|
pub mod special_indent_type;
|
||||||
pub mod style_type;
|
pub mod style_type;
|
||||||
|
pub mod table_alignment_type;
|
||||||
pub mod width_type;
|
pub mod width_type;
|
||||||
|
|
||||||
pub use alignment_type::*;
|
pub use alignment_type::*;
|
||||||
|
@ -10,4 +11,5 @@ pub use border_position::*;
|
||||||
pub use border_type::*;
|
pub use border_type::*;
|
||||||
pub use special_indent_type::*;
|
pub use special_indent_type::*;
|
||||||
pub use style_type::*;
|
pub use style_type::*;
|
||||||
|
pub use table_alignment_type::*;
|
||||||
pub use width_type::*;
|
pub use width_type::*;
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
use std::fmt;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[derive(Copy, Clone, Debug)]
|
||||||
|
pub enum TableAlignmentType {
|
||||||
|
Center,
|
||||||
|
Left,
|
||||||
|
Right,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for TableAlignmentType {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
|
match *self {
|
||||||
|
TableAlignmentType::Center => write!(f, "center"),
|
||||||
|
TableAlignmentType::Left => write!(f, "left"),
|
||||||
|
TableAlignmentType::Right => write!(f, "right"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,12 +5,14 @@ use wasm_bindgen::prelude::*;
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug)]
|
||||||
pub enum WidthType {
|
pub enum WidthType {
|
||||||
DXA,
|
DXA,
|
||||||
|
AUTO,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for WidthType {
|
impl fmt::Display for WidthType {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
WidthType::DXA => write!(f, "dxa"),
|
WidthType::DXA => write!(f, "dxa"),
|
||||||
|
WidthType::AUTO => write!(f, "auto"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,3 +58,22 @@ pub fn alignment() -> Result<(), DocxError> {
|
||||||
.pack(file)?;
|
.pack(file)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
pub fn table() -> Result<(), DocxError> {
|
||||||
|
let path = std::path::Path::new("./tests/output/table.docx");
|
||||||
|
let file = std::fs::File::create(&path).unwrap();
|
||||||
|
|
||||||
|
let table = Table::new(vec![
|
||||||
|
TableRow::new(vec![
|
||||||
|
TableCell::new().add_paragraph(Paragraph::new().add_run(Run::new("Hello"))),
|
||||||
|
TableCell::new().add_paragraph(Paragraph::new().add_run(Run::new("World"))),
|
||||||
|
]),
|
||||||
|
TableRow::new(vec![
|
||||||
|
TableCell::new().add_paragraph(Paragraph::new().add_run(Run::new("Foo"))),
|
||||||
|
TableCell::new().add_paragraph(Paragraph::new().add_run(Run::new("Bar"))),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
Docx::new().add_table(table).build().pack(file)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default ContentType="image/png" Extension="png"/><Default ContentType="image/jpeg" Extension="jpeg"/><Default ContentType="image/jpeg" Extension="jpg"/><Default ContentType="image/bmp" Extension="bmp"/><Default ContentType="image/gif" Extension="gif"/><Default ContentType="application/vnd.openxmlformats-package.relationships+xml" Extension="rels"/><Default ContentType="application/xml" Extension="xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" PartName="/word/document.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" PartName="/word/styles.xml"/><Override ContentType="application/vnd.openxmlformats-package.core-properties+xml" PartName="/docProps/core.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" PartName="/docProps/app.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" PartName="/word/numbering.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" PartName="/word/footnotes.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" PartName="/word/settings.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml" PartName="/word/header1.xml"/><Override ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" PartName="/word/footer1.xml"/></Types>
|
|
@ -0,0 +1 @@
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/></Relationships>
|
|
@ -0,0 +1 @@
|
||||||
|
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"/>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:creator>Un-named</dc:creator><cp:lastModifiedBy>Un-named</cp:lastModifiedBy><cp:revision>1</cp:revision><dcterms:created xsi:type="dcterms:W3CDTF">2019-11-13T11:40:18Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2019-11-13T11:40:18Z</dcterms:modified></cp:coreProperties>
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer1.xml"/></Relationships>
|
|
@ -0,0 +1 @@
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"/>
|
|
@ -0,0 +1 @@
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"/>
|
|
@ -0,0 +1,185 @@
|
||||||
|
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
||||||
|
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
||||||
|
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
||||||
|
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
||||||
|
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14">
|
||||||
|
<w:body>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:tbl>
|
||||||
|
<w:tblPr>
|
||||||
|
<w:tblCellMar>
|
||||||
|
<w:bottom w:type="dxa" w:w="60"/>
|
||||||
|
<w:top w:type="dxa" w:w="60"/>
|
||||||
|
<w:left w:type="dxa" w:w="60"/>
|
||||||
|
<w:right w:type="dxa" w:w="60"/>
|
||||||
|
</w:tblCellMar>
|
||||||
|
<w:tblBorders>
|
||||||
|
<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
<w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
<w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
|
||||||
|
</w:tblBorders>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:tblW w:type="dxa" w:w="8985"/>
|
||||||
|
</w:tblPr>
|
||||||
|
<w:tblGrid>
|
||||||
|
<w:gridCol w:w="2985"/>
|
||||||
|
<w:gridCol w:w="3000"/>
|
||||||
|
<w:gridCol w:w="3000"/>
|
||||||
|
</w:tblGrid>
|
||||||
|
<w:tr>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve">Hello</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
</w:tr>
|
||||||
|
<w:tr>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
</w:tr>
|
||||||
|
</w:tbl>
|
||||||
|
<w:p>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="left"/>
|
||||||
|
<w:ind w:start="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="21"/>
|
||||||
|
<w:szCs w:val="21"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t xml:space="preserve"/>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:sectPr>
|
||||||
|
<w:pgSz w:w="11906" w:h="16838" w:orient="portrait"/>
|
||||||
|
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708" w:footer="708" w:gutter="0" w:mirrorMargins="false"/>
|
||||||
|
<w:cols w:space="708" w:num="1"/>
|
||||||
|
<w:docGrid w:linePitch="360"/>
|
||||||
|
<w:headerReference w:type="default" r:id="rId5"/>
|
||||||
|
<w:footerReference w:type="default" r:id="rId6"/>
|
||||||
|
</w:sectPr>
|
||||||
|
</w:body>
|
||||||
|
</w:document>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"/>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14"><w:footnote w:type="separator" w:id="-1"><w:p><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:rPr><w:rStyle w:val="FootnoteReference"/></w:rPr><w:footnoteRef/></w:r><w:r><w:separator/></w:r></w:p></w:footnote><w:footnote w:type="continuationSeparator" w:id="0"><w:p><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:rPr><w:rStyle w:val="FootnoteReference"/></w:rPr><w:footnoteRef/></w:r><w:r><w:continuationSeparator/></w:r></w:p></w:footnote></w:footnotes>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:hdr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"/>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14"><w:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0"><w:multiLevelType w:val="hybridMultilevel"/><w:lvl w:ilvl="0" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="●"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="720" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="1" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="○"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="1440" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="2" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="■"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="2160" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="3" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="●"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="2880" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="4" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="○"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="3600" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="5" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="■"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="4320" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="6" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="●"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="5040" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="7" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="○"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="5760" w:hanging="360"/></w:pPr></w:lvl><w:lvl w:ilvl="8" w15:tentative="1"><w:start w:val="1"/><w:numFmt w:val="bullet"/><w:lvlText w:val="■"/><w:lvlJc w:val="left"/><w:pPr><w:ind w:left="6480" w:hanging="360"/></w:pPr></w:lvl></w:abstractNum><w:num w:numId="1"><w:abstractNumId w:val="0"/></w:num></w:numbering>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:settings xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14"/>
|
|
@ -0,0 +1 @@
|
||||||
|
<w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15"><w:docDefaults><w:rPrDefault/><w:pPrDefault/></w:docDefaults><w:style w:type="paragraph" w:styleId="Title"><w:name w:val="Title"/><w:rPr><w:sz w:val="56"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading1"><w:name w:val="Heading 1"/><w:rPr><w:color w:val="2E74B5"/><w:sz w:val="32"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading2"><w:name w:val="Heading 2"/><w:rPr><w:color w:val="2E74B5"/><w:sz w:val="26"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading3"><w:name w:val="Heading 3"/><w:rPr><w:color w:val="1F4D78"/><w:sz w:val="24"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading4"><w:name w:val="Heading 4"/><w:rPr><w:color w:val="2E74B5"/><w:i w:val="true"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading5"><w:name w:val="Heading 5"/><w:rPr><w:color w:val="2E74B5"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="Heading6"><w:name w:val="Heading 6"/><w:rPr><w:color w:val="1F4D78"/></w:rPr><w:basedOn w:val="Normal"/><w:next w:val="Normal"/><w:qFormat/></w:style><w:style w:type="paragraph" w:styleId="ListParagraph"><w:name w:val="List Paragraph"/><w:basedOn w:val="Normal"/><w:qFormat/></w:style><w:style w:type="character" w:styleId="Hyperlink"><w:name w:val="Hyperlink"/><w:rPr><w:color w:val="0563C1"/><w:u w:val="single"/></w:rPr><w:uiPriority w:val="99"/><w:unhideWhenUsed/><w:basedOn w:val="DefaultParagraphFont"/></w:style><w:style w:type="character" w:styleId="FootnoteReference"><w:name w:val="footnote reference"/><w:rPr><w:vertAlign w:val="superscript"/></w:rPr><w:uiPriority w:val="99"/><w:unhideWhenUsed/><w:basedOn w:val="DefaultParagraphFont"/><w:semiHidden/></w:style><w:style w:type="paragraph" w:styleId="FootnoteText"><w:name w:val="footnote text"/><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:rPr><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr><w:basedOn w:val="Normal"/><w:link w:val="FootnoteTextChar"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style w:type="character" w:styleId="FootnoteTextChar"><w:name w:val="Footnote Text Char"/><w:rPr><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr><w:uiPriority w:val="99"/><w:unhideWhenUsed/><w:basedOn w:val="DefaultParagraphFont"/><w:link w:val="FootnoteText"/><w:semiHidden/></w:style></w:styles>
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="xml" ContentType="application/xml" /><Override PartName="/word/document2.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" /><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" /><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" /><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" /><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" /><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml" /><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" /></Types>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml" Id="rId3" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml" Id="rId2" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="/word/document2.xml" Id="rId1" /></Relationships>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><ap:Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" xmlns:ap="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"><ap:Application>Microsoft Office Word</ap:Application><ap:DocSecurity>0</ap:DocSecurity><ap:ScaleCrop>false</ap:ScaleCrop><ap:Company /><ap:SharedDoc>false</ap:SharedDoc><ap:HyperlinksChanged>false</ap:HyperlinksChanged><ap:AppVersion>00.0001</ap:AppVersion><ap:Template>Normal.dotm</ap:Template><ap:LinksUpToDate>false</ap:LinksUpToDate></ap:Properties>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?><coreProperties xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"><dc:title /><dc:subject /><keywords /><dc:description /><dcterms:created xsi:type="dcterms:W3CDTF">2019-11-13T02:50:10.0035455Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2019-11-13T02:50:30.2555956Z</dcterms:modified><dc:creator>Satoshi Ueki</dc:creator><lastModifiedBy>Satoshi Ueki</lastModifiedBy></coreProperties>
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="/word/webSettings.xml" Id="rId3" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="/word/settings.xml" Id="rId2" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="/word/styles.xml" Id="rId1" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="/word/theme/theme1.xml" Id="rId5" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="/word/fontTable.xml" Id="rId4" /></Relationships>
|
|
@ -0,0 +1,119 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
||||||
|
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
||||||
|
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
||||||
|
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
||||||
|
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14">
|
||||||
|
<w:body>
|
||||||
|
<w:tbl>
|
||||||
|
<w:tblPr>
|
||||||
|
<w:tblStyle w:val="TableGrid" />
|
||||||
|
<w:tblW w:w="0" w:type="auto" />
|
||||||
|
<w:tblInd w:w="0" w:type="dxa" />
|
||||||
|
<w:tblLayout w:type="fixed" />
|
||||||
|
<w:tblLook w:val="06A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="1" w:noVBand="1" />
|
||||||
|
</w:tblPr>
|
||||||
|
<w:tblGrid>
|
||||||
|
<w:gridCol w:w="3009" />
|
||||||
|
<w:gridCol w:w="3009" />
|
||||||
|
<w:gridCol w:w="3009" />
|
||||||
|
</w:tblGrid>
|
||||||
|
<w:tr w:rsidR="10BC4D05" w:rsidTr="10BC4D05" w14:paraId="2A9BC8DF">
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="1187B5E5" w14:textId="0764147B">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
<w:r w:rsidR="10BC4D05">
|
||||||
|
<w:rPr />
|
||||||
|
<w:t>Hello</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="54F95D94" w14:textId="300B7467">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="58189E6E" w14:textId="300B7467">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
</w:tr>
|
||||||
|
<w:tr w:rsidR="10BC4D05" w:rsidTr="10BC4D05" w14:paraId="4902C3B4">
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="66A181C0" w14:textId="300B7467">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="0E3CEB61" w14:textId="300B7467">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3009" w:type="dxa" />
|
||||||
|
<w:tcMar />
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="26D2D89D" w14:textId="300B7467">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
</w:tr>
|
||||||
|
</w:tbl>
|
||||||
|
<w:p w:rsidR="10BC4D05" w:rsidP="10BC4D05" w:rsidRDefault="10BC4D05" w14:paraId="7C6D92EE" w14:textId="39A61D85">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Normal" />
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
<w:sectPr>
|
||||||
|
<w:pgSz w:w="11906" w:h="16838" w:orient="portrait" />
|
||||||
|
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0" />
|
||||||
|
<w:cols w:space="720" />
|
||||||
|
<w:docGrid w:type="lines" w:linePitch="360" />
|
||||||
|
</w:sectPr>
|
||||||
|
</w:body>
|
||||||
|
</w:document>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15"><w:font w:name="Century"><w:panose1 w:val="02040604050505020304" /><w:charset w:val="00" /><w:family w:val="roman" /><w:pitch w:val="variable" /><w:sig w:usb0="00000287" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000" /></w:font><w:font w:name="MS Mincho"><w:altName w:val="MS 明朝" /><w:panose1 w:val="02020609040205080304" /><w:charset w:val="80" /><w:family w:val="modern" /><w:pitch w:val="fixed" /><w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="08000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000" /></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304" /><w:charset w:val="00" /><w:family w:val="roman" /><w:notTrueType /><w:pitch w:val="variable" /><w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" /></w:font><w:font w:name="MS Gothic"><w:altName w:val="MS ゴシック" /><w:panose1 w:val="020B0609070205080204" /><w:charset w:val="80" /><w:family w:val="modern" /><w:pitch w:val="fixed" /><w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="08000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000" /></w:font><w:font w:name="Arial"><w:panose1 w:val="020B0604020202020204" /><w:charset w:val="00" /><w:family w:val="swiss" /><w:pitch w:val="variable" /><w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000" /></w:font></w:fonts>
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15"><w:trackRevisions w:val="false" /><w:zoom w:percent="100" /><w:bordersDoNotSurroundHeader /><w:bordersDoNotSurroundFooter /><w:defaultTabStop w:val="840" /><w:displayHorizontalDrawingGridEvery w:val="0" /><w:displayVerticalDrawingGridEvery w:val="2" /><w:characterSpacingControl w:val="compressPunctuation" /><w:compat><w:spaceForUL /><w:balanceSingleByteDoubleByteWidth /><w:doNotLeaveBackslashAlone /><w:ulTrailSpace /><w:doNotExpandShiftReturn /><w:adjustLineHeightInTable /><w:useFELayout /><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15" /><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /></w:compat><m:mathPr><m:mathFont m:val="Cambria Math" /><m:brkBin m:val="before" /><m:brkBinSub m:val="--" /><m:smallFrac m:val="0" /><m:dispDef /><m:lMargin m:val="0" /><m:rMargin m:val="0" /><m:defJc m:val="centerGroup" /><m:wrapIndent m:val="1440" /><m:intLim m:val="subSup" /><m:naryLim m:val="undOvr" /></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="ja-JP" /><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" /><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"><v:textbox inset="5.85pt,.7pt,5.85pt,.7pt" /></o:shapedefaults><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1" /></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="." /><w:listSeparator w:val="," /><w15:chartTrackingRefBased /><w14:docId w14:val="7C050060" /><w15:docId w15:val="{63e40598-6502-4934-b030-8122617f4582}" /><w:rsids><w:rsidRoot w:val="7C050060" /><w:rsid w:val="10BC4D05" /><w:rsid w:val="7C050060" /></w:rsids></w:settings>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,259 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">
|
||||||
|
<a:themeElements>
|
||||||
|
<a:clrScheme name="Office">
|
||||||
|
<a:dk1>
|
||||||
|
<a:sysClr val="windowText" lastClr="000000" />
|
||||||
|
</a:dk1>
|
||||||
|
<a:lt1>
|
||||||
|
<a:sysClr val="window" lastClr="FFFFFF" />
|
||||||
|
</a:lt1>
|
||||||
|
<a:dk2>
|
||||||
|
<a:srgbClr val="44546A" />
|
||||||
|
</a:dk2>
|
||||||
|
<a:lt2>
|
||||||
|
<a:srgbClr val="E7E6E6" />
|
||||||
|
</a:lt2>
|
||||||
|
<a:accent1>
|
||||||
|
<a:srgbClr val="4472C4" />
|
||||||
|
</a:accent1>
|
||||||
|
<a:accent2>
|
||||||
|
<a:srgbClr val="ED7D31" />
|
||||||
|
</a:accent2>
|
||||||
|
<a:accent3>
|
||||||
|
<a:srgbClr val="A5A5A5" />
|
||||||
|
</a:accent3>
|
||||||
|
<a:accent4>
|
||||||
|
<a:srgbClr val="FFC000" />
|
||||||
|
</a:accent4>
|
||||||
|
<a:accent5>
|
||||||
|
<a:srgbClr val="5B9BD5" />
|
||||||
|
</a:accent5>
|
||||||
|
<a:accent6>
|
||||||
|
<a:srgbClr val="70AD47" />
|
||||||
|
</a:accent6>
|
||||||
|
<a:hlink>
|
||||||
|
<a:srgbClr val="0563C1" />
|
||||||
|
</a:hlink>
|
||||||
|
<a:folHlink>
|
||||||
|
<a:srgbClr val="954F72" />
|
||||||
|
</a:folHlink>
|
||||||
|
</a:clrScheme>
|
||||||
|
<a:fontScheme name="Office">
|
||||||
|
<a:majorFont>
|
||||||
|
<a:latin typeface="Arial" panose="020F0302020204030204" />
|
||||||
|
<a:ea typeface="" />
|
||||||
|
<a:cs typeface="" />
|
||||||
|
<a:font script="Jpan" typeface="MS ゴシック" />
|
||||||
|
<a:font script="Hang" typeface="맑은 고딕" />
|
||||||
|
<a:font script="Hans" typeface="宋体" />
|
||||||
|
<a:font script="Hant" typeface="新細明體" />
|
||||||
|
<a:font script="Arab" typeface="Times New Roman" />
|
||||||
|
<a:font script="Hebr" typeface="Times New Roman" />
|
||||||
|
<a:font script="Thai" typeface="Angsana New" />
|
||||||
|
<a:font script="Ethi" typeface="Nyala" />
|
||||||
|
<a:font script="Beng" typeface="Vrinda" />
|
||||||
|
<a:font script="Gujr" typeface="Shruti" />
|
||||||
|
<a:font script="Khmr" typeface="MoolBoran" />
|
||||||
|
<a:font script="Knda" typeface="Tunga" />
|
||||||
|
<a:font script="Guru" typeface="Raavi" />
|
||||||
|
<a:font script="Cans" typeface="Euphemia" />
|
||||||
|
<a:font script="Cher" typeface="Plantagenet Cherokee" />
|
||||||
|
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
|
||||||
|
<a:font script="Tibt" typeface="Microsoft Himalaya" />
|
||||||
|
<a:font script="Thaa" typeface="MV Boli" />
|
||||||
|
<a:font script="Deva" typeface="Mangal" />
|
||||||
|
<a:font script="Telu" typeface="Gautami" />
|
||||||
|
<a:font script="Taml" typeface="Latha" />
|
||||||
|
<a:font script="Syrc" typeface="Estrangelo Edessa" />
|
||||||
|
<a:font script="Orya" typeface="Kalinga" />
|
||||||
|
<a:font script="Mlym" typeface="Kartika" />
|
||||||
|
<a:font script="Laoo" typeface="DokChampa" />
|
||||||
|
<a:font script="Sinh" typeface="Iskoola Pota" />
|
||||||
|
<a:font script="Mong" typeface="Mongolian Baiti" />
|
||||||
|
<a:font script="Viet" typeface="Times New Roman" />
|
||||||
|
<a:font script="Uigh" typeface="Microsoft Uighur" />
|
||||||
|
<a:font script="Geor" typeface="Sylfaen" />
|
||||||
|
</a:majorFont>
|
||||||
|
<a:minorFont>
|
||||||
|
<a:latin typeface="Century" panose="020F0502020204030204" />
|
||||||
|
<a:ea typeface="" />
|
||||||
|
<a:cs typeface="" />
|
||||||
|
<a:font script="Jpan" typeface="MS 明朝" />
|
||||||
|
<a:font script="Hang" typeface="맑은 고딕" />
|
||||||
|
<a:font script="Hans" typeface="宋体" />
|
||||||
|
<a:font script="Hant" typeface="新細明體" />
|
||||||
|
<a:font script="Arab" typeface="Arial" />
|
||||||
|
<a:font script="Hebr" typeface="Arial" />
|
||||||
|
<a:font script="Thai" typeface="Cordia New" />
|
||||||
|
<a:font script="Ethi" typeface="Nyala" />
|
||||||
|
<a:font script="Beng" typeface="Vrinda" />
|
||||||
|
<a:font script="Gujr" typeface="Shruti" />
|
||||||
|
<a:font script="Khmr" typeface="DaunPenh" />
|
||||||
|
<a:font script="Knda" typeface="Tunga" />
|
||||||
|
<a:font script="Guru" typeface="Raavi" />
|
||||||
|
<a:font script="Cans" typeface="Euphemia" />
|
||||||
|
<a:font script="Cher" typeface="Plantagenet Cherokee" />
|
||||||
|
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
|
||||||
|
<a:font script="Tibt" typeface="Microsoft Himalaya" />
|
||||||
|
<a:font script="Thaa" typeface="MV Boli" />
|
||||||
|
<a:font script="Deva" typeface="Mangal" />
|
||||||
|
<a:font script="Telu" typeface="Gautami" />
|
||||||
|
<a:font script="Taml" typeface="Latha" />
|
||||||
|
<a:font script="Syrc" typeface="Estrangelo Edessa" />
|
||||||
|
<a:font script="Orya" typeface="Kalinga" />
|
||||||
|
<a:font script="Mlym" typeface="Kartika" />
|
||||||
|
<a:font script="Laoo" typeface="DokChampa" />
|
||||||
|
<a:font script="Sinh" typeface="Iskoola Pota" />
|
||||||
|
<a:font script="Mong" typeface="Mongolian Baiti" />
|
||||||
|
<a:font script="Viet" typeface="Arial" />
|
||||||
|
<a:font script="Uigh" typeface="Microsoft Uighur" />
|
||||||
|
<a:font script="Geor" typeface="Sylfaen" />
|
||||||
|
</a:minorFont>
|
||||||
|
</a:fontScheme>
|
||||||
|
<a:fmtScheme name="Office">
|
||||||
|
<a:fillStyleLst>
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr" />
|
||||||
|
</a:solidFill>
|
||||||
|
<a:gradFill rotWithShape="1">
|
||||||
|
<a:gsLst>
|
||||||
|
<a:gs pos="0">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:lumMod val="110000" />
|
||||||
|
<a:satMod val="105000" />
|
||||||
|
<a:tint val="67000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="50000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:lumMod val="105000" />
|
||||||
|
<a:satMod val="103000" />
|
||||||
|
<a:tint val="73000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="100000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:lumMod val="105000" />
|
||||||
|
<a:satMod val="109000" />
|
||||||
|
<a:tint val="81000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
</a:gsLst>
|
||||||
|
<a:lin ang="5400000" scaled="0" />
|
||||||
|
</a:gradFill>
|
||||||
|
<a:gradFill rotWithShape="1">
|
||||||
|
<a:gsLst>
|
||||||
|
<a:gs pos="0">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:satMod val="103000" />
|
||||||
|
<a:lumMod val="102000" />
|
||||||
|
<a:tint val="94000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="50000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:satMod val="110000" />
|
||||||
|
<a:lumMod val="100000" />
|
||||||
|
<a:shade val="100000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="100000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:lumMod val="99000" />
|
||||||
|
<a:satMod val="120000" />
|
||||||
|
<a:shade val="78000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
</a:gsLst>
|
||||||
|
<a:lin ang="5400000" scaled="0" />
|
||||||
|
</a:gradFill>
|
||||||
|
</a:fillStyleLst>
|
||||||
|
<a:lnStyleLst>
|
||||||
|
<a:ln w="6350" cap="flat" cmpd="sng" algn="ctr">
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr" />
|
||||||
|
</a:solidFill>
|
||||||
|
<a:prstDash val="solid" />
|
||||||
|
<a:miter lim="800000" />
|
||||||
|
</a:ln>
|
||||||
|
<a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr" />
|
||||||
|
</a:solidFill>
|
||||||
|
<a:prstDash val="solid" />
|
||||||
|
<a:miter lim="800000" />
|
||||||
|
</a:ln>
|
||||||
|
<a:ln w="19050" cap="flat" cmpd="sng" algn="ctr">
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr" />
|
||||||
|
</a:solidFill>
|
||||||
|
<a:prstDash val="solid" />
|
||||||
|
<a:miter lim="800000" />
|
||||||
|
</a:ln>
|
||||||
|
</a:lnStyleLst>
|
||||||
|
<a:effectStyleLst>
|
||||||
|
<a:effectStyle>
|
||||||
|
<a:effectLst />
|
||||||
|
</a:effectStyle>
|
||||||
|
<a:effectStyle>
|
||||||
|
<a:effectLst />
|
||||||
|
</a:effectStyle>
|
||||||
|
<a:effectStyle>
|
||||||
|
<a:effectLst>
|
||||||
|
<a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr" rotWithShape="0">
|
||||||
|
<a:srgbClr val="000000">
|
||||||
|
<a:alpha val="63000" />
|
||||||
|
</a:srgbClr>
|
||||||
|
</a:outerShdw>
|
||||||
|
</a:effectLst>
|
||||||
|
</a:effectStyle>
|
||||||
|
</a:effectStyleLst>
|
||||||
|
<a:bgFillStyleLst>
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr" />
|
||||||
|
</a:solidFill>
|
||||||
|
<a:solidFill>
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:tint val="95000" />
|
||||||
|
<a:satMod val="170000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:solidFill>
|
||||||
|
<a:gradFill rotWithShape="1">
|
||||||
|
<a:gsLst>
|
||||||
|
<a:gs pos="0">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:tint val="93000" />
|
||||||
|
<a:satMod val="150000" />
|
||||||
|
<a:shade val="98000" />
|
||||||
|
<a:lumMod val="102000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="50000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:tint val="98000" />
|
||||||
|
<a:satMod val="130000" />
|
||||||
|
<a:shade val="90000" />
|
||||||
|
<a:lumMod val="103000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
<a:gs pos="100000">
|
||||||
|
<a:schemeClr val="phClr">
|
||||||
|
<a:shade val="63000" />
|
||||||
|
<a:satMod val="120000" />
|
||||||
|
</a:schemeClr>
|
||||||
|
</a:gs>
|
||||||
|
</a:gsLst>
|
||||||
|
<a:lin ang="5400000" scaled="0" />
|
||||||
|
</a:gradFill>
|
||||||
|
</a:bgFillStyleLst>
|
||||||
|
</a:fmtScheme>
|
||||||
|
</a:themeElements>
|
||||||
|
<a:objectDefaults />
|
||||||
|
<a:extraClrSchemeLst />
|
||||||
|
<a:extLst>
|
||||||
|
<a:ext uri="{05A4C25C-085E-4340-85A3-A5531E510DB2}">
|
||||||
|
<thm15:themeFamily xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main" name="Office Theme" id="{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}" vid="{4A3C46E8-61CC-4603-A589-7422A47A8E4A}" />
|
||||||
|
</a:ext>
|
||||||
|
</a:extLst>
|
||||||
|
</a:theme>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15"><w:optimizeForBrowser/><w:allowPNG/></w:webSettings>
|
Loading…
Reference in New Issue