最简单的java生成word文档方法

 更新时间:2021年08月17日 10:00:48   作者:最菜的黑客  
这篇文章主要介绍了java生成word文档最简单的方法,首先说明,使用该方法时,尽量不要使用wps新建word文档,经测试,手机不能兼容,出现很多格式问题,office则手机可以很好的兼容,所以,本文以office做教程

1.首先新建一个word文档,然后设计好格式,比如说我的标题是黑体二号,居中对其,正文是宋体四号,如下

2.另存为xml格式(文件->另存为)的文件,如下图

3.使用txt打开保存的xml文件,复制完,贴到你的代码里,如图 

 

 4.替换内容,Ctrl+F搜索标题(第一步我输入的),把标题换成你要显示的动态标题,把 正文替换成你想要的动态内容,如下

 5.设置相应头生成doc文件

6.测试:在浏览器输入http:127.0.0.1:8080/createDoc,结果如下:

 

7.分享代码

(1)以下是生成的xml文件内容

<?xml version="1.0" encoding="UTF-8" standalone="true"?>
 
<?mso-application progid="Word.Document"?>
 
-<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
 
 
-<pkg:part pkg:padding="512" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/_rels/.rels">
 
 
-<pkg:xmlData>
 
 
-<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
 
<Relationship Target="docProps/app.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Id="rId3"/>
 
<Relationship Target="docProps/core.xml" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Id="rId2"/>
 
<Relationship Target="word/document.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Id="rId1"/>
 
</Relationships>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:padding="256" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/word/_rels/document.xml.rels">
 
 
-<pkg:xmlData>
 
 
-<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
 
<Relationship Target="settings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Id="rId3"/>
 
<Relationship Target="stylesWithEffects.xml" Type="http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects" Id="rId2"/>
 
<Relationship Target="styles.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Id="rId1"/>
 
<Relationship Target="theme/theme1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Id="rId6"/>
 
<Relationship Target="fontTable.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Id="rId5"/>
 
<Relationship Target="webSettings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Id="rId4"/>
 
</Relationships>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" pkg:name="/word/document.xml">
 
 
-<pkg:xmlData>
 
 
-<w:document xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" mc:Ignorable="w14 wp14">
 
 
-<w:body>
 
 
-<w:p w:rsidP="007B6C30" w:rsidRDefault="007B6C30" w:rsidR="007B455B">
 
 
-<w:pPr>
 
<w:jc w:val="center"/>
 
 
-<w:rPr>
 
<w:rFonts w:hint="eastAsia" w:hAnsi="黑体" w:eastAsia="黑体" w:ascii="黑体"/>
 
<w:sz w:val="44"/>
 
<w:szCs w:val="44"/>
 
</w:rPr>
 
</w:pPr>
 
 
-<w:r w:rsidRPr="007B6C30">
 
 
-<w:rPr>
 
<w:rFonts w:hAnsi="黑体" w:eastAsia="黑体" w:ascii="黑体"/>
 
<w:sz w:val="44"/>
 
<w:szCs w:val="44"/>
 
</w:rPr>
 
<w:t>标题</w:t>
 
</w:r>
 
</w:p>
 
 
-<w:p w:rsidP="007B6C30" w:rsidRDefault="007B6C30" w:rsidR="007B6C30" w:rsidRPr="007B6C30">
 
 
-<w:pPr>
 
 
-<w:rPr>
 
<w:rFonts w:hAnsiTheme="majorEastAsia" w:eastAsiaTheme="majorEastAsia" w:asciiTheme="majorEastAsia"/>
 
<w:sz w:val="28"/>
 
<w:szCs w:val="28"/>
 
</w:rPr>
 
</w:pPr>
 
 
-<w:r>
 
 
-<w:rPr>
 
<w:rFonts w:hint="eastAsia" w:hAnsi="黑体" w:eastAsia="黑体" w:ascii="黑体"/>
 
<w:sz w:val="44"/>
 
<w:szCs w:val="44"/>
 
</w:rPr>
 
<w:t xml:space="preserve"> </w:t>
 
</w:r>
 
 
-<w:r w:rsidRPr="007B6C30">
 
 
-<w:rPr>
 
<w:rFonts w:hint="eastAsia" w:hAnsiTheme="majorEastAsia" w:eastAsiaTheme="majorEastAsia" w:asciiTheme="majorEastAsia"/>
 
<w:sz w:val="28"/>
 
<w:szCs w:val="28"/>
 
</w:rPr>
 
<w:t>正文</w:t>
 
</w:r>
 
 
-<w:r w:rsidRPr="007B6C30">
 
 
-<w:rPr>
 
<w:rFonts w:hint="eastAsia" w:hAnsiTheme="majorEastAsia" w:eastAsiaTheme="majorEastAsia" w:asciiTheme="majorEastAsia"/>
 
<w:sz w:val="28"/>
 
<w:szCs w:val="28"/>
 
</w:rPr>
 
<w:t>正文正文正文正文正文正文正文</w:t>
 
</w:r>
 
<w:bookmarkStart w:name="_GoBack" w:id="0"/>
 
<w:bookmarkEnd w:id="0"/>
 
 
-<w:r w:rsidRPr="007B6C30">
 
 
-<w:rPr>
 
<w:rFonts w:hint="eastAsia" w:hAnsiTheme="majorEastAsia" w:eastAsiaTheme="majorEastAsia" w:asciiTheme="majorEastAsia"/>
 
<w:sz w:val="28"/>
 
<w:szCs w:val="28"/>
 
</w:rPr>
 
<w:t>正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文正文</w:t>
 
</w:r>
 
</w:p>
 
 
-<w:sectPr w:rsidR="007B6C30" w:rsidRPr="007B6C30">
 
<w:pgSz w:w="11906" w:h="16838"/>
 
<w:pgMar w:gutter="0" w:footer="992" w:header="851" w:left="1800" w:bottom="1440" w:right="1800" w:top="1440"/>
 
<w:cols w:space="425"/>
 
<w:docGrid w:linePitch="312" w:type="lines"/>
 
</w:sectPr>
 
</w:body>
 
</w:document>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml" pkg:name="/word/theme/theme1.xml">
 
 
-<pkg:xmlData>
 
 
-<a:theme name="Office 主题​​" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
 
 
-<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="1F497D"/>
 
</a:dk2>
 
 
-<a:lt2>
 
<a:srgbClr val="EEECE1"/>
 
</a:lt2>
 
 
-<a:accent1>
 
<a:srgbClr val="4F81BD"/>
 
</a:accent1>
 
 
-<a:accent2>
 
<a:srgbClr val="C0504D"/>
 
</a:accent2>
 
 
-<a:accent3>
 
<a:srgbClr val="9BBB59"/>
 
</a:accent3>
 
 
-<a:accent4>
 
<a:srgbClr val="8064A2"/>
 
</a:accent4>
 
 
-<a:accent5>
 
<a:srgbClr val="4BACC6"/>
 
</a:accent5>
 
 
-<a:accent6>
 
<a:srgbClr val="F79646"/>
 
</a:accent6>
 
 
-<a:hlink>
 
<a:srgbClr val="0000FF"/>
 
</a:hlink>
 
 
-<a:folHlink>
 
<a:srgbClr val="800080"/>
 
</a:folHlink>
 
</a:clrScheme>
 
 
-<a:fontScheme name="Office">
 
 
-<a:majorFont>
 
<a:latin typeface="Cambria"/>
 
<a:ea typeface=""/>
 
<a:cs typeface=""/>
 
<a:font typeface="MS ゴシック" script="Jpan"/>
 
<a:font typeface="맑은 고딕" script="Hang"/>
 
<a:font typeface="宋体" script="Hans"/>
 
<a:font typeface="新細明體" script="Hant"/>
 
<a:font typeface="Times New Roman" script="Arab"/>
 
<a:font typeface="Times New Roman" script="Hebr"/>
 
<a:font typeface="Angsana New" script="Thai"/>
 
<a:font typeface="Nyala" script="Ethi"/>
 
<a:font typeface="Vrinda" script="Beng"/>
 
<a:font typeface="Shruti" script="Gujr"/>
 
<a:font typeface="MoolBoran" script="Khmr"/>
 
<a:font typeface="Tunga" script="Knda"/>
 
<a:font typeface="Raavi" script="Guru"/>
 
<a:font typeface="Euphemia" script="Cans"/>
 
<a:font typeface="Plantagenet Cherokee" script="Cher"/>
 
<a:font typeface="Microsoft Yi Baiti" script="Yiii"/>
 
<a:font typeface="Microsoft Himalaya" script="Tibt"/>
 
<a:font typeface="MV Boli" script="Thaa"/>
 
<a:font typeface="Mangal" script="Deva"/>
 
<a:font typeface="Gautami" script="Telu"/>
 
<a:font typeface="Latha" script="Taml"/>
 
<a:font typeface="Estrangelo Edessa" script="Syrc"/>
 
<a:font typeface="Kalinga" script="Orya"/>
 
<a:font typeface="Kartika" script="Mlym"/>
 
<a:font typeface="DokChampa" script="Laoo"/>
 
<a:font typeface="Iskoola Pota" script="Sinh"/>
 
<a:font typeface="Mongolian Baiti" script="Mong"/>
 
<a:font typeface="Times New Roman" script="Viet"/>
 
<a:font typeface="Microsoft Uighur" script="Uigh"/>
 
<a:font typeface="Sylfaen" script="Geor"/>
 
</a:majorFont>
 
 
-<a:minorFont>
 
<a:latin typeface="Calibri"/>
 
<a:ea typeface=""/>
 
<a:cs typeface=""/>
 
<a:font typeface="MS 明朝" script="Jpan"/>
 
<a:font typeface="맑은 고딕" script="Hang"/>
 
<a:font typeface="宋体" script="Hans"/>
 
<a:font typeface="新細明體" script="Hant"/>
 
<a:font typeface="Arial" script="Arab"/>
 
<a:font typeface="Arial" script="Hebr"/>
 
<a:font typeface="Cordia New" script="Thai"/>
 
<a:font typeface="Nyala" script="Ethi"/>
 
<a:font typeface="Vrinda" script="Beng"/>
 
<a:font typeface="Shruti" script="Gujr"/>
 
<a:font typeface="DaunPenh" script="Khmr"/>
 
<a:font typeface="Tunga" script="Knda"/>
 
<a:font typeface="Raavi" script="Guru"/>
 
<a:font typeface="Euphemia" script="Cans"/>
 
<a:font typeface="Plantagenet Cherokee" script="Cher"/>
 
<a:font typeface="Microsoft Yi Baiti" script="Yiii"/>
 
<a:font typeface="Microsoft Himalaya" script="Tibt"/>
 
<a:font typeface="MV Boli" script="Thaa"/>
 
<a:font typeface="Mangal" script="Deva"/>
 
<a:font typeface="Gautami" script="Telu"/>
 
<a:font typeface="Latha" script="Taml"/>
 
<a:font typeface="Estrangelo Edessa" script="Syrc"/>
 
<a:font typeface="Kalinga" script="Orya"/>
 
<a:font typeface="Kartika" script="Mlym"/>
 
<a:font typeface="DokChampa" script="Laoo"/>
 
<a:font typeface="Iskoola Pota" script="Sinh"/>
 
<a:font typeface="Mongolian Baiti" script="Mong"/>
 
<a:font typeface="Arial" script="Viet"/>
 
<a:font typeface="Microsoft Uighur" script="Uigh"/>
 
<a:font typeface="Sylfaen" script="Geor"/>
 
</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:tint val="50000"/>
 
<a:satMod val="300000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="35000">
 
 
-<a:schemeClr val="phClr">
 
<a:tint val="37000"/>
 
<a:satMod val="300000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="100000">
 
 
-<a:schemeClr val="phClr">
 
<a:tint val="15000"/>
 
<a:satMod val="350000"/>
 
</a:schemeClr>
 
</a:gs>
 
</a:gsLst>
 
<a:lin scaled="1" ang="16200000"/>
 
</a:gradFill>
 
 
-<a:gradFill rotWithShape="1">
 
 
-<a:gsLst>
 
 
-<a:gs pos="0">
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="51000"/>
 
<a:satMod val="130000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="80000">
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="93000"/>
 
<a:satMod val="130000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="100000">
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="94000"/>
 
<a:satMod val="135000"/>
 
</a:schemeClr>
 
</a:gs>
 
</a:gsLst>
 
<a:lin scaled="0" ang="16200000"/>
 
</a:gradFill>
 
</a:fillStyleLst>
 
 
-<a:lnStyleLst>
 
 
-<a:ln w="9525" algn="ctr" cmpd="sng" cap="flat">
 
 
-<a:solidFill>
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="95000"/>
 
<a:satMod val="105000"/>
 
</a:schemeClr>
 
</a:solidFill>
 
<a:prstDash val="solid"/>
 
</a:ln>
 
 
-<a:ln w="25400" algn="ctr" cmpd="sng" cap="flat">
 
 
-<a:solidFill>
 
<a:schemeClr val="phClr"/>
 
</a:solidFill>
 
<a:prstDash val="solid"/>
 
</a:ln>
 
 
-<a:ln w="38100" algn="ctr" cmpd="sng" cap="flat">
 
 
-<a:solidFill>
 
<a:schemeClr val="phClr"/>
 
</a:solidFill>
 
<a:prstDash val="solid"/>
 
</a:ln>
 
</a:lnStyleLst>
 
 
-<a:effectStyleLst>
 
 
-<a:effectStyle>
 
 
-<a:effectLst>
 
 
-<a:outerShdw dir="5400000" rotWithShape="0" dist="20000" blurRad="40000">
 
 
-<a:srgbClr val="000000">
 
<a:alpha val="38000"/>
 
</a:srgbClr>
 
</a:outerShdw>
 
</a:effectLst>
 
</a:effectStyle>
 
 
-<a:effectStyle>
 
 
-<a:effectLst>
 
 
-<a:outerShdw dir="5400000" rotWithShape="0" dist="23000" blurRad="40000">
 
 
-<a:srgbClr val="000000">
 
<a:alpha val="35000"/>
 
</a:srgbClr>
 
</a:outerShdw>
 
</a:effectLst>
 
</a:effectStyle>
 
 
-<a:effectStyle>
 
 
-<a:effectLst>
 
 
-<a:outerShdw dir="5400000" rotWithShape="0" dist="23000" blurRad="40000">
 
 
-<a:srgbClr val="000000">
 
<a:alpha val="35000"/>
 
</a:srgbClr>
 
</a:outerShdw>
 
</a:effectLst>
 
 
-<a:scene3d>
 
 
-<a:camera prst="orthographicFront">
 
<a:rot rev="0" lon="0" lat="0"/>
 
</a:camera>
 
 
-<a:lightRig dir="t" rig="threePt">
 
<a:rot rev="1200000" lon="0" lat="0"/>
 
</a:lightRig>
 
</a:scene3d>
 
 
-<a:sp3d>
 
<a:bevelT w="63500" h="25400"/>
 
</a:sp3d>
 
</a:effectStyle>
 
</a:effectStyleLst>
 
 
-<a:bgFillStyleLst>
 
 
-<a:solidFill>
 
<a:schemeClr val="phClr"/>
 
</a:solidFill>
 
 
-<a:gradFill rotWithShape="1">
 
 
-<a:gsLst>
 
 
-<a:gs pos="0">
 
 
-<a:schemeClr val="phClr">
 
<a:tint val="40000"/>
 
<a:satMod val="350000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="40000">
 
 
-<a:schemeClr val="phClr">
 
<a:tint val="45000"/>
 
<a:shade val="99000"/>
 
<a:satMod val="350000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="100000">
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="20000"/>
 
<a:satMod val="255000"/>
 
</a:schemeClr>
 
</a:gs>
 
</a:gsLst>
 
 
-<a:path path="circle">
 
<a:fillToRect r="50000" b="180000" t="-80000" l="50000"/>
 
</a:path>
 
</a:gradFill>
 
 
-<a:gradFill rotWithShape="1">
 
 
-<a:gsLst>
 
 
-<a:gs pos="0">
 
 
-<a:schemeClr val="phClr">
 
<a:tint val="80000"/>
 
<a:satMod val="300000"/>
 
</a:schemeClr>
 
</a:gs>
 
 
-<a:gs pos="100000">
 
 
-<a:schemeClr val="phClr">
 
<a:shade val="30000"/>
 
<a:satMod val="200000"/>
 
</a:schemeClr>
 
</a:gs>
 
</a:gsLst>
 
 
-<a:path path="circle">
 
<a:fillToRect r="50000" b="50000" t="50000" l="50000"/>
 
</a:path>
 
</a:gradFill>
 
</a:bgFillStyleLst>
 
</a:fmtScheme>
 
</a:themeElements>
 
<a:objectDefaults/>
 
<a:extraClrSchemeLst/>
 
</a:theme>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" pkg:name="/word/settings.xml">
 
 
-<pkg:xmlData>
 
 
-<w:settings xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
 
<w:zoom w:percent="119"/>
 
<w:bordersDoNotSurroundHeader/>
 
<w:bordersDoNotSurroundFooter/>
 
<w:defaultTabStop w:val="420"/>
 
<w:drawingGridVerticalSpacing w:val="156"/>
 
<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:val="14" w:uri="http://schemas.microsoft.com/office/word"/>
 
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:val="1" w:uri="http://schemas.microsoft.com/office/word"/>
 
<w:compatSetting w:name="enableOpenTypeFeatures" w:val="1" w:uri="http://schemas.microsoft.com/office/word"/>
 
<w:compatSetting w:name="doNotFlipMirrorIndents" w:val="1" w:uri="http://schemas.microsoft.com/office/word"/>
 
</w:compat>
 
 
-<w:rsids>
 
<w:rsidRoot w:val="00065524"/>
 
<w:rsid w:val="00065524"/>
 
<w:rsid w:val="007B455B"/>
 
<w:rsid w:val="007B6C30"/>
 
</w:rsids>
 
 
-<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="zh-CN"/>
 
<w:clrSchemeMapping w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:accent6="accent6" w:accent5="accent5" w:accent4="accent4" w:accent3="accent3" w:accent2="accent2" w:accent1="accent1" w:t2="dark2" w:bg2="light2" w:t1="dark1" w:bg1="light1"/>
 
 
-<w:shapeDefaults>
 
<o:shapedefaults spidmax="1026" v:ext="edit"/>
 
 
-<o:shapelayout v:ext="edit">
 
<o:idmap v:ext="edit" data="1"/>
 
</o:shapelayout>
 
</w:shapeDefaults>
 
<w:decimalSymbol w:val="."/>
 
<w:listSeparator w:val=","/>
 
</w:settings>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" pkg:name="/word/webSettings.xml">
 
 
-<pkg:xmlData>
 
 
-<w:webSettings xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14">
 
<w:optimizeForBrowser/>
 
<w:allowPNG/>
 
</w:webSettings>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.ms-word.stylesWithEffects+xml" pkg:name="/word/stylesWithEffects.xml">
 
 
-<pkg:xmlData>
 
 
-<w:styles xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" mc:Ignorable="w14 wp14">
 
 
-<w:docDefaults>
 
 
-<w:rPrDefault>
 
 
-<w:rPr>
 
<w:rFonts w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:asciiTheme="minorHAnsi" w:cstheme="minorBidi"/>
 
<w:kern w:val="2"/>
 
<w:sz w:val="21"/>
 
<w:szCs w:val="22"/>
 
<w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
 
</w:rPr>
 
</w:rPrDefault>
 
<w:pPrDefault/>
 
</w:docDefaults>
 
 
-<w:latentStyles w:count="267" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" w:defUIPriority="99" w:defLockedState="0">
 
<w:lsdException w:name="Normal" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"/>
 
<w:lsdException w:name="heading 1" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="9" w:semiHidden="0"/>
 
<w:lsdException w:name="heading 2" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 3" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 4" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 5" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 6" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 7" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 8" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 9" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="toc 1" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 2" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 3" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 4" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 5" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 6" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 7" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 8" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 9" w:uiPriority="39"/>
 
<w:lsdException w:name="caption" w:qFormat="1" w:uiPriority="35"/>
 
<w:lsdException w:name="Title" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="10" w:semiHidden="0"/>
 
<w:lsdException w:name="Default Paragraph Font" w:uiPriority="1"/>
 
<w:lsdException w:name="Subtitle" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="11" w:semiHidden="0"/>
 
<w:lsdException w:name="Strong" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="22" w:semiHidden="0"/>
 
<w:lsdException w:name="Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="20" w:semiHidden="0"/>
 
<w:lsdException w:name="Table Grid" w:unhideWhenUsed="0" w:uiPriority="59" w:semiHidden="0"/>
 
<w:lsdException w:name="Placeholder Text" w:unhideWhenUsed="0"/>
 
<w:lsdException w:name="No Spacing" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="1" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 1" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 1" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 1" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Revision" w:unhideWhenUsed="0"/>
 
<w:lsdException w:name="List Paragraph" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="34" w:semiHidden="0"/>
 
<w:lsdException w:name="Quote" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="29" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Quote" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="30" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 1" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 1" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 1" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 1" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 1" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 2" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 2" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 2" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 2" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 2" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 2" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 2" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 2" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 3" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 3" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 3" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 3" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 3" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 3" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 3" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 3" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 4" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 4" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 4" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 4" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 4" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 4" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 4" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 4" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 5" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 5" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 5" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 5" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 5" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 5" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 5" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 5" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 6" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 6" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 6" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 6" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 6" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 6" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 6" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 6" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="19" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="21" w:semiHidden="0"/>
 
<w:lsdException w:name="Subtle Reference" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="31" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Reference" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="32" w:semiHidden="0"/>
 
<w:lsdException w:name="Book Title" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="33" w:semiHidden="0"/>
 
<w:lsdException w:name="Bibliography" w:uiPriority="37"/>
 
<w:lsdException w:name="TOC Heading" w:qFormat="1" w:uiPriority="39"/>
 
</w:latentStyles>
 
 
-<w:style w:type="paragraph" w:styleId="a" w:default="1">
 
<w:name w:val="Normal"/>
 
<w:qFormat/>
 
 
-<w:pPr>
 
<w:widowControl w:val="0"/>
 
<w:jc w:val="both"/>
 
</w:pPr>
 
</w:style>
 
 
-<w:style w:type="character" w:styleId="a0" w:default="1">
 
<w:name w:val="Default Paragraph Font"/>
 
<w:uiPriority w:val="1"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
</w:style>
 
 
-<w:style w:type="table" w:styleId="a1" w:default="1">
 
<w:name w:val="Normal Table"/>
 
<w:uiPriority w:val="99"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
 
-<w:tblPr>
 
<w:tblInd w:w="0" w:type="dxa"/>
 
 
-<w:tblCellMar>
 
<w:top w:w="0" w:type="dxa"/>
 
<w:left w:w="108" w:type="dxa"/>
 
<w:bottom w:w="0" w:type="dxa"/>
 
<w:right w:w="108" w:type="dxa"/>
 
</w:tblCellMar>
 
</w:tblPr>
 
</w:style>
 
 
-<w:style w:type="numbering" w:styleId="a2" w:default="1">
 
<w:name w:val="No List"/>
 
<w:uiPriority w:val="99"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
</w:style>
 
</w:styles>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:padding="256" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:name="/docProps/core.xml">
 
 
-<pkg:xmlData>
 
 
-<cp:coreProperties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties">
 
<dc:creator>xb21cn</dc:creator>
 
<cp:lastModifiedBy>xb21cn</cp:lastModifiedBy>
 
<cp:revision>2</cp:revision>
 
<dcterms:created xsi:type="dcterms:W3CDTF">2021-08-14T15:14:00Z</dcterms:created>
 
<dcterms:modified xsi:type="dcterms:W3CDTF">2021-08-14T15:14:00Z</dcterms:modified>
 
</cp:coreProperties>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" pkg:name="/word/styles.xml">
 
 
-<pkg:xmlData>
 
 
-<w:styles xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14">
 
 
-<w:docDefaults>
 
 
-<w:rPrDefault>
 
 
-<w:rPr>
 
<w:rFonts w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:asciiTheme="minorHAnsi" w:cstheme="minorBidi"/>
 
<w:kern w:val="2"/>
 
<w:sz w:val="21"/>
 
<w:szCs w:val="22"/>
 
<w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
 
</w:rPr>
 
</w:rPrDefault>
 
<w:pPrDefault/>
 
</w:docDefaults>
 
 
-<w:latentStyles w:count="267" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" w:defUIPriority="99" w:defLockedState="0">
 
<w:lsdException w:name="Normal" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"/>
 
<w:lsdException w:name="heading 1" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="9" w:semiHidden="0"/>
 
<w:lsdException w:name="heading 2" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 3" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 4" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 5" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 6" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 7" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 8" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="heading 9" w:qFormat="1" w:uiPriority="9"/>
 
<w:lsdException w:name="toc 1" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 2" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 3" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 4" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 5" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 6" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 7" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 8" w:uiPriority="39"/>
 
<w:lsdException w:name="toc 9" w:uiPriority="39"/>
 
<w:lsdException w:name="caption" w:qFormat="1" w:uiPriority="35"/>
 
<w:lsdException w:name="Title" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="10" w:semiHidden="0"/>
 
<w:lsdException w:name="Default Paragraph Font" w:uiPriority="1"/>
 
<w:lsdException w:name="Subtitle" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="11" w:semiHidden="0"/>
 
<w:lsdException w:name="Strong" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="22" w:semiHidden="0"/>
 
<w:lsdException w:name="Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="20" w:semiHidden="0"/>
 
<w:lsdException w:name="Table Grid" w:unhideWhenUsed="0" w:uiPriority="59" w:semiHidden="0"/>
 
<w:lsdException w:name="Placeholder Text" w:unhideWhenUsed="0"/>
 
<w:lsdException w:name="No Spacing" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="1" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 1" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 1" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 1" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Revision" w:unhideWhenUsed="0"/>
 
<w:lsdException w:name="List Paragraph" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="34" w:semiHidden="0"/>
 
<w:lsdException w:name="Quote" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="29" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Quote" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="30" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 1" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 1" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 1" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 1" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 1" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 1" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 1" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 2" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 2" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 2" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 2" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 2" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 2" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 2" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 2" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 2" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 2" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 3" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 3" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 3" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 3" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 3" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 3" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 3" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 3" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 3" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 3" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 4" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 4" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 4" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 4" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 4" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 4" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 4" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 4" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 4" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 4" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 5" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 5" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 5" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 5" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 5" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 5" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 5" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 5" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 5" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 5" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Shading Accent 6" w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"/>
 
<w:lsdException w:name="Light List Accent 6" w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"/>
 
<w:lsdException w:name="Light Grid Accent 6" w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Shading 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium List 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 1 Accent 6" w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 2 Accent 6" w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"/>
 
<w:lsdException w:name="Medium Grid 3 Accent 6" w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"/>
 
<w:lsdException w:name="Dark List Accent 6" w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Shading Accent 6" w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful List Accent 6" w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"/>
 
<w:lsdException w:name="Colorful Grid Accent 6" w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"/>
 
<w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="19" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="21" w:semiHidden="0"/>
 
<w:lsdException w:name="Subtle Reference" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="31" w:semiHidden="0"/>
 
<w:lsdException w:name="Intense Reference" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="32" w:semiHidden="0"/>
 
<w:lsdException w:name="Book Title" w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="33" w:semiHidden="0"/>
 
<w:lsdException w:name="Bibliography" w:uiPriority="37"/>
 
<w:lsdException w:name="TOC Heading" w:qFormat="1" w:uiPriority="39"/>
 
</w:latentStyles>
 
 
-<w:style w:type="paragraph" w:styleId="a" w:default="1">
 
<w:name w:val="Normal"/>
 
<w:qFormat/>
 
 
-<w:pPr>
 
<w:widowControl w:val="0"/>
 
<w:jc w:val="both"/>
 
</w:pPr>
 
</w:style>
 
 
-<w:style w:type="character" w:styleId="a0" w:default="1">
 
<w:name w:val="Default Paragraph Font"/>
 
<w:uiPriority w:val="1"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
</w:style>
 
 
-<w:style w:type="table" w:styleId="a1" w:default="1">
 
<w:name w:val="Normal Table"/>
 
<w:uiPriority w:val="99"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
 
-<w:tblPr>
 
<w:tblInd w:w="0" w:type="dxa"/>
 
 
-<w:tblCellMar>
 
<w:top w:w="0" w:type="dxa"/>
 
<w:left w:w="108" w:type="dxa"/>
 
<w:bottom w:w="0" w:type="dxa"/>
 
<w:right w:w="108" w:type="dxa"/>
 
</w:tblCellMar>
 
</w:tblPr>
 
</w:style>
 
 
-<w:style w:type="numbering" w:styleId="a2" w:default="1">
 
<w:name w:val="No List"/>
 
<w:uiPriority w:val="99"/>
 
<w:semiHidden/>
 
<w:unhideWhenUsed/>
 
</w:style>
 
</w:styles>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" pkg:name="/word/fontTable.xml">
 
 
-<pkg:xmlData>
 
 
-<w:fonts xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14">
 
 
-<w:font w:name="Calibri">
 
<w:panose1 w:val="020F0502020204030204"/>
 
<w:charset w:val="00"/>
 
<w:family w:val="swiss"/>
 
<w:pitch w:val="variable"/>
 
<w:sig w:csb1="00000000" w:csb0="000001FF" w:usb3="00000000" w:usb2="00000009" w:usb1="C000247B" w:usb0="E4002EFF"/>
 
</w:font>
 
 
-<w:font w:name="宋体">
 
<w:altName w:val="SimSun"/>
 
<w:panose1 w:val="02010600030101010101"/>
 
<w:charset w:val="86"/>
 
<w:family w:val="auto"/>
 
<w:pitch w:val="variable"/>
 
<w:sig w:csb1="00000000" w:csb0="00040001" w:usb3="00000000" w:usb2="00000016" w:usb1="288F0000" w:usb0="00000003"/>
 
</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:pitch w:val="variable"/>
 
<w:sig w:csb1="00000000" w:csb0="000001FF" w:usb3="00000000" w:usb2="00000009" w:usb1="C000785B" w:usb0="E0002EFF"/>
 
</w:font>
 
 
-<w:font w:name="黑体">
 
<w:altName w:val="SimHei"/>
 
<w:panose1 w:val="02010609060101010101"/>
 
<w:charset w:val="86"/>
 
<w:family w:val="modern"/>
 
<w:pitch w:val="fixed"/>
 
<w:sig w:csb1="00000000" w:csb0="00040001" w:usb3="00000000" w:usb2="00000016" w:usb1="38CF7CFA" w:usb0="800002BF"/>
 
</w:font>
 
 
-<w:font w:name="Cambria">
 
<w:panose1 w:val="02040503050406030204"/>
 
<w:charset w:val="00"/>
 
<w:family w:val="roman"/>
 
<w:pitch w:val="variable"/>
 
<w:sig w:csb1="00000000" w:csb0="0000019F" w:usb3="00000000" w:usb2="02000000" w:usb1="420024FF" w:usb0="E00006FF"/>
 
</w:font>
 
</w:fonts>
 
</pkg:xmlData>
 
</pkg:part>
 
 
-<pkg:part pkg:padding="256" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:name="/docProps/app.xml">
 
 
-<pkg:xmlData>
 
 
-<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
 
<Template>Normal.dotm</Template>
 
<TotalTime>1</TotalTime>
 
<Pages>1</Pages>
 
<Words>11</Words>
 
<Characters>69</Characters>
 
<Application>Microsoft Office Word</Application>
 
<DocSecurity>0</DocSecurity>
 
<Lines>1</Lines>
 
<Paragraphs>1</Paragraphs>
 
<ScaleCrop>false</ScaleCrop>
 
<Company/>
 
<LinksUpToDate>false</LinksUpToDate>
 
<CharactersWithSpaces>79</CharactersWithSpaces>
 
<SharedDoc>false</SharedDoc>
 
<HyperlinksChanged>false</HyperlinksChanged>
 
<AppVersion>14.0000</AppVersion>
 
</Properties>
 
</pkg:xmlData>
 
</pkg:part>
 
</pkg:package>

 (2)以下是Java代码

@Controller
@ResponseBody
public class pkl {
    @GetMapping("/createDoc")
    public void hello(HttpServletRequest request, HttpServletResponse response){
        try {
            String title = "静夜思";
            String body = "床前明月光,疑是地上霜,举头望明月,低头思故乡";
            String doc = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" +
                    "<?mso-application progid=\"Word.Document\"?>" +
                    "<pkg:package xmlns:pkg=\"http://schemas.microsoft.com/office/2006/xmlPackage\"><pkg:part pkg:name=\"/_rels/.rels\" pkg:contentType=\"application/vnd.openxmlformats-package.relationships+xml\" pkg:padding=\"512\"><pkg:xmlData><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\"><Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\" Target=\"docProps/app.xml\"/><Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\" Target=\"docProps/core.xml\"/><Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"word/document.xml\"/></Relationships></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/_rels/document.xml.rels\" pkg:contentType=\"application/vnd.openxmlformats-package.relationships+xml\" pkg:padding=\"256\"><pkg:xmlData><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\"><Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings\" Target=\"settings.xml\"/><Relationship Id=\"rId2\" Type=\"http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects\" Target=\"stylesWithEffects.xml\"/><Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\" Target=\"styles.xml\"/><Relationship Id=\"rId6\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\" Target=\"theme/theme1.xml\"/><Relationship Id=\"rId5\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable\" Target=\"fontTable.xml\"/><Relationship Id=\"rId4\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings\" Target=\"webSettings.xml\"/></Relationships></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/document.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\"><pkg:xmlData><w:document mc:Ignorable=\"w14 wp14\" 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: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\"><w:body><w:p w:rsidR=\"007B455B\" w:rsidRDefault=\"007B6C30\" w:rsidP=\"007B6C30\"><w:pPr><w:jc w:val=\"center\"/><w:rPr><w:rFonts w:ascii=\"黑体\" w:eastAsia=\"黑体\" w:hAnsi=\"黑体\" w:hint=\"eastAsia\"/><w:sz w:val=\"44\"/><w:szCs w:val=\"44\"/></w:rPr></w:pPr><w:r w:rsidRPr=\"007B6C30\"><w:rPr><w:rFonts w:ascii=\"黑体\" w:eastAsia=\"黑体\" w:hAnsi=\"黑体\"/><w:sz w:val=\"44\"/><w:szCs w:val=\"44\"/></w:rPr><w:t>" +
                    title +
                    "</w:t></w:r></w:p><w:p w:rsidR=\"007B6C30\" w:rsidRPr=\"007B6C30\" w:rsidRDefault=\"007B6C30\" w:rsidP=\"007B6C30\"><w:pPr><w:rPr><w:rFonts w:asciiTheme=\"majorEastAsia\" w:eastAsiaTheme=\"majorEastAsia\" w:hAnsiTheme=\"majorEastAsia\"/><w:sz w:val=\"28\"/><w:szCs w:val=\"28\"/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts w:ascii=\"黑体\" w:eastAsia=\"黑体\" w:hAnsi=\"黑体\" w:hint=\"eastAsia\"/><w:sz w:val=\"44\"/><w:szCs w:val=\"44\"/></w:rPr><w:t xml:space=\"preserve\">    </w:t></w:r><w:r w:rsidRPr=\"007B6C30\"><w:rPr><w:rFonts w:asciiTheme=\"majorEastAsia\" w:eastAsiaTheme=\"majorEastAsia\" w:hAnsiTheme=\"majorEastAsia\" w:hint=\"eastAsia\"/><w:sz w:val=\"28\"/><w:szCs w:val=\"28\"/></w:rPr><w:t>正文</w:t></w:r><w:r w:rsidRPr=\"007B6C30\"><w:rPr><w:rFonts w:asciiTheme=\"majorEastAsia\" w:eastAsiaTheme=\"majorEastAsia\" w:hAnsiTheme=\"majorEastAsia\" w:hint=\"eastAsia\"/><w:sz w:val=\"28\"/><w:szCs w:val=\"28\"/></w:rPr><w:t>" +
                    body +
                    "</w:t></w:r><w:bookmarkStart w:id=\"0\" w:name=\"_GoBack\"/><w:bookmarkEnd w:id=\"0\"/><w:r w:rsidRPr=\"007B6C30\"><w:rPr><w:rFonts w:asciiTheme=\"majorEastAsia\" w:eastAsiaTheme=\"majorEastAsia\" w:hAnsiTheme=\"majorEastAsia\" w:hint=\"eastAsia\"/><w:sz w:val=\"28\"/><w:szCs w:val=\"28\"/></w:rPr><w:t></w:t></w:r></w:p><w:sectPr w:rsidR=\"007B6C30\" w:rsidRPr=\"007B6C30\"><w:pgSz w:w=\"11906\" w:h=\"16838\"/><w:pgMar w:top=\"1440\" w:right=\"1800\" w:bottom=\"1440\" w:left=\"1800\" w:header=\"851\" w:footer=\"992\" w:gutter=\"0\"/><w:cols w:space=\"425\"/><w:docGrid w:type=\"lines\" w:linePitch=\"312\"/></w:sectPr></w:body></w:document></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/theme/theme1.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"><pkg:xmlData><a:theme name=\"Office 主题\u200B\u200B\" xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"><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=\"1F497D\"/></a:dk2><a:lt2><a:srgbClr val=\"EEECE1\"/></a:lt2><a:accent1><a:srgbClr val=\"4F81BD\"/></a:accent1><a:accent2><a:srgbClr val=\"C0504D\"/></a:accent2><a:accent3><a:srgbClr val=\"9BBB59\"/></a:accent3><a:accent4><a:srgbClr val=\"8064A2\"/></a:accent4><a:accent5><a:srgbClr val=\"4BACC6\"/></a:accent5><a:accent6><a:srgbClr val=\"F79646\"/></a:accent6><a:hlink><a:srgbClr val=\"0000FF\"/></a:hlink><a:folHlink><a:srgbClr val=\"800080\"/></a:folHlink></a:clrScheme><a:fontScheme name=\"Office\"><a:majorFont><a:latin typeface=\"Cambria\"/><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=\"Calibri\"/><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:tint val=\"50000\"/><a:satMod val=\"300000\"/></a:schemeClr></a:gs><a:gs pos=\"35000\"><a:schemeClr val=\"phClr\"><a:tint val=\"37000\"/><a:satMod val=\"300000\"/></a:schemeClr></a:gs><a:gs pos=\"100000\"><a:schemeClr val=\"phClr\"><a:tint val=\"15000\"/><a:satMod val=\"350000\"/></a:schemeClr></a:gs></a:gsLst><a:lin ang=\"16200000\" scaled=\"1\"/></a:gradFill><a:gradFill rotWithShape=\"1\"><a:gsLst><a:gs pos=\"0\"><a:schemeClr val=\"phClr\"><a:shade val=\"51000\"/><a:satMod val=\"130000\"/></a:schemeClr></a:gs><a:gs pos=\"80000\"><a:schemeClr val=\"phClr\"><a:shade val=\"93000\"/><a:satMod val=\"130000\"/></a:schemeClr></a:gs><a:gs pos=\"100000\"><a:schemeClr val=\"phClr\"><a:shade val=\"94000\"/><a:satMod val=\"135000\"/></a:schemeClr></a:gs></a:gsLst><a:lin ang=\"16200000\" scaled=\"0\"/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln w=\"9525\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\"><a:solidFill><a:schemeClr val=\"phClr\"><a:shade val=\"95000\"/><a:satMod val=\"105000\"/></a:schemeClr></a:solidFill><a:prstDash val=\"solid\"/></a:ln><a:ln w=\"25400\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\"><a:solidFill><a:schemeClr val=\"phClr\"/></a:solidFill><a:prstDash val=\"solid\"/></a:ln><a:ln w=\"38100\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\"><a:solidFill><a:schemeClr val=\"phClr\"/></a:solidFill><a:prstDash val=\"solid\"/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst><a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\"><a:srgbClr val=\"000000\"><a:alpha val=\"38000\"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\"><a:srgbClr val=\"000000\"><a:alpha val=\"35000\"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\"><a:srgbClr val=\"000000\"><a:alpha val=\"35000\"/></a:srgbClr></a:outerShdw></a:effectLst><a:scene3d><a:camera prst=\"orthographicFront\"><a:rot lat=\"0\" lon=\"0\" rev=\"0\"/></a:camera><a:lightRig rig=\"threePt\" dir=\"t\"><a:rot lat=\"0\" lon=\"0\" rev=\"1200000\"/></a:lightRig></a:scene3d><a:sp3d><a:bevelT w=\"63500\" h=\"25400\"/></a:sp3d></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr val=\"phClr\"/></a:solidFill><a:gradFill rotWithShape=\"1\"><a:gsLst><a:gs pos=\"0\"><a:schemeClr val=\"phClr\"><a:tint val=\"40000\"/><a:satMod val=\"350000\"/></a:schemeClr></a:gs><a:gs pos=\"40000\"><a:schemeClr val=\"phClr\"><a:tint val=\"45000\"/><a:shade val=\"99000\"/><a:satMod val=\"350000\"/></a:schemeClr></a:gs><a:gs pos=\"100000\"><a:schemeClr val=\"phClr\"><a:shade val=\"20000\"/><a:satMod val=\"255000\"/></a:schemeClr></a:gs></a:gsLst><a:path path=\"circle\"><a:fillToRect l=\"50000\" t=\"-80000\" r=\"50000\" b=\"180000\"/></a:path></a:gradFill><a:gradFill rotWithShape=\"1\"><a:gsLst><a:gs pos=\"0\"><a:schemeClr val=\"phClr\"><a:tint val=\"80000\"/><a:satMod val=\"300000\"/></a:schemeClr></a:gs><a:gs pos=\"100000\"><a:schemeClr val=\"phClr\"><a:shade val=\"30000\"/><a:satMod val=\"200000\"/></a:schemeClr></a:gs></a:gsLst><a:path path=\"circle\"><a:fillToRect l=\"50000\" t=\"50000\" r=\"50000\" b=\"50000\"/></a:path></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults/><a:extraClrSchemeLst/></a:theme></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/settings.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\"><pkg:xmlData><w:settings mc:Ignorable=\"w14\" 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\"><w:zoom w:percent=\"119\"/><w:bordersDoNotSurroundHeader/><w:bordersDoNotSurroundFooter/><w:defaultTabStop w:val=\"420\"/><w:drawingGridVerticalSpacing w:val=\"156\"/><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=\"14\"/><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:compat><w:rsids><w:rsidRoot w:val=\"00065524\"/><w:rsid w:val=\"00065524\"/><w:rsid w:val=\"007B455B\"/><w:rsid w:val=\"007B6C30\"/></w:rsids><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=\"zh-CN\"/><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\"/><o:shapelayout v:ext=\"edit\"><o:idmap v:ext=\"edit\" data=\"1\"/></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val=\".\"/><w:listSeparator w:val=\",\"/></w:settings></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/webSettings.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml\"><pkg:xmlData><w:webSettings mc:Ignorable=\"w14\" 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\"><w:optimizeForBrowser/><w:allowPNG/></w:webSettings></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/stylesWithEffects.xml\" pkg:contentType=\"application/vnd.ms-word.stylesWithEffects+xml\"><pkg:xmlData><w:styles mc:Ignorable=\"w14 wp14\" 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: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\"><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts w:asciiTheme=\"minorHAnsi\" w:eastAsiaTheme=\"minorEastAsia\" w:hAnsiTheme=\"minorHAnsi\" w:cstheme=\"minorBidi\"/><w:kern w:val=\"2\"/><w:sz w:val=\"21\"/><w:szCs w:val=\"22\"/><w:lang w:val=\"en-US\" w:eastAsia=\"zh-CN\" w:bidi=\"ar-SA\"/></w:rPr></w:rPrDefault><w:pPrDefault/></w:docDefaults><w:latentStyles w:defLockedState=\"0\" w:defUIPriority=\"99\" w:defSemiHidden=\"1\" w:defUnhideWhenUsed=\"1\" w:defQFormat=\"0\" w:count=\"267\"><w:lsdException w:name=\"Normal\" w:semiHidden=\"0\" w:uiPriority=\"0\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 1\" w:semiHidden=\"0\" w:uiPriority=\"9\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 2\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 3\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 4\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 5\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 6\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 7\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 8\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 9\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"toc 1\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 2\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 3\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 4\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 5\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 6\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 7\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 8\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 9\" w:uiPriority=\"39\"/><w:lsdException w:name=\"caption\" w:uiPriority=\"35\" w:qFormat=\"1\"/><w:lsdException w:name=\"Title\" w:semiHidden=\"0\" w:uiPriority=\"10\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Default Paragraph Font\" w:uiPriority=\"1\"/><w:lsdException w:name=\"Subtitle\" w:semiHidden=\"0\" w:uiPriority=\"11\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Strong\" w:semiHidden=\"0\" w:uiPriority=\"22\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"20\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Table Grid\" w:semiHidden=\"0\" w:uiPriority=\"59\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Placeholder Text\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"No Spacing\" w:semiHidden=\"0\" w:uiPriority=\"1\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Light Shading\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Revision\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"List Paragraph\" w:semiHidden=\"0\" w:uiPriority=\"34\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Quote\" w:semiHidden=\"0\" w:uiPriority=\"29\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Quote\" w:semiHidden=\"0\" w:uiPriority=\"30\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Medium List 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Subtle Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"19\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"21\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Subtle Reference\" w:semiHidden=\"0\" w:uiPriority=\"31\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Reference\" w:semiHidden=\"0\" w:uiPriority=\"32\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Book Title\" w:semiHidden=\"0\" w:uiPriority=\"33\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Bibliography\" w:uiPriority=\"37\"/><w:lsdException w:name=\"TOC Heading\" w:uiPriority=\"39\" w:qFormat=\"1\"/></w:latentStyles><w:style w:type=\"paragraph\" w:default=\"1\" w:styleId=\"a\"><w:name w:val=\"Normal\"/><w:qFormat/><w:pPr><w:widowControl w:val=\"0\"/><w:jc w:val=\"both\"/></w:pPr></w:style><w:style w:type=\"character\" w:default=\"1\" w:styleId=\"a0\"><w:name w:val=\"Default Paragraph Font\"/><w:uiPriority w:val=\"1\"/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style w:type=\"table\" w:default=\"1\" w:styleId=\"a1\"><w:name w:val=\"Normal Table\"/><w:uiPriority w:val=\"99\"/><w:semiHidden/><w:unhideWhenUsed/><w:tblPr><w:tblInd w:w=\"0\" w:type=\"dxa\"/><w:tblCellMar><w:top w:w=\"0\" w:type=\"dxa\"/><w:left w:w=\"108\" w:type=\"dxa\"/><w:bottom w:w=\"0\" w:type=\"dxa\"/><w:right w:w=\"108\" w:type=\"dxa\"/></w:tblCellMar></w:tblPr></w:style><w:style w:type=\"numbering\" w:default=\"1\" w:styleId=\"a2\"><w:name w:val=\"No List\"/><w:uiPriority w:val=\"99\"/><w:semiHidden/><w:unhideWhenUsed/></w:style></w:styles></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/docProps/core.xml\" pkg:contentType=\"application/vnd.openxmlformats-package.core-properties+xml\" pkg:padding=\"256\"><pkg:xmlData><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>xb21cn</dc:creator><cp:lastModifiedBy>xb21cn</cp:lastModifiedBy><cp:revision>2</cp:revision><dcterms:created xsi:type=\"dcterms:W3CDTF\">2021-08-14T15:14:00Z</dcterms:created><dcterms:modified xsi:type=\"dcterms:W3CDTF\">2021-08-14T15:14:00Z</dcterms:modified></cp:coreProperties></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/styles.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"><pkg:xmlData><w:styles mc:Ignorable=\"w14\" 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\"><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts w:asciiTheme=\"minorHAnsi\" w:eastAsiaTheme=\"minorEastAsia\" w:hAnsiTheme=\"minorHAnsi\" w:cstheme=\"minorBidi\"/><w:kern w:val=\"2\"/><w:sz w:val=\"21\"/><w:szCs w:val=\"22\"/><w:lang w:val=\"en-US\" w:eastAsia=\"zh-CN\" w:bidi=\"ar-SA\"/></w:rPr></w:rPrDefault><w:pPrDefault/></w:docDefaults><w:latentStyles w:defLockedState=\"0\" w:defUIPriority=\"99\" w:defSemiHidden=\"1\" w:defUnhideWhenUsed=\"1\" w:defQFormat=\"0\" w:count=\"267\"><w:lsdException w:name=\"Normal\" w:semiHidden=\"0\" w:uiPriority=\"0\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 1\" w:semiHidden=\"0\" w:uiPriority=\"9\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 2\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 3\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 4\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 5\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 6\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 7\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 8\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"heading 9\" w:uiPriority=\"9\" w:qFormat=\"1\"/><w:lsdException w:name=\"toc 1\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 2\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 3\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 4\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 5\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 6\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 7\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 8\" w:uiPriority=\"39\"/><w:lsdException w:name=\"toc 9\" w:uiPriority=\"39\"/><w:lsdException w:name=\"caption\" w:uiPriority=\"35\" w:qFormat=\"1\"/><w:lsdException w:name=\"Title\" w:semiHidden=\"0\" w:uiPriority=\"10\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Default Paragraph Font\" w:uiPriority=\"1\"/><w:lsdException w:name=\"Subtitle\" w:semiHidden=\"0\" w:uiPriority=\"11\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Strong\" w:semiHidden=\"0\" w:uiPriority=\"22\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"20\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Table Grid\" w:semiHidden=\"0\" w:uiPriority=\"59\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Placeholder Text\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"No Spacing\" w:semiHidden=\"0\" w:uiPriority=\"1\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Light Shading\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Revision\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"List Paragraph\" w:semiHidden=\"0\" w:uiPriority=\"34\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Quote\" w:semiHidden=\"0\" w:uiPriority=\"29\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Quote\" w:semiHidden=\"0\" w:uiPriority=\"30\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Medium List 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 1\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 2\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 3\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 4\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 5\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Shading Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"60\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"61\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Light Grid Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"62\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"63\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Shading 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"64\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"65\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium List 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"66\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 1 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"67\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 2 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"68\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Medium Grid 3 Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"69\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Dark List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"70\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Shading Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"71\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful List Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"72\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Colorful Grid Accent 6\" w:semiHidden=\"0\" w:uiPriority=\"73\" w:unhideWhenUsed=\"0\"/><w:lsdException w:name=\"Subtle Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"19\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Emphasis\" w:semiHidden=\"0\" w:uiPriority=\"21\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Subtle Reference\" w:semiHidden=\"0\" w:uiPriority=\"31\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Intense Reference\" w:semiHidden=\"0\" w:uiPriority=\"32\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Book Title\" w:semiHidden=\"0\" w:uiPriority=\"33\" w:unhideWhenUsed=\"0\" w:qFormat=\"1\"/><w:lsdException w:name=\"Bibliography\" w:uiPriority=\"37\"/><w:lsdException w:name=\"TOC Heading\" w:uiPriority=\"39\" w:qFormat=\"1\"/></w:latentStyles><w:style w:type=\"paragraph\" w:default=\"1\" w:styleId=\"a\"><w:name w:val=\"Normal\"/><w:qFormat/><w:pPr><w:widowControl w:val=\"0\"/><w:jc w:val=\"both\"/></w:pPr></w:style><w:style w:type=\"character\" w:default=\"1\" w:styleId=\"a0\"><w:name w:val=\"Default Paragraph Font\"/><w:uiPriority w:val=\"1\"/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style w:type=\"table\" w:default=\"1\" w:styleId=\"a1\"><w:name w:val=\"Normal Table\"/><w:uiPriority w:val=\"99\"/><w:semiHidden/><w:unhideWhenUsed/><w:tblPr><w:tblInd w:w=\"0\" w:type=\"dxa\"/><w:tblCellMar><w:top w:w=\"0\" w:type=\"dxa\"/><w:left w:w=\"108\" w:type=\"dxa\"/><w:bottom w:w=\"0\" w:type=\"dxa\"/><w:right w:w=\"108\" w:type=\"dxa\"/></w:tblCellMar></w:tblPr></w:style><w:style w:type=\"numbering\" w:default=\"1\" w:styleId=\"a2\"><w:name w:val=\"No List\"/><w:uiPriority w:val=\"99\"/><w:semiHidden/><w:unhideWhenUsed/></w:style></w:styles></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/word/fontTable.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\"><pkg:xmlData><w:fonts mc:Ignorable=\"w14\" 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\"><w:font w:name=\"Calibri\"><w:panose1 w:val=\"020F0502020204030204\"/><w:charset w:val=\"00\"/><w:family w:val=\"swiss\"/><w:pitch w:val=\"variable\"/><w:sig w:usb0=\"E4002EFF\" w:usb1=\"C000247B\" w:usb2=\"00000009\" w:usb3=\"00000000\" w:csb0=\"000001FF\" w:csb1=\"00000000\"/></w:font><w:font w:name=\"宋体\"><w:altName w:val=\"SimSun\"/><w:panose1 w:val=\"02010600030101010101\"/><w:charset w:val=\"86\"/><w:family w:val=\"auto\"/><w:pitch w:val=\"variable\"/><w:sig w:usb0=\"00000003\" w:usb1=\"288F0000\" w:usb2=\"00000016\" w:usb3=\"00000000\" w:csb0=\"00040001\" 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:pitch w:val=\"variable\"/><w:sig w:usb0=\"E0002EFF\" w:usb1=\"C000785B\" w:usb2=\"00000009\" w:usb3=\"00000000\" w:csb0=\"000001FF\" w:csb1=\"00000000\"/></w:font><w:font w:name=\"黑体\"><w:altName w:val=\"SimHei\"/><w:panose1 w:val=\"02010609060101010101\"/><w:charset w:val=\"86\"/><w:family w:val=\"modern\"/><w:pitch w:val=\"fixed\"/><w:sig w:usb0=\"800002BF\" w:usb1=\"38CF7CFA\" w:usb2=\"00000016\" w:usb3=\"00000000\" w:csb0=\"00040001\" w:csb1=\"00000000\"/></w:font><w:font w:name=\"Cambria\"><w:panose1 w:val=\"02040503050406030204\"/><w:charset w:val=\"00\"/><w:family w:val=\"roman\"/><w:pitch w:val=\"variable\"/><w:sig w:usb0=\"E00006FF\" w:usb1=\"420024FF\" w:usb2=\"02000000\" w:usb3=\"00000000\" w:csb0=\"0000019F\" w:csb1=\"00000000\"/></w:font></w:fonts></pkg:xmlData></pkg:part><pkg:part pkg:name=\"/docProps/app.xml\" pkg:contentType=\"application/vnd.openxmlformats-officedocument.extended-properties+xml\" pkg:padding=\"256\"><pkg:xmlData><Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"><Template>Normal.dotm</Template><TotalTime>1</TotalTime><Pages>1</Pages><Words>11</Words><Characters>69</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>1</Lines><Paragraphs>1</Paragraphs><ScaleCrop>false</ScaleCrop><Company/><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>79</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>14.0000</AppVersion></Properties></pkg:xmlData></pkg:part></pkg:package>";
            response.setContentType("application/msword;charset=UTF-8");
            response.setHeader("Content-Disposition", "attachment; filename="
                    + new String(title.getBytes("utf-8"), "ISO8859-1") + ".doc");
            response.getWriter().write(doc);
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}

到此这篇关于最简单的java生成word文档方法的文章就介绍到这了,更多相关java生成word内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • java实现识别二维码图片功能

    java实现识别二维码图片功能

    这篇文章主要为大家详细介绍了java实现识别二维码图片功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-04-04
  • java 四舍五入保留小数的实现方法

    java 四舍五入保留小数的实现方法

    下面小编就为大家带来一篇java 四舍五入保留小数的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2016-09-09
  • Java多线程和并发基础面试题(问答形式)

    Java多线程和并发基础面试题(问答形式)

    多线程和并发问题是Java技术面试中面试官比较喜欢问的问题之一。在这里,从面试的角度列出了大部分重要的问题,感兴趣的小伙伴们可以参考一下
    2016-06-06
  • 利用exe4j生成java的exe文件

    利用exe4j生成java的exe文件

    本文主要介绍了利用exe4j生成java的exe文件,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • 解析Java定时任务的选型及改造问题

    解析Java定时任务的选型及改造问题

    这篇文章主要介绍了Java定时任务的选型及改造问题,本文给大家提到了Java主流三大定时任务框架优缺点,通过实例代码给大家介绍的非常详细,需要的朋友可以参考下
    2022-02-02
  • Spring Boot应用配置常用相关视图解析器详解

    Spring Boot应用配置常用相关视图解析器详解

    这篇文章主要给大家介绍了关于Spring Boot应用配置常用相关视图解析器的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-12-12
  • Spring Boot实现简单的增删改查

    Spring Boot实现简单的增删改查

    这篇文章主要介绍了Spring Boot如何实现简单的增删改查,帮助大家更好的理解和学习spring boot框架,感兴趣的朋友可以了解下
    2020-09-09
  • 如何解决UnsupportedOperationException异常问题

    如何解决UnsupportedOperationException异常问题

    这篇文章主要介绍了如何解决UnsupportedOperationException异常问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-05-05
  • this关键字详解

    this关键字详解

    这篇文章主要介绍了this关键字,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-03-03
  • cookie、session和java过滤器结合实现登陆程序

    cookie、session和java过滤器结合实现登陆程序

    这篇文章主要为大家详细介绍了cookie、session和java过滤器结合实现登陆程序的具体代码,感兴趣的朋友可以参考一下
    2016-05-05

最新评论