8000 rfctr: extract default .docx template to directory · python-openxml/python-docx@ada86c3 · GitHub
[go: up one dir, main page]

Skip to content

Commit ada86c3

Browse files
committed
rfctr: extract default .docx template to directory
Maintaining the default document template as a directory allows its individual parts (XML files) to be curated like code, with line-changes tracked by Git. Extract the default template to a directory and load that directory as the default when no template document is specified to the `Document()` constructor. Also add Header and Footer styles.
1 parent 5a31034 commit ada86c3

File tree

21 files changed

+24393
-2
lines changed

21 files changed

+24393
-2
lines changed

docx/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ def _default_docx_path():
3434
Return the path to the built-in default .docx package.
3535
"""
3636
_thisdir = os.path.split(__file__)[0]
37-
return os.path.join(_thisdir, 'templates', 'default.docx')
37+
return os.path.join(_thisdir, 'templates', 'default-docx-template')

docx/styles/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ class BabelFish(object):
1616
"""
1717

1818
style_aliases = (
19-
('Caption', 'caption'),
19+
('Caption', 'caption'),
20+
('Footer', 'footer'),
21+
('Header', 'header'),
2022
('Heading 1', 'heading 1'),
2123
('Heading 2', 'heading 2'),
2224
('Heading 3', 'heading 3'),
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
3+
<Default Extension="xml" ContentType="application/xml"/>
4+
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
5+
<Default Extension="jpeg" ContentType="image/jpeg"/>
6+
<Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/>
7+
<Override PartName="/customXml/itemProps1.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/>
8+
<Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"/>
9+
<Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/>
10+
<Override PartName="/word/stylesWithEffects.xml" ContentType="application/vnd.ms-word.stylesWithEffects+xml"/>
11+
<Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/>
12+
<Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/>
13+
<Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/>
14+
<Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/>
15+
<Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
16+
<Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
17+
</Types>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3+
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
4+
<Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
5+
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
6+
<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail" Target="docProps/thumbnail.jpeg"/>
7+
</Relationships>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3+
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/>
4+
</Relationships>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<b:Sources xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" SelectedStyle="/APA.XSL" StyleName="APA"/>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<ds:datastoreItem xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml" ds:itemID="{EF278816-EC6F-A645-907D-7F25AECB1D4A}">
3+
<ds:schemaRefs>
4+
<ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
5+
</ds:schemaRefs>
6+
</ds:datastoreItem>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
3+
<Template>Normal.dotm</Template>
4+
<TotalTime>0</TotalTime>
5+
<Pages>1</Pages>
6+
<Words>0</Words>
7+
<Characters>0</Characters>
8+
<Application>Microsoft Macintosh Word</Application>
9+
<DocSecurity>0</DocSecurity>
10+
<Lines>0</Lines>
11+
<Paragraphs>0</Paragraphs>
12+
<ScaleCrop>false</ScaleCrop>
13+
<HeadingPairs>
14+
<vt:vector size="2" baseType="variant">
15+
<vt:variant>
16+
<vt:lpstr>Title</vt:lpstr>
17+
</vt:variant>
18+
<vt:variant>
19+
<vt:i4>1</vt:i4>
20+
</vt:variant>
21+
</vt:vector>
22+
</HeadingPairs>
23+
<TitlesOfParts>
24+
<vt:vector size="1" baseType="lpstr">
25+
<vt:lpstr/>
26+
</vt:vector>
27+
</TitlesOfParts>
28+
<Manager/>
29+
<Company/>
30+
<LinksUpToDate>false</LinksUpToDate>
31+
<CharactersWithSpaces>0</CharactersWithSpaces>
32+
<SharedDoc>false</SharedDoc>
33+
<HyperlinkBase/>
34+
<HyperlinksChanged>false</HyperlinksChanged>
35+
<AppVersion>14.0000</AppVersion>
36+
</Properties>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<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">
3+
<dc:title/>
4+
<dc:subject/>
5+
<dc:creator>python-docx</dc:creator>
6+
<cp:keywords/>
7+
<dc:description>generated by python-docx</dc:description>
8+
<cp:lastModifiedBy/>
9+
<cp:revision>1</cp:revision>
10+
<dcterms:created xsi:type="dcterms:W3CDTF">2013-12-23T23:15:00Z</dcterms:created>
11+
<dcterms:modified xsi:type="dcterms:W3CDTF">2013-12-23T23:15:00Z</dcterms:modified>
12+
<cp:category/>
13+
</cp:coreProperties>
Loading
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2+
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3+
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
4+
<Relationship Id="rId4" Type="http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects" Target="stylesWithEffects.xml"/>
5+
<Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
6+
<Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
7+
<Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
8+
<Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
9+
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/>
10+
<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/>
11+
</Relationships>
Lines changed: 11 additions & 0 deletions
Original file line n D411 umberDiff line numberDiff line change
@@ -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>
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 commit comments

Comments
 (0)
0