Html2Docx 0.3.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: df9b97b52bbb23c15a6826154e590a30647d785c
4
- data.tar.gz: 84952a883e38bbf9e322a627d0dea1b3c2d5a732
3
+ metadata.gz: 017b26938d108a96e8e1647f79116d5e565c8dd4
4
+ data.tar.gz: 96c3a64c912c94b56c29441ff3a34010b07d5530
5
5
  SHA512:
6
- metadata.gz: c83555282deeb122b5a541780286e036700ea571d8f4903bacd76eba7bdac41a2d403241264acc1762a77217b689c7b1768d77eb117ccb6fc105fa9faa3f2e4b
7
- data.tar.gz: 295ee4348c8cf693929c962b85b316be6dccee8a1b43c482f0dee2460e4ecf2f4302e82bc1cbf8036c94e8d1d3a873b1e4590ce07aee7739d64b1e57255d8659
6
+ metadata.gz: 2819e07fc26bb64efc2e3204924d2634b9480965ae3df8b84e5d90d16b188dbcce555ffcd5f60dfd2060608337b6a45d3c64f25f224c1b22356bef6e051ff1e4
7
+ data.tar.gz: da7db33474188e9f1f58493866d674c9ce932a40a955d284ee30e0e1b9527d9479c6aa2308d79afa6347b71e3a7f56822accb6d6fcfda1852c3efcda554542ec
data/README.md CHANGED
@@ -26,6 +26,7 @@ Html2Docx has very easy usage.
26
26
 
27
27
  * Supporting paragraph. [Wiki - Paragraph Usage](https://github.com/MuhammetDilmac/Html2Docx/wiki/Paragraph-Usage)
28
28
  * Supporting heading. [Wiki - Heading Usage](https://github.com/MuhammetDilmac/Html2Docx/wiki/Heading-Usage)
29
+ * Supporting internal links. [Wiki - Internal Links Usage](https://github.com/MuhammetDilmac/Html2Docx/wiki/Internal-Links-Usage)
29
30
 
30
31
  ## Contributing
31
32
 
@@ -33,4 +34,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/Muhamm
33
34
 
34
35
  ## License
35
36
 
36
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
37
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -159,6 +159,8 @@ module Html2Docx
159
159
 
160
160
  if destination.start_with?('#')
161
161
  hyperlink_tag['w:anchor'] = destination.delete('#')
162
+ else
163
+ hyperlink_tag['r:id'] = @relation.create_external_link_id(destination)
162
164
  end
163
165
 
164
166
  hyperlink_tag
@@ -6,6 +6,7 @@ module Html2Docx
6
6
  @relations = []
7
7
  @last_relation_id = 1
8
8
  @internal_links = {}
9
+ @external_links = {}
9
10
 
10
11
  if options[:main_relation]
11
12
  @relation_file = File.join(options.fetch(:temp), 'word', '_rels', 'document2.xml.rels')
@@ -16,7 +17,11 @@ module Html2Docx
16
17
  @relation = create_relation_file
17
18
  end
18
19
 
19
- @relations = @relation.css('Relationship').first
20
+ @relations = @relation.at_css('Relationships')
21
+
22
+ @relation.at_css('Relationship').children.each do |children|
23
+ children.remove
24
+ end
20
25
  end
21
26
 
22
27
  def create_relation_file
@@ -28,21 +33,6 @@ module Html2Docx
28
33
  document
29
34
  end
30
35
 
31
- def add_relation(type, target)
32
- relation_tag = Nokogiri::XML::Node.new('Relationship', @relation)
33
- relation_tag['Id'] = "rId#{@last_relation_id + 1}"
34
- relation_tag['Type'] = get_type(type)
35
- relation_tag['Target'] = get_target(target)
36
- @relations.add_child(relation_tag)
37
- @last_relation_id = @last_relation_id + 1
38
- end
39
-
40
- def get_type(type)
41
- end
42
-
43
- def get_target(target)
44
- end
45
-
46
36
  def create_internal_link_start_tag(name, document)
47
37
  bookmark_start_tag = Nokogiri::XML::Node.new('w:bookmarkStart', document)
48
38
  bookmark_start_tag['w:id'] = create_internal_link_id(name)
@@ -53,7 +43,8 @@ module Html2Docx
53
43
 
54
44
  def create_internal_link_end_tag(name, document)
55
45
  bookmark_end_tag = Nokogiri::XML::Node.new('w:bookmarkEnd', document)
56
- bookmark_end_tag['w:id'] = find_internal_link_id(name)
46
+ id, value = find_internal_link_id(name)
47
+ bookmark_end_tag['w:id'] = value
57
48
 
58
49
  bookmark_end_tag
59
50
  end
@@ -61,13 +52,33 @@ module Html2Docx
61
52
  def create_internal_link_id(name)
62
53
  id = find_internal_link_id(name)
63
54
  if id
55
+ id
56
+ else
64
57
  id = get_latest_internal_link_id + 1
65
58
  @internal_links[id] = name
66
- else
59
+ end
60
+ end
61
+
62
+ def create_external_link_id(destination)
63
+ id, value = find_external_link_id(destination)
64
+
65
+ if id
67
66
  id
67
+ else
68
+ id = get_latest_external_link_id.delete('rId').to_i + 1
69
+ @external_links["rId#{id}"] = destination
70
+ "rId#{id}"
68
71
  end
69
72
  end
70
73
 
74
+ def find_external_link_id(destination)
75
+ @external_links.find { |key, value| value == destination }
76
+ end
77
+
78
+ def get_latest_external_link_id
79
+ @external_links.keys.max || "rId0"
80
+ end
81
+
71
82
  def get_latest_internal_link_id
72
83
  @internal_links.keys.max || 0
73
84
  end
@@ -77,7 +88,17 @@ module Html2Docx
77
88
  end
78
89
 
79
90
  def render
80
- File.open(@relation_file, 'w') { |f| f.write(Helpers::NokogiriHelper.to_xml(@relation)) }
91
+ @external_links.each do |key, value|
92
+ external_link_relation = Nokogiri::XML::Node.new('Relationship', @relation)
93
+ external_link_relation['Id'] = key
94
+ external_link_relation['Type'] = 'http://. . ./hyperlink'
95
+ external_link_relation['Target'] = value
96
+ external_link_relation['TargetMode'] = 'External'
97
+
98
+ @relation.root.add_child(external_link_relation)
99
+ end
100
+
101
+ File.open(@relation_file, 'w') { |f| f.write(Helpers::NokogiriHelper.to_xml(@relation)) }
81
102
  end
82
103
  end
83
104
  end
@@ -1,3 +1,3 @@
1
1
  module Html2Docx
2
- VERSION = '0.3.1'
2
+ VERSION = '0.4.1'
3
3
  end
Binary file
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="utf-8" standalone="yes"?><w:styles xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15 wp14"><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorHAnsi" w:cstheme="minorBidi" /><w:sz w:val="22" /><w:szCs w:val="22" /><w:lang w:val="tr-TR" w:eastAsia="en-US" w:bidi="ar-SA" /></w:rPr></w:rPrDefault><w:pPrDefault><w:pPr><w:spacing w:after="160" w:line="259" w:lineRule="auto" /></w:pPr></w:pPrDefault></w:docDefaults><w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="371"><w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1" /><w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1" /><w:lsdException w:name="heading 2" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 3" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 4" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 5" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 6" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 7" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 8" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 9" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 1" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 2" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 3" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 4" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 5" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 6" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 7" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 8" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 9" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="caption" w:uiPriority="35" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1" /><w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Default Paragraph Font" w:uiPriority="1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1" /><w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1" /><w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1" /><w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid" w:uiPriority="39" /><w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Placeholder Text" w:semiHidden="1" /><w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1" /><w:lsdException w:name="Light Shading" w:uiPriority="60" /><w:lsdException w:name="Light List" w:uiPriority="61" /><w:lsdException w:name="Light Grid" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2" w:uiPriority="64" /><w:lsdException w:name="Medium List 1" w:uiPriority="65" /><w:lsdException w:name="Medium List 2" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3" w:uiPriority="69" /><w:lsdException w:name="Dark List" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading" w:uiPriority="71" /><w:lsdException w:name="Colorful List" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 1" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65" /><w:lsdException w:name="Revision" w:semiHidden="1" /><w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1" /><w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1" /><w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1" /><w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 1" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 2" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 2" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 3" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 3" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 4" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 4" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 5" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 5" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 6" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 6" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73" /><w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1" /><w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1" /><w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1" /><w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1" /><w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1" /><w:lsdException w:name="Bibliography" w:uiPriority="37" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="TOC Heading" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="Plain Table 1" w:uiPriority="41" /><w:lsdException w:name="Plain Table 2" w:uiPriority="42" /><w:lsdException w:name="Plain Table 3" w:uiPriority="43" /><w:lsdException w:name="Plain Table 4" w:uiPriority="44" /><w:lsdException w:name="Plain Table 5" w:uiPriority="45" /><w:lsdException w:name="Grid Table Light" w:uiPriority="40" /><w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light" w:uiPriority="46" /><w:lsdException w:name="List Table 2" w:uiPriority="47" /><w:lsdException w:name="List Table 3" w:uiPriority="48" /><w:lsdException w:name="List Table 4" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52" /></w:latentStyles><w:style w:type="paragraph" w:styleId="Normal" w:default="1"><w:name w:val="Normal" /><w:qFormat /></w:style><w:style w:type="character" w:styleId="DefaultParagraphFont" w:default="1"><w:name w:val="Default Paragraph Font" /><w:uiPriority w:val="1" /><w:semiHidden /><w:unhideWhenUsed /></w:style><w:style w:type="table" w:styleId="TableNormal" w:default="1"><w:name w:val="Normal Table" /><w:uiPriority w:val="99" /><w:semiHidden /><w:unhideWhenUsed /><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:styleId="NoList" w:default="1"><w:name w:val="No List" /><w:uiPriority w:val="99" /><w:semiHidden /><w:unhideWhenUsed /></w:style><w:style w:type="character" w:styleId="Heading1Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 1 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="32" /><w:szCs w:val="32" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading1Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="240" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="32" /><w:szCs w:val="32" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading2Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 2 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="26" /><w:szCs w:val="26" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading2" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading2Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="26" /><w:szCs w:val="26" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading3Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 3 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /><w:sz w:val="24" /><w:szCs w:val="24" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading3" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading3Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /><w:sz w:val="24" /><w:szCs w:val="24" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading4Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 4 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading4" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading4Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading5Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 5 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading5" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading5Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading6Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 6 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading6" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading6Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading7Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 7 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading7" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading7Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading8Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 8 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading8" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading8Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading9Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 9 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading9" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading9Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style></w:styles>
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?><w:styles xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15 wp14"><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorHAnsi" w:cstheme="minorBidi" /><w:sz w:val="22" /><w:szCs w:val="22" /><w:lang w:val="tr-TR" w:eastAsia="en-US" w:bidi="ar-SA" /></w:rPr></w:rPrDefault><w:pPrDefault><w:pPr><w:spacing w:after="160" w:line="259" w:lineRule="auto" /></w:pPr></w:pPrDefault></w:docDefaults><w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="371"><w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1" /><w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1" /><w:lsdException w:name="heading 2" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 3" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 4" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 5" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 6" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 7" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 8" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="heading 9" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 1" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 2" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 3" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 4" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 5" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 6" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 7" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 8" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toc 9" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="caption" w:uiPriority="35" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1" /><w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Default Paragraph Font" w:uiPriority="1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1" /><w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1" /><w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1" /><w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Table Grid" w:uiPriority="39" /><w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="Placeholder Text" w:semiHidden="1" /><w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1" /><w:lsdException w:name="Light Shading" w:uiPriority="60" /><w:lsdException w:name="Light List" w:uiPriority="61" /><w:lsdException w:name="Light Grid" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2" w:uiPriority="64" /><w:lsdException w:name="Medium List 1" w:uiPriority="65" /><w:lsdException w:name="Medium List 2" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3" w:uiPriority="69" /><w:lsdException w:name="Dark List" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading" w:uiPriority="71" /><w:lsdException w:name="Colorful List" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 1" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65" /><w:lsdException w:name="Revision" w:semiHidden="1" /><w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1" /><w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1" /><w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1" /><w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 1" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 2" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 2" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 3" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 3" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 4" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 4" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 5" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 5" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73" /><w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60" /><w:lsdException w:name="Light List Accent 6" w:uiPriority="61" /><w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62" /><w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63" /><w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64" /><w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65" /><w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66" /><w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67" /><w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68" /><w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69" /><w:lsdException w:name="Dark List Accent 6" w:uiPriority="70" /><w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71" /><w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72" /><w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73" /><w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1" /><w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1" /><w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1" /><w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1" /><w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1" /><w:lsdException w:name="Bibliography" w:uiPriority="37" w:semiHidden="1" w:unhideWhenUsed="1" /><w:lsdException w:name="TOC Heading" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" /><w:lsdException w:name="Plain Table 1" w:uiPriority="41" /><w:lsdException w:name="Plain Table 2" w:uiPriority="42" /><w:lsdException w:name="Plain Table 3" w:uiPriority="43" /><w:lsdException w:name="Plain Table 4" w:uiPriority="44" /><w:lsdException w:name="Plain Table 5" w:uiPriority="45" /><w:lsdException w:name="Grid Table Light" w:uiPriority="40" /><w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52" /><w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46" /><w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47" /><w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48" /><w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49" /><w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50" /><w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51" /><w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light" w:uiPriority="46" /><w:lsdException w:name="List Table 2" w:uiPriority="47" /><w:lsdException w:name="List Table 3" w:uiPriority="48" /><w:lsdException w:name="List Table 4" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52" /><w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46" /><w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47" /><w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48" /><w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49" /><w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50" /><w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51" /><w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52" /></w:latentStyles><w:style w:type="paragraph" w:styleId="Normal" w:default="1"><w:name w:val="Normal" /><w:qFormat /></w:style><w:style w:type="character" w:styleId="DefaultParagraphFont" w:default="1"><w:name w:val="Default Paragraph Font" /><w:uiPriority w:val="1" /><w:semiHidden /><w:unhideWhenUsed /></w:style><w:style w:type="table" w:styleId="TableNormal" w:default="1"><w:name w:val="Normal Table" /><w:uiPriority w:val="99" /><w:semiHidden /><w:unhideWhenUsed /><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:styleId="NoList" w:default="1"><w:name w:val="No List" /><w:uiPriority w:val="99" /><w:semiHidden /><w:unhideWhenUsed /></w:style><w:style w:type="character" w:styleId="Heading1Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 1 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="32" /><w:szCs w:val="32" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading1Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="240" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="32" /><w:szCs w:val="32" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading2Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 2 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="26" /><w:szCs w:val="26" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading2" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading2Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="1" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /><w:sz w:val="26" /><w:szCs w:val="26" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading3Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 3 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /><w:sz w:val="24" /><w:szCs w:val="24" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading3" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading3Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="2" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /><w:sz w:val="24" /><w:szCs w:val="24" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading4Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 4 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading4" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading4Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="3" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading5Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 5 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading5" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading5Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="4" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading6Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 6 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading6" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading6Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="5" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading7Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 7 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading7" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading7Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="6" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="1F4D78" w:themeColor="accent1" w:themeShade="7F" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading8Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 8 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading8" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading8Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="7" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="character" w:styleId="Heading9Char" w:customStyle="1" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Heading 9 Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="paragraph" w:styleId="Heading9" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="heading 9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:next w:val="Normal" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:link w:val="Heading9Char" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="9" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:qFormat xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:keepNext xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:keepLines xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:spacing w:before="40" w:after="0" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:outlineLvl w:val="8" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /></w:pPr><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" /><w:i /><w:iCs /><w:color w:val="272727" w:themeColor="text1" w:themeTint="D8" /><w:sz w:val="21" /><w:szCs w:val="21" /></w:rPr></w:style><w:style w:type="character" w:styleId="Hyperlink" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:name w:val="Hyperlink" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:basedOn w:val="DefaultParagraphFont" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:uiPriority w:val="99" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:unhideWhenUsed xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" /><w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:color w:val="0563C1" w:themeColor="hyperlink" /><w:u w:val="single" /></w:rPr></w:style></w:styles>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Html2Docx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MuhammetDilmac
@@ -122,6 +122,7 @@ files:
122
122
  - lib/Html2Docx/version.rb
123
123
  - samples/EmptyPage.docx
124
124
  - samples/Heading.docx
125
+ - samples/Links.docx
125
126
  - samples/TwoParagraphWithStrongItalicUnderLineAndStroke.docx
126
127
  - skell/[Content_Types].xml
127
128
  - skell/_rels/.rels