Freemarker导出word多图片遇到图片重复问题

折月煮酒 提交于 2020-08-17 07:46:19

遇到的都是缘分,记录一下美好回忆~

公司要求做个一个word报告模板导出,其他的都挺顺利的,就是遇到一个多图片的展示部分,遇到图片重复的问题,图片个数不确定,所以用了list标签:代码如下:

具体的freemarker 导出word的知识大家可以百度下,这里不再做说明了~

上面是错误实例,word 也能成功生成,就是这一块的图片总是重复的~  ,我观察后发现这三处像是一个唯一标示的数据,

就想方法动态替换下,结果好真的好使了,里面的id 部分可以不替换 ~

如下是成功例子:

后面的是我又生成的ftl文件,和上面的多少会有出入,但是原理是正确的

第一次写博客,比较生涩,如果错误望大家不吝指正~

下面是我Freemarker 的工具类和 ftl 模板,希望能给你提供到帮助...

package com.na8000.bs.utils;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.URLEncoder;
import java.util.Map;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import sun.misc.BASE64Encoder;

import com.na8000.framework.system.config.ConfigHelper;
import com.na8000.framework.util.dateutil.DateUtil;

import dm.jdbc.util.StringUtil;
import freemarker.template.Configuration;
import freemarker.template.ObjectWrapper;
import freemarker.template.Template;
import freemarker.template.TemplateExceptionHandler;


/**
 * Freemarker 工具类
 * @author 史卫鹏
 * @date 2020年6月18日 下午3:17:03
 * opyright: Copyright (c) 2020 rhxd
 */
public class FreemarkerUtil {
	//配置信息
    private static Configuration configuration = null;
    //样板路径从配置文件中读取
    String templatePath = ConfigHelper.getValue("freemarker.template.path");
    public FreemarkerUtil(){
    	if(configuration == null){
            
            configuration = new Configuration();
			configuration.setTemplateExceptionHandler(TemplateExceptionHandler.HTML_DEBUG_HANDLER);
			configuration.setObjectWrapper(ObjectWrapper.DEFAULT_WRAPPER);
			configuration.setTemplateUpdateDelay(1200);
			configuration.setDefaultEncoding("utf-8");
			configuration.setLocale(new java.util.Locale("zh_CN"));
			configuration.setNumberFormat("0.##########");
			
			//相对路径
			configuration.setClassForTemplateLoading(FreemarkerUtil.class,templatePath);
//            try {
            	//绝对路径
                //configuration.setDirectoryForTemplateLoading(new File(templateFolder));
//            } catch (Exception e) {
//                e.printStackTrace();
//            }
    	}
    }

    /**
     * 
     * @param request
     * @param response
     * @param map      注入数据
     * @param title    导出文件名称
     * @param ftlFile    样板名称
     * @throws IOException  
     * @return void
     */
    public void exportWord(HttpServletRequest request, HttpServletResponse response, 
    		Map map,String title,String ftlFile) throws IOException {
    	
        Template freemarkerTemplate = configuration.getTemplate(ftlFile);
        File file = null;
        InputStream fin = null;
        ServletOutputStream out = null;
        try {
            // 调用工具类的createDoc方法生成Word文档
            file = createDoc(map,freemarkerTemplate);
            fin = new FileInputStream(file);

            response.setCharacterEncoding("utf-8");
            response.setContentType("application/msword");
            // 设置浏览器以下载的方式处理该文件名
            String fileName = title+DateUtil.getCurrentTime("yyyyMMddHHmmss") + ".doc";
            response.setHeader("Content-Disposition", "attachment;filename="
            		.concat(String.valueOf(URLEncoder.encode(fileName, "UTF-8"))));

            out = response.getOutputStream();
            byte[] buffer = new byte[512];  // 缓冲区
            int bytesToRead = -1;
            // 通过循环将读入的Word文件的内容输出到浏览器中
            while((bytesToRead = fin.read(buffer)) != -1) {
                out.write(buffer, 0, bytesToRead);
            }
        } finally {
            if(fin != null) fin.close();
            if(out != null) out.close();
            if(file != null) file.delete(); // 删除临时文件
        }
    }

    /**
     * 导入模板数据
     * @param dataMap
     * @param template
     * @param fileName 
     * @return  File
     */
    public File createDoc(Map<?, ?> dataMap, Template template) {
        String name =  "test.doc";
        File f = new File(name);
        Template t = template;
        try {
            //这个地方不能使用FileWriter因为需要指定编码类型否则生成的Word文档会因为有无法识别的编码而无法打开
            Writer w = new OutputStreamWriter(new FileOutputStream(f), "utf-8");
            t.process(dataMap, w);
            w.close();
        } catch (Exception ex) {
            ex.printStackTrace();
            throw new RuntimeException(ex);
        }
        return f;
    }
    
    /**
     * 获得图片的base64码 
     * @param src  完整的文件路径
     * @return  String
     */
    public String getImageBase(String src) {
        if(StringUtil.isEmpty(src)){
            return "";
        }
        File file = new File(src);
        if(!file.exists()) {
            return "";
        }
        
        InputStream in = null;
        byte[] data = null;
        try {
        	in = new FileInputStream(file);
            data = new byte[in.available()];
            in.read(data);
            BASE64Encoder encoder = new BASE64Encoder();
            return encoder.encode(data);
        } catch (IOException e) {
          e.printStackTrace();
        }finally{
        	try {
				in.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
        }
        return null;
    }
}
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<w:wordDocument
    xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
    xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
    xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
    xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
    xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
    xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
    xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
    xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
    xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
    xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
    xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
    xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
    xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:w10="urn:schemas-microsoft-com:office:word"
    xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"
    xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint"
    xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
    xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2"
    xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve">
    <w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/>
    <o:DocumentProperties>
        <o:Author>liangzhiping</o:Author>
        <o:LastAuthor>shiweipeng</o:LastAuthor>
        <o:Revision>3</o:Revision>
        <o:TotalTime>18</o:TotalTime>
        <o:Created>2020-06-23T01:48:00Z</o:Created>
        <o:LastSaved>2020-06-23T01:48:00Z</o:LastSaved>
        <o:Pages>1</o:Pages>
        <o:Words>450</o:Words>
        <o:Characters>2566</o:Characters>
        <o:Lines>21</o:Lines>
        <o:Paragraphs>6</o:Paragraphs>
        <o:CharactersWithSpaces>3010</o:CharactersWithSpaces>
        <o:Version>16</o:Version>
    </o:DocumentProperties>
    <w:fonts>
        <w:defaultFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:cs="Times New Roman"/>
        <w:font w:name="Times New Roman">
            <w:panose-1 w:val="02020603050405020304"/>
            <w:charset w:val="00"/>
            <w:family w:val="Roman"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="Wingdings">
            <w:panose-1 w:val="05000000000000000000"/>
            <w:charset w:val="02"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="00000000" w:usb-1="10000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="宋体">
            <w:altName w:val="SimSun"/>
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="00000003" w:usb-1="288F0000" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="黑体">
            <w:altName w:val="SimHei"/>
            <w:panose-1 w:val="02010609060101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="Modern"/>
            <w:pitch w:val="fixed"/>
            <w:sig w:usb-0="800002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="Cambria Math">
            <w:panose-1 w:val="02040503050406030204"/>
            <w:charset w:val="00"/>
            <w:family w:val="Roman"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="E00006FF" w:usb-1="420024FF" w:usb-2="02000000" w:usb-3="00000000" w:csb-0="0000019F" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="等线">
            <w:altName w:val="DengXian"/>
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="等线 Light">
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="Webdings">
            <w:panose-1 w:val="05030102010509060703"/>
            <w:charset w:val="02"/>
            <w:family w:val="Roman"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="00000000" w:usb-1="10000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="方正仿宋_GBK">
            <w:altName w:val="等线"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="default"/>
            <w:sig w:usb-0="00000000" w:usb-1="080E0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="00040000" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="@宋体">
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="00000003" w:usb-1="288F0000" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="@等线">
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="@等线 Light">
            <w:panose-1 w:val="02010600030101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="variable"/>
            <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="@黑体">
            <w:panose-1 w:val="02010609060101010101"/>
            <w:charset w:val="86"/>
            <w:family w:val="Modern"/>
            <w:pitch w:val="fixed"/>
            <w:sig w:usb-0="800002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
        </w:font>
        <w:font w:name="@方正仿宋_GBK">
            <w:charset w:val="86"/>
            <w:family w:val="auto"/>
            <w:pitch w:val="default"/>
            <w:sig w:usb-0="00000000" w:usb-1="080E0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="00040000" w:csb-1="00000000"/>
        </w:font>
    </w:fonts>
    <w:lists>
        <w:listDef w:listDefId="0">
            <w:lsid w:val="0ADF3338"/>
            <w:plt w:val="HybridMultilevel"/>
            <w:tmpl w:val="5D96A7D2"/>
            <w:lvl w:ilvl="0" w:tplc="04090001">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="420" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="1" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="840" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="2" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1260" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="3" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1680" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="4" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2100" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="5" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2520" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="6" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2940" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="7" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3360" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="8" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3780" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="1">
            <w:lsid w:val="1CDE286A"/>
            <w:plt w:val="HybridMultilevel"/>
            <w:tmpl w:val="A77CD18E"/>
            <w:lvl w:ilvl="0" w:tplc="9A982B90">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1、"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="360" w:hanging="360"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%2)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="840" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%3."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="1260" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on">
                <w:start w:val="1"/>
                <w:lvlText w:val="%4."/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1680" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%5)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2100" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%6."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="2520" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on">
                <w:start w:val="1"/>
                <w:lvlText w:val="%7."/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2940" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%8)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3360" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%9."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="3780" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="2">
            <w:lsid w:val="38C521A6"/>
            <w:plt w:val="HybridMultilevel"/>
            <w:tmpl w:val="342E379A"/>
            <w:lvl w:ilvl="0" w:tplc="04090001">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="420" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="1" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="840" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="2" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1260" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="3" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1680" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="4" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2100" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="5" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2520" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="6" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2940" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="7" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3360" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="8" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3780" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="3">
            <w:lsid w:val="3EB975CB"/>
            <w:plt w:val="SingleLevel"/>
            <w:tmpl w:val="0D68BF68"/>
            <w:name w:val="Callout Template"/>
            <w:lvl w:ilvl="0">
                <w:start w:val="1"/>
                <w:suff w:val="Space"/>
                <w:lvlText w:val="="/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="200" w:hanging="200"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Webdings" w:h-ansi="Webdings"/>
                    <w:sz w:val="16"/>
                </w:rPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="4">
            <w:lsid w:val="58A45778"/>
            <w:plt w:val="HybridMultilevel"/>
            <w:tmpl w:val="4CF8518A"/>
            <w:lvl w:ilvl="0" w:tplc="04090011">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="420" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%2)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="840" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%3."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="1260" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on">
                <w:start w:val="1"/>
                <w:lvlText w:val="%4."/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1680" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%5)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2100" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%6."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="2520" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on">
                <w:start w:val="1"/>
                <w:lvlText w:val="%7."/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2940" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="4"/>
                <w:lvlText w:val="%8)"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3360" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="2"/>
                <w:lvlText w:val="%9."/>
                <w:lvlJc w:val="right"/>
                <w:pPr>
                    <w:ind w:left="3780" w:hanging="420"/>
                </w:pPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="5">
            <w:lsid w:val="6B672A31"/>
            <w:plt w:val="Multilevel"/>
            <w:tmpl w:val="127C781E"/>
            <w:lvl w:ilvl="0">
                <w:start w:val="1"/>
                <w:pStyle w:val="MMTopic1"/>
                <w:suff w:val="Space"/>
                <w:lvlText w:val="%1"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="0" w:first-line="0"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="1">
                <w:start w:val="1"/>
                <w:pStyle w:val="MMTopic2"/>
                <w:suff w:val="Space"/>
                <w:lvlText w:val="%1.%2"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="4111" w:first-line="0"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="2">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1418" w:hanging="567"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="3">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1984" w:hanging="708"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="4">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4.%5"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2551" w:hanging="850"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="5">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4.%5.%6"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3260" w:hanging="1134"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="6">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3827" w:hanging="1276"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="7">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="4394" w:hanging="1418"/>
                </w:pPr>
            </w:lvl>
            <w:lvl w:ilvl="8">
                <w:start w:val="1"/>
                <w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8.%9"/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="5102" w:hanging="1700"/>
                </w:pPr>
            </w:lvl>
        </w:listDef>
        <w:listDef w:listDefId="6">
            <w:lsid w:val="723237A3"/>
            <w:plt w:val="HybridMultilevel"/>
            <w:tmpl w:val="3A507282"/>
            <w:lvl w:ilvl="0" w:tplc="04090001">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="420" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="1" w:tplc="04090003">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="840" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="2" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1260" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="3" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="1680" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="4" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2100" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="5" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2520" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="6" w:tplc="04090001" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="2940" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="7" w:tplc="04090003" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3360" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
            <w:lvl w:ilvl="8" w:tplc="04090005" w:tentative="on">
                <w:start w:val="1"/>
                <w:nfc w:val="23"/>
                <w:lvlText w:val=""/>
                <w:lvlJc w:val="left"/>
                <w:pPr>
                    <w:ind w:left="3780" w:hanging="420"/>
                </w:pPr>
                <w:rPr>
                    <w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default"/>
                </w:rPr>
            </w:lvl>
        </w:listDef>
        <w:list w:ilfo="1">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="2">
            <w:ilst w:val="6"/>
        </w:list>
        <w:list w:ilfo="3">
            <w:ilst w:val="1"/>
        </w:list>
        <w:list w:ilfo="4">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="5">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="6">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="7">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="8">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="9">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="10">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="11">
            <w:ilst w:val="2"/>
        </w:list>
        <w:list w:ilfo="12">
            <w:ilst w:val="0"/>
        </w:list>
        <w:list w:ilfo="13">
            <w:ilst w:val="4"/>
        </w:list>
        <w:list w:ilfo="14">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="15">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="16">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="17">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="18">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="19">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="20">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="21">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="22">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="23">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="24">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="25">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="26">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="27">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="28">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="29">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="30">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="31">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="32">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="33">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="34">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="35">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="36">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="37">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="38">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="39">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="40">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="41">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="42">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="43">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="44">
            <w:ilst w:val="5"/>
        </w:list>
        <w:list w:ilfo="45">
            <w:ilst w:val="5"/>
        </w:list>
    </w:lists>
    <w:styles>
        <w:versionOfBuiltInStylenames w:val="7"/>
        <w:latentStyles w:defLockedState="off" w:latentStyleCount="376">
            <w:lsdException w:name="Normal"/>
            <w:lsdException w:name="heading 1"/>
            <w:lsdException w:name="heading 2"/>
            <w:lsdException w:name="heading 3"/>
            <w:lsdException w:name="heading 4"/>
            <w:lsdException w:name="heading 5"/>
            <w:lsdException w:name="heading 6"/>
            <w:lsdException w:name="heading 7"/>
            <w:lsdException w:name="heading 8"/>
            <w:lsdException w:name="heading 9"/>
            <w:lsdException w:name="index 1"/>
            <w:lsdException w:name="index 2"/>
            <w:lsdException w:name="index 3"/>
            <w:lsdException w:name="index 4"/>
            <w:lsdException w:name="index 5"/>
            <w:lsdException w:name="index 6"/>
            <w:lsdException w:name="index 7"/>
            <w:lsdException w:name="index 8"/>
            <w:lsdException w:name="index 9"/>
            <w:lsdException w:name="toc 1"/>
            <w:lsdException w:name="toc 2"/>
            <w:lsdException w:name="toc 3"/>
            <w:lsdException w:name="toc 4"/>
            <w:lsdException w:name="toc 5"/>
            <w:lsdException w:name="toc 6"/>
            <w:lsdException w:name="toc 7"/>
            <w:lsdException w:name="toc 8"/>
            <w:lsdException w:name="toc 9"/>
            <w:lsdException w:name="Normal Indent"/>
            <w:lsdException w:name="footnote text"/>
            <w:lsdException w:name="annotation text"/>
            <w:lsdException w:name="header"/>
            <w:lsdException w:name="footer"/>
            <w:lsdException w:name="index heading"/>
            <w:lsdException w:name="caption"/>
            <w:lsdException w:name="table of figures"/>
            <w:lsdException w:name="envelope address"/>
            <w:lsdException w:name="envelope return"/>
            <w:lsdException w:name="footnote reference"/>
            <w:lsdException w:name="annotation reference"/>
            <w:lsdException w:name="line number"/>
            <w:lsdException w:name="page number"/>
            <w:lsdException w:name="endnote reference"/>
            <w:lsdException w:name="endnote text"/>
            <w:lsdException w:name="table of authorities"/>
            <w:lsdException w:name="macro"/>
            <w:lsdException w:name="toa heading"/>
            <w:lsdException w:name="List"/>
            <w:lsdException w:name="List Bullet"/>
            <w:lsdException w:name="List Number"/>
            <w:lsdException w:name="List 2"/>
            <w:lsdException w:name="List 3"/>
            <w:lsdException w:name="List 4"/>
            <w:lsdException w:name="List 5"/>
            <w:lsdException w:name="List Bullet 2"/>
            <w:lsdException w:name="List Bullet 3"/>
            <w:lsdException w:name="List Bullet 4"/>
            <w:lsdException w:name="List Bullet 5"/>
            <w:lsdException w:name="List Number 2"/>
            <w:lsdException w:name="List Number 3"/>
            <w:lsdException w:name="List Number 4"/>
            <w:lsdException w:name="List Number 5"/>
            <w:lsdException w:name="Title"/>
            <w:lsdException w:name="Closing"/>
            <w:lsdException w:name="Signature"/>
            <w:lsdException w:name="Default Paragraph Font"/>
            <w:lsdException w:name="Body Text"/>
            <w:lsdException w:name="Body Text Indent"/>
            <w:lsdException w:name="List Continue"/>
            <w:lsdException w:name="List Continue 2"/>
            <w:lsdException w:name="List Continue 3"/>
            <w:lsdException w:name="List Continue 4"/>
            <w:lsdException w:name="List Continue 5"/>
            <w:lsdException w:name="Message Header"/>
            <w:lsdException w:name="Subtitle"/>
            <w:lsdException w:name="Salutation"/>
            <w:lsdException w:name="Date"/>
            <w:lsdException w:name="Body Text First Indent"/>
            <w:lsdException w:name="Body Text First Indent 2"/>
            <w:lsdException w:name="Note Heading"/>
            <w:lsdException w:name="Body Text 2"/>
            <w:lsdException w:name="Body Text 3"/>
            <w:lsdException w:name="Body Text Indent 2"/>
            <w:lsdException w:name="Body Text Indent 3"/>
            <w:lsdException w:name="Block Text"/>
            <w:lsdException w:name="Hyperlink"/>
            <w:lsdException w:name="FollowedHyperlink"/>
            <w:lsdException w:name="Strong"/>
            <w:lsdException w:name="Emphasis"/>
            <w:lsdException w:name="Document Map"/>
            <w:lsdException w:name="Plain Text"/>
            <w:lsdException w:name="E-mail Signature"/>
            <w:lsdException w:name="HTML Top of Form"/>
            <w:lsdException w:name="HTML Bottom of Form"/>
            <w:lsdException w:name="Normal (Web)"/>
            <w:lsdException w:name="HTML Acronym"/>
            <w:lsdException w:name="HTML Address"/>
            <w:lsdException w:name="HTML Cite"/>
            <w:lsdException w:name="HTML Code"/>
            <w:lsdException w:name="HTML Definition"/>
            <w:lsdException w:name="HTML Keyboard"/>
            <w:lsdException w:name="HTML Preformatted"/>
            <w:lsdException w:name="HTML Sample"/>
            <w:lsdException w:name="HTML Typewriter"/>
            <w:lsdException w:name="HTML Variable"/>
            <w:lsdException w:name="Normal Table"/>
            <w:lsdException w:name="annotation subject"/>
            <w:lsdException w:name="No List"/>
            <w:lsdException w:name="Outline List 1"/>
            <w:lsdException w:name="Outline List 2"/>
            <w:lsdException w:name="Outline List 3"/>
            <w:lsdException w:name="Table Simple 1"/>
            <w:lsdException w:name="Table Simple 2"/>
            <w:lsdException w:name="Table Simple 3"/>
            <w:lsdException w:name="Table Classic 1"/>
            <w:lsdException w:name="Table Classic 2"/>
            <w:lsdException w:name="Table Classic 3"/>
            <w:lsdException w:name="Table Classic 4"/>
            <w:lsdException w:name="Table Colorful 1"/>
            <w:lsdException w:name="Table Colorful 2"/>
            <w:lsdException w:name="Table Colorful 3"/>
            <w:lsdException w:name="Table Columns 1"/>
            <w:lsdException w:name="Table Columns 2"/>
            <w:lsdException w:name="Table Columns 3"/>
            <w:lsdException w:name="Table Columns 4"/>
            <w:lsdException w:name="Table Columns 5"/>
            <w:lsdException w:name="Table Grid 1"/>
            <w:lsdException w:name="Table Grid 2"/>
            <w:lsdException w:name="Table Grid 3"/>
            <w:lsdException w:name="Table Grid 4"/>
            <w:lsdException w:name="Table Grid 5"/>
            <w:lsdException w:name="Table Grid 6"/>
            <w:lsdException w:name="Table Grid 7"/>
            <w:lsdException w:name="Table Grid 8"/>
            <w:lsdException w:name="Table List 1"/>
            <w:lsdException w:name="Table List 2"/>
            <w:lsdException w:name="Table List 3"/>
            <w:lsdException w:name="Table List 4"/>
            <w:lsdException w:name="Table List 5"/>
            <w:lsdException w:name="Table List 6"/>
            <w:lsdException w:name="Table List 7"/>
            <w:lsdException w:name="Table List 8"/>
            <w:lsdException w:name="Table 3D effects 1"/>
            <w:lsdException w:name="Table 3D effects 2"/>
            <w:lsdException w:name="Table 3D effects 3"/>
            <w:lsdException w:name="Table Contemporary"/>
            <w:lsdException w:name="Table Elegant"/>
            <w:lsdException w:name="Table Professional"/>
            <w:lsdException w:name="Table Subtle 1"/>
            <w:lsdException w:name="Table Subtle 2"/>
            <w:lsdException w:name="Table Web 1"/>
            <w:lsdException w:name="Table Web 2"/>
            <w:lsdException w:name="Table Web 3"/>
            <w:lsdException w:name="Balloon Text"/>
            <w:lsdException w:name="Table Grid"/>
            <w:lsdException w:name="Table Theme"/>
            <w:lsdException w:name="Placeholder Text"/>
            <w:lsdException w:name="No Spacing"/>
            <w:lsdException w:name="Light Shading"/>
            <w:lsdException w:name="Light List"/>
            <w:lsdException w:name="Light Grid"/>
            <w:lsdException w:name="Medium Shading 1"/>
            <w:lsdException w:name="Medium Shading 2"/>
            <w:lsdException w:name="Medium List 1"/>
            <w:lsdException w:name="Medium List 2"/>
            <w:lsdException w:name="Medium Grid 1"/>
            <w:lsdException w:name="Medium Grid 2"/>
            <w:lsdException w:name="Medium Grid 3"/>
            <w:lsdException w:name="Dark List"/>
            <w:lsdException w:name="Colorful Shading"/>
            <w:lsdException w:name="Colorful List"/>
            <w:lsdException w:name="Colorful Grid"/>
            <w:lsdException w:name="Light Shading Accent 1"/>
            <w:lsdException w:name="Light List Accent 1"/>
            <w:lsdException w:name="Light Grid Accent 1"/>
            <w:lsdException w:name="Medium Shading 1 Accent 1"/>
            <w:lsdException w:name="Medium Shading 2 Accent 1"/>
            <w:lsdException w:name="Medium List 1 Accent 1"/>
            <w:lsdException w:name="Revision"/>
            <w:lsdException w:name="List Paragraph"/>
            <w:lsdException w:name="Quote"/>
            <w:lsdException w:name="Intense Quote"/>
            <w:lsdException w:name="Medium List 2 Accent 1"/>
            <w:lsdException w:name="Medium Grid 1 Accent 1"/>
            <w:lsdException w:name="Medium Grid 2 Accent 1"/>
            <w:lsdException w:name="Medium Grid 3 Accent 1"/>
            <w:lsdException w:name="Dark List Accent 1"/>
            <w:lsdException w:name="Colorful Shading Accent 1"/>
            <w:lsdException w:name="Colorful List Accent 1"/>
            <w:lsdException w:name="Colorful Grid Accent 1"/>
            <w:lsdException w:name="Light Shading Accent 2"/>
            <w:lsdException w:name="Light List Accent 2"/>
            <w:lsdException w:name="Light Grid Accent 2"/>
            <w:lsdException w:name="Medium Shading 1 Accent 2"/>
            <w:lsdException w:name="Medium Shading 2 Accent 2"/>
            <w:lsdException w:name="Medium List 1 Accent 2"/>
            <w:lsdException w:name="Medium List 2 Accent 2"/>
            <w:lsdException w:name="Medium Grid 1 Accent 2"/>
            <w:lsdException w:name="Medium Grid 2 Accent 2"/>
            <w:lsdException w:name="Medium Grid 3 Accent 2"/>
            <w:lsdException w:name="Dark List Accent 2"/>
            <w:lsdException w:name="Colorful Shading Accent 2"/>
            <w:lsdException w:name="Colorful List Accent 2"/>
            <w:lsdException w:name="Colorful Grid Accent 2"/>
            <w:lsdException w:name="Light Shading Accent 3"/>
            <w:lsdException w:name="Light List Accent 3"/>
            <w:lsdException w:name="Light Grid Accent 3"/>
            <w:lsdException w:name="Medium Shading 1 Accent 3"/>
            <w:lsdException w:name="Medium Shading 2 Accent 3"/>
            <w:lsdException w:name="Medium List 1 Accent 3"/>
            <w:lsdException w:name="Medium List 2 Accent 3"/>
            <w:lsdException w:name="Medium Grid 1 Accent 3"/>
            <w:lsdException w:name="Medium Grid 2 Accent 3"/>
            <w:lsdException w:name="Medium Grid 3 Accent 3"/>
            <w:lsdException w:name="Dark List Accent 3"/>
            <w:lsdException w:name="Colorful Shading Accent 3"/>
            <w:lsdException w:name="Colorful List Accent 3"/>
            <w:lsdException w:name="Colorful Grid Accent 3"/>
            <w:lsdException w:name="Light Shading Accent 4"/>
            <w:lsdException w:name="Light List Accent 4"/>
            <w:lsdException w:name="Light Grid Accent 4"/>
            <w:lsdException w:name="Medium Shading 1 Accent 4"/>
            <w:lsdException w:name="Medium Shading 2 Accent 4"/>
            <w:lsdException w:name="Medium List 1 Accent 4"/>
            <w:lsdException w:name="Medium List 2 Accent 4"/>
            <w:lsdException w:name="Medium Grid 1 Accent 4"/>
            <w:lsdException w:name="Medium Grid 2 Accent 4"/>
            <w:lsdException w:name="Medium Grid 3 Accent 4"/>
            <w:lsdException w:name="Dark List Accent 4"/>
            <w:lsdException w:name="Colorful Shading Accent 4"/>
            <w:lsdException w:name="Colorful List Accent 4"/>
            <w:lsdException w:name="Colorful Grid Accent 4"/>
            <w:lsdException w:name="Light Shading Accent 5"/>
            <w:lsdException w:name="Light List Accent 5"/>
            <w:lsdException w:name="Light Grid Accent 5"/>
            <w:lsdException w:name="Medium Shading 1 Accent 5"/>
            <w:lsdException w:name="Medium Shading 2 Accent 5"/>
            <w:lsdException w:name="Medium List 1 Accent 5"/>
            <w:lsdException w:name="Medium List 2 Accent 5"/>
            <w:lsdException w:name="Medium Grid 1 Accent 5"/>
            <w:lsdException w:name="Medium Grid 2 Accent 5"/>
            <w:lsdException w:name="Medium Grid 3 Accent 5"/>
            <w:lsdException w:name="Dark List Accent 5"/>
            <w:lsdException w:name="Colorful Shading Accent 5"/>
            <w:lsdException w:name="Colorful List Accent 5"/>
            <w:lsdException w:name="Colorful Grid Accent 5"/>
            <w:lsdException w:name="Light Shading Accent 6"/>
            <w:lsdException w:name="Light List Accent 6"/>
            <w:lsdException w:name="Light Grid Accent 6"/>
            <w:lsdException w:name="Medium Shading 1 Accent 6"/>
            <w:lsdException w:name="Medium Shading 2 Accent 6"/>
            <w:lsdException w:name="Medium List 1 Accent 6"/>
            <w:lsdException w:name="Medium List 2 Accent 6"/>
            <w:lsdException w:name="Medium Grid 1 Accent 6"/>
            <w:lsdException w:name="Medium Grid 2 Accent 6"/>
            <w:lsdException w:name="Medium Grid 3 Accent 6"/>
            <w:lsdException w:name="Dark List Accent 6"/>
            <w:lsdException w:name="Colorful Shading Accent 6"/>
            <w:lsdException w:name="Colorful List Accent 6"/>
            <w:lsdException w:name="Colorful Grid Accent 6"/>
            <w:lsdException w:name="Subtle Emphasis"/>
            <w:lsdException w:name="Intense Emphasis"/>
            <w:lsdException w:name="Subtle Reference"/>
            <w:lsdException w:name="Intense Reference"/>
            <w:lsdException w:name="Book Title"/>
            <w:lsdException w:name="Bibliography"/>
            <w:lsdException w:name="TOC Heading"/>
            <w:lsdException w:name="Plain Table 1"/>
            <w:lsdException w:name="Plain Table 2"/>
            <w:lsdException w:name="Plain Table 3"/>
            <w:lsdException w:name="Plain Table 4"/>
            <w:lsdException w:name="Plain Table 5"/>
            <w:lsdException w:name="Grid Table Light"/>
            <w:lsdException w:name="Grid Table 1 Light"/>
            <w:lsdException w:name="Grid Table 2"/>
            <w:lsdException w:name="Grid Table 3"/>
            <w:lsdException w:name="Grid Table 4"/>
            <w:lsdException w:name="Grid Table 5 Dark"/>
            <w:lsdException w:name="Grid Table 6 Colorful"/>
            <w:lsdException w:name="Grid Table 7 Colorful"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 1"/>
            <w:lsdException w:name="Grid Table 2 Accent 1"/>
            <w:lsdException w:name="Grid Table 3 Accent 1"/>
            <w:lsdException w:name="Grid Table 4 Accent 1"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 1"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 1"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 1"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 2"/>
            <w:lsdException w:name="Grid Table 2 Accent 2"/>
            <w:lsdException w:name="Grid Table 3 Accent 2"/>
            <w:lsdException w:name="Grid Table 4 Accent 2"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 2"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 2"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 2"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 3"/>
            <w:lsdException w:name="Grid Table 2 Accent 3"/>
            <w:lsdException w:name="Grid Table 3 Accent 3"/>
            <w:lsdException w:name="Grid Table 4 Accent 3"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 3"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 3"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 3"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 4"/>
            <w:lsdException w:name="Grid Table 2 Accent 4"/>
            <w:lsdException w:name="Grid Table 3 Accent 4"/>
            <w:lsdException w:name="Grid Table 4 Accent 4"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 4"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 4"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 4"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 5"/>
            <w:lsdException w:name="Grid Table 2 Accent 5"/>
            <w:lsdException w:name="Grid Table 3 Accent 5"/>
            <w:lsdException w:name="Grid Table 4 Accent 5"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 5"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 5"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 5"/>
            <w:lsdException w:name="Grid Table 1 Light Accent 6"/>
            <w:lsdException w:name="Grid Table 2 Accent 6"/>
            <w:lsdException w:name="Grid Table 3 Accent 6"/>
            <w:lsdException w:name="Grid Table 4 Accent 6"/>
            <w:lsdException w:name="Grid Table 5 Dark Accent 6"/>
            <w:lsdException w:name="Grid Table 6 Colorful Accent 6"/>
            <w:lsdException w:name="Grid Table 7 Colorful Accent 6"/>
            <w:lsdException w:name="List Table 1 Light"/>
            <w:lsdException w:name="List Table 2"/>
            <w:lsdException w:name="List Table 3"/>
            <w:lsdException w:name="List Table 4"/>
            <w:lsdException w:name="List Table 5 Dark"/>
            <w:lsdException w:name="List Table 6 Colorful"/>
            <w:lsdException w:name="List Table 7 Colorful"/>
            <w:lsdException w:name="List Table 1 Light Accent 1"/>
            <w:lsdException w:name="List Table 2 Accent 1"/>
            <w:lsdException w:name="List Table 3 Accent 1"/>
            <w:lsdException w:name="List Table 4 Accent 1"/>
            <w:lsdException w:name="List Table 5 Dark Accent 1"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 1"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 1"/>
            <w:lsdException w:name="List Table 1 Light Accent 2"/>
            <w:lsdException w:name="List Table 2 Accent 2"/>
            <w:lsdException w:name="List Table 3 Accent 2"/>
            <w:lsdException w:name="List Table 4 Accent 2"/>
            <w:lsdException w:name="List Table 5 Dark Accent 2"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 2"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 2"/>
            <w:lsdException w:name="List Table 1 Light Accent 3"/>
            <w:lsdException w:name="List Table 2 Accent 3"/>
            <w:lsdException w:name="List Table 3 Accent 3"/>
            <w:lsdException w:name="List Table 4 Accent 3"/>
            <w:lsdException w:name="List Table 5 Dark Accent 3"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 3"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 3"/>
            <w:lsdException w:name="List Table 1 Light Accent 4"/>
            <w:lsdException w:name="List Table 2 Accent 4"/>
            <w:lsdException w:name="List Table 3 Accent 4"/>
            <w:lsdException w:name="List Table 4 Accent 4"/>
            <w:lsdException w:name="List Table 5 Dark Accent 4"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 4"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 4"/>
            <w:lsdException w:name="List Table 1 Light Accent 5"/>
            <w:lsdException w:name="List Table 2 Accent 5"/>
            <w:lsdException w:name="List Table 3 Accent 5"/>
            <w:lsdException w:name="List Table 4 Accent 5"/>
            <w:lsdException w:name="List Table 5 Dark Accent 5"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 5"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 5"/>
            <w:lsdException w:name="List Table 1 Light Accent 6"/>
            <w:lsdException w:name="List Table 2 Accent 6"/>
            <w:lsdException w:name="List Table 3 Accent 6"/>
            <w:lsdException w:name="List Table 4 Accent 6"/>
            <w:lsdException w:name="List Table 5 Dark Accent 6"/>
            <w:lsdException w:name="List Table 6 Colorful Accent 6"/>
            <w:lsdException w:name="List Table 7 Colorful Accent 6"/>
            <w:lsdException w:name="Mention"/>
            <w:lsdException w:name="Smart Hyperlink"/>
            <w:lsdException w:name="Hashtag"/>
            <w:lsdException w:name="Unresolved Mention"/>
            <w:lsdException w:name="Smart Link"/>
        </w:latentStyles>
        <w:style w:type="paragraph" w:default="on" w:styleId="a">
            <w:name w:val="Normal"/>
            <wx:uiName wx:val="正文"/>
            <w:pPr>
                <w:widowControl w:val="off"/>
                <w:jc w:val="both"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:kern w:val="2"/>
                <w:sz w:val="21"/>
                <w:sz-cs w:val="22"/>
                <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="1">
            <w:name w:val="heading 1"/>
            <wx:uiName wx:val="标题 1"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:link w:val="10"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:keepNext/>
                <w:keepLines/>
                <w:spacing w:before="340" w:after="330" w:line="578" w:line-rule="auto"/>
                <w:outlineLvl w:val="0"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:b/>
                <w:b-cs/>
                <w:kern w:val="44"/>
                <w:sz w:val="44"/>
                <w:sz-cs w:val="44"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="2">
            <w:name w:val="heading 2"/>
            <wx:uiName wx:val="标题 2"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:link w:val="20"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:keepNext/>
                <w:keepLines/>
                <w:spacing w:before="260" w:after="260" w:line="416" w:line-rule="auto"/>
                <w:outlineLvl w:val="1"/>
            </w:pPr>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light"/>
                <wx:font wx:val="等线 Light"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="3">
            <w:name w:val="heading 3"/>
            <wx:uiName wx:val="标题 3"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:link w:val="30"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:keepNext/>
                <w:keepLines/>
                <w:spacing w:before="260" w:after="260" w:line="416" w:line-rule="auto"/>
                <w:outlineLvl w:val="2"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="4">
            <w:name w:val="heading 4"/>
            <wx:uiName wx:val="标题 4"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:link w:val="40"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:keepNext/>
                <w:keepLines/>
                <w:spacing w:before="280" w:after="290" w:line="376" w:line-rule="auto"/>
                <w:outlineLvl w:val="3"/>
            </w:pPr>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light"/>
                <wx:font wx:val="等线 Light"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="28"/>
                <w:sz-cs w:val="28"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:default="on" w:styleId="a0">
            <w:name w:val="Default Paragraph Font"/>
            <wx:uiName wx:val="默认段落字体"/>
        </w:style>
        <w:style w:type="table" w:default="on" w:styleId="a1">
            <w:name w:val="Normal Table"/>
            <wx:uiName wx:val="普通表格"/>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/>
            </w:rPr>
            <w:tblPr>
                <w:tblInd w:w="0" w:type="dxa"/>
                <w:tblCellMar>
                    <w:top w:w="0" w:type="dxa"/>
                    <w:left w:w="108" w:type="dxa"/>
                    <w:bottom w:w="0" w:type="dxa"/>
                    <w:right w:w="108" w:type="dxa"/>
                </w:tblCellMar>
            </w:tblPr>
        </w:style>
        <w:style w:type="list" w:default="on" w:styleId="a2">
            <w:name w:val="No List"/>
            <wx:uiName wx:val="无列表"/>
        </w:style>
        <w:style w:type="paragraph" w:styleId="a3">
            <w:name w:val="Title"/>
            <wx:uiName wx:val="标题"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:link w:val="a4"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:spacing w:before="240" w:after="60"/>
                <w:jc w:val="center"/>
                <w:outlineLvl w:val="0"/>
            </w:pPr>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light"/>
                <wx:font wx:val="等线 Light"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="a4">
            <w:name w:val="标题 字符"/>
            <w:link w:val="a3"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="MMTitle">
            <w:name w:val="MM Title"/>
            <w:basedOn w:val="a3"/>
            <w:link w:val="MMTitle0"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <wx:font wx:val="等线 Light"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="MMTitle0">
            <w:name w:val="MM Title 字符"/>
            <w:link w:val="MMTitle"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="10">
            <w:name w:val="标题 1 字符"/>
            <w:link w:val="1"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:b/>
                <w:b-cs/>
                <w:kern w:val="44"/>
                <w:sz w:val="44"/>
                <w:sz-cs w:val="44"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="MMTopic1">
            <w:name w:val="MM Topic 1"/>
            <w:basedOn w:val="1"/>
            <w:link w:val="MMTopic10"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:listPr>
                    <w:ilfo w:val="1"/>
                </w:listPr>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="MMTopic10">
            <w:name w:val="MM Topic 1 字符"/>
            <w:link w:val="MMTopic1"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:b/>
                <w:b-cs/>
                <w:kern w:val="44"/>
                <w:sz w:val="44"/>
                <w:sz-cs w:val="44"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="20">
            <w:name w:val="标题 2 字符"/>
            <w:link w:val="2"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="MMTopic2">
            <w:name w:val="MM Topic 2"/>
            <w:basedOn w:val="2"/>
            <w:link w:val="MMTopic20"/>
            <w:rsid w:val="00A10A93"/>
            <w:pPr>
                <w:listPr>
                    <w:ilvl w:val="1"/>
                    <w:ilfo w:val="1"/>
                </w:listPr>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线 Light"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="MMTopic20">
            <w:name w:val="MM Topic 2 字符"/>
            <w:link w:val="MMTopic2"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="30">
            <w:name w:val="标题 3 字符"/>
            <w:link w:val="3"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="MMTopic3">
            <w:name w:val="MM Topic 3"/>
            <w:basedOn w:val="3"/>
            <w:link w:val="MMTopic30"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <wx:font wx:val="等线"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="MMTopic30">
            <w:name w:val="MM Topic 3 字符"/>
            <w:link w:val="MMTopic3"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="32"/>
                <w:sz-cs w:val="32"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="40">
            <w:name w:val="标题 4 字符"/>
            <w:link w:val="4"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="28"/>
                <w:sz-cs w:val="28"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="MMTopic4">
            <w:name w:val="MM Topic 4"/>
            <w:basedOn w:val="4"/>
            <w:link w:val="MMTopic40"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <wx:font wx:val="等线 Light"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="MMTopic40">
            <w:name w:val="MM Topic 4 字符"/>
            <w:link w:val="MMTopic4"/>
            <w:rsid w:val="00A10A93"/>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="等线 Light" w:h-ansi="等线 Light" w:cs="Times New Roman"/>
                <w:b/>
                <w:b-cs/>
                <w:sz w:val="28"/>
                <w:sz-cs w:val="28"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="a5">
            <w:name w:val="Balloon Text"/>
            <wx:uiName wx:val="批注框文本"/>
            <w:basedOn w:val="a"/>
            <w:link w:val="a6"/>
            <w:rsid w:val="00354966"/>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="a6">
            <w:name w:val="批注框文本 字符"/>
            <w:link w:val="a5"/>
            <w:rsid w:val="00354966"/>
            <w:rPr>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="a7">
            <w:name w:val="List Paragraph"/>
            <wx:uiName wx:val="列表段落"/>
            <w:basedOn w:val="a"/>
            <w:rsid w:val="00775C09"/>
            <w:pPr>
                <w:ind w:first-line-chars="200" w:first-line="420"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="a8">
            <w:name w:val="header"/>
            <wx:uiName wx:val="页眉"/>
            <w:basedOn w:val="a"/>
            <w:link w:val="a9"/>
            <w:rsid w:val="00C13DD4"/>
            <w:pPr>
                <w:pBdr>
                    <w:bottom w:val="single" w:sz="6" wx:bdrwidth="15" w:space="1" w:color="auto"/>
                </w:pBdr>
                <w:tabs>
                    <w:tab w:val="center" w:pos="4153"/>
                    <w:tab w:val="right" w:pos="8306"/>
                </w:tabs>
                <w:snapToGrid w:val="off"/>
                <w:jc w:val="center"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="a9">
            <w:name w:val="页眉 字符"/>
            <w:link w:val="a8"/>
            <w:rsid w:val="00C13DD4"/>
            <w:rPr>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="aa">
            <w:name w:val="footer"/>
            <wx:uiName wx:val="页脚"/>
            <w:basedOn w:val="a"/>
            <w:link w:val="ab"/>
            <w:rsid w:val="00C13DD4"/>
            <w:pPr>
                <w:tabs>
                    <w:tab w:val="center" w:pos="4153"/>
                    <w:tab w:val="right" w:pos="8306"/>
                </w:tabs>
                <w:snapToGrid w:val="off"/>
                <w:jc w:val="left"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="character" w:styleId="ab">
            <w:name w:val="页脚 字符"/>
            <w:link w:val="aa"/>
            <w:rsid w:val="00C13DD4"/>
            <w:rPr>
                <w:sz w:val="18"/>
                <w:sz-cs w:val="18"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="rpt1">
            <w:name w:val="rpt1"/>
            <w:basedOn w:val="a"/>
            <w:rsid w:val="00040C07"/>
            <w:pPr>
                <w:spacing w:line="360" w:line-rule="auto"/>
                <w:jc w:val="center"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:sz-cs w:val="21"/>
            </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="ac">
            <w:name w:val="caption"/>
            <wx:uiName wx:val="题注"/>
            <w:basedOn w:val="a"/>
            <w:next w:val="a"/>
            <w:rsid w:val="00040C07"/>
            <w:pPr>
                <w:spacing w:line="360" w:line-rule="auto"/>
                <w:ind w:first-line-chars="200" w:first-line="200"/>
            </w:pPr>
            <w:rPr>
                <w:rFonts w:ascii="等线 Light" w:fareast="黑体" w:h-ansi="等线 Light"/>
                <wx:font wx:val="等线 Light"/>
                <w:sz w:val="20"/>
                <w:sz-cs w:val="20"/>
            </w:rPr>
        </w:style>
        <w:style w:type="table" w:styleId="tbstyle1">
            <w:name w:val="tb_style_1"/>
            <w:basedOn w:val="a1"/>
            <w:rsid w:val="004D60BE"/>
            <w:pPr>
                <w:jc w:val="center"/>
            </w:pPr>
            <w:rPr>
                <wx:font wx:val="等线"/>
                <w:sz-cs w:val="21"/>
            </w:rPr>
            <w:tblPr>
                <w:tblStyleRowBandSize w:val="1"/>
                <w:tblBorders>
                    <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                </w:tblBorders>
            </w:tblPr>
            <w:tcPr>
                <w:vAlign w:val="center"/>
            </w:tcPr>
            <w:tblStylePr w:type="firstRow">
                <w:pPr>
                    <w:jc w:val="center"/>
                </w:pPr>
                <w:rPr>
                    <w:b/>
                </w:rPr>
                <w:tblPr/>
                <w:tcPr>
                    <w:tcBorders>
                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                        <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                        <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    </w:tcBorders>
                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                </w:tcPr>
            </w:tblStylePr>
        </w:style>
        <w:style w:type="table" w:styleId="ad">
            <w:name w:val="Table Grid"/>
            <wx:uiName wx:val="网格型"/>
            <w:basedOn w:val="a1"/>
            <w:rsid w:val="00384DF9"/>
            <w:rPr>
                <wx:font wx:val="等线"/>
            </w:rPr>
            <w:tblPr>
                <w:tblBorders>
                    <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                    <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                </w:tblBorders>
            </w:tblPr>
        </w:style>
    </w:styles>
    <w:divs>
        <w:div w:id="459038412">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="527136037">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="605693312">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="610864242">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="963849135">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1021008990">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1150903664">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1315913740">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1335187625">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1529677453">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1823354145">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1852836744">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="1954164410">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="2013798051">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
        <w:div w:id="2133592007">
            <w:bodyDiv w:val="on"/>
            <w:marLeft w:val="0"/>
            <w:marRight w:val="0"/>
            <w:marTop w:val="0"/>
            <w:marBottom w:val="0"/>
            <w:divBdr>
                <w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
                <w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
            </w:divBdr>
        </w:div>
    </w:divs>
    <w:shapeDefaults>
        <o:shapedefaults v:ext="edit" spidmax="2049"/>
        <o:shapelayout v:ext="edit">
            <o:idmap v:ext="edit" data="1"/>
        </o:shapelayout>
    </w:shapeDefaults>
    <w:docPr>
        <w:view w:val="print"/>
        <w:zoom w:percent="180"/>
        <w:doNotEmbedSystemFonts/>
        <w:bordersDontSurroundHeader/>
        <w:bordersDontSurroundFooter/>
        <w:hideSpellingErrors/>
        <w:defaultTabStop w:val="420"/>
        <w:drawingGridVerticalSpacing w:val="156"/>
        <w:displayHorizontalDrawingGridEvery w:val="0"/>
        <w:displayVerticalDrawingGridEvery w:val="2"/>
        <w:punctuationKerning/>
        <w:characterSpacingControl w:val="CompressPunctuation"/>
        <w:optimizeForBrowser/>
        <w:relyOnVML/>
        <w:allowPNG/>
        <w:validateAgainstSchema/>
        <w:saveInvalidXML w:val="off"/>
        <w:ignoreMixedContent w:val="off"/>
        <w:alwaysShowPlaceholderText w:val="off"/>
        <w:hdrShapeDefaults>
            <o:shapedefaults v:ext="edit" spidmax="2049"/>
        </w:hdrShapeDefaults>
        <w:footnotePr>
            <w:footnote w:type="separator">
                <w:p wsp:rsidR="009C53A2" wsp:rsidRDefault="009C53A2" wsp:rsidP="00C13DD4">
                    <w:r>
                        <w:separator/>
                    </w:r>
                </w:p>
            </w:footnote>
            <w:footnote w:type="continuation-separator">
                <w:p wsp:rsidR="009C53A2" wsp:rsidRDefault="009C53A2" wsp:rsidP="00C13DD4">
                    <w:r>
                        <w:continuationSeparator/>
                    </w:r>
                </w:p>
            </w:footnote>
        </w:footnotePr>
        <w:endnotePr>
            <w:endnote w:type="separator">
                <w:p wsp:rsidR="009C53A2" wsp:rsidRDefault="009C53A2" wsp:rsidP="00C13DD4">
                    <w:r>
                        <w:separator/>
                    </w:r>
                </w:p>
            </w:endnote>
            <w:endnote w:type="continuation-separator">
                <w:p wsp:rsidR="009C53A2" wsp:rsidRDefault="009C53A2" wsp:rsidP="00C13DD4">
                    <w:r>
                        <w:continuationSeparator/>
                    </w:r>
                </w:p>
            </w:endnote>
        </w:endnotePr>
        <w:compat>
            <w:spaceForUL/>
            <w:balanceSingleByteDoubleByteWidth/>
            <w:doNotLeaveBackslashAlone/>
            <w:ulTrailSpace/>
            <w:doNotExpandShiftReturn/>
            <w:adjustLineHeightInTable/>
            <w:breakWrappedTables/>
            <w:snapToGridInCell/>
            <w:wrapTextWithPunct/>
            <w:useAsianBreakRules/>
            <w:dontGrowAutofit/>
            <w:useFELayout/>
        </w:compat>
        <wsp:rsids>
            <wsp:rsidRoot wsp:val="004151B7"/>
            <wsp:rsid wsp:val="00002440"/>
            <wsp:rsid wsp:val="0001204F"/>
            <wsp:rsid wsp:val="00040C07"/>
            <wsp:rsid wsp:val="0005434B"/>
            <wsp:rsid wsp:val="00062467"/>
            <wsp:rsid wsp:val="000653B9"/>
            <wsp:rsid wsp:val="000657BF"/>
            <wsp:rsid wsp:val="00067F80"/>
            <wsp:rsid wsp:val="000A3596"/>
            <wsp:rsid wsp:val="000A537E"/>
            <wsp:rsid wsp:val="000B1996"/>
            <wsp:rsid wsp:val="000B1A45"/>
            <wsp:rsid wsp:val="000B7310"/>
            <wsp:rsid wsp:val="000C617B"/>
            <wsp:rsid wsp:val="000D6CF2"/>
            <wsp:rsid wsp:val="000E4E9B"/>
            <wsp:rsid wsp:val="00106B50"/>
            <wsp:rsid wsp:val="0012055D"/>
            <wsp:rsid wsp:val="00124306"/>
            <wsp:rsid wsp:val="001254A8"/>
            <wsp:rsid wsp:val="00141F96"/>
            <wsp:rsid wsp:val="00141FDF"/>
            <wsp:rsid wsp:val="00142117"/>
            <wsp:rsid wsp:val="00146D60"/>
            <wsp:rsid wsp:val="0015246E"/>
            <wsp:rsid wsp:val="001553F4"/>
            <wsp:rsid wsp:val="00166228"/>
            <wsp:rsid wsp:val="00170BC8"/>
            <wsp:rsid wsp:val="00175955"/>
            <wsp:rsid wsp:val="001A6665"/>
            <wsp:rsid wsp:val="001B24E1"/>
            <wsp:rsid wsp:val="001E62A4"/>
            <wsp:rsid wsp:val="001E64B4"/>
            <wsp:rsid wsp:val="001F34C7"/>
            <wsp:rsid wsp:val="001F4823"/>
            <wsp:rsid wsp:val="00204F93"/>
            <wsp:rsid wsp:val="0023604A"/>
            <wsp:rsid wsp:val="00254F41"/>
            <wsp:rsid wsp:val="00260E16"/>
            <wsp:rsid wsp:val="00276411"/>
            <wsp:rsid wsp:val="002905EF"/>
            <wsp:rsid wsp:val="002B1315"/>
            <wsp:rsid wsp:val="002C0DC8"/>
            <wsp:rsid wsp:val="002D586F"/>
            <wsp:rsid wsp:val="002E0919"/>
            <wsp:rsid wsp:val="002E7E39"/>
            <wsp:rsid wsp:val="002F5153"/>
            <wsp:rsid wsp:val="00303F44"/>
            <wsp:rsid wsp:val="00307AD9"/>
            <wsp:rsid wsp:val="00313DEA"/>
            <wsp:rsid wsp:val="003211AF"/>
            <wsp:rsid wsp:val="00323CCA"/>
            <wsp:rsid wsp:val="00326E60"/>
            <wsp:rsid wsp:val="00345DF6"/>
            <wsp:rsid wsp:val="00354966"/>
            <wsp:rsid wsp:val="003557D5"/>
            <wsp:rsid wsp:val="003642FD"/>
            <wsp:rsid wsp:val="00370F57"/>
            <wsp:rsid wsp:val="003725A4"/>
            <wsp:rsid wsp:val="00384DF9"/>
            <wsp:rsid wsp:val="00392787"/>
            <wsp:rsid wsp:val="003961BB"/>
            <wsp:rsid wsp:val="003A2E93"/>
            <wsp:rsid wsp:val="003E4D74"/>
            <wsp:rsid wsp:val="003F0899"/>
            <wsp:rsid wsp:val="00404C09"/>
            <wsp:rsid wsp:val="00410E04"/>
            <wsp:rsid wsp:val="004151B7"/>
            <wsp:rsid wsp:val="004301D5"/>
            <wsp:rsid wsp:val="00431F6B"/>
            <wsp:rsid wsp:val="00446D7E"/>
            <wsp:rsid wsp:val="00447617"/>
            <wsp:rsid wsp:val="00466718"/>
            <wsp:rsid wsp:val="00473B46"/>
            <wsp:rsid wsp:val="00475789"/>
            <wsp:rsid wsp:val="0047788C"/>
            <wsp:rsid wsp:val="00482F73"/>
            <wsp:rsid wsp:val="004A1770"/>
            <wsp:rsid wsp:val="004A2E42"/>
            <wsp:rsid wsp:val="004A508A"/>
            <wsp:rsid wsp:val="004C0C34"/>
            <wsp:rsid wsp:val="004C45A9"/>
            <wsp:rsid wsp:val="004D60BE"/>
            <wsp:rsid wsp:val="00505B24"/>
            <wsp:rsid wsp:val="00511F01"/>
            <wsp:rsid wsp:val="00524CA3"/>
            <wsp:rsid wsp:val="005406F3"/>
            <wsp:rsid wsp:val="00540DAB"/>
            <wsp:rsid wsp:val="005466F7"/>
            <wsp:rsid wsp:val="005472F0"/>
            <wsp:rsid wsp:val="00552B61"/>
            <wsp:rsid wsp:val="005574C1"/>
            <wsp:rsid wsp:val="005576E7"/>
            <wsp:rsid wsp:val="00557FED"/>
            <wsp:rsid wsp:val="00577D6E"/>
            <wsp:rsid wsp:val="005A73D1"/>
            <wsp:rsid wsp:val="005C2FF2"/>
            <wsp:rsid wsp:val="00660210"/>
            <wsp:rsid wsp:val="0066557F"/>
            <wsp:rsid wsp:val="00675A2C"/>
            <wsp:rsid wsp:val="006760ED"/>
            <wsp:rsid wsp:val="0068373C"/>
            <wsp:rsid wsp:val="006902C3"/>
            <wsp:rsid wsp:val="006B2968"/>
            <wsp:rsid wsp:val="006B3CA6"/>
            <wsp:rsid wsp:val="006C2948"/>
            <wsp:rsid wsp:val="006D6402"/>
            <wsp:rsid wsp:val="006E6B59"/>
            <wsp:rsid wsp:val="006E7C63"/>
            <wsp:rsid wsp:val="00702B49"/>
            <wsp:rsid wsp:val="007110B2"/>
            <wsp:rsid wsp:val="00716C1D"/>
            <wsp:rsid wsp:val="007346EC"/>
            <wsp:rsid wsp:val="00737396"/>
            <wsp:rsid wsp:val="00743017"/>
            <wsp:rsid wsp:val="007459B7"/>
            <wsp:rsid wsp:val="0075643F"/>
            <wsp:rsid wsp:val="007603CF"/>
            <wsp:rsid wsp:val="00765AA4"/>
            <wsp:rsid wsp:val="007725B6"/>
            <wsp:rsid wsp:val="00775C09"/>
            <wsp:rsid wsp:val="00782E8E"/>
            <wsp:rsid wsp:val="007A42A9"/>
            <wsp:rsid wsp:val="007B3410"/>
            <wsp:rsid wsp:val="007B70FE"/>
            <wsp:rsid wsp:val="007D0E4E"/>
            <wsp:rsid wsp:val="007D1CD2"/>
            <wsp:rsid wsp:val="007D5EF0"/>
            <wsp:rsid wsp:val="007E05FB"/>
            <wsp:rsid wsp:val="007E577D"/>
            <wsp:rsid wsp:val="007E5B54"/>
            <wsp:rsid wsp:val="00804E2B"/>
            <wsp:rsid wsp:val="00811ACB"/>
            <wsp:rsid wsp:val="0082174B"/>
            <wsp:rsid wsp:val="00830C8A"/>
            <wsp:rsid wsp:val="008350F4"/>
            <wsp:rsid wsp:val="00835BB5"/>
            <wsp:rsid wsp:val="00835F6B"/>
            <wsp:rsid wsp:val="00840222"/>
            <wsp:rsid wsp:val="00846578"/>
            <wsp:rsid wsp:val="00854B51"/>
            <wsp:rsid wsp:val="00863E04"/>
            <wsp:rsid wsp:val="00866792"/>
            <wsp:rsid wsp:val="00895FF6"/>
            <wsp:rsid wsp:val="008966C4"/>
            <wsp:rsid wsp:val="008A67F8"/>
            <wsp:rsid wsp:val="008D3E53"/>
            <wsp:rsid wsp:val="008D654B"/>
            <wsp:rsid wsp:val="008E1763"/>
            <wsp:rsid wsp:val="008F7FD1"/>
            <wsp:rsid wsp:val="009344A1"/>
            <wsp:rsid wsp:val="009650D5"/>
            <wsp:rsid wsp:val="00975310"/>
            <wsp:rsid wsp:val="00986758"/>
            <wsp:rsid wsp:val="009901E2"/>
            <wsp:rsid wsp:val="009C53A2"/>
            <wsp:rsid wsp:val="009C7671"/>
            <wsp:rsid wsp:val="009D7626"/>
            <wsp:rsid wsp:val="009F3973"/>
            <wsp:rsid wsp:val="00A10A93"/>
            <wsp:rsid wsp:val="00A1540F"/>
            <wsp:rsid wsp:val="00A303A0"/>
            <wsp:rsid wsp:val="00A408E0"/>
            <wsp:rsid wsp:val="00A42207"/>
            <wsp:rsid wsp:val="00A702CF"/>
            <wsp:rsid wsp:val="00A7356F"/>
            <wsp:rsid wsp:val="00A92BC7"/>
            <wsp:rsid wsp:val="00AC3240"/>
            <wsp:rsid wsp:val="00AD48A5"/>
            <wsp:rsid wsp:val="00AF0042"/>
            <wsp:rsid wsp:val="00B05939"/>
            <wsp:rsid wsp:val="00B44B38"/>
            <wsp:rsid wsp:val="00B7068D"/>
            <wsp:rsid wsp:val="00B80B17"/>
            <wsp:rsid wsp:val="00B87BA0"/>
            <wsp:rsid wsp:val="00B900D1"/>
            <wsp:rsid wsp:val="00B90660"/>
            <wsp:rsid wsp:val="00BB1CF6"/>
            <wsp:rsid wsp:val="00BD553C"/>
            <wsp:rsid wsp:val="00BE270F"/>
            <wsp:rsid wsp:val="00BE5B67"/>
            <wsp:rsid wsp:val="00C036EA"/>
            <wsp:rsid wsp:val="00C06823"/>
            <wsp:rsid wsp:val="00C13DD4"/>
            <wsp:rsid wsp:val="00C25048"/>
            <wsp:rsid wsp:val="00C27F98"/>
            <wsp:rsid wsp:val="00C3587D"/>
            <wsp:rsid wsp:val="00C4052B"/>
            <wsp:rsid wsp:val="00C42EDE"/>
            <wsp:rsid wsp:val="00C4496B"/>
            <wsp:rsid wsp:val="00C45144"/>
            <wsp:rsid wsp:val="00C45AA4"/>
            <wsp:rsid wsp:val="00C50632"/>
            <wsp:rsid wsp:val="00C622CF"/>
            <wsp:rsid wsp:val="00C6356F"/>
            <wsp:rsid wsp:val="00C712E7"/>
            <wsp:rsid wsp:val="00C86C7D"/>
            <wsp:rsid wsp:val="00C94460"/>
            <wsp:rsid wsp:val="00C965AE"/>
            <wsp:rsid wsp:val="00C96994"/>
            <wsp:rsid wsp:val="00CF0EB7"/>
            <wsp:rsid wsp:val="00CF137F"/>
            <wsp:rsid wsp:val="00CF4538"/>
            <wsp:rsid wsp:val="00D06BB9"/>
            <wsp:rsid wsp:val="00D16B0C"/>
            <wsp:rsid wsp:val="00D21E14"/>
            <wsp:rsid wsp:val="00D258E9"/>
            <wsp:rsid wsp:val="00D43C96"/>
            <wsp:rsid wsp:val="00D614B3"/>
            <wsp:rsid wsp:val="00D812A8"/>
            <wsp:rsid wsp:val="00D90386"/>
            <wsp:rsid wsp:val="00D95D9C"/>
            <wsp:rsid wsp:val="00D9731C"/>
            <wsp:rsid wsp:val="00DA1937"/>
            <wsp:rsid wsp:val="00DA66BF"/>
            <wsp:rsid wsp:val="00DC1AAB"/>
            <wsp:rsid wsp:val="00DC49A1"/>
            <wsp:rsid wsp:val="00DE2518"/>
            <wsp:rsid wsp:val="00DF140F"/>
            <wsp:rsid wsp:val="00E144F2"/>
            <wsp:rsid wsp:val="00E17875"/>
            <wsp:rsid wsp:val="00E35C83"/>
            <wsp:rsid wsp:val="00E50E80"/>
            <wsp:rsid wsp:val="00E605D1"/>
            <wsp:rsid wsp:val="00E72F24"/>
            <wsp:rsid wsp:val="00E760F1"/>
            <wsp:rsid wsp:val="00E930EF"/>
            <wsp:rsid wsp:val="00EA132A"/>
            <wsp:rsid wsp:val="00EC3E0B"/>
            <wsp:rsid wsp:val="00ED01EB"/>
            <wsp:rsid wsp:val="00ED3452"/>
            <wsp:rsid wsp:val="00ED354C"/>
            <wsp:rsid wsp:val="00ED5394"/>
            <wsp:rsid wsp:val="00EF3AE5"/>
            <wsp:rsid wsp:val="00F02AE6"/>
            <wsp:rsid wsp:val="00F03B01"/>
            <wsp:rsid wsp:val="00F2297D"/>
            <wsp:rsid wsp:val="00F5011B"/>
            <wsp:rsid wsp:val="00F55E44"/>
            <wsp:rsid wsp:val="00F6390B"/>
            <wsp:rsid wsp:val="00F754B9"/>
            <wsp:rsid wsp:val="00F81CFE"/>
            <wsp:rsid wsp:val="00F96A8C"/>
            <wsp:rsid wsp:val="00F973AD"/>
            <wsp:rsid wsp:val="00FA6749"/>
            <wsp:rsid wsp:val="00FA74A0"/>
            <wsp:rsid wsp:val="00FB6E14"/>
            <wsp:rsid wsp:val="00FD5726"/>
            <wsp:rsid wsp:val="00FF4DD0"/>
        </wsp:rsids>
    </w:docPr>
    <w:body>
        <wx:sect>
            <w:p wsp:rsidR="00204F93" wsp:rsidRPr="00482F73" wsp:rsidRDefault="006B3CA6" wsp:rsidP="006B3CA6">
                <w:pPr>
                    <w:jc w:val="center"/>
                    <w:rPr>
                        <w:b/>
                        <w:b-cs/>
                        <w:sz w:val="32"/>
                        <w:sz-cs w:val="32"/>
                    </w:rPr>
                </w:pPr>
                <w:r wsp:rsidRPr="00482F73">
                    <w:rPr>
                        <w:rFonts w:hint="fareast"/>
                        <w:b/>
                        <w:b-cs/>
                        <w:noProof/>
                        <w:sz w:val="32"/>
                        <w:sz-cs w:val="32"/>
                    </w:rPr>
                    <w:t>${orgName}电场分析报告</w:t>
                </w:r>
            </w:p>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="1"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>风场基本信息</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="1.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>地形要素分析</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="005576E7" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText1_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                                <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
                                    <v:stroke joinstyle="miter"/>
                                    <v:formulas>
                                        <v:f eqn="if lineDrawn pixelLineWidth 0"/>
                                        <v:f eqn="sum @0 1 0"/>
                                        <v:f eqn="sum 0 0 @1"/>
                                        <v:f eqn="prod @2 1 2"/>
                                        <v:f eqn="prod @3 21600 pixelWidth"/>
                                        <v:f eqn="prod @3 21600 pixelHeight"/>
                                        <v:f eqn="sum @0 0 1"/>
                                        <v:f eqn="prod @6 1 2"/>
                                        <v:f eqn="prod @7 21600 pixelWidth"/>
                                        <v:f eqn="sum @8 21600 0"/>
                                        <v:f eqn="prod @7 21600 pixelHeight"/>
                                        <v:f eqn="sum @10 21600 0"/>
                                    </v:formulas>
                                    <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
                                    <o:lock v:ext="edit" aspectratio="t"/>
                                </v:shapetype>
                                <w:binData w:name="wordml://03000001.png" xml:space="preserve">${img1_1_1}</w:binData>
                                <v:shape id="图片 2" o:spid="_x0000_i1052" type="#_x0000_t75" style="width:294.65pt;height:209.35pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000001.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图1.</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>风场地形分布情况</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="2"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>准确率分析</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E35C83" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="2.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>月度准确率及同区域对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="005576E7" wsp:rsidP="00E35C83">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText2_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://03000002.png" xml:space="preserve">${img2_1_1}</w:binData>
                                <v:shape id="图表 46" o:spid="_x0000_i1051" type="#_x0000_t75" alt="标题: 风电场月度准确率" style="width:412pt;height:226pt;visibility:visible" o:gfxdata="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&#xA;cnRzL2NoYXJ0MS54bWxQSwECLQAUAAYACAAAACEA1S0YMewEAADCJQAAFQAAAAAAAAAAAAAAAAAd&#xA;DQAAZHJzL2NoYXJ0cy9zdHlsZTEueG1sUEsBAi0AFAAGAAgAAAAhABwUp6gCAQAAbgMAABYAAAAA&#xA;AAAAAAAAAAAAPBIAAGRycy9jaGFydHMvY29sb3JzMS54bWxQSwECLQAUAAYACAAAACEAwZyvQOEF&#xA;AADrGAAAHAAAAAAAAAAAAAAAAAByEwAAZHJzL3RoZW1lL3RoZW1lT3ZlcnJpZGUxLnhtbFBLAQIt&#xA;ABQABgAIAAAAIQDVLNWR3AAAAAUBAAAPAAAAAAAAAAAAAAAAAI0ZAABkcnMvZG93bnJldi54bWxQ&#xA;SwECLQAUAAYACAAAACEAqxbNRrkAAAAiAQAAGQAAAAAAAAAAAAAAAACWGgAAZHJzL19yZWxzL2Uy&#xA;b0RvYy54bWwucmVsc1BLAQItABQABgAIAAAAIQB+SLxHYAEAAAUDAAAgAAAAAAAAAAAAAAAAAIYb&#xA;AABkcnMvY2hhcnRzL19yZWxzL2NoYXJ0MS54bWwucmVsc1BLBQYAAAAACgAKAJwCAAAkHQAAAAA=&#xA;">
                                    <v:imagedata src="wordml://03000002.png" o:title=""/>
                                    <o:lock v:ext="edit" aspectratio="f"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="007110B2" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007110B2" wsp:rsidP="007110B2">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图2.</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>场站月度准确率情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="005576E7" wsp:rsidP="007110B2">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText2_1_2}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:pict>
                            	  
                            	  <w:binData w:name="wordml://03000003.png" xml:space="preserve">${img2_1_2}</w:binData>
                                <v:shape id="图片 48" o:spid="_x0000_i1050" type="#_x0000_t75" style="width:415.75pt;height:200.6pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000003.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="007110B2" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007110B2" wsp:rsidP="007110B2">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图3.</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>区域场站月度准确率排名情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="007110B2" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007110B2" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DF140F" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="2.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>日短期准确率情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="005576E7" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="005576E7">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText2_2_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	  <w:binData w:name="wordml://03000004.png" xml:space="preserve">${img2_2_1}</w:binData>
                                <v:shape id="_x0000_i1049" type="#_x0000_t75" style="width:368.75pt;height:255.1pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000004.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <aml:annotation aml:id="0" w:type="Word.Bookmark.Start" w:name="_Ref485892866"/>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <aml:annotation aml:id="0" w:type="Word.Bookmark.End"/>
                        <w:r wsp:rsidR="00DF140F">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>4</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="2.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>排除限电准确率</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="005576E7" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText2_3_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="0" w:type="auto"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="1838"/>
                            <w:gridCol w:w="1843"/>
                            <w:gridCol w:w="2541"/>
                            <w:gridCol w:w="2074"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidTr="008F4713">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1838" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>日期</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1843" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>初始准确率</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2541" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>预估剔除限电准确率</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2074" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>剔除限电后点数</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList2_3_1 as bean>
                        	<w:tr wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidTr="008F4713">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1838" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00101DB8">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1843" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00101DB8">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2541" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00101DB8">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2074" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00D9731C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="008F4713">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00101DB8">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        	</w:tr>
												</#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="3"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>考核分</w:t>
                    </w:r>
                    <w:r wsp:rsidR="00B7068D" wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>情况</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="3.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>同区域对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="002E7E39">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:pict>
                            	  <w:binData w:name="wordml://03000005.png" xml:space="preserve">${img3_1_1}</w:binData>
                                <v:shape id="图片 3" o:spid="_x0000_i1048" type="#_x0000_t75" style="width:444.5pt;height:191.85pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000005.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E7E39" wsp:rsidRDefault="002E7E39" wsp:rsidP="002E7E39">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>5</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E7E39" wsp:rsidRPr="00482F73" wsp:rsidRDefault="002E7E39" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000006.png" xml:space="preserve">${img3_1_2}</w:binData>
                                <v:shape id="图片 44" o:spid="_x0000_i1047" type="#_x0000_t75" style="width:452pt;height:185.6pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000006.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E7E39" wsp:rsidRDefault="002E7E39" wsp:rsidP="002E7E39">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>6</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>区域场站月度单位容量考核分对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E7E39" wsp:rsidRPr="00482F73" wsp:rsidRDefault="002E7E39" wsp:rsidP="004301D5"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="3.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>所有场站对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_2_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000007.png" xml:space="preserve">${img3_2_1}</w:binData>
                                <v:shape id="图片 5" o:spid="_x0000_i1046" type="#_x0000_t75" style="width:422.85pt;height:164pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000007.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00D06BB9" wsp:rsidRDefault="00D06BB9" wsp:rsidP="00D06BB9">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>7</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00D06BB9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D06BB9" wsp:rsidP="004301D5"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="3.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>同集团对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D9731C" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_3_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="0" w:type="auto"/>
                            <w:tblInd w:w="113" w:type="dxa"/>
                            <w:tblLayout w:type="Fixed"/>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="2576"/>
                            <w:gridCol w:w="708"/>
                            <w:gridCol w:w="709"/>
                            <w:gridCol w:w="992"/>
                            <w:gridCol w:w="1134"/>
                            <w:gridCol w:w="993"/>
                            <w:gridCol w:w="1071"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="00A7356F" wsp:rsidRPr="00482F73" wsp:rsidTr="009C7671">
                            <w:trPr>
                                <w:trHeight w:val="285"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2576" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>电场名称</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="708" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>短期考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="709" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>超短期考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="992" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>短期等容量</w:t>
                                    </w:r>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>考核分</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t></w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1134" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>超短期等容量</w:t>
                                    </w:r>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>考核分</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t></w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="993" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>短期</w:t>
                                    </w:r>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>考核分</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>排名</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1071" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>超短期等容量</w:t>
                                    </w:r>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>考核分</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>排名</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList3_3_1 as bean>
													<w:tr wsp:rsidR="00A7356F" wsp:rsidRPr="00482F73" wsp:rsidTr="009C7671">
                            <w:trPr>
                                <w:trHeight w:val="285"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2576" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="708" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="709" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="992" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1134" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.e}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="993" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:noWrap/>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.f}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1071" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:left w:val="nil"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p wsp:rsidR="00A7356F" wsp:rsidRPr="00A408E0" wsp:rsidRDefault="00A7356F" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00A408E0">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="16"/>
                                        </w:rPr>
                                        <w:t>${bean.g}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        	</w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="00D06BB9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00D06BB9" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000008.png" xml:space="preserve">${img3_3_1}</w:binData>
                                <v:shape id="图表 45" o:spid="_x0000_i1045" type="#_x0000_t75" style="width:415.35pt;height:228.9pt;visibility:visible" o:gfxdata="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&#xA;AAoAnAIAADIdAAAAAA==&#xA;">
                                    <v:imagedata src="wordml://03000008.png" o:title=""/>
                                    <o:lock v:ext="edit" aspectratio="f"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00D06BB9" wsp:rsidRDefault="00D06BB9" wsp:rsidP="00D06BB9">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="0081321C">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <wx:font wx:val="黑体"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>8</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="3.4"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>预测厂家对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00ED3452" wsp:rsidP="00675A2C">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_4_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DE2518" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="a7"/>
                            <w:ind w:left="360" w:first-line-chars="0" w:first-line="0"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${orgEara}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>不同预测厂家考核分情况对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="0" w:type="auto"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1185"/>
                            <w:gridCol w:w="1186"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:vmerge w:val="restart"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>地区</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="7111" w:type="dxa"/>
                                    <w:gridSpan w:val="6"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>${startMonth}</w:t>
                                    </w:r>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>月份</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:vmerge/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="3555" w:type="dxa"/>
                                    <w:gridSpan w:val="3"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>总计考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="3556" w:type="dxa"/>
                                    <w:gridSpan w:val="3"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>总计等容量考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr wsp:rsidR="009C53A2" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:vmerge/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>金风</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>东润环能</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>国能日新</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>金风</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>东润环能</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1186" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00C622CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>国能日新</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList3_4_1 as bean>
                        	<w:tr wsp:rsidR="009C53A2" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.e}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1185" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.f}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1186" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00C622CF" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.g}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00384DF9" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00384DF9" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="00384DF9" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00384DF9" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://03000009.png" xml:space="preserve">${img3_4_1}</w:binData>
                                <v:shape id="图片 10" o:spid="_x0000_i1044" type="#_x0000_t75" style="width:260.1pt;height:156.05pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000009.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00675A2C" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>9</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00675A2C" wsp:rsidRPr="00482F73">
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t> 不同厂家平均考核分情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://0300000A.png" xml:space="preserve">${img3_4_2}</w:binData>
                                <v:shape id="图片 11" o:spid="_x0000_i1043" type="#_x0000_t75" style="width:261.35pt;height:156.9pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://0300000A.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00675A2C" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>10</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t> 不同预测厂家平均等容量考核分情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007E05FB" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_4_2}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://0300000B.png" xml:space="preserve">${img3_4_3}</w:binData>
                                <v:shape id="图表 2" o:spid="_x0000_i1042" type="#_x0000_t75" style="width:367.9pt;height:226.4pt;visibility:visible" o:gfxdata="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&#xA;">
                                    <v:imagedata src="wordml://0300000B.png" o:title=""/>
                                    <o:lock v:ext="edit" aspectratio="f"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00675A2C" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00675A2C" wsp:rsidP="00675A2C">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图11 </w:t>
                        </w:r>
                        <w:r wsp:rsidR="00737396" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>新疆地区等容量考核分情况对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007E05FB" wsp:rsidP="009650D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:color w:val="FF0000"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_4_3}</w:t>
                        </w:r>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="9229" w:type="dxa"/>
                            <w:tblCellMar>
                                <w:left w:w="0" w:type="dxa"/>
                                <w:right w:w="0" w:type="dxa"/>
                            </w:tblCellMar>
                            <w:tblLook w:val="0600"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="2000"/>
                            <w:gridCol w:w="1701"/>
                            <w:gridCol w:w="1984"/>
                            <w:gridCol w:w="1843"/>
                            <w:gridCol w:w="1701"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidTr="00124306">
                            <w:trPr>
                                <w:trHeight w:val="516"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2000" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>预测厂家</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1701" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>服务场站数目</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1984" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>平均单位容量总考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1843" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>平均短期单位容量考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1701" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>平均超短期单位容量考核分</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        
                        <#list tabList3_4_2 as bean>
                        	<w:tr wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidTr="00124306">
                            <w:trPr>
                                <w:trHeight w:val="265"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2000" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1701" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1984" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00124306" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1843" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007E05FB" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1701" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p wsp:rsidR="00124306" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007E05FB" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.e}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5"/>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007E05FB" wsp:rsidP="009650D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText3_4_4}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="5560" w:type="dxa"/>
                            <w:jc w:val="center"/>
                            <w:tblCellMar>
                                <w:left w:w="0" w:type="dxa"/>
                                <w:right w:w="0" w:type="dxa"/>
                            </w:tblCellMar>
                            <w:tblLook w:val="0600"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="1240"/>
                            <w:gridCol w:w="2180"/>
                            <w:gridCol w:w="2140"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="009650D5">
                            <w:trPr>
                                <w:trHeight w:val="330"/>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1240" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>预测厂家</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2180" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>排名前50场站数目</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2140" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="4F81BD"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:b/>
                                            <w:b-cs/>
                                        </w:rPr>
                                        <w:t>新疆总服务场站数</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList3_4_3 as bean>
                        	<w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="009650D5">
                            <w:trPr>
                                <w:trHeight w:val="330"/>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="1240" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2180" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2140" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="000000"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:tcMar>
                                        <w:top w:w="15" w:type="dxa"/>
                                        <w:left w:w="15" w:type="dxa"/>
                                        <w:bottom w:w="0" w:type="dxa"/>
                                        <w:right w:w="15" w:type="dxa"/>
                                    </w:tcMar>
                                    <w:vAlign w:val="bottom"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="4"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>场站规律分析</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="4.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>功率频次图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00146D60" wsp:rsidP="00106B50">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText4_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://0300000C.png" xml:space="preserve">${img4_1_1}</w:binData>
                                <v:shape id="图片 26" o:spid="_x0000_i1041" type="#_x0000_t75" alt="功率频次图" style="width:415.35pt;height:174.8pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://0300000C.png" o:title="功率频次图"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="440"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00106B50" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>13</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00106B50" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t> 历史功率频次图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line-chars="83" w:first-line="174"/>
                            <w:rPr>
                                <w:sz w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://0300000D.png" xml:space="preserve">${img4_1_2}</w:binData>
                                <v:shape id="图片 25" o:spid="_x0000_i1040" type="#_x0000_t75" alt="风速频次图" style="width:415.35pt;height:174.8pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://0300000D.png" o:title="风速频次图"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="440"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00106B50" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>14</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t> 历史风速数据频次图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="440"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>表</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>. </w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>历史功率</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>-</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>风速频次统计</w:t>
                        </w:r>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="5000" w:type="pct"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="1429"/>
                            <w:gridCol w:w="1424"/>
                            <w:gridCol w:w="1424"/>
                            <w:gridCol w:w="1399"/>
                            <w:gridCol w:w="1423"/>
                            <w:gridCol w:w="1423"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="00146D60">
                            <w:trPr>
                                <w:trHeight w:val="270"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="838" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>功率区间MW</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>功率频次统计</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>功率分布占比</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="821" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>风速区间m/s</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>风速频次统计</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>风速分布占比</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList4_1_1 as bean>
                          <w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="00146D60">
                            <w:trPr>
                                <w:trHeight w:val="270"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="838" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="821" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="left"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.e}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="835" w:type="pct"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:noWrap/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:widowControl/>
                                        <w:jc w:val="right"/>
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                            <w:color w:val="000000"/>
                                            <w:kern w:val="0"/>
                                            <w:sz w:val="20"/>
                                        </w:rPr>
                                        <w:t>${bean.f}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="4.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>实测散点图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E0919" wsp:rsidRPr="00482F73" wsp:rsidRDefault="002E0919" wsp:rsidP="003211AF">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图15</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00146D60" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText4_2_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E0919" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="003211AF">
                        <w:pPr>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://0300000E.png" xml:space="preserve">${img4_2_1}</w:binData>
                                <v:shape id="图片 19" o:spid="_x0000_i1039" type="#_x0000_t75" style="width:279.7pt;height:171.9pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://0300000E.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="002E0919" wsp:rsidRPr="00482F73" wsp:rsidRDefault="002E0919" wsp:rsidP="002E0919">
                        <w:pPr>
                            <w:ind w:first-line="440"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz w:val="22"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>图1</w:t>
                        </w:r>
                        <w:r wsp:rsidR="003211AF" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>5</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                        <w:r wsp:rsidR="003211AF" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz w:val="22"/>
                            </w:rPr>
                            <w:t>场站实际风速和功率散点情况</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="5"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>考核分分析</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00EF3AE5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:spacing w:line="312" w:line-rule="auto"/>
                        <w:rPr>
                            <w:sz-cs w:val="21"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:sz-cs w:val="21"/>
                        </w:rPr>
                        <w:t>按照不同区域分析</w:t>
                    </w:r>
                    <w:r wsp:rsidR="004301D5" wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:sz-cs w:val="21"/>
                        </w:rPr>
                        <w:t>(西北新细则)</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>2019年1月起执行新版考核规则,新版考核规则包括</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:t>日前风光功率预测</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>、</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:t>实时</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>风</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:t>光功率预测</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>、</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:t>可用发电功率</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00EF3AE5">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>三项,其中日前风光功率预测和实时风光功率预测由功率预测系统上传,可用功率由AGC上传。下面将对日前风光功率考核、实时风光功率考核进行分析。</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRDefault="00D21E14" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00D21E14">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:b/>
                            <w:b-cs/>
                        </w:rPr>
                        <w:t>短期:</w:t>
                    </w:r>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>风电场、光伏电站应按时向电力调控机构报送短期功率预测曲线,风电场提供的日预测曲线最大误差不超过25%,若未达标,则按偏差积分电量0.2分/万千瓦时考核。(日预测曲线最大误差指单点绝对偏差)</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRDefault="00D21E14" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                    </w:pPr>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>单点绝对偏差计算公式如下:</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRDefault="00482F73" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                        <w:jc w:val="center"/>
                        <w:rPr>
                            <w:rFonts w:ascii="方正仿宋_GBK" w:fareast="方正仿宋_GBK"/>
                            <wx:font wx:val="方正仿宋_GBK"/>
                            <w:sz w:val="32"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:pict>
                            <w:binData w:name="wordml://0300000F.png" xml:space="preserve">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
6zvr7adX2AAAAABJRU5ErkJggk==
</w:binData>
                            <v:shape id="_x0000_i1025" type="#_x0000_t75" style="width:199.35pt;height:46.6pt" equationxml="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;yes&quot;?&gt;&#xA;&lt;?mso-application progid=&quot;Word.Document&quot;?&gt;&#xA;&lt;w:wordDocument
                                xmlns:aml=&quot;http://schemas.microsoft.com/aml/2001/core&quot;
                                xmlns:wpc=&quot;http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas&quot;
                                xmlns:cx=&quot;http://schemas.microsoft.com/office/drawing/2014/chartex&quot;
                                xmlns:cx1=&quot;http://schemas.microsoft.com/office/drawing/2015/9/8/chartex&quot;
                                xmlns:cx2=&quot;http://schemas.microsoft.com/office/drawing/2015/10/21/chartex&quot;
                                xmlns:cx3=&quot;http://schemas.microsoft.com/office/drawing/2016/5/9/chartex&quot;
                                xmlns:cx4=&quot;http://schemas.microsoft.com/office/drawing/2016/5/10/chartex&quot;
                                xmlns:cx5=&quot;http://schemas.microsoft.com/office/drawing/2016/5/11/chartex&quot;
                                xmlns:cx6=&quot;http://schemas.microsoft.com/office/drawing/2016/5/12/chartex&quot;
                                xmlns:cx7=&quot;http://schemas.microsoft.com/office/drawing/2016/5/13/chartex&quot;
                                xmlns:cx8=&quot;http://schemas.microsoft.com/office/drawing/2016/5/14/chartex&quot;
                                xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot;
                                xmlns:mc=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot;
                                xmlns:aink=&quot;http://schemas.microsoft.com/office/drawing/2016/ink&quot;
                                xmlns:am3d=&quot;http://schemas.microsoft.com/office/drawing/2017/model3d&quot;
                                xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot;
                                xmlns:m=&quot;http://schemas.openxmlformats.org/officeDocument/2006/math&quot;
                                xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot;
                                xmlns:w10=&quot;urn:schemas-microsoft-com:office:word&quot;
                                xmlns:w=&quot;http://schemas.microsoft.com/office/word/2003/wordml&quot;
                                xmlns:wx=&quot;http://schemas.microsoft.com/office/word/2003/auxHint&quot;
                                xmlns:wne=&quot;http://schemas.microsoft.com/office/word/2006/wordml&quot;
                                xmlns:wsp=&quot;http://schemas.microsoft.com/office/word/2003/wordml/sp2&quot;
                                xmlns:sl=&quot;http://schemas.microsoft.com/schemaLibrary/2003/core&quot; w:macrosPresent=&quot;no&quot; w:embeddedObjPresent=&quot;no&quot; w:ocxPresent=&quot;no&quot; xml:space=&quot;preserve&quot;&gt;&lt;w:ignoreSubtree w:val=&quot;http://schemas.microsoft.com/office/word/2003/wordml/sp2&quot;/&gt;&lt;o:DocumentProperties&gt;&lt;o:Version&gt;16&lt;/o:Version&gt;&lt;/o:DocumentProperties&gt;&lt;w:docPr&gt;&lt;w:view w:val=&quot;print&quot;/&gt;&lt;w:zoom w:percent=&quot;180&quot;/&gt;&lt;w:doNotEmbedSystemFonts/&gt;&lt;w:bordersDontSurroundHeader/&gt;&lt;w:bordersDontSurroundFooter/&gt;&lt;w:hideSpellingErrors/&gt;&lt;w:defaultTabStop w:val=&quot;420&quot;/&gt;&lt;w:drawingGridVerticalSpacing w:val=&quot;156&quot;/&gt;&lt;w:displayHorizontalDrawingGridEvery w:val=&quot;0&quot;/&gt;&lt;w:displayVerticalDrawingGridEvery w:val=&quot;2&quot;/&gt;&lt;w:punctuationKerning/&gt;&lt;w:characterSpacingControl w:val=&quot;CompressPunctuation&quot;/&gt;&lt;w:optimizeForBrowser/&gt;&lt;w:relyOnVML/&gt;&lt;w:allowPNG/&gt;&lt;w:validateAgainstSchema/&gt;&lt;w:saveInvalidXML w:val=&quot;off&quot;/&gt;&lt;w:ignoreMixedContent w:val=&quot;off&quot;/&gt;&lt;w:alwaysShowPlaceholderText w:val=&quot;off&quot;/&gt;&lt;w:compat&gt;&lt;w:spaceForUL/&gt;&lt;w:balanceSingleByteDoubleByteWidth/&gt;&lt;w:doNotLeaveBackslashAlone/&gt;&lt;w:ulTrailSpace/&gt;&lt;w:doNotExpandShiftReturn/&gt;&lt;w:adjustLineHeightInTable/&gt;&lt;w:breakWrappedTables/&gt;&lt;w:snapToGridInCell/&gt;&lt;w:wrapTextWithPunct/&gt;&lt;w:useAsianBreakRules/&gt;&lt;w:dontGrowAutofit/&gt;&lt;w:useFELayout/&gt;&lt;/w:compat&gt;&lt;wsp:rsids&gt;&lt;wsp:rsidRoot wsp:val=&quot;004151B7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00002440&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0001204F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00040C07&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0005434B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00062467&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000653B9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000657BF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00067F80&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000A3596&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000A537E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000B1996&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000B1A45&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000B7310&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000C617B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000D6CF2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;000E4E9B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00106B50&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0012055D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00124306&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001254A8&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00141F96&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00141FDF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00142117&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00146D60&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0015246E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001553F4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00166228&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00170BC8&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00175955&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001A6665&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001B24E1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001E62A4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001E64B4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001F34C7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;001F4823&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00204F93&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0023604A&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00254F41&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00260E16&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00276411&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002905EF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002B1315&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002C0DC8&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002D586F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002E0919&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002E7E39&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;002F5153&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00303F44&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00307AD9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00313DEA&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003211AF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00323CCA&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00326E60&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00345DF6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00354966&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003557D5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003642FD&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00370F57&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003725A4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00384DF9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00392787&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003961BB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003A2E93&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003E4D74&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;003F0899&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00404C09&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00410E04&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004151B7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004301D5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00431F6B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00446D7E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00447617&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00466718&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00473B46&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00475789&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0047788C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00482F73&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004A1770&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004A2E42&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004A508A&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004C0C34&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004C45A9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;004D60BE&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00505B24&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00511F01&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00524CA3&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005406F3&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00540DAB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005466F7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005472F0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00552B61&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005574C1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005576E7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00557FED&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00577D6E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005A73D1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;005C2FF2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00660210&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0066557F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00675A2C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006760ED&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0068373C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006902C3&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006B2968&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006B3CA6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006C2948&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006D6402&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006E6B59&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;006E7C63&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00702B49&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007110B2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00716C1D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007346EC&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00737396&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00743017&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007459B7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0075643F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007603CF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00765AA4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007725B6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00775C09&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00782E8E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007A42A9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007B3410&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007B70FE&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007D0E4E&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007D1CD2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007D5EF0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007E05FB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007E577D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;007E5B54&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00804E2B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00811ACB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;0082174B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00830C8A&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008350F4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00835BB5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00835F6B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00840222&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00846578&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00854B51&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00863E04&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00866792&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00895FF6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008966C4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008A67F8&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008D3E53&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008D654B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008E1763&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;008F7FD1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009344A1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009650D5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00975310&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00986758&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009901E2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009C7671&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009D7626&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;009F3973&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A10A93&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A13272&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A1540F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A303A0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A408E0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A42207&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A702CF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A7356F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00A92BC7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00AC3240&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00AD48A5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00AF0042&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B05939&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B44B38&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B7068D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B80B17&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B87BA0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B900D1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00B90660&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00BB1CF6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00BD553C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00BE270F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00BE5B67&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C036EA&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C06823&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C13DD4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C25048&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C27F98&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C3587D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C4052B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C42EDE&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C4496B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C45144&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C45AA4&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C50632&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C622CF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C6356F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C712E7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C86C7D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C94460&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C965AE&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00C96994&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00CF0EB7&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00CF137F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00CF4538&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D06BB9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D16B0C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D21E14&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D258E9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D43C96&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D614B3&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D812A8&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D90386&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D95D9C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00D9731C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DA1937&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DA66BF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DC1AAB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DC49A1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DE2518&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00DF140F&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E144F2&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E17875&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E35C83&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E50E80&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E605D1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E72F24&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E760F1&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00E930EF&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00EA132A&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00EC3E0B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00ED01EB&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00ED3452&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00ED354C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00ED5394&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00EF3AE5&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F02AE6&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F03B01&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F2297D&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F5011B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F55E44&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F6390B&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F754B9&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F81CFE&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F96A8C&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00F973AD&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00FA6749&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00FA74A0&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00FB6E14&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00FD5726&quot;/&gt;&lt;wsp:rsid wsp:val=&quot;00FF4DD0&quot;/&gt;&lt;/wsp:rsids&gt;&lt;/w:docPr&gt;&lt;w:body&gt;&lt;wx:sect&gt;&lt;w:p wsp:rsidR=&quot;00000000&quot; wsp:rsidRPr=&quot;00A13272&quot; wsp:rsidRDefault=&quot;00A13272&quot; wsp:rsidP=&quot;00A13272&quot;&gt;&lt;m:oMathPara&gt;&lt;m:oMath&gt;&lt;m:r&gt;&lt;m:rPr&gt;&lt;m:sty m:val=&quot;p&quot;/&gt;&lt;/m:rPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot; w:hint=&quot;fareast&quot;/&gt;&lt;wx:font wx:val=&quot;瀹嬩綋&quot;/&gt;&lt;w:kern w:val=&quot;0&quot;:rsidRDef/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;缁濆鍋忓樊&lt;/m:t&gt;&lt;/m:r&gt;&lt;m:d&gt;&lt;m:dPr&gt;&lt;m:begChr m:val=&quot;锛?/&gt;&lt;m:endChr m:val=&quot;锛?/&gt;&lt;m:ctrlPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;Cambria Mathval=&quot;0&quot;:rsidRDef&quot;/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;/m:ctrlPr&gt;&lt;/m:dPr&gt;&lt;m:e&gt;&lt;m:r&gt;&lt;m:rPr&gt;&lt;m:sty m:val=&quot;p&quot;/&gt;&lt;/m:rPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot; w:hint=&quot;fareast&quot;/&gt;&lt;wx:font wx:val=&quot;瀹嬩綋&quot;/&gt;&lt;:rsidRDefw:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;鍚堟牸鐜?/m:t&gt;&lt;/m:r&gt;&lt;/m:e&gt;&lt;/m:d&gt;&lt;m:r&gt;&lt;m:rPr&gt;&lt;m:sty m:val=&quot;p&quot;/&gt;&lt;/m:rPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot; w:hint=&quot;fareast&quot;/&gt;&lt;wx:font wx:val=&quot;&gt;&lt;:rsidRDefCambria Math&quot;/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;=&lt;/m:t&gt;&lt;/m:r&gt;&lt;m:f&gt;&lt;m:fPr&gt;&lt;m:ctrlPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;Cambria Math&quot;/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:idRDefsz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;/m:ctrlPr&gt;&lt;/m:fPr&gt;&lt;m:num&gt;&lt;m:d&gt;&lt;m:dPr&gt;&lt;m:begChr m:val=&quot;|&quot;/&gt;&lt;m:endChr m:val=&quot;|&quot;/&gt;&lt;m:ctrlPr&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;Cambria Math&quot;/&gt;&lt;w:i/&gt;&lt;w:idRDefkern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;/m:ctrlPr&gt;&lt;/m:dPr&gt;&lt;m:e&gt;&lt;m:r&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;瀹嬩綋&quot;/&gt;&lt;w:i/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:&lt;w:idRDeft&gt;棰勬祴鍔熺巼&lt;/m:t&gt;&lt;/m:r&gt;&lt;m:r&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;MS Gothic&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;MS Gothic&quot; w:hint=&quot;fareast&quot;/&gt;&lt;wx:font wx:val=&quot;MS Gothic&quot;/&gt;&lt;w:i/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;-&lt;/m:t&gt;&lt;/m:r&gt;&lt;midRDef:r&gt;&lt;w:rPr&gt;&lt;w:rFonts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;瀹嬩綋&quot;/&gt;&lt;w:i/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;瀹炴祴鍔熺巼&lt;/m:t&gt;&lt;/m:r&gt;&lt;/m:e&gt;&lt;/m:d&gt;&lt;/m:num&gt;&lt;m:den&gt;&lt;m:r&gt;&lt;w:rPr&gt;&lt;w:rFo&gt;&lt;/m:r&gt;&lt;midRDefnts w:ascii=&quot;Cambria Math&quot; w:fareast=&quot;瀹嬩綋&quot; w:h-ansi=&quot;Cambria Math&quot; w:cs=&quot;瀹嬩綋&quot;/&gt;&lt;wx:font wx:val=&quot;瀹嬩綋&quot;/&gt;&lt;w:i/&gt;&lt;w:kern w:val=&quot;0&quot;/&gt;&lt;w:sz-cs w:val=&quot;24&quot;/&gt;&lt;/w:rPr&gt;&lt;m:t&gt;棰勬祴鍔熺巼&lt;/m:t&gt;&lt;/m:r&gt;&lt;/m:den&gt;&lt;/m:f&gt;&lt;/m:oMath&gt;&lt;/m:oMathPara&gt;&lt;/w:p&gt;&lt;w:sectPr wsp:rsi&gt;&lt;/m:r&gt;&lt;midRDefdR=&quot;00000000&quot; wsp:rsidRPr=&quot;00A13272&quot;&gt;&lt;w:pgSz w:w=&quot;12240&quot; w:h=&quot;15840&quot;/&gt;&lt;w:pgMar w:top=&quot;1440&quot; w:right=&quot;1800&quot; w:bottom=&quot;1440&quot; w:left=&quot;1800&quot; w:header=&quot;720&quot; w:footer=&quot;720&quot; w:gutter=&quot;0&quot;/&gt;&lt;w:cols w:space=&quot;720&quot;/&gt;&lt;/w:sectPr&gt;&lt;/wx:sect&gt;&lt;/w:body&gt;&lt;/w:wordDocument&gt;">
                                <v:imagedata src="wordml://0300000F.png" o:title="" chromakey="white"/>
                            </v:shape>
                        </w:pict>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRPr="00136F45" wsp:rsidRDefault="00D21E14" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00811ACB">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>每日的绝对偏差考核分是所有考核点的单点绝对偏差考核分的累加和,可以看出,考核的点数越多,该项考核分越高。</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRDefault="00D21E14" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                        <w:rPr>
                            <w:b/>
                            <w:b-cs/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00D21E14">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:b/>
                            <w:b-cs/>
                        </w:rPr>
                        <w:t>超短期:</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRDefault="00D21E14" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                    </w:pPr>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>风电场、光伏电站应按时向电力调控机构报送超短期功率预测曲线,风电厂、光伏发电站的超短期预测曲</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:color w:val="000000"/>
                        </w:rPr>
                        <w:t>线</w:t>
                    </w:r>
                    <w:r wsp:rsidRPr="00196B3B">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:color w:val="FF0000"/>
                        </w:rPr>
                        <w:t>第2小时</w:t>
                    </w:r>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                        </w:rPr>
                        <w:t>调和平均数准确率不小于75%,若未达标,每减少1%按全场装机容量×0.015分/万千瓦考核。</w:t>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRPr="000A2C77" wsp:rsidRDefault="00482F73" wsp:rsidP="00D21E14">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                        <w:jc w:val="center"/>
                        <w:rPr>
                            <w:sz w:val="32"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="000C26A1">
                        <w:rPr>
                            <w:noProof/>
                        </w:rPr>
                        <w:pict>
                            <w:binData w:name="wordml://03000010.png" xml:space="preserve">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
</w:binData>
                            <v:shape id="图片 50" o:spid="_x0000_i1038" type="#_x0000_t75" style="width:247.65pt;height:51.2pt;visibility:visible;mso-wrap-style:square">
                                <v:imagedata src="wordml://03000010.png" o:title=""/>
                            </v:shape>
                        </w:pict>
                    </w:r>
                </w:p>
                <w:p wsp:rsidR="00D21E14" wsp:rsidRPr="00D21E14" wsp:rsidRDefault="00D21E14" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:ind w:first-line="480"/>
                        <w:rPr>
                            <w:b/>
                            <w:b-cs/>
                        </w:rPr>
                    </w:pPr>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00EF3AE5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="5.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>日前风光功率考核</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="00C50632" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00C50632">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>根据调度的考核规则,要求日均方根误差小于</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00C50632">
                            <w:t>20%。如下表统计了电场准确率低于80%的日期数据及误差原因。具体曲线如下图所示</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00C50632" wsp:rsidRDefault="00C50632" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="0" w:type="auto"/>
                            <w:jc w:val="center"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="1155"/>
                            <w:gridCol w:w="756"/>
                            <w:gridCol w:w="936"/>
                            <w:gridCol w:w="1116"/>
                            <w:gridCol w:w="1116"/>
                            <w:gridCol w:w="2736"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="009C53A2" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:trPr>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>日期</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>准确率</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>平均风速</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>均方根误差</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>相关性系数</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>误差原因</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList5_1_1 as bean>
                          <w:tr wsp:rsidR="009C53A2" wsp:rsidRPr="00482F73" wsp:rsidTr="00482F73">
                            <w:trPr>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.c}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.d}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.e}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="0" w:type="auto"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="007B70FE" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00482F73">
                                    <w:pPr>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz w:val="18"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.f}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="00C50632" wsp:rsidRPr="007B70FE" wsp:rsidRDefault="00C50632" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="007B70FE" wsp:rsidRDefault="007B70FE" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="007B70FE" wsp:rsidRDefault="007B70FE" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="007B70FE">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>以下为考核日的预测与实测数据对比分析。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="007B70FE" wsp:rsidRDefault="007B70FE" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                    </w:p>
                    <#list imgList5_1_1 as img>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00B51F8C" wsp:rsidRDefault="00482F73" wsp:rsidP="007B70FE">
                        <w:pPr>
                            <w:pStyle w:val="rpt1"/>
                        </w:pPr>
                        	<w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="${"wordml://030000220"+img_index+1+".png"}" xml:space="preserve">${img}</w:binData>
                                <v:shape id="Picture 1" o:spid="_x0000_i1036" type="#_x0000_t75" style="width:382.05pt;height:197.7pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="${"wordml://030000220"+img_index+1+".png"}" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    </#list>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00EF3AE5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="5.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>实时风光功率考核</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="007B70FE" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="007B70FE">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>通过分析,近期超短期预测准确率统计如下表所示:${earaText5_2_1}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="007B70FE" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000011.png" xml:space="preserve">${img5_2_1}</w:binData>
                                <v:shape id="Picture 1" o:spid="_x0000_i1036" type="#_x0000_t75" style="width:382.05pt;height:197.7pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000011.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00EF3AE5">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="5.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>数据不一致问题</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="007B70FE" wsp:rsidP="00811ACB">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>下图为调度端实测和场站端实测数据对比,可以看出两者</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00303F44" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText5_3_1}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000012.png" xml:space="preserve">${img5_3_1}</w:binData>
                                <v:shape id="图片 13" o:spid="_x0000_i1035" type="#_x0000_t75" style="width:367.5pt;height:210.6pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000012.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00303F44">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:ind w:first-line="400"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="00E72F24" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00303F44" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>下</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图为调度端预测和场站预测结果对比,可以看出</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText5_3_2}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00303F44" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000013.png" xml:space="preserve">${img5_3_2}</w:binData>
                                <v:shape id="图片 14" o:spid="_x0000_i1034" type="#_x0000_t75" style="width:415.35pt;height:215.15pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000013.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5"/>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="6"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>专业气象分析</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="0001204F">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="6.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>风场风速基本情况分析(实测风速)</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="100" w:first-line="210"/>
                            <w:jc w:val="left"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>贵风电场各风速段详细分布如下:</w:t>
                        </w:r>
                    </w:p>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="5682" w:type="dxa"/>
                            <w:jc w:val="center"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLayout w:type="Fixed"/>
                            <w:tblLook w:val="04A0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="2841"/>
                            <w:gridCol w:w="2841"/>
                        </w:tblGrid>
                        <w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="000A537E">
                            <w:trPr>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2841" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:spacing w:line="312" w:line-rule="auto"/>
                                        <w:ind w:first-line="480"/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>风速区间</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2841" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                        <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="D9D9D9"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:spacing w:line="312" w:line-rule="auto"/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:rFonts w:hint="fareast"/>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>占比</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <#list tabList6_1_1 as bean>
                          <w:tr wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidTr="000A537E">
                            <w:trPr>
                                <w:jc w:val="center"/>
                            </w:trPr>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2841" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:spacing w:line="312" w:line-rule="auto"/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.a}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="2841" w:type="dxa"/>
                                    <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
                                    <w:vAlign w:val="center"/>
                                </w:tcPr>
                                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="000A537E">
                                    <w:pPr>
                                        <w:spacing w:line="312" w:line-rule="auto"/>
                                        <w:jc w:val="center"/>
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r wsp:rsidRPr="00482F73">
                                        <w:rPr>
                                            <w:sz-cs w:val="21"/>
                                        </w:rPr>
                                        <w:t>${bean.b}</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                          </w:tr>
                        </#list>
                    </w:tbl>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="009901E2" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line="480"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText6_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="rpt1"/>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://03000014.png" xml:space="preserve">${img6_1_1}</w:binData>
                                <v:shape id="图片 33" o:spid="_x0000_i1033" type="#_x0000_t75" style="width:368.75pt;height:245.15pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000014.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="ac"/>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line="420"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图 </w:t>
                        </w:r>
                        <w:r wsp:rsidR="00141F96" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>26</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:sz w:val="21"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t> 风场本时间区间和上时间区间风速分布图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:pStyle w:val="rpt1"/>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:pict>
                            		<w:binData w:name="wordml://03000015.png" xml:space="preserve">${img6_1_2}</w:binData>
                                <v:shape id="图片 31" o:spid="_x0000_i1032" type="#_x0000_t75" alt="figgg" style="width:258.45pt;height:258.45pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000015.png" o:title="figgg"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="245" w:first-line="514"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00141F96" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>28</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>  风电场风向风速玫瑰图</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:jc w:val="left"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>注释:风玫瑰图显示某段时间风向分布,图例为各个风速段对应的颜色。</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00141F96" wsp:rsidP="0001204F">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="6.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>风</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>速季节性规律分析</w:t>
                        </w:r>
                        <w:r wsp:rsidR="004301D5" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>(实测风速)</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00B80B17" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="150" w:first-line="315"/>
                            <w:jc w:val="left"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText6_2_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:jc w:val="left"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://06000016.emz" xml:space="preserve">${img6_2_1}</w:binData>
                                <v:shape id="图片 30" o:spid="_x0000_i1031" type="#_x0000_t75" style="width:427.4pt;height:176.9pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://06000016.emz" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00141F96" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>29</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00B80B17">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:b-cs/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00141F96">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="6.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>不同气象源时间序列对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:jc w:val="left"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>目前针对此风场有美国国家环境预报中心、中国气象局、欧洲气象中心等权威气象机构的预报数据,多种气象源同时发布,选择最优气象源发布到现场。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:noProof/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000017.png" xml:space="preserve">${img6_3_1}</w:binData>
                                <v:shape id="图片 29" o:spid="_x0000_i1030" type="#_x0000_t75" style="width:415.35pt;height:127.35pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000017.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="300" w:first-line="630"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:rFonts w:cs="宋体"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00CF4538" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>31</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:cs="宋体" w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>各类气象源预报效果</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="300" w:first-line="630"/>
                            <w:jc w:val="center"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00B80B17" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText6_3_1}</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="7"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>交易电量</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="7.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>可发发电量</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="005A73D1" wsp:rsidP="005A73D1">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="005A73D1">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText7_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000018.png" xml:space="preserve">${img7_1_1}</w:binData>
                                <v:shape id="图表 40" o:spid="_x0000_i1029" type="#_x0000_t75" style="width:390.4pt;height:183.55pt;visibility:visible" o:gfxdata="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&#xA;AAAA&#xA;">
                                    <v:imagedata src="wordml://03000018.png" o:title=""/>
                                    <o:lock v:ext="edit" aspectratio="f"/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00CF4538" wsp:rsidRDefault="00CF4538" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图32</w:t>
                        </w:r>
                        <w:r>
                            <w:t></w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>日可用功率考核分情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="007960B5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="007960B5">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>从</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>考核</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="007960B5">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>公式可以看出,</w:t>
                        </w:r>
                        <w:r wsp:rsidR="005A73D1" wsp:rsidRPr="005A73D1">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText7_1_2}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="00482F73" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000019.png" xml:space="preserve">${img7_1_2}</w:binData>
                                <v:shape id="图片 41" o:spid="_x0000_i1028" type="#_x0000_t75" style="width:415.35pt;height:151.5pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000019.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00CF4538">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>33</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t> 每个时刻可用功率与实际功率对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="7.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>理论功率</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>电场发电功率指标包括理论发电功率和可用发电功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>理论发电功率指在当前风况下场内所有设备正常运行时能够发出的功率,其积分电量为理论发电量。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>可用发电功率指考虑场内设备故障、缺陷或检修等原因引起受阻后能够发出的功率,其积分电量为可用发电量。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>省调目前要求上传风电场理论功率(</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>4种算法,样板风机法、机头风速法、机头风速-检修法、测风塔外推法)和光电理论功率(2种算法,样板逆变器法、测光法),时间精度为5分钟。省调利用理论功率和实况功率计算弃风、弃光损失电量。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>测风塔外推法:测风塔观测风速—风机功率曲线计算理论发电功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>样板风机法:各型号样板风机实际功率推算全场应发理论功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>机头风速法:全场每台风机机头风速—功率的对应关系计算单机应发理论功率,计算全场应发理论功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>机头风速</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>-检修法:场内具有发电能力(除故障、检修机组)风机机头风速—功率的对应关系计算单机可发理论功率,计算全场可发理论功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>样板逆变器法:各型号样板逆变器实际功率推算全场应发理论功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="004301D5" wsp:rsidRPr="00482F73" wsp:rsidRDefault="004301D5" wsp:rsidP="004301D5">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>测光法:测光站观测辐射—逆变器功率曲线计算理论发电功率。</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="008A67F8" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://03000019.png" xml:space="preserve">${img7_2_1}</w:binData>
                                <v:shape id="图片 12" o:spid="_x0000_i1027" type="#_x0000_t75" style="width:415.35pt;height:151.5pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://03000019.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="008A67F8" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="008A67F8" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="008A67F8" wsp:rsidP="008A67F8">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>理论功率数据存在的主要问题</w:t>
                        </w:r>
                    </w:p>
                    <#list textList7_2_1 as str>
	                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="005A73D1" wsp:rsidP="00CF4538">
	                        <w:pPr>
	                            <w:spacing w:line="312" w:line-rule="auto"/>
	                            <w:rPr>
	                                <w:sz-cs w:val="21"/>
	                            </w:rPr>
	                        </w:pPr>
													<w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${str}</w:t>
                          </w:r>
	                    </w:p>
                    </#list>
                    <w:p wsp:rsidR="008A67F8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="008A67F8" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="8"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>系统问题</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="8.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>硬件</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>设备故障导致的问题</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>与</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DC1AAB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText8_1_1}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="8.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“软件</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>系统故障导致的问题</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DC1AAB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText8_2_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="8.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“网络</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>通讯故障导致的问题</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DC1AAB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText8_3_1}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73">
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="8.4"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“其他原因造成数据不一致”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00DC1AAB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText8_4_1}</w:t>
                        </w:r>
                        <w:r wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t></w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="9"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>主观因素分析</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="9.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“受阻</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>拉停</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>造成</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>预测偏差过大</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="003961BB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText9_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="9.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“场内</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>检修</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>造成</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>预测偏差过大</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="003961BB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText9_1_2}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF"/>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00E930EF" wsp:rsidP="00E930EF">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="9.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>“长期</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>故障造成预测偏差过大</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>”的</w:t>
                        </w:r>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>判断标准与反馈</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00E930EF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="003961BB" wsp:rsidP="00E930EF">
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>${earaText9_1_3}</w:t>
                        </w:r>
                    </w:p>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="00A10A93" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00A10A93" wsp:rsidP="001B24E1">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="10"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>已经进行的模型优化工作</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="00A10A93" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00A10A93" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="10.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>模型优化前后提升对比</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00A702CF" wsp:rsidRPr="00482F73" wsp:rsidRDefault="000A3596" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:ind w:first-line-chars="200" w:first-line="420"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${earaText10_1_1}</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="001254A8" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00482F73" wsp:rsidP="0005434B">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r wsp:rsidRPr="000C26A1">
                            <w:rPr>
                                <w:noProof/>
                            </w:rPr>
                            <w:pict>
                            	<w:binData w:name="wordml://0300001A.png" xml:space="preserve">${img10_1_1}</w:binData>
                                <v:shape id="图片 9" o:spid="_x0000_i1026" type="#_x0000_t75" style="width:360.85pt;height:216.85pt;visibility:visible;mso-wrap-style:square">
                                    <v:imagedata src="wordml://0300001A.png" o:title=""/>
                                </v:shape>
                            </w:pict>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00CF4538" wsp:rsidRDefault="00CF4538" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:ind w:first-line="480"/>
                            <w:jc w:val="center"/>
                        </w:pPr>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t>图</w:t>
                        </w:r>
                        <w:r>
                            <w:t>35</w:t>
                        </w:r>
                        <w:r>
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                            </w:rPr>
                            <w:t> 电场调整前后日准确率情况</w:t>
                        </w:r>
                    </w:p>
                    <w:p wsp:rsidR="00CF4538" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00CF4538" wsp:rsidP="0005434B">
                        <w:pPr>
                            <w:jc w:val="center"/>
                        </w:pPr>
                    </w:p>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="00A10A93" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00A10A93" wsp:rsidP="00CF4538">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="10.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>模型优化记录</w:t>
                        </w:r>
                    </w:p>
                    <#list textList10_2_1 as str>
	                    <w:p wsp:rsidR="00410E04" wsp:rsidRPr="00482F73" wsp:rsidRDefault="000A3596" wsp:rsidP="000A3596">
	                        <w:pPr>
	                            <w:spacing w:line="312" w:line-rule="auto"/>
	                            <w:rPr>
	                                <w:sz-cs w:val="21"/>
	                            </w:rPr>
	                        </w:pPr>
													<w:r wsp:rsidRPr="00482F73">
	                          <w:rPr>
	                              <w:rFonts w:hint="fareast"/>
	                              <w:sz-cs w:val="21"/>
	                          </w:rPr>
	                          <w:t>${str}</w:t>
	                        </w:r>
	                    </w:p>
                    </#list>
                </wx:sub-section>
            </wx:sub-section>
            <wx:sub-section>
                <w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="006B3CA6" wsp:rsidP="006B3CA6">
                    <w:pPr>
                        <w:pStyle w:val="MMTopic1"/>
                        <w:listPr>
                            <wx:t wx:val="11"/>
                            <wx:font wx:val="Times New Roman"/>
                        </w:listPr>
                        <w:spacing w:line="320" w:line-rule="exact"/>
                        <w:contextualSpacing/>
                        <w:rPr>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r wsp:rsidRPr="00482F73">
                        <w:rPr>
                            <w:rFonts w:hint="fareast"/>
                            <w:b w:val="off"/>
                            <w:sz w:val="24"/>
                            <w:sz-cs w:val="24"/>
                        </w:rPr>
                        <w:t>功率预测提升优化措施</w:t>
                    </w:r>
                </w:p>
                <wx:sub-section>
                    <w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="006B3CA6" wsp:rsidP="006B3CA6">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="11.1"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>短期考核方面</w:t>
                        </w:r>
                    </w:p>
                    <#list textList11_1_1 as str>
                    	<w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00BE5B67" wsp:rsidP="006B3CA6">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${str}</w:t>
                        </w:r>
                      </w:p>
                    </#list>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="006B3CA6" wsp:rsidP="006B3CA6">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="11.2"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>超短期考核方面</w:t>
                        </w:r>
                    </w:p>
                    <#list textList11_2_1 as str>
                    	<w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00BE5B67" wsp:rsidP="006B3CA6">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${str}</w:t>
                        </w:r>
                      </w:p>
                    </#list>
                </wx:sub-section>
                <wx:sub-section>
                    <w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="006B3CA6" wsp:rsidP="006B3CA6">
                        <w:pPr>
                            <w:pStyle w:val="MMTopic2"/>
                            <w:listPr>
                                <wx:t wx:val="11.3"/>
                                <wx:font wx:val="Times New Roman"/>
                            </w:listPr>
                            <w:spacing w:line="320" w:line-rule="exact"/>
                            <w:ind w:left="0"/>
                            <w:contextualSpacing/>
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/>
                                <wx:font wx:val="等线"/>
                                <w:b w:val="off"/>
                                <w:sz w:val="24"/>
                                <w:sz-cs w:val="24"/>
                            </w:rPr>
                            <w:t>风速优化措施</w:t>
                        </w:r>
                    </w:p>
                    <#list textList11_3_1 as str>
                    	<w:p wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73" wsp:rsidRDefault="00BE5B67" wsp:rsidP="00BE5B67">
                        <w:pPr>
                            <w:spacing w:line="312" w:line-rule="auto"/>
                            <w:rPr>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                        </w:pPr>
                        <w:r wsp:rsidRPr="00482F73">
                            <w:rPr>
                                <w:rFonts w:hint="fareast"/>
                                <w:sz-cs w:val="21"/>
                            </w:rPr>
                            <w:t>${str}</w:t>
                        </w:r>
                      </w:p>
                    </#list>
                </wx:sub-section>
            </wx:sub-section>
            <w:sectPr wsp:rsidR="006B3CA6" wsp:rsidRPr="00482F73">
                <w:pgSz w:w="11906" w:h="16838"/>
                <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
                <w:cols w:space="425"/>
                <w:docGrid w:type="lines" w:line-pitch="312"/>
            </w:sectPr>
        </wx:sect>
    </w:body>
</w:wordDocument>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!