prawn 0.11.1.pre → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. data/COPYING +2 -340
  2. data/HACKING +1 -1
  3. data/LICENSE +3 -3
  4. data/Rakefile +17 -6
  5. data/data/encodings/win_ansi.txt +1 -1
  6. data/data/images/prawn.png +0 -0
  7. data/data/pdfs/form.pdf +820 -0
  8. data/data/pdfs/multipage_template.pdf +127 -0
  9. data/examples/bounding_box/bounding_boxes.rb +4 -3
  10. data/examples/bounding_box/indentation.rb +2 -1
  11. data/examples/bounding_box/russian_boxes.rb +3 -2
  12. data/examples/bounding_box/stretched_nesting.rb +2 -1
  13. data/examples/general/background.rb +2 -1
  14. data/examples/general/canvas.rb +2 -1
  15. data/examples/general/context_sensitive_headers.rb +2 -1
  16. data/examples/general/float.rb +2 -1
  17. data/examples/general/margin.rb +2 -1
  18. data/examples/general/measurement_units.rb +2 -1
  19. data/examples/general/metadata-info.rb +2 -1
  20. data/examples/general/multi_page_layout.rb +2 -1
  21. data/examples/general/outlines.rb +2 -1
  22. data/examples/general/page_geometry.rb +2 -1
  23. data/examples/general/page_numbering.rb +27 -2
  24. data/examples/general/page_templates.rb +20 -0
  25. data/examples/general/repeaters.rb +2 -1
  26. data/examples/general/stamp.rb +4 -3
  27. data/examples/general/templates.rb +2 -1
  28. data/examples/graphics/basic_images.rb +2 -1
  29. data/examples/graphics/cmyk.rb +2 -1
  30. data/examples/graphics/curves.rb +4 -3
  31. data/examples/graphics/gradient.rb +23 -0
  32. data/examples/graphics/hexagon.rb +3 -2
  33. data/examples/graphics/image_fit.rb +3 -2
  34. data/examples/graphics/image_flow.rb +2 -1
  35. data/examples/graphics/image_position.rb +3 -2
  36. data/examples/graphics/line.rb +2 -1
  37. data/examples/graphics/png_types.rb +3 -2
  38. data/examples/graphics/polygons.rb +3 -2
  39. data/examples/graphics/remote_images.rb +2 -1
  40. data/examples/graphics/rounded_polygons.rb +2 -1
  41. data/examples/graphics/rounded_rectangle.rb +2 -1
  42. data/examples/graphics/ruport_style_helpers.rb +3 -2
  43. data/examples/graphics/stroke_bounds.rb +2 -1
  44. data/examples/graphics/stroke_cap_and_join.rb +2 -1
  45. data/examples/graphics/stroke_dash.rb +2 -1
  46. data/examples/graphics/transformations.rb +2 -1
  47. data/examples/graphics/transparency.rb +4 -3
  48. data/examples/grid/bounding_boxes.rb +2 -1
  49. data/examples/grid/column_gutter_grid.rb +2 -1
  50. data/examples/grid/multi_boxes.rb +2 -1
  51. data/examples/grid/show_grid.rb +2 -1
  52. data/examples/grid/simple_grid.rb +2 -1
  53. data/examples/m17n/chinese_text_wrapping.rb +2 -1
  54. data/examples/m17n/euro.rb +3 -2
  55. data/examples/m17n/full_win_ansi_character_list.rb +20 -0
  56. data/examples/m17n/sjis.rb +2 -1
  57. data/examples/m17n/utf8.rb +3 -2
  58. data/examples/m17n/win_ansi_charset.rb +2 -1
  59. data/examples/security/hello_foo.rb +2 -1
  60. data/examples/table/bill.rb +2 -1
  61. data/examples/table/borders.rb +25 -0
  62. data/examples/table/cell.rb +3 -2
  63. data/examples/table/checkerboard.rb +2 -1
  64. data/examples/table/header.rb +3 -2
  65. data/examples/table/inline_format_table.rb +2 -1
  66. data/examples/table/multi_page_table.rb +2 -1
  67. data/examples/table/simple_table.rb +2 -1
  68. data/examples/table/subtable.rb +2 -1
  69. data/examples/table/widths.rb +2 -1
  70. data/examples/text/alignment.rb +2 -1
  71. data/examples/text/character_spacing.rb +2 -1
  72. data/examples/text/dfont.rb +2 -1
  73. data/examples/text/family_based_styling.rb +3 -2
  74. data/examples/text/font_calculations.rb +2 -1
  75. data/examples/text/font_size.rb +2 -1
  76. data/examples/text/hyphenation.rb +2 -2
  77. data/examples/text/indent_paragraphs.rb +7 -5
  78. data/examples/text/inline_format.rb +7 -6
  79. data/examples/text/kerning.rb +2 -1
  80. data/examples/text/rendering_mode.rb +21 -0
  81. data/examples/text/rotated.rb +2 -1
  82. data/examples/text/shaped_text_box.rb +2 -1
  83. data/examples/text/simple_text.rb +2 -1
  84. data/examples/text/simple_text_ttf.rb +2 -1
  85. data/examples/text/span.rb +3 -2
  86. data/examples/text/text_box.rb +7 -5
  87. data/examples/text/text_box_returning_excess.rb +4 -3
  88. data/examples/text/text_flow.rb +2 -1
  89. data/lib/prawn.rb +1 -1
  90. data/lib/prawn/core/object_store.rb +42 -14
  91. data/lib/prawn/core/page.rb +22 -8
  92. data/lib/prawn/core/text.rb +141 -13
  93. data/lib/prawn/core/text/formatted/arranger.rb +39 -12
  94. data/lib/prawn/core/text/formatted/line_wrap.rb +205 -60
  95. data/lib/prawn/core/text/formatted/wrap.rb +72 -35
  96. data/lib/prawn/document.rb +174 -70
  97. data/lib/prawn/document/bounding_box.rb +122 -83
  98. data/lib/prawn/document/column_box.rb +113 -0
  99. data/lib/prawn/document/graphics_state.rb +90 -2
  100. data/lib/prawn/document/internals.rb +5 -3
  101. data/lib/prawn/errors.rb +5 -0
  102. data/lib/prawn/font.rb +4 -4
  103. data/lib/prawn/font/afm.rb +11 -0
  104. data/lib/prawn/font/ttf.rb +5 -0
  105. data/lib/prawn/graphics.rb +77 -14
  106. data/lib/prawn/graphics/cap_style.rb +13 -5
  107. data/lib/prawn/graphics/color.rb +54 -35
  108. data/lib/prawn/graphics/dash.rb +27 -16
  109. data/lib/prawn/graphics/gradient.rb +84 -0
  110. data/lib/prawn/graphics/join_style.rb +12 -3
  111. data/lib/prawn/graphics/transparency.rb +4 -4
  112. data/lib/prawn/images.rb +18 -160
  113. data/lib/prawn/images/jpg.rb +39 -0
  114. data/lib/prawn/images/png.rb +130 -0
  115. data/lib/prawn/repeater.rb +6 -13
  116. data/lib/prawn/security.rb +6 -1
  117. data/lib/prawn/stamp.rb +12 -4
  118. data/lib/prawn/table.rb +36 -4
  119. data/lib/prawn/table/cell.rb +224 -63
  120. data/lib/prawn/table/cell/text.rb +20 -10
  121. data/lib/prawn/table/cells.rb +23 -6
  122. data/lib/prawn/text.rb +54 -91
  123. data/lib/prawn/text/box.rb +29 -283
  124. data/lib/prawn/text/formatted/box.rb +349 -24
  125. data/lib/prawn/text/formatted/fragment.rb +63 -2
  126. data/lib/prawn/text/formatted/parser.rb +2 -1
  127. data/prawn.gemspec +21 -5
  128. data/spec/bounding_box_spec.rb +61 -28
  129. data/spec/cell_spec.rb +168 -30
  130. data/spec/document_spec.rb +187 -3
  131. data/spec/extensions/mocha.rb +45 -0
  132. data/spec/font_spec.rb +32 -1
  133. data/spec/formatted_text_arranger_spec.rb +35 -40
  134. data/spec/formatted_text_box_spec.rb +287 -443
  135. data/spec/formatted_text_fragment_spec.rb +87 -0
  136. data/spec/graphics_spec.rb +128 -12
  137. data/spec/grid_spec.rb +1 -1
  138. data/spec/images_spec.rb +11 -3
  139. data/spec/inline_formatted_text_parser_spec.rb +8 -0
  140. data/spec/line_wrap_spec.rb +200 -208
  141. data/spec/object_store_spec.rb +10 -0
  142. data/spec/outline_spec.rb +7 -3
  143. data/spec/repeater_spec.rb +58 -10
  144. data/spec/security_spec.rb +6 -0
  145. data/spec/spec_helper.rb +12 -8
  146. data/spec/stamp_spec.rb +52 -1
  147. data/spec/stroke_styles_spec.rb +30 -0
  148. data/spec/table_spec.rb +93 -3
  149. data/spec/template_spec.rb +132 -6
  150. data/spec/text_at_spec.rb +14 -4
  151. data/spec/text_box_spec.rb +309 -70
  152. data/spec/text_rendering_mode_spec.rb +45 -0
  153. data/spec/text_spec.rb +60 -17
  154. data/spec/text_with_inline_formatting_spec.rb +4 -162
  155. metadata +241 -241
  156. data/lib/prawn/core/text/line_wrap.rb +0 -211
  157. data/lib/prawn/core/text/wrap.rb +0 -82
  158. data/vendor/pdf-inspector/README +0 -18
  159. data/vendor/pdf-inspector/lib/pdf/inspector.rb +0 -26
  160. data/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +0 -18
  161. data/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +0 -131
  162. data/vendor/pdf-inspector/lib/pdf/inspector/page.rb +0 -25
  163. data/vendor/pdf-inspector/lib/pdf/inspector/text.rb +0 -46
  164. data/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +0 -19
  165. data/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
  166. data/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
  167. data/vendor/ttfunk/example.rb +0 -45
  168. data/vendor/ttfunk/lib/ttfunk.rb +0 -102
  169. data/vendor/ttfunk/lib/ttfunk/directory.rb +0 -17
  170. data/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +0 -88
  171. data/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +0 -69
  172. data/vendor/ttfunk/lib/ttfunk/reader.rb +0 -44
  173. data/vendor/ttfunk/lib/ttfunk/resource_file.rb +0 -78
  174. data/vendor/ttfunk/lib/ttfunk/subset.rb +0 -18
  175. data/vendor/ttfunk/lib/ttfunk/subset/base.rb +0 -141
  176. data/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +0 -50
  177. data/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +0 -48
  178. data/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +0 -63
  179. data/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +0 -55
  180. data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +0 -72
  181. data/vendor/ttfunk/lib/ttfunk/table.rb +0 -46
  182. data/vendor/ttfunk/lib/ttfunk/table/cmap.rb +0 -34
  183. data/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +0 -54
  184. data/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +0 -126
  185. data/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +0 -79
  186. data/vendor/ttfunk/lib/ttfunk/table/glyf.rb +0 -64
  187. data/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +0 -81
  188. data/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +0 -37
  189. data/vendor/ttfunk/lib/ttfunk/table/head.rb +0 -44
  190. data/vendor/ttfunk/lib/ttfunk/table/hhea.rb +0 -41
  191. data/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +0 -47
  192. data/vendor/ttfunk/lib/ttfunk/table/kern.rb +0 -79
  193. data/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +0 -62
  194. data/vendor/ttfunk/lib/ttfunk/table/loca.rb +0 -43
  195. data/vendor/ttfunk/lib/ttfunk/table/maxp.rb +0 -40
  196. data/vendor/ttfunk/lib/ttfunk/table/name.rb +0 -125
  197. data/vendor/ttfunk/lib/ttfunk/table/os2.rb +0 -78
  198. data/vendor/ttfunk/lib/ttfunk/table/post.rb +0 -91
  199. data/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +0 -43
  200. data/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +0 -35
  201. data/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +0 -23
  202. data/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +0 -17
  203. data/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +0 -17
  204. data/vendor/ttfunk/lib/ttfunk/table/simple.rb +0 -14
data/COPYING CHANGED
@@ -1,340 +1,2 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6
- Everyone is permitted to copy and distribute verbatim copies
7
- of this license document, but changing it is not allowed.
8
-
9
- Preamble
10
-
11
- The licenses for most software are designed to take away your
12
- freedom to share and change it. By contrast, the GNU General Public
13
- License is intended to guarantee your freedom to share and change free
14
- software--to make sure the software is free for all its users. This
15
- General Public License applies to most of the Free Software
16
- Foundation's software and to any other program whose authors commit to
17
- using it. (Some other Free Software Foundation software is covered by
18
- the GNU Library General Public License instead.) You can apply it to
19
- your programs, too.
20
-
21
- When we speak of free software, we are referring to freedom, not
22
- price. Our General Public Licenses are designed to make sure that you
23
- have the freedom to distribute copies of free software (and charge for
24
- this service if you wish), that you receive source code or can get it
25
- if you want it, that you can change the software or use pieces of it
26
- in new free programs; and that you know you can do these things.
27
-
28
- To protect your rights, we need to make restrictions that forbid
29
- anyone to deny you these rights or to ask you to surrender the rights.
30
- These restrictions translate to certain responsibilities for you if you
31
- distribute copies of the software, or if you modify it.
32
-
33
- For example, if you distribute copies of such a program, whether
34
- gratis or for a fee, you must give the recipients all the rights that
35
- you have. You must make sure that they, too, receive or can get the
36
- source code. And you must show them these terms so they know their
37
- rights.
38
-
39
- We protect your rights with two steps: (1) copyright the software, and
40
- (2) offer you this license which gives you legal permission to copy,
41
- distribute and/or modify the software.
42
-
43
- Also, for each author's protection and ours, we want to make certain
44
- that everyone understands that there is no warranty for this free
45
- software. If the software is modified by someone else and passed on, we
46
- want its recipients to know that what they have is not the original, so
47
- that any problems introduced by others will not reflect on the original
48
- authors' reputations.
49
-
50
- Finally, any free program is threatened constantly by software
51
- patents. We wish to avoid the danger that redistributors of a free
52
- program will individually obtain patent licenses, in effect making the
53
- program proprietary. To prevent this, we have made it clear that any
54
- patent must be licensed for everyone's free use or not licensed at all.
55
-
56
- The precise terms and conditions for copying, distribution and
57
- modification follow.
58
-
59
- GNU GENERAL PUBLIC LICENSE
60
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
-
62
- 0. This License applies to any program or other work which contains
63
- a notice placed by the copyright holder saying it may be distributed
64
- under the terms of this General Public License. The "Program", below,
65
- refers to any such program or work, and a "work based on the Program"
66
- means either the Program or any derivative work under copyright law:
67
- that is to say, a work containing the Program or a portion of it,
68
- either verbatim or with modifications and/or translated into another
69
- language. (Hereinafter, translation is included without limitation in
70
- the term "modification".) Each licensee is addressed as "you".
71
-
72
- Activities other than copying, distribution and modification are not
73
- covered by this License; they are outside its scope. The act of
74
- running the Program is not restricted, and the output from the Program
75
- is covered only if its contents constitute a work based on the
76
- Program (independent of having been made by running the Program).
77
- Whether that is true depends on what the Program does.
78
-
79
- 1. You may copy and distribute verbatim copies of the Program's
80
- source code as you receive it, in any medium, provided that you
81
- conspicuously and appropriately publish on each copy an appropriate
82
- copyright notice and disclaimer of warranty; keep intact all the
83
- notices that refer to this License and to the absence of any warranty;
84
- and give any other recipients of the Program a copy of this License
85
- along with the Program.
86
-
87
- You may charge a fee for the physical act of transferring a copy, and
88
- you may at your option offer warranty protection in exchange for a fee.
89
-
90
- 2. You may modify your copy or copies of the Program or any portion
91
- of it, thus forming a work based on the Program, and copy and
92
- distribute such modifications or work under the terms of Section 1
93
- above, provided that you also meet all of these conditions:
94
-
95
- a) You must cause the modified files to carry prominent notices
96
- stating that you changed the files and the date of any change.
97
-
98
- b) You must cause any work that you distribute or publish, that in
99
- whole or in part contains or is derived from the Program or any
100
- part thereof, to be licensed as a whole at no charge to all third
101
- parties under the terms of this License.
102
-
103
- c) If the modified program normally reads commands interactively
104
- when run, you must cause it, when started running for such
105
- interactive use in the most ordinary way, to print or display an
106
- announcement including an appropriate copyright notice and a
107
- notice that there is no warranty (or else, saying that you provide
108
- a warranty) and that users may redistribute the program under
109
- these conditions, and telling the user how to view a copy of this
110
- License. (Exception: if the Program itself is interactive but
111
- does not normally print such an announcement, your work based on
112
- the Program is not required to print an announcement.)
113
-
114
- These requirements apply to the modified work as a whole. If
115
- identifiable sections of that work are not derived from the Program,
116
- and can be reasonably considered independent and separate works in
117
- themselves, then this License, and its terms, do not apply to those
118
- sections when you distribute them as separate works. But when you
119
- distribute the same sections as part of a whole which is a work based
120
- on the Program, the distribution of the whole must be on the terms of
121
- this License, whose permissions for other licensees extend to the
122
- entire whole, and thus to each and every part regardless of who wrote it.
123
-
124
- Thus, it is not the intent of this section to claim rights or contest
125
- your rights to work written entirely by you; rather, the intent is to
126
- exercise the right to control the distribution of derivative or
127
- collective works based on the Program.
128
-
129
- In addition, mere aggregation of another work not based on the Program
130
- with the Program (or with a work based on the Program) on a volume of
131
- a storage or distribution medium does not bring the other work under
132
- the scope of this License.
133
-
134
- 3. You may copy and distribute the Program (or a work based on it,
135
- under Section 2) in object code or executable form under the terms of
136
- Sections 1 and 2 above provided that you also do one of the following:
137
-
138
- a) Accompany it with the complete corresponding machine-readable
139
- source code, which must be distributed under the terms of Sections
140
- 1 and 2 above on a medium customarily used for software interchange; or,
141
-
142
- b) Accompany it with a written offer, valid for at least three
143
- years, to give any third party, for a charge no more than your
144
- cost of physically performing source distribution, a complete
145
- machine-readable copy of the corresponding source code, to be
146
- distributed under the terms of Sections 1 and 2 above on a medium
147
- customarily used for software interchange; or,
148
-
149
- c) Accompany it with the information you received as to the offer
150
- to distribute corresponding source code. (This alternative is
151
- allowed only for noncommercial distribution and only if you
152
- received the program in object code or executable form with such
153
- an offer, in accord with Subsection b above.)
154
-
155
- The source code for a work means the preferred form of the work for
156
- making modifications to it. For an executable work, complete source
157
- code means all the source code for all modules it contains, plus any
158
- associated interface definition files, plus the scripts used to
159
- control compilation and installation of the executable. However, as a
160
- special exception, the source code distributed need not include
161
- anything that is normally distributed (in either source or binary
162
- form) with the major components (compiler, kernel, and so on) of the
163
- operating system on which the executable runs, unless that component
164
- itself accompanies the executable.
165
-
166
- If distribution of executable or object code is made by offering
167
- access to copy from a designated place, then offering equivalent
168
- access to copy the source code from the same place counts as
169
- distribution of the source code, even though third parties are not
170
- compelled to copy the source along with the object code.
171
-
172
- 4. You may not copy, modify, sublicense, or distribute the Program
173
- except as expressly provided under this License. Any attempt
174
- otherwise to copy, modify, sublicense or distribute the Program is
175
- void, and will automatically terminate your rights under this License.
176
- However, parties who have received copies, or rights, from you under
177
- this License will not have their licenses terminated so long as such
178
- parties remain in full compliance.
179
-
180
- 5. You are not required to accept this License, since you have not
181
- signed it. However, nothing else grants you permission to modify or
182
- distribute the Program or its derivative works. These actions are
183
- prohibited by law if you do not accept this License. Therefore, by
184
- modifying or distributing the Program (or any work based on the
185
- Program), you indicate your acceptance of this License to do so, and
186
- all its terms and conditions for copying, distributing or modifying
187
- the Program or works based on it.
188
-
189
- 6. Each time you redistribute the Program (or any work based on the
190
- Program), the recipient automatically receives a license from the
191
- original licensor to copy, distribute or modify the Program subject to
192
- these terms and conditions. You may not impose any further
193
- restrictions on the recipients' exercise of the rights granted herein.
194
- You are not responsible for enforcing compliance by third parties to
195
- this License.
196
-
197
- 7. If, as a consequence of a court judgment or allegation of patent
198
- infringement or for any other reason (not limited to patent issues),
199
- conditions are imposed on you (whether by court order, agreement or
200
- otherwise) that contradict the conditions of this License, they do not
201
- excuse you from the conditions of this License. If you cannot
202
- distribute so as to satisfy simultaneously your obligations under this
203
- License and any other pertinent obligations, then as a consequence you
204
- may not distribute the Program at all. For example, if a patent
205
- license would not permit royalty-free redistribution of the Program by
206
- all those who receive copies directly or indirectly through you, then
207
- the only way you could satisfy both it and this License would be to
208
- refrain entirely from distribution of the Program.
209
-
210
- If any portion of this section is held invalid or unenforceable under
211
- any particular circumstance, the balance of the section is intended to
212
- apply and the section as a whole is intended to apply in other
213
- circumstances.
214
-
215
- It is not the purpose of this section to induce you to infringe any
216
- patents or other property right claims or to contest validity of any
217
- such claims; this section has the sole purpose of protecting the
218
- integrity of the free software distribution system, which is
219
- implemented by public license practices. Many people have made
220
- generous contributions to the wide range of software distributed
221
- through that system in reliance on consistent application of that
222
- system; it is up to the author/donor to decide if he or she is willing
223
- to distribute software through any other system and a licensee cannot
224
- impose that choice.
225
-
226
- This section is intended to make thoroughly clear what is believed to
227
- be a consequence of the rest of this License.
228
-
229
- 8. If the distribution and/or use of the Program is restricted in
230
- certain countries either by patents or by copyrighted interfaces, the
231
- original copyright holder who places the Program under this License
232
- may add an explicit geographical distribution limitation excluding
233
- those countries, so that distribution is permitted only in or among
234
- countries not thus excluded. In such case, this License incorporates
235
- the limitation as if written in the body of this License.
236
-
237
- 9. The Free Software Foundation may publish revised and/or new versions
238
- of the General Public License from time to time. Such new versions will
239
- be similar in spirit to the present version, but may differ in detail to
240
- address new problems or concerns.
241
-
242
- Each version is given a distinguishing version number. If the Program
243
- specifies a version number of this License which applies to it and "any
244
- later version", you have the option of following the terms and conditions
245
- either of that version or of any later version published by the Free
246
- Software Foundation. If the Program does not specify a version number of
247
- this License, you may choose any version ever published by the Free Software
248
- Foundation.
249
-
250
- 10. If you wish to incorporate parts of the Program into other free
251
- programs whose distribution conditions are different, write to the author
252
- to ask for permission. For software which is copyrighted by the Free
253
- Software Foundation, write to the Free Software Foundation; we sometimes
254
- make exceptions for this. Our decision will be guided by the two goals
255
- of preserving the free status of all derivatives of our free software and
256
- of promoting the sharing and reuse of software generally.
257
-
258
- NO WARRANTY
259
-
260
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
- REPAIR OR CORRECTION.
269
-
270
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
- POSSIBILITY OF SUCH DAMAGES.
279
-
280
- END OF TERMS AND CONDITIONS
281
-
282
- How to Apply These Terms to Your New Programs
283
-
284
- If you develop a new program, and you want it to be of the greatest
285
- possible use to the public, the best way to achieve this is to make it
286
- free software which everyone can redistribute and change under these terms.
287
-
288
- To do so, attach the following notices to the program. It is safest
289
- to attach them to the start of each source file to most effectively
290
- convey the exclusion of warranty; and each file should have at least
291
- the "copyright" line and a pointer to where the full notice is found.
292
-
293
- <one line to give the program's name and a brief idea of what it does.>
294
- Copyright (C) <year> <name of author>
295
-
296
- This program is free software; you can redistribute it and/or modify
297
- it under the terms of the GNU General Public License as published by
298
- the Free Software Foundation; either version 2 of the License, or
299
- (at your option) any later version.
300
-
301
- This program is distributed in the hope that it will be useful,
302
- but WITHOUT ANY WARRANTY; without even the implied warranty of
303
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
- GNU General Public License for more details.
305
-
306
- You should have received a copy of the GNU General Public License
307
- along with this program; if not, write to the Free Software
308
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
309
-
310
-
311
- Also add information on how to contact you by electronic and paper mail.
312
-
313
- If the program is interactive, make it output a short notice like this
314
- when it starts in an interactive mode:
315
-
316
- Gnomovision version 69, Copyright (C) year name of author
317
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
- This is free software, and you are welcome to redistribute it
319
- under certain conditions; type `show c' for details.
320
-
321
- The hypothetical commands `show w' and `show c' should show the appropriate
322
- parts of the General Public License. Of course, the commands you use may
323
- be called something other than `show w' and `show c'; they could even be
324
- mouse-clicks or menu items--whatever suits your program.
325
-
326
- You should also get your employer (if you work as a programmer) or your
327
- school, if any, to sign a "copyright disclaimer" for the program, if
328
- necessary. Here is a sample; alter the names:
329
-
330
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
-
333
- <signature of Ty Coon>, 1 April 1989
334
- Ty Coon, President of Vice
335
-
336
- This General Public License does not permit incorporating your program into
337
- proprietary programs. If your program is a subroutine library, you may
338
- consider it more useful to permit linking proprietary applications with the
339
- library. If this is what you want to do, use the GNU Library General
340
- Public License instead of this License.
1
+ Prawn may be used under Matz's terms for Ruby, or GPLv2 or GPLv3. See LICENSE
2
+ for Matz's terms, or GPLv2 and GPLv3 files.
data/HACKING CHANGED
@@ -12,7 +12,7 @@ Be sure to load in the necessary git submodules as well:
12
12
  git submodule init
13
13
  git submodule update
14
14
 
15
- If you are running on Ruby 1.9.1, you will need Test::Unit 1.2.3
15
+ If you are running on Ruby 1.9, you will need Test::Unit 1.2.3:
16
16
 
17
17
  gem install test-unit -v 1.2.3
18
18
 
data/LICENSE CHANGED
@@ -1,10 +1,10 @@
1
1
  Prawn is copyrighted free software produced by Gregory Brown along with
2
2
  community contributions. See git log for authorship information.
3
3
 
4
- Licensing terms follow (License of Ruby 1.8):
4
+ Licensing terms follow (License of Ruby):
5
5
 
6
- You can redistribute Prawn and/or modify it under either the terms of the GPL
7
- (see COPYING file), or the conditions below:
6
+ You can redistribute Prawn and/or modify it under either the terms of the GPLv2
7
+ or GPLv3 (see GPLv2 and GPLv3 files), or the conditions below:
8
8
 
9
9
  1. You may make and give away verbatim copies of the source form of the
10
10
  software without restriction, provided that you duplicate all of the
data/Rakefile CHANGED
@@ -1,4 +1,7 @@
1
- require 'rubygems'
1
+ require "rubygems"
2
+ require "bundler"
3
+ Bundler.setup
4
+
2
5
  require 'rake'
3
6
  require 'rake/testtask'
4
7
  require "rake/rdoctask"
@@ -33,15 +36,23 @@ Rake::RDocTask.new do |rdoc|
33
36
  rdoc.title = "Prawn Documentation"
34
37
  end
35
38
 
36
- desc "run all examples, and then diff them against reference PDFs"
37
- task :examples do
39
+ desc "run all examples"
40
+ task :examples do
38
41
  mkdir_p "output"
39
42
  examples = Dir["examples/**/*.rb"]
40
43
  t = Time.now
41
44
  puts "Running Examples"
42
- examples.each { |file| `ruby -Ilib #{file}` }
43
- puts "Ran in #{Time.now - t} s"
44
- `mv *.pdf output`
45
+ examples.each { |file| `ruby -Ilib #{file}` }
46
+ puts "Ran in #{Time.now - t} s"
47
+ `mv *.pdf output`
48
+ end
49
+
50
+ desc "Generate the 'Prawn by Example' manual"
51
+ task :manual do
52
+ puts "Building manual..."
53
+ require File.expand_path(File.join(File.dirname(__FILE__),
54
+ %w[manual manual manual]))
55
+ puts "The Prawn manual is available at manual.pdf. Happy Prawning!"
45
56
  end
46
57
 
47
58
  spec = Gem::Specification.load "prawn.gemspec"
@@ -24,6 +24,6 @@
24
24
  99;2122
25
25
  9A;0161
26
26
  9B;203A
27
- 9C;0152
27
+ 9C;0153
28
28
  9E;017E
29
29
  9F;0178
Binary file
@@ -0,0 +1,819 @@
1
+ %PDF-1.3
2
+ %����
3
+ 1 0 obj
4
+ << /CreationDate <feff0044003a00320030003100300030003400320033003200310030003200320031002d003000370027003000300027>
5
+ /GTS_PDFXVersion <feff005000440046002f0058002d0033003a0032003000300032>
6
+ /Creator <feff00410064006f0062006500200049006c006c007500730074007200610074006f00720020004300530033>
7
+ /Producer <feff00410064006f0062006500200050004400460020006c00690062007200610072007900200038002e00300030>
8
+ /GTS_PDFXConformance <feff005000440046002f0058002d0033003a0032003000300032>
9
+ /ModDate <feff0044003a00320030003100300030003400320033003200310030003200320031002d003000370027003000300027>
10
+ /Title <feff0073006c00690070>
11
+ /Trapped /False
12
+ >>
13
+ endobj
14
+ 2 0 obj
15
+ << /Metadata 3 0 R
16
+ /Pages 4 0 R
17
+ /Type /Catalog
18
+ >>
19
+ endobj
20
+ 3 0 obj
21
+ << /Subtype /XML
22
+ /Length 16724
23
+ /Type /Metadata
24
+ >>
25
+ stream
26
+ <?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
27
+ <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.1-c036 46.277092, Fri Feb 23 2007 14:16:18 ">
28
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
29
+ <rdf:Description rdf:about=""
30
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
31
+ <dc:format>application/pdf</dc:format>
32
+ <dc:title>
33
+ <rdf:Alt>
34
+ <rdf:li xml:lang="x-default">slip</rdf:li>
35
+ </rdf:Alt>
36
+ </dc:title>
37
+ </rdf:Description>
38
+ <rdf:Description rdf:about=""
39
+ xmlns:xap="http://ns.adobe.com/xap/1.0/"
40
+ xmlns:xapGImg="http://ns.adobe.com/xap/1.0/g/img/">
41
+ <xap:CreatorTool>Adobe Illustrator CS3</xap:CreatorTool>
42
+ <xap:CreateDate>2010-04-23T21:02:21-07:00</xap:CreateDate>
43
+ <xap:ModifyDate>2010-04-23T21:02:21-07:00</xap:ModifyDate>
44
+ <xap:MetadataDate>2010-04-23T21:02:21-07:00</xap:MetadataDate>
45
+ <xap:Thumbnails>
46
+ <rdf:Alt>
47
+ <rdf:li rdf:parseType="Resource">
48
+ <xapGImg:width>220</xapGImg:width>
49
+ <xapGImg:height>256</xapGImg:height>
50
+ <xapGImg:format>JPEG</xapGImg:format>
51
+ <xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAADcAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYqw&#xA;Dzp+dnkzyvLJZmR9S1OMlWtLQBgjDtJKaIu+xAqR4ZnYNBkyb8h5uFm1+OBrmXn11/zkvrrXckdp&#xA;oFvFHGGNJZnlYhRWtVWIb/LM+PZEesi66XbJoEAI7Rv+cm4TxOuaG8MJbibizlEhrTf91IE6f6+V&#xA;5OyD/DL5tuPtcXUh8nqWkec9K8w6RJqHlmSPU5IwC1qzmCQEioVg6kqT2qKHxzWz05hKp+n7XPGp&#xA;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</xapGImg:image>
52
+ </rdf:li>
53
+ </rdf:Alt>
54
+ </xap:Thumbnails>
55
+ </rdf:Description>
56
+ <rdf:Description rdf:about=""
57
+ xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/"
58
+ xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
59
+ <xapMM:DocumentID>uuid:13528DD4AD50DF11A0AE9F14AB4BE47F</xapMM:DocumentID>
60
+ <xapMM:InstanceID>uuid:cf4bb206-1326-d74d-bcf6-c7318f4a6bf4</xapMM:InstanceID>
61
+ <xapMM:DerivedFrom rdf:parseType="Resource">
62
+ <stRef:instanceID>uuid:2fbdcaaa-a095-1547-b943-336f0e642cc3</stRef:instanceID>
63
+ <stRef:documentID>uuid:EDE785FDC44FDF119846FECADDC9E06B</stRef:documentID>
64
+ </xapMM:DerivedFrom>
65
+ </rdf:Description>
66
+ <rdf:Description rdf:about=""
67
+ xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
68
+ <pdf:Trapped>False</pdf:Trapped>
69
+ <pdf:Producer>Adobe PDF library 8.00</pdf:Producer>
70
+ </rdf:Description>
71
+ <rdf:Description rdf:about=""
72
+ xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/">
73
+ <pdfx:GTS_PDFXVersion>PDF/X-3:2002</pdfx:GTS_PDFXVersion>
74
+ <pdfx:GTS_PDFXConformance>PDF/X-3:2002</pdfx:GTS_PDFXConformance>
75
+ </rdf:Description>
76
+ <rdf:Description rdf:about=""
77
+ xmlns:xapTPg="http://ns.adobe.com/xap/1.0/t/pg/"
78
+ xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
79
+ xmlns:xapG="http://ns.adobe.com/xap/1.0/g/">
80
+ <xapTPg:NPages>1</xapTPg:NPages>
81
+ <xapTPg:HasVisibleTransparency>False</xapTPg:HasVisibleTransparency>
82
+ <xapTPg:HasVisibleOverprint>False</xapTPg:HasVisibleOverprint>
83
+ <xapTPg:MaxPageSize rdf:parseType="Resource">
84
+ <stDim:w>612.000000</stDim:w>
85
+ <stDim:h>792.000000</stDim:h>
86
+ <stDim:unit>Points</stDim:unit>
87
+ </xapTPg:MaxPageSize>
88
+ <xapTPg:PlateNames>
89
+ <rdf:Seq>
90
+ <rdf:li>Cyan</rdf:li>
91
+ <rdf:li>Magenta</rdf:li>
92
+ <rdf:li>Yellow</rdf:li>
93
+ <rdf:li>Black</rdf:li>
94
+ </rdf:Seq>
95
+ </xapTPg:PlateNames>
96
+ <xapTPg:SwatchGroups>
97
+ <rdf:Seq>
98
+ <rdf:li rdf:parseType="Resource">
99
+ <xapG:groupName>Default Swatch Group</xapG:groupName>
100
+ <xapG:groupType>0</xapG:groupType>
101
+ </rdf:li>
102
+ </rdf:Seq>
103
+ </xapTPg:SwatchGroups>
104
+ </rdf:Description>
105
+ </rdf:RDF>
106
+ </x:xmpmeta>
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <?xpacket end="w"?>
129
+ endstream
130
+ endobj
131
+ 4 0 obj
132
+ << /Count 2
133
+ /Type /Pages
134
+ /Kids [5 0 R 34 0 R]
135
+ >>
136
+ endobj
137
+ 5 0 obj
138
+ << /CropBox [0.0 0.0 612.0 792.0]
139
+ /Parent 4 0 R
140
+ /Contents [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 32 0 R]
141
+ /Rotate 0
142
+ /BleedBox [0.0 0.0 612.0 792.0]
143
+ /PieceInfo << /Illustrator 14 0 R
144
+ >>
145
+ /ArtBox [169.333 395.725 392.999 656.252]
146
+ /MediaBox [0.0 0.0 612.0 792.0]
147
+ /TrimBox [0.0 0.0 612.0 792.0]
148
+ /Resources << /Shading << /Sh0 21 0 R
149
+ /Sh1 26 0 R
150
+ /Sh2 27 0 R
151
+ /Sh3 30 0 R
152
+ >>
153
+ /ColorSpace << /CS0 22 0 R
154
+ /CS1 22 0 R
155
+ >>
156
+ /Properties << /MC0 << /Color [20224 32768 65535]
157
+ /Visible true
158
+ /Editable true
159
+ /Dimmed false
160
+ /Preview true
161
+ /Printed true
162
+ /Title <feff004c006100790065007200200031>
163
+ >>
164
+ >>
165
+ /ExtGState << /GS0 31 0 R
166
+ >>
167
+ >>
168
+ /Type /Page
169
+ /LastModified <feff0044003a00320030003100300030003400320033003200310030003200320031002d003000370027003000300027>
170
+ >>
171
+ endobj
172
+ 6 0 obj
173
+ << /Length 464
174
+ /Filter /FlateDecode
175
+ >>
176
+ stream
177
+ H�|T�n�0 ��+�����k�ޚ�͵0�� ���ߗ�%�q����I�z��o?�|��q���e�n\��l�^���9F�e ������r �,挬;BCJ0:ZBIg�sFV�٢�OH
178
+ �B����
179
+ Ō"q߽�M��
180
+ endstream
181
+ endobj
182
+ 7 0 obj
183
+ << /Length 461
184
+ /Filter /FlateDecode
185
+ >>
186
+ stream
187
+ H�TS�q,1 ˯
188
+ 5��/��<��/x�'�>��^Q$:f��r S�(�Ը�h���'��Q�_�d�Ͻ&y�3mBU�\@�p�[�uAA�w.�I,��$�)K}�bԳ�{faNH
189
+ �d����S�vo�oy��'��X�t�9+��e��S।!��w�C��NZ�Q�|�ǩ����u���'�ػ~� -{���\dž��x_o5�����������(̭^˜�65r`�+�~Qq���$*���2{`�aJ%<=
190
+ eNY���*� pMdƼ��<�X�
191
+ endstream
192
+ endobj
193
+ 8 0 obj
194
+ << /Length 551
195
+ /Filter /FlateDecode
196
+ >>
197
+ stream
198
+ H�\SK�SA ܿS�����ނ�Q�>Bd�Ab"!q{�N�S���j
199
+ ���� �db�L���8
200
+ ��W⨺]�S�t��0-�L�br޾���/|!w �����r8��$�e���}zk��Y��ܾ����5�h����h���2j� ���X���G.����*u��Hm:|!v�il�@�ӶG���ԯӀJYc�������r�I}�fG� V0ʨ�g$�,� =�w�1���0�!� |��\���l��� @<s���V �=������&]�I��v�.����v��?�[�<!N=j\�:� �I
201
+ ��{��L����!7��J"֩��3��n<"���.8��� �rQ�q��#rwI9 ����9�~�'��6?|=r�q��� ��_���gs �Z�נ�!dr����{�?|>��׆'�J�p/��
202
+ �zB�v{[R �w���+�e~z�0�MG���s��8�� �5��C�ӆP#�>#�L�ߊh��P���Lx"X�H��`���#
203
+ endstream
204
+ endobj
205
+ 9 0 obj
206
+ << /Length 547
207
+ /Filter /FlateDecode
208
+ >>
209
+ stream
210
+ H�LSQ�$9 ��S�/�vl'��3<��YX��0�ˣ��\vlYR�l��ft�/� ��1����0D�Je�w|�ii��핯�+wu���J�����Wz\�t��\�&6���Nk}��C��{C�>�t��㬍�;��ͫH
211
+ S�K<�����K�6��Y 8�
212
+ ��|=7vh�*�"\���������@�x��f䝯�d�TU_J�o+cZ����*?��)Q)S��6r�ͪަ���$�DQh����4��"L7ʣ���� �͖)�mYwk�%:,~��֔[���c�����Y6�(��C�����DdW��
213
+ endstream
214
+ endobj
215
+ 10 0 obj
216
+ << /Length 541
217
+ /Filter /FlateDecode
218
+ >>
219
+ stream
220
+ H�lTѪ�0 }�W��Y�m��}l0� �1��` zGNڦ�M%�H>��c�ł�ؼ�)w���]趘q�*{m�����5�^s�
221
+ �ҹ�jp�m  X5H;� ���T�½)���)�G4Z���
222
+ ���u��|�\�.W*\/��w %�^>/h�w�􉄾����_��`�A�jPG��{��mɥ�eu�\���T+��d#��``� .��WT�pAgWʇ~o?��p���1��ܿ�,;Җf��R�Ά��+\0�%'�[�Nb�e�Ur�ce����h���`�l�^_�J�����y�~wr�V��֛=��)3�#������������c�
223
+ c�D{a��D��EYZ�r�3O���_v�\�#�QY����@���Z�L(/�95��緿�1��8��[�N���Å8Z(3؛� Xs���x����+���rF�<�Ά��M�� @��'|O�ퟍ=y��ۇ��0��d�#�`�-m��q���d/�aw��B{�C
224
+ endstream
225
+ endobj
226
+ 11 0 obj
227
+ << /Length 516
228
+ /Filter /FlateDecode
229
+ >>
230
+ stream
231
+ H�\TK�1��)�C ���\�z����&
232
+ e ��:ع��8���IpU��
233
+ h�� G�s�iJG@�
234
+ ��V��i"X�$N���������h|��70R��D ��1�m[J��?7|��a��_�-��\VA���Lc��V���/���L�z�W�Go�hl�����f��O�ޫ�.��5B�y�G `�7�%�
235
+ E��QRW�������Z�L�Kt6���uQr�����a����#�/Po�m+� ؾq�`J������q�-4��#�)F#�]��Co�8ο #ߺ
236
+ endstream
237
+ endobj
238
+ 12 0 obj
239
+ << /Length 533
240
+ /Filter /FlateDecode
241
+ >>
242
+ stream
243
+ H�lT[��0 ��)t"E��1z���~d?���萊��gL���QN!n���v2�i髝���夵�=`�Hl3�}X;�֔)y ���u�m�:>܆*��������G�>4��y
244
+ ��3r��r�b��<h,��fG�H�#/dĘ�r ;Y�:�c�ucX澺rGr��e�[�N~�ǁ��|\'W�kU]��80�j5����"ئ]���Ub��<��;J���=� M^�m��WQ�rl4Ɛ� tÓQ8�=� B߰���Ch/�ApA�.n�Β�,���A=�
245
+ M�ط��YF^Ӭ�Q�p�e)4;�u��n�8�?,l��
246
+ endstream
247
+ endobj
248
+ 13 0 obj
249
+ << /Length 412
250
+ /Filter /FlateDecode
251
+ >>
252
+ stream
253
+ H�lSAn�0 ������HI�y�c
254
+ ������萶7��̡�� %]�G�K\��7sk����+�tOGF8��w�_C�9�#ުϱ��s��+����+��L�E��^���O�K���լP��md���;�.B*�=x����������v]��X���Tsn��>f���g���4j>Pu����|*A�%��+M<n�@m���Y�IW�
255
+ �9�N��$L0�A�sG��v���K؞�ѳ�m����YYw!�Ű�8���`���G��ql������Ew[� �f��U�`�Ui9�G�bpOp��ݷ���z+t��X�~�&QH��Ϥ�J���p4�^W�q��G�-���7����ڄ��+|f�7�1P�κ�1Ǘ��,��^)�?s�f
256
+ endstream
257
+ endobj
258
+ 14 0 obj
259
+ << /Private 15 0 R
260
+ /LastModified <feff0044003a00320030003100300030003400320033003200310030003200320031002d003000370027003000300027>
261
+ >>
262
+ endobj
263
+ 15 0 obj
264
+ << /RoundtripVersion 13
265
+ /CreatorVersion 13
266
+ /ContainerVersion 9
267
+ /AIMetaData 16 0 R
268
+ /AIPDFPrivateData1 17 0 R
269
+ /AIPDFPrivateData2 18 0 R
270
+ /AIPDFPrivateData3 19 0 R
271
+ /AIPDFPrivateData4 20 0 R
272
+ /NumBlock 4
273
+ >>
274
+ endobj
275
+ 16 0 obj
276
+ << /Length 870
277
+ >>
278
+ stream
279
+ %!PS-Adobe-3.0
280
+ endstream
281
+ endobj
282
+ 17 0 obj
283
+ << /Length 6351
284
+ >>
285
+ stream
286
+ %%BoundingBox: 169 395 393 657
287
+ endstream
288
+ endobj
289
+ 18 0 obj
290
+ << /Length 15844
291
+ /Filter [/FlateDecode]
292
+ >>
293
+ stream
294
+ H���n�H���ށs ������2
295
+ ����i���؜��a/ڛ����t�Ҍ�CK��oG�82NGֆ�
296
+ ӓ�X�1.���d�@]4ESƄ(F2�ьaR`� �2~���@
297
+ �à �H��XH�4".#�t����u�J�R��
298
+ Pb��N��F� �9���.4&1�ha�IMfr��'�BPgS�b,�᱕V[c�u���5���,Ͳ,� j�K��\�J�Q����6w�y�7E�%(�㝑c�gt����.
299
+ 糰94&�t�� m��8m�G�d�1S&�r)OC�$�4�2�P�ߙ�,�
300
+ V�>T��#������s��e��>�I3j�O:[E��]�-���~��c ���z�׹��y�(9��P��凧���~x����<�_�m�Jo���N�t����VZ��c{YB=k�m&YM�,��AJd;����1t^B�5��y�p2r���U�]ج&8Dd�a�q�R/�p ��'|N!�"�ı���8�F��:6��CW�o��Ց��#���{aR�f +)�$�A�G��j`�@�4RdVhBT@{����x�����v�0D�%B 1PP�9�]����1����k�h��xX3n�q�}W� ���]���]1:V�:�)`��&��ɇNCeCe�����A?E_�\K����muQCN������:��=8EdJpXf����8P��>`�C��1֌�? zxd<"�z|�7��"}�d��jL���fؗ
301
+ ٻU�܅J�E���_�/�B<�)��H�1���Chz��%�p�� 1$#8��}� �]Iv�6�[���wH�J�����ش�kǽ���sG�i�ei�5F�"dB�
302
+ v�F��:Fޯ�!P�+�b����.q�0�7Fw�;>`���h�3g,�N�}*Q�I�O!�"������!d�O��R�!y���C���a�� ">��1�z�Q�I�b݀����c�\;��8\K���lh$���F�B՜{��P��(pC<j�B`|����)�<2���%{K!�b��^���َ�H]��5����l��!w�{��6c8N���������Ir>%|R(z�ד��#�1���} uy�J����P�)秔`R���c
303
+ �9b���'��쐷9k����t�٪�c�!c�r�$D�}�[��ת��k�b�L6�>�MEHk��V� ���r�Fzӌ�;D�\�Q�^nDv +8�Hoa>CA
304
+ �9��$�2OqH@���g�"��D�I^�� �9�B���D����/K\�����<%�����j�I*��u�6�f���#����}]s�1mߴ�L�A������щB���`a�a�l�n�6��؎��ؚ��h�a[fߵp|ʡ:H��edp|�d� ���q�q��hxz��e|t��`s����2�]^q��Y3ĝ �Ѐ2�a[���E$�sX��q�'#s�NN�,iZ�R��DeFX`�e^��Ƚ�yxC>����ω�i,��w�sd���tӂ�q6X^���.hE�yʗ��˿���5i#/�� =�q�<�W��Uf�?�:�+h�Ǯ�ۚ
305
+ ��ar��s��KC�-f������gY�tJB�SwX��ښ��:~��n�.�H;�ȸc��g�՚c�'3 q��[6��1ہ;�*�h�zxe��J�1-��a1�������sm����4����l�u�; �Ӭ �R�� Ά�;*�!p럏<������E"#�Pa��_m�6�(��oP-��B'��7��C���H�/Fb!�M�m�E
306
+ nV߸�����k���4Ŷ�v�B/�׫�mO�O7�-�h9�z_�����C�z��������L�_�ł �%)��?*����i�7�dx|�!,H\:+H�<�n�ٽYdf��o�/�iQ�f�~�^|koD9�� Y~�7�x���ތ��s�����S��N̮i/���5��?�{-' :V��6���O����Ǿf������Dz��A�
307
+ j�m�P~qI>e� U�c����jc�
308
+ ՠ;��F4��;bk�?q<Yi�F�V�eڑ��
309
+ �c��iv��pRi>�ͅբ�����Z�?P�/�J��[QK�r��YKwo�nw{J+��Ɓ�E������������ң�:��;澱һU�N7(�/W�t��7?|��,W��힞�,U�5I|��;<Jl��$7��}����
310
+ ���5|&���M���+]t�ja����u63��%�i���N��X/���@9:_�@&�o�)��X1*�LR�
311
+ ��Z�d;�c�����o��+�K'�p窣���ͦZ:
312
+ OR���ն�O��������N�4�� ��Aby�O%�Y��X��嵬,�E�'8�M��$���"�ǀ#F*�����\vu���j��v��`R�ٷ @����'��V�����/@W+��<�?]���Xr�o�t�gY��p7���.�[�?o@|]ky-1{��y��/��'��
313
+ ����p��D$C���*@��}���������*� �S���!Whx�]���1�.��(2���0����7
314
+ :�Wt�tz~����� Ķ�k0�J���+�\ L��̾1�'�[-�)��T��mv�����)
315
+ �G}�g����^]����m�:/���.�� ��p!n 8$��2fC���A�
316
+ x��Q���N�9!��<Q�V��<%�珏�p�7��J�����YY0�}��Y�l��G� �seN*�Jjq9#۝ڜt�T$'�1N�V�<��y3�� R�q:P�R�`�S�͇�����|r��}3�vO�PW}�S�׭,Ә�bh_"���^t�+%tWDO����y����xE'���Ξ�%CQ�5S*?�L� ���Ό�Z7&p�o&����2�d�W��Xr�l����:�\��O�����.�C�=��6{�'���0���*��Z�+���������V��%�o�}/�K�W���oFiN��A�Cg��o�ǭ�b����� �#"�owS�X���7�܈r�5���l�q�$BC;B?"��b�~$��#��9���E�*�1{���O�T��g���J���*�4�)����䘛EiN�v)�����!D�?DE�v�)��P5�⺂6�xp)K0��L*d&#iu�� Jsͤ��H��LBgr%P�l�&&O >%�� �XZUh�h(�⮫t��X������FޔWe���JR�
317
+ u�����8su����~����o��~P�w�i�1
318
+ .��ad�$6*���pR�ml 1�����LޣE�U��8���yo�,t�=Z��}�����:�ZV�s���_�F����h���}�!��ө�J�;%����>6�R�-s�ݣ��b���k���*�ٵ��;��z�N�.=v��EŽ��`����Sߒ��O�O�u?��t���G��̜��P���
319
+ o��q���僆^��[�o��]}���|�:�m~y�������1;Cc���H���%���ϗ��Z}i���=����ڨS9+����]㗛��{��<=l��c�򇵑�۰.6r=K�d��VI�����*LJv>{�ٮ5��m�N�X[���|\�}WE�X� cv*�;�i���I��{��2z௮y�BU�����:1�TA�j!�~˽"��X���_�~˭��o���Pހ-�iX�'SR�mo�mrF���� ��c'c̑�BN���Y9_ �xհn�K�Ƈc����u�6�U��� 0� XC���Dgٱ��9���b2��%+X?5Iy�*��b�"�L<���#�O�A��, �� YN*N� =�7h0ل�E�1M�l �c^�Y�F�8���*��ن�])F�QH� ��@P�^;��D��(��
320
+ �ʨ��nqY3�R��Jx�²�����t�#+��}���l���B�J-N-1�ȩԴGX 8g�4̰3q|)J7��3F��K��k�
321
+ 2����F5��8���Gpu���v�^c��� �� ���i ��Zj,B��Ȳ�8R&���Us�8�m�)KwX��q �^�yw[륤׼�#0c�,��_~�8��0����WO����w3�Ძ8��ͼ�X�`z�����y�ּ�Vl�l-�� m�7r�Q3��h��$t�C�*�m��l:�J�ș`�'U&��T��W�� �w1�框2��TE��*Ե4'p���8�(��H�94���5��A�pǦ\ઇ�� �e u$��P�+�A��C���Gʦ���"�C٫��'P���������7�\6#�?�䦭=�A��� =>Ά� �.8>��q@��缗�V�fs:tz��w"�&b�x�y< n ��1� �!�l���%�@�׬��U<q���r�u�2��{?W�@Ⰴ't�� �јL8��U�c���j�@���9��:BNx!���曈��@ʇ�>o�5�ܤ�.y+n�m7sE3g�m��-���6e<s�Q�R�r�ib΁>�L�D�1.]aHM�/���������̓���޵<ع�l�i�/ b��D1�!���_�I0kn�י���B�7�;n
322
+ �%�së��q)�;(Q�Ax���1��q����r�X<�����ۍp�tV
323
+ 9�����9&L�:��3�N�W�b%ևׂ�� R�͎�-!�~6�=o̞��ŷWh���d��I���������҈x�N"ҭ:�nr�(�JXYwx����iYv�KP^3�+�/X婈���#hUb�BF��}����� �z)q�A#X]�a�/�� �D�U���xYP}Y�,y{RPR&,f��@&,���P�]4墥�uB��r{ >C���l4���y#Pv�0F�0a�R[�T�u���<�(�B��,����7�->��Jv3Y *���
324
+ ��p��˖��DS5��XOW��_�Q��\�G���KϬ��:�Ū�����A�<�`�J���� ��mj�+1���B��@xi�.�#��^c��� �W�aV��s������ ���-�����u���
325
+ ��X��(4���8�t)��f3�|ǿ�f�A�+�@��g��C,�xoф 9�jrXc(������|IB&�
326
+ ߏ_3���D�xt�H�<�%��=�r"��7[�c��דU�8|^(���b�X�R�%��=�K1�
327
+ z�gCsW���?<�3�;󛲳�Q ��ɍ�:�+�q5�6�s�M<�~�R�K%�_O�г�M9vmYYy�R����VEfת��*���ð�}�e��V���+������������r��^#�
328
+ �(�5�}@��5TEɨ��T�H����LM��Al�ݐ욌���YeƪY���1�K��祲 GԔO�3�_��=�8�Se֜v�P)9�KW�a(t�k5<� kA�u��C��_Q���v��8K��CXX�b�!��Ϳ���X���P(.�—�Z�XY�qXA@^��P,��Ϭ�}�[P�
329
+
330
+ TuA�~,'h��\�r���Z��Z\ �A%�b���
331
+ U�3��b��x �5��U*I*0�r|�~2�AY�^�-(�8��{(84>���L�A#�E5Cl"��C�sl!bMx���B)Q�]ǧA�3y�"�O�&�&w�k#Y����M<46*L7�#ҧۘw0��Pqy�&7�nBǺ�MZyGB �E���N�C�EաZ������� s�B� ښʵ �M�����Q
332
+ *0��^W�:hD�Hh_�H�:�C@b���W@@��|�\�B��
333
+ ��]��/�~u���Ew��Cۅ�2)�ePt��J N�ذ�6 �?HΦ�+��$�A�gM��f���t��)�X�����Ӯ��d��;�x�섆���ՠ!
334
+ (��cSoBЂz6
335
+ ��{�� �K^�(�):;�ky�`F��`#磰
336
+ ]����Wk^n��3��{b�*�G
337
+ a��餓�Ԛj=EN�Q����\�έ ���<š���a�e5k��Oy/!ޖ�E9�8�[�E�#�pk�N�u!����Fb��~ڼ�����-Cƻ�f�Ĭ�����<�X��Xg�"J��QK<�������QšVb�]�X+�*Jn��\���k��=V����/�z6����K�fTj=>��4�Şu�b�� Ѕ!����w��μ���!��˾}z��s�l^͒����f���Lc*�!� ��^�X?b�I�����e,T_�]h�I���x�P�y9�L}S�:::����'kb����*6<\ם�sn*x��uB�ˎok?�y/���ڗq�Y�z��o��S4�!$�K�6���[�7�YXXt<���;4T��� ��†M��}�8��J�N�gvh��g��[�٠k��ZP@�|�[�%�Vm;84>�����:�҉��(�M���
338
+ ]"��6.�id��F��j�H%/cA���k�te5ʀ]C����:�o�]����}�/�v��w�q�!l�B�ٜ�ϵ��u�ی?Xڪ-���_em�����(kv�������g��@~s&u�{e�����C��HM�'���p4��w���5�L|)��R!����@Ϛ�/�?�J�.}�ڏ8����y��=�d��m��׵��C�~r
339
+ �b����Bh��h�<k�T����m�t���/��\GZ����vJu9�r)��M3��Г�0���T���]�.6��E�=#>������,>a�P,GX��q��c�Z���^���Vc�o3�e�nϟ��
340
+ �y�RO�ץ&�B9¾,}+*{�9�
341
+ �zT�1:fv�c�J@� #L+aDŽ1��Q��K'L:wu{�xi��e�� a���O�S�k
342
+ RěnP�
343
+ Vx��p�!��n��:�������-k�1������e�ͮjt/�;�Ց� @X��Q^̦�f\)����$s/�q����[���wMM@yJ2@�H�q�'��(��t�`�$N@޳�'�|�D������?hK �N -ښ��6P�`� �$)� K7(חZ旄��� �D��d+1��$]Lc Z��h����W����/@���D�Wy���AH�0�Ѷ�Jt���>��,D q�����L���.�9\6�h���嬼�
344
+ ��A KB��S��Ņ.W����@לϣX ��~s�(�Jt�����e|��ҵ1�:H � BR�����Z�cI�I�h�uD#�;7�q�y��-?�<�l�J��>Rs�%΋"�"���\Z"}� 1ͷ��53``7������� ��R��ǥ$+��R��T0�����w�њ�l.�X��2����9�v�K�۱F��&�Ĩ�����<�$�q$F�X�sͷ �F���;Q�H
345
+ J�q��r�@�g��Dވ��b���W5�O|S�׷{5__^���3NtU;�U�����M!#�������R ���\-���꧟K<e� K7�?����h����f����D��`}b���^�lM���t�,W@�nӉ��^�x5
346
+ ��l����}o��Y{�9�����O�7����᫒̝
347
+ T��^�p����߽H7��_�R�I��O֌�P��6�P�e�֌5�!��<�WL����m��mK��j�~�3����Ӿi��)��c�}��*
348
+ ���B��WU�H�T��/��y!zA�Θ�9�KJ�.�7&��wl��-$Z��8' ���6�j�:�P&� fv�.x�N��w�wj��d�Ka�,6�˚^�*y��"�ȴ
349
+ 9)-Э��>w�[��hi6���P�T��kt9) ���-ɤ�'�3:��'�O��p.�m��}$���Er����{�e0;F������>�M��`$�D���ǵ��t�e�-l�V������k�ǗxW�Rz,���{�����ͲN�� 1K�/%Bp��c#�'�O���\����01��٫4G;��vD-�P%Yi�c�(!@S�k�ݫ;iNO�[����b�Jy�����}�vTd�����荧\.=ʅ(HIz�@GV���"�#�(�j���u$o�����2���������L ��bM �)%%.޽w�1n�v�s�[J�RZ�IJ�O��l:�t|�����2%��TR/��H
350
+
351
+ �R�c1A�(C�KI�}��a��h}���]��-7D5q���tĎ}[�wL7bԎ9�����S<L�B9|%0��4���o޻�B�zP��0�SJ��t�����4k�ǛM!���rw��կ���rI�RJ��ו/���-=��8'?}��/zl,�9�NjyCB8�1.
352
+ ̫Y����Im2��I�|���2��r|����� �2�f�^���@O�@�h�W��
353
+ �Gvr V��c-�}wlt��m��hq>%�1]�0iCe�09��l�n���Y\�#�#;%:��ȶ�4�O�s�A3�;?���,����`
354
+ ��c���m�Oq+��X��'"�9����e��ye��M���ƅ ��K$��A�Y���s?.� $�$�P�{m�70�c����o�R��d!��� Nm(��d���z2G��8d� ػ�m�.���Y ���3��T�����AɢX����a�q��3����;C0�bTW��ۓ۝]�������1��'�Xd5��g8^QG�z��qDg(�^Q�g�GG(�b�q�3dDQ����U|�nZ�%�j���0_~N?����c�R�t�q #GA��0�!��N�N�,�C�W��a "s�&s��d]M��Q� �����#�,v���(�q"�&�Ŏ�tQ��b�'��s�)�~�O�r�ݼ�ut�gd�J��qC]l�Z���?%�E�Gj�yΰ���� �#���*mN���?�6�!ls�L-�R�ԁ�b ᘄ��Ƅ�_�`$�V�|�0�f��[i���R�j���ʍP ���n��|?��@2�T�҅�"#��/�/�t�����}0G�i��^e�v{�[��할���ʺWb�\S/Ni?f �� ��ND�a�1��� �!�~�5�1�z�ep"&(TE^l�yJ�$k:
355
+ �TF�(���X�+��Ҵ���F�l�2�S_����� ��;��a�bcp�MRMl�N����T�'��C�9�FEE���z)�7B�� �\/lD�J�Ρ��+��eu9^V��5�Sޛӻ�O�7ƳƉzSi�2��V�hd�7��,[�l��uk8�
356
+ �o�<��L����_��z3`!����U��&2�xN%9��z�����|!e��
357
+ =����c^/�{�&�J}���Rf�/v��$Po;�i���`!�j�']
358
+ hEHU{�;
359
+ �;��r"R+o��tP[�RA�����~AAϿw�–�)�`�\@@$I@蕫�w-b��L�1~�����;:(o��TP�j�;�
360
+ `L,]3r�%wj�*tP�ZAP&cWI���;���b�j��`��歅w5���;�ڝ��'u��\QW#�v�%zR��Ծ3D��V�&�NP�[�Q�%�A�IKU8��m��RE,������a�P�ɛ*�^���5�.�������]��g�0��:JH�ْ�=ԅ�$`�h�a{u�
361
+ �;����5����^��ɜ������n1��vױ7'�%R0P��xǺ7եƻ"�DKp#����~$mj~���k�*�0q�p���y;��+j��9�"���6��j�[-���r
362
+ 05��
363
+ endstream
364
+ endobj
365
+ 19 0 obj
366
+ << /Length 26414
367
+ /Filter [/FlateDecode]
368
+ >>
369
+ stream
370
+ H��W�Z�H}�<��K�K`EA�]��YGFA�ݝ�t��t���7�N���R+ �����YZƧ=��0�d3��|�������^fg��L�O���d����$�(���Z~]�K�����k����o���i#�~��Scjd������~|��J���Rz
371
+ =��V����T�}| U����������9(�o^J�Ƹ[A���j�+�X���Z�b��CWۚz%�:�Er��\
372
+ >Cp:�!;܍�i�Ol4/�2�Ŏ���m�61௝�b��d"��Ajf�%���EV{��s1����Xؠ�����M�F#I���M�E�M����we����&����C�?�*YF��P�`�}H{ c{X0M�� hl�< cO� r�: c�D ��/���+X�]���%�B% ���$�tV��Y�5r��i�4;�` �Gc�=M �αT/g=��^��ݍ�q��;��b��ݕ��Spze��.u<Ta�c@������yv����]� eg��g�$�{�EC��id�:��txȠU������# �>'�������^o� R] R9^[�<�c���A`,,��q=����a��`��ە��E.�c�S迂����. ��+_u�@9�'��.�xʗzmQ�\��#x�
373
+ ���s��[A��1AP���F����
374
+ RO4H��
375
+ �n�;/ �@�Fg,�"��mʾ�I�|��VX�$bLv�.g�4!�믆G��+ ΫHf���:�;-L�J���#�ܳ�� ����q�v�c����GO? ���
376
+ V��g��D�q�z�q5 `�w5=�e���1��H�l�˽ub��M��Z�ǁ+�P���T���j���+�bX�HDz�zH�
377
+ �ƾ+)v�ڇ�&㹒js�N�u�^l��?�@��m��e���A�Y����iC����6��M���"؆���S�1��˃�!0E6��c��`�lCq5��܋"��?�TI>�N��\��Η���b�N� Qe +vB�P�#c9�1�)I&�-�xI��G��F�����FH���I|d �����)�\����
378
+ ~��*�@�
379
+ �0H-݊'T_�q���ӟM�w�-E��齫�A�7k_��.c:�~\o�nV��7d�Z>zֺ��FN�_hO�8W����U����G�ܨ
380
+ ��^� �d�Z�ɿ�-��ji��j�I+nUZ�K���!��w1�H�b{_-�X5=8�$�n����z�-<*�8��1�N����ρ}\��>k��BK'Ж��(�O�l%��䏉Ni����f2W���"���B��3���B��OOY��X�c̖�v��XNaJ�2 1z =' �����rt�:h��=��$��X~�6̥&�A���oI{�l�P�0s���8ə��[ uӵ�'�(�9�)K[OI�XO��?'������Cڳ��d,#�˾��Ʋ�d,w8ƴC2�?$c�1�mjW���}���%���
381
+ �4�z[��0��9�GZ��x��U�7b?��* ��b��1��0�>��
382
+ �S0��5M}���������AF�l�e�ς�p�T��K�0�lCk(ZC9ӑ7Lj�uЗ�F�c��zlz �`�=X�,�.� YÀ� ��3`\�~ ̙�YH�t�_�R�tP��AF�� +�-�M��s��}��jPÜ��Ì���ľ�����P�����t�Cq�r"��֌����;��ξ�˰�����X�45ձ���=��hOntq� �1���.S����8�[��ѕ�Sw�!�P=�?�K��KY��]|`x��7"�H��Vf{���]̗c#���C���G�3|�ƱN�����;ub��\x�S�Ooׯ���z�\Ֆ�X�9)�{nW{�>���8��EN�y��F>[�6�x�ѣ̏�wHBC�۳]n��V jT��1�A��ئ��D1o�}OB���Z_t�%�aKl:Ŗ��K�p�m�B��ŏt@<�R�D�� h�9�N��E:y�Ð�E1<|`��۩(�Wo +[K˂��e�̋bJ�)�J�z)�M��D�S@�)�������Y_\���b@'���h��o�h+[eK� ���6v�����P%f�J2�6�����4)n��O�tI�*���2o}4Aki�F>�����_�DCr�&\�i�i�G��-������~n��0?� /�\�/g�Z��y��kf��Y��E��R {|�?Uo��R>7��2�˳�'�/�.��C�,W*\�9~���s����.���1������g��>{<�?I��7h���:��z��X��/8 �L$L�W����i�����`!�p����_!��~V�R����y�$�nܻ�������>�F_���뷺ܫ��o�'��
383
+ s$��F(�H���Of��� #l8��X��j��Jb�yO��sپ��K�[7>�H�<�%A����Ċ�쥴 ¹2�C�UZ���T�1�GU��s�nZ�w�
384
+ �F��\R��r~�ξŸ�)�q
385
+ ���-����e� ]������g6�C�*П
386
+ ��ت��U�&f�^�Ñ�Dtڻ�,;��mI�ZК'����=���{��{#��]� ��ciy����̓�aH��h��I�E.$�>��� :d �إ'���J�:��*�ip��%�(TNJ�D �M�9Ă�[Yˢ5 �{Ay�I�����H�"߸��?�d �����I@�POP�x���j��C���j�ʅ�2}�$��DDV�Ʒ�M��f[X\Р7��c\nM.����{TJ�nܠ
387
+ a}�/���ZsG��:��]��`�;&�4,�0�5���xm�?T3\�A�i��O;�W��d�T-&_�N���iƄ�$k�8l@�+u��ج�W ;��Teڐ@+�)����L�Y56�����]�U��k�(��~6���v�PkM�+~|+����=���;x��Q���I��X�ӭ`-y�0��Zc���o���>�u�rw7p饱�����A�`����,vk��jѾ0����{ �d�����
388
+ �lZ\/� 3��Y���y�Hhp�GX�w��T�oS�(M�@y
389
+ |�W��YHXfY��ɐ����=l���k{#����W�� ݗ(^X�p~,C�V�X��@C Oo������~:���Xl�P�F�r�"�P���U2p�Jj(���s�s��Zi
390
+ �S����]d+�u:j&�Ң�-��J�[�ܔR����g�9���B�Ci �"���)�_��kS�8���]��%�����O���iJ�_�S�X�Iz5F��e��B�\|8��#Bxh�C�ǽ%�@��e�o?�*"�<�_�W'�B��'�O��`�� 6�&��<�^8)�(��!A����G�/޶Mx�{��e��t�q�L&n�!
391
+ �A��}��
392
+ �ñC�)��c�?����r�G�)/�Ǥ �c��/+�t
393
+ &�|�&��!�,�� ��cX���>h�%
394
+ ����Q�: ����:ň��}s��`\�#�: ��Z�u�����A�$0��1����I����F���;�a�_������Cb
395
+ O��w��&��O7�c��D�J���� J>
396
+ � A4�|*]* �TyJi�r�,}�����k����|B�{��P.�2�#bY��/��"�J�'
397
+ P���O�R_���j�X��J�߅%��]���1�h�#�@��v"�<��!,�7ʍ
398
+ ~0��}W��3R�����d�D�$X��v���H2����:��+�0 �I�qU��g퇒V,A`�'�R����+�l��P������Ȃ� 4�B�P�>�=�s@\0"<��i�R
399
+ �¦[A��z�H
400
+ ~��!�<����� �<�����H:��ӀR�AH@\E�r�(c(�p#��QߣT�G��5��%����# L
401
+ ��$Waw
402
+ �}���u"�8)R�ѽM(QA�p�:0~�����`?91��TRKTN���� ��C� �@�I�T@�-�,0D��(�� �€��r 9�AyH�VAy�A0�;�@0�� ,��0 G��� 6$*+\Ը@5�)q�<X%2���|�x�/���QP9K��������9�͒w`��1�=� �c��KcBqK��vD{�,#L�ru�D�؄�f00% �&��Hs�i� a|BL�Z0��w� %>���E�QR���7�h츩��2��*��� �K�@k��E
403
+ 9X$i�U�S:�f�0K �{O*��^���Q�e:��%��BH���7�#E��T9��&Ug!��8WQ �Su��+��Z'/6����nrt�0�/��A+�m8�C'�.4�u 0�� �N�Ъ�f�����_�Fw#��Mqx�I�U�H�H0�X��Ls�-�z�v�w/{++���G�tu�|ܡd��=�O�b��L�6��S�t�>ɗ��Փ����&ۨ��g��e�����8#?d���l7�Q�^^]ꍛ�v}���l>7������ه֢���{�{�����53����]���{���|�������a-����{�Pf�˦���>}�)=l�M*�N�����[����'���ܨ�����F�Oz�@�>�U?a��{h��7O�Җw�9_*�3�أ�wu�����x��|�6rmV�{�|����m^dGb6���������V}`z{4�oݎ�G叝������\\�������z���
404
+ �m�L
405
+ V%�nX�����F-7�Ѓ�J�Q���Z�p?^3ۧ�A�+�V�^��Z/G��J�^[[�Ya���N~�~�{V���罳�o*�lYUm�O�C ���SPD�;@l���o�:�׮s���䯑/�X��H�hj���D�Y*�/R�7�ӿ����ݪ��!��I��E�orHR���Z*j���'yxq �c�7�-}�V�C)Z������o��r���Ua��gd��{�&rcPt�\�Œ��Eb����R�9����4B֋�q֛�0��17�v��̡��o�%HGU�I���_=�?=M�I�a����!� 'BU�ͻ���<�T�P��Ű�fY���%G=S"m�zT��[~̟:�9�� �R.1A�����nl��h��n.�e���
406
+ �-��b;��)�9�zM"��,��-����֛'�H+Gϡ��x����&����z�zM�a HѸz?��/���$�_t�'
407
+ 1tUE�IkYsU�@�ܲ�Q̒ll�í�@���쑏E��2���N�LD���Lr�Z�j0g�C70_����h�����F�;���E 6 �G��D۝�^�8o���uD���h�o��|\*R��&�qJ��#��U�U���m�,~%A����� 0��R�� ЏA�x��yC��i�'VE��:�U
408
+ _�] H�MU�1P��nBb%�gQ�L�ۂh:��w�3h�R�+��)��` �3R�#�K@`�b�� ����u����`�՞�]UaEb._�D�vX�{[��9�!.}��/h8C;H�*��R���ޛ�:~MpT����s�S�AJ[j�I���hZ�2��ͪ�}SHX�]f�ȯ[Z/�9� �?�0^/�:�$��Y�����l���������2�5Zà~4�en�U�ScG�@�G�`g8���T<�[a0Ρ�x��<�����6�O^H��BY���� �+����f����Ö�Ϝjy�c�K'z�N"���,(��3��ʯ�2Xw\[����:�6냋PJr�-����[X?\��_�;���!�6e�)2��H��;p� d
409
+ ��}ᤰ��y�C��Կ��]�W7$��̄"�a0�������
410
+
411
+ �m��F}��Y��޽���� ������0}�+
412
+ "��Y����C_+}Anv��� ;;]M3NU�:����zCp#��25&��
413
+ ��~w��.�*VkV��-rXk|�x�?�|��&����; ��D�{dMڌ9aE;��h����&�b۔?��:���=���<��~Լ��wW�lX&j6���� �B5�N[<l֪ߖ&�[c�f�)5�;�'���陞Px��a��[�o��E%���V���Q]~�r5�3|���#�)I ���϶p���N�&R8�U�����Ým�W��:��Bߣ�����<E����{?ԯ��Bt_�nZ��ŋJмQ{��3.�>l �W���H�7�G�p� 
414
+ %��H�P�BK�6������_c����mJ���LKk��S�#>j�>jWl�nj..^;��/�^������)ع��[(�p��GSN.vm�s1y��-Ll����@g�m1�$Dw���8��7N�-����p��˼��{~&KtR�!$��rօ���7���m�S���0�p�i��E.Ta��x�9�n �P���x��k���W��,����pѰ��k
415
+ *���P�T����a�u�tA:�`꒜ɍ9W���� * �{b%�y��݁�����y}�vs�
416
+ �h�W��h���3��'��
417
+ ����Ƀ��!H8#p3��l�p7�F��<���fH��V��ۤ���>R�:@�j3��{�����;ia��g��Z���t"��k$F
418
+ �����o�Z�rF���V���3`�Cc�乫��bn��o�αF/\EA �L������;��9f��,����V�:ź�Z+}e]�5{cbB0˘m��AFefG������l�GGFQ�~=�>"��c�i��8����}��IԈ��c��x����K��
419
+ n�'O�
420
+ oGИ�[�൝��������.�Am�5�/ݹ���i��Ƀ��{q/���"��`����K]�$Q�F�lT�Ie4��_�:�ޮ3�o�P�en��������{���ӝo�FY���lE��*������ϗ�ɤ(Op:͐[$+�Y����V
421
+ ̈́'�(w>���d���L
422
+ "Ɍ�Ӣnf��&)�H}S�$ͭJ֗w�I
423
+ %��"e���h9b�}��?6�z�V6�i.
424
+ �¹�\+�L���c�-��b���p!B�}k����"D�wm�[��v=����e�����~��Fh�H�'���p�
425
+
426
+ ��1���S�0/�R +��Mk��Wo�K��b������V���֝��Qp�p+(�5�ü�3ޖ�e!ٕN���'?����ƙC�~���H��"q�c/ا���vKs�e5;N�6Ql� H��5+�nY���������_�n@'��yfq
427
+ �䡝�~V`�raE����I�Dr�2Ě��n�$jY^���=2�z���[ �_I���څ��E�O����TR.鮨�t�J7)"<��?�{�s�s cX^��\saez�1�K2�@������xô�u~@�y>-}�F��|�A��8�ʼ8u?��S�
428
+ hc�8;
429
+ e�����l�\w1�8����h�L�����@���P��z�̺pZ�͞���M�"̔\�'�Ͼ�]��+�<F�:�9w��
430
+ �X���k0;)&:m�]'�ӓ�ma���,�8�^�ޟ�沿s���okc���X������I��fӏ����q�h2|����}��e�'��
431
+ t4R�]�����kK�W�g����t���;����ȓ }�j�K�n%��*F�z%e�ِ �(y����d�o��̾�D����~"G��<�o�X�F&rU�(�,��\ъ�����RYZ�Je *�k���+�s��fH*�� "TA�H��Z���]� ��I��H0��l
432
+ uy�?]�I�I
433
+ �x�B^̀�}�M�M-g��������i�;��=�އq�A����fm4��P����/
434
+ Ϋ=&�EX�eSl���َ9cv�y��Y�q`����v����~P�:WDx���(�3��̑�ڈ�`%e˾:+�5u{&�:QX1��J�ye�t��H>R�5{ED����1n��`����F�vB�D���
435
+ ͥ��.�[8Y�Q������Z����v8�*����np�nG%�x��[{/\�oys�U�hCQX�j
436
+
437
+ ̱�ccY�>��Rr���[f�h�*t>���w�y�6�z���ӥ���G�#��E{��1'UW�~��k��"��A�Pj�zx���W:r$[��NȜA�~���g���ք�L�h��ѣs�X��1��2�r��K��'j�<��ܠ���+�D}/N�~�Q�qe縵�r~��=u�����huNoJ����������Nx��Ƹ�����)���&FYx�8��b�����U���h�ߙ\���)�V#�ْ V��LjEPLѰ�?u��
438
+ kx� F���5��܏Ac���*K�>Q�a� `���0z���C�e�R:EP�1�8����#�3� ˨G]�,� �餋:�H���>�
439
+ gw�S�L�y�R]���=�±z��|9���ی�v�b�������0*��c3�,�5a�r�ֵ#W)�x����wRXP�FyT��Y���B��� �0��j]��!�^N�Qq�E�7�F�K!�2_`%ܦ�Y��R���ӈ�^�� i�7���z���^o'NY���9�\�݌ ��jm��3�&�`#_�W�h0���&Y��� mX�!V9҇��G/M�x��\h
440
+ ,h��y����ڂ�Y4Mh����0���c����������}�`��u�Q���/x���@`WH:e�9�*�;�!$�����AP��f���� 님���tC+�*�-+�͜�X(�'��1���c��?�v[�Q�B������s�:�c��2�=e�5����9F��c���UU�(��!A�H0� �Y �"��$H��Xk��u��������]�x��e":W"����€� �`k����c�-=��=EX8����ͮ�fT��3��,Q�A�ʵ͑Ip�u��V�$�̩��:Y.N���p�+�sw�#>�4N��p:�w|'�z�P�Y�W����Z�Q�#�\��:?�p�-�r�:�g#/|8p��h0Z��v�OΝv�N�&ۓ�QVy� ���ӝ������4�3�� ���Ё�.�
441
+ �U!yA�=홄RÞ�N�&�s�[^u�ο���,���x*:�թ|���6Nf3�MMm���œ�������M0윒���������b��-�)t�q����v#JY�I�dPB�w�����jMHo\}
442
+ ���O��\ �o�~�x�5pd��5W�t8��|(G�p��T���Ca�-�݄YV���'D8�Hw�5���e��� ��qv������� S� ��ޞ>$ؘ�.�����tU�R��Ml,�a����Z#e��`�.RەC�@�.d���f��k\k�����
443
+ �N�L!��������O��M��5�,����� x��A��Q=��HxU�񯜽���E�\+V��E�f�|�^['5�F�eVo�cb�m6]�!�u-�.L,Q����*����nl����ϒ��91U��Ynj.�'�
444
+ ֹ���'�#�Cx�mWX|�uK#����c���UU�0��!�$"�YE1*(�41%��\g�o���*���F����:���
445
+ H���n���f�z()
446
+ ~[���^�ޞ|�K���\���Y�
447
+ R���[-f�i��V/,��M��![3�Z����9T-dL�mڠ��c
448
+ ����^��ݠ������0����u�!%�<�J��>��^}��e(��Qa��O��nL�o�to��w�ݩ�W�d'�\��-�ų�^r0�5�[)eV��(�g����b7!���
449
+ ޻����0�b�0�H0\ԁMg����]ƛݘ
450
+ 0{E9A�G�ع�PFu ԔLr�`����UȘ�g���m;ʾWz�ߏ�K������L轹;�X%t3=��,V[{�|_Ճqi��aA�Z���c�X���0�>��v�����s=*N��α���K�NWY(�.H�7�����66�*4ߤ��X`� �S�� 1B���|b��l�C�\~�S�_[YG�C͠ݭ<�(��-��r=ðB'�W���F�:���5$���{�w� sU��c�F����P+8�HŻb���}�=�\ܻ�®4�T��m9S���$.@�����q˶׫�D�y���YW�sg��*�.)�N�#����U��Y&C�ޕ����3�<Y��h�\<�a�1��x����$q�\���H���'�:ت�sTʓ�S�C,�Re�E��A�u��[��>M��* � 41������s��� ;T?wP �>@�s�g��o��)�~$�y�﯊d���hlP<�MjeL������t���:���Y.l��>.`7�?sBn���:]���}�������
451
+ �Wb�G��t��|е�]�����U��^�h�!�7C��S8m�>X<��s��1���` ��\�kQO*�V��5J̢��?�C���S��<I��|eo��_8�vW�w�{}��<lQ�(*�Z�R����KPa:`�F2��t
452
+ V�c��6[���@s,�@G��_��Q���o�8����[H`7R8_X0�����쀈�™��S��M ������� ,�n6�\��y>=5�[�����rP諒il9���� �>��ܬ�?�u ��w+�:� ����5Pe�g����Y� �O���W�������� ӭWZ���
453
+ �� ��;�ox���%i����I�<@��o��S�@1f�@�J4I���CA9рO�%����!
454
+ [�A+�=B2̵�z�`=[
455
+ `��%��k��Ȝ�^������f=��Y�@r@^�~�yT�@�8l�}�M)^�`�H���,����P.�������d�>a��fߚ� ���i�o�_ȍm.ǀ����[�� zѳ��ժ�F��f/�|K�.V�{R�sOj��u}^�f���v��6��&����ԧ��ۡA�҅���8v�eV���?���L��ŜK�s��h��7�;�t��Q離T�LN�}�sj2���Z���G�b���k7*�R���ڕ��
456
+ ��
457
+ ��� �
458
+ ��oH��+ ���AÁ�V&6�n�Is��l!;�z�5˹�??
459
+ �lL54����?,� �� ��k0� F��JS�3D��i"��({��+rgj�$r�z1*� ��%�J�&W���a7���ב{������v�m%�,�/�(-s�AEQEP
460
+ �u_���̲��:� +kgDdĎ]���.Y�}
461
+ Jo��8��5x�ظ��)��Uhz��p�74�l��&<�uw�^|�e2H��Q���D� {1�^�t0�xIx���s�Oٹ��(�<~�9 H/���-�G�׍`?����j��u/T^��������j�ң� �ܗ�n�y�~-J��/��4'H�;�v�ബ���Oo�#��|�XHr�]�S���q!�9&�r�;�����dI�v��y���|~��y��JMO�|�J�ր�.���w-��������ؼ�I����t���A�&/�q!)|a��A»[��� ���/�lUo�G݁�Չ�|(g���o��i�y�{y� ��^�/����fft�/?������/�_�����u��v|w��0:��3��9���f�O�R�t��vZ�g��'R������䦴;���_�+��=��^���z���pD�nz]��l��u�
462
+ �11�-3z]]�.Gy�?�˓�����Z��#W˪���Sm�;]���yO_�!�Lw�=ϋ��S&�K��A�}l�zz\/�����R�h����E��'y�;ڨ���k�3��W�0�AƯ]~'b�M��i$��� �O���C*�q���xom ���0���^�*~�\Z�]i֒U��⯭�����M��ۯ���~�9�XV:$Y9�쨒�n��}�:zl��n#���+��������0��
463
+ ���bְ@�PN��Gː��FtK#7� l1{<a�W�p�w�"��Di[=`����Yp � �E�v�q�k�G
464
+ ��P��u&��ݡ�aT)w�S���K�+M��$bn˓�:!"[D�~��F8�at�1´�#j�%���Je�S� �$�4�Q�A�}��
465
+ ��T�v��5���Y d�"M��|�e臩md�4�V���D�(�`�h���0��+�h� �1&v|X�4�`�qW��$h��FR�b��IJ~zb�'�{�1��H��0���Ȟ�1P�†!���?� �j�9��B ;鸆&����Yi��@�A4�R� )3��!�ćQ粇39�L�M+0+"A��0�q㚻�P��,F��< EU� n��@S�!D����)�.Mnm�;g���/�h�S,t
466
+ ��ѥ�����aH�cHH��aڪP�f:#��!o��(I[��yjm�`�a��0Th���J�L�p� ��l��@�%��b� g�����(DH�gi
467
+ �(r� %� i���jf4V?~T�G$qFH8�����k.�q�S���r�Q`:j�)��] ��ߴS�MI'0�w�
468
+ ���*�A��R��.�k�g�p�ҫDZ�@wx����ohL���� 804ᮯ�j>�of�� @*��lvW?�3�f=���7��@?�L��H���$�n"�(�wUA�.CL{�M=�/@{&I�3�*�4RAcFcDe��TZps�~�T�*���n=�>����u%'��z�>�6)Fd����v�A�o�h�sQ9��� �3& �z~1�j~�� �,0T���c��u5\J-&�w6L������=���5�%�\�¬�F1=�/�
469
+ ��Գfm[}�.�Xbs�0-a���(�_�t�c"�S��7�]�����?ov|;������'C�DB�GC�.���vH<��E�2�07�]ѵIA�%��Ћ&\�jn!-:���w8�#>��:!����y�&&���9Di�t����̢Hf�O$�1��>
470
+ =?��6@�Ŵ����c[�|b�o�����c��c�G�֡�l�0���+��Ekz���J-�5��/d����1
471
+ �Ʈ+=��Xm�,���Y�5����\�z.�v�2 } r��2�7 M���k`d�n�`��A?������
472
+ ��v4p#w}���ݿ���ퟛ����Gu�ō�沉D9�l�`���X� ��0$�?�t����k�����;xAж�rϜ �7A�ʧ#����U�[�e��e.��3w�T������D�#Xv�<i��#14Jg�p�(K�04W����7hS7�B����ņ���H�5� 2���p��x�)ݙ�ʢ�l�^� �7a���h��,��
473
+ endstream
474
+ endobj
475
+ 20 0 obj
476
+ << /Length 1469
477
+ /Filter [/FlateDecode]
478
+ >>
479
+ stream
480
+ H���M�7 �OPw��� �HQ��ql @�/<���L��q0v��y$�����U�M�k���GJ3�D�f!NY��D�� �Pj���� 5q�2��`�8�
481
+ ���lD����)���?���q���|��<�7v
482
+ &N(�>���v�Gn�PR҆j�]���
483
+ HIE���*�@r�Gf�R��9ˀX%�78*��`�m$��3çt٭��:1;Q�.��2���ڋ'�$dH5u��F� ʪ�5�`����T�o�x���KO����8U<C-D�}
484
+ �%��\#���`.��9����a.�T93y"
485
+ ہ`yxvG뚖���\Fd=���X��Y"�A͋�ʰ\
486
+ ��^?飯���LYva[kG}J�Kj�do�M�L��u�J;�r߭"EC���J�D��d1࣓+�z��JS_�S������s�Ů�)εĪ^��J��� �xo�1��[W� {�-�8�M ���<x#v>�\��W
487
+ m��������Ie�g��q�����e�6�2�'�X;�t{�3ܦj�i�
488
+ endstream
489
+ endobj
490
+ 21 0 obj
491
+ << /ColorSpace 22 0 R
492
+ /AntiAlias false
493
+ /Coords [0.0 0.0 1.0 0.0]
494
+ /Function 24 0 R
495
+ /Extend [true true]
496
+ /Domain [0.0 1.0]
497
+ /ShadingType 2
498
+ >>
499
+ endobj
500
+ 22 0 obj
501
+ [/ICCBased 23 0 R]
502
+ endobj
503
+ 23 0 obj
504
+ << /Length 2574
505
+ /Filter /FlateDecode
506
+ /N 3
507
+ >>
508
+ stream
509
+ H���yTSw�oɞ����c
510
+ 2y�.-;!���K�Z� ���^�i�"L��0���-��
511
+ �V��)g�B�0�i�W��8#�8wթ��8_�٥ʨQ����Q�j@�&�A)/��g�>'K���t�;\��
512
+ �x������-�����[���0����}��y)7ta�����>j���T�7���@���tܛ�`q�2��ʀ��&���6�Z�L�Ą?�_��yxg)˔z���çL�U���*�u�Sk�Se�O4?׸�c����.�� ��R�
513
+ �ꇆ��n���Q�t�}MA�0�al������S�x ��k�&�^���>�0|>_�'��,�G!"F$H:R��!z��F�Qd?r 9�\A&�G� ��rQ ��h������E��]�a�4z�Bg�����E#H �*B=��0H�I��p�p�0MxJ$�D1��D, V���ĭ����KĻ�Y�dE�"E��I2���E�B�G��t�4MzN�����r!YK� ���?%_&�#���(��0J:EAi��Q�(�()ӔWT6U@���P+���!�~��m���D �e�Դ�!��h�Ӧh/��']B/����ҏӿ�?a0n�hF!��X���8����܌k�c&5S�����6�l��Ia�2c�K�M�A�!�E�#��ƒ�d�V��(�k��e���l
514
+ N'��)�].�u�J�r�
515
+ �� w�G� xR^���[�oƜch�g�`>b���$���*~� �:����E���b��~���,m,�-��ݖ,�Y��¬�*�6X�[ݱF�=�3�뭷Y��~dó ���t���i �z�f�6�~`{�v���.�Ng����#{�}�}��������j������c1X6���fm���;'_9 �r�:�8�q�:��˜�O:ϸ8������u��Jq���nv=���M����m����R 4 �
516
+ n�3ܣ�k�Gݯz=��[=��=�<�=G</z�^�^j��^�� ޡ�Z�Q�B�0FX'�+������t���<�u�-���{���_�_�ߘ�-G�,�}���/���Hh 8�m�W�2p[����AiA��N�#8$X�?�A�KHI�{!7�<q��W�y(!46�-���a�a���a�W�� ��@�@�`l���YĎ��H,�$����(�(Y�h�7��ъ���b<b*b��<�����~�L&Y&9��%�u�M�s�s��NpJP%�M�I JlN<�DHJIڐtCj'�KwKg�C��%�N��d� �|�ꙪO=��%�mL���u�v�x:H��oL��!Ȩ��C&13#s$�/Y����������=�Osbs�rn��sO�1��v�=ˏ��ϟ\�h٢���#��¼����oZ<]T�Ut}�`IÒsK��V-���Y,+>TB(�/�S�,]6*�-���W:#��7�*���e��^YDY�}U�j��AyT�`�#�D=���"�b{ų���+�ʯ:�!kJ4G�m��t�}uC�%���K7YV��fF���Y �.�=b��?S��ƕƩ�Ⱥ����y���
517
+ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s����
518
+ endstream
519
+ endobj
520
+ 24 0 obj
521
+ << /FunctionType 3
522
+ /Encode [0.0 1.0]
523
+ /Domain [0.0 1.0]
524
+ /Functions [25 0 R]
525
+ /Bounds []
526
+ >>
527
+ endobj
528
+ 25 0 obj
529
+ << /C0 [0.0 0.733333 0.831373]
530
+ /C1 [0.0 0.341176 0.631373]
531
+ /FunctionType 2
532
+ /N 1.36471
533
+ /Domain [0.0 1.0]
534
+ >>
535
+ endobj
536
+ 26 0 obj
537
+ << /ColorSpace 22 0 R
538
+ /AntiAlias false
539
+ /Coords [0.0 0.0 0.0 0.0 0.0 1.0]
540
+ /Function 24 0 R
541
+ /Extend [true true]
542
+ /Domain [0.0 1.0]
543
+ /ShadingType 3
544
+ >>
545
+ endobj
546
+ 27 0 obj
547
+ << /ColorSpace 22 0 R
548
+ /AntiAlias false
549
+ /Coords [0.0 0.0 0.0 0.0 0.0 1.0]
550
+ /Function 28 0 R
551
+ /Extend [true true]
552
+ /Domain [0.0 1.0]
553
+ /ShadingType 3
554
+ >>
555
+ endobj
556
+ 28 0 obj
557
+ << /FunctionType 3
558
+ /Encode [1.0 0.0]
559
+ /Domain [0.0 1.0]
560
+ /Functions [29 0 R]
561
+ /Bounds []
562
+ >>
563
+ endobj
564
+ 29 0 obj
565
+ << /C0 [0.0 0.619608 0.811765]
566
+ /C1 [0.635294 0.862745 0.913725]
567
+ /FunctionType 2
568
+ /N 2.54334
569
+ /Domain [0.0 1.0]
570
+ >>
571
+ endobj
572
+ 30 0 obj
573
+ << /Length 12690
574
+ /BitsPerCoordinate 32
575
+ /BitsPerComponent 8
576
+ /ColorSpace 22 0 R
577
+ /AntiAlias false
578
+ /BitsPerFlag 8
579
+ /ShadingType 7
580
+ /Decode [-1262.06 487.27 -1262.06 487.274 0.0 1.0 0.0 1.0 0.0 1.0]
581
+ >>
582
+ stream
583
+ �� ����V �d��L�k
584
+ ����� ��
585
+ �AM��^ �����) �m���8 ���� ����V �d��A��
586
+ sAI�-_[
587
+ x���] �ao���������������) �m���^ ���2^
588
+ �AM�\�� � ��5�� �^s�2] �^�� 1 �E����u
589
+ ��_�y�� ���R� ��A���� ����� ����� Հ����
590
+ ��C��(I
591
+ �G��D� ������������������ ��
592
+ ��_�� 1 �E����
593
+ ���e/[
594
+ 6e)�(5
595
+ \+l�� i ��� cB��!
596
+ \+l��ݽ
597
+ ��^��F�
598
+ ��6�h^�
599
+ ��O�=�� ��*� � {�Q��� �$T�e!�
600
+ �VQ �n��������������� 1 �E��_�ˑy�GOw�)��iUo��
601
+ \+l�e/[
602
+ 6e)���
603
+ ���˂����'o߶ ��c� J[��� %�������������(5
604
+ \+l�N'� OKK�r��/���Z��E2u�sP\�3���u����� �����S_����5� �MI�h^�
605
+ ��O��F�
606
+ ��6��ݽ
607
+ ��^�?� y�c�-��U�E���rx�\��� �5���������������� �$T��} ���� ����W� �L��X) ~"Q�3jU �j��]M�
608
+ ��o�at�
609
+ �.��d)�
610
+ �{�h^�
611
+ ��O�=�� ��*� � {�Q�ѡ {����O ~m?�7� �EV�9ں �٠�������������h^�
612
+ ��O�d)�
613
+ �{�at�
614
+ �.��]M�
615
+ ��o��5� �7���v�~R�t9c����yX��W�~W
616
+ ������������������iUo����>�"����t�����t9B�Ʃ_����W�_'��4��a���J�9.����e��Z��E2u���9-߶�
617
+ l�@כdXx�a HR�v��ЈRzD��� ������u���sP\�3�)qz)i���E�����Y���F�D0�������������� ����~W
618
+ l����d����:'��������q�i(6����r,�*�2���������@כdXx�:p�e=��4Y)el��.�f`F�' %q�"�S�u�"/M�r"�(���H�.���z�5r#�� �5�n���:I#�>�3�B$���-W�$}��) 䀚�/'5�Vu������������W������oO�����;����� c���;�a��U'"�����~�1���9�M����h�'�����UQH������>x����P
619
+ ����;����S�mf޷�UL������������������������h�'���9�M���~�1�rb�UA����� ��yi��B��pcA�(�|���Tz�|��������t�o�t�?T��t�����m���������c(���mOϴ������������|������|���Tz�pcA�(�yi��B���֎�c���y��@�&��'�<�y��#U`q���#�Ğ?���̽x�BC�����V���� ���z ��6����{D�����������#�Ğ?�#U`q���<�y��&��'����
620
+ ԇ��B
621
+ �s����A
622
+ ׇ���/
623
+ ������r �wM��� �e��ʨ �}L���� �����Y �Z���z� ��k��6 �1��)� �T���ʫ �A���������������ʨ �}L��� �e���r �wM��/
624
+ �����0
625
+ �O����
626
+ ���k�
627
+ �@(�[^: �5��;� |���B�� �e�e�/ �dO���� ��J�~� ������� ����x�� ����]� �3�������������U��
628
+ ԇ��}�� �X?���J��������7�h�k���s�Ӵ������[������B� �X?��/
629
+ ������A
630
+ ׇ��B
631
+ �s��<�� ���U��Ə�F��� �C ����������������/
632
+ �����B� �X?����������[�������[�����3t[����zQv��h�z�p �K��k�
633
+ �@(���
634
+ ����0
635
+ �O����� �d��9��y��G��\d���� �Q��������������B�� �e��1� �9���$K YA��l
636
+ N;�]�
637
+ �>.�1�
638
+ ����k�
639
+ �@(�[^: �5��;� |����� qJ���}E R������ ���� D@ �5��������������k�
640
+ �@(�1�
641
+ ����]�
642
+ �>.��(�
643
+ N;���� O*��� }���r���M���{���>�O���3t[����zQv��h�z�p �K��B�+ �C���- ��R�RK9[��>d�wc��������������l
644
+ ��rd�Q�e���[B���7�d���K�m�n��%�pšŤX�r�=ˤY�i�K_�`E���q�^z�����gL)Î~�������������t9c������tWW��O �V_8�.�f`F��O{���~�9}GO�=K�s H�_i(c���nHX�k���E�R�戊����'M��@�E`�e���X'k�y��mA���d��������������E�R��nHX�k�_i(c��=K�s H�� Th����Q�S�����9J��`)9��*�s� �$X�S_��KSKk���x���i���SMC��͝X����C [�W��7�������������$X�S_��*�s� ��`)9�����9J�r�7�QA9Ϊ�4��$�Z����������u���Z��f��������]�;����T g��C�j�ww��2���C�ri��������������Z��f�����u��Z������4��$��K�b���Q������j�̭�
645
+ ���������=K�s H�*XA�÷��p0�L�8��� u���6M��r��=����`�d�h`t�B����q�������9J��Q�S��� Th����2�Hd��H���������}��t�������������9J���q����h`t�B�����`�d�p+<�`�R�97g�:�I�p���ts~���0;q�4��$�QA9Ϊ�r�7�X�ojM�<
646
+ ��y�D�
647
+ ��s�z���:�I�p�R�97g�p+<�`�����v���0BD�����3���˗���������������:�I�p�s�z���y�D�
648
+ ����
649
+ ��n��kc��d9mRb�Y�L�)�RB���O�9��1�k��VZ�"�����"��"����x�]<�YL��g�n��M�\�4����K�,=�l��������������VZ�"��������w�� ��BV�S���1Y?�0X��y��7�N�/�CQM���M��M�h�Y�L�)�RB���O�9��1�k�-�g1���#}1�9�<*���Fq��Ҏ����������������9�Z����PQP�W���<����@Pf���Y. ��F������Yэ:�V�Dg���;�b������y���������������/���W���
650
+ ��������e�$�����=�Z��ާ�� ���
651
+ ݅�Շv���O�4]�>��� ������������50�����U�%���W���Q��l �P�Z������3J&��������������������� ���O�4]�>�Շv���ө��T��]Q�#���3+��h�N����������������0����ӂ������p���A�o�N�9(��N�=#�����iR��������������=�Z���n}
652
+ LY�҇v�����3+��h�Vf; @���W�Ӟ��H���>��J��`�V��2���c>�F
653
+ ��������e�$����^Q��j�V�ZC� ��!}��։�RcI�������������|#~s��� �S>���׬N�B�5��O�n�5��&ԏ�1��X��+���-�����9���ӹ�
654
+ ��tO2����x��%���|�NW����,_}���A&v����T�����PO8
655
+ ������9��+���-�%���a��x�+���bi��odo]�D�� `�p�c>�F
656
+ �iz���o��ӱ���[���)��3�n��w��U������������������5��O�n��{�Q;���S�Xz ��S�O�u��.-$�+��0�;,��4��b-�������ѲP� ��+���-�1��X��5��&ԏ��Z�'27��.0-�p��ޓ�F��~��� ���������+���-�ѲP� ���������4��b-�}4�����y7��w��u�n���r����^Mf�}��bi���x�+��%���a���������m�6t��Y�� K��-��\����������c>�F
657
+ �� `�p�odo]�D��bi��
658
+ ����,������I�L�X��G�ƒn����H���>��I|��N��L������S����R7r�9�M�e�i��;��6��������������bi���^Mf�}���r���u�n�q�N���l�2�E�iW �6�l�����f �Y��� ���i�O�
659
+ ��)����g3#ӣ�c1��k ��������������������S�O�u�~�eP���x��Q��r,�Rk��q�'��o���D��l�*ه��sJ��(l�y�}׸��4��b-��0�;,��.-$�+�~��&"��xi�&���vX����|�}�������������4��b-�y�}׸�sJ��(l�l�*ه��i�n��n�e�#��c�a�
660
+ q�M�h0p3M�nq�o�!�u�n�y7��w��}4�����v�����p7��b)�l,��vp�r�>�������������u�n�nq�o�!�h0p3M�a�
661
+ q�M�]R�Rb�Y(6���Uy����\(N��b�a`#�iW �6�l�2�E�q�N���jS�PMn�c��P��_�H5`&�f)4�&������������iW �6�b�a`#�\(N��Uy����Q�����O.��`�N�/��T�����[f��T�b"B��N�c1��k �e��G&�_+�$��X�=��UĘ��J�\v��R�������������r,�Rk��^hh����eE�e��R�$�fI�'R��cN����^��������=�eO���;�F�l�*ه��o���D��q�'��/�>:��c:A���B�.�����/���������l�*ه����;�F���=�eO�^������Yً��h�S[�R��L�2u�:�����_��_�ZV�a�
662
+ q�M�e�#��c�i�n��n�����W?��{Uȗ>���n�����������������e��R�$�!͞@����b�̙��p���%K��9��:�� �|�����]x�D?�n��^������cN����fI�'R��"v3h����M�����@�#��Z�������������^������D?�n�����]x�� �|����MV`*��m�3�����w�g��R�=����b��L�2u�:�S[�R��Yً��h�.d�9���\8}�5���[z�����������������a�
663
+ q�M��_�ZV�����_�L�2u�:�FDX+�?N�>�Y�9��)�W����<7����=���Uy����Y(6���]R�Rb��n9����k����h�Q�n��<XS�������������Uy������=������<7��9��)�W�4���T�0��+
664
+ ����]�����j1��|^�
665
+ ����+����=V��� �|���9��:���%K��H1��`��@�~զ����Sn6����}
666
+ ��������������� �|����=V����+��|^�
667
+ ��x�.(�q[{�8��jG0����xa��!���f�Ё���w�g��m�3�����MV`*��g�/'���JRP������m��� �Y���������������
668
+ ��n��kc��d9mRb�Y�L�)�\�(�n�\����Z�4���c�z����l���E��|^�
669
+ ����j1����]���q��<���gc�#���f���$��pcIZ�������������|^�
670
+ ��l���E��c�z����Z�4���X���7�T��~џ�P[�a*��U��d��\,�}HA�jG0����q[{�8��x�.(�hՇ� ��`~���[Gy�z6�b���q���������������w�g��E\��������;��օ���m�~N�XGxUYh�L�X5Ե�L��;Z��\(Ab���jG0����xa��!���f�Ё�~tw�s��m�����X��]2c�i)��*��������������jG0����\,�}HA�U��d��P[�a*��L�C���Gj+�P�C���)�E��N�I�4w�V(@U���[�Ghj�c7��-��U��^�c�P�E�.�J�-��N�E���������������V(@U���I�4w�E��N�C���)�@Lo
671
+ L~�=�=һ�=�V�=�V�@��KT�L�X5Ե�L�8���P�9C�y�DM�"^�@�
672
+ �'�=�=һ�@�u�m�������������Y�L�)�M��M�h�CQM���7�N�/�D#��oJ�W���W���&2-���2�j&�=�V�=�X��fOH��]�Z~���O���{��&2-���1�g� ������������
673
+ endstream
674
+ endobj
675
+ 31 0 obj
676
+ << /OPM 1
677
+ /BM /Normal
678
+ /CA 1.0
679
+ /OP false
680
+ /SMask /None
681
+ /ca 1.0
682
+ /AIS false
683
+ /op false
684
+ /Type /ExtGState
685
+ /SA true
686
+ >>
687
+ endobj
688
+ 32 0 obj
689
+ << /Length 96
690
+ >>
691
+ stream
692
+ q
693
+ /DeviceRGB cs
694
+ 0.000 0.000 0.000 scn
695
+ /DeviceRGB CS
696
+ 0.000 0.000 0.000 SCN
697
+ 1 w
698
+ 0 J
699
+ 0 j
700
+ [ ] 0 d
701
+ Q
702
+
703
+ endstream
704
+ endobj
705
+ 33 0 obj
706
+ << /Length 540
707
+ >>
708
+ stream
709
+ q
710
+
711
+ BT
712
+ 36 741.64 Td
713
+ /F1.0 20 Tf
714
+ [<506c656173652066696c6c20696e207468652066> 30 <6f72> -25 <6d2062656c6f> 15 <7720736f2077> 10 <652063616e20636f6e746163742079> 20 <6f753a>] TJ
715
+ ET
716
+
717
+
718
+ BT
719
+ 36 674.264 Td
720
+ /F1.0 12 Tf
721
+ [<4e616d65>] TJ
722
+ ET
723
+
724
+ 106.000 667.880 200.000 20.000 re
725
+ S
726
+
727
+ BT
728
+ 36 644.264 Td
729
+ /F1.0 12 Tf
730
+ [<456d61696c>] TJ
731
+ ET
732
+
733
+ 106.000 637.880 200.000 20.000 re
734
+ S
735
+
736
+ BT
737
+ 36 614.264 Td
738
+ /F1.0 12 Tf
739
+ [<436f6d70616e> 15 <79>] TJ
740
+ ET
741
+
742
+ 106.000 607.880 200.000 20.000 re
743
+ S
744
+
745
+ BT
746
+ 36 584.264 Td
747
+ /F1.0 12 Tf
748
+ [<50686f6e65>] TJ
749
+ ET
750
+
751
+ 106.000 577.880 200.000 20.000 re
752
+ S
753
+ Q
754
+
755
+ endstream
756
+ endobj
757
+ 34 0 obj
758
+ << /Type /Page
759
+ /Parent 4 0 R
760
+ /MediaBox [0 0 612.0 792.0]
761
+ /Contents 33 0 R
762
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
763
+ /Font << /F1.0 35 0 R
764
+ >>
765
+ >>
766
+ >>
767
+ endobj
768
+ 35 0 obj
769
+ << /Type /Font
770
+ /Subtype /Type1
771
+ /BaseFont /Helvetica
772
+ /Encoding /WinAnsiEncoding
773
+ >>
774
+ endobj
775
+ xref
776
+ 0 36
777
+ 0000000000 65535 f
778
+ 0000000015 00000 n
779
+ 0000000656 00000 n
780
+ 0000000721 00000 n
781
+ 0000017528 00000 n
782
+ 0000017592 00000 n
783
+ 0000018358 00000 n
784
+ 0000018894 00000 n
785
+ 0000019427 00000 n
786
+ 0000020050 00000 n
787
+ 0000020669 00000 n
788
+ 0000021283 00000 n
789
+ 0000021872 00000 n
790
+ 0000022478 00000 n
791
+ 0000022963 00000 n
792
+ 0000023114 00000 n
793
+ 0000023331 00000 n
794
+ 0000024253 00000 n
795
+ 0000030657 00000 n
796
+ 0000046578 00000 n
797
+ 0000073069 00000 n
798
+ 0000074614 00000 n
799
+ 0000074768 00000 n
800
+ 0000074803 00000 n
801
+ 0000077456 00000 n
802
+ 0000077561 00000 n
803
+ 0000077684 00000 n
804
+ 0000077846 00000 n
805
+ 0000078008 00000 n
806
+ 0000078113 00000 n
807
+ 0000078241 00000 n
808
+ 0000091160 00000 n
809
+ 0000091287 00000 n
810
+ 0000091434 00000 n
811
+ 0000092026 00000 n
812
+ 0000092207 00000 n
813
+ trailer
814
+ << /Size 36
815
+ /Root 2 0 R
816
+ /Info 1 0 R
817
+ >>
818
+ startxref
819
+ 92305
820
+ %%EOF