ࡱ>     tE@ ,bjbj nxi&666$ZFFFPZDDDD_aaaaaa$ R -6&&&66DD*&|6D6D_&_L>C66D~ 3 F'6|<]r P lZZ6666 6Jiyt9Z#+2b^0ְZ+b^ Learning and Exploiting Non-Consecutive String Patterns for Information Extraction Yunbo Cao Microsoft Research Asia 5F Sigma Center, No.49 Zhichun Road, Haidian Beijing, China, 100080 i-yucao@microsoft.comHang Li Microsoft Research Asia 5F Sigma Center, No.49 Zhichun Road, Haidian Beijing, China, 100080 hangli@microsoft.comShenjie Li Computer Science Department Tsinghua University Haidian Beijing, China, 100084 Abstract This paper is concerned with the problem of learning and exploiting string patterns in natural language processing, particularly information extraction. We propose a new algorithm for learning such patterns. Our algorithm is novel in that it can learn non-consecutive patterns with constraints, which are necessary for information extraction. Specifically, it employs an extended version of the so-called apriori algorithm at the pattern generation step. Our experimental results indicate that in information extraction the use of non-consecutive patterns with constraints is significantly better than the use of only consecutive patterns. 1 Introduction We consider here the problem of learning and using string patterns, particularly non-consecutive patterns in information extraction. In learning, for example, given the instances  <company> today announced the worldwide availability of , today announced the immediate availability of , etc, we acquire non-consecutive patterns like today announced the \w+ availability of , where \w+ is a wildcard denoting a skip of at least one word. We refer to the patterns as non-consecutive patterns. Note that consecutive patterns are special cases of non-consecutive patterns. In extraction, we use the acquired patterns to match the strings in new instances and extract from the matched strings information on which company has released what product. Methods for learning and using only consecutive patterns for information extraction have been proposed (e.g., Brin 1998; Ravichandran and Hovy 2002). The coverage of such patterns is small, however, as they do not contain generalization. In this paper, we propose a new algorithm which can accurately and efficiently learn non-consecutive patterns with constraints. Our algorithm consists of two steps: pattern generation and pattern ranking. At the first step, it creates all the possible patterns which cover the positive instances. At the second step, it ranks the patterns according to their precision scores using both the positive and negative instances. Our algorithm is especially novel in that it employs an extended version of the apriori algorithm to accurately and efficiently acquire patterns. The apriori algorithm was proposed for learning associations in the field of data or text mining. We think that it is the first time that it is used for the information extraction task. Furthermore, the apriori algorithm is extended here for learning patterns with constraints. We propose three constraints necessary for accurately acquiring non-consecutive patterns. We prove that even on the constraints, the so-called apriori (or anti-monotonicity) property still holds. We applied the proposed algorithm to product-release information extraction from the web sites of IT companies. We also applied it to question answering regarding inventions. Experimental results indicate that the use of non-consecutive patterns with constraints significantly outperforms the use of only consecutive patterns in information extraction. Experimental results also indicate that the constraints we have defined are necessary for accurate extraction. 2 Related Work 2.1 Information Extraction Using String Patterns A straightforward approach to learn natural language patterns would be to syntactically parse sentences and acquire sentential or phrasal patterns from the obtained parsed trees (e.g., Lin and Pantel, 2001; Sudo et al, 2001). Another approach would be to discover string patterns by using syntactic and semantic constraints (e.g., Huffman 1995; Soderland et al, 1995; Riloff, 1996). The two approaches are in general costly in development. Methods for directly acquiring consecutive patterns from surface word strings have been proposed. For example, Brin (1998) proposed learning and using consecutive patterns for extracting information on certain pairs such as (, ) pairs. They conducted extraction from web data through a bootstrapping process. For another example, Ravichandran and Hovy (2002) proposed learning and using consecutive patterns for extracting information on pairs in question answering. For example, they extracted patterns like was born in for answering a question regarding the birth year of a person. Their method consisted of two steps: pattern generation and pattern ranking. They used a suffix tree to store all the possible string patterns at pattern generation. 2.2 Sequential Data Mining Agrawal and Srikant (1994) proposed employing the apriori algorithm for mining patterns from sequential data. Each data sequence is a list of transactions ordered by transaction-time. Subsequently, Srikant and Agrawal (1996) proposed extending the algorithm by incorporating time and taxonomy constraints. Lent et al (1997) proposed using the apriori algorithm for mining phrasal patterns in order to discover trends in a text database. For other work on sequential data mining, see (e.g., Mannila and Toivonen, 1996; Ahonen et al, 1998). The apriori algorithm was mainly used for learning associations between data items in data mining, or words in text mining. It was not used for learning patterns necessary for information extraction. Note that there are some clear differences between information extraction and text mining. For example, information extraction is generally concerned with more complex patterns than text mining. Information extraction generally needs annotated data for training, while text mining does not necessarily need. 3 Problem In learning, given positive and negative training instances as those in Figure 1, we are to acquire patterns as those in Figure 2. In extraction, we use the acquired patterns to extract information from test instances as that in Figure 1. Note that there are negative test instances from which no information can be extracted. Positive training instances: Microsoft Corp. today announced the immediate availability of Microsoft Internet Explorer Plus , the eagerly awaited retail version of Internet Explorer 4.0. Microsoft Corp. today announced the availability of Microsoft Visual J++ 6.0 Technology Preview 2, a beta release of the next version of the industry's most widely used development system for Java. Microsoft Corp. today announced the immediate, free availability of Microsoft Visual InterDev 6.0 March pre-release , a preview of the new version of the leading team-based Web development system for rapidly building data-driven Web applications.Negative training instance: Microsoft Corp. today announced the availability of an expanded selection of Web-based training through its independent training providers.Positive test instance: Microsoft Corp. today announced the immediate worldwide availability of Microsoft Office 60 Minute Intranet Kit version 2.0, downloadable for free (connect-time charges may apply) from the Office intranet Web site located at  HYPERLINK "http://www.microsoft.com/office/intranet/" http://www.microsoft.com/office/intranet/.Figure 1: Training and Test DataThe example in Figure 1 is concerned with product release information extraction. Positive instances contain information on has released . (We replace here specific names such as Microsoft with variables such as ). Negative instances contain information on , but it is not about product release. The goal is to extract from the positive test instances information on has released , more precisely, the name of , e.g., Microsofts Microsoft Office 60 Minute Intranet Kit version 2.0. That is to say, we assume here that in extraction has already been identified, but has not. Hereafter, we will sometimes refer to as anchor. Consecutive patterns: today announced the immediate availability of , today announced the availability of , today announced the immediate, free availability of ,Non-consecutive patterns: today announced the {\w +3} availability of ,Figure 2: Patterns Using the existing methods (e.g., Brin 1998; Ravichandran and Hovy 2002), one can obtain consecutive patterns as those in Figure 2. The coverage of such patterns is small, however, as they do not contain generalization. For example, using the patterns, one cannot extract the information in the test instance in Figure 1. It is obvious that the words immediate and free are not necessary for the extraction, and thus it is desirable to learn and use non-consecutive patterns that can skip such kind of words. Figure 2 also shows an example of non-consecutive patterns. With the pattern, one can correctly extract the information in the instance. The question then is how to acquire non-consecutive patterns. 4 Our Method Our method of learning non-consecutive (and also consecutive) patterns comprises of two steps: pattern generation and pattern ranking. At the first step, it creates all the possible patterns which cover the positive instances. At the second step, it ranks the patterns according to their precision scores using both the positive and negative instances. In extraction, it utilizes the ranked patterns to match strings and extracts the anchor information from the matched strings. 4.1 Pattern Generation The input of pattern generation is a number of strings, and the output is a number of non-consecutive patterns that cover the input strings. We replace specific names with general variables (e.g., , ). The non-consecutive patterns are unique in that they can have wildcards. We use \w +n to denote a wildcard that skips at least one and at most n words. The non-consecutive patterns thus contain generalization of strings. Algorithm Learn-non-consecutive-pattern-with-constraints  EMBED Equation.3 = set of input strings,  EMBED Equation.3  = set of words in EMBED Equation.3 ; for ( EMBED Equation.3 ){  EMBED Equation.3  = find-nonconsecutive-pattern( EMBED Equation.3 , EMBED Equation.3 ); for each ( EMBED Equation.3 ){ if ( not satisfy-constraints( EMBED Equation.3 ) ) remove EMBED Equation.3  from EMBED Equation.3 ; if ( EMBED Equation.3  s frequency is not larger than a threshold) remove EMBED Equation.3  from EMBED Equation.3 ; if ( EMBED Equation.3 does not contain ) remove EMBED Equation.3  from EMBED Equation.3 ; } if (  EMBED Equation.3  is empty ) Goto line 16; } 16. output EMBED Equation.3 ;Figure 3: Algorithm of Pattern Generation find-non-consecutive-pattern( EMBED Equation.3 , EMBED Equation.3 ) for each ( EMBED Equation.3 ){ for each ( EMBED Equation.3 ){  EMBED Equation.3 ; if ( EMBED Equation.3 exists in EMBED Equation.3 ) put  EMBED Equation.3 into  EMBED Equation.3 ;  EMBED Equation.3 ; if ( EMBED Equation.3 exists in EMBED Equation.3 ) put  EMBED Equation.3 into  EMBED Equation.3 ; } } 11. output EMBED Equation.3 ;Figure 4: Sub-Algorithm of Pattern Generation Figure 3 shows the algorithm which generates patterns satisfying the constraints described below. The algorithm is an extension of the apriori algorithm. Let  EMBED Equation.3  denote the set of generated patterns in the i-th iteration ( EMBED Equation.3 ). Initially, let  EMBED Equation.3  to be the set of words. Our algorithm recursively creates patterns in  EMBED Equation.3  by combining the patterns in  EMBED Equation.3 and the words in EMBED Equation.3 . The algorithm comprises of two sub algorithms: find-non-consecutive-patterns (Figure 4) and satisfy constraints. At lines 6 and 7 of Figure 3, we check if pattern EMBED Equation.3 satisfies the constraints, if not we remove it from the set of patterns. At lines 8 and 9, we check if the frequency of pattern  EMBED Equation.3  is not larger than a threshold, if so we remove it from the set of patterns (the same as in apriori). At line 3 of Figure 4, we concatenate patterns  EMBED Equation.3  and  EMBED Equation.3 into pattern EMBED Equation.3 . At line 6 of Figure 4, we concatenate patterns  EMBED Equation.3  and  EMBED Equation.3 into pattern  EMBED Equation.3  in which there is a wildcard of at least one word and at most n words between  EMBED Equation.3  and EMBED Equation.3 , where n is calculated with the input data. In the algorithm we treat a wildcard as a special word. As a result, for example, the string \w the book \w is not the superstring of the string \w the \w. Note that find consecutive patterns becomes a special case of find non-consecutive patterns, if we remove lines 6, 7 and 8 in Figure 4. Also note that find non-consecutive patterns without constraints becomes a special case of find non-consecutive patterns with constraints, if we remove lines 6 and 7 in Figure 3. Three Constraints We propose the use of three constraints necessary for accurately acquiring non-consecutive patterns for information extraction. The first constraint is that there cannot be a wildcard immediately before or after an anchor. We call the constraint boundary constraint. The constraint is obligatory for information extraction, since it is necessary to accurately determine the boundaries of an anchor (e.g., ). Without this constraint, pattern 1 in Figure 5 will be generated, and with the pattern the information in test instance 1 will be incorrectly extracted. The second constraint is that the number of n in the wildcard \w +n in a context should not be larger than the largest number of words to be skipped in the same context in the training data. We call the constraint distance constraint. Without this constraint, pattern 2 in Figure 5 will be generated, and the information in test instance 2 will be incorrectly extracted. The third constraint is that an isolated function word is prohibited. For example, in the pattern \w+ the \w+, the is an isolated function word. The rational behind the constraint is that a pattern should include content words and skip isolated function words. We call the constraint island constraint. Without this constraint, pattern 3 in Figure 5 will be generated, and the information in test instance 3 will be incorrectly extracted. Non-consecutive patterns without certain constraint: today announced the immediate availability {\w +3} {\w +} today announced {\w +} deliver . {\w +8} the {\w +13} of the , the firstTest instances: Microsoft Corp. today announced the immediate availability of Internet Explorer for no-charge download from the Internet. Microsoft Corp. and Policy Management Systems Corp. (PMSC) today announced a plan in which the two companies will work together to deliver enterprise and electronic-commerce solutions based on the Microsoft Windows NT Server operating system and the BackOffice family of products. Microsoft Corp. today provided attendees of the Consumer Electronics Show in Las Vegas with a demonstration of the Microsoft Entertainment Pack for the Windows CE operating system, the first game product to be released for the Windows CE-based handheld PC platform.Incorrectly extracted information: any substring of of Internet Explorer for no-charge download from the Internet enterprise and electronic-commerce solutions based on the Microsoft Windows NT Server operating system and the BackOffice family of products Microsoft Entertainment Pack for the Windows CE operating systemFigure 5: Patterns without Constraints The use of the constraints also has a desirable effect of improving efficiency in learning, as it helps reduce the search space. Theorem 1 below guarantees that our algorithm is able to find all the patterns which cover the input strings satisfying the constraints. Definition 1 EMBED Equation.3 ,  EMBED Equation.3 and EMBED Equation.3 are properties of string s, such that  EMBED Equation.3  EMBED Equation.3  EMBED Equation.3 Definition 2 (anti-monotonicity) Let s denote any string and let t denote any superstring of s. A property EMBED Equation.3 of strings is anti-monotone, if  EMBED Equation.3  implies EMBED Equation.3 . Theorem 1 EMBED Equation.3 ,  EMBED Equation.3 and EMBED Equation.3 are anti-monotonic. The proof of the theorem is omitted here due to the limitation of space. 4.2 Pattern Ranking The patterns obtained at pattern generation are ranked based on their precisions, using both positive and negative instances, provided that the precisions are larger than a predetermined threshold. Let a denote the number of instances matched to a pattern p, and let c denote the number of the instances matched to p, and at the same time the information in the instances can be correctly extracted. The precision of p is defined as EMBED Equation.3 . When a pattern p can match all the positive instances that a pattern q can match, we say p covers q. If p covers q and p is ranked before q in the ranked pattern list, we remove q from the list. 4.3 Extraction Given a new instance, the ranked patterns are examined sequentially. With the pattern which matches the instance first, the anchor information is extracted. For example, with the non-consecutive pattern in Figure 2, one can extract from the test instance in Figure 1, the anchor (i.e., ) information: Microsoft Office 60 Minute Intranet Kit version 2.0. The matching of a string pattern to a string instance is performed in the left-to-right order. For example for the pattern x \w+ y \w+: First, x matches to its first occurrence in the string and y matches to all its occurrences in the sub-string after the first occurrence of x. If the matching fails, then x matches to its second occurrence and y matches to all its occurrences in the remaining sub-string. The matching continues. 5 Experimental Results We conducted two experiments in order to test the effectiveness of our method. Specifically, we performed information extraction regarding product releases and inventions. Experimental results indicate that for information extraction (at least for the problems investigated), the use of non-consecutive string patterns with constraints outperforms the use of consecutive string patterns alone and the constraints we propose are indeed needed. Hereafter, we denote the method using non-consecutive string patterns and that using consecutive string patterns as NCP and CP, respectively. 5.1 Product Release Information Extraction Many companies routinely publish information on product releases at their web sites. Automatically extracting such information has not only research values but also practical interests. This is exactly the problem we have investigated, which is also described above as an example. We collected press release articles from the websites of five IT companies. From each article, we extracted the first sentence using heuristic rules (the data in Figure 1 are examples of them). Next, we asked two human annotators to assign labels on the extracted sentences. The sentences containing information on has released were annotated as positive instances. Specifically, the company names and the product names were assigned labels. The sentences containing information only on were annotated as negative instances. Specifically, only the company names were assigned labels. Details of the data can be found in Table 1. Table 1: Data for Product Release Information ExtractionCompanyNum. of pos. dataNum. of neg. dataCompany A174229Company D304390Company I250556Company M10042365Company N208292With the data of each company, we compared NCP against CP. To investigate the necessity of the use of the constraints, we also tested two additional methods. In the first method, we removed the distance constraint from NCP, in the second method, we removed the island constraint from NCP. We denote them as NDC and NIC, respectively. Note that the boundary constraint is an obligatory constraint. We performed the experiments with 10-fold cross-validation. The results obtained were thus those averaged over ten experimental trials. We evaluated the results in terms of precision, recall and f-measure. Let |D| denote the number of instances extracted by using the patterns. Let |F| denote the number of instances correctly extracted by using the patterns. Let |E| denote the number of instances that should be extracted. We define  EMBED Equation.3   EMBED Equation.3   EMBED Equation.3  With different thresholds on the precisions at pattern ranking, we obtained results of different precisions and recalls on the test set. Figures 6-10 show the precision recall curves for the five companies. From the figures, we see that NCP significantly outperforms CP with respect to Companies D, I, M, and N. It performs as well as CP with respect to Company A. Furthermore, NCP performs better than both NDC and NIC in most cases (note that NDC and NIC should also be considered as our methods). The results indicate that the use of non-consecutive patterns is better. They also indicate that both the distance and island constraints are needed for reliable information extraction.  Figure 6: Company A  Figure 7: Company D  Figure 8: Company I  Figure 9: Company M  Figure 10: Company N Table 2 shows the highest f-measure for each method. From the results, we see that NCP has the best performances in terms of highest f-measure in most of the cases except that of Company N. Table 2: Highest F-Measure (%)NCPNDCNICCPCompany A60.4557.9759.4959.09Company D47.8347.6843.7824.16Company I54.1451.3252.2648.43Company M61.1260.9858.9156.67Company N42.9644.1250.5218.97 NIC has the best f-measure for Company N. This is because without the island constraint more patterns could be acquired from the companys data, and the recall values turned out to be very high, as shown in Figure 10. NCP: {\w +6} the availability of , {\w +8} announced the {\w +5} availability of . {\w +3} unveiled , a today {\w +10} release of , the {\w +5} announced the , aCP: today announced the availability of , today announced the , the today announced the immediate worldwide availability of . today announced the release of the , the today announced the , a today unveiled , aFigure 11: Patterns with respect to Company M Figure 11 shows examples of the patterns for Company M extracted by NCP and CP respectively. Since non-consecutive patterns include consecutive patterns, we omit the duplicated consecutive patterns from NCP in the figure. We see that NCP has more generalized patterns than CP, which contribute to the better performance of NCP. Admittedly, the precisions of NCP are still not high enough. We investigated the reason and found that this was due to the limited coverage of the training data. We believe, therefore, that with more data being available the accuracies will be able to be further improved in the future. 5.2 Question Answering on Inventions We conducted information extraction for question answering. More specifically, we conducted extraction on pairs. Given a we can use the extracted to reply to the . This experiment is similar to that in (Ravichandran and Hovy, 2002). We selected four types of pairs related to inventions. They were , , and pairs. We extracted data from the web. Table 3 shows the details of the data. First, we created pairs. For example, is an pair. For each pair, we used a search engine to search web pages containing both the and the . From the top 50 returned pages, we extracted the sentences containing the and the . We used them as positive instances for pattern generation. For each , we also used the search engine to search web pages containing the . From the top 50 returned pages, we extracted the sentences containing the . We used them as instances (having both positive and negative instances) for pattern ranking. Table 3: Data for Question Answering Q/A typeNum. of Q/A pairsNum. of data for generation Num. of data for rankingDiscoverer31128097312Invention1122412184209Inventor112241293960Invention year71115457185 The name of a person can appear in data in various ways. For example, McCormick can appear as Cyrus Hall McCormick, Cyrus McCormick, and Cyrus. In the experiment, we normalized the names of persons (e.g., normalized the above names to McCormick). We also assumed that any 3 or 4 digitals can be the expression of a year. We performed pattern learning and extraction experiments using the data through 10-fold cross-validation. The results obtained thus were averaged over ten trials. We evaluated the results using the mean reciprocal rank (MRR) measure (Voorhees, 2001), which was also used in (Ravichandran and Hovy, 2002). If the correct answer appears in the top 5 extracted answers, reciprocal rank is defined as the reciprocal of the rank of the first correct answer; otherwise, reciprocal rank is defined as zero. MRR is the mean of the reciprocal ranks of all the questions. We note that precision-recall is suitable for the evaluation in the first experiment and MRR is suitable for the evaluation in the second experiment. In the first experiment, extraction was performed in order to find all the information from a closed data set; while in the second experiment, extraction was performed so that whenever an answer was found, the search of an answer would be no longer needed. Table 4: MRR ScoresQ/A typeNCPCPDiscoverer0.7760.709Invention0.3750.305Inventor0.4070.360Invention year0.3900. 395 From Table 4, we see that NCP performs significantly better than CP with respect to discoverer, invention and inventor, and it performs as well as CP with respect to invention year. was discovered by in {\w +9} was discovered by . {\w +8} discovered by on {\w +15} discovered by in {\w +10} discovered by ( {\w +6} discovered in {\w +4} Sir . was discovered {\w +5} Sir ,Figure 12: NCP Patterns with respect to Discoverer Figure 12 shows the example patterns obtained by applying NCP to the discoverer data. 6 Conclusion This paper has presented a new algorithm for learning non-consecutive patterns with constraints for information extraction. The pattern generation step of the algorithm is an extension of the apriori algorithm. We believe that the use of non-consecutive patterns is necessary, when it is to extract information concerning with complex expressions (note that flexibility or non-consecutiveness is the nature of language). The main contributions of this paper, we think, are (a) the designing of the learning algorithm which can accurately and efficiently acquire non-consecutive patterns, (b) the proposal of using the constraints necessary for accurate and efficient information extraction, and (c) the empirical verification of the necessity of the use of non-consecutive patterns in information extraction. References H. Ahonen, O. Heinonen and M. Klemettinen, 1998. Applying Data Mining Techniques for Descriptive Phrase Extraction in Digital Document Collections. In Proceedings of Advances in Digital Libraries Conference. R. Agrawal and R. Srikant, 1994. Mining Sequential Patterns. In Proceedings of the 20th International Conference on Very Large Databases. S. Brin, 1998. Extracting Patterns and Relations from the World Wide Web. In Proceedings of the WebDB Workshop at 6th International Conference on Extending Database Technology. S. Huffman, 1995. Learning Information Extraction Patterns from Examples. In Proceedings of IJCAI-95 Workshop on New Approaches to Learning for Natural Language Processing B. Lent, R. Agrawal and R. Srikant, 1997. Discovering Trends in Text Databases. In Proceedingsof the 3rd International Conference on Knowledge Discovery and Data Mining. D. Lin and P. Pantel. 2001. DIRT - Discovery of Inference Rules from Text. In Proceedings of ACM SIGKDD Conference on Knowledge Discovery and Data Mining 2001. H. Mannila and H. Toivonen, 1996. Discovering Generalized Episodes Using Minimal Occurrences. In Proceedings of the 2nd International Conference on Knowledge Discovery and Data Mining. D. Ravichandran and E. Hovy. Learning Surface Text Patterns for a Question Answering System. In Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics. E. Riloff, 1996. Automatically Generating Extraction Patterns from Untagged Text. In Proceedings of the 13th National Conference on Artificial Intelligence. S. Soderland, D. Fisher, J. Aseltine, and W. Lehnert, 1995. Crystal: Inducing a Conceptual Dictionary. In Proceedings of the 14th International Joint Conference on Artificial Intelligence. R. Srikant and R. Agrawal, 1996. Mining Sequential Patterns: Generalizations and Performance Improvements. In Proceedings of the 5th International Conference on Extending Database Technology, EDBT. K. Sudo, S. Sekine and R. Grishman, 2001. Automatic Pattern Acquisition for Japanese Information Extraction. In Proceedings of Human Language Technologies, 2001. E. Voorhees, 2001. Overview of the Question Answering Track. In Proceedings of the TREC-10 Conference. NIST, Gaithersburg, MD, 157165. 1 In mathematics, anti-monotonicity is a more general notion. 2 We used Google (http://www.google.com). Cong Li and Hang Li. Word Translation Disambiguation Using Bilingual Bootstrapping. To appear in Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics.  8TU_K L V W s I ¶z‡nb[zVRJRh 5ho(h ho( h,hhmH nH sH tH hamH nHsH tHhmH nHo(sH tHha5mH nHsH tHha5mH nH sH tH hmH sH hamH nHo(sH tHhamH nH sH tH ha5mH nHo(sH tHhshnHtHhnHtHhnHo(tHhwnHo(tHh_^nHo(tH>U_x 7 L W s  $If]gda (#$If]gda $Ifgdagd h+ d f fTg7F||||gd_7gd gd 1$gd 1$gd gd bkd$$IfF4F #  1     4 Faf4I J _ ` e   ! G N X b c w | < > N ` b d j º˴˰󬨢󚐚uh^JmH o(sH  ho( h 5hh$h}Qh6NHh}Qh6 hgNHhgh7hk h:NHh:h:6 h_ 6h/9h:hwUhr6NHhwUhr6hwUh6hdQ# hNHhh 5ho(+ & D V X +>FHKLU´}}l^Sh'2{^JmH o(sH h+8h'2{^JmH o(sH !h'2{PJ^JmH nHo(sH tHh^JmH nHo(sH tHh'2{^JmH sH h[&&^JmH sH h ^JmH sH h ^JmH sH h^JmH nHsH tHh^JmH o(sH hNH^JmH sH h&^JmH nHo(sH tHh?h6^JmH sH h^JmH sH UVZcpqtvxyŹůٗٗ}pf[Nh+8h1^JmH sH h1^JmH o(sH h1^JmH sH hNH^JmH o(sH hvh^JmH sH h+8h^JmH sH h+8h+8^JmH o(sH h ^JmH sH h^JmH sH hyNH^JmH sH hy^JmH sH h[&&^JmH sH h^JmH sH h^JmH o(sH !h+8PJ^JmH nHo(sH tH +=DEabejopvwȾȾȾ}oaoSh&^JmH nHsH tHhQ^JmH nHsH tHhyL2^JmH nHsH tH!hJ NH^JmH nHo(sH tHhJ ^JmH nHo(sH tHhJ ^JmH nHsH tH hQ^Jh+8hQ^JmH sH h^JmH sH h^JmH sH h+8hW@^JmH sH h+8hD^JmH sH hD^JmH sH hP;^JmH sH .=PQfglmꔄsiaTah_7hh?^JmH sH hh?mH sH h"`^JmH sH  h hG{^JmH nHsH tHhDTAh6NH^JmH sH hDTAh6^JmH sH hG{^JmH sH hp^JmH sH h\:^JmH sH h1NH^JmH sH h ^JmH sH h^JmH sH h1^JmH sH h^JmH sH hNH^JmH sH   (4<DHIKLTy!279:춮vld\TJhyNHnHtHhynHtHh3nHtHhJsnHtHh"`NHnHtHh_7h"`^JmH sH hgnHo(tHhP;hg6nHo(tHhP;nHtHhP;hP;6nHtHh[nHtHh"`nHtHhNH^JmH sH h1^JmH nHsH tHhG{^JmH sH h1^JmH sH h^JmH sH h"`^JmH sH :BDH_dio KRTUIJX_شجznh] mH nHsH tHhyhy6nHtHhah_ nHtHhyNHnHtHh_ 6nHtHhSxnHtHh"`nHtHh[NHnHtHh gnHo(tHh9"nHo(tHhJsnHtHh[nHtHhP;nHtHhynHtHh>gnHtHhynHtH&2569:;>LOPYbdfgĻIJޟޓĂwmeXPh"`nHtHh_7h^JmH sH hmnHtHhNHnHtHh] hmH sH h0h#nHtHhSx6nHtHh?h6nHtHh>gnHtHh_ 6NHnHtHh_ 6nHtHh3'nHo(tHhnHtHh0h#nHo(tHhnHo(tHhynHtHh] mH nHsH tHh] NHmH nHsH tH $%5npq{,-679Fʼִִִ֪֚|tjteah ho(h?3TNHnHtHh?3TnHtHhQxh[6nHtHhaI"nHtHh[NHnHtHh[nHtHhTnHtHhNHnHtHhQxnHtHhm^h6NHnHtHhm^h6nHtHhnHtHh"`NHnHtHh"`nHtHh%nHtHhN9nHtH#Fvw(./0238CDJPVWYܺ氥vhYJYh"2^JmH nHo(sH tHhZ^JmH nHo(sH tHhpmhpm^JmH o(sH !hpmNH^JmH nHo(sH tHhpm^JmH nHo(sH tHhf>o^JmH nHo(sH tHhpm^JmH o(sH hN9^JmH sH hGNH^JmH sH hfNH^JmH sH hf^JmH sH hG^JmH sH h]!^JmH sH  h=hh=ho(Fw0sQl" !!""##$$& #$/1$IfVD^b$gd $& #$/1$Ifb$gd gd gd_71$gd 1$gd Ybcr "&'-./ѴѦѦѴыwmcWmMhG^JmH sH h[mNH^JmH sH h[m^JmH sH htZ^JmH sH h^JmH sH hD^JmH sH hN9^JmH sH !hCNH^JmH nHo(sH tHh=^JmH nHsH tHhC^JmH nHo(sH tHhb^JmH nHsH tHh^JmH nHo(sH tHhb^JmH sH hY2NH^JmH sH hY2^JmH sH /0<ENOZq}蝎qcQcChu^JmH nHsH tH#hh{16^JmH nHsH tHhi\^JmH nHsH tHhi\^JmH nHo(sH tHh{1^JmH nHsH tHh^JmH nHo(sH tHhC,^JmH nHsH tHhNH^JmH sH hN^JmH nHsH tHhIwSh6^JmH sH h_7hIwSnHtHhIwS^JmH sH h^JmH sH hGmH nHo(sH tH(-/8IMRnqrsƷԝԏԏrrcUFUch;$^JmH nHo(sH tHh;$^JmH nHsH tHh#|3^JmH nHo(sH tHh^JmH nHo(sH tHh{1^JmH nHsH tHhH^JmH nHsH tHh_7hoEnHtHhH^JmH nHo(sH tHhi\^JmH nHo(sH tHhi\^JmH nHsH tHhoE^JmH nHsH tHhu^JmH nHsH tHhuNH^JmH nHsH tH "$1@MNORSXcjkǹǫǫǫrdVdFddVh NH^JmH nHsH tHh^JmH nHsH tHh ^JmH nHsH tHh ^JmH nHo(sH tHh_7h#|3nHo(tHh#|3^JmH nHo(sH tHh^JmH nHo(sH tHhoE^JmH nHsH tHhu^JmH nHsH tHhoE^JmH nHo(sH tH*hhoE6NH^JmH nHo(sH tH&hhoE6^JmH nHo(sH tHkl9:<JKOPQUĴ⦖vhvXvIAh=ho(h!b^JmH nHo(sH tHhXNH^JmH nHsH tHh]Ƹ~oa~SoSoBo!h2NH^JmH nHo(sH tHhKKy^JmH nHsH tHhKKy^JmH nHsH tHh2^JmH nHo(sH tHh`^JmH nHsH tHh_ ^JmH nHsH tHh3NH^JmH nHsH tHh3^JmH nHsH tHh ^JmH nHsH tH#hh ^JmH nHo(sH tHh ^JmH nHo(sH tH h=hhQnHtHhJ nHo(tH>EGKOPUghn !ᱡseeeWWWhKKy^JmH nHsH tHh3^JmH nHsH tHhs^JmH nHsH tH!h2NH^JmH nHo(sH tHh2^JmH nHo(sH tHhNH^JmH nHsH tHh^JmH nHsH tHh NH^JmH nHsH tH#hh ^JmH nHo(sH tHh ^JmH nHsH tH hh ^JmH nHsH tH!4>QVWqsyƵtfXJXgh>g6^JmH nHsH tHh>g^JmH nHsH tHhT^JmH nHsH tHh^JmH nHsH tHh`^JmH nHsH tHh_7h`nHtHhPd^JmH nHsH tH#hhPd6^JmH nHsH tH}  * . / 4 S W ] d e q 乩䛉zll^Plh[m^JmH nHsH tHh?^JmH nHsH tHhQt^JmH nHsH tHhQt6^JmH nHsH tH#hxNhxN6^JmH nHsH tHhxN^JmH nHsH tHh!hNH^JmH nHsH tHh!h^JmH nHsH tHh[/ ^JmH nHo(sH tHhHB^JmH nHsH tHhD^JmH nHsH tHhW@^JmH nHsH tH !!!!!%!-!6!=!>!P!j!n!o!s!ǻϯ}ϯqύiihYZmH sH hTmH nHsH tHhTmH sH hhmH sH hmH sH hmH nHo(sH tHhmH nHo(sH tHhmH nHsH tHhmH nHsH tHhmH sH hhmH nHsH tH h5gh ho(h,ho( hm9h^JmH nHsH tH&s!t!~!!!!!!!!!!!!!!!!!!!!!!""""""ӹ㱩tctPcP$hChCJaJmH nHsH tH!hUxRCJaJmH nHo(sH tHhxCJaJmH nHsH tHhhmH nHo(sH tHhhmH o(sH hhmH o(sH hhmH sH h|mH sH hDmH sH hYZNHmH sH h 'mH sH hYZmH sH hmH sH hmH nHo(sH tHhmH sH h hmH sH ""#"J"K"R"S"T"U"s"t"v"w"""""""""" ###@#A#R#S############# $$$$$A$B$E$$طططاطȕطط؂طاطاطا$hhCJaJmH nHsH tH"h;CJNHaJmH nHsH tHhxCJaJmH nHsH tH!hUxRCJaJmH nHo(sH tHh;CJaJmH nHsH tH$hChCJaJmH nHsH tH(hChCJNHaJmH nHsH tH/$$$%|c$& #$/1$IfVD^b$gd $& #$/1$Ifb$gd pkd$$Ifl@ t 6 0644 lae4$$$$$$$$%% %%%%%%%%%ǷkXH'A'P'k'ıwcVNF>3N3h,mPh hmH sH hmH sH h^I`mH sH h~mH sH hmH nHo(sH tH'h %h5CJaJmH nHsH tH'h %hbO5CJaJmH nHsH tH*h %h5CJaJmH nHo(sH tHh'dhZCKmH nHo(sH tH$hYZh2gCJaJmH nHsH tH$hChZCKCJaJmH nHsH tH'jh2gCJUaJmH nHsH tH(hRvh2g0JCJaJmH nHsH tH''%'y$$& #$/1$Ifa$b$gd pkdg$$Ifl@ t 6 0644 lae4%'&'*+*n*o****nnnnn$1$IfVD^gd  $1$Ifgd gd_7pkd$$Ifl@ t 6 0644 lae4k'v'x'y'''''''''''''''((((3(4(<(E(F(H(I(O(P(f(g(ȺȮȢ|mԢԢ__Sh:mH nHsH tHhoNHmH nHsH tHh%mPJmH nHo(sH tHhDNHmH nHsH tHhB4mH nHsH tHhDmH nHsH tHhomH nHsH tHhkImH nHsH tHh>i/NHmH nHsH tHh>i/mH nHsH tHhNmH nHo(sH tHhNmH nHsH tHh,mPh hmH sH h hmH sH  g(l(v({((((((((((((((((()))$)%)))*)1)2)Q)R)_)f)g)h)ɹɱɩɱxgxx[h hmH nHsH tH h,mPh hNHmH nHsH tHh,mPh hmH nHsH tHh>i/mH sH h^I`mH sH hW@mH sH hD-DNHmH sH hkImH sH hD-DmH sH hYZmH sH hmH sH h hmH sH h,mPh hmH sH htmH nHsH tHh:mH nHsH tHhomH nHsH tH"h)x)y)z)))))))))))) * ****+*-*4*5*J*[*ᷦtaPat!hUxRCJaJmH nHo(sH tH$hChCJaJmH nHsH tHh3FCJaJmH nHsH tHhmH nHo(sH tHhmH sH h,mPhNHmH sH  h,mPhHgNHmH nHsH tHh,mPhHgmH nHsH tHh~mH sH hymH sH h,mPhHgmH sH h,mPhmH sH h6mH sH h6mH nHsH tH[*\*e*m*o*q*x*y************* + + ++++++,+.+˷˦˒˦˂zmam˦P!h.CJaJmH nHo(sH tHhHgmH nHsH tHhmH nHo(sH tHhmH sH hH7ShmH nHo(sH tH'hUxRhCJaJmH nHo(sH tH!hUxRCJaJmH nHo(sH tH'hChCJaJmH nHo(sH tH$hChCJaJmH nHsH tHh3FCJaJmH nHsH tH"h3FCJNHaJmH nHsH tH** +N+~$1$IfVD^gd  $1$Ifgd ekd7$$Ifl@ t0644 la.+/+0+2+E+M+N+O+W+X+a+b+d+++++(,/,0,ʺ۫yldlZL>h h^JmH nHsH tHht^JmH nHsH tHh h^JmH sH h hmH sH hmH nHo(sH tH'h %hbO5CJaJmH nHsH tH*h %h5CJaJmH nHo(sH tHhmH sH hH7ShmH nHsH tHh3FCJaJmH nHsH tH!hf.CJaJmH nHo(sH tH$hChCJaJmH nHsH tH!h CJaJmH nHo(sH tHN+O+b+c+'ekd$$Ifl@ t0644 la $$1$Ifa$gd ekd{$$Ifl@ t0644 lac+d+,.9.0/011&2U222 3F3334U4444 & F$_&`#$/1$IfgdOfY$_&`#$/1$If`gd xx1$XD2YD2gd 1$gd gd gd_71$gd 0,>,@,M,|,},,,,,,,,,,,,,,,,,,,,,,--<-=-L-P-d-n-´ݨݙ‹‹‹݁wwk]݁hW%hW%6^JmH sH hW%NH^JmH sH ht^JmH sH hW%^JmH sH h^JmH nHsH tHh h^JmH nHo(sH tHhNH^JmH sH h h^JmH nHsH tHh^JmH nHo(sH tHh hNH^JmH sH h^JmH sH h h^JmH sH hvXh h6^JmH sH "n-s-------+.,.-.9.=.C.K.P._.`.w........ûymy[G[[&hr?h6NHmH nHo(sH tH"hr?h6mH nHo(sH tHhg$mH nHsH tHh"mH nHsH tHhW%h"6mH nHsH tHh"mH nHo(sH tHhmH nHsH tHhmH nHo(sH tHhiho( ho(h.^JmH nHsH tHhW%NH^JmH sH h o^JmH sH hW%^JmH sH h.a^JmH sH ....../?/@/C/D/Y/b/////////////////ؾزإؙsg[gMghCNHmH nHsH tHh#mH nHsH tHhCmH nHsH tHh,xANHmH nHsH tHh\wmH nHsH tHh`mH nHsH tHh,xAmH nHsH tHh9mH nHo(sH tHh]mH nHsH tHhm4mH nHsH tHhjyNHmH nHsH tHhjymH nHsH tHhmH nHo(sH tHh6mH nHo(sH tH/00000/0000000000000001 1 111?1нssesXsLhg$mH nHsH tHh..mH nHo(sH tHh,CNHmH nHsH tHh,CmH nHsH tHhDmH nHsH tHhO1mH nHsH tHhENHmH nHsH tHhEmH nHsH tHhFmH nHsH tHhmH nHsH tH h=hh=ho(hLPOhmH nHo(sH tHh,xAmH nHsH tHhRmH nHsH tH?1C1K1M1N1T1V1Y1^1`1a1b1c1h1o1t1u1z1111111111|pdXLhSmH nHsH tHhL'2mH nHsH tHhw}mH nHsH tHhmH nHsH tHh2SkmH nHsH tHhT.NHmH nHsH tHhT.hT.6mH nHsH tHh mH nHo(sH tHhT.mH nHo(sH tHhT.mH nHsH tHh;[NHmH nHsH tHh;[mH nHsH tHhmH nHsH tHh mH nHo(sH tH111111111111 2%2&2'2:2;2ʸʬڟ~ncWO> j’A h2)CJUVaJo(h2)CJaJjh2)CJUaJhhh2)OJQJhhh2)5CJOJQJaJh2)5CJOJQJaJ&h=hU5^JmH nHo(sH tHhmH nHo(sH tHhSmH nHsH tH#h2Skhw}6NHmH nHsH tHh2Skhw}6mH nHsH tHhw}mH nHsH tHhKNHmH nHsH tHhKmH nHsH tH;2<2=2T2U2V2i2j2k2l2{2~22222222222222;ڀocO>!j hdh2)CJEHUaJ&jڞA hdh2)CJUVaJo(hdh2)5CJaJ!jhSh2)CJEHUaJ jA h2)CJUVaJo(!jhdh2)CJEHUaJ jA h2)CJUVaJo(hdh2)CJaJjhdh2)CJUaJh2)CJaJnHo(tHh2)CJaJjh2)CJUaJ!jhSh2)CJEHUaJ22222222222222333333333庩呉l[呉J9!jh,@_h2)CJEHUaJ jA h2)CJUVaJo(!johRSOhRSOCJEHUaJ8jB hRSOCJOJQJUVaJmH nHo(sH tHh2)CJaJjh2)CJUaJhdh2)5CJaJ!jg hdh2)CJEHUaJ jA h2)CJUVaJo(hOfYCJaJnHo(tHh2)CJaJnHo(tHhdh2)CJaJjhdh2)CJUaJ333 3"3*3,3-3@3A3B3C3E3F3J3M3O3S3Z3[3f3g3h3{3蠏|l]Ll]l]]!h!CJaJmH nHo(sH tHh;[h2)CJaJmH sH h;[h2)5CJaJmH sH $hOfY5CJaJmH nHo(sH tH!jh%Uh2)CJEHUaJ jA h2)CJUVaJo(jhdh2)CJUaJhdh2)5CJaJhOfY5CJaJnHo(tHh2)CJaJnHo(tHhdh2)CJaJjh2)CJUaJ{3|3}3~3333333333333333333~m]L;!jhdh2)CJEHUaJ jhA h2)CJUVaJo(h;[h2)6CJaJmH sH !jh%Uh2)CJEHUaJ jA h2)CJUVaJo(jh2)CJUaJ!hOfYCJaJmH nHo(sH tH'h;[h2)CJaJmH nHo(sH tHh;[h2)CJaJmH sH jhdh2)CJUaJ!jhdh2)CJEHUaJ j7A h2)CJUVaJo(333333333444 4!44454647484<4=4P4Q4αΏwo^owOw> jՓA h2)CJUVaJo(jhdh2)CJUaJ!jh%Uh2)CJEHUaJh2)CJaJhdh2)CJaJhOfYCJaJnHo(tH!h2)CJaJmH nHo(sH tH!jh%Uh2)CJEHUaJ jϓA h2)CJUVaJo(jh2)CJUaJh;[h2)CJaJmH sH h;[h2)5CJaJmH sH $hOfY5CJaJmH nHo(sH tHQ4R4S4T4U4Y4[4\4]4^4q4r4s4t4444ǴudSu=+h6h2)CJNHaJmH nHo(sH tH!j h%Uh2)CJEHUaJ jϓA h2)CJUVaJo(jh2)CJUaJ'h6h2)CJaJmH nHo(sH tHh;[h2)CJaJmH sH h;[h2)5CJaJmH sH $hOfY5CJaJmH nHo(sH tHh2)CJaJnHo(tHhdh2)CJaJjhdh2)CJUaJ!jhdh2)CJEHUaJ444444444444444444444±ь}n]L}8n'h6h2)CJaJmH nHo(sH tH!j$hdh2)CJEHUaJ jՓA h2)CJUVaJo(hg$h2)CJaJmH sH jhdh2)CJUaJ'hg$h2)CJaJmH nHo(sH tH!j"h%Uh2)CJEHUaJ jϓA h2)CJUVaJo(h;[h2)CJaJmH sH jh2)CJUaJ!hOfYCJaJmH nHo(sH tH!h2)CJaJmH nHo(sH tH44444444455555!5"555ʻʅمvbUF7,hdh2)CJaJjhdh2)CJUaJhih2)CJOJQJaJhOfYCJOJQJaJo('hg$h2)CJaJmH nHo(sH tHhg$h2)CJaJmH sH 'hOfYhOfYCJaJmH nHo(sH tH!j&hdhOfYCJEHUaJ jՓA hOfYCJUVaJo(hg$hOfYCJaJmH sH jhdhOfYCJUaJ!hOfYCJaJmH nHo(sH tH*hOfYhOfY5CJaJmH nHo(sH tH4555:5;5e5_H$$_&`#$/1$Ifa$gd qkd>+$$Ifl@ t 6`_0644 la$_&`#$/1$If`gdOfY & F$_&`#$/1$IfgdOfY5565758595:5;5d5f5g555555ļr]M< jA h2)CJUVaJo(hOAh2)5CJOJQJaJ(jhOAh2)5CJOJQJUaJh2)5CJOJQJaJo("hhh2)5CJOJQJaJo(h2)mH nHo(sH tH'hVh2)5CJaJmH nHsH tHh2)mH sH h;[h2)o(hdh2)CJaJjhdh2)CJUaJ!j(hOfYh6OxCJEHUaJ jDB h~g0CJUVaJo(e5f5g55556\6666pYYYYYYY & F$<&`#$/1$Ifgd $<&`#$/1$If`gd 1$gd qkd+$$Ifl@ t 6`_0644 la 55555555555555555555Ե{iŵԵXAԵ,j^0hOAh2)5CJEHOJQJUaJ jA h2)CJUVaJo("hvh2)5CJOJQJaJo("hhh2)5CJOJQJaJo(,jR.hOAh2)5CJEHOJQJUaJ jA h2)CJUVaJo(hOAh2)5CJOJQJaJh2)5CJOJQJaJo((jhOAh2)5CJOJQJUaJ,j,hY2ph:a5CJEHOJQJUaJ555555555556666666"6#6$67686Ϻϩߺρj]Q@ j*A h2)CJUVaJo(h2)CJOJQJaJh2)5CJOJQJaJ,j 5hOAh2)5CJEHOJQJUaJ jA h2)CJUVaJo(,j2hvh2)5CJEHOJQJUaJ jA h2)CJUVaJo((jhOAh2)5CJOJQJUaJhOAh2)5CJOJQJaJh2)5CJOJQJaJo("hOAh2)5CJOJQJaJo(8696:6C6D6W6X6Y6Z6[6\6`6b6f6g6z6{6ȼȀqdTTC j@A h2)CJUVaJo(hOAh2)5CJOJQJaJh2)5CJOJQJaJh2)5CJOJQJaJo("hOAh2)5CJOJQJaJo(!j9hSh2)CJEHUaJ j’A h2)CJUVaJo(h2)CJaJjh2)CJUaJh2)CJOJQJaJ(jhOAh2)5CJOJQJUaJ,jz7hY2ph2)5CJEHOJQJUaJ{6|6}66666666666666666666ijĊ{jSF:h2)CJOJQJaJh2)5CJOJQJaJ,j?hOAh:a5CJEHOJQJUaJ jbA h2)CJUVaJo(h2)5CJOJQJaJo("hOAh2)5CJOJQJaJo(,j~=hY2ph2)5CJEHOJQJUaJ j3A h2)CJUVaJo(hOAh2)5CJOJQJaJ(jhOAh2)5CJOJQJUaJ,jv;hY2ph2)5CJEHOJQJUaJ666666666666667777÷o`SCC2 jA h2)CJUVaJo(hOAh2)5CJOJQJaJh2)5CJOJQJaJh2)5CJOJQJaJo("hOAh2)5CJOJQJaJo(!j5DhSh2)CJEHUaJ j’A h2)CJUVaJo(h2)CJaJjh2)CJUaJh2)CJOJQJaJ(jhOAh2)5CJOJQJUaJ,j&BhTh2)5CJEHOJQJUaJ jvA h2)CJUVaJo(777772737475767778797:7;7<7=7>7?7E7K7L7_7`7ijĊ{n{ĊnĊbSB jA h2)CJUVaJo(hih2)CJOJQJaJh&CJOJQJaJh&5CJOJQJaJh2)5CJOJQJaJo("hOAh2)5CJOJQJaJo(,j8HhY2ph2)5CJEHOJQJUaJ jA h2)CJUVaJo(hOAh2)5CJOJQJaJ(jhOAh2)5CJOJQJUaJ,j)FhTh2)5CJEHOJQJUaJ677<7?7d7e77_H$$<&`#$/1$Ifa$gd qkdHL$$Ifl@ t 6`<0644 la$<&`#$/1$If`gd  & F$<&`#$/1$Ifgd `7a7b7c7d7e7777777777777IJ|ogZOGOG:.ZhmRmH nHsH tHhmRmH nHo(sH tHhmRmH sH h%1hmH sH hmH nHo(sH tHhmPmH sH h2)mH nHo(sH tHhhh2)mH nHo(sH tH'hVh2)5CJaJmH nHsH tH"h&h2)5CJaJmH o(sH "hOAh2)5CJOJQJaJo(hOAh2)5CJOJQJaJ(jhOAh2)5CJOJQJUaJ,j@JhY2ph2)5CJEHOJQJUaJ777/89>;<=>>o?+ABaDuxx1$XD2YD2gd gd_71$gd qkdL$$Ifl@ t 6`<0644 la 77777778#8.8/8283848G8H8I8J8K8]8g8v8w8x8888ǿDzsgcZRJjhUh3h6h nHo(tHhmRhJk:hJk:nHo(tHjMh[hVEHU$jǔA hVCJUVnHo(tH hLhjh[hUhJk:nHo(tHhhmRmH nHo(sH tHh_ mH sH hhmH sH h%1hmH sH hVNHmH nHsH tHhmH nHsH tHhVmH nHsH tH888888888888888888888889 9 9 999"9ͽ͟xmici\iX\M\jh%1hUh h%1h h NHh hchnHtH hch h` phhJk:hJk:nHo(tHjRQh[h!EHU$jДA hVCJUVnHo(tHjh[hUhJk:nHo(tH h3h hLhhjhUj$Oh3hEHU$jLA hCJUVnHo(tH"9#9$9%9&999:9C9D9W9X9Y9Z9j9k9~999999999999999999999ȺȧՓsՓoioeoooiooa]ahmPho(h/ hNHhjWh%1h" SEHU$jA h" SCJUVnHo(tH h%1hjfUhh" SEHU$jA h" SCJUVnHo(tHjhU hNHhhJk:nHo(tHjh%1hUj^Sh%1h" SEHU$jA h" SCJUVnHo(tH#999::::: ::":$:%:):*:=:>:?:@:[:a::::::::::::::::::;#;4;;;tnjh_ hNHj[hy>hy>EHU$jA hy>CJUVnHo(tHh]UhnHtHh'hJh6jYhy>hy>EHU$jA hy>CJUVnHo(tHjhy>U h NHh hmPhnHo(tHhhnHo(tHhy>hh);;<;=;C;G;K;S;k;m;n;;;;;;;;;;;;;;;;;;;;;;;;;;;;< <zvc$j)A hqPCJUVnHo(tHh]U hmPNHjahG#hqPEHU$j!A hqPCJUVnHo(tHj_hxhqPEHU$jA hqPCJUVnHo(tHj]hxhqPEHU$jA hqPCJUVnHo(tHjhUhqPhmPh2fhhy>h'& < < <<<$<%<&<'<3<4<5<H<I<J<K<L<N<h<j<l<<<<<<<<<<<<<<<<毢Ꞗ撎m`jKjhxhqPEHU$jCA hqPCJUVnHo(tH hNHh]Uh6hh OTh^nHtHh^j6hy>hyhenHtHhyhenHo(tHh;jhe6nHo(tHhe6NHnHo(tHhe6nHtHhe6nHo(tHhenHtH hG#hhG#h6hhh]UjhUjlhxhqPEHU$jMA hqPCJUVnHo(tH"========> >>>>>#>%>S>Z>o>>>>>>>>>>>>>>>?¾򪘪th\hSmH nHsH tHh JmH nHsH tH#h=hy5^JmH nHsH tH#h=hC5^JmH nHsH tH#h=h#M5^JmH nHsH tH&h=hU5^JmH nHo(sH tHh'h9h6hy>nHtHhmPh#MnHtHhy>h#Mhy>6h#Mh6h h^NHh^!??#?Q?l?n?o?s?x???????????????@@@*@+@3@4@;@M@Y@Z@ƾqeYhbTmH nHsH tHhcqtmH nHsH tHh\QNHmH nHo(sH tHhCh\Q6mH nHsH tHh:-mH nHo(sH tHhE$ mH sH h\QmH nHo(sH tHh\QmH nHsH tHh\QmH sH h4mH sH h7mH nHsH tHh JmH nHsH tHhSmH nHsH tHhSNHmH nHsH tH!Z@[@g@q@r@u@w@~@@@@@@@@@@@@@@@@AA*A+A/A5AVAWAXAYAʹ͘~p~`Th?f mH nHsH tHh(Wh(W6mH nHsH tHhJNHmH nHsH tHhJmH nHsH tHhE$ NHmH nHsH tHh\QNHmH nHo(sH tHhJmH nHo(sH tHhE$ mH nHsH tHhE$ mH nHo(sH tHh\QmH nHo(sH tHhqPmH nHsH tHh\QmH nHsH tHh\QNHmH nHsH tH YA\A`AiAjAmAnAoAqA~AAAAAAAAAAAAABBBBBг覛wk_wSFhJmH nHo(sH tHhDmH nHsH tHhmH nHsH tHhomH nHsH tHhWmH nHsH tHh\QmH nHsH tHh@mH nHsH tHh_7h@nHtHh\QmH nHo(sH tHhT.h(W6mH nHsH tHh(WmH nHo(sH tHh(WmH nHsH tHh?f mH nHsH tHhscmH nHsH tHhmH nHsH tHBBB!B$B&B;Bh:aEHUnHtH$jA h&fCJUVnHo(tH!jh>h<EHUnHtH$j6A h<CJUVnHo(tHjh>h&fUnHtHh:ah&fmH nHo(sH tH h:ah&fNHmH nHsH tHh:ah&fmH nHsH tHh:ah&f6mH nHsH tH L!L"L#L$L%L.L/LBLCLDLELGLHL[L\L]L^LaLbLuL°{jWF=h&fnHo(tH!jWh;jhHEHUnHtH$j$A h&fCJUVnHo(tH!jh}hHEHUnHtH%jiA hbCJPJUVnHtHh&fnHtHjh&fUnHtHh;jh&f5nHo(tH"h:ah&f5mH nHo(sH tHjh&f0JUnHtHh:ah&fmH nHsH tHjh>h&fUnHtH!jރh>h:aEHUnHtHuLvLwLxLLLLLLLLLLLLLLLL)M/M8M9MIMƾƶxpxcWKcKWh=fmH nHsH tHhfmH nHsH tHh5mH nHo(sH tHh=hoDo(h=ho(hyh{nHtHh{nHtHhPJnHo(tHhlnHtHh%nHtHhscnHtHhnHtHhynHtHh&fnHo(tHjh&fUnHtH!jh}hHEHUnHtH%jsA hbCJPJUVnHtHIMJMeMMMMMMMMMMMMMNNN$N%N'N+N;NLN]NwNxNNμΣ··{o{_{oSSGh`xmH nHsH tHhOAOEOLOZOؼ善xllalUllhmomH nHsH tHh_7h- nHtHh- mH nHsH tHhzmH nHsH tHhimH nHsH tHhzmH nHsH tHh$YmH nHsH tHh ?mH nHsH tHhhNHmH nHsH tHhhmH nHsH tHh K mH nHsH tHVVVVV0W1W2WAWXWZW[W`WaWsW~WWWWWWWWWrfZL@hmH nHsH tHhzNHmH nHsH tHh K mH nHsH tHh%mH nHsH tHh6NHmH nHo(sH tHh6mH nHo(sH tHhzmH nHsH tHh6mH nHsH tHh%mH nHsH tHhNHmH nHsH tHhmH nHsH tHh ?NHmH nHsH tHh ?mH nHsH tHh1Z$mH nHo(sH tHh_7h1Z$nHo(tHWWWWXXXXXXSXjXkXXXXXXXXXXXX摩xl]K#h$h$PJmH nHo(sH tHh1Z$PJmH nHo(sH tHh|>mH nHsH tHhmH nHsH tHh6mH nHo(sH tHhJ$mH nHsH tHh/TmH nHsH tHhzmH nHsH tHhOKh1Z$hVhao5NHmH sH hVhao5mH sH hVh1Z$5mH sH hVhGN5mH sH hVh1Z$5mH o(sH !YYY1YCYrrr$$& #$/1$Ifa$b$gdJ Ttkdߎ$$Ifl@ t 6 0644 lae4CYDYNYRYVYdLLL$$& #$/1$Ifa$b$gdJ TkdV$$IflF @ t 6 06    44 lae4VYWYaYeYiYdLLL$$& #$/1$Ifa$b$gdJ Tkdۏ$$IflF @ t 6 06    44 lae4iYjYtYxY|YdLLL$$& #$/1$Ifa$b$gdJ Tkd`$$IflF @ t 6 06    44 lae4|Y}YYYYdLLL$$& #$/1$Ifa$b$gdJ Tkd$$IflF @ t 6 06    44 lae4}YYYYYYYYYYYYYYYYYYYYZZ$Z(ZCZPZVZzZZZZZZZZ÷ëÑÑÂÑÑÑwk]kh%NHmH nHsH tHhcmH nHsH tHh_7h%nHtHh1Z$NHmH nHo(sH tHh%mH nHsH tHhNHmH nHsH tHhmH nHsH tHhzmH nHsH tHh1Z$mH nHo(sH tHhnHtHhN|hoPmH sH h'nh1Z$CJaJmH sH hgCJaJmH o(sH "YYYYYdLLL$$& #$/1$Ifa$b$gdJ Tkdj$$IflF @ t 6 06    44 lae4YY2[\\].]^__d__VVV___ $1$a$gd gd_7kd$$IflF @ t 6 06    44 lae4 ZZZZ [ [ [![&[0[2[?[C[N[T[V[X[m[n[[[[[[紧}k^QEQhcmH nHsH tHhmmH nHo(sH tHh :6mH nHsH tH"h%h :6mH nHo(sH tH"h_IBh :6mH nHo(sH tH.h_IBh_IB6OJPJQJmH nHo(sH tHh :mH nHo(sH tHh :mH nHsH tHh&'mH nHsH tHh1Z$NHmH nHo(sH tHh%mH nHsH tHh1Z$mH nHo(sH tHh1Z$mH nHsH tH[[[[[\\\\\\\\'\>\F\N\[\o\x\z\{\\\\\\ֻʰʤʔʆvjM8j)(A h1Z$CJOJQJUVaJmH nHo(sH tHh1Z$mH nHsH tHjh1Z$UmH nHsH tHhvNHmH nHsH tHhvhv6mH nHsH tHh:}mH nHsH tHh_7hvnHtHh1Z$NHmH nHo(sH tHhvmH nHsH tHh1Z$mH nHo(sH tHh :mH nHsH tHhhmH nHo(sH tH\\\\\]]]]]]*]+],]-].]2]K]O]Y]Z]\]l]p]y]]]r]QQQEQQQh=fmH nHsH tHhvmH nHsH tH)j6h5hxEHUmH nHsH tH8jA hxCJOJQJUVaJmH nHo(sH tH)j֔h{ch1Z$EHUmH nHsH tH8j(A h1Z$CJOJQJUVaJmH nHo(sH tHh1Z$mH nHsH tHh1Z$mH nHo(sH tHjh1Z$UmH nHsH tH)jth{ch1Z$EHUmH nHsH tH]]]]]]]]]]]^ ^ ^^"^(^)^/^0^3^>^S^T^g^i^^^^^^^򿲦xlx^xxPhJNHmH nHsH tHhNHmH nHsH tHhCmH nHsH tHhmH nHsH tH#hCh6NHmH nHsH tHhCh6mH nHsH tHhJmH nHsH tHhJmH nHo(sH tHhkPJmH nHo(sH tHh:}mH nHsH tHhsmH nHsH tHh1Z$mH nHsH tHh1Z$mH nHo(sH tH^^^^^#_%_2_3_________________ذ}rjeO*hVh15CJaJmH nHo(sH tH h1o(h@h1o(jؙh@h1U#h1hJPJmH nHo(sH tHh1PJmH nHo(sH tH#hH/hH/NHmH nHo(sH tHhH/hH/mH nHo(sH tHhw*mH nHsH tHhEmH nHsH tHhJmH nHsH tHhJNHmH nHsH tHhJmH nHo(sH tH____w$$1$Ifa$gdVo rK$ikd*$IfK$L$l t0644 la $Ifgd1K$_________``````````` `*`+`,`-`.`/`0`1`9`:`D`E`F`G`H`I`J`K`T`U`_```a`ķķķķwj&h@h1Ujh@h1Ujh@h1Uh1mH nHsH tHh@h1o(jUh@h1Uh1mH nHo(sH tH h1o(hIh1nHo(tH*hVh15CJaJmH nHo(sH tH'hVh15CJaJmH nHsH tH+_____J? $Ifgd1K$>kdަ$$Ifl" t644 la$Ifgd1onrFikd$IfK$L$l t0644 la__``fkdM$IfK$L$l t0644 la$$1$Ifa$gdVo rK$fkd$IfK$L$l t0644 la`````?ikd¾$IfK$L$l t0644 la $Ifgd1K$>kd$$Ifl" t644 la$Ifgd1onrF`+`,`-`.`t6>kdv$$Ifl" t644 la$Ifgd1onrFikd$IfK$L$l t0644 la$$1$Ifa$gdVo rK$.`0`1`E`w$$1$Ifa$gdVo rK$ikd$IfK$L$l t0644 la $Ifgd1K$E`F`G`H`J`J? $Ifgd1K$>kd$$Ifl" t644 la$Ifgd1onrFikdU$IfK$L$l t0644 laJ`K```w$$1$Ifa$gdVo rK$tkd$IfK$L$l t 6 0644 lae4``a`b`w$$1$Ifa$gdVo rK$tkdq$IfK$L$l t 6 0644 lae4a`b`c`d`e`w`~``````````````a aaaaaa"a#a%a&a-a̿sgQ*hVhJ5CJaJmH nHo(sH tHhc\,mH nHsH tHh"[NHmH nHo(sH tHh/mH nHsH tHhUQ(mH nHsH tHh9qmH nHsH tHh"[mH nHsH tHh9q6mH nHsH tHh"[mH nHo(sH tHh1mH nHsH tHh1mH nHo(sH tH h+o(*hVh+5CJaJmH nHo(sH tHb`c`d`e`&a}?:gd_7>kdQ$$Ifl" t644 la$Ifgd1onrFtkd$IfK$L$l t 6 0644 lae4-a.a/a6aDaEaFaVaWaaagayazaaaaaaaaaaaaaaabbbb!bAbWbmbɼsg[hUQ(mH nHsH tHh9qmH nHsH tHhmH nHsH tHhc\,mH nHsH tHhJPJmH nHo(sH tH"hJ ThJ5CJaJmH o(sH hJ ThJCJaJmH o(sH hJmH nHo(sH tHhx(hJmH o(sH *hVhJ5CJaJmH nHo(sH tH'hVhJ5CJaJmH nHsH tH"&aEaFaGaKaOaSaVa{okd$$Ifl@ t 6`,0644 la$$,&`#$/1$Ifa$gdJVaWaaagamasaD////$$,&`#$/1$Ifa$gdJkd4$$Iflr| @1111 t 6`,0644 lasayazaaaa/kd$$Iflr| @1111 t 6`,0644 la$$,&`#$/1$Ifa$gdJaaaaaa/kd$$Iflr| @1111 t 6`,0644 la$$,&`#$/1$Ifa$gdJaaaaaa/kdV$$Iflr| @1111 t 6`,0644 la$$,&`#$/1$Ifa$gdJaaaaaa/kd $$Iflr| @1111 t 6`,0644 la$$,&`#$/1$Ifa$gdJaaaaab$$,&`#$/1$Ifa$gdJbbbbbbD??9. $1$IfgdO1$gd gd_7kd$$Iflr| @1111 t 6`,0644 lambub~bbbbbbbbbbbbbbbbbbbbbcccܸvcRcRcRc!hOCJaJmH nHo(sH tH$h hOCJaJmH nHsH tHhOmH nHo(sH tHhGZmH nHo(sH tHhJ TmH nHo(sH tHhc\,mH nHsH tHhJPJmH nHo(sH tHh mH nHsH tHh_7h9qNHnHtHh_7h9qnHtHh9qmH nHsH tHhUQ(mH nHsH tHh/mH nHsH tHbc[cccccc!dNddde(essssss & F$1$IfgdO $1$IfgdOekdx$$Ifl@ t0644 la & F$1$IfgdO cccc#c'c9c=cDcEcQcRcZc[c\c]ceclcccccccccccccccccccccccddd dز럏ǏǏǂoǏo$h.hOCJaJmH nHsH tHhOmH nHo(sH tHhOCJaJmH nHsH tH$h hOCJaJmH nHsH tH(h hOCJNHaJmH nHsH tH!hOCJaJmH nHo(sH tH$h hOCJaJmH nHsH tH'h hOCJaJmH nHo(sH tH+ d!d"d#d@dAdHdMdNdOdPdzd{dddddddddddddddeeeeee$e'e)e2e3e=e۶ˣl'hVhO5CJaJmH nHsH tH*hVhO5CJaJmH nHo(sH tHhOmH nHo(sH tH$h hOCJaJmH nHsH tH(h.hOCJNHaJmH nHsH tHhOCJaJmH nHsH tH$h.hOCJaJmH nHsH tH!hOCJaJmH nHo(sH tH&(e)eWeXe'ekd$$Ifl@ t0644 la $$1$Ifa$gdOekd$$Ifl@ t0644 la=eAeLeMeVeWeXeYe`ebeceheieyeeeeeeeee$f+f7fKfPf[f\fǷxnf^fVJ^h|4h|46nHtHh(+nHtHh|4nHtHh9qnHtHh"[NHnHtHh nHo(tHh*l3nHtHhrvnHo(tHh"[nHtHhmhOmH nHo(sH tHhOmH nHo(sH tHhx(hOmH nHo(sH tH*hVhO5CJaJmH nHo(sH tH!he(5CJaJmH nHsH tH!h/5CJaJmH nHsH tHXeYefgghillllta$[$1$G$If][a$gd1kkd`$$IfTl@ t0644 laT $$1$Ifa$gdV1$gd gd_71$gd  \fdfeflftf~ffffffff gg0gNHnHtHh2DnHtHh>nHtHh;nHtHhp-h1Z$6NHnHo(tHhp-h1Z$6nHo(tHh^2^nHtHh^ nHtHh1Z$NHnHo(tHh1Z$nHo(tHhcnHtH4lllllllllllllmmmm5m6mݶziYiIi5z'h'nh1CJaJmH nHo(sH tHh'nh1CJaJmH o(sH h1CJaJmH nHsH tH!h1CJaJmH nHo(sH tHh'nh1CJaJmH sH h1CJaJmH sH *h5h15CJaJmH nHo(sH tHh'2{h1mH sH 'hVh15CJaJmH nHsH tH$ho?oMoWoXooooooooooooooooooooooop~vvkv~bhJk:nHo(tHh1Z$NHnHo(tHhT7nHtHh1Z$nHtHh nHtHh1Z$nHo(tHh mH nHsH tHh_7h1Z$nHo(tH"hSh1Z$6mH nHo(sH tHh1Z$mH nHo(sH tHh1Z$mH nHsH tHhBNHmH nHsH tHhBmH nHsH tHhSmH nHsH tH"p!p#pKpMpNpWpapbpqprpvpppppppppppppqq'q(qVqhqqqqqqqqqqqqqqrrr+rɾ㪢ڒwhuSnHo(tHhuSnHtHh] NHnHtHh] nHtHhnHtHhQBnHtHhQBnHo(tHh\NHnHo(tHhGNHnHo(tHhGnHo(tHhT7nHtHh anHo(tHh\nHo(tHh1Z$nHo(tHhh nHtH.+r-r3r6rArBrCrKrLrMrXrfrnrrrvrrrrrrrrrrrrrrrrrrrrԼ̬~qeVh'nhrCJaJmH sH he(CJaJmH sH hrmH nHo(sH tHhr'hVhr5CJaJmH nHsH tH*hVhr5CJaJmH nHo(sH tHh nHtHhe(nHtHhWnHtHhWnHtHhnHtHh{nHtHhNHnHtHhnHtHh] nHtHh anHo(tH!rrrrrryccc$$x&`#$/1$G$Ifa$gd qkd$$Ifl@ t 6`x06w44 la$$x&`#$/1$Ifa$gdVrrrrrrrrrrrrrs sssss#s)s*s+s3s5s9s>s?sAsEsFsGsHsbs˾˞˾ˎ˾ˎ˾ˀˎnd[h1Z$nHo(tHh_7PJnHtH#hVhr5CJOJQJ^JaJhrCJOJQJ^JaJhVhr5CJaJmH sH h'nhrCJaJmH o(sH hrCJaJmH nHsH tHhrmH nHo(sH tHh'nhrCJaJmH sH 'h'nhrCJaJmH nHo(sH tH!hrCJaJmH nHo(sH tH!rrrrrhSSS$$x&`#$/1$Ifa$gd kd<$$IflFx\ @ t 6`x06    w44 larrs sshSSS$$x&`#$/1$Ifa$gd kd$$IflFx\ @ t 6`x06    w44 lasss#s)shSSS$$x&`#$/1$Ifa$gd kd $$IflFx\ @ t 6`x06    w44 la)s*s9s?sFshSSS$$x&`#$/1$Ifa$gd kd$$IflFx\ @ t 6`x06    w44 laFsGsHst5titttumH nHsH tHh1Z$mH nHsH tHh1Z$NHmH sH h_ mH sH hCmH sH hChC6NHmH sH hChC6mH sH h1Z$mH o(sH h1Z$mH sH  h1Z$o(h1Z$nHo(tHhFgh;cXnHo(tHh%7nHtHh%7nHo(tHh%7NHnHo(tH DwRwSwTw[w\wawbwgwiwrwsw~wwwwwwwwwŵңҗseYMA9h1Z$nHtHhHmH nHsH tHh>mH nHsH tHh9mH nHsH tHhxNHmH nHsH tHh/<mH nHsH tHhpmH nHsH tHhqmH nHsH tHhxmH nHsH tH#h`xh96NHmH nHsH tHh`xh_6mH nHsH tHh&+6mH nHsH tHh`xh96mH nHsH tHhpZ6mH nHsH tHh`xh4i6mH nHsH tHwwwwwww x x9x:xXxZx[x\x^xdxexkxtxxxxxx,y-y0y1y6y7yAyByayyyyyyyxfxfx"h +CJNHaJmH nH sH tH h +CJaJmH nH sH tH h +CJaJmH nHsH tH h1Z$o(h1Z$nHo(tHhRiNHnHtHhw*nHtHh`>/h`>/nHo(tHhHNHnHtHhENHnHtHhEnHtHhRinHtHh nHtHh1Z$nHtHhHnHtH&yyzzzRzgzizzzz{{L{M{{{ͼnWnF3$h.6CJaJmH nHo(sH tH!h.CJaJmH nHo(sH tH-hFw?h1Z$6CJH*aJmH nHo(sH tH$h_76CJaJmH nHo(sH tH-hSiXh1Z$6CJH*aJmH nHo(sH tH$h1Z$6CJaJmH nHo(sH tH!h1Z$CJaJmH nHo(sH tH!h_7CJaJmH nHo(sH tHh +CJaJmH nHsH tH!h +6CJaJmH nH sH tH !h +6CJaJmH nHsH tH{{*|+|L|_|a||||||A}B}C}ڷ~i~UB.'hpmhpmCJaJmH nHo(sH tH$hpm6CJaJmH nHo(sH tH'hpmhpm6CJaJmH nHsH tH(hpmhpmCJNHaJmH nHsH tH$hpmhpmCJaJmH nHsH tH$h_76CJaJmH nHo(sH tH$h1Z$6CJH*aJmH nHsH tH!h1Z$6CJaJmH nHsH tH"h1Z$CJNHaJmH nHsH tHh1Z$CJaJmH nHsH tH*h.h6CJaJmH nHo(sH tH|C}}~RՀw=gh"#$%&'()*1$gd1$gdgd&f1$WDr^`gdyH1$WDr^`gd%1$WDr^`gdpmC}}}}}}}}\~~~ !JKQͺͧubKb6b(h +6CJNHaJmH nHo(sH tH-hZ^h +6CJH*aJmH nHo(sH tH$h +6CJaJmH nHo(sH tH!h +CJaJmH nHo(sH tH!h1Z$6CJaJmH nH sH tH h1Z$CJaJmH nHsH tH$h_76CJaJmH nHo(sH tH$h +6CJH*aJmH nHsH tH!h +6CJaJmH nHsH tH"h +CJNHaJmH nHsH tHh +CJaJmH nHsH tHQRmn}ƀǀԀՀɲɜziViCiCi0$h_76CJaJmH nHo(sH tH%h1Z$6CJNHaJmH nHsH tH$h1Z$6CJH*aJmH nHsH tH!h1Z$6CJaJmH nHsH tH"h1Z$CJNHaJmH nHsH tHh1Z$CJaJmH nHsH tH*h.h.6CJaJmH nHo(sH tH-h.h.6CJH*aJmH nHo(sH tH$h.6CJaJmH nHo(sH tH!h.CJaJmH nHo(sH tH$h_7h_7CJaJmH nHsH tHՀ01E\]vwzсҁȳȝvvvavM7M*h0Hh1Z$6CJaJmH nHo(sH tH'h0Hh1Z$6CJaJmH nHsH tH(h0Hh1Z$CJNHaJmH nHsH tH$h0Hh1Z$CJaJmH nHsH tH'h0Hh1Z$CJaJmH nHo(sH tH*hZhZ6CJaJmH nHo(sH tH(hZ6CJNHaJmH nHo(sH tH$hZ6CJaJmH nHo(sH tH%hZCJNHaJmH nHo(sH tH!hZCJaJmH nHo(sH tH67<=?@Mfghlpxɂƹ~zgTgTgTgDh_%m6<mH nHo(sH tH%h 5h_%m6<mH nHo(sH tH%h-h_%m6<mH nHo(sH tHhahch_%mmH sH hVh_%mmH sH h_%mmH sH h,h_%mmH sH h_%mNHmH sH h_%mmH sH hDh_%m0JmH sH hJ Th$mH nHo(sH tH'h0Hh1Z$6CJaJmH nHsH tH*h0Hh1Z$6CJaJmH nHo(sH tHɂނ !"#$%&'(*+,˸}hJ Th$mH nHo(sH tHhah_%mnH tH h_%mnH tH h-h_%mo(h_%mh 5h_%mmH sH %h 5h_%m6<mH nHo(sH tHh_%m6<mH nHo(sH tH%h-h_%m<H*mH nHo(sH tH"h-h_%m<mH nHo(sH tH*+,1$WDr^`gdyH8 00&P P:p. A!"#$%2 00&P P. A!"#$% P $$If!vh5 5 51 #v #v #v1 :V F45 5 51 44 Ff4X$$If!vh5#v:Vl t 6 65e4f$$If!vh5#v:Vl t 6 65/ e4DyK *http://www.microsoft.com/office/intranet/yK Thttp://www.microsoft.com/office/intranet/f$$If!vh5#v:Vl t 6 65/ e4f$$If!vh5#v:Vl t 6 65/ e4B$$If!vh5#v:Vl t65P$$If!vh5#v:Vl t65/ P$$If!vh5#v:Vl t65/ Dd b  c $A? ?3"`?2>sD8A:Scj`!sD8A:S:@Rxcdd`` @c112BYL%bpu @c112BYL%bpusD8A:Scj`!sD8A:S:@Rxcdd`` @c112BYL%bpu5 8BD6F&&\"CX1Yaa "m+Dd ,b  c $A? ?3"`?2R2?)oזoG. j`!&2?)oזoGRxcdd``> @c112BYL%bpudK 6F&&\"CD1,İr!v120eLADd l|*b  c $A? ?3"`?2 )0pgj`!_ )0pb`0-xcdd``6dd``baV d,FYzP1n:B@?b 030sC0&dT20ͤ KXB2sSRs  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~u ; "!#%$&(')+*,.-/0132465798:<=j?>@CABDEFIGHJKLNMOQPRTSUWVXZY[]\^`_abcedfhgiklmnoprqsvwxyz{|}~Root Entry' FPШ @WData WordDocument&nObjectPool)Y PШ _1106481858F0 0 Ole CompObjfObjInfo "',16;@EHKNQVY\_behmrwz{~ FMicrosoft Equation 3.0 DS Equation Equation.39q  S FMicrosoft Equation 3.0 DS Equation Equation.39qEquation Native )_1106481914 F  Ole CompObj fObjInfo Equation Native  6_1106481926F  Ole  D P 1 FMicrosoft Equation 3.0 DS Equation Equation.39q  SCompObj fObjInfo Equation Native )_1104846554F  Ole CompObjfObjInfoEquation Native Q FMicrosoft Equation 3.0 DS Equation Equation.39qV5`$ i=2;id"k;i++ FMicrosoft Equation 3.0 DS Equation Equation.39q_11064819481F  Ole CompObjfObjInfo0 P i FMicrosoft Equation 3.0 DS Equation Equation.39q]*,o P (i"1)Equation Native 6_1107695794F  Ole CompObj fObjInfo!Equation Native F_1106482317$F  Ole   FMicrosoft Equation 3.0 DS Equation Equation.39q$n P 1 FMicrosoft Equation 3.0 DS Equation Equation.39qCompObj#%!fObjInfo&#Equation Native $6_11064821006)F 0 Ole %CompObj(*&fObjInfo+(Equation Native )>"@ė p"P i FMicrosoft Equation 3.0 DS Equation Equation.39q 1 p_1106482231.F0 0 Ole *CompObj-/+fObjInfo0-Equation Native .)_1106482108'@3F0 0 Ole /CompObj240f FMicrosoft Equation 3.0 DS Equation Equation.39q rf p FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfo52Equation Native 3)_11064820248F0 0 Ole 4CompObj795fObjInfo:7Equation Native 86_1106482127=F0 0 0 P i FMicrosoft Equation 3.0 DS Equation Equation.39q rf p FMicrosoft Equation 3.0 DS EqOle 9CompObj<>:fObjInfo?<Equation Native =)_1106482133;,BF0 0 Ole >CompObjAC?fObjInfoDAuation Equation.39q-t+ P i FMicrosoft Equation 3.0 DS Equation Equation.39q]A@ G P=*" j=2Equation Native B6_1107686468GF0 0 Ole CCompObjFHDfObjInfoIFEquation Native G]_1106839285LF0 0 Ole Ii P j FMicrosoft Equation 3.0 DS Equation Equation.39qU*  P (i"1)CompObjKMJfObjInfoNLEquation Native MF_1106839293JTQF0 0 Ole OCompObjPRPfObjInfoSREquation Native S6 FMicrosoft Equation 3.0 DS Equation Equation.39qU  P 1 FMicrosoft Equation 3.0 DS Equation Equation.39q_1106839301VF0 0 Ole TCompObjUWUfObjInfoXWEquation Native Xl_1106839313"[F0 0 Ole ZCompObjZ\[fUPT p (i"1) "P (i"1) FMicrosoft Equation 3.0 DS Equation Equation.39qU0 p 1 "P 1ObjInfo]]Equation Native ^L_1106839325`F0 0 Ole ` FMicrosoft Equation 3.0 DS Equation Equation.39qUR f p i =p (i"1) p 1 FMicrosoft Equation 3.0 DS EqCompObj_aafObjInfobcEquation Native dn_1106839338^meF0 0 Ole fCompObjdfgfObjInfogiEquation Native j6uation Equation.39qU1 p i FMicrosoft Equation 3.0 DS Equation Equation.39qUx(3 p i_1106839360cwjF0 0 Ole kCompObjiklfObjInfolnEquation Native o6_1106839347oF0 0 Ole pCompObjnpqf FMicrosoft Equation 3.0 DS Equation Equation.39qUf P i FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfoqsEquation Native t6_1106839394tF0 0 Ole uCompObjsuvfObjInfovxEquation Native y_1106839414r|yF0 0 Ur  p' i =p (i"1) {\w+n }p 1 FMicrosoft Equation 3.0 DS Equation Equation.39qOle |CompObjxz}fObjInfo{Equation Native :U8gf p' i FMicrosoft Equation 3.0 DS Equation Equation.39qU p' i FMicrosoft Equation 3.0 DS Eq_1106839425~F0 0 Ole CompObj}fObjInfoEquation Native :_1106839434hF0 0 Ole CompObjfuation Equation.39qUh P i FMicrosoft Equation 3.0 DS Equation Equation.39qUl P iObjInfoEquation Native 6_1106839486F0 0 Ole CompObjfObjInfoEquation Native 6_1106482375F0 % Ole CompObjfObjInfoEquation Native 6 FMicrosoft Equation 3.0 DS Equation Equation.39q P i FMicrosoft Equation 3.0 DS Equation Equation.39q_1105000012F% % Ole CompObjfObjInfo!|[ 1d"id"k FMicrosoft Equation 3.0 DS Equation Equation.39qd P 1Equation Native 9_1106482384F% % Ole CompObjfObjInfoEquation Native 6_1106482573F% % Ole CompObjfObjInfoEquation Native 6_1106482598F% %  FMicrosoft Equation 3.0 DS Equation Equation.39q, P i FMicrosoft Equation 3.0 DS Equation Equation.39qOle CompObjfObjInfoEquation Native F*!d  P (i"1) FMicrosoft Equation 3.0 DS Equation Equation.39q l P 1_1106482580F% % Ole CompObjfObjInfoEquation Native 6_1106482841F% % Ole CompObjf FMicrosoft Equation 3.0 DS Equation Equation.39q ( p FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfoEquation Native )_1106482863F% % Ole CompObjfObjInfoEquation Native )_1106839567F% %  ( p FMicrosoft Equation 3.0 DS Equation Equation.39qU*0DW p (i"1)Ole CompObjfObjInfoEquation Native F_1106839575F% % Ole CompObjfObjInfo FMicrosoft Equation 3.0 DS Equation Equation.39qU\ p 1 FMicrosoft Equation 3.0 DS Equation Equation.39qEquation Native 6_1106839585F% % Ole CompObjfObjInfoEquation Native 6_1106839593F% % Ole U p i FMicrosoft Equation 3.0 DS Equation Equation.39qU* p (i"1)CompObjfObjInfoEquation Native F_1106839601F% % Ole CompObjfObjInfoEquation Native 6 FMicrosoft Equation 3.0 DS Equation Equation.39qUxl p 1 FMicrosoft Equation 3.0 DS Equation Equation.39q_1106839610F% % Ole CompObjfObjInfoEquation Native :_1106839619EF% % Ole CompObjfU̚ p' i FMicrosoft Equation 3.0 DS Equation Equation.39qU*L p (i"1)ObjInfoEquation Native F_1106839629F% % Ole CompObjfObjInfoEquation Native 6_1106836676F% %  FMicrosoft Equation 3.0 DS Equation Equation.39qUT@ p 1 FMicrosoft Equation 3.0 DS Equation Equation.39qOle CompObjfObjInfoEquation Native CU'p   b (s) FMicrosoft Equation 3.0 DS Equation Equation.39qR'(b 1h:(G3XkS Dd ,b  c $A? ?3"`?2VQ/{͚1j2j`!*Q/{͚1jRxcdd``> @c112BYL%bpu 1 @c112BYL%bpudK 6F&&\"CD1,İr!v120eLDd b   c $A ? ?3"`? 2@ `cLdiZ$j`! `cLdiZ:@Rxcdd`` @c112BYL%bpu 1 1 @c112BYL%bpudK 6F&&\"CD1,İr!v120eLhDd b  c $A ? ?3"`?2@ `cLdiZ!j`! `cLdiZ:@Rxcdd`` @c112BYL%bpu 1 1 @c112BYL%bpudK 6F&&\"CD1,İr!v120eLhDd ,b  c $A ? ?3"`?2RUhHwx59 . 'j`!&UhHwx59 Rxcdd``> @c112BYL%bpudK 6F&&\"CD1,İr!v120eLhnDd `2b  c $A ? ?3"`?2)LSD-)j`!)LSD-"X hZxڝRJQ=3 Rj!X(JE&zTVHB`AP+>6[ Ý33`%Ifsc#P{ 421/-F:/(&*2rww+%?q(VeQnKΚ`Uk[^ֻ4HH޼$ȻOR0OU{k}/5ۦR= 2y(C_J$!Ux:wʏ Y6]Ųq<{?YI '&GooK95zP;zF3%hz9ƹ!sZ7ү @h$$If!vh5#v:Vl t 6`_65/ h$$If!vh5#v:Vl t 6`_65/ @Dd THrb  c $A ? ?3"`?2(K{fV,j`!^(K{b  XJ,xcdd``6dd``baV d,FYzP1n:&&f! KA?H1 j ㆪaM,,He`(I? 01d++&1l?z+8U`T T&0NgԬ&e@|J}g#ׁln@%?H\F1f.ܤr";;q>Ǻ\عи``⸍I)$5$ŠQ ?> 1 @c112BYL%bpu>D:d~lyv9StXTw<_3<=zӾ Exҷi: 923*?G#_"^M$˄Wݡ 1B䱄/I9 @E0?1l.Fb3x^J.h*$prv0o(121)WĸA!lDd ,b  c $A? ?3"`?2RT,iH{%.7j`!&T,iH{%xcdd``> @c112BYL%bpudK 6F&&\"CD1<byx9M!KDd b  c $A? ?3"`?2>sD8A:S9j`!sD8A:S:@Rxcdd`` @c112BYL%bpu @c112BYL%bpudK 6F&&\"CD1,İr!v120efLsDd ,b  c $A? ?3"`?2R\/}n1|Fے.=j`!&\/}n1|FےRxcdd``> @c112BYL%bpudK 6F&&\"CD1<byx9\KDd Tb  c $A? ?3"`?2Lj8waʢo?j`!Lj8waʢo` XJxڥJ1glړ*RQO^^=(h{` n²O} _=ȂwO衂n=T /?LRg`0DOC d-H8)4ٮt|Fΐ )<`Z蓆RXEڟLАe)Mo]5KlWt}!*r;)e[ݯG_N qtxXW|ԣ+E;EYJ2)l+"Q<$(އ`=_9.+.ekV:}ލsszv^LylI*6:}Gn9sxX~]XH?tMZ0 Exu˳s7{;Dd ,,b  c $A? ?3"`?2YĿi>&v5jBj`!-Ŀi>&vxcdd`` @c112BYL%bpu 1sD8A:SyDj`!sD8A:S:@Rxcdd`` @c112BYL%bpu 1 @c112BYL%bpudK 6F&&\"CD1,İr!v120eLhDd ,b " c $A? ?3"`?!2R\/}n1|Fے.Jj`!&\/}n1|FےRxcdd``> @c112BYL%bpudK 6F&&\"CD1<byx9\Kh$$If!vh5#v:Vl t 6`<65/ h$$If!vh5#v:Vl t 6`<65/ Dd ,b  c $A? ?3"`?"2R2?)oזoG.`M`!&2?)oזoGRxcdd``> @c112BYL%bpudK 6F&&\"CD1,İr!v120eL.Dd b # c $A? ?3"`?#2x!j>"ve+ ThO`!L!j>"ve+ xcdd``fed``baV d,FYzP1n: ,B@?b XBqC0&dT20t 01d++&1l?z+8U4AHq903tfWw&eVܤr>B30X n\J.hqCl,4=hcdbR ,.Iq1(2tv<^'f~lb Dd ,b $ c $A? ?3"`?$2V8hI`P2Q`!*8hI`PRxcdd``> @c112BYL%bpu @c112BYL%bpudK 6F&&\"CD1,İr!v120eLh@Dd Tb & c $A? ?3"`?&2R~+Gf܅+zfU`!^R~+Gf܅+zb  XJ,xcdd``6dd``baV d,FYzP1n:&&f! KA?H1 j ㆪaM,,He`(I? 01d++&1l?z+8U`T T&0`Ԭ&e@|J}g#ׁln@%?H\F1f.ܤrn;qǺ\عи``⸍I)$5$ŠQ 3> 1 @c112BYL%bpu 1 1֭8΅ƅ;mLLJ% 1.E.b Ya~`TLtn Dd ,b + c $A? ?3"`?+2USOT^-'-'%w]1"``!)SOT^-'-'%w]xcdd``> @c112BYL%bpu{ +!3$  *L=0icdbR ,.Iq1(2tAB ;/b#3X.L(Dd ,b , c $A? ?3"`?,2R2v rs .-b`!&2v rs xcdd``> @c112BYL%bpudK 6F&&\"CD1,İr!v120efLs@Dd Tb - c $A? ?3"`?-2| _t$f5d`!^| _t$b@  XJ,xcdd``6dd``baV d,FYzP1n:&&f! KA?H1 130\ UXRYP7&meabM-VK-WMc~x V8pNHqM`<ҩY ׀Mʄ|J}g#ׁ1dBA%?H\F1f.ܤrFĹwu+1sq!q#RpeqIj.HA ~|byx9t Dd ,b . c $A? ?3"`?.2UR8ho?%Ti'=, 1uf`!)R8ho?%Ti'=, Ԓxcdd``> @c112BYL%bpu{ +!3$  *L=0icdbR ,.Iq1(2tA!, cKMDd ,,b / c $A? ?3"`?/2Yv%K|\ @c112BYL%bpu{ +!3$  *L=0icdbR ,.Iq1(2tA!, cKMa$$If!vh5#v:Vl t 6`x65e4o$$If!vh5#v:Vl t 6`x65/ e4o$$If!vh5#v:Vl t 6`x65/ e4o$$If!vh5#v:Vl t 6`x65/ e47Dd D,b   c $A ? ?3"`?2HgNxR[gZ]p'`!UHgNxR[gZ #xcdd``fed``baV d,FYzP1n: ,56~) @ k+'030L UXRY7Ӂ`'0L ZZǰ@pT9 P.P16r`dcԬ}@b8dJ} ɳL;lBR%0 Ma(w暇sqe[T 5.p2M%E#RpeqIj.HA D,İrt?0 /a:Dd lhDb   c $A ? ?3"`?2(fkh`r'`!X(fkhR@|&xcdd``dd``baV d,FYzP1n:&B@?b 030< UXRY7S?&,e`abM-VK-WMcs>Q. N300Usi#FmfVJ'3d>#dO'Ȅb 3j.#`R dnpenR~CPT˓X1-䂆>8 {v0o(N+KRsAb\ ]@Ӊrt?0e>5i5Dd 0,b   c $A ? ?3"`?2SGӬ4'uL%[u'`!SSGӬ4'uL% k!xcdd``fed``baV d,FYzP1n: B@?b  ㆪaM,,He`?&meabM-VK-WMc~x V8pNHq90`Ԭb8 lF%>?6!?@W&0;E?rpp2-䂆8dC``⢍I)$5$ŠV "f|byx9wOaDd lb   c $A ? ?3"`?2/2T*rTf>;g)q^p{_55GY1j z-Hc1W0Vw K+HQ^Zq^Fλ~idf5ˮFi^l6Ժ}%_$Jd^چf13 rg6s)>w,IN$xBzE &Os~br3%u,w8q G: #\֪'`0}tAo I;Dd lb # c $A? ?3"`?"28LGpT2Azj`! LGpT2A@n$xڝ?K#AD.x'QH8鮎\#lg`O v~," A9u%y ~o޿7 `3C_9K1-1!IlP]16%%?G;JQ+G`~'*ژ8kJ̘{w԰:g>@RJEYg1s3.ey3ek?ƿg0n50o#<-B =:apWS bDd lb $ c $A? ?3"`?#2.t~Qmcj =et  }j`!t~Qmcj =et L"xڝ+QϽ>ǓIHʰ BY*KMbeSyyN3 O[Lƭ:z:|E%:ņo0{f% [df8>A#OHDd b % c $A? ?3"`?$2? H !8{* j`! H !8{* :Rxcdd`` @c112BYL%bpu 1h:(P3@Dd ,b & c $A? ?3"`?%2W p3~Gfj`!^W p3~Gb,xcdd``6dd``baV d,FYzP1n:X,56~) @ k+/`a` 47$# !loN`A $37X/\!(?71aXr @@ڈˁՠyL +ss<\caaa.#77 df%lb1 k`:+ܢJ.hlpc и``⸍I)$5$ŠQ ?> 13^l1 ? s*1pCB6F&&\_1106905193! Fp p Ole  CompObj  !fObjInfo # FMicrosoft Equation 3.0 DS Equation Equation.39q'T  b (s) FMicrosoft Equation 3.0 DS EqEquation Native $C_1106905203Fp p Ole &CompObj'fuation Equation.39q'<  i (s) FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfo)Equation Native *C_1106493655Fp p Ole ,CompObj-fObjInfo/Equation Native 06_1106651177Fp p H ca FMicrosoft Equation 3.0 DS Equation Equation.39qZu precision = )|F||D|Ole 1CompObj2fObjInfo4Equation Native 5v_1106651368Fp p Ole 7CompObj8fObjInfo : FMicrosoft Equation 3.0 DS Equation Equation.39qNMd recall = )|F||E| FMicrosoft Equation 3.0 DS Equation Equation.39qEquation Native ;j_1107088125 #Fp p Ole =CompObj"$>fObjInfo%@Equation Native A1Table< SummaryInformation((E|(d` f-measure = 2precisionrecallprecision + recallOh+'0 4 DP l x  "CD1,İrt?2e@u:Dd lh*Xb ( c $A? ?3"`?'2i`($'YH<`aj`!Xi`($'YH`4ͽL s+ss'^7E\8a/)#RpeqIj.ŠQ 3> 1Q. N300Usi#FmfVJ'3d>#dO'Ȅb 3j.#`R dnpenR~CPT˓X1-䂆>8 {v0o(N+KRsAb\ ]@Ӊrt?0e>5i9Dd DhAb * c $A? ?3"`?)2ZIz0@(_Պj`!WZIz0@(R@|%xcdd``dd``baV d,FYzP1n:&B@?b  ㆪaM,,He`H @201d++&1l?z+8U`T T2jVרD7$${CUO Ps>`4ͽL s+ss^7E\8a/)#RpeqIj.ŠQ 3> 1 1h:(.&`*Z`Dd Tb  c $A? ?3"`?21+lчp'`!~1+lчpB XJLxcdd``Vd 2 ĜL0##0KQ* WätSRcgbR qТc@øjx|K2B* R8 :@u!f0E1DXLDFz&br<1@pT9LF]F\ Μ 50>+ 'YA|78" |?3C\PUOL ?W&0;x.`䷓`lSpP1@``ⰍI)$5$ŠV "|bt:Q ?]Lk[8Dd b  c $A? ?3"`?2=RLO*RE+.)z'`!=RLO*RE+.)ެ 8\ dxmRJ@6IDD1zD*(zD[TV,4miZBnăЇC'OBfo&%$N0&u#JBFQ$:UHgR'9VR0k$0GiL8tۗa nIm ThQ}շT`#8 ϭ~?XDwz@^$`]0gV Qb sxE&~QwdnL*?,0t߈kJ$ci1Uy(k8`cA4Wi i܌֎'=K-1g_^ovj݋͂`O\JfB̏,xS7ohmR Dd ]]0  # A" Aٛ^ SJ,V '@= Aٛ^ SJ,VLe."DQ+p x]}pUG}y>Ǖ cHxW™VpʊWKKK/>YV7hL &.?+8>eop[_%L_L1}71}S!Cca2:o&~˩|fk8uO޾gWsAJoAictd-~nBZKqZPeOSY)̏*mkoaeՏ`>k σ#Z|+; _@泸n3a#GY|\2>jкnͬAOe T;xNB[<'EtD\y̏A5!| 3{iHÏ@R.ArWH(e 2ِD2%\T?0YǨpp1Ɔ~\vV# rQct?.ۉs-]EݞÍ1x437jq~&\ݏˇ 3ܐrQ~\A )ñ/i,}: c{\>\ri"./>Q4pI/C.Q=..`.5\SsQ"ܸQ'O ŏ8n+srQπw>\+?. ʖ<&\Գ7?.gwAzn$[ppw12z^U;}zF.YW|މ#E\5r},\ ~\v(~6\&rIךs s͹wZF;zz\x=pwt;9H_ELDV q_Ⴤe @ zʏy* Epw,V_ V8q+SNTM~o!q/8. _Ϛ")}go32z}YS{5~ pf/Ği 嚺4~5pbAjB/ yIw5&y3uuu72E0ٷ ]ݦ[koٚgm3%' !C3/wo?8z??f_~·7E{t}S|70: OOFn0;ww #&ƿ͟1_OƃMQ〿)?Iww'!OcﱠyG.R&81d"?Q[c*F_6G^a*빞q.n_8İ.˖=GmkM{0 <θqR}anT(srTxx3&RgDqs<8lk_=%sSm L ׋}5r8G>Hĥ$̿?ij7CplFlܠ #9#` =yAy{6)[bd7=ZwK6/wsvnB@%\;|-E_K ঽ'zH@޳\qLt'@n .{m%+@PY஁|2<[ LL W&l7ĺb 1J Sx``@Lp!d ۈ 2k(\q?Fzmz pzſ)n .6_Mc+ቀ{е[cDZ} իU BxYY{ֽY?;tGqS|δ*;ǸxOq]$ )T7RucEX}堨Ů)_1oɸ9eI 0ljtTgaA qQ?x^*O *;=M7v&QW/1t)NdYZ.^&B5}[@JA%-p&md!u^>#YW|A L#.±o\}p6gP{'>k(bdL1kL1v~=ӯ`L_L_L_d fƢ,MT?ԾlqJg.>?ǘ ӟa"B}u髙~9/g' >m]lو١׽}aˣ/u-](8$CRIa~>$W-sc6QwgPLkjlڂflftB(gX}܀1UTڱ< GA rEHΥG~\Я.$"} F|nqI q"EW?.O#q.9"6~\/r=ǹ Ҁ\J\rE˽w\`^Aoۘ1.r e-up̳4\Ϗ˷@(mGDȱ~ƖQ"^\*(=#w"9g ;A΃<Q.rÏ˫ԶYQ.rƏ ir3P8 9SQ.ȑ [*.\|C"̥! E+\rE qYEs: "Egqikwй(riI.+)F|` h})Ҝ{ {A G|/c{?M㳘1oF'E~=? O3G 2='#Oɛx=pT5a_ ǜ]"?^я69423OClo[s[An&~pf+6`xm4[s΂x9ʝ8W_ +W2Е9(BYrmU7{Y¬hޫg40MBˣ9 7@fћoGQ?$3W4l?L_mC/jğoL?o ?_ƀBmQ_6¿M?' ~?N4U;-(ϟz9~Hpjؤ_˟>C/h OFh|/z0jTbB{,v ǟ6^05!NxI3?}0rcs1}sr#^,wNx[ ~)˽a8@y$O(dn5QAp#26=kX K_ߨQ|ӓ>-^m4v7ܲxSKkGX;zҩv&a-{.rI r߃s2xӭ1%-r-6᭧6_bdKC؟ i!Oh=3;lϡwh,s]kmlqyg ={>>n .TŘDmXfT׫tu7k~ o몣e]jq1C,{%H)S$IfK$L$q!vh5#v:Vl t65/ S$IfK$L$q!vh5#v:Vl t65/ u$$If!vh5#v:Vl t065 Dd [[0  # A"%  ?3LPV'ن% ]'@= ?3LPV'ن%tG0.E , x\ilUE}ҖXq!".EJ *)D ZO){nD9=3=g̙T !Fb5X/Bc8'myB$*&ү S$d>@S|L"; h"허 x( xI²qcv*}~,!yDK755(^ԝkdz֕tQ?Gn}%?= B)Hw2b<[ޝ" Gzw,T2t!3{TeoXKS _lRe}|@AXsuEx?λ~(Y.ˮoZC!БGQW'Sϗ֧uan<.| Osj<-^w.s{{V^;ڙ1_ ]|[|Ǹ$Be8ў&~\nʂ|yC׫O T Y{2_1΀p*;F=3z_20~93TƟc 0~ fd g:CIT?RJg/{ 2nE5He?0'bU_'lЭ\X̅u_eO˃3y$ 5>$CRxI=>$CRxI=>$)Vuһ1a2b,/f_2a~1b,/f_2a~1bE^Nj~Iae@E4d^Ӗ1b<0^ !<- MZzеZ1q@d[b_gXehYK?4]KFixfߖi.ͧ-shk_JGT_dm׺Vny؄l´/(IBrY{?av귎I ӆQE1?]~+PYDuQOud.ʷ鲌C..Ǻ = Ĵt|eK+~j ߋtqFSuQc.iPM$y.8 tE͙tDCq~EtEQ5W%݇@`DuQl?]ޡ #YQ]Ooўâ7~Dg(NQEͼyٌnuқɎGQ?O\T~R.t%*xSkg?>5t#]ҋȎGQ?*P} ] ;EWI5IR@UOw :eS^~Q%AdƇ,aB)wPʆQHr^UhzX 70|\ru%lfQګt[\(YS(_Yܾ..Yq4#[o+qkB@~ƃ=s[ 8k SXܛzC@8=Fl@7>ӈP; )i 3y8O)N.6. >waT[Lq=7W9gwzVfn{YZ`-@ZD?_ߗ r`Ԩ3ut#"g,Ξ^#,ng邜q^*6 s(rt\Y5ML:H]FftlmOc^F\͍r\][eq;K\Ηݝ|i m\sIaϼz'G{&&ĵfGl &'g@&|.;*KX[>pR@[lqR\{ Ɠ]OG>q:b_p69Cξy~ .^k6lsz ۼ}< c>ڜbk7ScRVO3UeT\W3è= J8ssGt4#/6.2Vݨ1/AX$IfK$L$q!vh5#v:Vl t65/ X$IfK$L$q!vh5#v:Vl t65/ u$$If!vh5#v:Vl t065 Dd ZZ0  # A" fY@:ɨJG[{f 1'@=^ fY@:ɨJG[{`1SE.,, x\}[Y@h8eERId$"ՂJB< A/" \pd-I J+1B RE%135Yh*9~z~ۿozBT@!S#IwyR] DnًD@8\{U; C  !g`Rei.w3\GAZ~@SK,qpT5)->5#/\ zb+(\HuCm0TvUHq`,tCKu _/wpoW co].خw Af.QcZ8wtƿ'bb*ޭMTLxDkz8pHvSSa({a!q0lkws8Pz̫w*N$NVv-}dL@Qo-U|v3рt%@h>P'>p8^nׯZ_Ufv>u6c5Bj,gJYgٯRE|ڳѮ VKo,&<^p|pgB5 8G~c:cLW2JG1(};t_f\|78L6m,oCU.]WSLb3L;ˋ2/cL?W3jc:oa2;{>>saݯoy8 2r tf]3LtHCB"?$D!! |H׾2a2b,/f_2a~1b,/f_2a~1bE޾+i~},\%H7@:Eprk!|$(M K^+NAkrCL>$2_4LCE~1>+fWiyё|PahH/s+5*O`jB}i|krt} Ɋ\M>]緐2~H#5ۙH& w%uM?2\=M~M~ hMnbO䭚Ma69X7c^c:0#l{yX*q2">z ~2j8Nn\F.3M\A%r!o} }a#W(q;!i)ϚאXPH.Kb.41qQwE6r bȅh xF.4'6qy;wmByzȅ+ ^<>GBSKM&.A8OR.g⢮\yE_yﳑ =kBKL L\^gşF.Bryd1Ϙh-zWF|?RփF'o#?Zc`⧾ZۂZ7Ey-:yњ ?No,tNF~= 爫{} B-t65-&~C<람>3@zȏ qu䱠m~5H!5YaN|XoC~!ARyњ0W3sGnq3ۅǨsm #A7oaO^NGkoy9yD+?ur J6<1N8Q 'o?uaQ]ueO,sj킻dHW6]Ħ DKOF?xCo@~CH16$mc+~eHqsNHqğRğ_B~ zBaS]Lt";0J%I~1q97-O`P{Ƨ6g7]Qc7a沟=֯ͼڀsTKW^T5?;^f7+A !2X$IfK$L$q!vh5#v:Vl t65/ X$IfK$L$q!vh5#v:Vl t65/ u$$If!vh5#v:Vl t065 Dd \\0  # A"W xoy5qc Z}o)3 j'@=+ xoy5qc Z}o)J/W E+x\klTE>sJ[,VWQA "(mJX"VqGZ%)/WH4>㇘|XcT%Ѭ!sL;=}{;3g̜9wf*Xtӗ `k> `+(80`e,υ eXvts 4 &+|*TuEL&9pc7§ ;.n̍/Cd n8UHs!\rqymitqXLS(8w0<z# GSl/W}a"]{fuetп&^t\ӑU8.Hni6-L'>D%GvynW]>ө.C':T a~Բo0Aku[* .g[ey3c>x-@yew HNIe{"~\^ˢ|r#=uF!!Hn6Ep֍{Wkkk}YWG2uqjq'h3q:!N!#5' ق_'u?JG &L Yqtp ?)_(h. ՗_kV𓂟B_WMn"Cca16a~82^~Q3Da^~~H!~H!6_~1#bVŌY3/f_~1#bVŌY3/f_~1#E=SuTY@: ,4VK >>/_x-Lm- 1eHS |!#rd'_}߆t~ ~K\f+]rM;e\;;AsAKI.M]EI41[u^k'X.g},8 oI.EtY:܃4Huc]/]j|׌xRqz.V`vUA|tWMHu ]v^ϑn+R].H،"%hV3c|4f1[t.ױ?wN-;㓑7 +WүI?_3tSX3Ib@2X{7tY掠$9&~q롞5K4/ttֺx 20=!,?[[BO_Yׇ??i__a_~-ɐd+-3C_?/O ??,S,w0|[ؽ$K?%{Qp-OTмFXioO2ƫi˟f_,#{ӃQ?˟Q9i|? -"{&H["{ӧu SV‚5$OHT#?2{/N{1a,)Oi<݉~6Xe{S]\o,xR{MgVΣ*ܳz)a)~%W[UJѼ9Y~u-jӈθ۾qx˹ԙc~OtGn#qpHH:b䟩nu?4r^†xt4Pj/b#E^=UU^D`mgY<hFt;!Ɯ9§-rϸ&Xt<f;T1WZ=צ8赞Af?eYVdxW s1k(g6qᴝwڛ =*75emUζ[Un 46jyꣅ'x&0Mϴ }EwL;v82M6IsmxbSY/$[$,8] -T(}@{OĹP>r/pqH;\,pqP$;59Ո&5ᨶy3Rm6glsש{\Cѳ[1CaƘs7[DjbTpֿ巍dY:Ձu!z~ύs/Oߤnj.>s07An$IfK$L$q!vh5#v:Vl t 6 65/ e4n$IfK$L$q!vh5#v:Vl t 6 65/ e4n$IfK$L$q!vh5#v:Vl t 6 65/ e4u$$If!vh5#v:Vl t065j$$If!vh5#v:Vl t 6`,6,5/  $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / $$If!vh551515151#v#v1:Vl t 6`,6,551/  / / B$$If!vh5#v:Vl t65P$$If!vh5#v:Vl t65/ P$$If!vh5#v:Vl t65/ Y$$If!vh5#v:Vl t65/  Ti$$If!vh5k5k5k5k#vk:Vl t6,5Ti$$If!vh5k5k5k5k#vk:Vl t6,5Ti$$If!vh5k5k5k5k#vk:Vl t6,5Ti$$If!vh5k5k5k5k#vk:Vl t6,5Ti$$If!vh5k5k5k5k#vk:Vl t6,5Th$$If!vh5#v:Vl t 6`x6w5/  p$$If!vh555#v:Vl t 6`x6w,5p$$If!vh555#v:Vl t 6`x6w,5p$$If!vh555#v:Vl t 6`x6w,5p$$If!vh555#v:Vl t 6`x6w,5p$$If!vh555#v:Vl t 6`x6w,5P$$If!vh5#v:Vl t65/ P$$If!vh5#v:Vl t65/ 8+z0L1p+0z0L1p+z0N1+0z0N1+z0P1+0z0P1+z0R1,0z0R1,z0T1P,0z0T1P,@0J0@0J@0J@ 0J@ 0J@ 0J@ 0J@0Jz0\1l0-@0J0z0\10-@0J @0J@0Uz00z00 Oz00 Oz00 tz00 tz00 z00 z00 z00 z0 0 z0 0 z00dz00d{00/:0z00d4{00/:0z00dl{00/:0@0X(#{00/:0{00/:0{00/:0{00/:0{00/:0:01l43z00@T0:012z00@T0UH#>U_x 7LWs23BfT g 7Fw0sQl"%&!+!n!o!!!!! "N"O"b"c"d",%9%'/'((&)U))) *F***+U++++,,,:,;,e,f,g,,,,-\----7.<.?.d.e....//0>23455o6+89a;;;;<<W<X<h<<<==??5???@@V@W@~@@@AAB%CCCCDEuFFG{HIIfJuKL.LGMOOPPP1PCPDPNPRPVPWPaPePiPjPtPxP|P}PPPPPPPPP2RSST.TUVVVVVVVVVVWWWWWW+W,W-W.W0W1WEWFWGWHWJWKW`WaWbWcWdWeW&XEXFXGXKXOXSXVXWXaXgXmXsXyXzXXXXXXXXXXXXXXXXXXXXXXXYYYYYYZ[ZZZZZZ![N[[[\(\)\W\X\Y\]^^_`ccccdd6d7dBdEdJdPdQd[d_dddkdldudyd~dddddddddef(hiiiiiiiiiiij jjjj#j)j*j9j?jFjGjHjk5kikkkl?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijomnpqrstuvwx!T@T Normal$7$8$a$ CJOJQJ_HaJmH sH tH b@b  Heading 1!$$ xx1$@&a$5CJmH sH tH b@b  Heading 2&$$xx@&]^a$5CJmH sH DA@D Default Paragraph FontRi@R  Table Normal4 l4a (k@(No Listf @f Footer,$ 0n8!x]a$<CJaJmH sH ^@^ Header 0n#x6<CJ]aJmH sH ROR Author#$$ (#1$a$mH sH \>@"\ Title$$$ 0dx1$a$5CJmH sH tH PO2P  Abstract2$1$]^ mH sH tH j@Cj  Table Grid7:V0j@Rj  Normal Indent$7$8$`a$ CJOJQJaJmH nHsH tHH@bH , Footnote Text $G$a$CJaJ@&@q@ ,Footnote ReferenceH*`O` x( Bibliography$ '(1$a$CJaJmH nHsH tH6U@6 2g Hyperlink >*B*phH@H W@ Balloon TextCJOJQJ^JaJO! =*Style Heading 2 + \V Justified Left: 0 cm$^a$CJ\^JaJFY@F B Document Map-D M \O\ Text Indent 7$8$` OJPJQJaJmH sH tHB'@B $Comment ReferenceCJaJ:@: $ Comment Text$a$@j@@ $Comment Subject 5\#Ca,z>hk,z:>U_x 7LWs23BfT g 7Fw0sQl"%&!+!n!o!!!!! "N"O"b"c"d",%9%'/'((&)U))) *F***+U+++,,:,;,e,f,g,,,,-\----7.<.?.d.e....//0>23455o6+89a;;;;<<W<X<h<<<==??5???@@V@W@~@@@AAB%CCCDEuFFG{HIIfJuKL.LGMOPPP1PCPDPNPRPVPWPaPePiPjPtPxP|P}PPPPPPPPP2RSST.TVVVVVVVVWWWWWW+W,W-W.W0W1WEWFWGWHWJWKW`WaWdWeWEXFXVXWXyXzXXXXXXXYYYYZ[ZZZZ(\)\W\X\Y\^cc6d7dPdQdkdldddddiiiiiijj)j*jFjGjqlrlll-z00@0@0@0@00@0@0@0@00@0@0@0@000 00000 00Y0Y0Y0Y0Y0Y 00@00000000 00`0`0`0`0`0`0` 0` 0`0` 0` 0`0` 0` @0` 0` 0`0`0`0`0`0`0` 0` 0`0` 0` @0` 0` 0`0` 00%0%0'0'0'@ 0'@ 0'@ 0'@ 0'@ 0'@ 0'@ 0'@ 0'@ 0'P 0 '@ 0 z&@ 0 z&@ 0 z&@0z& @0z& @0z& 0z& 0z&0z& 0z& 0z& 0z& 0z& 0z& 0z& 0z& 0z& 0z& 0 z&0z& 0z& @0z& 0z& 0z&0z&0z&0z&0z&@0z&0z&0z&0z&0z&0z&0z&@0z&@ 0z&@0z&@ 0z&@0z&@ 0z& @0z&0@0z&@ 0z&@0z&@ 0z&@0z&@ 0z& @0z&0@0z&@ 0z&@0z&@ 0z&@0z&@ 0z& @0z& @0z& @0z&00z&0z&0z&@0z&0z&0z&0$0B0B0B0$0D0D0D 00G0G0G0G0J0J@0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J @0J@0J@0J@0J@0J@0J @0J @0J @0J :01# @0J @0J @0J @0J @0J :01D$ @0J @0J @0J @0J @0J :0 1$ @0J @0J @0J @0J @0J :01% @0J @0J @0J @0J @0J :01<& @0J z0H1+z0J18+0z0J1hyy"z#z$z%z&z'z(z)z*z-z0000000 00000 00000 0 00Y000000000000 0 0 0 0 0 00000606666066 06 066 06 066 06 06 06 060666666 06 066 06 06 06 060600#0#0%%0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0 % 0 % 0 % 0 % 0 % 0%0% 0% 0% 0% 0%0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0 %0% 0% 0% 0% 0%0%0%0%0%0%0%%0%0%0%0%0% 0%% 0%% 0% 0% 0% 0%% 0%% 0% 0% 0% 0%0% 0%0% 0% 0% 0% 0% 0%0%0%0%0%0%0%0#0B0B0B0#0'E0'E0'E00UH0UH0UH0UH0J0J0J0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J0J0J0J0J0J0J0J0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J0J0J0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0J 0 0 0 00000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000000000 0 00 0 0000000@0@0P0HZ@0@0@0@0@0@0@0@0@0@000OZ >U_x 7LWs23BfT g 7Fw0sQl"%&!+!n!o!!!!! "N"O"b"c"d",%9%'/'((&)U))) *F***+U++++,,:,;,e,f,g,,,,-\----7.<.?.d.e....//0>23455o6+89a;;;;<<W<X<h<<<==??5???@@V@W@~@@@AAB%CCCCDEuFFG{HIIfJuKL.LGMOOPPP1PCPDPNPRPVPWPaPePiPjPtPxP|P}PPPPPPPPP2RSST.TUVVVVVVVVVVWWWWWW+W,W-W.W0W1WEWFWGWHWJWKW`WaWcWdWeW&XEXFXGXKXOXSXVXWXaXgXmXsXyXzXXXXXXXXXXXXXXXXXXXXXXXYYYYYYZ[ZZZZZZ![N[[[\(\)\W\X\Y\]^^_`ccccdd6d7dBdEdJdPdQd[d_dddkdldudyd~dddddddddef(hiiiiiiiiiiij jjjj#j)j*j9j?jFjGjHjk5kikkkl!} s!""$%&k'g(h)[*.+0,n-./?11;223{33Q444555586{667`778"99;; <<=?Z@YAB-CCDeEHIJKpK LuLIMNNZOO7QQmR;SGUVWX}YZ[\]^_a`-ambc d=e\fgijl6mmnp+rrbsiuuDwwy{C}QՀɂ,BFGHIJKLMNOQRSTUVWXYZ[\]_abefghjmnopqrstuvwxyz|~ F$%'%'*N+c+4e567aDXEHWILYCYVYiY|YYY___``.`E`J```b`&aVasaaaaabb(eXelEmdmmmrrrs)sFs`?L`@`A`B|`C`D`E\"aF"aG"aH(aI\(aJ(aK.aL/aM\/aN1aO 2aPL2aQdZRZSZTYUYV4YWXDYZ Y[LY\Y]_^<__|_`aUr{{  );Lss|'lJm I6#&(01A22557; <<<h=J>J>CTFoFRdRZHZ[[]WeOfmznwtIvvvRwxxxhyty-z      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHJIKLM^v'..=V{)nLo K8#&(01C22 557; <<<j=S>S> CVFqFRfRZJZ[[]YeQfm|nytKvvvTwxxxoy{y-z   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHJIKLM =J*urn:schemas-microsoft-com:office:smarttags PlaceType=K*urn:schemas-microsoft-com:office:smarttags PlaceNameBE*urn:schemas-microsoft-com:office:smarttagscountry-regionVN*urn:schemas-microsoft-com:office:smarttags PersonNamehttp://www.microsoft.com;I*urn:schemas-microsoft-com:office:smarttagsaddress:H*urn:schemas-microsoft-com:office:smarttagsStreet9M*urn:schemas-microsoft-com:office:smarttagsplace8F*urn:schemas-microsoft-com:office:smarttagsCity9*urn:schemas-microsoft-com:office:smarttagsState NMMKJIHMFENMMKJIHMFENNMKJMFENNNNNNNNNNNNNNNNNNNNNNNNMFNNNNNNNNNNNNNNNNMFNMFNN s{GNK R X _ 2 9 C O 8>FJlsx29>EW^cksy""""))&***+ +8+<+, ,/#/w/{/42;2^BjB__ddggmmEpKpPpXp`pkpqq$q+qqqqrs sssLsYsssFtMtUt]tuuuuUv^vnvvvvvww!w(wwwwwwwxy"yGyMyhy*z-zB))))C*E*s/x/;;%CC{H IQQZ ZO[V[dU LO"d"((&)*+U++,,;,,?.E.e.a;;X<h<?5?W@@IIL.LPPSSVVVWW.W1WHWKWaW&XVXWXyXzXXXXXXXYYY[ZZZZ^^a4acc7ddiGjll7pBppqqquuBx]x^xxxxxhy*z-zxhy*z-z Yunbo Cao Hang Li (MSR)Hang Li9 >@L&"z&r'l PU(>k"Dp|#Zv^.Yr5o0p3F@7C(0 :BB?a"f[ Ek\f?5_^~ܰy.q`Z\caFBkma:w,bnV.cP@zh)jXn>KqS|9 ~zpa[W \^`\hH. n\n^n`\hH) \^`\hH. \^`\hH. Z \Z ^Z `\hH)  \ ^ `\hH.  \ ^ `\hH. F\F^F`\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\5hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. \^`\hH) d\d^d`\hH. \^`\hH. \^`\hH) P \P ^P `\hH.  \ ^ `\hH.  \ ^ `\hH) <\<^<`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH. \^`\hH. H\H^H`\hH) \^`\hH. \^`\hH. 4\4^4`\hH)  \ ^ `\hH. | \| ^| `\hH.  \ ^ `\hH) \^`\hH.L&"f[Ek\Yr5V.cpa,bzh'.q`p|#kma \ca3F@7>k"jXn0 :B?9 ~5_^9 Kqv^.                                                               Ɩ                                                                                                                                               ~@AW (3cmoyw,ZS^8x(*IV{"1't~ DCMa;>R@]s n k? w   ^ [/ g n v  E$ \  _ % - G K 0S ?f 5)L rtSx&J $7E6'} +*:CEVy$s}7\:*+7Or48>dOr/  (Vm pQ"A |4 +8FN1@S gS5eKxr\Q] ] rZ!x!y""D "9"3E"aI"nL"g# #dQ#0h#$R$1Z$c$g$H%%%@6%0B%~a%r &[&&O&C'|'&')'UQ(e(o(y(H)) )*L*w*&+(+T>+o+v+~+,Y:,c\,-!L-.D.f.(u.i|.`>/H/>i/qv/+C0~g0c31S1{122`2"2L'2yL2Y2sc2u3*l3#|3>4A4{5g5+o5%777uD7T7e7Zf78L8N8z|89/9N9Nw9+|9|9 :Jk:;];s;t;/<Wg<Q/=s=(>/>y>|>h?V?X?@-@:@J@N@W@5AJA,xAHB_IBQBCC(C,C@CSC]CD-DWDA EJEFGGGq|GHH0HEHBcH?IoUIkI`}I`IZJud)e 2egf&f.f2fOgFgjgBhRiioIoaoY2p*7pCpQpqq,q9q`rLs[stQtcqtv\w]wGxK9x6OxQxR0yKKyKyQRyjy#z$6z'2{G{K~{|B|YP|3Y|n|}N/}:}y}P~S=Learning and Exploiting Non-Consecutive String Patterns for tear Yunbo Caondunbunb Normal.dotdHang Li3ngMicrosoft Word 10.0@Ik@?@ _ @ f՜.+,D՜.+,|8 hp  MicrDocumentSummaryInformation8M|CompObj[josoft Corporatione=x =Learning and Exploiting Non-Consecutive String Patterns for TitleH _PID_HLINKS_AdHocReviewCycleID_EmailSubject _AuthorEmail_AuthorEmailDisplayName_PreviousAdHocReviewCycleIDAC*http://www.microsoft.com/office/intranet/sSome changes have been madei-yucao@microsoft.com mYunbo Cao (Intl Staffing)e×  FMicrosoft Word Document MSWordDocWord.Document.89qu~%#Z asm{ ?c.u_^vXkW^*Q 2)3Fw}>qR`voD5a-ll0 b=oE_O16U*B4D$P;?GW`!b=5TS!UvP{U&]TZ^}om2DHRabOd} 72;$YC,8_i4{cv{:}Qt*D3]dsiE$y&y 6JQSh/pCki=.HxW%0)/D~w7Js 2DN%h-:66a`xrLKUC?tA^# sk$= `ufa'nR!",9nap',h7g1x" ($,xN>jEGn9YZ  %7N o\ :plz%CJqx ;$K 4;` sCyy '78tS4EJV[g>zjL /9FFg GN,|$_.< Cpm(_7DqzG p-T)b!hprv05CFJ?t/.Z7 Nh&4i9Om?${/H`x8uHP&$'Gxx J Hx&]!y5QXrWuw7T=^J$f~L{gu %0[8i(cCdi).NpFNf6`1 :-hCq..33'+D J@l%*.@5<qPXcgWk%*c` hv/9B{|~VS=Hgmon7Vo8h5UT.c4Dg~:>OAy|Bp_Qgnuc1m46@Y\yH] HeYJJ!2MRY/$.JGg {4@HUL%&!!!N"O"b"c"(:,;,e,f,g,d.e...a;W<X<??V@W@~@@OPPP1PCPDPNPRPVPWPaPePiPjPtPxP|P}PPPPPPPPPVVVVVVVVVWWWWWW+W,W-W.W0W1WEWFWGWHWJWKW`WaWbWcWdWeW&XEXFXGXKXOXSXVXWXaXgXmXsXyXzXXXXXXXXXXXXXXXXXXXXXXXYYYZZ(\)\W\X\ccccdd6d7dBdEdJdPdQd[d_dddkdldudyd~ddddddddiiiiiiiiiiij jjjj#j)j*j9j?jFjGjkqlrlllhy"z(z*z-z"6@@{(,z@@@ @@Unknown Yunbo CaoGz Times New Roman5Symbol3& z Arial3Times;SimSun[SO5& zaTahomaG5  hMS Mincho-3 fg qetFtF%rFf=f=!-!),.:;?]}    & 6"0000 0 0 00000 =@\]^([{  0 0 00000;[2dxxs@) 3QH)?<Learning and Exploiting Non-Consecutive String Patterns for Yunbo CaoHang Lil