paper_docx_templater 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -2,6 +2,6 @@ source "http://rubygems.org"
2
2
  gemspec
3
3
 
4
4
  # Forked to make zipruby play nicely with rubyzip if your project already uses it.
5
- gem "zipruby-compat", :require => 'zipruby', :git => "git@github.com:jawspeak/zipruby-compatibility-with-rubyzip-fork.git", :tag => "v0.3.7"
6
- gem 'mini_magick'
5
+ gem "zipruby-compat", :require => 'zipruby', :git => "https://github.com/TimLang/zipruby-compatibility-with-rubyzip-fork", :tag => "v0.3.7"
6
+ gem 'mini_magick', '1.3.2'
7
7
  gem 'debugger'
@@ -3,9 +3,8 @@
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "paper_docx_templater"
5
5
  s.version = File.read("lib/VERSION").strip
6
-
7
6
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.rubygems_version = "0.0.2"
7
+ s.rubygems_version = "1.3.7"
9
8
 
10
9
  s.authors = ["Tim Lang"]
11
10
 
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -59,12 +59,12 @@ module DocxTemplater
59
59
  end
60
60
 
61
61
  def convert_img_format_to_jpeg(base64_str, img)
62
- image = MiniMagick::Image.read(Base64.decode64(base64_str))
62
+ image = MiniMagick::Image.from_blob(Base64.decode64(base64_str))
63
63
 
64
64
  img.width = image['width']
65
65
  img.height = image['height']
66
66
 
67
- image.format 'jpeg'
67
+ #image.format 'jpeg'
68
68
  image.to_blob
69
69
  end
70
70
 
@@ -33,7 +33,7 @@ module DocxTemplater
33
33
  document = Nokogiri::XML(document)
34
34
 
35
35
  relationships = document.search('Relationships').first
36
- max_index = relationships.search('Relationship').map{|r| r['Id'].gsub!(/rId(\d+)/, '\1')}.max
36
+ max_index = relationships.search('Relationship').map{|r| r['Id'].gsub(/rId(\d+)/, '\1').to_i}.max
37
37
 
38
38
  images.each_with_index do |(k, img), i|
39
39
  node = Nokogiri::XML::Node.new('Relationship', document)
@@ -54,13 +54,13 @@ module DocxTemplater
54
54
  end
55
55
 
56
56
  def generate_each_paragraph document, key, value
57
- document.gsub("$EACH:#{key.to_s.upcase}$", excute_newline(value).join)
57
+ document.gsub("$EACH:#{key.to_s.upcase}$", excute_newline(value).join)
58
58
  end
59
59
 
60
60
 
61
61
  def excute_newline value
62
- if value =~ /\\n/
63
- value.split(/\\n/).inject([]) do |result, str|
62
+ if value =~ /\n/
63
+ value.split(/\n/).inject([]) do |result, str|
64
64
  result << PARAGRAPH_ROW.gsub(/\$text\$/, (excute_nested_image_with_text(str)).join)
65
65
  end
66
66
  else
@@ -74,10 +74,15 @@ module DocxTemplater
74
74
  result << TEXT_ROW.gsub('$text$', safe(str))
75
75
  else
76
76
  img = @cached_images[str.gsub(/\${(\w+)}/, '\1').to_sym]
77
- result << DRAWING_ROW.gsub(/\$embed_id\$/, img.embed_id)
78
- .gsub(/\$image_width\$/, get_word_image_dimension(img.width))
79
- .gsub(/\$image_height\$/, get_word_image_dimension(img.height))
80
- .gsub(/\$image_name\$/, 'tim') if img
77
+ if img
78
+ #result << TABLE_ROW
79
+ result << DRAWING_ROW.gsub(/\$embed_id\$/, img.embed_id)
80
+ .gsub(/\$image_width\$/, get_word_image_dimension(img.width))
81
+ .gsub(/\$image_height\$/, get_word_image_dimension(img.height))
82
+ .gsub(/\$image_name\$/, 'tim')
83
+ else
84
+ result << TEXT_ROW.gsub('$text$', '')
85
+ end
81
86
  end
82
87
  end
83
88
  end
@@ -128,18 +133,20 @@ module DocxTemplater
128
133
  #DocxTemplater::log(" each_key: #{each_key}")
129
134
  if each_key =~ /items_(.+)/i
130
135
  cache_key = each_key.to_sym
131
- @items_cache[cache_key] = innards
136
+ @items_cache[cache_key] = TR_WRAPPER_ROW.gsub(/\$text\$/, innards)
132
137
  each_data[LOOP_PLACE_HOLDER].reverse.each_with_index do |e, i|
133
138
  innards = [] if i == 0
134
139
  obj_key = (each_key =~ /items_(.+)/i) ? each_key.gsub(/items_(.+)/i, $1).downcase : ''
135
- #innards << BLANK_ROW
140
+ innards << BLANK_ROW
136
141
  if e[:choice]
142
+ #indentation for choices
143
+ tpl = @items_cache[cache_key].sub('<w:pPr>', " <w:pPr>\n <w:ind w:leftChars=\"100\" w:left=\"180\"/>")
137
144
  if e[:choice].class == Array
138
145
  e[:choice].reverse.each do |c|
139
- innards << generate_each_paragraph(@items_cache[cache_key].gsub(/(<w:t>.+<\/w:t>)/, "#{SPACE_TEXT}#{$1}"), each_key, safe(c))
146
+ innards << generate_each_paragraph(tpl, each_key, safe(c))
140
147
  end
141
148
  else
142
- innards << generate_each_paragraph(@items_cache[cache_key].gsub(/(<w:t>.+<\/w:t>)/, "#{SPACE_TEXT}#{$1}"), each_key, safe(e[:choice]))
149
+ innards << generate_each_paragraph(tpl, each_key, safe(e[:choice]))
143
150
  end
144
151
  end
145
152
  innards << generate_each_paragraph(@items_cache[cache_key], each_key, safe(e[obj_key.to_sym]))
@@ -170,6 +177,113 @@ module DocxTemplater
170
177
 
171
178
  BLANK_ROW = "<w:tr w:rsidR=\"00D779AB\" w:rsidTr=\"00B812D2\">\n <w:tc>\n <w:tcPr>\n <w:tcW w:w=\"8522\" w:type=\"dxa\"/>\n </w:tcPr>\n <w:p w:rsidR=\"00D779AB\" w:rsidRDefault=\"00D779AB\" w:rsidP=\"00C44DF6\">\n <w:pPr>\n <w:rPr>\n <w:rFonts w:hint=\"eastAsia\"/>\n </w:rPr>\n </w:pPr>\n <w:r>\n <w:rPr>\n <w:rFonts w:hint=\"eastAsia\"/>\n </w:rPr>\n <w:t></w:t>\n </w:r>\n </w:p>\n </w:tc>\n </w:tr>"
172
179
 
180
+ TR_WRAPPER_ROW = "\n <w:tr w:rsidR=\"004D5284\" w:rsidTr=\"004D5284\">\n $text$ </w:tr>\n"
181
+
182
+ TABLE_ROW = '<w:tr w:rsidR="00F754C9" w:rsidTr="00F754C9">
183
+ <w:tblPrEx>
184
+ <w:tblBorders>
185
+ <w:top w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
186
+ <w:left w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
187
+ <w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
188
+ <w:right w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
189
+ <w:insideH w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
190
+ <w:insideV w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
191
+ </w:tblBorders>
192
+ </w:tblPrEx>
193
+ <w:tc>
194
+ <w:tcPr>
195
+ <w:tcW w:w="3491" w:type="dxa"/>
196
+ </w:tcPr>
197
+ <w:p w:rsidR="00F754C9" w:rsidRDefault="00F754C9">
198
+ <w:pPr>
199
+ <w:rPr>
200
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/>
201
+ <w:szCs w:val="18"/>
202
+ </w:rPr>
203
+ </w:pPr>
204
+ <w:r>
205
+ <w:rPr>
206
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/>
207
+ <w:szCs w:val="18"/>
208
+ </w:rPr>
209
+ <w:t>A1</w:t>
210
+ </w:r>
211
+ </w:p>
212
+ </w:tc>
213
+ <w:tc>
214
+ <w:tcPr>
215
+ <w:tcW w:w="3491" w:type="dxa"/>
216
+ </w:tcPr>
217
+ <w:p w:rsidR="00F754C9" w:rsidRDefault="00F754C9">
218
+ <w:pPr>
219
+ <w:rPr>
220
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/>
221
+ <w:szCs w:val="18"/>
222
+ </w:rPr>
223
+ </w:pPr>
224
+ <w:r>
225
+ <w:rPr>
226
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/>
227
+ <w:szCs w:val="18"/>
228
+ </w:rPr>
229
+ <w:t>A2</w:t>
230
+ </w:r>
231
+ </w:p>
232
+ </w:tc>
233
+ </w:tr>
234
+ <w:tr w:rsidR="00F754C9" w:rsidTr="00F754C9">
235
+ <w:tblPrEx>
236
+ <w:tblBorders>
237
+ <w:top w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
238
+ <w:left w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
239
+ <w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
240
+ <w:right w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
241
+ <w:insideH w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
242
+ <w:insideV w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/>
243
+ </w:tblBorders>
244
+ </w:tblPrEx>
245
+ <w:tc>
246
+ <w:tcPr>
247
+ <w:tcW w:w="3491" w:type="dxa"/>
248
+ </w:tcPr>
249
+ <w:p w:rsidR="00F754C9" w:rsidRDefault="00F754C9">
250
+ <w:pPr>
251
+ <w:rPr>
252
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/>
253
+ <w:szCs w:val="18"/>
254
+ </w:rPr>
255
+ </w:pPr>
256
+ <w:r>
257
+ <w:rPr>
258
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/>
259
+ <w:szCs w:val="18"/>
260
+ </w:rPr>
261
+ <w:t>B1</w:t>
262
+ </w:r>
263
+ </w:p>
264
+ </w:tc>
265
+ <w:tc>
266
+ <w:tcPr>
267
+ <w:tcW w:w="3491" w:type="dxa"/>
268
+ </w:tcPr>
269
+ <w:p w:rsidR="00F754C9" w:rsidRDefault="00F754C9">
270
+ <w:pPr>
271
+ <w:rPr>
272
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/>
273
+ <w:szCs w:val="18"/>
274
+ </w:rPr>
275
+ </w:pPr>
276
+ <w:r>
277
+ <w:rPr>
278
+ <w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/>
279
+ <w:szCs w:val="18"/>
280
+ </w:rPr>
281
+ <w:t>B2</w:t>
282
+ </w:r>
283
+ </w:p>
284
+ </w:tc>
285
+ </w:tr>'
286
+
173
287
  TEXT_ROW = '<w:r>
174
288
  <w:rPr>
175
289
  <w:rFonts w:hint="eastAsia"/>
Binary file
@@ -13,22 +13,52 @@ module DocxTemplater
13
13
  :items => [
14
14
  {
15
15
  :content => '1. 人在恐惧、紧张时,在内脏神经的支配下,肾上腺髓质释放的肾上腺素增多,该激素可用于心脏,使心率加快。下列叙述错误的是${image2}( )',
16
- :choice => [
17
- ' A.该肾上腺素作用的靶器官包括心脏',
18
- ' B.该实例包含神经调节和体液调节',
19
- ' C.该肾上腺素通过神经纤维运输到心脏',
20
- ' D.该实例中反射弧是实现神经调节的结构基础'
21
- ]
16
+ :choice => ["A.sticks to them in their daily life", "B.makes them known to others", "C.understands their true values", "D.sees that others also follow them"]
22
17
  },
23
18
  {
24
19
  :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
25
- :choice => [
26
- ' A.光反应强度升高,暗反应强度降低',
27
- ' B.光反应强度降低,暗反应强度降低',
28
- ' C.反应强度不变,暗反应强度降低',
29
- ' D.反应强度降低,暗反应强度不变'
30
- ]
31
- }
20
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
21
+ },
22
+ {
23
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
24
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
25
+ },
26
+ {
27
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
28
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
29
+ },
30
+ {
31
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
32
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
33
+ },
34
+ {
35
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
36
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
37
+ },
38
+ {
39
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
40
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
41
+ },
42
+ {
43
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
44
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
45
+ },
46
+ {
47
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
48
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
49
+ },
50
+ {
51
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
52
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
53
+ },
54
+ {
55
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
56
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
57
+ },
58
+ {
59
+ :content => '2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )',
60
+ :choice => ["A.She wants to take the most direct way.", "B.She may be late for the football game.", "C.She is worried about missing her flight.", "D.She is currently caught in a traffic jam."]
61
+ }
32
62
  ]
33
63
  },
34
64
  {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paper_docx_templater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -90,21 +90,6 @@ files:
90
90
  - script/ci.sh
91
91
  - spec/example_input/2.docx
92
92
  - spec/example_input/3.docx
93
- - spec/example_input/9/[Content_Types].xml
94
- - spec/example_input/9/docProps/app.xml
95
- - spec/example_input/9/docProps/core.xml
96
- - spec/example_input/9/word/_rels/document.xml.rels
97
- - spec/example_input/9/word/document.xml
98
- - spec/example_input/9/word/endnotes.xml
99
- - spec/example_input/9/word/fontTable.xml
100
- - spec/example_input/9/word/footnotes.xml
101
- - spec/example_input/9/word/media/image1.jpeg
102
- - spec/example_input/9/word/media/image2.jpeg
103
- - spec/example_input/9/word/media/image3.jpeg
104
- - spec/example_input/9/word/settings.xml
105
- - spec/example_input/9/word/styles.xml
106
- - spec/example_input/9/word/theme/theme1.xml
107
- - spec/example_input/9/word/webSettings.xml
108
93
  - spec/example_input/ExampleTemplate.docx
109
94
  - spec/example_input/tmp/IntegrationTestOutput.docx
110
95
  - spec/example_input/word/document.xml
@@ -149,21 +134,6 @@ summary: Generates new Word .docx files based on a template file.
149
134
  test_files:
150
135
  - spec/example_input/2.docx
151
136
  - spec/example_input/3.docx
152
- - spec/example_input/9/[Content_Types].xml
153
- - spec/example_input/9/docProps/app.xml
154
- - spec/example_input/9/docProps/core.xml
155
- - spec/example_input/9/word/_rels/document.xml.rels
156
- - spec/example_input/9/word/document.xml
157
- - spec/example_input/9/word/endnotes.xml
158
- - spec/example_input/9/word/fontTable.xml
159
- - spec/example_input/9/word/footnotes.xml
160
- - spec/example_input/9/word/media/image1.jpeg
161
- - spec/example_input/9/word/media/image2.jpeg
162
- - spec/example_input/9/word/media/image3.jpeg
163
- - spec/example_input/9/word/settings.xml
164
- - spec/example_input/9/word/styles.xml
165
- - spec/example_input/9/word/theme/theme1.xml
166
- - spec/example_input/9/word/webSettings.xml
167
137
  - spec/example_input/ExampleTemplate.docx
168
138
  - spec/example_input/tmp/IntegrationTestOutput.docx
169
139
  - spec/example_input/word/document.xml
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"/><Default Extension="jpeg" ContentType="image/jpeg"/><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/><Override PartName="/word/endnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/></Types>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Template>Normal.dotm</Template><TotalTime>74</TotalTime><Pages>1</Pages><Words>158</Words><Characters>901</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>7</Lines><Paragraphs>2</Paragraphs><ScaleCrop>false</ScaleCrop><Company></Company><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>1057</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>12.0000</AppVersion></Properties>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:title></dc:title><dc:subject></dc:subject><dc:creator>Tim</dc:creator><cp:keywords></cp:keywords><dc:description></dc:description><cp:lastModifiedBy>Tim</cp:lastModifiedBy><cp:revision>27</cp:revision><dcterms:created xsi:type="dcterms:W3CDTF">2013-10-17T07:08:00Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2013-10-21T02:57:00Z</dcterms:modified></cp:coreProperties>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image3.jpeg"/><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image2.jpeg"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image1.jpeg"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/><Relationship Id="rId10" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/><Relationship Id="rId9" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/></Relationships>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:document xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"><w:body><w:tbl><w:tblPr><w:tblStyle w:val="a5"/><w:tblW w:w="0" w:type="auto"/><w:tblBorders><w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblLook w:val="04A0"/></w:tblPr><w:tblGrid><w:gridCol w:w="8522"/></w:tblGrid><w:tr w:rsidR="00EA45A0" w:rsidTr="00620E14"><w:tc><w:tcPr><w:tcW w:w="8522" w:type="dxa"/></w:tcPr><w:p w:rsidR="00EA45A0" w:rsidRPr="00EA45A0" w:rsidRDefault="00EA45A0" w:rsidP="00A4758E"><w:pPr><w:jc w:val="center"/><w:rPr><w:rStyle w:val="a6"/><w:rFonts w:ascii="楷体" w:eastAsia="楷体" w:hAnsi="楷体"/><w:sz w:val="44"/><w:szCs w:val="44"/></w:rPr></w:pPr><w:r><w:rPr><w:rStyle w:val="a6"/><w:rFonts w:ascii="楷体" w:eastAsia="楷体" w:hAnsi="楷体" w:hint="eastAsia"/><w:sz w:val="44"/><w:szCs w:val="44"/></w:rPr><w:t>高考模拟卷一</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w:rsidR="00EA45A0" w:rsidRPr="001B5042" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:b/><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr></w:pPr><w:r w:rsidRPr="001B5042"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:b/><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr><w:t>一、选择题(本题包括21小题,每小题给出的四个选项中,有的只有一个选项正确,有的有多个选项正确,全部选对的得6分,选对但不全的得3分,有选错的得0分)</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t>1. 人在恐惧、紧张时,在内脏神经的支配下,肾上腺髓质释放的肾上腺素增多,该激素可用于心脏,使心率加快。下列叙述错误的是</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/><w:noProof/></w:rPr><w:drawing><wp:inline distT="0" distB="0" distL="0" distR="0"><wp:extent cx="385714" cy="356786"/><wp:effectExtent l="19050" t="0" r="7990" b="0"/><wp:docPr id="2" name="图片" descr="tim"/><wp:cNvGraphicFramePr><a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/></wp:cNvGraphicFramePr><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="tim"/><pic:cNvPicPr/></pic:nvPicPr><pic:blipFill><a:blip r:embed="rId6" cstate="print"/><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="385714" cy="356786"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom></pic:spPr></pic:pic></a:graphicData></a:graphic></wp:inline></w:drawing></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>(</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>)</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> A.该肾上腺素作用的靶器官包括心脏</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> B.该实例包含神经调节和体液调节</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> C.该肾上腺素通过神经纤维运输到心脏</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t>2. 番茄幼苗在缺镁的培养液中培养一段时间后,与对照组相比,其叶片光合作用强度下降,原因是( )</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> A.光反应强度升高,暗反应强度降低</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> B.光反应强度降低,暗反应强度降低</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> C.反应强度不变,暗反应强度降低</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="001B5042" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:b/><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr></w:pPr><w:r w:rsidRPr="001B5042"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:b/><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr><w:t>二、问答题</w:t></w:r></w:p><w:p w:rsidR="0019258A" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t>1. 图中左边有一对平行金属板,两板相距为d,电压为V;两板之间有匀强磁场,磁感应强度大小为B0,方向平行于板面并垂直于纸面朝里。图中右边有一边长为a的正三角形区域EFG(EF边与金属板垂直),在此区域内及其边界上也有匀强磁场,磁感应强度大小为B,方向垂直于纸面朝里。假设一系列电荷量为q的正离子沿平行于金属板面,垂直于磁场的方向射入金属板之间,沿同一方向射出金属板之间的区域,并经EF边中点H射入磁场区域。不计重力</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/><w:noProof/></w:rPr><w:drawing><wp:inline distT="0" distB="0" distL="0" distR="0"><wp:extent cx="559286" cy="549643"/><wp:effectExtent l="19050" t="0" r="7990" b="0"/><wp:docPr id="1" name="图片" descr="tim"/><wp:cNvGraphicFramePr><a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/></wp:cNvGraphicFramePr><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="tim"/><pic:cNvPicPr/></pic:nvPicPr><pic:blipFill><a:blip r:embed="rId7" cstate="print"/><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="559286" cy="549643"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom></pic:spPr></pic:pic></a:graphicData></a:graphic></wp:inline></w:drawing></w:r></w:p><w:p w:rsidR="0019258A" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>(</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>1</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>)已知这些离子中的离子甲到达磁场边界</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>EG</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>后,从边界</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>EF</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>穿出磁场,求离子甲的质量。</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>(</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>2</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>)已知这些离子中的离子乙从</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>EG</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>边上的</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>I</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>点(图中未画出)穿出磁场,且</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>GI</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>长为</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>,求离</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>子乙的质量。</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>(</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>3</w:t></w:r><w:r><w:rPr><w:rFonts w:hint="eastAsia"/></w:rPr><w:t>)若这些离子中的最轻离子的质量等于离子甲质量的一半,而离子乙的质量是最大的,问磁场边界上什么区域内可能有离子到达。</w:t></w:r></w:p><w:p w:rsidR="00EA45A0" w:rsidRPr="00A825F9" w:rsidRDefault="00214805"><w:pPr><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia"/><w:szCs w:val="21"/></w:rPr></w:pPr><w:r w:rsidRPr="00A825F9"><w:rPr><w:rFonts w:asciiTheme="minorEastAsia" w:hAnsiTheme="minorEastAsia" w:hint="eastAsia"/><w:szCs w:val="21"/></w:rPr><w:t>2.【生物——选修1:生物技术实践】(8分) 为了探究6―BA和IAA对某些菊花品种茎尖外植物再生丛芽的影响,某研究小组在MS培养基中加入6―BA和IAA,配制成四种培养基(见下表),灭菌后分别接种数量相同、生长状态一致、消毒后地的尖外植体,在适宜条件下培养一段时间后,统计再生丛芽外植体的比率(m),以及再生丛芽外植体上的丛芽平均数(n),结果如下表。(2)在该实验中,自变量是 ,因变量是 ,自变量的取值范围是 。(3)从实验结果可知,诱导从芽总数量少的培养基是 号培养基。(4)为了诱导该菊花试管菌生根,培养基中一般不加入 。(填“6―BA”或“IAA”)。</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblStyle w:val="a5"/><w:tblW w:w="0" w:type="auto"/><w:tblBorders><w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblLook w:val="04A0"/></w:tblPr><w:tblGrid><w:gridCol w:w="8522"/></w:tblGrid><w:tr w:rsidR="00EA45A0" w:rsidTr="00620E14"><w:tc><w:tcPr><w:tcW w:w="8522" w:type="dxa"/></w:tcPr><w:p w:rsidR="00EA45A0" w:rsidRDefault="00C7729E"><w:r><w:rPr><w:noProof/></w:rPr><w:drawing><wp:inline distT="0" distB="0" distL="0" distR="0"><wp:extent cx="12700" cy="12700"/><wp:effectExtent l="19050" t="0" r="6350" b="0"/><wp:docPr id="4" name="图片 3" descr="1px copy.jpeg"/><wp:cNvGraphicFramePr><a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/></wp:cNvGraphicFramePr><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="1px copy.jpeg"/><pic:cNvPicPr/></pic:nvPicPr><pic:blipFill><a:blip r:embed="rId8"/><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="12700" cy="12700"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom></pic:spPr></pic:pic></a:graphicData></a:graphic></wp:inline></w:drawing></w:r></w:p></w:tc></w:tr></w:tbl><w:p w:rsidR="004149D5" w:rsidRDefault="004149D5"/><w:sectPr w:rsidR="004149D5" w:rsidSect="004149D5"><w:pgSz w:w="11906" w:h="16838"/><w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/><w:cols w:space="425"/><w:docGrid w:type="lines" w:linePitch="312"/></w:sectPr></w:body></w:document>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:endnotes xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"><w:endnote w:type="separator" w:id="0"><w:p w:rsidR="00993E27" w:rsidRDefault="00993E27" w:rsidP="00EA45A0"><w:r><w:separator/></w:r></w:p></w:endnote><w:endnote w:type="continuationSeparator" w:id="1"><w:p w:rsidR="00993E27" w:rsidRDefault="00993E27" w:rsidP="00EA45A0"><w:r><w:continuationSeparator/></w:r></w:p></w:endnote></w:endnotes>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:fonts xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:font w:name="Calibri"><w:panose1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E00002FF" w:usb1="4000ACFF" w:usb2="00000001" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font><w:font w:name="宋体"><w:altName w:val="SimSun"/><w:panose1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><w:sig w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="楷体"><w:panose1 w:val="02010609060101010101"/><w:charset w:val="86"/><w:family w:val="modern"/><w:pitch w:val="fixed"/><w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/></w:font><w:font w:name="Cambria"><w:panose1 w:val="02040503050406030204"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font></w:fonts>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:footnotes xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"><w:footnote w:type="separator" w:id="0"><w:p w:rsidR="00993E27" w:rsidRDefault="00993E27" w:rsidP="00EA45A0"><w:r><w:separator/></w:r></w:p></w:footnote><w:footnote w:type="continuationSeparator" w:id="1"><w:p w:rsidR="00993E27" w:rsidRDefault="00993E27" w:rsidP="00EA45A0"><w:r><w:continuationSeparator/></w:r></w:p></w:footnote></w:footnotes>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:settings xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"><w:zoom w:percent="180"/><w:bordersDoNotSurroundHeader/><w:bordersDoNotSurroundFooter/><w:defaultTabStop w:val="420"/><w:drawingGridVerticalSpacing w:val="156"/><w:displayHorizontalDrawingGridEvery w:val="0"/><w:displayVerticalDrawingGridEvery w:val="2"/><w:characterSpacingControl w:val="compressPunctuation"/><w:hdrShapeDefaults><o:shapedefaults v:ext="edit" spidmax="4098"/></w:hdrShapeDefaults><w:footnotePr><w:footnote w:id="0"/><w:footnote w:id="1"/></w:footnotePr><w:endnotePr><w:endnote w:id="0"/><w:endnote w:id="1"/></w:endnotePr><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:useFELayout/></w:compat><w:rsids><w:rsidRoot w:val="00EA45A0"/><w:rsid w:val="00092948"/><w:rsid w:val="001864EC"/><w:rsid w:val="0019258A"/><w:rsid w:val="001B5042"/><w:rsid w:val="001D53C6"/><w:rsid w:val="00214805"/><w:rsid w:val="00275D4E"/><w:rsid w:val="0031740F"/><w:rsid w:val="004149D5"/><w:rsid w:val="00620E14"/><w:rsid w:val="00631CDB"/><w:rsid w:val="0070569E"/><w:rsid w:val="00767CBB"/><w:rsid w:val="00865079"/><w:rsid w:val="00993E27"/><w:rsid w:val="00A4758E"/><w:rsid w:val="00A825F9"/><w:rsid w:val="00BC1129"/><w:rsid w:val="00BE3126"/><w:rsid w:val="00C7729E"/><w:rsid w:val="00CA3BB8"/><w:rsid w:val="00CD2202"/><w:rsid w:val="00DE6041"/><w:rsid w:val="00EA45A0"/><w:rsid w:val="00ED1DCF"/></w:rsids><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="off"/><m:dispDef/><m:lMargin m:val="0"/><m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="4098"/><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="2"/></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="."/><w:listSeparator w:val=","/></w:settings>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:styles xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/><w:kern w:val="2"/><w:sz w:val="21"/><w:szCs w:val="22"/><w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/></w:rPr></w:rPrDefault><w:pPrDefault/></w:docDefaults><w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="1" w:defUnhideWhenUsed="1" w:defQFormat="0" w:count="267"><w:lsdException w:name="Normal" w:semiHidden="0" w:uiPriority="0" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="heading 1" w:semiHidden="0" w:uiPriority="9" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="heading 2" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 3" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 4" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 5" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 6" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 7" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 8" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="heading 9" w:uiPriority="9" w:qFormat="1"/><w:lsdException w:name="toc 1" w:uiPriority="39"/><w:lsdException w:name="toc 2" w:uiPriority="39"/><w:lsdException w:name="toc 3" w:uiPriority="39"/><w:lsdException w:name="toc 4" w:uiPriority="39"/><w:lsdException w:name="toc 5" w:uiPriority="39"/><w:lsdException w:name="toc 6" w:uiPriority="39"/><w:lsdException w:name="toc 7" w:uiPriority="39"/><w:lsdException w:name="toc 8" w:uiPriority="39"/><w:lsdException w:name="toc 9" w:uiPriority="39"/><w:lsdException w:name="caption" w:uiPriority="35" w:qFormat="1"/><w:lsdException w:name="Title" w:semiHidden="0" w:uiPriority="10" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Default Paragraph Font" w:uiPriority="1"/><w:lsdException w:name="Subtitle" w:semiHidden="0" w:uiPriority="11" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Strong" w:semiHidden="0" w:uiPriority="22" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Emphasis" w:semiHidden="0" w:uiPriority="20" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Table Grid" w:semiHidden="0" w:uiPriority="59" w:unhideWhenUsed="0"/><w:lsdException w:name="Placeholder Text" w:unhideWhenUsed="0"/><w:lsdException w:name="No Spacing" w:semiHidden="0" w:uiPriority="1" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Light Shading" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 1" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 1" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 1" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 1" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 1" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 1" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Revision" w:unhideWhenUsed="0"/><w:lsdException w:name="List Paragraph" w:semiHidden="0" w:uiPriority="34" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Quote" w:semiHidden="0" w:uiPriority="29" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Intense Quote" w:semiHidden="0" w:uiPriority="30" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Medium List 2 Accent 1" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 1" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 1" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 1" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 1" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 1" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 1" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 1" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 2" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 2" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 2" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 2" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 2" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 2" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2 Accent 2" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 2" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 2" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 2" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 2" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 2" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 2" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 2" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 3" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 3" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 3" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 3" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 3" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 3" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2 Accent 3" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 3" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 3" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 3" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 3" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 3" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 3" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 3" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 4" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 4" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 4" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 4" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 4" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 4" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2 Accent 4" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 4" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 4" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 4" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 4" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 4" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 4" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 4" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 5" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 5" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 5" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 5" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 5" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 5" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2 Accent 5" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 5" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 5" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 5" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 5" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 5" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 5" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 5" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Shading Accent 6" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/><w:lsdException w:name="Light List Accent 6" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/><w:lsdException w:name="Light Grid Accent 6" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 1 Accent 6" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Shading 2 Accent 6" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 1 Accent 6" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium List 2 Accent 6" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 1 Accent 6" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 2 Accent 6" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/><w:lsdException w:name="Medium Grid 3 Accent 6" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/><w:lsdException w:name="Dark List Accent 6" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Shading Accent 6" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful List Accent 6" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/><w:lsdException w:name="Colorful Grid Accent 6" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/><w:lsdException w:name="Subtle Emphasis" w:semiHidden="0" w:uiPriority="19" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Intense Emphasis" w:semiHidden="0" w:uiPriority="21" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Subtle Reference" w:semiHidden="0" w:uiPriority="31" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Intense Reference" w:semiHidden="0" w:uiPriority="32" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Book Title" w:semiHidden="0" w:uiPriority="33" w:unhideWhenUsed="0" w:qFormat="1"/><w:lsdException w:name="Bibliography" w:uiPriority="37"/><w:lsdException w:name="TOC Heading" w:uiPriority="39" w:qFormat="1"/></w:latentStyles><w:style w:type="paragraph" w:default="1" w:styleId="a"><w:name w:val="Normal"/><w:qFormat/><w:rsid w:val="004149D5"/><w:pPr><w:widowControl w:val="0"/><w:jc w:val="both"/></w:pPr></w:style><w:style w:type="character" w:default="1" w:styleId="a0"><w:name w:val="Default Paragraph Font"/><w:uiPriority w:val="1"/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style w:type="table" w:default="1" w:styleId="a1"><w:name w:val="Normal Table"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/><w:qFormat/><w:tblPr><w:tblInd w:w="0" w:type="dxa"/><w:tblCellMar><w:top w:w="0" w:type="dxa"/><w:left w:w="108" w:type="dxa"/><w:bottom w:w="0" w:type="dxa"/><w:right w:w="108" w:type="dxa"/></w:tblCellMar></w:tblPr></w:style><w:style w:type="numbering" w:default="1" w:styleId="a2"><w:name w:val="No List"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style w:type="paragraph" w:styleId="a3"><w:name w:val="header"/><w:basedOn w:val="a"/><w:link w:val="Char"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/><w:rsid w:val="00EA45A0"/><w:pPr><w:pBdr><w:bottom w:val="single" w:sz="6" 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="0"/><w:jc w:val="center"/></w:pPr><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:customStyle="1" w:styleId="Char"><w:name w:val="页眉 Char"/><w:basedOn w:val="a0"/><w:link w:val="a3"/><w:uiPriority w:val="99"/><w:semiHidden/><w:rsid w:val="00EA45A0"/><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style><w:style w:type="paragraph" w:styleId="a4"><w:name w:val="footer"/><w:basedOn w:val="a"/><w:link w:val="Char0"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/><w:rsid w:val="00EA45A0"/><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="0"/><w:jc w:val="left"/></w:pPr><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:customStyle="1" w:styleId="Char0"><w:name w:val="页脚 Char"/><w:basedOn w:val="a0"/><w:link w:val="a4"/><w:uiPriority w:val="99"/><w:semiHidden/><w:rsid w:val="00EA45A0"/><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style><w:style w:type="table" w:styleId="a5"><w:name w:val="Table Grid"/><w:basedOn w:val="a1"/><w:uiPriority w:val="59"/><w:rsid w:val="00EA45A0"/><w:tblPr><w:tblInd w:w="0" w:type="dxa"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/><w:left w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/><w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/><w:right w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/><w:insideH w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/><w:insideV w:val="single" w:sz="4" w:space="0" w:color="000000" w:themeColor="text1"/></w:tblBorders><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="character" w:styleId="a6"><w:name w:val="Strong"/><w:basedOn w:val="a0"/><w:uiPriority w:val="22"/><w:qFormat/><w:rsid w:val="00EA45A0"/><w:rPr><w:b/><w:bCs/></w:rPr></w:style><w:style w:type="paragraph" w:styleId="a7"><w:name w:val="Balloon Text"/><w:basedOn w:val="a"/><w:link w:val="Char1"/><w:uiPriority w:val="99"/><w:semiHidden/><w:unhideWhenUsed/><w:rsid w:val="00DE6041"/><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:customStyle="1" w:styleId="Char1"><w:name w:val="批注框文本 Char"/><w:basedOn w:val="a0"/><w:link w:val="a7"/><w:uiPriority w:val="99"/><w:semiHidden/><w:rsid w:val="00DE6041"/><w:rPr><w:sz w:val="18"/><w:szCs w:val="18"/></w:rPr></w:style></w:styles>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office 主题"><a:themeElements><a:clrScheme name="Office"><a:dk1><a:sysClr val="windowText" lastClr="000000"/></a:dk1><a:lt1><a:sysClr val="window" lastClr="FFFFFF"/></a:lt1><a:dk2><a:srgbClr val="1F497D"/></a:dk2><a:lt2><a:srgbClr val="EEECE1"/></a:lt2><a:accent1><a:srgbClr val="4F81BD"/></a:accent1><a:accent2><a:srgbClr val="C0504D"/></a:accent2><a:accent3><a:srgbClr val="9BBB59"/></a:accent3><a:accent4><a:srgbClr val="8064A2"/></a:accent4><a:accent5><a:srgbClr val="4BACC6"/></a:accent5><a:accent6><a:srgbClr val="F79646"/></a:accent6><a:hlink><a:srgbClr val="0000FF"/></a:hlink><a:folHlink><a:srgbClr val="800080"/></a:folHlink></a:clrScheme><a:fontScheme name="Office"><a:majorFont><a:latin typeface="Cambria"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS ゴシック"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Times New Roman"/><a:font script="Hebr" typeface="Times New Roman"/><a:font script="Thai" typeface="Angsana New"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="MoolBoran"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Times New Roman"/><a:font script="Uigh" typeface="Microsoft Uighur"/></a:majorFont><a:minorFont><a:latin typeface="Calibri"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS 明朝"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Arial"/><a:font script="Hebr" typeface="Arial"/><a:font script="Thai" typeface="Cordia New"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="DaunPenh"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Arial"/><a:font script="Uigh" typeface="Microsoft Uighur"/></a:minorFont></a:fontScheme><a:fmtScheme name="Office"><a:fillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="50000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="35000"><a:schemeClr val="phClr"><a:tint val="37000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="15000"/><a:satMod val="350000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="1"/></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:shade val="51000"/><a:satMod val="130000"/></a:schemeClr></a:gs><a:gs pos="80000"><a:schemeClr val="phClr"><a:shade val="93000"/><a:satMod val="130000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="94000"/><a:satMod val="135000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="0"/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln w="9525" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"><a:shade val="95000"/><a:satMod val="105000"/></a:schemeClr></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="25400" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="38100" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="38000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst><a:scene3d><a:camera prst="orthographicFront"><a:rot lat="0" lon="0" rev="0"/></a:camera><a:lightRig rig="threePt" dir="t"><a:rot lat="0" lon="0" rev="1200000"/></a:lightRig></a:scene3d><a:sp3d><a:bevelT w="63500" h="25400"/></a:sp3d></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="40000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="40000"><a:schemeClr val="phClr"><a:tint val="45000"/><a:shade val="99000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="20000"/><a:satMod val="255000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="-80000" r="50000" b="180000"/></a:path></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="80000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="30000"/><a:satMod val="200000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="50000" r="50000" b="50000"/></a:path></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults/><a:extraClrSchemeLst/></a:theme>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:webSettings xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:optimizeForBrowser/></w:webSettings>