@adobe/helix-md2docx 1.0.1
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.
- package/CHANGELOG.md +6 -0
- package/CODE_OF_CONDUCT.md +74 -0
- package/CONTRIBUTING.md +74 -0
- package/LICENSE.txt +264 -0
- package/README.md +33 -0
- package/package.json +70 -0
- package/src/cli/convert2docx.js +96 -0
- package/src/index.d.ts +13 -0
- package/src/index.js +13 -0
- package/src/mdast2docx/all.js +31 -0
- package/src/mdast2docx/default-numbering.js +79 -0
- package/src/mdast2docx/handlers/break.js +22 -0
- package/src/mdast2docx/handlers/characterStyle.js +29 -0
- package/src/mdast2docx/handlers/code.js +27 -0
- package/src/mdast2docx/handlers/heading.js +32 -0
- package/src/mdast2docx/handlers/html.js +35 -0
- package/src/mdast2docx/handlers/image.js +90 -0
- package/src/mdast2docx/handlers/index.js +56 -0
- package/src/mdast2docx/handlers/inlineCode.js +21 -0
- package/src/mdast2docx/handlers/link.js +63 -0
- package/src/mdast2docx/handlers/list.js +39 -0
- package/src/mdast2docx/handlers/listItem.js +16 -0
- package/src/mdast2docx/handlers/paragraph.js +52 -0
- package/src/mdast2docx/handlers/paragraphStyle.js +21 -0
- package/src/mdast2docx/handlers/root.js +16 -0
- package/src/mdast2docx/handlers/table.js +54 -0
- package/src/mdast2docx/handlers/tableCell.js +51 -0
- package/src/mdast2docx/handlers/tableRow.js +28 -0
- package/src/mdast2docx/handlers/text.js +24 -0
- package/src/mdast2docx/handlers/thematicBreak.js +24 -0
- package/src/mdast2docx/hast-table-handler.js +145 -0
- package/src/mdast2docx/index.d.ts +21 -0
- package/src/mdast2docx/index.js +88 -0
- package/src/mdast2docx/mdast-download-images.js +92 -0
- package/src/mdast2docx/mdast-sanitize-html.js +112 -0
- package/src/mdast2docx/template/[Content_Types].xml +41 -0
- package/src/mdast2docx/template/docProps/app.xml +20 -0
- package/src/mdast2docx/template/docProps/core.xml +12 -0
- package/src/mdast2docx/template/word/_rels/document.xml.rels +51 -0
- package/src/mdast2docx/template/word/_rels/settings.xml.rels +7 -0
- package/src/mdast2docx/template/word/document.xml +1116 -0
- package/src/mdast2docx/template/word/endnotes.xml +56 -0
- package/src/mdast2docx/template/word/fontTable.xml +58 -0
- package/src/mdast2docx/template/word/footer1.xml +39 -0
- package/src/mdast2docx/template/word/footer2.xml +39 -0
- package/src/mdast2docx/template/word/footer3.xml +39 -0
- package/src/mdast2docx/template/word/footnotes.xml +56 -0
- package/src/mdast2docx/template/word/header1.xml +39 -0
- package/src/mdast2docx/template/word/header2.xml +39 -0
- package/src/mdast2docx/template/word/header3.xml +39 -0
- package/src/mdast2docx/template/word/media/image1.png +0 -0
- package/src/mdast2docx/template/word/numbering.xml +277 -0
- package/src/mdast2docx/template/word/settings.xml +91 -0
- package/src/mdast2docx/template/word/styles.xml +1084 -0
- package/src/mdast2docx/template/word/theme/theme1.xml +296 -0
- package/src/mdast2docx/template/word/webSettings.xml +40 -0
- package/src/mdast2docx/template.docx +0 -0
- package/src/mdast2docx/utils.js +22 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:endnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:endnote w:type="separator" w:id="-1">
|
|
35
|
+
<w:p w14:paraId="7F85805D" w14:textId="77777777" w:rsidR="00D52A4F"
|
|
36
|
+
w:rsidRDefault="00D52A4F">
|
|
37
|
+
<w:pPr>
|
|
38
|
+
<w:spacing w:after="0"/>
|
|
39
|
+
</w:pPr>
|
|
40
|
+
<w:r>
|
|
41
|
+
<w:separator/>
|
|
42
|
+
</w:r>
|
|
43
|
+
</w:p>
|
|
44
|
+
</w:endnote>
|
|
45
|
+
<w:endnote w:type="continuationSeparator" w:id="0">
|
|
46
|
+
<w:p w14:paraId="24313E5D" w14:textId="77777777" w:rsidR="00D52A4F"
|
|
47
|
+
w:rsidRDefault="00D52A4F">
|
|
48
|
+
<w:pPr>
|
|
49
|
+
<w:spacing w:after="0"/>
|
|
50
|
+
</w:pPr>
|
|
51
|
+
<w:r>
|
|
52
|
+
<w:continuationSeparator/>
|
|
53
|
+
</w:r>
|
|
54
|
+
</w:p>
|
|
55
|
+
</w:endnote>
|
|
56
|
+
</w:endnotes>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
3
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
4
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
5
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
6
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
7
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
8
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
9
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
10
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
11
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
|
12
|
+
<w:font w:name="Times New Roman">
|
|
13
|
+
<w:panose1 w:val="02020603050405020304"/>
|
|
14
|
+
<w:charset w:val="00"/>
|
|
15
|
+
<w:family w:val="roman"/>
|
|
16
|
+
<w:pitch w:val="variable"/>
|
|
17
|
+
<w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000"
|
|
18
|
+
w:csb0="000001FF" w:csb1="00000000"/>
|
|
19
|
+
</w:font>
|
|
20
|
+
<w:font w:name="Courier New">
|
|
21
|
+
<w:panose1 w:val="02070309020205020404"/>
|
|
22
|
+
<w:charset w:val="00"/>
|
|
23
|
+
<w:family w:val="modern"/>
|
|
24
|
+
<w:pitch w:val="fixed"/>
|
|
25
|
+
<w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000"
|
|
26
|
+
w:csb0="000001FF" w:csb1="00000000"/>
|
|
27
|
+
</w:font>
|
|
28
|
+
<w:font w:name="Yu Gothic Light">
|
|
29
|
+
<w:altName w:val="游ゴシック Light"/>
|
|
30
|
+
<w:panose1 w:val="020B0300000000000000"/>
|
|
31
|
+
<w:charset w:val="80"/>
|
|
32
|
+
<w:family w:val="roman"/>
|
|
33
|
+
<w:pitch w:val="default"/>
|
|
34
|
+
</w:font>
|
|
35
|
+
<w:font w:name="Calibri Light">
|
|
36
|
+
<w:panose1 w:val="020F0302020204030204"/>
|
|
37
|
+
<w:charset w:val="00"/>
|
|
38
|
+
<w:family w:val="swiss"/>
|
|
39
|
+
<w:pitch w:val="variable"/>
|
|
40
|
+
<w:sig w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"
|
|
41
|
+
w:csb0="000001FF" w:csb1="00000000"/>
|
|
42
|
+
</w:font>
|
|
43
|
+
<w:font w:name="Yu Mincho">
|
|
44
|
+
<w:altName w:val="游明朝"/>
|
|
45
|
+
<w:panose1 w:val="02020400000000000000"/>
|
|
46
|
+
<w:charset w:val="80"/>
|
|
47
|
+
<w:family w:val="roman"/>
|
|
48
|
+
<w:pitch w:val="default"/>
|
|
49
|
+
</w:font>
|
|
50
|
+
<w:font w:name="Calibri">
|
|
51
|
+
<w:panose1 w:val="020F0502020204030204"/>
|
|
52
|
+
<w:charset w:val="00"/>
|
|
53
|
+
<w:family w:val="swiss"/>
|
|
54
|
+
<w:pitch w:val="variable"/>
|
|
55
|
+
<w:sig w:usb0="E0002AFF" w:usb1="C000ACFF" w:usb2="00000009" w:usb3="00000000"
|
|
56
|
+
w:csb0="000001FF" w:csb1="00000000"/>
|
|
57
|
+
</w:font>
|
|
58
|
+
</w:fonts>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="11F06C14" w14:textId="77777777" w:rsidR="003327EF" w:rsidRDefault="003327EF">
|
|
35
|
+
<w:pPr>
|
|
36
|
+
<w:pStyle w:val="Footer"/>
|
|
37
|
+
</w:pPr>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:ftr>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="719554FB" w14:textId="77777777" w:rsidR="00706BFD" w:rsidRDefault="006E467F">
|
|
35
|
+
<w:r>
|
|
36
|
+
<w:cr/>
|
|
37
|
+
</w:r>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:ftr>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="66D1432B" w14:textId="77777777" w:rsidR="003327EF" w:rsidRDefault="003327EF">
|
|
35
|
+
<w:pPr>
|
|
36
|
+
<w:pStyle w:val="Footer"/>
|
|
37
|
+
</w:pPr>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:ftr>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:footnote w:type="separator" w:id="-1">
|
|
35
|
+
<w:p w14:paraId="5940208C" w14:textId="77777777" w:rsidR="00D52A4F"
|
|
36
|
+
w:rsidRDefault="00D52A4F">
|
|
37
|
+
<w:pPr>
|
|
38
|
+
<w:spacing w:after="0"/>
|
|
39
|
+
</w:pPr>
|
|
40
|
+
<w:r>
|
|
41
|
+
<w:separator/>
|
|
42
|
+
</w:r>
|
|
43
|
+
</w:p>
|
|
44
|
+
</w:footnote>
|
|
45
|
+
<w:footnote w:type="continuationSeparator" w:id="0">
|
|
46
|
+
<w:p w14:paraId="472D8556" w14:textId="77777777" w:rsidR="00D52A4F"
|
|
47
|
+
w:rsidRDefault="00D52A4F">
|
|
48
|
+
<w:pPr>
|
|
49
|
+
<w:spacing w:after="0"/>
|
|
50
|
+
</w:pPr>
|
|
51
|
+
<w:r>
|
|
52
|
+
<w:continuationSeparator/>
|
|
53
|
+
</w:r>
|
|
54
|
+
</w:p>
|
|
55
|
+
</w:footnote>
|
|
56
|
+
</w:footnotes>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:hdr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="1A556127" w14:textId="77777777" w:rsidR="003327EF" w:rsidRDefault="003327EF">
|
|
35
|
+
<w:pPr>
|
|
36
|
+
<w:pStyle w:val="Header"/>
|
|
37
|
+
</w:pPr>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:hdr>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:hdr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="4A716257" w14:textId="77777777" w:rsidR="00706BFD" w:rsidRDefault="006E467F">
|
|
35
|
+
<w:r>
|
|
36
|
+
<w:cr/>
|
|
37
|
+
</w:r>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:hdr>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:hdr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:p w14:paraId="173839ED" w14:textId="77777777" w:rsidR="003327EF" w:rsidRDefault="003327EF">
|
|
35
|
+
<w:pPr>
|
|
36
|
+
<w:pStyle w:val="Header"/>
|
|
37
|
+
</w:pPr>
|
|
38
|
+
</w:p>
|
|
39
|
+
</w:hdr>
|
|
Binary file
|