Commit b02e6980 authored by chenzhao's avatar chenzhao

使用登记表生成代码修改

parent 8c4d1b3c
...@@ -662,6 +662,9 @@ public class DateUtils { ...@@ -662,6 +662,9 @@ public class DateUtils {
} }
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
System.out.println(DateUtils.convertDateToString(new Date(), DateUtils.CHN_DATE_PATTERN));
/*System.out.println(dateTimeToDate(new Date())); /*System.out.println(dateTimeToDate(new Date()));
System.out.println(dateParse("2017-02-04 14:58:20", null)); System.out.println(dateParse("2017-02-04 14:58:20", null));
System.out.println(dateTimeToDateStringIfTimeEndZero(new Date())); System.out.println(dateTimeToDateStringIfTimeEndZero(new Date()));
......
...@@ -255,5 +255,5 @@ public interface ICommonService { ...@@ -255,5 +255,5 @@ public interface ICommonService {
Map<String, Object> getRegistrationFormUrl(String manageType, JSONObject formData); Map<String, Object> getRegistrationFormUrl(String manageType, JSONObject formData);
void getRegistrationFormStream(JSONObject map,HttpServletResponse response); void getRegistrationFormStream(JSONObject map,HttpServletResponse response);
} }
...@@ -51,14 +51,10 @@ import com.yeejoin.amos.boot.module.jg.biz.utils.ImageUtils; ...@@ -51,14 +51,10 @@ import com.yeejoin.amos.boot.module.jg.biz.utils.ImageUtils;
import com.yeejoin.amos.boot.module.jg.biz.utils.JsonUtils; import com.yeejoin.amos.boot.module.jg.biz.utils.JsonUtils;
import com.yeejoin.amos.boot.module.jg.biz.utils.WordTemplateUtils; import com.yeejoin.amos.boot.module.jg.biz.utils.WordTemplateUtils;
import com.yeejoin.amos.boot.module.ymt.api.dto.EquipmentCategoryDto; import com.yeejoin.amos.boot.module.ymt.api.dto.EquipmentCategoryDto;
import com.yeejoin.amos.boot.module.ymt.api.entity.EquipTechParamPipeline; import com.yeejoin.amos.boot.module.ymt.api.entity.*;
import com.yeejoin.amos.boot.module.ymt.api.entity.EquipmentCategory;
import com.yeejoin.amos.boot.module.ymt.api.entity.RegistrationInfo;
import com.yeejoin.amos.boot.module.ymt.api.enums.ApplicationFormTypeEnum; import com.yeejoin.amos.boot.module.ymt.api.enums.ApplicationFormTypeEnum;
import com.yeejoin.amos.boot.module.ymt.api.enums.FlowStatusEnum; import com.yeejoin.amos.boot.module.ymt.api.enums.FlowStatusEnum;
import com.yeejoin.amos.boot.module.ymt.api.mapper.EquipTechParamPipelineMapper; import com.yeejoin.amos.boot.module.ymt.api.mapper.*;
import com.yeejoin.amos.boot.module.ymt.api.mapper.EquipmentCategoryMapper;
import com.yeejoin.amos.boot.module.ymt.api.mapper.RegistrationInfoMapper;
import com.yeejoin.amos.component.feign.model.FeignClientResult; import com.yeejoin.amos.component.feign.model.FeignClientResult;
import com.yeejoin.amos.component.feign.utils.FeignUtil; import com.yeejoin.amos.component.feign.utils.FeignUtil;
import com.yeejoin.amos.feign.privilege.Privilege; import com.yeejoin.amos.feign.privilege.Privilege;
...@@ -192,6 +188,10 @@ public class CommonServiceImpl implements ICommonService { ...@@ -192,6 +188,10 @@ public class CommonServiceImpl implements ICommonService {
@Autowired @Autowired
PrivilegeFeginService privilegeFeginService; PrivilegeFeginService privilegeFeginService;
@Autowired @Autowired
TzBaseEnterpriseInfoMapper enterpriseInfoMapper;
@Autowired
ConstructionInfoMapper constructionInfoMapper;
@Autowired
CommonMapper commonMapper; CommonMapper commonMapper;
@Autowired @Autowired
RegistrationInfoMapper tzsJgRegistrationInfoMapper; RegistrationInfoMapper tzsJgRegistrationInfoMapper;
...@@ -2222,6 +2222,43 @@ public class CommonServiceImpl implements ICommonService { ...@@ -2222,6 +2222,43 @@ public class CommonServiceImpl implements ICommonService {
public Map<String, Object> getRegistrationFormUrl(String manageType, JSONObject formData) { public Map<String, Object> getRegistrationFormUrl(String manageType, JSONObject formData) {
String wordPath ; String wordPath ;
String fileName ; String fileName ;
if (formData.containsKey("safetyManager") && formData.getString("safetyManager").contains("_")){
formData.put("safetyManagerName",formData.getString("safetyManager").split("_")[1]);
}
if (formData.containsKey("estateUnitName") && formData.getString("safetyManager").contains("_")){
formData.put("estateUnitName",formData.getString("estateUnitName").split("_")[1]);
formData.put("CQUnitCode",formData.getString("estateUnitName").split("_")[0]);
LambdaQueryWrapper<TzBaseEnterpriseInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(TzBaseEnterpriseInfo::getUseUnitCode,formData.getString("estateUnitName").split("_")[0]);
//产权单位联系电话
String contactPhone = enterpriseInfoMapper.selectOne(wrapper).getContactPhone();
if (StringUtils.isNotEmpty(contactPhone)){
formData.put("estatePhone",contactPhone);
}
}
if (formData.containsKey("equipId") ){
//施工单位名称
LambdaQueryWrapper<ConstructionInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(AbstractEquipBaseEntity::getRecord,formData.getString("equipId"));
wrapper.orderByDesc(AbstractEquipBaseEntity::getRecDate);
String uscUnitName = constructionInfoMapper.selectOne(wrapper).getUscUnitName();
if (StringUtils.isNotEmpty(uscUnitName)){
formData.put("uscUnitName",uscUnitName);
}
}
if (formData.containsKey("useUnitCreditCode") ){
//施工单位名称
LambdaQueryWrapper<TzBaseEnterpriseInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(TzBaseEnterpriseInfo::getUseUnitCode,formData.getString("useUnitCreditCode").split("_")[0]);
//产权单位联系电话
String address = enterpriseInfoMapper.selectOne(wrapper).getAddress();
if (StringUtils.isNotEmpty(address)){
formData.put("useUnitAddress",address);
}
}
//右下角日期
formData.put("cruDate",DateUtils.convertDateToString(new Date(), DateUtils.CHN_DATE_PATTERN));
if (UNIT.equals(manageType)){ if (UNIT.equals(manageType)){
wordPath = "use-registration-form-unit.ftl"; wordPath = "use-registration-form-unit.ftl";
fileName = "台套使用登记表_"; fileName = "台套使用登记表_";
...@@ -2252,6 +2289,43 @@ public class CommonServiceImpl implements ICommonService { ...@@ -2252,6 +2289,43 @@ public class CommonServiceImpl implements ICommonService {
@Override @Override
public void getRegistrationFormStream(JSONObject map, HttpServletResponse response){ public void getRegistrationFormStream(JSONObject map, HttpServletResponse response){
JSONObject formData = JSONObject.parseObject(JSONObject.toJSONString(map.get("formData"))); JSONObject formData = JSONObject.parseObject(JSONObject.toJSONString(map.get("formData")));
if (formData.containsKey("safetyManager") && formData.getString("safetyManager").contains("_")){
map.put("safetyManagerName",formData.getString("safetyManager").split("_")[1]);
}
if (formData.containsKey("estateUnitName") && formData.getString("safetyManager").contains("_")){
map.put("estateUnitName",formData.getString("estateUnitName").split("_")[1]);
map.put("CQUnitCode",formData.getString("estateUnitName").split("_")[0]);
LambdaQueryWrapper<TzBaseEnterpriseInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(TzBaseEnterpriseInfo::getUseUnitCode,formData.getString("estateUnitName").split("_")[0]);
//产权单位联系电话
String contactPhone = enterpriseInfoMapper.selectOne(wrapper).getContactPhone();
if (StringUtils.isNotEmpty(contactPhone)){
map.put("estatePhone",contactPhone);
}
}
if (formData.containsKey("equipId") ){
//施工单位名称
LambdaQueryWrapper<ConstructionInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(AbstractEquipBaseEntity::getRecord,formData.getString("equipId"));
wrapper.orderByDesc(AbstractEquipBaseEntity::getRecDate);
String uscUnitName = constructionInfoMapper.selectOne(wrapper).getUscUnitName();
if (StringUtils.isNotEmpty(uscUnitName)){
map.put("uscUnitName",uscUnitName);
}
}
if (formData.containsKey("useUnitCreditCode") ){
//施工单位名称
LambdaQueryWrapper<TzBaseEnterpriseInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(TzBaseEnterpriseInfo::getUseUnitCode,formData.getString("useUnitCreditCode").split("_")[0]);
//产权单位联系电话
String address = enterpriseInfoMapper.selectOne(wrapper).getAddress();
if (StringUtils.isNotEmpty(address)){
map.put("useUnitAddress",address);
}
}
//右下角日期
map.put("cruDate",DateUtils.convertDateToString(new Date(), DateUtils.CHN_DATE_PATTERN));
String manageType = JSONObject.toJSONString(map.get("manageType")); String manageType = JSONObject.toJSONString(map.get("manageType"));
String wordPath ; String wordPath ;
String fileName ; String fileName ;
......
...@@ -3,70 +3,30 @@ ...@@ -3,70 +3,30 @@
<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage"> <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:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
<pkg:xmlData> <pkg:xmlData>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"> <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId4" <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
Target="word/document.xml"/> <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
<Relationship Id="rId2" <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
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/extended-properties"
Target="docProps/app.xml"/>
<Relationship Id="rId3"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"
Target="docProps/custom.xml"/>
</Relationships> </Relationships>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/_rels/document.xml.rels" <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
<pkg:xmlData> <pkg:xmlData>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"> <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId7" <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
Target="fontTable.xml"/> <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer1.xml"/>
<Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
Target="theme/theme1.xml"/> <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
<Relationship Id="rId5" <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
Target="footer1.xml"/>
<Relationship Id="rId4"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"
Target="endnotes.xml"/>
<Relationship Id="rId3"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
Target="footnotes.xml"/>
<Relationship Id="rId2"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"
Target="settings.xml"/>
<Relationship Id="rId1"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"
Target="styles.xml"/>
</Relationships> </Relationships>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/document.xml" <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
<pkg:xmlData> <pkg:xmlData>
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData"
mc:Ignorable="w14 w15 wp14">
<w:body> <w:body>
<w:p w14:paraId="13A6AC20"> <w:p w14:paraId="13A6AC20">
<w:pPr> <w:pPr>
...@@ -127,14 +87,6 @@ ...@@ -127,14 +87,6 @@
</w:rPr> </w:rPr>
<w:t>登记类别:</w:t> <w:t>登记类别:</w:t>
</w:r> </w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:sz w:val="21"/>
<w:szCs w:val="21"/>
</w:rPr>
<w:t>${(registrationType)!''}</w:t>
</w:r>
<w:bookmarkStart w:id="0" w:name="_GoBack"/> <w:bookmarkStart w:id="0" w:name="_GoBack"/>
<w:bookmarkEnd w:id="0"/> <w:bookmarkEnd w:id="0"/>
</w:p> </w:p>
...@@ -238,7 +190,8 @@ ...@@ -238,7 +190,8 @@
<w:t>设备</w:t> <w:t>设备</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -247,7 +200,8 @@ ...@@ -247,7 +200,8 @@
<w:t>基本</w:t> <w:t>基本</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -305,7 +259,7 @@ ...@@ -305,7 +259,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(equList)!''}</w:t> <w:t>${equList}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -355,7 +309,7 @@ ...@@ -355,7 +309,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(equCategory)!''}</w:t> <w:t>${equCategory}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -442,7 +396,7 @@ ...@@ -442,7 +396,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(equDefine)!''}</w:t> <w:t>${equDefine}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -488,7 +442,7 @@ ...@@ -488,7 +442,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(productName)!''}</w:t> <w:t>${productName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -572,7 +526,7 @@ ...@@ -572,7 +526,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(equCode)!''}</w:t> <w:t>${equCode}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -618,7 +572,7 @@ ...@@ -618,7 +572,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(equType)!''}</w:t> <w:t>${equType}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -702,7 +656,7 @@ ...@@ -702,7 +656,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(designUseDate)!''}</w:t> <w:t>${designUseDate}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -748,7 +702,7 @@ ...@@ -748,7 +702,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(designUnitName)!''}</w:t> <w:t>${designUnitName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -832,7 +786,7 @@ ...@@ -832,7 +786,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(produceUnitName)!''}</w:t> <w:t>${produceUnitName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -878,7 +832,7 @@ ...@@ -878,7 +832,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(sgname)!''}</w:t> <w:t>${uscUnitName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -961,7 +915,7 @@ ...@@ -961,7 +915,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(inspectOrgName)!''}</w:t> <w:t>${inspectOrgName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1007,7 +961,7 @@ ...@@ -1007,7 +961,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(xsjg)!''}</w:t> <w:t>${xsjg}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1092,7 +1046,8 @@ ...@@ -1092,7 +1046,8 @@
<w:t>设备</w:t> <w:t>设备</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1101,7 +1056,8 @@ ...@@ -1101,7 +1056,8 @@
<w:t>使用</w:t> <w:t>使用</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1154,7 +1110,7 @@ ...@@ -1154,7 +1110,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useUnitName)!''}</w:t> <w:t>${useUnitName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1242,7 +1198,7 @@ ...@@ -1242,7 +1198,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useUnitAddress)!''}</w:t> <w:t>${useUnitAddress}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1308,7 +1264,8 @@ ...@@ -1308,7 +1264,8 @@
<w:rPr> <w:rPr>
<w:spacing w:val="3"/> <w:spacing w:val="3"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1338,7 +1295,7 @@ ...@@ -1338,7 +1295,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useUnitCreditCode)!''}</w:t> <w:t>${useUnitCreditCode}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1384,7 +1341,7 @@ ...@@ -1384,7 +1341,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(emaill)!''}</w:t> <w:t>${emaill}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1468,7 +1425,7 @@ ...@@ -1468,7 +1425,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useInnerCode)!''}</w:t> <w:t>${useInnerCode}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1514,7 +1471,7 @@ ...@@ -1514,7 +1471,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(address)!''}</w:t> <w:t>${address}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1598,7 +1555,7 @@ ...@@ -1598,7 +1555,7 @@
<w:rFonts w:hint="eastAsia"/> <w:rFonts w:hint="eastAsia"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useDate)!''}</w:t> <w:t>${useDate}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1644,7 +1601,7 @@ ...@@ -1644,7 +1601,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(useUnitPhone)!''}</w:t> <w:t>${useUnitPhone}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1728,7 +1685,7 @@ ...@@ -1728,7 +1685,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(safetyManagerName)!''}</w:t> <w:t>${safetyManagerName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1774,7 +1731,7 @@ ...@@ -1774,7 +1731,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(phone)!''}</w:t> <w:t>${phone}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1862,7 +1819,7 @@ ...@@ -1862,7 +1819,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(estateUnitName)!''}</w:t> <w:t>${estateUnitName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -1927,7 +1884,8 @@ ...@@ -1927,7 +1884,8 @@
<w:rPr> <w:rPr>
<w:spacing w:val="1"/> <w:spacing w:val="1"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1957,7 +1915,7 @@ ...@@ -1957,7 +1915,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(CQUnitCode)!''}</w:t> <w:t>${CQUnitCode}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2003,7 +1961,7 @@ ...@@ -2003,7 +1961,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(estatePhone)!''}</w:t> <w:t>${estatePhone}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2052,7 +2010,8 @@ ...@@ -2052,7 +2010,8 @@
<w:t>设备</w:t> <w:t>设备</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2061,7 +2020,8 @@ ...@@ -2061,7 +2020,8 @@
<w:t>检验</w:t> <w:t>检验</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2114,7 +2074,7 @@ ...@@ -2114,7 +2074,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(inspectOrgName)!''}</w:t> <w:t>${inspectOrgName}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2200,7 +2160,7 @@ ...@@ -2200,7 +2160,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(inspectType)!''}</w:t> <w:t>${inspectType}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2246,7 +2206,7 @@ ...@@ -2246,7 +2206,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(jycode)!''}</w:t> <w:t>${jycode}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2330,7 +2290,7 @@ ...@@ -2330,7 +2290,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(inspectDate)!''}</w:t> <w:t>${inspectDate}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2376,7 +2336,7 @@ ...@@ -2376,7 +2336,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(inspectConclusion)!''}</w:t> <w:t>${inspectConclusion}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2459,7 +2419,7 @@ ...@@ -2459,7 +2419,7 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(nextInspectDate)!''}</w:t> <w:t>${nextInspectDate}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2530,7 +2490,8 @@ ...@@ -2530,7 +2490,8 @@
<w:t>中华人民共和国特</w:t> <w:t>中华人民共和国特</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2570,13 +2531,14 @@ ...@@ -2570,13 +2531,14 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(userName)!''}</w:t> <w:t>${userName}</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="4"/> <w:spacing w:val="4"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2584,6 +2546,14 @@ ...@@ -2584,6 +2546,14 @@
</w:rPr> </w:rPr>
<w:t>日期:</w:t> <w:t>日期:</w:t>
</w:r> </w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="eastAsia"/>
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${cruDate}</w:t>
</w:r>
</w:p> </w:p>
<w:p w14:paraId="1D9DF8CC"> <w:p w14:paraId="1D9DF8CC">
<w:pPr> <w:pPr>
...@@ -2622,37 +2592,28 @@ ...@@ -2622,37 +2592,28 @@
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/> <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t>${(safetyManagerName)!''}</w:t> <w:t>${safetyManagerName}</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="4"/> <w:spacing w:val="4"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve">日期: </w:t> <w:t>日期:</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-2"/>
</w:rPr>
<w:t xml:space="preserve"> 年 月</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="20"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="-2"/> <w:rFonts w:hint="eastAsia"/>
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr> </w:rPr>
<w:t></w:t> <w:t>${cruDate}</w:t>
</w:r> </w:r>
</w:p> </w:p>
</w:tc> </w:tc>
...@@ -2717,7 +2678,8 @@ ...@@ -2717,7 +2678,8 @@
<w:rPr> <w:rPr>
<w:spacing w:val="4"/> <w:spacing w:val="4"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2752,19 +2714,20 @@ ...@@ -2752,19 +2714,20 @@
<w:ind w:left="935"/> <w:ind w:left="935"/>
</w:pPr> </w:pPr>
<w:r> <w:r>
<w:t>使用登记证编号: 年</w:t> <w:t>使用登记证编号: </w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="-1"/> <w:spacing w:val="-1"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"></w:t> <w:t xml:space="preserve"> </w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="18"/> <w:spacing w:val="18"/>
</w:rPr> </w:rPr>
<w:t xml:space="preserve"> </w:t> <w:t xml:space="preserve">
</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -2789,26 +2752,23 @@ ...@@ -2789,26 +2752,23 @@
<w:sectPr> <w:sectPr>
<w:footerReference r:id="rId5" w:type="default"/> <w:footerReference r:id="rId5" w:type="default"/>
<w:pgSz w:w="11905" w:h="16840"/> <w:pgSz w:w="11905" w:h="16840"/>
<w:pgMar w:top="1523" w:right="4" w:bottom="1323" w:left="0" w:header="1208" w:footer="1135" <w:pgMar w:top="1523" w:right="4" w:bottom="1323" w:left="0" w:header="1208" w:footer="1135" w:gutter="0"/>
w:gutter="0"/>
<w:cols w:space="720" w:num="1"/> <w:cols w:space="720" w:num="1"/>
</w:sectPr> </w:sectPr>
</w:body> </w:body>
</w:document> </w:document>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/docProps/app.xml" <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
<pkg:xmlData> <pkg:xmlData>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<Template>Normal.dotm</Template> <Template>Normal.dotm</Template>
<Pages>2</Pages> <Pages>2</Pages>
<Words>392</Words> <Words>392</Words>
<Characters>818</Characters> <Characters>818</Characters>
<Lines>0</Lines> <Lines>0</Lines>
<Paragraphs>0</Paragraphs> <Paragraphs>0</Paragraphs>
<TotalTime>0</TotalTime> <TotalTime>74</TotalTime>
<ScaleCrop>false</ScaleCrop> <ScaleCrop>false</ScaleCrop>
<LinksUpToDate>false</LinksUpToDate> <LinksUpToDate>false</LinksUpToDate>
<CharactersWithSpaces>912</CharactersWithSpaces> <CharactersWithSpaces>912</CharactersWithSpaces>
...@@ -2817,60 +2777,34 @@ ...@@ -2817,60 +2777,34 @@
</Properties> </Properties>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/docProps/core.xml" <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
<pkg:xmlData> <pkg:xmlData>
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" <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">
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">
<dcterms:created xsi:type="dcterms:W3CDTF">2025-02-11T02:12:00Z</dcterms:created> <dcterms:created xsi:type="dcterms:W3CDTF">2025-02-11T02:12:00Z</dcterms:created>
<dc:creator>Admin</dc:creator> <dc:creator>Admin</dc:creator>
<cp:lastModifiedBy>Ac</cp:lastModifiedBy> <cp:lastModifiedBy>Ac</cp:lastModifiedBy>
<dcterms:modified xsi:type="dcterms:W3CDTF">2025-02-14T05:56:54Z</dcterms:modified> <dcterms:modified xsi:type="dcterms:W3CDTF">2025-02-14T09:14:27Z</dcterms:modified>
</cp:coreProperties> </cp:coreProperties>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/docProps/custom.xml" <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
<pkg:xmlData> <pkg:xmlData>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"> <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
<vt:lpwstr>2052-12.1.0.19770</vt:lpwstr> <vt:lpwstr>2052-12.1.0.19770</vt:lpwstr>
</property> </property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="KSOTemplateDocerSaveRecord"> <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="KSOTemplateDocerSaveRecord">
<vt:lpwstr> <vt:lpwstr>eyJoZGlkIjoiNTA2ZGEzN2Q0MTEzOGM5MDFiMjY1OWJkMzVhYzAxMWMiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ==</vt:lpwstr>
eyJoZGlkIjoiNTA2ZGEzN2Q0MTEzOGM5MDFiMjY1OWJkMzVhYzAxMWMiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ==
</vt:lpwstr>
</property> </property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="ICV"> <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="ICV">
<vt:lpwstr>B0484F08089D473FB646C3E74C908B84_13</vt:lpwstr> <vt:lpwstr>0D135CC56052414EA641CAC203AC8D59_13</vt:lpwstr>
</property> </property>
</Properties> </Properties>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/endnotes.xml" <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
<pkg:xmlData> <pkg:xmlData>
<w:endnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" <w:endnotes 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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData"
mc:Ignorable="w14 w15 wp14">
<w:endnote w:type="separator" w:id="0"> <w:endnote w:type="separator" w:id="0">
<w:p> <w:p>
<w:pPr> <w:pPr>
...@@ -2894,124 +2828,106 @@ ...@@ -2894,124 +2828,106 @@
</w:endnotes> </w:endnotes>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/fontTable.xml" <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
<pkg:xmlData> <pkg:xmlData>
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" <w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14">
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14">
<w:font w:name="Times New Roman"> <w:font w:name="Times New Roman">
<w:panose1 w:val="02020603050405020304"/> <w:panose1 w:val="02020603050405020304"/>
<w:charset w:val="00"/> <w:charset w:val="00"/>
<w:family w:val="roman"/> <w:family w:val="roman"/>
<w:pitch w:val="variable"/> <w:pitch w:val="variable"/>
<w:sig w:usb0="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" <w:sig w:usb0="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="宋体"> <w:font w:name="宋体">
<w:panose1 w:val="02010600030101010101"/> <w:panose1 w:val="02010600030101010101"/>
<w:charset w:val="86"/> <w:charset w:val="86"/>
<w:family w:val="auto"/> <w:family w:val="auto"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001" <w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="Wingdings"> <w:font w:name="Wingdings">
<w:panose1 w:val="05000000000000000000"/> <w:panose1 w:val="05000000000000000000"/>
<w:charset w:val="02"/> <w:charset w:val="02"/>
<w:family w:val="auto"/> <w:family w:val="auto"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="Arial"> <w:font w:name="Arial">
<w:panose1 w:val="020B0604020202020204"/> <w:panose1 w:val="020B0604020202020204"/>
<w:charset w:val="01"/> <w:charset w:val="01"/>
<w:family w:val="swiss"/> <w:family w:val="swiss"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
w:csb1="FFFF0000"/>
</w:font> </w:font>
<w:font w:name="黑体"> <w:font w:name="黑体">
<w:panose1 w:val="02010609060101010101"/> <w:panose1 w:val="02010609060101010101"/>
<w:charset w:val="86"/> <w:charset w:val="86"/>
<w:family w:val="auto"/> <w:family w:val="auto"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="Courier New"> <w:font w:name="Courier New">
<w:panose1 w:val="02070309020205020404"/> <w:panose1 w:val="02070309020205020404"/>
<w:charset w:val="01"/> <w:charset w:val="01"/>
<w:family w:val="modern"/> <w:family w:val="modern"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" <w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
w:csb1="FFFF0000"/>
</w:font> </w:font>
<w:font w:name="Symbol"> <w:font w:name="Symbol">
<w:panose1 w:val="05050102010706020507"/> <w:panose1 w:val="05050102010706020507"/>
<w:charset w:val="02"/> <w:charset w:val="02"/>
<w:family w:val="roman"/> <w:family w:val="roman"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="Calibri"> <w:font w:name="Calibri">
<w:panose1 w:val="020F0502020204030204"/> <w:panose1 w:val="020F0502020204030204"/>
<w:charset w:val="00"/> <w:charset w:val="00"/>
<w:family w:val="swiss"/> <w:family w:val="swiss"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF" <w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="微软雅黑"> <w:font w:name="微软雅黑">
<w:panose1 w:val="020B0503020204020204"/> <w:panose1 w:val="020B0503020204020204"/>
<w:charset w:val="86"/> <w:charset w:val="86"/>
<w:family w:val="auto"/> <w:family w:val="auto"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F" <w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F" w:csb1="00000000"/>
w:csb1="00000000"/>
</w:font> </w:font>
<w:font w:name="Tahoma"> <w:font w:name="Tahoma">
<w:panose1 w:val="020B0604030504040204"/> <w:panose1 w:val="020B0604030504040204"/>
<w:charset w:val="00"/> <w:charset w:val="00"/>
<w:family w:val="auto"/> <w:family w:val="auto"/>
<w:pitch w:val="default"/> <w:pitch w:val="default"/>
<w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF" <w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF" w:csb1="20280000"/>
w:csb1="20280000"/> </w:font>
<w:font w:name="monospace">
<w:altName w:val="Segoe Print"/>
<w:panose1 w:val="00000000000000000000"/>
<w:charset w:val="00"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000000" w:csb1="00000000"/>
</w:font>
<w:font w:name="Segoe Print">
<w:panose1 w:val="02000600000000000000"/>
<w:charset w:val="00"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="0000028F" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="2000009F" w:csb1="47010000"/>
</w:font> </w:font>
</w:fonts> </w:fonts>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/footer1.xml" <pkg:part pkg:name="/word/footer1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
<pkg:xmlData> <pkg:xmlData>
<w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData"
mc:Ignorable="w14 w15 wp14">
<w:p w14:paraId="7B8FBA45"> <w:p w14:paraId="7B8FBA45">
<w:pPr> <w:pPr>
<w:spacing w:line="176" w:lineRule="auto"/> <w:spacing w:line="176" w:lineRule="auto"/>
<w:ind w:left="9647"/> <w:ind w:left="9647"/>
<w:rPr> <w:rPr>
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="Times New Roman" <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="Times New Roman" w:cs="Times New Roman"/>
w:cs="Times New Roman"/>
<w:sz w:val="21"/> <w:sz w:val="21"/>
<w:szCs w:val="21"/> <w:szCs w:val="21"/>
</w:rPr> </w:rPr>
...@@ -3020,27 +2936,9 @@ ...@@ -3020,27 +2936,9 @@
</w:ftr> </w:ftr>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/footnotes.xml" <pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
<pkg:xmlData> <pkg:xmlData>
<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" <w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData"
mc:Ignorable="w14 w15 wp14">
<w:footnote w:type="separator" w:id="0"> <w:footnote w:type="separator" w:id="0">
<w:p> <w:p>
<w:pPr> <w:pPr>
...@@ -3064,18 +2962,9 @@ ...@@ -3064,18 +2962,9 @@
</w:footnotes> </w:footnotes>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/settings.xml" <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
<pkg:xmlData> <pkg:xmlData>
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" <w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
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"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
<w:zoom w:percent="140"/> <w:zoom w:percent="140"/>
<w:doNotDisplayPageBoundaries w:val="1"/> <w:doNotDisplayPageBoundaries w:val="1"/>
<w:embedSystemFonts/> <w:embedSystemFonts/>
...@@ -3107,14 +2996,10 @@ ...@@ -3107,14 +2996,10 @@
<w:doNotUseEastAsianBreakRules/> <w:doNotUseEastAsianBreakRules/>
<w:useFELayout/> <w:useFELayout/>
<w:doNotUseIndentAsNumberingTabStop/> <w:doNotUseIndentAsNumberingTabStop/>
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
w:val="14"/> <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
w:uri="http://schemas.microsoft.com/office/word" w:val="1"/> <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
<w:compatSetting w:name="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:compat>
<w:rsids> <w:rsids>
<w:rsidRoot w:val="00000000"/> <w:rsidRoot w:val="00000000"/>
...@@ -3133,11 +3018,12 @@ ...@@ -3133,11 +3018,12 @@
<w:rsid w:val="3AFB2473"/> <w:rsid w:val="3AFB2473"/>
<w:rsid w:val="3F5B3E28"/> <w:rsid w:val="3F5B3E28"/>
<w:rsid w:val="431A44C9"/> <w:rsid w:val="431A44C9"/>
<w:rsid w:val="436977DD"/>
<w:rsid w:val="46B17094"/> <w:rsid w:val="46B17094"/>
<w:rsid w:val="47F21376"/> <w:rsid w:val="47F21376"/>
<w:rsid w:val="500D6A78"/>
<w:rsid w:val="663A7B6C"/> <w:rsid w:val="663A7B6C"/>
<w:rsid w:val="66546DEE"/> <w:rsid w:val="66546DEE"/>
<w:rsid w:val="67BA1B9A"/>
<w:rsid w:val="67FB3202"/> <w:rsid w:val="67FB3202"/>
<w:rsid w:val="724F0D1A"/> <w:rsid w:val="724F0D1A"/>
<w:rsid w:val="748C0004"/> <w:rsid w:val="748C0004"/>
...@@ -3160,41 +3046,25 @@ ...@@ -3160,41 +3046,25 @@
<m:naryLim m:val="undOvr"/> <m:naryLim m:val="undOvr"/>
</m:mathPr> </m:mathPr>
<w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/> <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: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:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5"
w:accent6="accent6" w:hyperlink="hyperlink"
w:followedHyperlink="followedHyperlink"/>
<w:doNotIncludeSubdocsInStats/> <w:doNotIncludeSubdocsInStats/>
</w:settings> </w:settings>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/styles.xml" <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
<pkg:xmlData> <pkg:xmlData>
<w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" <w:styles 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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
<w:docDefaults> <w:docDefaults>
<w:rPrDefault> <w:rPrDefault>
<w:rPr> <w:rPr>
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="宋体" <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="宋体" w:cs="Times New Roman"/>
w:cs="Times New Roman"/>
</w:rPr> </w:rPr>
</w:rPrDefault> </w:rPrDefault>
<w:pPrDefault/> <w:pPrDefault/>
</w:docDefaults> </w:docDefaults>
<w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" <w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" w:defUIPriority="99" w:defLockedState="0">
w:defUIPriority="99" w:defLockedState="0">
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:name="Normal"/> <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:name="Normal"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="heading 1"/>
w:name="heading 1"/>
<w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 2"/> <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 2"/>
<w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 3"/> <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 3"/>
<w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 4"/> <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 4"/>
...@@ -3232,14 +3102,12 @@ ...@@ -3232,14 +3102,12 @@
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope address"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope address"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope return"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope return"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote reference"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote reference"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation reference"/>
w:name="annotation reference"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="line number"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="line number"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="page number"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="page number"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote reference"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote reference"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote text"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote text"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="table of authorities"/>
w:name="table of authorities"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="macro"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="macro"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toa heading"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toa heading"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List"/>
...@@ -3257,8 +3125,7 @@ ...@@ -3257,8 +3125,7 @@
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 4"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 5"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 5"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Title"/>
w:name="Title"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Closing"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Closing"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Signature"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Signature"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Default Paragraph Font"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Default Paragraph Font"/>
...@@ -3270,14 +3137,11 @@ ...@@ -3270,14 +3137,11 @@
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 4"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 5"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Message Header"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Message Header"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Subtitle"/>
w:name="Subtitle"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Salutation"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Salutation"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Date"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Date"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent"/>
w:name="Body Text First Indent"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"
w:name="Body Text First Indent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Note Heading"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Note Heading"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 3"/>
...@@ -3286,10 +3150,8 @@ ...@@ -3286,10 +3150,8 @@
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Block Text"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Block Text"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Hyperlink"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Hyperlink"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="FollowedHyperlink"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="FollowedHyperlink"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Strong"/>
w:name="Strong"/> <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Emphasis"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"
w:name="Emphasis"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Document Map"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Document Map"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Plain Text"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Plain Text"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="E-mail Signature"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="E-mail Signature"/>
...@@ -3365,174 +3227,90 @@ ...@@ -3365,174 +3227,90 @@
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 1"/>
w:name="Light Shading Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 1"/>
w:name="Light List Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 1"/>
w:name="Light Grid Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 1"/>
w:name="Medium Shading 1 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 1"/>
w:name="Medium Shading 2 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 1"/>
w:name="Medium List 1 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 1"/>
w:name="Medium List 2 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 1"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 2"/>
w:name="Medium Grid 1 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 2"/>
w:name="Medium Grid 2 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 2"/>
w:name="Medium Grid 3 Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 2"/>
w:name="Dark List Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 2"/>
w:name="Colorful Shading Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 2"/>
w:name="Colorful List Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 2"/>
w:name="Colorful Grid Accent 1"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 3"/>
w:name="Light Shading Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 3"/>
w:name="Light List Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 3"/>
w:name="Light Grid Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 3"/>
w:name="Medium Shading 1 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 3"/>
w:name="Medium Shading 2 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 3"/>
w:name="Medium List 1 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 3"/>
w:name="Medium List 2 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 4"/>
w:name="Medium Grid 1 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 4"/>
w:name="Medium Grid 2 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 4"/>
w:name="Medium Grid 3 Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 4"/>
w:name="Dark List Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 4"/>
w:name="Colorful Shading Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 4"/>
w:name="Colorful List Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 4"/>
w:name="Colorful Grid Accent 2"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 5"/>
w:name="Light Shading Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 5"/>
w:name="Light List Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 5"/>
w:name="Light Grid Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 5"/>
w:name="Medium Shading 1 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 5"/>
w:name="Medium Shading 2 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 5"/>
w:name="Medium List 1 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 5"/>
w:name="Medium List 2 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 6"/>
w:name="Medium Grid 1 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 6"/>
w:name="Medium Grid 2 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 6"/>
w:name="Medium Grid 3 Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 6"/>
w:name="Dark List Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 6"/>
w:name="Colorful Shading Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 6"/>
w:name="Colorful List Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 6"/>
w:name="Colorful Grid Accent 3"/> <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"
w:name="Light Shading Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"
w:name="Light List Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"
w:name="Light Grid Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"
w:name="Medium Shading 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"
w:name="Medium Shading 2 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"
w:name="Medium List 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"
w:name="Medium List 2 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"
w:name="Medium Grid 1 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"
w:name="Medium Grid 2 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"
w:name="Medium Grid 3 Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"
w:name="Dark List Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"
w:name="Colorful Shading Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"
w:name="Colorful List Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"
w:name="Colorful Grid Accent 4"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"
w:name="Light Shading Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"
w:name="Light List Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"
w:name="Light Grid Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"
w:name="Medium Shading 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"
w:name="Medium Shading 2 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"
w:name="Medium List 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"
w:name="Medium List 2 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"
w:name="Medium Grid 1 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"
w:name="Medium Grid 2 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"
w:name="Medium Grid 3 Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"
w:name="Dark List Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"
w:name="Colorful Shading Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"
w:name="Colorful List Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"
w:name="Colorful Grid Accent 5"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0"
w:name="Light Shading Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"
w:name="Light List Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"
w:name="Light Grid Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0"
w:name="Medium Shading 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0"
w:name="Medium Shading 2 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0"
w:name="Medium List 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0"
w:name="Medium List 2 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0"
w:name="Medium Grid 1 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0"
w:name="Medium Grid 2 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0"
w:name="Medium Grid 3 Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0"
w:name="Dark List Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"
w:name="Colorful Shading Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"
w:name="Colorful List Accent 6"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"
w:name="Colorful Grid Accent 6"/>
</w:latentStyles> </w:latentStyles>
<w:style w:type="paragraph" w:default="1" w:styleId="1"> <w:style w:type="paragraph" w:default="1" w:styleId="1">
<w:name w:val="Normal"/> <w:name w:val="Normal"/>
...@@ -3621,8 +3399,7 @@ ...@@ -3621,8 +3399,7 @@
</w:styles> </w:styles>
</pkg:xmlData> </pkg:xmlData>
</pkg:part> </pkg:part>
<pkg:part pkg:name="/word/theme/theme1.xml" <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
<pkg:xmlData> <pkg:xmlData>
<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="WPS"> <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="WPS">
<a:themeElements> <a:themeElements>
...@@ -3804,8 +3581,7 @@ ...@@ -3804,8 +3581,7 @@
<a:effectStyleLst> <a:effectStyleLst>
<a:effectStyle> <a:effectStyle>
<a:effectLst> <a:effectLst>
<a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr" <a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr" rotWithShape="0">
rotWithShape="0">
<a:schemeClr val="phClr"> <a:schemeClr val="phClr">
<a:alpha val="60000"/> <a:alpha val="60000"/>
</a:schemeClr> </a:schemeClr>
...@@ -3814,8 +3590,7 @@ ...@@ -3814,8 +3590,7 @@
</a:effectStyle> </a:effectStyle>
<a:effectStyle> <a:effectStyle>
<a:effectLst> <a:effectLst>
<a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000" <a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000" sy="-100000" algn="bl" rotWithShape="0"/>
sy="-100000" algn="bl" rotWithShape="0"/>
</a:effectLst> </a:effectLst>
</a:effectStyle> </a:effectStyle>
<a:effectStyle> <a:effectStyle>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment