Commit b02e6980 authored by chenzhao's avatar chenzhao

使用登记表生成代码修改

parent 8c4d1b3c
......@@ -662,6 +662,9 @@ public class DateUtils {
}
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(dateParse("2017-02-04 14:58:20", null));
System.out.println(dateTimeToDateStringIfTimeEndZero(new Date()));
......
......@@ -255,5 +255,5 @@ public interface ICommonService {
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;
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.ymt.api.dto.EquipmentCategoryDto;
import com.yeejoin.amos.boot.module.ymt.api.entity.EquipTechParamPipeline;
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.entity.*;
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.mapper.EquipTechParamPipelineMapper;
import com.yeejoin.amos.boot.module.ymt.api.mapper.EquipmentCategoryMapper;
import com.yeejoin.amos.boot.module.ymt.api.mapper.RegistrationInfoMapper;
import com.yeejoin.amos.boot.module.ymt.api.mapper.*;
import com.yeejoin.amos.component.feign.model.FeignClientResult;
import com.yeejoin.amos.component.feign.utils.FeignUtil;
import com.yeejoin.amos.feign.privilege.Privilege;
......@@ -192,6 +188,10 @@ public class CommonServiceImpl implements ICommonService {
@Autowired
PrivilegeFeginService privilegeFeginService;
@Autowired
TzBaseEnterpriseInfoMapper enterpriseInfoMapper;
@Autowired
ConstructionInfoMapper constructionInfoMapper;
@Autowired
CommonMapper commonMapper;
@Autowired
RegistrationInfoMapper tzsJgRegistrationInfoMapper;
......@@ -2222,6 +2222,43 @@ public class CommonServiceImpl implements ICommonService {
public Map<String, Object> getRegistrationFormUrl(String manageType, JSONObject formData) {
String wordPath ;
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)){
wordPath = "use-registration-form-unit.ftl";
fileName = "台套使用登记表_";
......@@ -2252,6 +2289,43 @@ public class CommonServiceImpl implements ICommonService {
@Override
public void getRegistrationFormStream(JSONObject map, HttpServletResponse response){
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 wordPath ;
String fileName ;
......
......@@ -3,70 +3,30 @@
<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:xmlData>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId4"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"
Target="word/document.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/extended-properties"
Target="docProps/app.xml"/>
<Relationship Id="rId3"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"
Target="docProps/custom.xml"/>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.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/extended-properties" Target="docProps/app.xml"/>
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
</Relationships>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/_rels/document.xml.rels"
pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
<pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
<pkg:xmlData>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId7"
Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"
Target="fontTable.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/footer"
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 xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.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/footer" 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>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/document.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
<pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
<pkg:xmlData>
<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">
<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">
<w:body>
<w:p w14:paraId="13A6AC20">
<w:pPr>
......@@ -127,14 +87,6 @@
</w:rPr>
<w:t>登记类别:</w:t>
</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:bookmarkEnd w:id="0"/>
</w:p>
......@@ -238,7 +190,8 @@
<w:t>设备</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -247,7 +200,8 @@
<w:t>基本</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -305,7 +259,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(equList)!''}</w:t>
<w:t>${equList}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -355,7 +309,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(equCategory)!''}</w:t>
<w:t>${equCategory}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -442,7 +396,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(equDefine)!''}</w:t>
<w:t>${equDefine}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -488,7 +442,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(productName)!''}</w:t>
<w:t>${productName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -572,7 +526,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(equCode)!''}</w:t>
<w:t>${equCode}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -618,7 +572,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(equType)!''}</w:t>
<w:t>${equType}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -702,7 +656,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(designUseDate)!''}</w:t>
<w:t>${designUseDate}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -748,7 +702,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(designUnitName)!''}</w:t>
<w:t>${designUnitName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -832,7 +786,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(produceUnitName)!''}</w:t>
<w:t>${produceUnitName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -878,7 +832,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(sgname)!''}</w:t>
<w:t>${uscUnitName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -961,7 +915,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(inspectOrgName)!''}</w:t>
<w:t>${inspectOrgName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1007,7 +961,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(xsjg)!''}</w:t>
<w:t>${xsjg}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1092,7 +1046,8 @@
<w:t>设备</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -1101,7 +1056,8 @@
<w:t>使用</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -1154,7 +1110,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useUnitName)!''}</w:t>
<w:t>${useUnitName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1242,7 +1198,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useUnitAddress)!''}</w:t>
<w:t>${useUnitAddress}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1308,7 +1264,8 @@
<w:rPr>
<w:spacing w:val="3"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -1338,7 +1295,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useUnitCreditCode)!''}</w:t>
<w:t>${useUnitCreditCode}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1384,7 +1341,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(emaill)!''}</w:t>
<w:t>${emaill}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1468,7 +1425,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useInnerCode)!''}</w:t>
<w:t>${useInnerCode}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1514,7 +1471,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(address)!''}</w:t>
<w:t>${address}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1598,7 +1555,7 @@
<w:rFonts w:hint="eastAsia"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useDate)!''}</w:t>
<w:t>${useDate}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1644,7 +1601,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(useUnitPhone)!''}</w:t>
<w:t>${useUnitPhone}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1728,7 +1685,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(safetyManagerName)!''}</w:t>
<w:t>${safetyManagerName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1774,7 +1731,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(phone)!''}</w:t>
<w:t>${phone}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1862,7 +1819,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(estateUnitName)!''}</w:t>
<w:t>${estateUnitName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -1927,7 +1884,8 @@
<w:rPr>
<w:spacing w:val="1"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -1957,7 +1915,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(CQUnitCode)!''}</w:t>
<w:t>${CQUnitCode}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2003,7 +1961,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(estatePhone)!''}</w:t>
<w:t>${estatePhone}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2052,7 +2010,8 @@
<w:t>设备</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2061,7 +2020,8 @@
<w:t>检验</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2114,7 +2074,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(inspectOrgName)!''}</w:t>
<w:t>${inspectOrgName}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2200,7 +2160,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(inspectType)!''}</w:t>
<w:t>${inspectType}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2246,7 +2206,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(jycode)!''}</w:t>
<w:t>${jycode}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2330,7 +2290,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(inspectDate)!''}</w:t>
<w:t>${inspectDate}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2376,7 +2336,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(inspectConclusion)!''}</w:t>
<w:t>${inspectConclusion}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2459,7 +2419,7 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(nextInspectDate)!''}</w:t>
<w:t>${nextInspectDate}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2530,7 +2490,8 @@
<w:t>中华人民共和国特</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2570,13 +2531,14 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(userName)!''}</w:t>
<w:t>${userName}</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="4"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2584,6 +2546,14 @@
</w:rPr>
<w:t>日期:</w:t>
</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 w14:paraId="1D9DF8CC">
<w:pPr>
......@@ -2622,37 +2592,28 @@
<w:spacing w:val="-1"/>
<w:lang w:val="en-US" w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>${(safetyManagerName)!''}</w:t>
<w:t>${safetyManagerName}</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="4"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-1"/>
</w:rPr>
<w:t xml:space="preserve">日期: </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:t>日期:</w:t>
</w:r>
<w:r>
<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:t></w:t>
<w:t>${cruDate}</w:t>
</w:r>
</w:p>
</w:tc>
......@@ -2717,7 +2678,8 @@
<w:rPr>
<w:spacing w:val="4"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2752,19 +2714,20 @@
<w:ind w:left="935"/>
</w:pPr>
<w:r>
<w:t>使用登记证编号: 年</w:t>
<w:t>使用登记证编号: </w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-1"/>
</w:rPr>
<w:t xml:space="preserve"></w:t>
<w:t xml:space="preserve"> </w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="18"/>
</w:rPr>
<w:t xml:space="preserve"> </w:t>
<w:t xml:space="preserve">
</w:t>
</w:r>
<w:r>
<w:rPr>
......@@ -2789,26 +2752,23 @@
<w:sectPr>
<w:footerReference r:id="rId5" w:type="default"/>
<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:gutter="0"/>
<w:pgMar w:top="1523" w:right="4" w:bottom="1323" w:left="0" w:header="1208" w:footer="1135" w:gutter="0"/>
<w:cols w:space="720" w:num="1"/>
</w:sectPr>
</w:body>
</w:document>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/docProps/app.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
<pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
<pkg:xmlData>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<Template>Normal.dotm</Template>
<Pages>2</Pages>
<Words>392</Words>
<Characters>818</Characters>
<Lines>0</Lines>
<Paragraphs>0</Paragraphs>
<TotalTime>0</TotalTime>
<TotalTime>74</TotalTime>
<ScaleCrop>false</ScaleCrop>
<LinksUpToDate>false</LinksUpToDate>
<CharactersWithSpaces>912</CharactersWithSpaces>
......@@ -2817,60 +2777,34 @@
</Properties>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/docProps/core.xml"
pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
<pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
<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">
<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">
<dcterms:created xsi:type="dcterms:W3CDTF">2025-02-11T02:12:00Z</dcterms:created>
<dc:creator>Admin</dc:creator>
<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>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/docProps/custom.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
<pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
<pkg:xmlData>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
<vt:lpwstr>2052-12.1.0.19770</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="KSOTemplateDocerSaveRecord">
<vt:lpwstr>
eyJoZGlkIjoiNTA2ZGEzN2Q0MTEzOGM5MDFiMjY1OWJkMzVhYzAxMWMiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ==
</vt:lpwstr>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="KSOTemplateDocerSaveRecord">
<vt:lpwstr>eyJoZGlkIjoiNTA2ZGEzN2Q0MTEzOGM5MDFiMjY1OWJkMzVhYzAxMWMiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ==</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="ICV">
<vt:lpwstr>B0484F08089D473FB646C3E74C908B84_13</vt:lpwstr>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="ICV">
<vt:lpwstr>0D135CC56052414EA641CAC203AC8D59_13</vt:lpwstr>
</property>
</Properties>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/endnotes.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
<pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
<pkg:xmlData>
<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">
<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">
<w:endnote w:type="separator" w:id="0">
<w:p>
<w:pPr>
......@@ -2894,124 +2828,106 @@
</w:endnotes>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/fontTable.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
<pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
<pkg:xmlData>
<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">
<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">
<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="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF"
w:csb1="00000000"/>
<w:sig w:usb0="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
</w:font>
<w:font w:name="宋体">
<w:panose1 w:val="02010600030101010101"/>
<w:charset w:val="86"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001"
w:csb1="00000000"/>
<w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
</w:font>
<w:font w:name="Wingdings">
<w:panose1 w:val="05000000000000000000"/>
<w:charset w:val="02"/>
<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="80000000"
w:csb1="00000000"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
</w:font>
<w:font w:name="Arial">
<w:panose1 w:val="020B0604020202020204"/>
<w:charset w:val="01"/>
<w:family w:val="swiss"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF"
w:csb1="FFFF0000"/>
<w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
</w:font>
<w:font w:name="黑体">
<w:panose1 w:val="02010609060101010101"/>
<w:charset w:val="86"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001"
w:csb1="00000000"/>
<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="Courier New">
<w:panose1 w:val="02070309020205020404"/>
<w:charset w:val="01"/>
<w:family w:val="modern"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF"
w:csb1="FFFF0000"/>
<w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
</w:font>
<w:font w:name="Symbol">
<w:panose1 w:val="05050102010706020507"/>
<w:charset w:val="02"/>
<w:family w:val="roman"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000"
w:csb1="00000000"/>
<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
</w:font>
<w:font w:name="Calibri">
<w:panose1 w:val="020F0502020204030204"/>
<w:charset w:val="00"/>
<w:family w:val="swiss"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF"
w:csb1="00000000"/>
<w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF" w:csb1="00000000"/>
</w:font>
<w:font w:name="微软雅黑">
<w:panose1 w:val="020B0503020204020204"/>
<w:charset w:val="86"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F"
w:csb1="00000000"/>
<w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F" w:csb1="00000000"/>
</w:font>
<w:font w:name="Tahoma">
<w:panose1 w:val="020B0604030504040204"/>
<w:charset w:val="00"/>
<w:family w:val="auto"/>
<w:pitch w:val="default"/>
<w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF"
w:csb1="20280000"/>
<w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF" 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:fonts>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/footer1.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
<pkg:part pkg:name="/word/footer1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
<pkg:xmlData>
<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">
<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">
<w:p w14:paraId="7B8FBA45">
<w:pPr>
<w:spacing w:line="176" w:lineRule="auto"/>
<w:ind w:left="9647"/>
<w:rPr>
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="Times New Roman"
w:cs="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:sz w:val="21"/>
<w:szCs w:val="21"/>
</w:rPr>
......@@ -3020,27 +2936,9 @@
</w:ftr>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/footnotes.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
<pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
<pkg:xmlData>
<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">
<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">
<w:footnote w:type="separator" w:id="0">
<w:p>
<w:pPr>
......@@ -3064,18 +2962,9 @@
</w:footnotes>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/settings.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
<pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
<pkg:xmlData>
<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">
<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">
<w:zoom w:percent="140"/>
<w:doNotDisplayPageBoundaries w:val="1"/>
<w:embedSystemFonts/>
......@@ -3107,14 +2996,10 @@
<w:doNotUseEastAsianBreakRules/>
<w:useFELayout/>
<w:doNotUseIndentAsNumberingTabStop/>
<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: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="00000000"/>
......@@ -3133,11 +3018,12 @@
<w:rsid w:val="3AFB2473"/>
<w:rsid w:val="3F5B3E28"/>
<w:rsid w:val="431A44C9"/>
<w:rsid w:val="436977DD"/>
<w:rsid w:val="46B17094"/>
<w:rsid w:val="47F21376"/>
<w:rsid w:val="500D6A78"/>
<w:rsid w:val="663A7B6C"/>
<w:rsid w:val="66546DEE"/>
<w:rsid w:val="67BA1B9A"/>
<w:rsid w:val="67FB3202"/>
<w:rsid w:val="724F0D1A"/>
<w:rsid w:val="748C0004"/>
......@@ -3160,41 +3046,25 @@
<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: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:doNotIncludeSubdocsInStats/>
</w:settings>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/styles.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
<pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
<pkg:xmlData>
<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">
<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">
<w:docDefaults>
<w:rPrDefault>
<w:rPr>
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="宋体"
w:cs="Times New Roman"/>
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="宋体" w:cs="Times New Roman"/>
</w:rPr>
</w:rPrDefault>
<w:pPrDefault/>
</w:docDefaults>
<w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1"
w:defUIPriority="99" w:defLockedState="0">
<w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" 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:semiHidden="0"
w:name="heading 1"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" 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 3"/>
<w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 4"/>
......@@ -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 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="annotation reference"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" 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="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 text"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"
w:name="table of authorities"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" 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="toa heading"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List"/>
......@@ -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 4"/>
<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:name="Title"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" 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="Signature"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Default Paragraph Font"/>
......@@ -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 5"/>
<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:name="Subtitle"/>
<w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" 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="Date"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0"
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"/>
<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="Body Text 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 3"/>
......@@ -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="Hyperlink"/>
<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: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="Strong"/>
<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="Plain Text"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="E-mail Signature"/>
......@@ -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="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="60" w:semiHidden="0"
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="62" w:semiHidden="0"
w:name="Light Grid 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="64" w:semiHidden="0"
w:name="Medium Shading 2 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="66" w:semiHidden="0"
w:name="Medium List 2 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="68" w:semiHidden="0"
w:name="Medium Grid 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="70" w:semiHidden="0"
w:name="Dark List 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="72" w:semiHidden="0"
w:name="Colorful List 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="60" w:semiHidden="0"
w:name="Light Shading Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"
w:name="Light List Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"
w:name="Light Grid Accent 2"/>
<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="64" w:semiHidden="0"
w:name="Medium Shading 2 Accent 2"/>
<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="66" w:semiHidden="0"
w:name="Medium List 2 Accent 2"/>
<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="68" w:semiHidden="0"
w:name="Medium Grid 2 Accent 2"/>
<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="70" w:semiHidden="0"
w:name="Dark List Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"
w:name="Colorful Shading Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"
w:name="Colorful List Accent 2"/>
<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:name="Light Shading Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0"
w:name="Light List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0"
w:name="Light Grid Accent 3"/>
<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="64" w:semiHidden="0"
w:name="Medium Shading 2 Accent 3"/>
<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="66" w:semiHidden="0"
w:name="Medium List 2 Accent 3"/>
<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="68" w:semiHidden="0"
w:name="Medium Grid 2 Accent 3"/>
<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="70" w:semiHidden="0"
w:name="Dark List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0"
w:name="Colorful Shading Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0"
w:name="Colorful List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0"
w:name="Colorful Grid Accent 3"/>
<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:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" 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="62" w:semiHidden="0" w:name="Light Grid 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="64" w:semiHidden="0" w:name="Medium Shading 2 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="66" w:semiHidden="0" w:name="Medium List 2 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="68" w:semiHidden="0" w:name="Medium Grid 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="70" w:semiHidden="0" w:name="Dark List 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="72" w:semiHidden="0" w:name="Colorful List 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="60" w:semiHidden="0" w:name="Light Shading Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 2"/>
<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="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 2"/>
<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="66" w:semiHidden="0" w:name="Medium List 2 Accent 2"/>
<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="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 2"/>
<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="70" w:semiHidden="0" w:name="Dark List Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 2"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 2"/>
<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:name="Light Shading Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 3"/>
<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="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 3"/>
<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="66" w:semiHidden="0" w:name="Medium List 2 Accent 3"/>
<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="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 3"/>
<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="70" w:semiHidden="0" w:name="Dark List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 3"/>
<w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 3"/>
<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:style w:type="paragraph" w:default="1" w:styleId="1">
<w:name w:val="Normal"/>
......@@ -3621,8 +3399,7 @@
</w:styles>
</pkg:xmlData>
</pkg:part>
<pkg:part pkg:name="/word/theme/theme1.xml"
pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
<pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
<pkg:xmlData>
<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="WPS">
<a:themeElements>
......@@ -3804,8 +3581,7 @@
<a:effectStyleLst>
<a:effectStyle>
<a:effectLst>
<a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr"
rotWithShape="0">
<a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr" rotWithShape="0">
<a:schemeClr val="phClr">
<a:alpha val="60000"/>
</a:schemeClr>
......@@ -3814,8 +3590,7 @@
</a:effectStyle>
<a:effectStyle>
<a:effectLst>
<a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000"
sy="-100000" algn="bl" rotWithShape="0"/>
<a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000" sy="-100000" algn="bl" rotWithShape="0"/>
</a:effectLst>
</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