ps-python-docx 1.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docx/__init__.py +68 -0
- docx/api.py +37 -0
- docx/blkcntnr.py +101 -0
- docx/comments.py +163 -0
- docx/dml/__init__.py +0 -0
- docx/dml/color.py +112 -0
- docx/document.py +275 -0
- docx/drawing/__init__.py +59 -0
- docx/enum/__init__.py +0 -0
- docx/enum/base.py +150 -0
- docx/enum/dml.py +103 -0
- docx/enum/section.py +86 -0
- docx/enum/shape.py +19 -0
- docx/enum/style.py +452 -0
- docx/enum/table.py +136 -0
- docx/enum/text.py +367 -0
- docx/exceptions.py +18 -0
- docx/image/__init__.py +23 -0
- docx/image/bmp.py +43 -0
- docx/image/constants.py +172 -0
- docx/image/exceptions.py +13 -0
- docx/image/gif.py +38 -0
- docx/image/helpers.py +86 -0
- docx/image/image.py +234 -0
- docx/image/jpeg.py +425 -0
- docx/image/png.py +253 -0
- docx/image/tiff.py +289 -0
- docx/opc/__init__.py +0 -0
- docx/opc/constants.py +306 -0
- docx/opc/coreprops.py +142 -0
- docx/opc/exceptions.py +12 -0
- docx/opc/oxml.py +247 -0
- docx/opc/package.py +219 -0
- docx/opc/packuri.py +109 -0
- docx/opc/part.py +247 -0
- docx/opc/parts/__init__.py +0 -0
- docx/opc/parts/coreprops.py +48 -0
- docx/opc/phys_pkg.py +119 -0
- docx/opc/pkgreader.py +254 -0
- docx/opc/pkgwriter.py +115 -0
- docx/opc/rel.py +153 -0
- docx/opc/shared.py +31 -0
- docx/opc/spec.py +24 -0
- docx/oxml/__init__.py +261 -0
- docx/oxml/comments.py +124 -0
- docx/oxml/coreprops.py +298 -0
- docx/oxml/document.py +88 -0
- docx/oxml/drawing.py +11 -0
- docx/oxml/exceptions.py +10 -0
- docx/oxml/ns.py +109 -0
- docx/oxml/numbering.py +109 -0
- docx/oxml/parser.py +62 -0
- docx/oxml/section.py +537 -0
- docx/oxml/settings.py +138 -0
- docx/oxml/shape.py +299 -0
- docx/oxml/shared.py +52 -0
- docx/oxml/simpletypes.py +434 -0
- docx/oxml/styles.py +341 -0
- docx/oxml/table.py +977 -0
- docx/oxml/text/__init__.py +0 -0
- docx/oxml/text/font.py +333 -0
- docx/oxml/text/hyperlink.py +45 -0
- docx/oxml/text/pagebreak.py +278 -0
- docx/oxml/text/paragraph.py +106 -0
- docx/oxml/text/parfmt.py +392 -0
- docx/oxml/text/run.py +307 -0
- docx/oxml/xmlchemy.py +696 -0
- docx/package.py +110 -0
- docx/parts/__init__.py +0 -0
- docx/parts/comments.py +51 -0
- docx/parts/document.py +182 -0
- docx/parts/hdrftr.py +53 -0
- docx/parts/image.py +80 -0
- docx/parts/numbering.py +32 -0
- docx/parts/settings.py +50 -0
- docx/parts/story.py +95 -0
- docx/parts/styles.py +42 -0
- docx/parts/theme.py +53 -0
- docx/py.typed +0 -0
- docx/section.py +479 -0
- docx/settings.py +35 -0
- docx/shape.py +103 -0
- docx/shared.py +382 -0
- docx/styles/__init__.py +40 -0
- docx/styles/latent.py +198 -0
- docx/styles/style.py +264 -0
- docx/styles/styles.py +147 -0
- docx/table.py +537 -0
- docx/templates/default-comments.xml +12 -0
- docx/templates/default-docx-template/[Content_Types].xml +17 -0
- docx/templates/default-docx-template/_rels/.rels +7 -0
- docx/templates/default-docx-template/customXml/_rels/item1.xml.rels +4 -0
- docx/templates/default-docx-template/customXml/item1.xml +2 -0
- docx/templates/default-docx-template/customXml/itemProps1.xml +6 -0
- docx/templates/default-docx-template/docProps/app.xml +36 -0
- docx/templates/default-docx-template/docProps/core.xml +13 -0
- docx/templates/default-docx-template/docProps/thumbnail.jpeg +0 -0
- docx/templates/default-docx-template/word/_rels/document.xml.rels +11 -0
- docx/templates/default-docx-template/word/document.xml +11 -0
- docx/templates/default-docx-template/word/fontTable.xml +61 -0
- docx/templates/default-docx-template/word/numbering.xml +201 -0
- docx/templates/default-docx-template/word/settings.xml +53 -0
- docx/templates/default-docx-template/word/styles.xml +11844 -0
- docx/templates/default-docx-template/word/stylesWithEffects.xml +11800 -0
- docx/templates/default-docx-template/word/theme/theme1.xml +318 -0
- docx/templates/default-docx-template/word/webSettings.xml +5 -0
- docx/templates/default-footer.xml +27 -0
- docx/templates/default-header.xml +27 -0
- docx/templates/default-settings.xml +26 -0
- docx/templates/default-styles.xml +190 -0
- docx/templates/default.docx +0 -0
- docx/text/__init__.py +0 -0
- docx/text/font.py +472 -0
- docx/text/hyperlink.py +121 -0
- docx/text/pagebreak.py +104 -0
- docx/text/paragraph.py +173 -0
- docx/text/parfmt.py +286 -0
- docx/text/run.py +257 -0
- docx/text/tabstops.py +123 -0
- docx/theme.py +67 -0
- docx/types.py +34 -0
- ps_python_docx-1.3.0.dist-info/METADATA +77 -0
- ps_python_docx-1.3.0.dist-info/RECORD +126 -0
- ps_python_docx-1.3.0.dist-info/WHEEL +5 -0
- ps_python_docx-1.3.0.dist-info/licenses/LICENSE +20 -0
- ps_python_docx-1.3.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" 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: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 wp14">
|
|
3
|
+
<w:body>
|
|
4
|
+
<w:sectPr w:rsidR="00FC693F" w:rsidRPr="0006063C" w:rsidSect="00034616">
|
|
5
|
+
<w:pgSz w:w="12240" w:h="15840"/>
|
|
6
|
+
<w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="720" w:footer="720" w:gutter="0"/>
|
|
7
|
+
<w:cols w:space="720"/>
|
|
8
|
+
<w:docGrid w:linePitch="360"/>
|
|
9
|
+
</w:sectPr>
|
|
10
|
+
</w:body>
|
|
11
|
+
</w:document>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<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" mc:Ignorable="w14">
|
|
3
|
+
<w:font w:name="Symbol">
|
|
4
|
+
<w:panose1 w:val="00000000000000000000"/>
|
|
5
|
+
<w:charset w:val="02"/>
|
|
6
|
+
<w:family w:val="auto"/>
|
|
7
|
+
<w:pitch w:val="variable"/>
|
|
8
|
+
<w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
|
|
9
|
+
</w:font>
|
|
10
|
+
<w:font w:name="Times New Roman">
|
|
11
|
+
<w:panose1 w:val="02020603050405020304"/>
|
|
12
|
+
<w:charset w:val="00"/>
|
|
13
|
+
<w:family w:val="auto"/>
|
|
14
|
+
<w:pitch w:val="variable"/>
|
|
15
|
+
<w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
|
|
16
|
+
</w:font>
|
|
17
|
+
<w:font w:name="Cambria">
|
|
18
|
+
<w:panose1 w:val="02040503050406030204"/>
|
|
19
|
+
<w:charset w:val="00"/>
|
|
20
|
+
<w:family w:val="auto"/>
|
|
21
|
+
<w:pitch w:val="variable"/>
|
|
22
|
+
<w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
|
|
23
|
+
</w:font>
|
|
24
|
+
<w:font w:name="MS 明朝">
|
|
25
|
+
<w:panose1 w:val="00000000000000000000"/>
|
|
26
|
+
<w:charset w:val="80"/>
|
|
27
|
+
<w:family w:val="roman"/>
|
|
28
|
+
<w:notTrueType/>
|
|
29
|
+
<w:pitch w:val="fixed"/>
|
|
30
|
+
<w:sig w:usb0="00000001" w:usb1="08070000" w:usb2="00000010" w:usb3="00000000" w:csb0="00020000" w:csb1="00000000"/>
|
|
31
|
+
</w:font>
|
|
32
|
+
<w:font w:name="Calibri">
|
|
33
|
+
<w:panose1 w:val="020F0502020204030204"/>
|
|
34
|
+
<w:charset w:val="00"/>
|
|
35
|
+
<w:family w:val="auto"/>
|
|
36
|
+
<w:pitch w:val="variable"/>
|
|
37
|
+
<w:sig w:usb0="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
|
|
38
|
+
</w:font>
|
|
39
|
+
<w:font w:name="MS ゴシック">
|
|
40
|
+
<w:panose1 w:val="00000000000000000000"/>
|
|
41
|
+
<w:charset w:val="80"/>
|
|
42
|
+
<w:family w:val="modern"/>
|
|
43
|
+
<w:notTrueType/>
|
|
44
|
+
<w:pitch w:val="fixed"/>
|
|
45
|
+
<w:sig w:usb0="00000001" w:usb1="08070000" w:usb2="00000010" w:usb3="00000000" w:csb0="00020000" w:csb1="00000000"/>
|
|
46
|
+
</w:font>
|
|
47
|
+
<w:font w:name="Courier">
|
|
48
|
+
<w:panose1 w:val="02000500000000000000"/>
|
|
49
|
+
<w:charset w:val="00"/>
|
|
50
|
+
<w:family w:val="auto"/>
|
|
51
|
+
<w:pitch w:val="variable"/>
|
|
52
|
+
<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000"/>
|
|
53
|
+
</w:font>
|
|
54
|
+
<w:font w:name="Arial">
|
|
55
|
+
<w:panose1 w:val="020B0604020202020204"/>
|
|
56
|
+
<w:charset w:val="00"/>
|
|
57
|
+
<w:family w:val="auto"/>
|
|
58
|
+
<w:pitch w:val="variable"/>
|
|
59
|
+
<w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
|
|
60
|
+
</w:font>
|
|
61
|
+
</w:fonts>
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" 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: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 wp14">
|
|
3
|
+
<w:abstractNum w:abstractNumId="0">
|
|
4
|
+
<w:nsid w:val="FFFFFF7C"/>
|
|
5
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
6
|
+
<w:tmpl w:val="C310EC42"/>
|
|
7
|
+
<w:lvl w:ilvl="0">
|
|
8
|
+
<w:start w:val="1"/>
|
|
9
|
+
<w:numFmt w:val="decimal"/>
|
|
10
|
+
<w:lvlText w:val="%1."/>
|
|
11
|
+
<w:lvlJc w:val="left"/>
|
|
12
|
+
<w:pPr>
|
|
13
|
+
<w:tabs>
|
|
14
|
+
<w:tab w:val="num" w:pos="1800"/>
|
|
15
|
+
</w:tabs>
|
|
16
|
+
<w:ind w:left="1800" w:hanging="360"/>
|
|
17
|
+
</w:pPr>
|
|
18
|
+
</w:lvl>
|
|
19
|
+
</w:abstractNum>
|
|
20
|
+
<w:abstractNum w:abstractNumId="1">
|
|
21
|
+
<w:nsid w:val="FFFFFF7D"/>
|
|
22
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
23
|
+
<w:tmpl w:val="E4089024"/>
|
|
24
|
+
<w:lvl w:ilvl="0">
|
|
25
|
+
<w:start w:val="1"/>
|
|
26
|
+
<w:numFmt w:val="decimal"/>
|
|
27
|
+
<w:lvlText w:val="%1."/>
|
|
28
|
+
<w:lvlJc w:val="left"/>
|
|
29
|
+
<w:pPr>
|
|
30
|
+
<w:tabs>
|
|
31
|
+
<w:tab w:val="num" w:pos="1440"/>
|
|
32
|
+
</w:tabs>
|
|
33
|
+
<w:ind w:left="1440" w:hanging="360"/>
|
|
34
|
+
</w:pPr>
|
|
35
|
+
</w:lvl>
|
|
36
|
+
</w:abstractNum>
|
|
37
|
+
<w:abstractNum w:abstractNumId="2">
|
|
38
|
+
<w:nsid w:val="FFFFFF7E"/>
|
|
39
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
40
|
+
<w:tmpl w:val="FB12693A"/>
|
|
41
|
+
<w:lvl w:ilvl="0">
|
|
42
|
+
<w:start w:val="1"/>
|
|
43
|
+
<w:numFmt w:val="decimal"/>
|
|
44
|
+
<w:pStyle w:val="ListNumber3"/>
|
|
45
|
+
<w:lvlText w:val="%1."/>
|
|
46
|
+
<w:lvlJc w:val="left"/>
|
|
47
|
+
<w:pPr>
|
|
48
|
+
<w:tabs>
|
|
49
|
+
<w:tab w:val="num" w:pos="1080"/>
|
|
50
|
+
</w:tabs>
|
|
51
|
+
<w:ind w:left="1080" w:hanging="360"/>
|
|
52
|
+
</w:pPr>
|
|
53
|
+
</w:lvl>
|
|
54
|
+
</w:abstractNum>
|
|
55
|
+
<w:abstractNum w:abstractNumId="3">
|
|
56
|
+
<w:nsid w:val="FFFFFF7F"/>
|
|
57
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
58
|
+
<w:tmpl w:val="38441652"/>
|
|
59
|
+
<w:lvl w:ilvl="0">
|
|
60
|
+
<w:start w:val="1"/>
|
|
61
|
+
<w:numFmt w:val="decimal"/>
|
|
62
|
+
<w:pStyle w:val="ListNumber2"/>
|
|
63
|
+
<w:lvlText w:val="%1."/>
|
|
64
|
+
<w:lvlJc w:val="left"/>
|
|
65
|
+
<w:pPr>
|
|
66
|
+
<w:tabs>
|
|
67
|
+
<w:tab w:val="num" w:pos="720"/>
|
|
68
|
+
</w:tabs>
|
|
69
|
+
<w:ind w:left="720" w:hanging="360"/>
|
|
70
|
+
</w:pPr>
|
|
71
|
+
</w:lvl>
|
|
72
|
+
</w:abstractNum>
|
|
73
|
+
<w:abstractNum w:abstractNumId="4">
|
|
74
|
+
<w:nsid w:val="FFFFFF81"/>
|
|
75
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
76
|
+
<w:tmpl w:val="171AC3A4"/>
|
|
77
|
+
<w:lvl w:ilvl="0">
|
|
78
|
+
<w:start w:val="1"/>
|
|
79
|
+
<w:numFmt w:val="bullet"/>
|
|
80
|
+
<w:lvlText w:val=""/>
|
|
81
|
+
<w:lvlJc w:val="left"/>
|
|
82
|
+
<w:pPr>
|
|
83
|
+
<w:tabs>
|
|
84
|
+
<w:tab w:val="num" w:pos="1440"/>
|
|
85
|
+
</w:tabs>
|
|
86
|
+
<w:ind w:left="1440" w:hanging="360"/>
|
|
87
|
+
</w:pPr>
|
|
88
|
+
<w:rPr>
|
|
89
|
+
<w:rFonts w:ascii="Symbol" w:hAnsi="Symbol" w:hint="default"/>
|
|
90
|
+
</w:rPr>
|
|
91
|
+
</w:lvl>
|
|
92
|
+
</w:abstractNum>
|
|
93
|
+
<w:abstractNum w:abstractNumId="5">
|
|
94
|
+
<w:nsid w:val="FFFFFF82"/>
|
|
95
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
96
|
+
<w:tmpl w:val="F3EAFDEC"/>
|
|
97
|
+
<w:lvl w:ilvl="0">
|
|
98
|
+
<w:start w:val="1"/>
|
|
99
|
+
<w:numFmt w:val="bullet"/>
|
|
100
|
+
<w:pStyle w:val="ListBullet3"/>
|
|
101
|
+
<w:lvlText w:val=""/>
|
|
102
|
+
<w:lvlJc w:val="left"/>
|
|
103
|
+
<w:pPr>
|
|
104
|
+
<w:tabs>
|
|
105
|
+
<w:tab w:val="num" w:pos="1080"/>
|
|
106
|
+
</w:tabs>
|
|
107
|
+
<w:ind w:left="1080" w:hanging="360"/>
|
|
108
|
+
</w:pPr>
|
|
109
|
+
<w:rPr>
|
|
110
|
+
<w:rFonts w:ascii="Symbol" w:hAnsi="Symbol" w:hint="default"/>
|
|
111
|
+
</w:rPr>
|
|
112
|
+
</w:lvl>
|
|
113
|
+
</w:abstractNum>
|
|
114
|
+
<w:abstractNum w:abstractNumId="6">
|
|
115
|
+
<w:nsid w:val="FFFFFF83"/>
|
|
116
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
117
|
+
<w:tmpl w:val="3D1EFFD4"/>
|
|
118
|
+
<w:lvl w:ilvl="0">
|
|
119
|
+
<w:start w:val="1"/>
|
|
120
|
+
<w:numFmt w:val="bullet"/>
|
|
121
|
+
<w:pStyle w:val="ListBullet2"/>
|
|
122
|
+
<w:lvlText w:val=""/>
|
|
123
|
+
<w:lvlJc w:val="left"/>
|
|
124
|
+
<w:pPr>
|
|
125
|
+
<w:tabs>
|
|
126
|
+
<w:tab w:val="num" w:pos="720"/>
|
|
127
|
+
</w:tabs>
|
|
128
|
+
<w:ind w:left="720" w:hanging="360"/>
|
|
129
|
+
</w:pPr>
|
|
130
|
+
<w:rPr>
|
|
131
|
+
<w:rFonts w:ascii="Symbol" w:hAnsi="Symbol" w:hint="default"/>
|
|
132
|
+
</w:rPr>
|
|
133
|
+
</w:lvl>
|
|
134
|
+
</w:abstractNum>
|
|
135
|
+
<w:abstractNum w:abstractNumId="7">
|
|
136
|
+
<w:nsid w:val="FFFFFF88"/>
|
|
137
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
138
|
+
<w:tmpl w:val="D0A62B40"/>
|
|
139
|
+
<w:lvl w:ilvl="0">
|
|
140
|
+
<w:start w:val="1"/>
|
|
141
|
+
<w:numFmt w:val="decimal"/>
|
|
142
|
+
<w:pStyle w:val="ListNumber"/>
|
|
143
|
+
<w:lvlText w:val="%1."/>
|
|
144
|
+
<w:lvlJc w:val="left"/>
|
|
145
|
+
<w:pPr>
|
|
146
|
+
<w:tabs>
|
|
147
|
+
<w:tab w:val="num" w:pos="360"/>
|
|
148
|
+
</w:tabs>
|
|
149
|
+
<w:ind w:left="360" w:hanging="360"/>
|
|
150
|
+
</w:pPr>
|
|
151
|
+
</w:lvl>
|
|
152
|
+
</w:abstractNum>
|
|
153
|
+
<w:abstractNum w:abstractNumId="8">
|
|
154
|
+
<w:nsid w:val="FFFFFF89"/>
|
|
155
|
+
<w:multiLevelType w:val="singleLevel"/>
|
|
156
|
+
<w:tmpl w:val="29761A62"/>
|
|
157
|
+
<w:lvl w:ilvl="0">
|
|
158
|
+
<w:start w:val="1"/>
|
|
159
|
+
<w:numFmt w:val="bullet"/>
|
|
160
|
+
<w:pStyle w:val="ListBullet"/>
|
|
161
|
+
<w:lvlText w:val=""/>
|
|
162
|
+
<w:lvlJc w:val="left"/>
|
|
163
|
+
<w:pPr>
|
|
164
|
+
<w:tabs>
|
|
165
|
+
<w:tab w:val="num" w:pos="360"/>
|
|
166
|
+
</w:tabs>
|
|
167
|
+
<w:ind w:left="360" w:hanging="360"/>
|
|
168
|
+
</w:pPr>
|
|
169
|
+
<w:rPr>
|
|
170
|
+
<w:rFonts w:ascii="Symbol" w:hAnsi="Symbol" w:hint="default"/>
|
|
171
|
+
</w:rPr>
|
|
172
|
+
</w:lvl>
|
|
173
|
+
</w:abstractNum>
|
|
174
|
+
<w:num w:numId="1">
|
|
175
|
+
<w:abstractNumId w:val="8"/>
|
|
176
|
+
</w:num>
|
|
177
|
+
<w:num w:numId="2">
|
|
178
|
+
<w:abstractNumId w:val="6"/>
|
|
179
|
+
</w:num>
|
|
180
|
+
<w:num w:numId="3">
|
|
181
|
+
<w:abstractNumId w:val="5"/>
|
|
182
|
+
</w:num>
|
|
183
|
+
<w:num w:numId="4">
|
|
184
|
+
<w:abstractNumId w:val="4"/>
|
|
185
|
+
</w:num>
|
|
186
|
+
<w:num w:numId="5">
|
|
187
|
+
<w:abstractNumId w:val="7"/>
|
|
188
|
+
</w:num>
|
|
189
|
+
<w:num w:numId="6">
|
|
190
|
+
<w:abstractNumId w:val="3"/>
|
|
191
|
+
</w:num>
|
|
192
|
+
<w:num w:numId="7">
|
|
193
|
+
<w:abstractNumId w:val="2"/>
|
|
194
|
+
</w:num>
|
|
195
|
+
<w:num w:numId="8">
|
|
196
|
+
<w:abstractNumId w:val="1"/>
|
|
197
|
+
</w:num>
|
|
198
|
+
<w:num w:numId="9">
|
|
199
|
+
<w:abstractNumId w:val="0"/>
|
|
200
|
+
</w:num>
|
|
201
|
+
</w:numbering>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<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:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14">
|
|
3
|
+
<w:zoom w:val="bestFit"/>
|
|
4
|
+
<w:proofState w:spelling="clean" w:grammar="clean"/>
|
|
5
|
+
<w:defaultTabStop w:val="720"/>
|
|
6
|
+
<w:characterSpacingControl w:val="doNotCompress"/>
|
|
7
|
+
<w:savePreviewPicture/>
|
|
8
|
+
<w:compat>
|
|
9
|
+
<w:useFELayout/>
|
|
10
|
+
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
|
|
11
|
+
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
12
|
+
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
13
|
+
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
14
|
+
</w:compat>
|
|
15
|
+
<w:rsids>
|
|
16
|
+
<w:rsidRoot w:val="00B47730"/>
|
|
17
|
+
<w:rsid w:val="00034616"/>
|
|
18
|
+
<w:rsid w:val="0006063C"/>
|
|
19
|
+
<w:rsid w:val="0015074B"/>
|
|
20
|
+
<w:rsid w:val="0029639D"/>
|
|
21
|
+
<w:rsid w:val="00326F90"/>
|
|
22
|
+
<w:rsid w:val="00AA1D8D"/>
|
|
23
|
+
<w:rsid w:val="00B47730"/>
|
|
24
|
+
<w:rsid w:val="00CB0664"/>
|
|
25
|
+
<w:rsid w:val="00FC693F"/>
|
|
26
|
+
</w:rsids>
|
|
27
|
+
<m:mathPr>
|
|
28
|
+
<m:mathFont m:val="Cambria Math"/>
|
|
29
|
+
<m:brkBin m:val="before"/>
|
|
30
|
+
<m:brkBinSub m:val="--"/>
|
|
31
|
+
<m:smallFrac m:val="0"/>
|
|
32
|
+
<m:dispDef/>
|
|
33
|
+
<m:lMargin m:val="0"/>
|
|
34
|
+
<m:rMargin m:val="0"/>
|
|
35
|
+
<m:defJc m:val="centerGroup"/>
|
|
36
|
+
<m:wrapIndent m:val="1440"/>
|
|
37
|
+
<m:intLim m:val="subSup"/>
|
|
38
|
+
<m:naryLim m:val="undOvr"/>
|
|
39
|
+
</m:mathPr>
|
|
40
|
+
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/>
|
|
41
|
+
<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"/>
|
|
42
|
+
<w:doNotAutoCompressPictures/>
|
|
43
|
+
<w:shapeDefaults>
|
|
44
|
+
<o:shapedefaults v:ext="edit" spidmax="1027"/>
|
|
45
|
+
<o:shapelayout v:ext="edit">
|
|
46
|
+
<o:idmap v:ext="edit" data="1"/>
|
|
47
|
+
</o:shapelayout>
|
|
48
|
+
</w:shapeDefaults>
|
|
49
|
+
<w:decimalSymbol w:val="."/>
|
|
50
|
+
<w:listSeparator w:val=","/>
|
|
51
|
+
<w14:docId w14:val="24062061"/>
|
|
52
|
+
<w14:defaultImageDpi w14:val="300"/>
|
|
53
|
+
</w:settings>
|