From: martin f. krafft Date: Sat, 7 Nov 2009 13:55:03 +0000 (+0100) Subject: initial checkin X-Git-Url: https://git.madduck.net/cv.git/commitdiff_plain/86b0e7936889e4e51fc3f7a3d367f35066820c2c initial checkin --- 86b0e7936889e4e51fc3f7a3d367f35066820c2c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..415d0d8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/*.html +/*.zip diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..c69e072 --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ +DirectoryIndex cv.html diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b5f25ab --- /dev/null +++ b/Makefile @@ -0,0 +1,73 @@ +COMPONENTS = cv tech-profile refs +LANGUAGES = en + +RST2HTML = rst2html +RST2HTML_OPTS = --strict --tab-width=2 --initial-header-level=2 --link-stylesheet +RST2HTML_OPTS := $(RST2HTML_OPTS) --cloak-email-addresses + +SUFFIX = html + +.PHONY: all +all: $(addsuffix .$(SUFFIX), $(foreach l,$(LANGUAGES),$(addsuffix .$(l),$(COMPONENTS)))) + for l in $(LANGUAGES); do \ + for c in $(COMPONENTS); do \ + ln -sf $$c.$$l.$(SUFFIX) $$c.$(SUFFIX).$$l; \ + done; \ + done + chmod -R u=rwX,og=rX . + find . -type d -exec chmod g+s {} \; + find . -type d -name .svn -exec chmod og= {} \; + chown -R --reference=. . + chgrp -R --reference=. . + $(MAKE) cv_martin-f-krafft.zip + +cv_martin-f-krafft.zip: DIR = $(patsubst %.zip,%,$@) +cv_martin-f-krafft.zip: $(wildcard *.$(SUFFIX) *.css *.png *.pdf) + mkdir --parent $(DIR) + ln -f $^ $(DIR) + zip -r $@ $(DIR) + rm -r $(DIR) + chmod 644 $@ + +.PHONY: pdfs +pdfs: $(patsubst %.ps,%.pdf,$(wildcard *.ps)) + +.PHONY: refs +refs: $(patsubst %.rst,%.$(SUFFIX),$(wildcard ref-*.rst)) + +%.pdf: %.ps + ps2pdf -dEmbedAllFonts=true -dCompressPages=true -dUseFlatCompression=true \ + -dAutoFilterColorImages=false -sColorImageFilter=FlateEncode $< $@ + +cv.en.% refs.en.%: RST2HTML_OPTS := $(RST2HTML_OPTS) --stylesheet=cv.css --language=en +tech-profile.en.%: RST2HTML_OPTS := $(RST2HTML_OPTS) --stylesheet=tech-profile.css --language=en +refs.en.%: RST2HTML_OPTS := $(RST2HTML_OPTS) --stylesheet=refs.css --language=en +ref-%: RST2HTML_OPTS := $(RST2HTML_OPTS) --stylesheet=ref.css --language=en + +%.$(SUFFIX): %.rst + $(RST2HTML) $(RST2HTML_OPTS) $< > $@ + sed -i -e 's,text/html,application/xhtml+xml,' \ + -e 's,XHTML 1\.0 Transitional,XHTML 1.0 Strict,' \ + -e 's,xhtml1-transitional,xhtml1-strict,' \ + -e 's,Curriculum Vitae,CV Martin F. Krafft,' \ + -e 's,Technical Profile,Tech Profile Martin F. Krafft,' \ + -e 's,List of References,References Martin F. Krafft,' $@ + +.PHONY: push +push: DEST_SERVER = seamus +push: DEST_DIR = /srv/apache2/martin-krafft.net/htdocs/cv +push: pdfs + test -z "$$(svn stat)" || svn commit + rsync *.pdf $(DEST_SERVER):$(DEST_DIR) + ssh $(DEST_SERVER) make -C $(DEST_DIR) update + +.PHONY: clean +clean: + rm -f $(wildcard *.$(SUFFIX)) + rm -f $(wildcard *.zip) + find . -type l -exec rm {} \; + +.PHONY: update +update: + svn up + $(MAKE) diff --git a/colophon.en.rst b/colophon.en.rst new file mode 100644 index 0000000..cd27a23 --- /dev/null +++ b/colophon.en.rst @@ -0,0 +1,23 @@ +.. colophon.en.rst +.. restructured text source for the English colophon +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. + +.. class:: colophon screen-only + +|xhtml10| |css| + +.. |xhtml10| image:: http://www.w3.org/Icons/valid-xhtml10 + :width: 88 + :height: 31 + :alt: Valid XHTML 1.0 Strict + +.. |css| image:: http://jigsaw.w3.org/css-validator/images/vcss + :width: 88 + :height: 31 + :alt: Valid CSS 2 diff --git a/copyright.en.rst b/copyright.en.rst new file mode 100644 index 0000000..511a717 --- /dev/null +++ b/copyright.en.rst @@ -0,0 +1,20 @@ +.. copyright.en.rst +.. restructured text source for the English copyright notice +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. + +.. class:: copyright screen-only + +This curriculum vitae is |copyright| 2005-7 Martin F. Krafft. |nl| +You may use the source code and style for your own curriculum vitae +under the terms of the `Artistic License 2.0`_, provided that you change all +personal data. The attribution has to appear only inside a comment, though +a brief note and link would be appreciated, if the CV is served as a web +page. You can use the ``screen-only`` class for this. + +.. _Artistic License 2.0: http://www.perlfoundation.org/legal/licenses/artistic-2_0.html diff --git a/cv.css b/cv.css new file mode 100644 index 0000000..c9b535d --- /dev/null +++ b/cv.css @@ -0,0 +1,273 @@ +/* cv.css + * CSS file for my curriculum vitae + * + * This file is copyright © 2005 martin f. krafft . + * You may use this file for your own curriculum vitae + * under the terms of the Artistic License 2.0, provided that you change all + * personal data. The attribution has to appear only inside a comment, though + * a brief note and link would be appreciated, if the CV is served as a web + * page. You can use the screen-only class for this. + */ + +body { + font-family: "RotisSansSerif", "Bitstream Vera Sans", Helvetica, Arial, sans-serif; + padding: 0; + margin: 0; +} + +@media print { + body { + font-size: smaller; + } +} + +@media screen { + .document { + margin: 0 auto; + width: 50em; + } +} + +h1, h2 { + font-family: "RotisSemiSerif", "Bitstream Vera Serif", "Times New Roman", Times, serif; + padding-left: 25%; +} + +h1 { + font-size: 200%; + background: transparent; + margin: 0 0 1em 0; +} + +@media screen { + h1 { + font-variant: small-caps; + margin-top: 1em; + } +} + +h2 { + font-size: 110%; + font-weight: bold; + clear: both; + background-color: #ddd; + color: inherit; +/* border-top: 1.2em solid #ddd; */ + margin: 1em 0 0 0; +} + +h2 a { + display: block; + margin-top: -1.2em; +} + +p { + margin: 0.5em 0 0 25%; +} + +ul { + list-style: none; + margin: 0; + padding: 0 0 0 25%; +} + +ol { + padding: 0 0 0 25%; + margin: 0; +} + +@media screen { + ol { + list-style: none; + } +} + +li { + margin-top: 0.5em; +} + +table { + margin: 1em 0 1em 25%; +} + +a { + color: #000; + text-decoration: none; +} + +@media screen { + a { + color: #c00; + } + + h2 a { + color: #000; + } + + a:hover, a:focus { + text-decoration: underline; + } + + h2 a:hover, h2 a:focus { + text-decoration: none; + } +} + +img.portrait { + float: left; + margin: 0.5em 0 0 0.5em; +} + +html:first-child>body img.portrait { + /* make image smaller only in opera */ + width: 160px; + height: 207px; + margin-bottom: -0.5em; +} + +@media print { + img.portrait { + width: 160px; + height: 207px; + margin-left: 0; + margin-bottom: 0.1em; + } + + html:first-child>body img.portrait { + /* make image even smaller in opera */ + width: 145px; + height: 188px; + } +} + +p.personal { + line-height: 1.5em; + margin-top: 1.5em; + margin-bottom: 1.5em; +} + +p.label { + float: left; +} + +dl { + margin: 0; +} + +dt { + margin: 0.5em 0 0 0.5em; + float: left; +} + +dt:first-child { + margin: 0 0 0 0.5em; +} + +dd { + margin: 0.5em 0 0 25%; +} + +dd div.line-block div.line:first-child { + font-weight: bolder; +} + +.refs { + margin-top: 2em; +} + +.signature { + margin: 3em 0 0 0.5em; + line-height: 4em; +} + +.online-notes { + margin: 3em 0 0 0; + border-top: 2px solid #ddd; + padding: 1em 0 0 25%; +} + +.online-notes, .copyright { + font-size: smaller; +} + +@media screen { + p.screen-only { + margin-bottom: 1em; + } + + .print-only { + display: none; + } +} + +@media print { + .screen-only { + display: none; + } + + .footer { + display: none; + } + + div.section { + page-break-before: auto; + page-break-inside: "" !important; + page-break-after: auto; + } + + h2 { + page-break-before: auto; + page-break-after: "" !important; + } + + dl { + page-break-before: "" !important; + page-break-inside: "" !important; + page-break-after: auto; + } +} + +@page { + size: portrait; + margin: 2cm 2cm 2cm 3cm; +} + +.ie-note { + display: none; + position: relative; +} + +* html body .ie-note { + /* display in IE only */ + font-family: "RotisSansSerif", "Bitstream Vera Sans", Helvetica, Arial, sans-serif; + font-size: 80%; + display: block; + position: absolute; + top: 0; + left: 0; + width: 96%; + padding: 0.2em 2em; + margin: 1em; + border: 3px dotted #bbb; + background-color: inherit; + color: #000; + text-align: justify; +} + +* html body .ie-note a { + /* display in IE only */ + color: #000; +} + +* html body .ie-note:hover a { + /* display in IE only */ + color: #999; +} + +* html body .document { + margin-top: 5em; +} + +* html body #education { + margin-top: -2.4em !important; +} diff --git a/cv.en.rst b/cv.en.rst new file mode 100644 index 0000000..ed4478d --- /dev/null +++ b/cv.en.rst @@ -0,0 +1,342 @@ +.. cv.en.rst +.. restructured text source for my English curriculum vitae +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. + +.. |today| replace:: 07 November 2009 + +=============================================================================== + Curriculum Vitae +=============================================================================== + +.. include:: ie-note.rst + +.. class:: screen-only + +You may prefer the `PDF version`_, or the `whole bundle`_. + +.. _PDF version: cv_martin-f-krafft.en.pdf +.. _whole bundle: cv_martin-f-krafft.zip + +.. class:: screen-only + +External links are `currently broken`_. I apologise for the inconvenience. + +.. _currently broken: + http://docutils.sourceforge.net/BUGS.html#hyperlink-references-in-substitutions + +------------------------------------------------------------------------------- +Personal data +------------------------------------------------------------------------------- +.. image:: portrait.png + :alt: Portrait of Martin Felix Krafft + :class: portrait + :width: 180 + :height: 233 + +.. class:: personal + +**Dr. Martin Felix Krafft** |nl| +born on 14 February 1979 in Munich, Germany |nl| +committed + +Email: cv@martin-krafft.net |nl| + +.. class:: print-only + +Telephone: +41 (0)76 471 78 46 |nl| + +.. class:: print-only + +Address: Affolternstrasse 81, 8050 Zürich, Switzerland + +.. class:: screen-only + +Additional means of contact are available on request. + +------------------------------------------------------------------------------- +Education +------------------------------------------------------------------------------- +Oct 2005 |--| Dec 2009 + | |Lero| + | |CSIS|, |UL| + | Ph.D. in computer science and sociology + | http://martin-krafft.net/phd/ + +Sep 2002 |--| Oct 2005 + | |AILab|, |UniZH| + | Teaching and research assistant in artificial intelligence and robotics + | Completed additional course work to meet Ph.D. requirements + +Aug 1997 |--| Jun 2001 + | |Swarthmore College| + | High Honors Bachelor of Arts (computer science / psychology) + +Oct 1992 |--| Jun 1997 + | |MIS| + | British A-Level: German, Mathematics, Physics, Chemistry + | Finished third of the class + +Sep 1989 |--| Oct 1992 + | |OvTG| + +Sep 1985 |--| Jul 1989 + | |Grundschule Gauting| + +------------------------------------------------------------------------------- +Internships +------------------------------------------------------------------------------- +Aug 1999 |--| Dec 1999 + | |AILab|, |UniZH| + | Intern in artificial intelligence + | Research assistant in cognitive robotics + +Aug 1999 |--| Dec 1999 + | |Neuronics| + | Intern in software development and customer care/support + +May 1999 |--| Jul 1999 + | |Intact| + | Intern in system administration and customer care/support + +May 1999 |--| Jun 1999 + | |Class| + | Intern in software development and system administration + +May 1998 |--| Jul 1998 + | |Class| + | Intern in software development + +------------------------------------------------------------------------------- +Professional work +------------------------------------------------------------------------------- +Aug 2002 |--| present + | self-employed + | Linux course instructor + | Security consultant in professional environments + | Communication facilitation between management and IT + +Aug 2001 |--| present + | |AERAsec| + | Course instructor and network security consultant (freelance) + +------------------------------------------------------------------------------- +Student work +------------------------------------------------------------------------------- +Sep 2000 |--| May 2001 + | |Swarthmore College| + | Teaching assistant in computer science + +Sep 1998 |--| May 2001 + | |Swarthmore College| + | User support hard-/software for students and staff + +Nov 1997 |--| Mar 2000 + | |Experts Exchange| + | Online user support hard-/software + +Juls 1997, 1996, 1995 + | |ANZAG| + | Temporary personell in storage and logistics of pharmaceutical trading + +Aug 1994 |--| Jun 1997 + | |MIS| + | Temporary personell in user support software + +------------------------------------------------------------------------------- +Computer skills +------------------------------------------------------------------------------- +.. class:: screen-only + +Please refer to my `technical profile`_ for information on skill levels. + +.. _technical profile: tech-profile.en.html + +Operating systems + `Debian`_; `GNU`_/`Linux`_; `FAI`_; `NetBSD`_; `Solaris`_; `Mac OS X`_; |nl| + `MS Windows`_ (NT 4.0 (MCSE), 2k, XP); Mac OS (7.0 |--| 9.x) + +Administration + `postfix`_; `Apache2`_; `Zope`_/`Plone`_; `PostgreSQL`_; `djbdns`_; `Mailman`_; |nl| + `BIND`_; `OpenLDAP`_; `squid`_; `snort`_; `nessus`_; |nl| + `Linux QoS`_; `iproute2`_; `netfilter`_; `tcpdump`_; |nl| + `Cisco IOS`_; `VPN-1`_; `Firewall-1`_ + +Programming + C++/`Boost`_; `Python`_; C; sh/awk; SQL; `XML`_/`XHTML`_; `CSS`_; VHDL; `Perl`_; |nl| + `doxygen`_; `gdb`_; `bzr`_; `git`_; `SVN`_; `CVS`_; |nl| + Design patterns; Policy- and test-driven design; Agile development + +Protocols / concepts + Diffie-Hellman; RSA; AES; Serpent; ElGamal; DSA; Blowfish; IKE; |nl| + TCP/IP; IPv6; IPsec/VPN; PPP; PPPoE; 802.X; WPA; ATM; FDDI; |nl| + Serial interfaces; Protocol design; Multithreading + +Applications + `vim`_; `LaTeX`_; `OpenOffice.org`_; `Gimp`_; `dia`_; |nl| + `Maple`_; `MatLab`_; `Opnet`_ + +Robots + `Khepera`_; Pioneer; Magellan; SuperScout + +------------------------------------------------------------------------------- +Certifications +------------------------------------------------------------------------------- +.. Aug 2003 + `Linux Professional Institute`_ Level 2 (`LPIC`_ 2) + +Jun 2005 + `Linux Professional Institute`_ Level 1 (`LPIC`_ 1) + +Jan 2002 + `Check Point`_ `Certified Security Administrator`_ (`CCSA`_) |nl| + `Check Point`_ `Certified Security Engineer`_ (`CCSE`_) + +------------------------------------------------------------------------------- +Publications +------------------------------------------------------------------------------- +Jan 2010 + | A Delphi study of the influences on innovation adoption and process + evolution in a large open-source project — the case of Debian + | Ph.D. dissertation + | |CSIS|, |UL| + +Jun 2005 |--| present + | Personal web diary ("blog") + | http://blog.madduck.net/ + +Jun 2005 + | The Debian System |---| Concepts and Techniques + | ISBN 3-937514-07-4, 608 pages, hardcover + | |Open Source Press| + | http://debiansystem.info/ + | translated to 4 languages (de, fr, jp, cn) + +Jun 2001 + | A Neural Optimal Controller Architecture for Wayfinding Behavior + | Honors thesis (unpublished, available on request) + | |Swarthmore College| + +Oct 1999 + | Identification and Categorization of Components + in Composite Logic Gates Using Hierarchical Neural Networks + | "Brown Bag" technical report + | |AILab|, |UniZH| + +------------------------------------------------------------------------------- +Social and personal skills +------------------------------------------------------------------------------- +* Firm speaking abilities + +* Strong didactics, especially when related to computer concepts + +* Effective organisational and interpersonal skills + +* Competent in providing guidance and leadership to others + +* Undergraduate level mathematics, calculus, linear algebra, |nl| + physics, chemistry, and organic chemistry + +------------------------------------------------------------------------------- +Further experience +------------------------------------------------------------------------------- +Jun 2007 |--| present + | |DebConf| + | Press officer + +Nov 2006 |--| present + | |debian.ch| + | President + +Mar 2005 |--| present + | |Plone Foundation| + | Active developer of the |Plone CMS| + +Mar 2005 |--| present + | |Zope Corporation| + | Active developer of the |Zope server| + +Oct 2002 |--| Oct 2005 + | |VBCE| + | Member of the men's volleyball team + +Apr 2001 |--| present + | |Debian project| + | Active developer of the |Debian OS| + | Focus on qualilty assurance, security, PR, and workflow issues + +Aug 1997 |--| Dec 2000 + | |Swarthmore College| + | Secretary, PR manager, and member of the men's volleyball team + +Sep 1996 |--| Aug 1998 + | |TSV Pentenried| + | Team captain of the adolescents' tennis team |nl| + +Sep 1995 |--| Jun 1997 + | |MIS| + | Student supervisor + +Sep 1995 |--| Jun 1997 + | |MIS| + | Team captain of the men's varsity volleyball team + +Sep 1995 |--| Jan 1997 + | |MIS| + | Member of the speech and debate team + +Sep 1994 |--| Jun 1997 + | |MIS| + | Co-editor of the yearbook + +Leisure time + Research (workflow, system administration, security); Programming; |nl| + Music (passive and active; percussion and guitar, some clarinet); |nl| + Sailing; Volleyball; Squash; Alpine sports + +.. class:: refs screen-only + +Please also take a look at my `list of references`_. + +.. _list of references: refs.en.html + +.. class:: signature print-only + +Zürich, |today| |nl| +Martin F. Krafft + +.. class:: online-notes screen-only + +This curriculum vitae is officially available from +http://martin-krafft.net/cv/ . |nl| +Please use `this link`_ to download the document with all relevant files. |nl| +The document was generated with `docutils`_ from `this source`_, +`this Makefile`_, and formatted using `this CSS definition`_. |nl| +The printed document is designed to look different from the on-screen +version. The printed version looks best if produced with the `Opera browser`_. +Preferred fonts: `Rotis Sans Serif 55`_, `Rotis Sans Serif 65 Bold`_, +`Rotis Semi Serif 65 Bold`_. |nl| + +.. _this link: cv_martin-f-krafft.zip +.. _Opera browser: http://www.opera.com +.. _Rotis Sans Serif 55: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-55.htm +.. _Rotis Sans Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-65-bold.htm +.. _Rotis Semi Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-semi-serif-65-bold.htm +.. _this source: cv.en.rst +.. _this Makefile: Makefile +.. _this CSS definition: cv.css + +.. include:: copyright.en.rst + +.. include:: colophon.en.rst + +.. include:: subst.en.rst +.. include:: links.rst +.. include:: syms.rst + +.. vim:tw=80 diff --git a/cv.html.en b/cv.html.en new file mode 120000 index 0000000..9a44128 --- /dev/null +++ b/cv.html.en @@ -0,0 +1 @@ +cv.en.html \ No newline at end of file diff --git a/cv_martin-f-krafft.en.pdf b/cv_martin-f-krafft.en.pdf new file mode 100644 index 0000000..72ac3bc --- /dev/null +++ b/cv_martin-f-krafft.en.pdf @@ -0,0 +1,13043 @@ +%PDF-1.3 +%1234 +% This file was generated by pdftopdf +%%PDFTOPDFNumCopies : 1 +%%PDFTOPDFCollate : false +1 0 obj +<< /Type /Catalog /Pages 2 0 R >> +endobj +2 0 obj +<< /Type /Pages /Kids [ 3 0 R +4 0 R +5 0 R +6 0 R + ] /Count 4 >> +endobj +7 0 obj +<< /Length 8 0 R >> +stream + q 0.240000 0 0 0.240000 0 0 cm /R0 gs q 225 3075 m 2325 3075 l 2325 317.922000 l 225 317.922000 l h W n 0.867188 g 225 2835.420000 2100 58.332000 re f 225 2024.570000 2100 58.335900 re f 225 1041.360000 2100 58.332000 re f Q q 225 2815.110000 m 787.500000 2815.110000 l 787.500000 2086.980000 l 225 2086.980000 l h W n q 562.500000 0 0 728.125000 225 2086.980000 cm /R1 Do Q Q q 225 3075 m 2325 3075 l 2325 317.922000 l 225 317.922000 l h W n 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R5 9.750000 Tf 1 0 0 1 58.875000 471.025000 Tm [ (\001) +-22 +(\002) +15.038300 +(\003) +25.981100 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\007) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\t) +-41 +(\n) +33.038600 +(\002) +16 +(\004) +-48.980600 +(\005) +-12.019200 +(\006) +-12.980800 +(\006) +-12.980800 +(\013) +] TJ 56.875300 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.019200 +(\006) +-12.980800 +(\005) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\001) +-22.961200 +(\002) +16 +(\003) +25.019500 +(\004) +-48.019100 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\007) +] TJ 43.875000 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.981400 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\021) +] TJ 30.874700 TL T* [ (\001) +-22 +(\002) +15.038300 +(\003) +25.981100 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\005) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.019200 +(\024) +-12.980800 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.019200 +(\022) +] TJ 43.875000 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\025) +-12.980800 +(\013) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\001) +-22.961200 +(\002) +16 +(\003) +25.019500 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\005) +] TJ 17.875300 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\025) +-12.980800 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\023) +44.018900 +(\017) +-12.980800 +(\026) +36 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\025) +-12.980800 +(\013) +] TJ 42.600000 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\t) +-41 +(\n) +33.038600 +(\002) +16 +(\004) +-48.981400 +(\021) +-12.019200 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +] TJ 43.875000 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\t) +-41 +(\n) +33.038600 +(\002) +16 +(\004) +-48.981400 +(\021) +-12.019200 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +] TJ 30.874700 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\031) +15.038300 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\004) +-48.980600 +(\b) +-12.019200 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.980800 +(\026) +36 +(\004) +-48.980600 +(\021) +-12.019200 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +] TJ 30.875600 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\031) +15.038300 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\004) +-48.980600 +(\b) +-12.019200 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.980800 +(\004) +-48.019800 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +] TJ 30.874700 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\031) +15.038300 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\025) +-12.980800 +(\004) +-48.980600 +(\b) +-12.019200 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.980800 +(\026) +36 +(\004) +-48.980600 +(\021) +-12.019200 +(\013) +-12.980800 +(\013) +-12.980800 +(\025) +] TJ /R2 19.500000 Tf 121.125000 620.450000 Td [ (\001) +11.009600 +(\002) +-7.990540 +(\003) +12.009500 +(\003) +12.009500 +(\004) +20.981100 +(\005) +16 +(\002) +-7.990540 +(\006) +2.980770 +(\002) +-7.989780 +(\007) +-4 +(\b) +7.019230 +(\t) +-3 +(\004) +20.981100 +(\n) +-6.990690 +(\013) +1.990690 +(\f) +] TJ /R2 10.725000 Tf 35.499400 TL T* [ (\r) +-21.003600 +(\f) +-3.958150 +(\003) +-1.990000 +(\016) +32.010800 +(\017) +-40.003600 +(\020) +-3.964980 +(\013) +-2.996610 +(\006) +-19.982000 +(\b) +35.978500 +(\021) +-21.965100 +(\013) +-2.996610 +(\n) +-20.989900 +(\013) +] TJ /R3 9.750000 Tf 9 -28.438100 Td [ (\001) +-22 +(\002) +25.019500 +(\003) +36 +(\004) +-11.980200 +(\005) +12.038800 +(\006) +-49.018900 +(\002) +25.019500 +(\007) +44.018900 +(\b) +-48.981400 +(\t) +6.980170 +(\004) +-11.980200 +(\n) +-49.980500 +(\013) +34 +(\f) +-48.981400 +(\b) +-48.981400 +(\r) +-49.982000 +(\004) +-11.018600 +(\016) +43.019800 +(\002) +25.018000 +(\006) +-49.982000 +(\017) +44.982000 +(\017) +44.020400 +(\007) +] TJ /R5 9.750000 Tf 14.625000 TL T* [ (\032) +-31.980200 +(\033) +-31.980200 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\033) +-31.980200 +(\024) +-12.980800 +(\004) +-48.019800 +(\021) +-12.980800 +(\035) +-12.980800 +(\004) +-48.981400 +(\036) +16 +(\n) +34 +(\032) +-31.980200 +(\034) +7.019230 +(\017) +-12.980800 +(\030) +-49.982000 +(\034) +7.980770 +(\031) +15.039100 +(\004) +-48.019800 +(\021) +-12.980800 +(\013) +-12.980800 +(\022) +-12.500000 +(\013) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\027) +-24.960900 +(\017) +-12.980800 +(\024) +-12.980800 +(\037) +36 +(\002) +16 +( ) +-12.980800 +(!) +-1 +(\004) +-48.981400 +(") +-22.001200 +(\n) +34 +(\034) +7.019230 +(#) +23.019800 +(\030) +-49.982000 +(\024) +-12.980800 +(\031) +] TJ T* [ (\002) +16 +(\033) +-31.980200 +(#) +23.019800 +(#) +23.019800 +(\037) +36 +(\003) +25.019500 +(\003) +25.019500 +(\n) +34 +($) +] TJ 28.437200 TL T* [ (%) +-49.980500 +(#) +23.019800 +(\030) +-49.980500 +(\037) +36 +(\026) +36 +(&) +-48.981400 +(\004) +-48.019800 +(\002) +15.039100 +(') +16 +(\() +-25.961500 +(#) +23.019800 +(\030) +-49.980500 +(\034) +7.980770 +(\003) +25.018000 +(\037) +36 +(\024) +-12.980800 +(\)) +-2.998800 +(*) +15.039100 +(\034) +7.980770 +(\030) +-49.982000 +(+) +7.019230 +(+) +7.019230 +(\003) +25.979600 +(,) +-1 +(\024) +-12.788500 +(\n) +34 +(\003) +] TJ 17.875300 TL T* [ (-) +-3 +(\n) +33.037900 +(\026) +36 +(\n) +34 +(\r) +-31.980200 +( ) +-12.980800 +(\033) +-31.980200 +(\024) +-12.019200 +(\n) +33.037900 +(&) +-48.019800 +(\004) +-48.981400 +(.) +-41.962100 +(\035) +-12.019200 +(\021) +-12.980800 +(\004) +-48.981400 +(/) +-29.982000 +(\006) +-12.019200 +(0) +-29.982000 +(\022) +-12.980800 +(1) +-12.980800 +(\004) +-48.981400 +(\035) +-12.019200 +(\022) +-12.980800 +(\021) +-12.788500 +(\004) +-48.981400 +(\022) +-12.980800 +(\025) +-12.019200 +(\004) +-48.981400 +(\035) +-12.980800 +(1) +] TJ 17.874400 TL T* [ (\016) +43.019800 +($) +-31.980200 +($) +-31.980200 +(\034) +7.980770 +(\n) +33.037900 +(2) +-40 +(2) +-40 +(&) +-48.981400 +(\004) +-48.981400 +(\016) +43.981400 +(+) +7.019230 +(+) +7.019230 +(\033) +-31.980200 +(\026) +36 +(\003) +25.018000 +(\n) +34 +(\034) +7.019230 +(\024) +-12.019200 +(2) +-40.961500 +(\003) +25.979600 +(\034) +7.019230 +(\030) +-49.982000 +(2) +-40 +(2) +-40.961500 +(\n) +34 +(\004) +-48.116000 +(\025) +-12.980800 +(\021) +-12.980800 +(!) +-1 +(\004) +-48.981400 +(\025) +-12.019200 +(\006) +-12.980800 +(\007) +-12.980800 +(\006) +-12.980800 +(\004) +-48.981400 +(3) +-31.980200 +(4) +-12.019200 +(\034) +7.019230 +(\037) +36 +(\002) +15.039100 +( ) +-12.019200 +(!) +-1.962140 +(\004) +-48.019800 +(\f) +-31.980200 +(5) +-32.980800 +(\037) +36 +(\003) +25.018000 +(6) +-2.998800 +(\n) +33.037900 +(\034) +7.980770 +(\026) +] TJ 196 0 Td [ (\030) +-49.789700 +(\024) +-12.980800 +($) +] TJ /R2 10.725000 Tf -205 -72.725600 Td [ (\022) +-21.003600 +(\021) +-21.965100 +(\002) +-3.003440 +(\005) +-40.958300 +(\013) +-2.996610 +(\n) +-20.989900 +(\004) +-1.983170 +(\017) +-40.003600 +(\020) +] TJ /R3 9.750000 Tf T* [ (\020) +-48.981400 +(\002) +25.981100 +(\b) +-48.981400 +(\021) +-40 +(\022) +6.018630 +(\004) +-11.980200 +(\023) +-12.980800 +(\024) +-12.980800 +(\017) +44.980500 +(\007) +44.018900 +(\025) +-32.980800 +(\006) +-49.980500 +(\002) +25.019500 +(\013) +34 +(\004) +-11.980200 +(\026) +-12.980800 +(\t) +6.980170 +(\027) +-12.980800 +(\b) +-48.981400 +(\t) +6.018630 +(\013) +34 +(\013) +34 +(\002) +25.018000 +(\b) +-48.981400 +(\t) +6.787860 +(\027) +-12.980800 +(\004) +-11.980200 +(\030) +24.982000 +(\013) +33.037900 +(\021) +-40 +(\013) +34 +(\006) +-49.982000 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\032) +24.020400 +(\013) +34 +(\t) +6.018630 +(\007) +44.982000 +(\002) +25.018000 +(\013) +] TJ /R5 9.750000 Tf 13 TL T* [ (7) +24.018900 +(\f) +-31.980200 +(8) +-48.019800 +(\f) +-31.980200 +(!) +-1 +(\004) +-48.981400 +(9) +-22.961200 +(\024) +-12.019200 +(\037) +35.039100 +(') +16 +(\n) +34 +(\034) +7.019230 +(2) +-40 +(\037) +36 +(\003) +25.019500 +(\031) +16 +(\004) +-48.981400 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.019800 +(:) +-3.960340 +(\037) +36 +(#) +23.019800 +(\n) +34 +(\034) +7.019230 +(\037) +36 +(\002) +16.289100 +(*) +16 +(!) +-1 +(\004) +-48.981400 +(8) +-48.981400 +(\034) +7.019230 +(\n) +34 +(\026) +36 +(\030) +-49.982000 +(\024) +-12.980800 +($) +] TJ T* [ (;) +-31.980200 +( ) +-12.980800 +(,) +-1 +(\t) +-41 +(,) +-1 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(#) +23.019800 +(\r) +-31.980200 +(\017) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\004) +-48.981400 +(2) +-40 +(\002) +15.039100 +(\037) +36 +(\n) +34 +(\024) +-12.980800 +(\002) +16 +(\n) +33.903200 +(\004) +-48.981400 +(\030) +-49.982000 +(\024) +-12.019200 +($) +-31.980200 +(\004) +-48.981400 +(2) +-40 +(\033) +-31.980200 +(\002) +16 +(\037) +35.039100 +(\033) +-31.018600 +(\026) +35.039100 +(\033) +-31.018600 +(\020) +-31.980200 +(\031) +] TJ 12.999400 TL T* [ ( ) +-12.980800 +(\003) +25.019500 +(\003) +25.981100 +(\r) +-31.980200 +(&) +-48.981400 +(<) +-11.980200 +(<) +-11.018600 +(#) +23.019800 +(\030) +-49.980500 +(\034) +7.019230 +(\003) +25.019500 +(\037) +36 +(\024) +-12.980800 +(\)) +-3 +(*) +16 +(\034) +7.019230 +(\030) +-49.980500 +(+) +7.980770 +(+) +7.019230 +(\003) +25.018000 +(,) +-1 +(\024) +-12.980800 +(\n) +34 +(\003) +25.018000 +(<) +-11.980200 +(\r) +-31.018600 +( ) +-12.788500 +($) +-31.980200 +(<) +] TJ /R3 9.750000 Tf 17.875300 TL T* [ (\033) +-4 +(\002) +25.019500 +(\007) +44.018900 +(\b) +-48.981400 +(\017) +44.980500 +(\b) +-48.981400 +(\031) +16 +(\b) +-48.981400 +(\006) +-49.980500 +(\f) +-48.981400 +(\004) +-11.018600 +(\020) +-48.981400 +(\t) +6.018630 +(\007) +44.018900 +(\013) +34 +(\f) +-48.981400 +(\f) +-48.019800 +(\b) +-48.981400 +(\027) +-12.980800 +(\013) +34 +(\t) +6.018630 +(\031) +16 +(\013) +33.037900 +(\004) +-11.018600 +(\034) +33.037900 +(\006) +-49.020400 +(\035) +-31.787900 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\t) +6.018630 +(\b) +-48.981400 +( ) +34 +(\013) +34 +(\002) +25.018000 +(\021) +-40 +(\b) +-48.981400 +(\007) +44.020400 +(!) +34 +(\004) +-11.980200 +(\024) +-12.980800 +(\017) +44.982000 +(\004) +-11.980200 +(") +-12.980800 +(#) +6.018630 +(\002) +25.018000 +(\b) +-48.019800 +(\031) +15.039100 +(\022) +6.980170 +(\036) +16.039700 +(\004) +] TJ 190.001000 0 Td [ (\023) +-12.980800 +(\025) +-32.692300 +(\b) +-48.981400 +(\007) +44.982000 +($) +-21.962100 +(\013) +34 +(\002) +25.018000 +(\f) +-48.019800 +(\006) +-49.982000 +(\t) +6.018630 +(%) +] TJ /R5 9.750000 Tf -190.001000 -13 Td [ (-) +-3 +(\n) +33.037900 +(\030) +-49.018900 +(\002) +15.039100 +( ) +-12.980800 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.018600 +(\004) +-48.981400 +(\030) +-49.980500 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(\034) +7.019230 +(\n) +34 +(2) +-40.961500 +(\n) +34 +(\030) +-49.982000 +(\034) +7.019230 +(\002) +16 +( ) +-12.980800 +(\004) +-48.019800 +(\030) +-49.982000 +(2) +-40.096200 +(2) +-40 +(\037) +36 +(2) +-40.961500 +(\003) +25.979600 +(\030) +-49.982000 +(\024) +-12.980800 +(\003) +25.018000 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\030) +-49.982000 +(\034) +7.019230 +(\003) +25.018000 +(\037) +36 +(+) +7.980770 +(\037) +35.039100 +(\002) +16 +(\037) +36 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\003) +25.979600 +(\n) +33.037900 +(\026) +] TJ 188.005000 0 Td [ (\026) +36 +(\037) +36 +(\020) +-31.499400 +(\n) +34 +(\024) +-12.980800 +(\002) +16 +(\n) +33.037900 +(\004) +-48.019800 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\034) +7.980770 +(\033) +-31.980200 +(\032) +-31.980200 +(\033) +-31.980200 +(\003) +25.018000 +(\037) +36 +(\002) +16 +(2) +] TJ -188.005000 -12.999400 Td [ (7) +24.018900 +(\033) +-31.980200 +(#) +23.019800 +(\r) +-31.980200 +(\026) +36 +(\n) +34 +(\003) +25.019500 +(\n) +34 +($) +-31.980200 +(\004) +-48.981400 +(\030) +-49.018900 +($) +-31.980200 +($) +-31.980200 +(\037) +36 +(\003) +25.019500 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\017) +-12.115400 +(\034) +7.019230 +(2) +-40 +(\n) +34 +(\004) +-48.981400 +(5) +-32.980800 +(\033) +-31.980200 +(\034) +7.019230 +(*) +16 +(\004) +-48.981400 +(\003) +25.979600 +(\033) +-31.980200 +(\004) +-48.981400 +(#) +23.019800 +(\n) +34 +(\n) +34 +(\003) +25.018000 +(\004) +-48.981400 +(;) +-31.980200 +( ) +-12.980800 +(,) +-1 +(\t) +-41 +(,) +-1 +(\004) +-48.981400 +(\034) +7.019230 +(\n) +34.480200 +(=) +-31.980200 +(\017) +] TJ 207.003000 0 Td [ (\037) +36 +(\034) +7.019230 +(\n) +34 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(2) +] TJ /R3 9.750000 Tf -207.003000 -17.875300 Td [ (\023) +-12.980800 +(\025) +-32.980800 +(\006) +-49.980500 +(\002) +25.981100 +(\007) +44.018900 +(\022) +6.018630 +(&) +41.018600 +(\024) +-12.980800 +(\002) +25.019500 +(\013) +34 +(\004) +-11.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\f) +-48.981400 +(\f) +-48.981400 +(\013) +34 +(\027) +-12.980800 +(\013) +34 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\022) +6.018630 +(\b) +-48.019800 +(\f) +-48.692900 +(\006) +-49.982000 +(%) +-12.980800 +(\013) +34 +(\f) +-48.981400 +(\() +-12.980800 +(\022) +6.980170 +(\b) +-48.981400 +(\006) +-49.982000 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\033) +-4 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R5 9.750000 Tf 13 TL T* [ (>) +-4 +(\037) +35.039100 +(\020) +-31.018600 +( ) +-12.980800 +(\004) +-48.981400 +(>) +-4 +(\033) +-31.980200 +(\024) +-12.980800 +(\033) +-31.980200 +(\034) +7.019230 +(2) +-40 +(\004) +-48.981400 +(?) +24.018900 +(\030) +-49.018900 +(\002) +15.039100 +( ) +-12.980800 +(\n) +34 +(\026) +36 +(\033) +-31.980200 +(\034) +7.019230 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.116000 +(\016) +43.019800 +(\034) +7.019230 +(\003) +25.979600 +(2) +-40.961500 +(\004) +-48.019800 +(/) +-29.982000 +(\002) +16 +(\033) +-31.980200 +(#) +23.019800 +(\r) +-31.980200 +(\017) +-12.980800 +(\003) +25.018000 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(2) +-40.961500 +(\002) +16 +(\037) +36 +(\n) +34 +(\024) +-12.980800 +(\002) +16 +(\n) +33.037900 +(\004) +-48.019800 +(<) +-11.980200 +(\004) +-48.981400 +(\r) +-31.210900 +(2) +] TJ 203.997000 0 Td [ (\031) +15.039100 +(\002) +16 +( ) +-12.980800 +(\033) +-31.980200 +(\026) +36 +(\033) +-31.980200 +(\020) +-31.018600 +(\031) +15.039100 +(0) +] TJ /R3 9.750000 Tf -203.997000 -17.874400 Td [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R5 9.750000 Tf -212.003000 -13 Td [ (?) +24.018900 +(\034) +7.019230 +(\037) +36 +(\003) +25.981100 +(\037) +35.039100 +(2) +-40 +( ) +-12.980800 +(\004) +-48.019800 +(\016) +43.019800 +(\)) +-3.961840 +(:) +-3 +(\n) +34 +(') +16 +(\n) +33.037900 +(\026) +36 +(&) +-48.981400 +(\004) +-48.019800 +(") +-22.962700 +(\n) +34 +(\034) +7.019230 +(#) +23.019800 +(\030) +-49.982000 +(\024) +-12.019200 +(!) +-1.962140 +(\004) +-48.019800 +(\027) +-24.384000 +(\030) +-49.982000 +(\003) +25.018000 +( ) +-12.019200 +(\n) +33.037900 +(#) +23.019800 +(\030) +-49.982000 +(\003) +25.979600 +(\037) +36 +(\002) +15.039100 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(;) +-31.980200 +( ) +-12.980800 +(\031) +16 +(2) +-40 +(\037) +36 +(\002) +15.039100 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(7) +24.020400 +( ) +-12.019200 +(\n) +33.037900 +(#) +] TJ 204 0 Td [ (\037) +36 +(2) +-40 +(\003) +25.018000 +(\034) +7.019230 +(\031) +] TJ -204 -13 Td [ (\036) +16 +(\037) +36 +(\024) +-12.980800 +(\037) +36 +(2) +-40.961500 +( ) +-12.980800 +(\n) +34 +($) +-31.980200 +(\004) +-48.019800 +(\003) +25.019500 +( ) +-12.980800 +(\037) +36 +(\034) +7.019230 +($) +-31.980200 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.979600 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(\002) +15.039100 +(\026) +36 +(\030) +-49.982000 +(2) +-40 +(2) +] TJ /R3 9.750000 Tf 17.874400 TL T* [ (+) +15 +(\007) +44.018900 +(\007) +44.018900 +(\024) +-12.980800 +(,) +-49.980500 +( ) +34 +(\024) +-12.980800 +(\t) +6.018630 +(,) +-49.018900 +(-) +33.037900 +(\006) +-49.980500 +(#) +6.980170 +(\035) +-31.980200 +(\013) +33.037900 +(\004) +-11.018600 +(*) +-4.960940 +(!) +34 +(&) +41.018600 +(\t) +6.018630 +(\006) +-49.982000 +(\021) +-39.519200 +(\b) +-48.981400 +(#) +6.018630 +(&) +41.018600 +(\004) +-11.018600 +(*) +-4.960940 +(\006) +-49.982000 +(#) +6.980170 +(\007) +44.020400 +(\b) +-48.981400 +(\t) +6.018630 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ 17.875300 TL T* [ (*) +-4 +(\002) +25.019500 +(#) +6.018630 +(\t) +6.018630 +(%) +-12.980800 +(\021) +-40 +(\031) +16 +(\022) +6.018630 +(#) +6.018630 +(\f) +-48.981400 +(\013) +34 +(\004) +-11.980200 +(*) +-4 +(\006) +-49.980500 +(#) +6.018630 +(\007) +44.020400 +(\b) +-48.019800 +(\t) +6.018630 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.980200 +(*) +-4 +(\013) +33.903200 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R2 10.725000 Tf 24.724700 TL T* [ (\023) +17.018100 +(\020) +-3.003440 +(\n) +-20.989900 +(\f) +-2.996610 +(\003) +-1.990000 +(\020) +-3.964980 +(\016) +32.010800 +(\024) +-21.003600 +(\004) +-1.983170 +(\025) +-21.965100 +(\016) +] TJ /R3 9.750000 Tf 17.875300 TL T* [ (\033) +-4 +(\002) +25.019500 +(\007) +44.018900 +(\b) +-48.981400 +(\017) +44.980500 +(\b) +-48.981400 +(\031) +16 +(\b) +-48.981400 +(\006) +-49.980500 +(\f) +-48.981400 +(\004) +-11.018600 +(\020) +-48.981400 +(\t) +6.018630 +(\007) +44.018900 +(\013) +34 +(\f) +-48.981400 +(\f) +-48.019800 +(\b) +-48.981400 +(\027) +-12.980800 +(\013) +34 +(\t) +6.018630 +(\031) +16 +(\013) +33.037900 +(\004) +-11.018600 +(\034) +33.037900 +(\006) +-49.020400 +(\035) +-31.787900 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\t) +6.018630 +(\b) +-48.981400 +( ) +34 +(\013) +34 +(\002) +25.018000 +(\021) +-40 +(\b) +-48.981400 +(\007) +44.020400 +(!) +34 +(\004) +-11.980200 +(\024) +-12.980800 +(\017) +44.982000 +(\004) +-11.980200 +(") +-12.980800 +(#) +6.018630 +(\002) +25.018000 +(\b) +-48.019800 +(\031) +15.039100 +(\022) +6.980170 +(\036) +16.039700 +(\004) +] TJ 190.001000 0 Td [ (\023) +-12.980800 +(\025) +-32.692300 +(\b) +-48.981400 +(\007) +44.982000 +($) +-21.962100 +(\013) +34 +(\002) +25.018000 +(\f) +-48.019800 +(\006) +-49.982000 +(\t) +6.018630 +(%) +] TJ /R5 9.750000 Tf -190.001000 -13 Td [ (8) +-48.981400 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(\030) +-49.018900 +(\034) +7.019230 +(\003) +25.019500 +(\037) +36 +(+) +7.019230 +(\037) +36 +(\002) +16 +(\037) +36 +(\030) +-49.980500 +(\026) +36 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\003) +25.018000 +(\n) +34 +(\026) +36 +(\026) +36 +(\037) +36 +(\020) +-31.980200 +(\n) +33.903200 +(\024) +-12.980800 +(\002) +16 +(\n) +] TJ 12.999400 TL T* [ (@) +24.018900 +(\n) +34 +(2) +-40 +(\n) +33.037900 +(\030) +-49.980500 +(\034) +7.980770 +(\002) +15.039100 +( ) +-12.019200 +(\004) +-48.981400 +(\030) +-49.980500 +(2) +-40 +(2) +-40.961500 +(\037) +36 +(2) +-40 +(\003) +25.019500 +(\030) +-49.980500 +(\024) +-12.019200 +(\003) +25.018000 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\020) +-31.114800 +(\024) +-12.980800 +(\037) +36 +(\003) +25.018000 +(\037) +36 +(') +16 +(\n) +34 +(\004) +-48.981400 +(\034) +7.019230 +(\033) +-31.980200 +(\032) +-31.980200 +(\033) +-31.018600 +(\003) +25.018000 +(\037) +36 +(\002) +15.039100 +(2) +] TJ /R3 9.750000 Tf 17.875300 TL T* [ (.) +33 +(\013) +33.037900 +(#) +6.018630 +(\002) +25.981100 +(\024) +-12.980800 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\021) +-40 +(\004) +-11.980200 +(\033) +-4 +(*) +-4.960940 +(\036) +17 +(\004) +-11.980200 +(") +-12.980800 +(#) +6.980170 +(\002) +25.018000 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\036) +17.001200 +(\004) +-11.980200 +(\023) +-12.980800 +(\025) +-32.211500 +(\b) +-48.981400 +(\007) +44.982000 +($) +-21.962100 +(\013) +34 +(\002) +25.018000 +(\f) +-48.019800 +(\006) +-49.982000 +(\t) +6.018630 +(%) +] TJ /R5 9.750000 Tf 13 TL T* [ (8) +-48.981400 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(2) +-40 +(\033) +-31.980200 +(+) +7.980770 +(\003) +25.019500 +(5) +-32.980800 +(\030) +-49.980500 +(\034) +7.019230 +(\n) +34 +(\004) +-48.981400 +($) +-31.980200 +(\n) +34 +(') +16 +(\n) +34 +(\026) +35.039100 +(\033) +-31.018600 +(\r) +-31.787900 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(\004) +-48.981400 +(\030) +-49.020400 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\002) +16 +(\017) +-12.980800 +(2) +-40 +(\003) +25.018000 +(\033) +-31.980200 +(#) +23.019800 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(\002) +16 +(\030) +-49.982000 +(\034) +7.980770 +(\n) +33.037900 +(<) +-11.018600 +(2) +-40.192300 +(\017) +] TJ 208.001000 0 Td [ (\r) +-31.980200 +(\r) +-31.980200 +(\033) +-31.018600 +(\034) +7.019230 +(\003) +] TJ /R3 9.750000 Tf -208.001000 -17.874400 Td [ (\020) +-48.981400 +(\t) +6.018630 +(\007) +44.980500 +(\006) +-49.980500 +(\031) +16 +(\007) +44.018900 +(\004) +-11.980200 +(*) +-4 +(&) +41.018600 +(\035) +-31.980200 +(/) +14.038500 +(\036) +17 +(\004) +-11.018600 +(\032) +24.018900 +(\f) +-48.981400 +(\006) +-49.982000 +(\021) +-40 +(\021) +-40 +(\004) +-11.980200 +(*) +-4.960940 +(\002) +25.979600 +(\024) +-12.980800 +(#) +6.499400 +(\() +-12.980800 +(\036) +17.001200 +(\004) +-11.980200 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.019200 +(\036) +16.039700 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R5 9.750000 Tf T* [ (8) +-48.981400 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(2) +-40 +(\031) +16 +(2) +-40 +(\003) +25.019500 +(\n) +34 +(#) +23.019800 +(\004) +-48.981400 +(\030) +-49.982000 +($) +-31.980200 +(#) +23.019800 +(\037) +36 +(\024) +-12.980800 +(\037) +36 +(2) +-40 +(\003) +25.498800 +(\034) +7.019230 +(\030) +-49.982000 +(\003) +25.979600 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\004) +-48.981400 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.018600 +(\004) +-48.981400 +(\002) +16 +(\017) +-12.980800 +(2) +-40.961500 +(\003) +25.979600 +(\033) +-31.980200 +(#) +23.019800 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(\002) +16 +(\030) +-49.982000 +(\034) +7.019230 +(\n) +34.384000 +(<) +-11.980200 +(2) +] TJ 203.001000 0 Td [ (\017) +-12.980800 +(\r) +-31.980200 +(\r) +-31.980200 +(\033) +-31.018600 +(\034) +7.019230 +(\003) +] TJ /R3 9.750000 Tf -203.001000 -17.875300 Td [ (\032) +24.018900 +(\f) +-48.981400 +(\006) +-49.018900 +(\021) +-40.961500 +(\021) +-40 +(\004) +-11.980200 +(*) +-4 +(&) +41.018600 +(\035) +-31.980200 +(/) +15 +(\036) +16.038200 +(\004) +-11.018600 +(\032) +24.018900 +(\f) +-48.981400 +(\006) +-49.980500 +(\021) +-40 +(\021) +-40 +(\004) +-11.980200 +(*) +-4 +(\002) +25.018000 +(\024) +-12.980800 +(#) +6.018630 +(\() +-12.211500 +(\036) +17.001200 +(\004) +-11.980200 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ /R5 9.750000 Tf 12.999400 TL T* [ (8) +-48.981400 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(2) +-40 +(\033) +-31.980200 +(+) +7.980770 +(\003) +25.019500 +(5) +-32.980800 +(\030) +-49.980500 +(\034) +7.019230 +(\n) +34 +(\004) +-48.981400 +($) +-31.980200 +(\n) +34 +(') +16 +(\n) +34 +(\026) +35.039100 +(\033) +-31.018600 +(\r) +-31.787900 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(\004) +-48.981400 +(\030) +-49.020400 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(2) +-40 +(\031) +16 +(2) +-40.961500 +(\003) +25.979600 +(\n) +33.037900 +(#) +23.019800 +(\004) +-48.019800 +(\030) +-49.982000 +($) +-31.980200 +(#) +23.019800 +(\037) +36 +(\024) +-12.980800 +(\037) +36 +(2) +-40.096200 +(\003) +25.018000 +(\034) +] TJ 206.996000 0 Td [ (\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\033) +-31.980200 +(\024) +] TJ /R3 9.750000 Tf -206.996000 -17.875300 Td [ (\032) +24.018900 +(\f) +-48.981400 +(\006) +-49.018900 +(\021) +-40.961500 +(\021) +-40 +(\004) +-11.980200 +(*) +-4 +(&) +41.018600 +(\035) +-31.980200 +(/) +15 +(\036) +16.038200 +(\004) +-11.018600 +(\032) +24.018900 +(\f) +-48.981400 +(\006) +-49.980500 +(\021) +-40 +(\021) +-40 +(\004) +-11.980200 +(*) +-4 +(\002) +25.018000 +(\024) +-12.980800 +(#) +6.018630 +(\() +-12.211500 +(\036) +17.001200 +(\004) +-11.980200 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ /R5 9.750000 Tf 13 TL T* [ (8) +-48.981400 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(\024) +-12.980800 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(2) +-40 +(\033) +-31.980200 +(+) +7.980770 +(\003) +25.019500 +(5) +-32.980800 +(\030) +-49.980500 +(\034) +7.019230 +(\n) +34 +(\004) +-48.981400 +($) +-31.980200 +(\n) +34 +(') +16 +(\n) +34 +(\026) +35.039100 +(\033) +-31.018600 +(\r) +-31.787900 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ ET Q Q 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R4 10 Tf 1 0 0 1 18 764 Tm [ (\001) +38.031200 +(\002) +19.031200 +(\003) +-40 +(\004) +-2.968870 +(\005) +-36.968600 +(\006) +34 +(\007) +43 +(\b) +41.031400 +(\t) +19.031200 +(\003) +-40 +(\n) +25.968800 +(\013) +4.031250 +(\003) +-40 +(\f) +38.031000 +(\006) +34 +(\005) +-36.969000 +(\r) +41.968500 +(\r) +43 +(\007) +] TJ 472 0 Td [ (\016) +19.031200 +(\007) +43.002000 +(\007) +43.002000 +(\017) +1.031250 +(\020) +-40.002000 +(\021) +-3 +(\021) +-3 +(\022) +-40.968800 +(\005) +-36.966800 +(\006) +34.002000 +(\007) +43.002000 +(\b) +41.033200 +(\t) +19.031200 +(\023) +7.968750 +(\024) +44.970700 +(\006) +34.002000 +(\005) +-37.998000 +(\r) +43.002000 +(\r) +43.002000 +(\007) +43.002000 +(\013) +4.031250 +(\t) +19.031200 +(\025) +48.966800 +(\007) +43.002000 +(\021) +-3 +(\026) +25.968800 +(\027) +45.908200 +(\021) +] TJ -472 -720.699000 Td [ (\030) +1.031250 +(\003) +-40 +(\031) +1.031250 +(\r) +43 +(\003) +-40 +(\032) +] TJ 530 0 Td [ (\033) +1.031250 +(\003) +-40.002000 +(\034) +30 +(\031) +1.031250 +(\027) +44.970700 +(\003) +-40.002000 +(\035) +1.031250 +(\036) +1.031250 +(\036) +1.031250 +(\037) +] TJ ET Q Q +endstream +endobj +8 0 obj +27174 +endobj +3 0 obj +<< /Type /Page /Parent 2 0 R +/MediaBox [ 0.000000 0.000000 612.000000 792.000000 ] +/TrimBox [ 0.000000 0.000000 612.000000 792.000000 ] +/Contents 7 0 R +/Resources << /ExtGState << /R0 9 0 R +>> + /XObject << /R1 10 0 R +>> + /Font << /R2 11 0 R +/R3 12 0 R +/R4 13 0 R +/R5 14 0 R +>> + /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> >> +endobj +15 0 obj +<< /Length 16 0 R >> +stream + q 0.240000 0 0 0.240000 0 0 cm /R0 gs q 225 3075 m 2325 3075 l 2325 317.922000 l 225 317.922000 l h W n 0.867188 g 225 3016.670000 2100 58.332000 re f 225 2548.010000 2100 58.335900 re f 225 1801.770000 2100 58.335900 re f 225 764.371000 2100 58.332000 re f 225 458.238000 2100 58.332000 re f 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R4 9.750000 Tf 1 0 0 1 58.875000 709.125000 Tm [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\005) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.019230 +(\n) +34 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 56.875300 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\021) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.019230 +(\n) +34 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 55.599400 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.019200 +(\006) +-12.980800 +(\006) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\027) +-24.961700 +(\030) +-49.980500 +(\031) +16 +(\004) +-48.981400 +(\005) +-12.980800 +(\006) +-12.019200 +(\006) +-12.980800 +(\021) +] TJ 30.875600 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\025) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\027) +-24.961700 +(\030) +-49.980500 +(\031) +16 +(\004) +-48.981400 +(\005) +-12.980800 +(\006) +-12.019200 +(\006) +-12.980800 +(\021) +] TJ 30.874700 TL T* [ (A) +15 +(\033) +-31.980900 +(') +15.038300 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\027) +-24.961700 +(\030) +-49.018900 +(\034) +7.019230 +(\004) +-48.981400 +(\005) +-12.980800 +(\006) +-12.019200 +(\006) +-12.980800 +(\006) +] TJ T* [ (\023) +44.018900 +(\017) +-12.980800 +(\026) +36 +(2) +-40 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\022) +-12.980800 +(!) +-1 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(1) +-12.019200 +(!) +-1.961390 +(\004) +-48.019800 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\007) +] TJ 30.875600 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\035) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.981400 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +] TJ 55.599400 TL T* [ (\001) +-22 +(\r) +-31.980900 +(\n) +33.038600 +(\034) +7.980770 +(\030) +-49.980500 +(\003) +25.019500 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(2) +-40.961500 +(\031) +16 +(2) +-40 +(\003) +25.019500 +(\n) +34 +(#) +23.019800 +(2) +] TJ 30.875600 TL T* [ (\016) +43.019100 +($) +-31.980900 +(#) +23.019100 +(\037) +36 +(\024) +-12.980800 +(\037) +36 +(2) +-40 +(\003) +25.019500 +(\034) +7.019230 +(\030) +-49.018900 +(\003) +25.019500 +(\037) +36 +(\033) +-31.980900 +(\024) +] TJ 56.874400 TL T* [ (;) +-31.980900 +(\034) +7.019230 +(\033) +-31.019400 +(\020) +-31.980900 +(\034) +7.019230 +(\030) +-49.980500 +(#) +23.019100 +(#) +23.019100 +(\037) +36 +(\024) +-12.980800 +(\020) +] TJ 43.875000 TL T* [ (;) +-31.980900 +(\034) +7.019230 +(\033) +-31.019400 +(\003) +25.019500 +(\033) +-31.980900 +(\002) +16 +(\033) +-31.980900 +(\026) +36 +(2) +-40.961500 +(\004) +-48.019100 +(<) +-11.980900 +(\004) +-48.980600 +(\002) +16 +(\033) +-31.980900 +(\024) +-12.980800 +(\002) +16 +(\n) +34 +(\r) +-31.980200 +(\003) +25.019500 +(2) +] TJ T* [ (\016) +43.019100 +(\r) +-31.980900 +(\r) +-31.980900 +(\026) +36 +(\037) +36 +(\002) +16 +(\030) +-49.980500 +(\003) +25.019500 +(\037) +36 +(\033) +-31.980900 +(\024) +-12.980800 +(2) +] TJ 30.875600 TL T* [ (@) +24.018900 +(\033) +-31.980900 +(\032) +-31.980900 +(\033) +-31.019400 +(\003) +25.019500 +(2) +] TJ 42.600000 TL T* [ (\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\007) +] TJ 17.874400 TL T* [ (\023) +44.018900 +(\030) +-49.980500 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\005) +] TJ 55.600300 TL T* [ (\023) +44.018900 +(\030) +-49.980500 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\021) +-12.980800 +(\006) +] TJ /R1 10.725000 Tf 121.125000 631.900000 Td [ (\r) +-21.003600 +(\003) +-1.990000 +(\017) +-40.965100 +(\026) +-20.989900 +(\f) +-2.996610 +(\016) +32.010800 +(\016) +32.010800 +(\004) +-1.983170 +(\017) +-40.003600 +(\020) +-3.964980 +(\013) +-2.996610 +(\006) +-19.982000 +(\b) +35.016900 +(\027) +-22.978600 +(\017) +-40.002200 +(\003) +-1.988640 +(\030) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\021) +-40 +(\013) +33.037900 +(\f) +-48.019800 +(\017) +44.018900 +(,) +-49.980500 +(\013) +34 +(&) +41.018600 +(\() +-12.980800 +(\f) +-48.981400 +(\024) +-12.980800 +(!) +34 +(\013) +34 +(%) +] TJ /R4 9.750000 Tf 13 TL T* [ (:) +-3 +(\037) +36 +(\024) +-12.980800 +(\017) +-12.980800 +(B) +34 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\017) +-12.980800 +(\034) +7.019230 +(2) +-40 +(\n) +34 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(2) +-40 +(\003) +25.019500 +(\034) +7.019230 +(\017) +-12.980800 +(\002) +16 +(\003) +25.018000 +(\033) +-31.980200 +(\034) +] TJ 12.999400 TL T* [ (\f) +-31.980200 +(\n) +34 +(\002) +16 +(\017) +-12.980800 +(\034) +7.019230 +(\037) +36 +(\003) +25.019500 +(\031) +16 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\024) +-12.980800 +(2) +-40 +(\017) +-12.980800 +(\026) +36 +(\003) +25.019500 +(\030) +-49.980500 +(\024) +-12.980800 +(\003) +25.979600 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(\r) +-31.980200 +(\034) +7.980770 +(\033) +-31.691700 +(+) +7.019230 +(\n) +34 +(2) +-40 +(2) +-40.961500 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.019200 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\n) +34 +(\024) +-12.980800 +(') +15.039100 +(\037) +36 +(\034) +7.980770 +(\033) +-31.980200 +(\024) +-12.980800 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(2) +] TJ 13 TL T* [ (7) +24.018900 +(\033) +-31.980200 +(#) +23.019800 +(#) +23.019800 +(\017) +-12.980800 +(\024) +-12.019200 +(\037) +35.039100 +(\002) +16 +(\030) +-49.980500 +(\003) +25.981100 +(\037) +35.039100 +(\033) +-31.018600 +(\024) +-12.980800 +(\004) +-48.981400 +(+) +7.019230 +(\030) +-49.982000 +(\002) +16 +(\037) +36 +(\026) +36 +(\037) +36 +(\003) +25.018000 +(\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\033) +-31.114800 +(\024) +-12.980800 +(\004) +-48.981400 +(\032) +-31.018600 +(\n) +33.037900 +(\003) +25.979600 +(5) +-32.980800 +(\n) +33.037900 +(\n) +34 +(\024) +-12.980800 +(\004) +-48.981400 +(#) +23.019800 +(\030) +-49.020400 +(\024) +-12.980800 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(#) +23.019800 +(\n) +33.037900 +(\024) +-12.019200 +(\003) +25.018000 +(\004) +-48.981400 +(\030) +-49.212700 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(8) +] TJ 215.999000 0 Td (-) Tj /R2 9.750000 Tf -215.999000 -17.875300 Td [ (\033) +-4 +(\026) +-12.980800 +(\030) +24.018900 +(\033) +-4.960940 +(\021) +-40 +(\013) +34 +(\031) +16 +(\004) +-11.980200 +(*) +-4.960940 +(&) +41.018600 +(\035) +-31.018600 +(/) +14.038500 +(\036) +17 +(\004) +-11.980200 +(/) +15 +(\024) +-12.980800 +(\022) +6.018630 +(\013) +34 +(\t) +6.018630 +(\035) +-31.980200 +(\002) +25.883400 +(#) +6.018630 +(\t) +6.018630 +(\t) +6.018630 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34 +(\002) +25.018000 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ /R4 9.750000 Tf 12.999400 TL T* [ (7) +24.018900 +(\033) +-31.980200 +(\017) +-12.980800 +(\034) +7.980770 +(2) +-40.961500 +(\n) +34 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(2) +-40 +(\003) +25.019500 +(\034) +7.980770 +(\017) +-12.980800 +(\002) +16 +(\003) +25.019500 +(\033) +-31.980200 +(\034) +7.019230 +(\004) +-48.019800 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\024) +-12.980800 +(\n) +34 +(\003) +25.883400 +(5) +-32.980800 +(\033) +-31.980200 +(\034) +7.019230 +(*) +16 +(\004) +-48.981400 +(2) +-40 +(\n) +34 +(\002) +16 +(\017) +-12.980800 +(\034) +7.019230 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\024) +-12.980800 +(2) +-40 +(\017) +-12.980800 +(\026) +36 +(\003) +25.018000 +(\030) +-49.982000 +(\024) +-12.980800 +(\003) +25.979600 +(\004) +-48.500600 +(/) +] TJ 200.003000 0 Td [ (+) +7.980770 +(\034) +7.019230 +(\n) +34 +(\n) +33.037900 +(\026) +36 +(\030) +-49.982000 +(\024) +-12.980800 +(\002) +16 +(\n) +34 +(0) +] TJ /R1 10.725000 Tf -200.003000 -24.725600 Td [ (\031) +35.003300 +(\n) +-20.989900 +(\002) +-3.964980 +(\021) +-21.003600 +(\f) +-2.996610 +(\020) +-3.964980 +(\n) +-20.989900 +(\b) +35.016900 +(\027) +-22.978600 +(\017) +-40.003600 +(\003) +-1.990000 +(\030) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (\023) +-12.980800 +(\025) +-32.980800 +(\006) +-49.980500 +(\002) +25.981100 +(\007) +44.018900 +(\022) +6.018630 +(&) +41.018600 +(\024) +-12.980800 +(\002) +25.019500 +(\013) +34 +(\004) +-11.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\f) +-48.981400 +(\f) +-48.981400 +(\013) +34 +(\027) +-12.980800 +(\013) +34 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\022) +6.018630 +(\b) +-48.019800 +(\f) +-48.692900 +(\006) +-49.982000 +(%) +-12.980800 +(\013) +34 +(\f) +-48.981400 +(\() +-12.980800 +(\022) +6.980170 +(\b) +-48.981400 +(\006) +-49.982000 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\033) +-4 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf 13 TL T* [ (-) +-3 +(\n) +33.037900 +(\030) +-49.018900 +(\002) +15.039100 +( ) +-12.980800 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.018600 +(\004) +-48.981400 +(\030) +-49.980500 +(2) +-40 +(2) +-40.961500 +(\037) +36 +(2) +-40 +(\003) +25.019500 +(\030) +-49.980500 +(\024) +-12.019200 +(\003) +25.018000 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\002) +15.039100 +(\033) +-31.980200 +(#) +23.789100 +(\r) +-31.980200 +(\017) +-12.980800 +(\003) +25.979600 +(\n) +33.037900 +(\034) +7.980770 +(\004) +-48.981400 +(2) +-40 +(\002) +15.039100 +(\037) +36 +(\n) +34 +(\024) +-12.980800 +(\002) +16 +(\n) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\023) +-12.980800 +(\025) +-32.980800 +(\006) +-49.980500 +(\002) +25.981100 +(\007) +44.018900 +(\022) +6.018630 +(&) +41.018600 +(\024) +-12.980800 +(\002) +25.019500 +(\013) +34 +(\004) +-11.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\f) +-48.981400 +(\f) +-48.981400 +(\013) +34 +(\027) +-12.980800 +(\013) +34 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\022) +6.018630 +(\b) +-48.019800 +(\f) +-48.692900 +(\006) +-49.982000 +(%) +-12.980800 +(\013) +34 +(\f) +-48.981400 +(\() +-12.980800 +(\022) +6.980170 +(\b) +-48.981400 +(\006) +-49.982000 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\033) +-4 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf 12.999400 TL T* [ (9) +-22 +(2) +-40.961500 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(2) +-40.961500 +(\017) +-12.980800 +(\r) +-31.018600 +(\r) +-31.980200 +(\033) +-31.980200 +(\034) +7.019230 +(\003) +25.019500 +(\004) +-48.019800 +( ) +-12.980800 +(\030) +-49.980500 +(\034) +7.019230 +($) +-31.980200 +(\)) +-2.998800 +(<) +-11.980200 +(2) +-40 +(\033) +-31.980200 +(+) +7.980770 +(\003) +25.018000 +(5) +-32.692300 +(\030) +-49.982000 +(\034) +7.019230 +(\n) +34 +(\004) +-48.981400 +(+) +7.980770 +(\033) +-31.980200 +(\034) +7.019230 +(\004) +-48.981400 +(2) +-40 +(\003) +25.018000 +(\017) +-12.019200 +($) +-31.980200 +(\n) +33.037900 +(\024) +-12.019200 +(\003) +25.018000 +(2) +-40 +(\004) +-48.981400 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(2) +-40.961500 +(\003) +25.979600 +(\030) +-49.982000 +(+) +7.500000 +(+) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\026) +-12.980800 +(\r) +-49.980500 +(\() +-12.980800 +(\013) +34 +(\002) +25.019500 +(\007) +44.980500 +(\021) +-40.961500 +(\004) +-11.018600 +(\026) +-12.980800 +(\r) +-49.980500 +(\031) +16 +(\022) +6.018630 +(\006) +-49.980500 +(\t) +6.018630 +(\027) +-12.980800 +(\013) +34 +(\036) +17.001200 +(\004) +-11.980200 +(\034) +34 +(\034) +34 +(\032) +24.020400 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.500000 +(\006) +-49.982000 +(\021) +-40 +(\024) +-12.980800 +(\004) +-11.980200 +(\030) +24.020400 +(\024) +-12.019200 +(\035) +-31.980200 +(\f) +-48.981400 +(\013) +34 +(\021) +-40.961500 +(\036) +17.001200 +(\004) +-11.018600 +(\032) +24.020400 +(\033) +-4.960940 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf 13 TL T* [ (\001) +-22 +(\024) +-12.980800 +(\026) +36 +(\037) +35.039100 +(\024) +-12.019200 +(\n) +33.037900 +(\004) +-48.019800 +(\017) +-12.980800 +(2) +-40.961500 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(2) +-40.961500 +(\017) +-12.019200 +(\r) +-31.980200 +(\r) +-31.980200 +(\033) +-31.980200 +(\034) +7.019230 +(\003) +25.979600 +(\004) +-48.981400 +( ) +-12.980800 +(\030) +-49.982000 +(\034) +7.980770 +($) +-31.980200 +(\)) +-3.191110 +(<) +-11.980200 +(2) +-40 +(\033) +-31.980200 +(+) +7.019230 +(\003) +25.979600 +(5) +-32.980800 +(\030) +-49.982000 +(\034) +7.019230 +(\n) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (\033) +-4 +(\t) +6.018630 +(%) +-12.980800 +(\002) +25.019500 +(\013) +34 +(\006) +-49.980500 +(\013) +34 +(,) +-49.980500 +(.) +32.038800 +(\024) +-12.019200 +(\002) +25.019500 +(\b) +-48.981400 +(\021) +-40 +(,) +-49.980500 +(") +-12.980800 +(\006) +-49.982000 +(\022) +6.018630 +(\t) +6.980170 +(\004) +-11.980200 +(\033) +-4.960940 +(*) +-3.518630 +(\036) +17.001200 +(\004) +-11.980200 +(\005) +12.998800 +(#) +6.018630 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\036) +17.001200 +(\004) +-11.980200 +(*) +-4 +(\013) +33.037900 +(\002) +25.979600 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ /R4 9.750000 Tf 13 TL T* [ (-) +-3 +(\n) +33.037900 +(#) +23.019800 +(\r) +-31.018600 +(\033) +-31.980200 +(\034) +7.019230 +(\030) +-49.980500 +(\034) +7.019230 +(\031) +16 +(\004) +-48.981400 +(\r) +-31.018600 +(\n) +33.037900 +(\034) +7.980770 +(2) +-40.961500 +(\033) +-31.980200 +(\024) +-12.019200 +(\n) +33.037900 +(\026) +36 +(\026) +36 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(2) +-40.961500 +(\003) +25.979600 +(\033) +-31.787900 +(\034) +7.019230 +(\030) +-49.982000 +(\020) +-31.018600 +(\n) +33.037900 +(\004) +-48.019800 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\026) +36 +(\033) +-31.980200 +(\020) +-31.980200 +(\037) +36 +(2) +-40 +(\003) +25.018000 +(\037) +36 +(\002) +16 +(2) +-40 +(\004) +-48.981400 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.019800 +(\r) +-31.980200 +( ) +-12.980800 +(\030) +] TJ 200 0 Td [ (\034) +7.019230 +(#) +23.019800 +(\030) +-49.982000 +(\002) +16 +(\n) +34 +(\017) +-12.980800 +(\003) +25.018000 +(\037) +36 +(\002) +16 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\003) +25.018000 +(\034) +7.980770 +(\030) +-49.982000 +($) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\020) +] TJ /R2 9.750000 Tf -200 -17.875300 Td [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R4 9.750000 Tf -212.003000 -12.999400 Td [ (-) +-3 +(\n) +33.037900 +(#) +23.019800 +(\r) +-31.018600 +(\033) +-31.980200 +(\034) +7.019230 +(\030) +-49.980500 +(\034) +7.019230 +(\031) +16 +(\004) +-48.981400 +(\r) +-31.018600 +(\n) +33.037900 +(\034) +7.980770 +(2) +-40.961500 +(\033) +-31.980200 +(\024) +-12.019200 +(\n) +33.037900 +(\026) +36 +(\026) +36 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\017) +-12.980800 +(2) +-40.096200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(2) +-40 +(\017) +-12.980800 +(\r) +-31.980200 +(\r) +-31.980200 +(\033) +-31.018600 +(\034) +7.019230 +(\003) +25.018000 +(\004) +-48.981400 +(2) +-40 +(\033) +-31.980200 +(+) +7.980770 +(\003) +25.018000 +(5) +-32.980800 +(\030) +-49.982000 +(\034) +7.019230 +(\n) +] TJ /R1 10.725000 Tf 24.725600 TL T* [ (\001) +15.996500 +(\017) +-40.965100 +(\007) +-22.985400 +(\025) +-21.965100 +(\002) +-3.003440 +(\n) +-20.989900 +(\f) +-2.996610 +(\003) +-1.990000 +(\b) +35.016900 +(\016) +32.010800 +(\030) +16.003300 +(\004) +-1.983170 +(\006) +-19.982000 +(\006) +-19.982000 +(\016) +] TJ /R4 9.750000 Tf 17.874400 TL T* [ (\t) +-41 +(\n) +33.037900 +(\032) +-31.980200 +(\037) +36 +(\030) +-49.980500 +(\024) +-12.019200 +(C) +-48.981400 +(\004) +-48.981400 +(") +-22 +(A) +14.038500 +(9) +-22 +(<) +-11.980200 +(:) +-3 +(\037) +36 +(\024) +-12.980800 +(\017) +-12.980800 +(B) +34 +(C) +-48.981400 +(\004) +-48.981400 +(\036) +16 +(\016) +43.019800 +(8) +-48.981400 +(C) +-48.019800 +(\004) +-48.500600 +(A) +15 +(\n) +33.037900 +(\003) +25.979600 +(?) +24.020400 +(\f) +-31.980200 +(\t) +-41.962100 +(C) +-48.019800 +(\004) +-48.981400 +(\f) +-31.980200 +(\033) +-31.980200 +(\026) +36 +(\030) +-49.982000 +(\034) +7.980770 +(\037) +35.039100 +(2) +-40 +(C) +-48.981400 +(\004) +-48.019800 +(\027) +-24.960900 +(\030) +-49.982000 +(\002) +16 +(\004) +-48.981400 +(\001) +-22.001200 +(\f) +-31.595600 +(\004) +-48.981400 +(D) +6.018630 +(C) +] TJ 13 TL T* [ (\027) +-24.960900 +(\f) +-31.018600 +(\004) +-48.981400 +(E) +12.038800 +(\037) +36 +(\024) +-12.980800 +($) +-31.980200 +(\033) +-31.018600 +(5) +-32.980800 +(2) +-40.961500 +(\004) +-48.019800 +(/) +-29.980500 +(A) +15 +(-) +-3.960340 +(\004) +-48.019800 +(\035) +-12.980800 +(,) +-1 +(\006) +-12.980800 +(\004) +-48.981400 +(/) +-29.982000 +(\027) +-24 +(7) +24.212700 +(\f) +-31.980200 +(%) +-49.982000 +(0) +-29.020400 +(!) +-1.962140 +(\004) +-48.019800 +(\005) +-12.980800 +(*) +16 +(!) +-1.962140 +(\004) +-48.019800 +(D) +6.018630 +(;) +-31.980200 +(0) +-29.982000 +(C) +-48.019800 +(\004) +-48.981400 +(\027) +-24.960900 +(\030) +-49.982000 +(\002) +16 +(\004) +-48.019800 +(\001) +-22.962700 +(\f) +-31.980200 +(\004) +-48.019800 +(/) +-29.982000 +(\022) +-12.980800 +(,) +-1 +(\006) +-12.692300 +(\004) +-48.981400 +(\b) +-12.980800 +(\004) +-48.019800 +(\013) +] TJ 218 0 Td [ (,) +-1 +(B) +33.037900 +(0) +] TJ -218 -17.875300 Td [ (\r) +-31.980200 +(\033) +-31.980200 +(2) +-40 +(\003) +25.019500 +(+) +7.980770 +(\037) +35.039100 +(B) +34 +(C) +-48.981400 +(\004) +-48.019800 +(\016) +43.019800 +(\r) +-31.980200 +(\030) +-49.980500 +(\002) +16 +( ) +-12.980800 +(\n) +34 +(\005) +-12.980800 +(C) +-48.981400 +(\004) +-48.981400 +(3) +-31.018600 +(\033) +-31.980200 +(\r) +-31.980200 +(\n) +34 +(<) +-11.980200 +(;) +-31.499400 +(\026) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\n) +34 +(C) +-48.981400 +(\004) +-48.981400 +(;) +-31.018600 +(\033) +-31.980200 +(2) +-40.961500 +(\003) +25.979600 +(\020) +-31.980200 +(\034) +7.019230 +(\n) +34 +(\f) +-31.980200 +(F) +-4 +(:) +-3.960340 +(C) +-48.019800 +(\004) +-48.981400 +($) +-31.980200 +(G) +36 +(\032) +-31.980200 +($) +-31.980200 +(\024) +-12.980800 +(2) +-39.615400 +(C) +-48.981400 +(\004) +-48.019800 +(\027) +] TJ 210.001000 0 Td [ (\030) +-49.982000 +(\037) +36 +(\026) +36 +(#) +23.019800 +(\030) +-49.982000 +(\024) +-12.980800 +(C) +] TJ -210.001000 -12.999400 Td [ (?) +24.018900 +(8) +-48.981400 +(A) +15 +(\t) +-41 +(C) +-48.981400 +(\004) +-48.981400 +(\001) +-22 +(\r) +-31.980200 +(\n) +34 +(\024) +-12.980800 +(:) +-3.961840 +(\t) +-41 +(\016) +43.019800 +(;) +-31.980200 +(C) +-48.019800 +(\004) +-48.981400 +(2) +-40 +(=) +-31.980200 +(\017) +-12.980800 +(\037) +36 +($) +-31.980200 +(C) +-48.981400 +(\004) +-48.116000 +(2) +-40 +(\024) +-12.980800 +(\033) +-31.980200 +(\034) +7.019230 +(\003) +25.979600 +(C) +-48.981400 +(\004) +-48.981400 +(\024) +-12.980800 +(\n) +34 +(2) +-40 +(2) +-40.961500 +(\017) +-12.019200 +(2) +-40.961500 +(C) +] TJ T* [ (:) +-3 +(\037) +36 +(\024) +-12.980800 +(\017) +-12.980800 +(B) +34 +(\004) +-48.981400 +(F) +-4.960940 +(\033) +-31.018600 +(\f) +-31.980200 +(C) +-48.981400 +(\004) +-48.981400 +(\037) +36 +(\r) +-31.980200 +(\034) +7.980770 +(\033) +-31.980200 +(\017) +-12.980800 +(\003) +25.018000 +(\n) +34 +(\005) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(\024) +-12.980800 +(\n) +34 +(\003) +25.018000 +(+) +7.500000 +(\037) +36 +(\026) +36 +(\003) +25.018000 +(\n) +34 +(\034) +7.019230 +(C) +-48.981400 +(\004) +-48.019800 +(\003) +25.018000 +(\002) +16 +(\r) +-31.980200 +($) +-31.980200 +(\017) +-12.980800 +(#) +23.019800 +(\r) +-31.980200 +(C) +] TJ T* [ (7) +24.018900 +(\037) +36 +(2) +-40 +(\002) +15.039100 +(\033) +-31.018600 +(\004) +-48.981400 +(8) +-48.981400 +(\001) +-22 +(\f) +-31.980200 +(C) +-48.981400 +(\004) +-48.981400 +(H) +6.980170 +(;) +-31.980200 +(A) +14.038500 +(\)) +-3 +(\021) +-12.980800 +(C) +-48.019800 +(\004) +-48.981400 +(\036) +16 +(\037) +35.039100 +(\034) +7.980770 +(\n) +33.037900 +(5) +-32.980800 +(\030) +-49.116600 +(\026) +36 +(\026) +36 +(\)) +-3.960340 +(\021) +] TJ 17.874400 TL T* [ (7) +24.018900 +(.) +-41 +(.) +-41.962100 +(<) +-11.018600 +(?) +24.018900 +(\033) +-31.980200 +(\033) +-31.980200 +(2) +-40 +(\003) +25.019500 +(C) +-48.981400 +(\004) +-48.019800 +(;) +-31.980200 +(\031) +15.039100 +(\003) +25.981100 +( ) +-12.980800 +(\033) +-31.980200 +(\024) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(7) +24.020400 +(C) +-48.981400 +(\004) +-48.019800 +(2) +-40.961500 +( ) +-12.211500 +(<) +-11.980200 +(\030) +-49.982000 +(5) +-32.980800 +(*) +16 +(C) +-48.981400 +(\004) +-48.019800 +(\f) +-31.980200 +(F) +-4.960940 +(:) +-2.998800 +(C) +-48.981400 +(\004) +-48.019800 +(D) +6.018630 +(\027) +-24.960900 +(:) +-2.998800 +(<) +-11.980200 +(D) +6.018630 +(>) +-4 +(-) +-2.998800 +(\027) +-24.960900 +(:) +-2.998800 +(C) +-48.981400 +(\004) +-48.116000 +(7) +24.020400 +(\f) +-31.980200 +(\f) +-31.980200 +(C) +-48.019800 +(\004) +] TJ 221.001000 0 Td [ (H) +6.018630 +(>) +-4 +(\t) +-41.962100 +(:) +-2.998800 +(C) +-48.981400 +(\004) +-48.019800 +(;) +-31.980200 +(\n) +33.037900 +(\034) +7.980770 +(\026) +36 +(C) +] TJ -221.001000 -13 Td [ ($) +-31.980200 +(\033) +-31.980200 +(B) +34 +(\031) +16 +(\020) +-31.980200 +(\n) +34 +(\024) +-12.980800 +(C) +-48.981400 +(\004) +-48.981400 +(\020) +-31.980200 +($) +-31.018600 +(\032) +-31.980200 +(C) +-48.981400 +(\004) +-48.981400 +(\032) +-31.018600 +(6) +-3.960340 +(\034) +7.980770 +(C) +-48.981400 +(\004) +-48.981400 +(\020) +-31.980200 +(\037) +36 +(\003) +25.018000 +(C) +-48.019800 +(\004) +-48.981400 +(\f) +-31.499400 +(H) +6.018630 +(A) +15 +(C) +-48.981400 +(\004) +-48.981400 +(7) +24.020400 +(H) +6.980170 +(\f) +-31.980200 +(C) +] TJ 13 TL T* [ (\t) +-41 +(\n) +33.037900 +(2) +-40 +(\037) +36 +(\020) +-31.980200 +(\024) +-12.980800 +(\004) +-48.981400 +(\r) +-31.018600 +(\030) +-49.980500 +(\003) +25.019500 +(\003) +25.019500 +(\n) +34 +(\034) +7.019230 +(\024) +-12.980800 +(2) +-40 +(C) +-48.981400 +(\004) +-48.019800 +(;) +-31.980200 +(\033) +-31.980200 +(\026) +36 +(\037) +36 +(\002) +16 +(\031) +15.039100 +(\)) +-2.998800 +(\004) +-48.981400 +(\030) +-49.212700 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(\003) +25.018000 +(\n) +34 +(2) +-40.961500 +(\003) +25.979600 +(\)) +-3.960340 +($) +-31.980200 +(\034) +7.980770 +(\037) +36 +(') +15.039100 +(\n) +34 +(\024) +-12.980800 +(\004) +-48.981400 +($) +-31.018600 +(\n) +33.037900 +(2) +-40 +(\037) +36 +(\020) +-31.980200 +(\024) +-12.980800 +(C) +-48.019800 +(\004) +-48.981400 +(\016) +43.019800 +(\020) +] TJ 199 0 Td [ (\037) +36 +(\026) +36 +(\n) +33.037900 +(\004) +-48.019800 +($) +-31.980200 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\033) +-31.980200 +(\r) +-31.980200 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ -199 -17.874400 Td [ (\t) +-41 +(\037) +35.039100 +(+) +7.980770 +(+) +7.019230 +(\037) +36 +(\n) +34 +(\)) +-3.961840 +(>) +-4 +(\n) +34 +(\026) +35.039100 +(\026) +36 +(#) +23.019800 +(\030) +-49.980500 +(\024) +-12.019200 +(C) +-48.981400 +(\004) +-48.981400 +(@) +24.020400 +(\f) +-31.980200 +(\016) +43.981400 +(C) +-48.981400 +(\004) +-48.981400 +(\016) +43.019800 +(%) +-49.982000 +(\f) +-31.018600 +(C) +-48.692900 +(\004) +-48.981400 +(\f) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\r) +-31.018600 +(\n) +33.037900 +(\024) +-12.980800 +(\003) +25.979600 +(C) +-48.981400 +(\004) +-48.981400 +(%) +-49.982000 +(\026) +36 +(") +-22.001200 +(\030) +-49.982000 +(#) +23.019800 +(\030) +-49.982000 +(\026) +36 +(C) +-48.981400 +(\004) +-48.019800 +(\t) +-41.962100 +(\f) +-31.980200 +(\016) +43.981400 +(C) +-48.981400 +(\004) +-48.500600 +(?) +24.020400 +(\026) +] TJ 205 0 Td [ (\033) +-31.980200 +(5) +-32.980800 +(+) +7.019230 +(\037) +36 +(2) +-40 +( ) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(8) +-48.981400 +(I) +6.018630 +(%) +-49.982000 +(C) +] TJ -205 -13 Td [ (-) +-3 +(7) +24.018900 +(;) +-31.980200 +(<) +-11.980200 +(8) +-48.019800 +(;) +-31.980200 +(C) +-48.981400 +(\004) +-48.981400 +(8) +-48.019800 +(;) +-31.980200 +(') +15.039100 +(1) +-12.019200 +(C) +-48.981400 +(\004) +-48.981400 +(8) +-48.019800 +(;) +-31.980200 +(2) +-40.961500 +(\n) +34 +(\002) +16 +(<) +-11.980200 +(H) +6.018630 +(;) +-31.980200 +(A) +15 +(C) +-48.981400 +(\004) +-48.116000 +(;) +-31.980200 +(;) +-31.980200 +(;) +-31.980200 +(C) +-48.019800 +(\004) +-48.981400 +(;) +-31.980200 +(;) +-31.980200 +(;) +-31.018600 +(\033) +-31.980200 +(%) +-49.982000 +(C) +-48.981400 +(\004) +-48.981400 +(\025) +-12.019200 +(\006) +-12.980800 +(\005) +-12.980800 +(,) +-1 +(D) +6.018630 +(C) +-48.981400 +(\004) +-48.981400 +(E) +12.998800 +(;) +-31.980200 +(\016) +43.500600 +(C) +-48.981400 +(\004) +-48.019800 +(\016) +43.019800 +(-) +] TJ 212.004000 0 Td [ (\027) +-24 +(C) +-48.981400 +(\004) +-48.981400 +(\036) +16 +(\t) +-41 +(\t) +-41.962100 +(8) +-48.019800 +(C) +] TJ -212.004000 -13 Td [ (\f) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\037) +36 +(\030) +-49.980500 +(\026) +36 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\003) +25.981100 +(\n) +33.037900 +(\034) +7.980770 +(+) +7.019230 +(\030) +-49.980500 +(\002) +16 +(\n) +33.037900 +(2) +-40 +(C) +-48.981400 +(\004) +-48.019800 +(;) +-31.980200 +(\034) +7.019230 +(\033) +-31.980200 +(\003) +25.979600 +(\033) +-31.980200 +(\002) +15.039100 +(\033) +-31.018600 +(\026) +35.904400 +(\004) +-48.981400 +($) +-31.980200 +(\n) +34 +(2) +-40 +(\037) +36 +(\020) +-31.980200 +(\024) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(\027) +-24.960900 +(\017) +-12.980800 +(\026) +36 +(\003) +25.018000 +(\037) +36 +(\003) +25.018000 +( ) +-12.019200 +(\034) +7.019230 +(\n) +34 +(\030) +-49.982000 +($) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\020) +] TJ 17.874400 TL T* [ (') +16 +(\037) +36 +(#) +23.019800 +(C) +-48.981400 +(\004) +-48.981400 +(:) +-3 +(\030) +-49.980500 +(-) +-3 +(\n) +33.037900 +(D) +6.980170 +(C) +-48.981400 +(\004) +-48.981400 +(\001) +-22 +(\r) +-31.980200 +(\n) +34 +(\024) +-12.980800 +(\001) +-22.962700 +(+) +7.980770 +(+) +7.019230 +(\037) +36 +(\002) +15.039100 +(\n) +34 +(,) +-1 +(\033) +-31.980200 +(\034) +7.884620 +(\020) +-31.980200 +(C) +-48.981400 +(\004) +-48.019800 +(") +-22.962700 +(\037) +36 +(#) +23.019800 +(\r) +-31.980200 +(C) +-48.019800 +(\004) +-48.981400 +($) +-31.980200 +(\037) +36 +(\030) +-49.982000 +(C) +] TJ 13 TL T* [ (\027) +-24.960900 +(\030) +-49.018900 +(\r) +-31.980200 +(\026) +36 +(\n) +33.037900 +(C) +-48.019800 +(\004) +-48.981400 +(\027) +-24.960900 +(\030) +-49.980500 +(\003) +25.981100 +(:) +-3.961840 +(\030) +-49.018900 +(\032) +-31.980200 +(C) +-48.981400 +(\004) +-48.981400 +(\001) +-22.001200 +(\r) +-31.980200 +(\024) +-12.980800 +(\n) +34 +(\003) +] TJ 17.875300 TL T* [ (I) +6.018630 +( ) +-12.980800 +(\n) +34 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\030) +-49.980500 +(C) +-48.019800 +(\004) +-48.981400 +(;) +-31.980200 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\n) +34 +(\n) +34 +(\034) +7.019230 +(C) +-48.981400 +(\004) +-48.981400 +(\027) +-24 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(\026) +36 +(\026) +36 +(\030) +-49.789700 +(\024) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(\f) +-31.980200 +(\017) +-12.980800 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\f) +-31.980200 +(\002) +16 +(\033) +-31.980200 +(\017) +-12.980800 +(\003) +] TJ /R1 10.725000 Tf 24.724700 TL T* [ (\001) +15.996500 +(\f) +-3.958150 +(\003) +-1.990000 +(\n) +-20.989900 +(\004) +-1.021630 +(\026) +-20.989900 +(\004) +-1.983170 +(\005) +-39.996700 +(\013) +-3.958150 +(\n) +-20.989900 +(\004) +-1.021630 +(\017) +-40.965100 +(\020) +-3.003440 +(\016) +] TJ /R4 9.750000 Tf 17.875300 TL T* [ (:) +-3 +(\037) +36 +(\024) +-12.980800 +(\017) +-12.980800 +(B) +34 +(\004) +-48.981400 +(;) +-31.980200 +(\034) +7.019230 +(\033) +-31.980200 +(+) +7.980770 +(\n) +33.037900 +(2) +-40 +(2) +-40 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(8) +-48.019800 +(\024) +-12.980800 +(2) +-40 +(\003) +25.018000 +(\037) +36 +(\003) +25.018000 +(\017) +-12.500000 +(\003) +25.018000 +(\n) +34 +(\004) +-48.981400 +(:) +-2.998800 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\004) +-48.981400 +(\021) +-12.980800 +(\004) +-48.019800 +(/) +-29.982000 +(:) +-2.998800 +(;) +-31.980200 +(8) +-48.981400 +(7) +24.020400 +(\004) +-48.019800 +(\021) +-12.980800 +(0) +] TJ 17.874400 TL T* [ (7) +24.018900 +( ) +-12.980800 +(\n) +34 +(\002) +16 +(*) +15.039100 +(\004) +-48.019800 +(;) +-31.980200 +(\033) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\003) +25.019500 +(\004) +-48.019800 +(7) +24.018900 +(\n) +33.037900 +(\034) +7.980770 +(\003) +25.019500 +(\037) +36 +(+) +7.019230 +(\037) +36 +(\n) +34 +($) +-31.980200 +(\004) +-48.981400 +(\f) +-31.980200 +(\n) +34 +(\002) +16 +(\017) +-12.692300 +(\034) +7.019230 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(\004) +-48.981400 +(\016) +43.981400 +($) +-31.980200 +(#) +23.019800 +(\037) +36 +(\024) +-12.980800 +(\037) +36 +(2) +-40.961500 +(\003) +25.979600 +(\034) +7.019230 +(\030) +-49.982000 +(\003) +25.018000 +(\033) +-31.980200 +(\034) +7.980770 +(\004) +-48.981400 +(/) +-29.982000 +(7) +24.020400 +(7) +24.982000 +(\f) +-31.980200 +(\016) +43.019800 +(0) +] TJ 13 TL T* [ (7) +24.018900 +( ) +-12.980800 +(\n) +34 +(\002) +16 +(*) +15.039100 +(\004) +-48.019800 +(;) +-31.980200 +(\033) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\003) +25.019500 +(\004) +-48.019800 +(7) +24.018900 +(\n) +33.037900 +(\034) +7.980770 +(\003) +25.019500 +(\037) +36 +(+) +7.019230 +(\037) +36 +(\n) +34 +($) +-31.980200 +(\004) +-48.981400 +(\f) +-31.980200 +(\n) +34 +(\002) +16 +(\017) +-12.692300 +(\034) +7.019230 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(\004) +-48.981400 +(%) +-49.020400 +(\024) +-12.980800 +(\020) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\n) +34 +(\n) +33.037900 +(\034) +7.980770 +(\004) +-48.981400 +(/) +-29.982000 +(7) +24.020400 +(7) +24.020400 +(\f) +-31.018600 +(%) +-49.982000 +(0) +] TJ /R1 10.725000 Tf 24.724700 TL T* [ (\r) +-21.003600 +(\002) +-3.964980 +(\032) +-40.003600 +(\006) +-19.982000 +(\004) +-1.983170 +(\005) +-39.996700 +(\013) +-2.996610 +(\n) +-20.989900 +(\004) +-1.983170 +(\017) +-40.965100 +(\020) +-3.003440 +(\016) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\033) +-4 +(\004) +-11.980200 +(\001) +-22.961200 +(\013) +34 +(\f) +-48.981400 +(\() +-12.019200 +(\022) +6.018630 +(\b) +-48.981400 +(\004) +-11.980200 +(\021) +-40 +(\007) +44.018900 +(#) +6.018630 +(%) +-12.019200 +(!) +33.037900 +(\004) +-11.018600 +(\024) +-12.980800 +(\017) +44.020400 +(\004) +-11.980200 +(\007) +44.982000 +(\022) +6.018630 +(\013) +33.037900 +(\004) +-11.018600 +(\b) +-48.981400 +(\t) +6.018630 +(\017) +44.885800 +(\f) +-48.981400 +(#) +6.018630 +(\013) +34 +(\t) +6.018630 +(\031) +16 +(\013) +34 +(\021) +-40.961500 +(\004) +-11.018600 +(\024) +-12.980800 +(\t) +6.018630 +(\004) +-11.980200 +(\b) +-48.019800 +(\t) +6.018630 +(\t) +6.018630 +(\024) +-12.980800 +( ) +34 +(\006) +-49.982000 +(\007) +44.020400 +(\b) +-48.981400 +(\024) +-12.019200 +(\t) +6.018630 +(\004) +-11.980200 +(\006) +-49.982000 +(%) +-12.211500 +(\024) +-12.980800 +(\() +] TJ 210.003000 0 Td [ (\007) +44.982000 +(\b) +-48.981400 +(\024) +-12.980800 +(\t) +6.018630 +(\004) +-11.980200 +(\006) +-49.020400 +(\t) +6.018630 +(%) +-12.980800 +(\004) +-11.980200 +(\() +-12.980800 +(\002) +25.979600 +(\024) +-12.980800 +(\031) +15.039100 +(\013) +34 +(\021) +-40 +(\021) +-40 +(\004) +-11.980200 +(\013) +34 +( ) +33.037900 +(\024) +-12.980800 +(\f) +-48.019800 +(#) +6.307090 +(\007) +44.020400 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.021640 +(\004) +-11.983200 +(\b) +-48.978400 +(\t) +6.983170 +(\004) +-11.983200 +(\006) +-49.982000 +(\004) +-11.983200 +(\f) +-48.016800 +(\006) +-49.982000 +(\002) +25.018000 +(\027) +-12.980800 +(\013) +] TJ -210.003000 -13 Td [ (\024) +-12.980800 +(\() +-12.980800 +(\013) +34 +(\t) +6.018630 +(,) +-49.980500 +(\021) +-40 +(\024) +-12.980800 +(#) +6.018630 +(\002) +25.981100 +(\031) +15.039100 +(\013) +34 +(\004) +-11.980200 +(\() +-12.980800 +(\002) +25.981100 +(\024) +-12.980800 +(0) +-48.981400 +(\013) +34 +(\031) +16 +(\007) +44.020400 +(\004) +-11.980200 +(1) +4.020430 +(\004) +-11.980200 +(\007) +44.982000 +(\022) +6.307090 +(\013) +34 +(\004) +-11.980200 +(\031) +16 +(\006) +-49.982000 +(\021) +-40 +(\013) +33.037900 +(\004) +-11.018600 +(\024) +-12.980800 +(\017) +44.020400 +(\004) +-11.980200 +(\001) +-22.001200 +(\013) +34 +(\035) +-31.980200 +(\b) +-48.981400 +(\006) +-49.982000 +(\t) +] TJ ET Q Q 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R3 10 Tf 1 0 0 1 18 764 Tm [ (\001) +38.031200 +(\002) +19.031200 +(\003) +-40 +(\004) +-2.968870 +(\005) +-36.968600 +(\006) +34 +(\007) +43 +(\b) +41.031400 +(\t) +19.031200 +(\003) +-40 +(\n) +25.968800 +(\013) +4.031250 +(\003) +-40 +(\f) +38.031000 +(\006) +34 +(\005) +-36.969000 +(\r) +41.968500 +(\r) +43 +(\007) +] TJ 472 0 Td [ (\016) +19.031200 +(\007) +43.002000 +(\007) +43.002000 +(\017) +1.031250 +(\020) +-40.002000 +(\021) +-3 +(\021) +-3 +(\022) +-40.968800 +(\005) +-36.966800 +(\006) +34.002000 +(\007) +43.002000 +(\b) +41.033200 +(\t) +19.031200 +(\023) +7.968750 +(\024) +44.970700 +(\006) +34.002000 +(\005) +-37.998000 +(\r) +43.002000 +(\r) +43.002000 +(\007) +43.002000 +(\013) +4.031250 +(\t) +19.031200 +(\025) +48.966800 +(\007) +43.002000 +(\021) +-3 +(\026) +25.968800 +(\027) +45.908200 +(\021) +] TJ -472 -720.699000 Td [ (\035) +1.031250 +(\003) +-40 +(\031) +1.031250 +(\r) +43 +(\003) +-40 +(\032) +] TJ 530 0 Td [ (\033) +1.031250 +(\003) +-40.002000 +(\034) +30 +(\031) +1.031250 +(\027) +44.970700 +(\003) +-40.002000 +(\035) +1.031250 +(\036) +1.031250 +(\036) +1.031250 +(\037) +] TJ ET Q Q +endstream +endobj +16 0 obj +32429 +endobj +4 0 obj +<< /Type /Page /Parent 2 0 R +/MediaBox [ 0.000000 0.000000 612.000000 792.000000 ] +/TrimBox [ 0.000000 0.000000 612.000000 792.000000 ] +/Contents 15 0 R +/Resources << /ExtGState << /R0 9 0 R +>> + /Font << /R1 11 0 R +/R2 12 0 R +/R3 13 0 R +/R4 14 0 R +>> + /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> >> +endobj +17 0 obj +<< /Length 18 0 R >> +stream + q 0.240000 0 0 0.240000 0 0 cm /R0 gs q 225 3075 m 2325 3075 l 2325 317.922000 l 225 317.922000 l h W n 0.867188 g 225 2024.050000 2100 58.332000 re f 225 1494.480000 2100 58.332000 re f 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R4 9.750000 Tf 1 0 0 1 58.875000 697.125000 Tm [ (\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\007) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.980770 +(\n) +33.038600 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 30.874700 TL T* [ (\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\007) +] TJ 69.875600 TL T* [ (\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\021) +] TJ 43.875000 TL T* [ (\001) +-22 +(\002) +15.038300 +(\003) +25.981100 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\013) +] TJ 208.700000 TL T* [ (\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.019200 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\022) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.980770 +(\n) +33.038600 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 30.874700 TL T* [ (A) +15 +(\033) +-31.980900 +(') +15.038300 +(\004) +-48.019100 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(1) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.019230 +(\n) +34 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 30.875600 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\034) +7.019230 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.019200 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.019400 +(\034) +7.019230 +(\n) +34 +(2) +-40.961500 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 30.874700 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\034) +7.019230 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.019200 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.019400 +(\034) +7.019230 +(\n) +34 +(2) +-40.961500 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ T* [ (\001) +-22 +(\002) +15.038300 +(\003) +25.981100 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\005) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\001) +-22 +(\002) +15.038300 +(\003) +25.981100 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.019200 +(\007) +] TJ 30.875600 TL T* [ (\016) +43.019100 +(\r) +-31.980900 +(\034) +7.980770 +(\004) +-48.980600 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.980800 +(\021) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\r) +-31.980900 +(\034) +7.980770 +(\n) +33.038600 +(2) +-40 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ 43.875000 TL T* [ (\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +-12.980800 +(\004) +-48.019100 +(\b) +-12.980800 +(\004) +-48.980600 +(\t) +-41 +(\n) +33.038600 +(\002) +16 +(\004) +-48.981400 +(\005) +-12.019200 +(\006) +-12.980800 +(\006) +-12.980800 +(\006) +] TJ 30.874700 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(1) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\016) +43.019100 +(\017) +-12.980800 +(\020) +-31.980900 +(\004) +-48.981400 +(\021) +-12.019200 +(\013) +-12.980800 +(\013) +-12.980800 +(\025) +] TJ T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.980800 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +] TJ 121.125000 644.199000 Td [ (;) +-31.980200 +( ) +-12.980800 +(,) +-1 +(\t) +-41 +(,) +-1 +(\004) +-48.981400 +($) +-31.980200 +(\037) +36 +(2) +-40 +(2) +-40.961500 +(\n) +34 +(\034) +7.019230 +(\003) +25.981100 +(\030) +-49.980500 +(\003) +25.019500 +(\037) +36 +(\033) +-31.980200 +(\024) +] TJ 12.999400 TL T* [ (7) +24.018900 +(\f) +-31.980200 +(8) +-48.019800 +(\f) +-31.980200 +(!) +-1 +(\004) +-48.981400 +(9) +-22.961200 +(\024) +-12.019200 +(\037) +35.039100 +(') +16 +(\n) +34 +(\034) +7.019230 +(2) +-40 +(\037) +36 +(\003) +25.019500 +(\031) +16 +(\004) +-48.981400 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.019800 +(:) +-3.960340 +(\037) +36 +(#) +23.019800 +(\n) +34 +(\034) +7.019230 +(\037) +36 +(\002) +16.289100 +(*) +16 +(!) +-1 +(\004) +-48.981400 +(8) +-48.981400 +(\034) +7.019230 +(\n) +34 +(\026) +36 +(\030) +-49.982000 +(\024) +-12.980800 +($) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (') +-12.980800 +(\013) +34 +(\002) +25.019500 +(\021) +-40 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.980500 +(\f) +-48.019800 +(\004) +-11.980200 +(\025) +-32.980800 +(\013) +34 +(\035) +-31.980200 +(\004) +-11.980200 +(%) +-12.980800 +(\b) +-48.981400 +(\006) +-49.020400 +(\002) +25.018000 +(!) +34 +(\004) +-11.980200 +(2) +25.018000 +(3) +-2.998800 +(\035) +-31.980200 +(\f) +-48.981400 +(\024) +-12.115400 +(\027) +-12.980800 +(3) +-2.998800 +(4) +] TJ /R4 9.750000 Tf 13 TL T* [ ( ) +-12.980800 +(\003) +25.019500 +(\003) +25.981100 +(\r) +-31.980200 +(&) +-48.981400 +(<) +-11.980200 +(<) +-11.018600 +(\032) +-31.980200 +(\026) +36 +(\033) +-31.980200 +(\020) +-31.980200 +(,) +-1 +(#) +23.019800 +(\030) +-49.980500 +($) +-31.980200 +($) +-31.980200 +(\017) +-12.980800 +(\002) +16 +(*) +16 +(,) +-1 +(\024) +-12.980800 +(\n) +34 +(\003) +25.018000 +(<) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (-) +34 +(\022) +6.018630 +(\013) +34 +(\004) +-11.980200 +(\001) +-22.961200 +(\013) +34 +(\035) +-31.980200 +(\b) +-48.019800 +(\006) +-49.980500 +(\t) +6.018630 +(\004) +-11.980200 +(\023) +-12.980800 +(!) +34 +(\021) +-40 +(\007) +44.018900 +(\013) +34 +(&) +41.018600 +(1) +4.020430 +(\032) +24.020400 +(\024) +-12.980800 +(\t) +6.018630 +(\031) +16.289100 +(\013) +34 +(\() +-12.980800 +(\007) +44.020400 +(\021) +-40 +(\004) +-11.980200 +(\006) +-49.982000 +(\t) +6.018630 +(%) +-12.019200 +(\004) +-11.980200 +(-) +34 +(\013) +33.037900 +(\031) +16 +(\022) +6.018630 +(\t) +6.018630 +(\b) +-48.019800 +(5) +-12.980800 +(#) +6.018630 +(\013) +34 +(\021) +] TJ /R4 9.750000 Tf 13 TL T* [ (8) +-48.981400 +(\f) +-31.980200 +(?) +24.980500 +(A) +14.038500 +(\004) +-48.981400 +(J) +-12.019200 +(\)) +-3.961840 +(\013) +-12.980800 +(J) +-12.019200 +(\022) +-12.980800 +(\007) +-12.980800 +(\021) +-12.980800 +(\035) +-12.980800 +(\)) +-3 +(\006) +-12.980800 +(\022) +-12.980800 +(\)) +-2.998800 +(\035) +-12.980800 +(!) +-1 +(\004) +-48.981400 +(1) +-12.980800 +(\006) +-12.115400 +(\025) +-12.980800 +(\004) +-48.981400 +(\r) +-31.018600 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(2) +-40.961500 +(!) +-1 +(\004) +-48.981400 +( ) +-12.019200 +(\030) +-49.982000 +(\034) +7.019230 +($) +-31.980200 +(\002) +16 +(\033) +-31.980200 +(') +16 +(\n) +33.037900 +(\034) +] TJ T* [ (\001) +-22 +(\r) +-31.980200 +(\n) +33.037900 +(\024) +-12.019200 +(\004) +-48.981400 +(\f) +-31.980200 +(\033) +-31.980200 +(\017) +-12.980800 +(\034) +7.980770 +(\002) +15.039100 +(\n) +34 +(\004) +-48.981400 +(;) +-31.980200 +(\034) +7.980770 +(\n) +33.037900 +(2) +-40 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(\027) +-24.960900 +(\017) +-12.019200 +(\024) +-12.980800 +(\037) +36 +(\002) +15.808300 +( ) +-12.980800 +(!) +-1 +(\004) +-48.981400 +(") +-22.001200 +(\n) +34 +(\034) +7.019230 +(#) +23.019800 +(\030) +-49.982000 +(\024) +-12.980800 +(\031) +] TJ 12.999400 TL T* [ ( ) +-12.980800 +(\003) +25.019500 +(\003) +25.981100 +(\r) +-31.980200 +(&) +-48.981400 +(<) +-11.980200 +(<) +-11.018600 +($) +-31.980200 +(\n) +34 +(\032) +-31.980200 +(\037) +36 +(\030) +-49.980500 +(\024) +-12.980800 +(2) +-40 +(\031) +15.039100 +(2) +-40 +(\003) +25.018000 +(\n) +34 +(#) +23.019800 +(,) +-1 +(\037) +36 +(\024) +-12.980800 +(+) +7.019230 +(\033) +-31.980200 +(<) +] TJ 13 TL T* [ (\003) +25.019500 +(\034) +7.980770 +(\030) +-49.980500 +(\024) +-12.980800 +(2) +-40 +(\026) +35.039100 +(\030) +-49.018900 +(\003) +25.019500 +(\n) +34 +($) +-31.980200 +(\004) +-48.981400 +(\003) +25.019500 +(\033) +-31.980200 +(\004) +-48.019800 +(\035) +-12.980800 +(\004) +-48.981400 +(\026) +36 +(\030) +-49.982000 +(\024) +-12.980800 +(\020) +-31.018600 +(\017) +-12.980800 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(2) +-40.192300 +(\004) +-48.981400 +(/) +-29.020400 +($) +-31.980200 +(\n) +33.037900 +(!) +-1 +(\004) +-48.019800 +(+) +7.019230 +(\034) +7.019230 +(!) +-1 +(\004) +-48.981400 +(G) +36 +(\r) +-31.980200 +(!) +-1 +(\004) +-48.981400 +(\002) +16 +(\024) +-12.980800 +(0) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\033) +-4 +(\004) +-11.980200 +(.) +32.038800 +(\013) +34 +(#) +6.018630 +(\002) +25.981100 +(\006) +-49.980500 +(\f) +-48.981400 +(\004) +-11.980200 +(+) +15 +(\() +-12.980800 +(\007) +44.018900 +(\b) +-48.019800 +(&) +41.018600 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.980200 +(\032) +24.020400 +(\024) +-12.019200 +(\t) +6.018630 +(\007) +44.020400 +(\002) +25.018000 +(\024) +-12.115400 +(\f) +-48.981400 +(\f) +-48.019800 +(\013) +33.037900 +(\002) +25.979600 +(\004) +-11.980200 +(\033) +-4.960940 +(\002) +25.979600 +(\031) +15.039100 +(\022) +6.980170 +(\b) +-48.981400 +(\007) +44.020400 +(\013) +34 +(\031) +16 +(\007) +44.020400 +(#) +6.018630 +(\002) +25.018000 +(\013) +34 +(\004) +-11.980200 +(\017) +44.982000 +(\024) +-12.980800 +(\002) +25.018000 +(\004) +-11.980200 +(6) +50 +(\006) +-49.982000 +(!) +34 +(\017) +44.308900 +(\b) +-48.981400 +(\t) +] TJ 207.005000 0 Td [ (%) +-12.019200 +(\b) +-48.981400 +(\t) +6.018630 +(\027) +-12.980800 +(\004) +-11.980200 +(7) +24.982000 +(\013) +33.037900 +(\022) +6.018630 +(\006) +-49.020400 +( ) +33.037900 +(\b) +-48.019800 +(\024) +-12.980800 +(\002) +] TJ /R4 9.750000 Tf -207.005000 -12.999400 Td [ (>) +-4 +(\033) +-31.980200 +(\024) +-12.980800 +(\033) +-31.980200 +(\034) +7.019230 +(2) +-40 +(\004) +-48.981400 +(\003) +25.981100 +( ) +-12.980800 +(\n) +33.037900 +(2) +-40 +(\037) +36 +(2) +-40 +(\004) +-48.981400 +(/) +-29.980500 +(\017) +-12.019200 +(\024) +-12.980800 +(\r) +-31.980200 +(\017) +-12.980800 +(\032) +-31.980200 +(\026) +36 +(\037) +36 +(2) +-40 +( ) +-12.980800 +(\n) +33.807100 +($) +-31.980200 +(!) +-1 +(\004) +-48.981400 +(\030) +-49.982000 +(') +16 +(\030) +-49.982000 +(\037) +36 +(\026) +36 +(\030) +-49.982000 +(\032) +-31.980200 +(\026) +36 +(\n) +34 +(\004) +-48.981400 +(\033) +-31.980200 +(\024) +-12.980800 +(\004) +-48.019800 +(\034) +7.019230 +(\n) +34 +(=) +-31.980200 +(\017) +-12.980800 +(\n) +34 +(2) +-40.961500 +(\003) +25.979600 +(0) +] TJ 13 TL T* [ (\f) +-31.980200 +(5) +-32.980800 +(\030) +-49.980500 +(\034) +7.980770 +(\003) +25.019500 +( ) +-12.980800 +(#) +23.019800 +(\033) +-31.980200 +(\034) +7.019230 +(\n) +34 +(\004) +-48.981400 +(7) +24.980500 +(\033) +-31.980200 +(\026) +36 +(\026) +35.039100 +(\n) +34 +(\020) +-31.980200 +(\n) +34 +(!) +-1 +(\004) +-48.981400 +(;) +-31.980200 +( ) +-12.980800 +(\037) +36 +(\026) +36 +(\030) +-49.212700 +($) +-31.980200 +(\n) +34 +(\026) +36 +(\r) +-31.980200 +( ) +-12.980800 +(\037) +36 +(\030) +-49.982000 +(!) +-1 +(\004) +-48.981400 +(;) +-31.980200 +(\016) +43.019800 +(!) +-1 +(\004) +-48.019800 +(9) +-22.962700 +(\f) +-31.980200 +(\016) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\020) +-48.981400 +(%) +-12.980800 +(\013) +34 +(\t) +6.018630 +(\007) +44.980500 +(\b) +-48.981400 +(\017) +44.018900 +(\b) +-48.981400 +(\031) +16 +(\006) +-49.980500 +(\007) +44.980500 +(\b) +-48.981400 +(\024) +-12.980800 +(\t) +6.018630 +(\004) +-11.980200 +(\006) +-49.018900 +(\t) +6.018630 +(%) +-12.980800 +(\004) +-11.980200 +(\032) +24.020400 +(\006) +-49.982000 +(\007) +44.982000 +(\013) +33.037900 +(\027) +-12.019200 +(\024) +-12.788500 +(\002) +25.018000 +(\b) +-48.019800 +($) +-21.962100 +(\006) +-49.982000 +(\007) +44.982000 +(\b) +-48.981400 +(\024) +-12.980800 +(\t) +6.018630 +(\004) +-11.018600 +(\024) +-12.980800 +(\017) +44.020400 +(\004) +-11.980200 +(\032) +24.020400 +(\024) +-12.019200 +(&) +41.018600 +(\() +-12.980800 +(\024) +-12.980800 +(\t) +6.018630 +(\013) +34 +(\t) +6.018630 +(\007) +44.020400 +(\021) +-40 +(\004) +-11.980200 +(\b) +-48.116000 +(\t) +6.018630 +(\004) +] TJ 209.004000 0 Td [ (\032) +24.982000 +(\024) +-12.980800 +(&) +41.018600 +(\() +-12.980800 +(\024) +-12.980800 +(\021) +-40 +(\b) +-48.981400 +(\007) +44.020400 +(\013) +34 +(\004) +-11.980200 +(\034) +34 +(\024) +-12.980800 +(\027) +-12.980800 +(\b) +-48.019800 +(\031) +15.039100 +(\004) +-11.018600 +(*) +-4.960940 +(\006) +-49.982000 +(\007) +44.982000 +(\013) +33.037900 +(\021) +-39.519200 +(\004) +-11.980200 +(\037) +-4 +(\021) +-40 +(\b) +-48.978400 +(\t) +6.021640 +(\027) +-12.980800 +(\004) +-11.983200 +(/) +15 +(\b) +-48.978400 +(\013) +34.002400 +(\002) +25.018000 +(\006) +-49.982000 +(\002) +25.979600 +(\031) +15.036100 +(\022) +6.983170 +(\b) +-48.978400 +(\031) +15.997600 +(\006) +-49.982000 +(\f) +] TJ -209.004000 -12.999400 Td [ (.) +33 +(\013) +33.037900 +(#) +6.018630 +(\002) +25.981100 +(\006) +-49.980500 +(\f) +-48.981400 +(\004) +-11.980200 +(.) +33 +(\013) +34 +(\007) +44.018900 +(\025) +-32.980800 +(\024) +-12.980800 +(\002) +25.019500 +(8) +-49.018900 +(\021) +] TJ /R4 9.750000 Tf 13 TL T* [ (K) +44.018900 +(?) +24.018900 +(\034) +7.980770 +(\033) +-31.980200 +(5) +-32.980800 +(\024) +-12.980800 +(\004) +-48.981400 +(?) +24.018900 +(\030) +-49.018900 +(\020) +-31.980200 +(K) +44.018900 +(\004) +-48.981400 +(\003) +25.981100 +(\n) +33.037900 +(\002) +16 +( ) +-12.980800 +(\024) +-12.980800 +(\037) +36 +(\002) +16 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\034) +7.019230 +(\n) +34 +(\r) +-31.210900 +(\033) +-31.980200 +(\034) +7.019230 +(\003) +] TJ T* [ (\016) +43.019800 +(\034) +7.019230 +(\003) +25.981100 +(\037) +36 +(+) +7.019230 +(\037) +36 +(\002) +15.039100 +(\037) +36 +(\030) +-49.980500 +(\026) +36 +(\004) +-48.019800 +(8) +-48.981400 +(\024) +-12.980800 +(\003) +25.019500 +(\n) +34 +(\026) +36 +(\026) +36 +(\037) +36 +(\020) +-31.980200 +(\n) +33.037900 +(\024) +-12.019200 +(\002) +15.039100 +(\n) +34 +(\004) +-48.981400 +(:) +-2.998800 +(\030) +-49.982000 +(\032) +-31.980200 +(!) +-1 +(\004) +-48.116000 +(9) +-22.001200 +(\024) +-12.980800 +(\037) +36 +(') +15.039100 +(\n) +34 +(\034) +7.019230 +(2) +-40 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(\004) +-48.981400 +(\033) +-31.980200 +(+) +7.980770 +(\004) +-48.981400 +(3) +-31.980200 +(\017) +-12.980800 +(\034) +7.019230 +(\037) +36 +(\002) +16 +( ) +-12.980800 +(!) +-1 +(\004) +] TJ 179.006000 0 Td [ (\f) +-31.980200 +(5) +-32.980800 +(\037) +36 +(\003) +25.979600 +(6) +-3.191110 +(\n) +34 +(\034) +7.019230 +(\026) +36 +(\030) +-49.982000 +(\024) +-12.980800 +($) +] TJ /R1 10.725000 Tf -179.006000 -24.724700 Td [ (\031) +35.003300 +(\017) +-40.965100 +(\005) +-39.996700 +(\004) +-1.983170 +(\013) +-2.996610 +(\006) +-19.982000 +(\b) +35.978500 +(\013) +-3.958150 +(\020) +-3.003440 +(\021) +-21.965100 +(\b) +35.978500 +(\025) +-21.965100 +(\f) +-2.996610 +(\003) +-1.990000 +(\016) +32.009400 +(\017) +-40.963700 +(\020) +-3.004810 +(\013) +-2.996610 +(\006) +-19.982000 +(\b) +35.016900 +(\016) +32.009400 +(\030) +16.004700 +(\004) +-1.983170 +(\006) +-19.020400 +(\006) +-19.632300 +(\016) +] TJ /R4 9.750000 Tf 17.875300 TL T* [ (\036) +16 +(\037) +36 +(\034) +7.019230 +(#) +23.019800 +(\004) +-48.981400 +(2) +-40 +(\r) +-31.980200 +(\n) +34 +(\030) +-49.980500 +(*) +16 +(\037) +35.039100 +(\024) +-12.019200 +(\020) +-31.980200 +(\004) +-48.981400 +(\030) +-49.980500 +(\032) +-31.980200 +(\037) +36 +(\026) +36 +(\037) +36 +(\003) +25.018000 +(\037) +36 +(\n) +34 +(2) +] TJ 17.874400 TL T* [ (\f) +-31.980200 +(\003) +25.019500 +(\034) +7.980770 +(\033) +-31.980200 +(\024) +-12.980800 +(\020) +-31.980200 +(\004) +-48.981400 +($) +-31.018600 +(\037) +35.039100 +($) +-31.018600 +(\030) +-49.980500 +(\002) +15.039100 +(\003) +25.981100 +(\037) +36 +(\002) +15.039100 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(\n) +34 +(2) +-40 +(\r) +-31.980200 +(\n) +33.037900 +(\002) +16 +(\037) +36 +(\030) +-49.982000 +(\026) +36.481400 +(\026) +36 +(\031) +16 +(\004) +-48.981400 +(5) +-32.980800 +( ) +-12.980800 +(\n) +34 +(\024) +-12.980800 +(\004) +-48.981400 +(\034) +7.019230 +(\n) +34 +(\026) +36 +(\030) +-49.982000 +(\003) +25.018000 +(\n) +34 +($) +-31.980200 +(\004) +-48.019800 +(\003) +25.018000 +(\033) +-31.980200 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(#) +23.019800 +(\r) +-31.980200 +(\017) +-12.115400 +(\003) +] TJ 200.003000 0 Td [ (\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(\002) +15.039100 +(\033) +-31.980200 +(\024) +-12.019200 +(\002) +15.039100 +(\n) +34 +(\r) +-31.980200 +(\003) +25.018000 +(2) +] TJ -200.003000 -17.875300 Td [ (%) +-49.980500 +(+) +7.019230 +(+) +7.980770 +(\n) +33.037900 +(\002) +16 +(\003) +25.019500 +(\037) +36 +(') +16 +(\n) +34 +(\004) +-48.981400 +(\033) +-31.980200 +(\034) +7.019230 +(\020) +-31.018600 +(\030) +-49.980500 +(\024) +-12.980800 +(\037) +36 +(2) +-40.961500 +(\030) +-49.020400 +(\003) +25.018000 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(\030) +-49.116600 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(\037) +35.039100 +(\024) +-12.019200 +(\003) +25.018000 +(\n) +34 +(\034) +7.019230 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(2) +-40 +(\033) +-31.980200 +(\024) +-12.980800 +(\030) +-49.982000 +(\026) +36 +(\004) +-48.981400 +(2) +-40 +(*) +16 +(\037) +36 +(\026) +35.039100 +(\026) +36 +(2) +] TJ 17.875300 TL T* [ (7) +24.018900 +(\033) +-31.980200 +(#) +23.019800 +(\r) +-31.980200 +(\n) +34 +(\003) +25.019500 +(\n) +34 +(\024) +-12.980800 +(\003) +25.981100 +(\004) +-48.981400 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.981400 +(\r) +-31.980200 +(\034) +7.980770 +(\033) +-31.980200 +(') +15.039100 +(\037) +36 +($) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.018600 +(\004) +-48.981400 +(\020) +-31.499400 +(\017) +-12.980800 +(\037) +36 +($) +-31.980200 +(\030) +-49.982000 +(\024) +-12.980800 +(\002) +16 +(\n) +34 +(\004) +-48.981400 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.018600 +(\004) +-48.981400 +(\026) +36 +(\n) +33.037900 +(\030) +-49.020400 +($) +-31.980200 +(\n) +33.037900 +(\034) +7.980770 +(2) +-40.961500 +( ) +-12.019200 +(\037) +35.039100 +(\r) +-31.018600 +(\004) +-48.981400 +(\003) +25.018000 +(\033) +-31.307100 +(\004) +-48.981400 +(\033) +] TJ 207.005000 0 Td [ (\003) +25.979600 +( ) +-12.980800 +(\n) +34 +(\034) +7.019230 +(2) +] TJ -207.005000 -17.874400 Td [ (9) +-22 +(\024) +-12.980800 +($) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\020) +-31.980200 +(\034) +7.019230 +(\030) +-49.980500 +($) +-31.018600 +(\017) +-12.980800 +(\030) +-49.980500 +(\003) +25.019500 +(\n) +34 +(\004) +-48.981400 +(\026) +36 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\004) +-48.981400 +(#) +23.019800 +(\030) +-49.982000 +(\003) +25.979600 +( ) +-12.692300 +(\n) +34 +(#) +23.019800 +(\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\002) +16 +(2) +-40.961500 +(!) +-1 +(\004) +-48.019800 +(\002) +15.039100 +(\030) +-49.982000 +(\026) +36 +(\002) +16 +(\017) +-12.980800 +(\026) +36 +(\017) +-12.980800 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(\026) +36 +(\037) +36 +(\024) +-12.980800 +(\n) +34 +(\030) +-49.982000 +(\034) +7.019230 +(\004) +-48.981400 +(\030) +] TJ 199 0 Td [ (\026) +36 +(\020) +-31.980200 +(\n) +34 +(\032) +-31.980200 +(\034) +7.019230 +(\030) +-49.982000 +(!) +] TJ -199 -13 Td [ (\r) +-31.980200 +( ) +-12.980800 +(\031) +16 +(2) +-40 +(\037) +36 +(\002) +15.039100 +(2) +-40 +(!) +-1 +(\004) +-48.981400 +(\002) +16 +( ) +-12.980800 +(\n) +34 +(#) +23.019800 +(\037) +36 +(2) +-40.961500 +(\003) +25.981100 +(\034) +7.019230 +(\031) +16 +(!) +-1.962140 +(\004) +-48.019800 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\033) +-31.018600 +(\034) +7.307690 +(\020) +-31.980200 +(\030) +-49.982000 +(\024) +-12.980800 +(\037) +36 +(\002) +16 +(\004) +-48.981400 +(\002) +16 +( ) +-12.980800 +(\n) +34 +(#) +23.019800 +(\037) +36 +(2) +-40.961500 +(\003) +25.979600 +(\034) +7.019230 +(\031) +] TJ /R1 10.725000 Tf 24.724700 TL T* [ (\033) +-40.003600 +(\002) +-3.964980 +(\003) +-1.990000 +(\n) +-20.989900 +(\024) +-21.003600 +(\f) +-3.958150 +(\003) +-1.990000 +(\b) +35.978500 +(\f) +-3.958150 +(\034) +35.003300 +(\025) +-21.003600 +(\f) +-3.958150 +(\003) +-1.990000 +(\004) +-1.021630 +(\f) +-3.958150 +(\020) +-3.004810 +(\005) +-39.996700 +(\f) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (\001) +-22 +(\013) +33.037900 +(\035) +-31.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\t) +6.018630 +(\017) +] TJ /R4 9.750000 Tf 13 TL T* [ (;) +-31.980200 +(\034) +7.019230 +(\n) +34 +(2) +-40 +(2) +-40 +(\004) +-48.981400 +(\033) +-31.980200 +(+) +7.019230 +(+) +7.980770 +(\037) +35.039100 +(\002) +16 +(\n) +34 +(\034) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (%) +-12.980800 +(\013) +34 +(\035) +-31.980200 +(\b) +-48.981400 +(\006) +-49.980500 +(\t) +6.980170 +(\003) +35.039100 +(\031) +16 +(\022) +] TJ /R4 9.750000 Tf 13 TL T* [ (;) +-31.980200 +(\034) +7.019230 +(\n) +34 +(2) +-40 +(\037) +36 +($) +-31.980200 +(\n) +34 +(\024) +-12.980800 +(\003) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (') +-12.980800 +(\f) +-48.981400 +(\024) +-12.019200 +(\t) +6.018630 +(\013) +33.037900 +(\004) +-11.018600 +(\n) +-49.980500 +(\024) +-12.980800 +(#) +6.018630 +(\t) +6.018630 +(%) +-12.980800 +(\006) +-49.018900 +(\007) +44.018900 +(\b) +-48.981400 +(\024) +-12.980800 +(\t) +6.018630 +(\036) +17.001200 +(\004) +-11.018600 +(/) +14.038500 +(\024) +-12.980800 +(#) +6.018630 +(\021) +-40 +(\007) +44.885800 +(\024) +-12.980800 +(\t) +6.018630 +(\036) +17.001200 +(\004) +-11.980200 +(-) +34 +(9) +43.019800 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf 12.999400 TL T* [ (\016) +43.019800 +(\002) +16 +(\003) +25.019500 +(\037) +36 +(') +16 +(\n) +33.037900 +(\004) +-48.019800 +($) +-31.980200 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\033) +-31.980200 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(\033) +-31.018600 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.018000 +( ) +-12.019200 +(\n) +33.037900 +(\004) +-48.019800 +(;) +-31.980200 +(\026) +36 +(\033) +-31.787900 +(\024) +-12.980800 +(\n) +34 +(\004) +-48.981400 +(\002) +16 +(\033) +-31.980200 +(\024) +-12.980800 +(\003) +25.018000 +(\n) +34 +(\024) +-12.980800 +(\003) +25.979600 +(\004) +-48.981400 +(#) +23.019800 +(\030) +-49.982000 +(\024) +-12.980800 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(#) +23.019800 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(\004) +-48.019800 +(2) +-40.192300 +(\031) +] TJ 206.997000 0 Td [ (2) +-40.961500 +(\003) +25.979600 +(\n) +33.037900 +(#) +] TJ /R2 9.750000 Tf -206.997000 -17.875300 Td [ (") +-12.980800 +(\024) +-12.980800 +(\() +-12.980800 +(\013) +34 +(\004) +-11.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\002) +25.019500 +(\() +-12.980800 +(\024) +-12.980800 +(\002) +25.981100 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.981400 +(\024) +-12.980800 +(\t) +6.980170 +(\036) +16.039700 +(\004) +-11.018600 +(\n) +-49.982000 +(\002) +25.018000 +(\013) +34 +(%) +-12.980800 +(\013) +34 +(\002) +25.498800 +(\b) +-48.981400 +(\031) +16 +(8) +-49.982000 +(\021) +-40 +(\035) +-31.980200 +(#) +6.018630 +(\002) +25.018000 +(\027) +-12.019200 +(\036) +16.039700 +(\004) +-11.018600 +(:) +43.019800 +(\033) +-4.960940 +(\036) +17.001200 +(\004) +-11.018600 +(\037) +-4.960940 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf 13 TL T* [ (\016) +43.019800 +(\002) +16 +(\003) +25.019500 +(\037) +36 +(') +16 +(\n) +33.037900 +(\004) +-48.019800 +($) +-31.980200 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\033) +-31.980200 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(\033) +-31.018600 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.018000 +( ) +-12.019200 +(\n) +33.037900 +(\004) +-48.019800 +(3) +-31.980200 +(\033) +-31.691700 +(\r) +-31.980200 +(\n) +34 +(\004) +-48.981400 +(\030) +-49.982000 +(\r) +-31.980200 +(\r) +-31.018600 +(\026) +35.039100 +(\037) +36 +(\002) +16 +(\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.019200 +(\004) +-48.981400 +(2) +-40 +(\n) +33.037900 +(\034) +7.980770 +(') +15.039100 +(\n) +34 +(\034) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (:) +43.019800 +(7) +24.018900 +(\032) +24.018900 +(\004) +-11.018600 +(\026) +-12.980800 +(&) +41.018600 +(\035) +-31.980200 +(\002) +25.019500 +(\006) +-49.980500 +(\031) +16 +(\022) +6.018630 +(\036) +17 +(\004) +-11.980200 +(\023) +-12.019200 +(\025) +-32.980800 +(\b) +-48.981400 +(\007) +44.020400 +($) +-21 +(\013) +34 +(\002) +25.018000 +(\f) +-48.981400 +(\006) +-49.982000 +(\t) +6.884010 +(%) +] TJ /R4 9.750000 Tf 13 TL T* [ (\027) +-24.960900 +(\n) +34 +(#) +23.019800 +(\032) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.981100 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(#) +23.019800 +(\n) +33.037900 +(\024) +-12.019200 +(L) +-1.962140 +(2) +-40 +(\004) +-48.981400 +(') +16 +(\033) +-31.980200 +(\026) +36 +(\026) +36.481400 +(\n) +34 +(\031) +15.039100 +(\032) +-31.018600 +(\030) +-49.982000 +(\026) +36 +(\026) +35.039100 +(\004) +-48.019800 +(\003) +25.018000 +(\n) +34 +(\030) +-49.982000 +(#) +] TJ /R2 9.750000 Tf 17.875300 TL T* [ (-) +34 +(\022) +6.018630 +(\013) +34 +(\004) +-11.980200 +(\001) +-22.961200 +(\013) +34 +(\035) +-31.980200 +(\b) +-48.019800 +(\006) +-49.980500 +(\t) +6.018630 +(\004) +-11.980200 +(\() +-12.980800 +(\002) +25.981100 +(\024) +-12.980800 +(0) +-48.981400 +(\013) +34 +(\031) +15.039100 +(\007) +] TJ /R4 9.750000 Tf 12.999400 TL T* [ (\016) +43.019800 +(\002) +16 +(\003) +25.019500 +(\037) +36 +(') +16 +(\n) +33.037900 +(\004) +-48.019800 +($) +-31.980200 +(\n) +34 +(') +15.039100 +(\n) +34 +(\026) +36 +(\033) +-31.980200 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.981400 +(\033) +-31.018600 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.018000 +( ) +-12.019200 +(\n) +33.037900 +(\004) +-48.019800 +(\t) +-41.962100 +(\n) +34.287900 +(\032) +-31.980200 +(\037) +36 +(\030) +-49.982000 +(\024) +-12.980800 +(\004) +-48.019800 +(") +-22.962700 +(A) +15 +(9) +-22.962700 +(<) +-11.018600 +(:) +-3.960340 +(\037) +36 +(\024) +-12.980800 +(\017) +-12.980800 +(B) +34 +(\004) +-48.981400 +(\033) +-31.018600 +(\r) +-31.980200 +(\n) +33.037900 +(\034) +7.980770 +(\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.210900 +(\004) +] TJ 204.003000 0 Td [ (2) +-40 +(\031) +16 +(2) +-40.961500 +(\003) +25.979600 +(\n) +33.037900 +(#) +] TJ -204.003000 -13 Td [ (\036) +16 +(\033) +-31.980200 +(\002) +16 +(\017) +-12.980800 +(2) +-40.961500 +(\004) +-48.019800 +(\033) +-31.980200 +(\024) +-12.980800 +(\004) +-48.981400 +(=) +-31.980200 +(\017) +-12.019200 +(\030) +-49.980500 +(\026) +36 +(\037) +35.039100 +(\026) +36 +(\003) +25.981100 +(\031) +15.039100 +(\004) +-48.019800 +(\030) +-49.982000 +(2) +-40.961500 +(2) +-40 +(\017) +-12.980800 +(\034) +7.980770 +(\030) +-49.982000 +(\024) +-12.692300 +(\002) +16 +(\n) +33.037900 +(!) +-1 +(\004) +-48.019800 +(2) +-40.961500 +(\n) +34 +(\002) +16 +(\017) +-12.980800 +(\034) +7.019230 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(!) +-1 +(\004) +-48.981400 +(;) +-31.980200 +(@) +24.020400 +(!) +-1 +(\004) +-48.019800 +(\030) +-49.982000 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(5) +-32.980800 +(\033) +-31.980200 +(\034) +7.980770 +(*) +] TJ 199 0 Td [ (+) +7.019230 +(\026) +36 +(\033) +-31.980200 +(5) +-32.980800 +(\004) +-48.019800 +(\037) +35.039100 +(2) +-40 +(2) +-40 +(\017) +-12.980800 +(\n) +34 +(2) +] TJ /R2 9.750000 Tf -199 -17.875300 Td [ (\023) +-12.980800 +(\025) +-32.980800 +(\006) +-49.980500 +(\002) +25.981100 +(\007) +44.018900 +(\022) +6.018630 +(&) +41.018600 +(\024) +-12.980800 +(\002) +25.019500 +(\013) +34 +(\004) +-11.980200 +(\032) +24.980500 +(\024) +-12.980800 +(\f) +-48.981400 +(\f) +-48.981400 +(\013) +34 +(\027) +-12.980800 +(\013) +34 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\022) +6.018630 +(\b) +-48.019800 +(\f) +-48.692900 +(\006) +-49.982000 +(%) +-12.980800 +(\013) +34 +(\f) +-48.981400 +(\() +-12.980800 +(\022) +6.980170 +(\b) +-48.981400 +(\006) +-49.982000 +(\036) +17.001200 +(\004) +-11.980200 +(') +-12.980800 +(\033) +-4 +(\036) +17.001200 +(\004) +-11.980200 +(\037) +-4 +(\023) +-12.980800 +(\033) +] TJ /R4 9.750000 Tf T* [ (\f) +-31.980200 +(\n) +34 +(\002) +16 +(\034) +7.019230 +(\n) +34 +(\003) +25.019500 +(\030) +-49.980500 +(\034) +7.019230 +(\031) +16 +(!) +-1 +(\004) +-48.981400 +(;) +-31.980200 +(@) +24.018900 +(\004) +-48.019800 +(#) +23.019800 +(\030) +-49.980500 +(\024) +-12.980800 +(\030) +-49.982000 +(\020) +-31.980200 +(\n) +34 +(\034) +7.019230 +(!) +-1 +(\004) +-48.981400 +(\030) +-49.020400 +(\024) +-12.788500 +($) +-31.980200 +(\004) +-48.981400 +(#) +23.019800 +(\n) +34 +(#) +23.019800 +(\032) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.979600 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(#) +23.019800 +(\n) +33.037900 +(\024) +-12.019200 +(L) +-1.962140 +(2) +-40 +(\004) +-48.019800 +(') +15.039100 +(\033) +-31.210900 +(\026) +36 +(\026) +] TJ 206.997000 0 Td [ (\n) +33.037900 +(\031) +16 +(\032) +-31.980200 +(\030) +-49.982000 +(\026) +36 +(\026) +36 +(\004) +-48.981400 +(\003) +25.979600 +(\n) +33.037900 +(\030) +-49.020400 +(#) +] TJ /R2 9.750000 Tf -206.997000 -17.875300 Td [ (-) +34 +(\023) +-12.980800 +(:) +43.019800 +(\004) +-11.980200 +(') +-12.980800 +(\013) +34 +(\t) +6.018630 +(\007) +44.980500 +(\013) +33.037900 +(\t) +6.018630 +(\002) +25.981100 +(\b) +-48.981400 +(\013) +34 +(%) +-12.980800 +(\036) +17 +(\004) +-11.980200 +(*) +-4 +(\013) +33.037900 +(\002) +25.979600 +(&) +41.018600 +(\006) +-49.982000 +(\t) +6.018630 +(!) +] TJ /R4 9.750000 Tf 13 TL T* [ (-) +-3 +(\n) +33.037900 +(\030) +-49.018900 +(#) +23.019800 +(\004) +-48.981400 +(\002) +16 +(\030) +-49.980500 +(\r) +-31.980200 +(\003) +25.019500 +(\030) +-49.980500 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.979600 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(\030) +-49.982000 +($) +-31.980200 +(\033) +-31.980200 +(\026) +36.481400 +(\n) +34 +(2) +-40.961500 +(\002) +16 +(\n) +34 +(\024) +-12.980800 +(\003) +25.018000 +(2) +-40 +(L) +-1 +(\004) +-48.981400 +(\003) +25.018000 +(\n) +34 +(\024) +-12.980800 +(\024) +-12.980800 +(\037) +36 +(2) +-40 +(\004) +-48.981400 +(\003) +25.979600 +(\n) +33.037900 +(\030) +-49.982000 +(#) +] TJ /R2 9.750000 Tf 17.874400 TL T* [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ ET Q Q 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R3 10 Tf 1 0 0 1 18 764 Tm [ (\001) +38.031200 +(\002) +19.031200 +(\003) +-40 +(\004) +-2.968870 +(\005) +-36.968600 +(\006) +34 +(\007) +43 +(\b) +41.031400 +(\t) +19.031200 +(\003) +-40 +(\n) +25.968800 +(\013) +4.031250 +(\003) +-40 +(\f) +38.031000 +(\006) +34 +(\005) +-36.969000 +(\r) +41.968500 +(\r) +43 +(\007) +] TJ 472 0 Td [ (\016) +19.031200 +(\007) +43.002000 +(\007) +43.002000 +(\017) +1.031250 +(\020) +-40.002000 +(\021) +-3 +(\021) +-3 +(\022) +-40.968800 +(\005) +-36.966800 +(\006) +34.002000 +(\007) +43.002000 +(\b) +41.033200 +(\t) +19.031200 +(\023) +7.968750 +(\024) +44.970700 +(\006) +34.002000 +(\005) +-37.998000 +(\r) +43.002000 +(\r) +43.002000 +(\007) +43.002000 +(\013) +4.031250 +(\t) +19.031200 +(\025) +48.966800 +(\007) +43.002000 +(\021) +-3 +(\026) +25.968800 +(\027) +45.908200 +(\021) +] TJ -472 -720.699000 Td [ ( ) +1.031250 +(\003) +-40 +(\031) +1.031250 +(\r) +43 +(\003) +-40 +(\032) +] TJ 530 0 Td [ (\033) +1.031250 +(\003) +-40.002000 +(\034) +30 +(\031) +1.031250 +(\027) +44.970700 +(\003) +-40.002000 +(\035) +1.031250 +(\036) +1.031250 +(\036) +1.031250 +(\037) +] TJ ET Q Q +endstream +endobj +18 0 obj +30045 +endobj +5 0 obj +<< /Type /Page /Parent 2 0 R +/MediaBox [ 0.000000 0.000000 612.000000 792.000000 ] +/TrimBox [ 0.000000 0.000000 612.000000 792.000000 ] +/Contents 17 0 R +/Resources << /ExtGState << /R0 9 0 R +>> + /Font << /R1 11 0 R +/R2 12 0 R +/R3 13 0 R +/R4 14 0 R +>> + /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> >> +endobj +19 0 obj +<< /Length 20 0 R >> +stream + q 0.240000 0 0 0.240000 0 0 cm /R0 gs q 225 3075 m 2325 3075 l 2325 317.922000 l 225 317.922000 l h W n 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R3 9.750000 Tf 1 0 0 1 58.875000 710.125000 Tm [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.980800 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +] TJ 30.875600 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\007) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\023) +44.018900 +(\030) +-49.980500 +(\024) +-12.980800 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +] TJ 30.874700 TL T* [ (\f) +-31.980900 +(\n) +34 +(\r) +-31.980900 +(\004) +-48.980600 +(\021) +-12.980800 +(\013) +-12.019200 +(\013) +-12.980800 +(\035) +-12.980800 +(\004) +-48.980600 +(\b) +-12.980800 +(\004) +-48.019100 +(\023) +44.018900 +(\017) +-12.980800 +(\024) +-12.980800 +(\004) +-48.019100 +(\021) +-12.980800 +(\013) +-12.980800 +(\013) +-12.980800 +(\022) +] TJ T* [ (:) +-3 +(\n) +33.038600 +(\037) +36 +(2) +-40 +(\017) +-12.980800 +(\034) +7.019230 +(\n) +34 +(\004) +-48.980600 +(\003) +25.981100 +(\037) +36 +(#) +23.019100 +(\n) +] TJ 121.125000 110.499000 Td [ (\f) +-31.980200 +(\003) +25.019500 +(\017) +-12.019200 +($) +-31.980200 +(\n) +33.037900 +(\024) +-12.019200 +(\003) +25.019500 +(\004) +-48.981400 +(2) +-40 +(\017) +-12.980800 +(\r) +-31.980200 +(\n) +34 +(\034) +7.019230 +(') +16 +(\037) +36 +(2) +-40.961500 +(\033) +-31.018600 +(\034) +] TJ /R1 9.750000 Tf 17.874400 TL T* [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R3 9.750000 Tf -212.003000 -13 Td [ (-) +-3 +(\n) +33.037900 +(\030) +-49.018900 +(#) +23.019800 +(\004) +-48.981400 +(\002) +16 +(\030) +-49.980500 +(\r) +-31.980200 +(\003) +25.019500 +(\030) +-49.980500 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.979600 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(#) +23.019800 +(\n) +33.037900 +(\024) +-12.019200 +(L) +-1.096750 +(2) +-40 +(\004) +-48.981400 +(') +16 +(\030) +-49.982000 +(\034) +7.019230 +(2) +-40 +(\037) +36 +(\003) +25.018000 +(\031) +16 +(\004) +-48.981400 +(') +16 +(\033) +-31.980200 +(\026) +36 +(\026) +36 +(\n) +33.037900 +(\031) +16 +(\032) +-31.980200 +(\030) +-49.982000 +(\026) +36 +(\026) +36 +(\004) +-48.981400 +(\003) +25.979600 +(\n) +33.037900 +(\030) +-49.982000 +(#) +] TJ /R1 9.750000 Tf 17.875300 TL T* [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R3 9.750000 Tf -212.003000 -12.999400 Td [ (\027) +-24.960900 +(\n) +34 +(#) +23.019800 +(\032) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.981100 +( ) +-12.980800 +(\n) +33.037900 +(\004) +-48.019800 +(2) +-40.961500 +(\r) +-31.018600 +(\n) +33.037900 +(\n) +34 +(\002) +16 +( ) +-12.980800 +(\004) +-48.981400 +(\030) +-49.982000 +(\024) +-12.115400 +($) +-31.980200 +(\004) +-48.981400 +($) +-31.018600 +(\n) +33.037900 +(\032) +-31.980200 +(\030) +-49.020400 +(\003) +25.018000 +(\n) +34 +(\004) +-48.981400 +(\003) +25.018000 +(\n) +34 +(\030) +-49.982000 +(#) +] TJ /R1 9.750000 Tf T* [ (\005) +12.038800 +(#) +6.980170 +(\t) +6.018630 +(\b) +-48.981400 +(\031) +16 +(\022) +6.018630 +(\004) +-11.980200 +(\020) +-48.981400 +(\t) +6.980170 +(\007) +44.018900 +(\013) +34 +(\002) +25.019500 +(\t) +6.018630 +(\006) +-49.980500 +(\007) +44.018900 +(\b) +-48.019800 +(\024) +-12.980800 +(\t) +6.018630 +(\006) +-49.982000 +(\f) +-48.981400 +(\004) +-11.018600 +(\023) +-12.980800 +(\031) +16 +(\022) +6.210940 +(\024) +-12.980800 +(\024) +-12.980800 +(\f) +-48.019800 +(\036) +16.039700 +(\004) +-11.018600 +(') +-12.980800 +(\013) +34 +(\002) +25.018000 +(\031) +16 +(\022) +6.018630 +(\006) +-49.982000 +(\)) +7.019230 +(\023) +-12.980800 +(\007) +44.982000 +(\006) +-49.982000 +(\002) +25.018000 +(\t) +6.018630 +(\035) +-31.980200 +(\013) +34 +(\002) +25.018000 +(\027) +-12.980800 +(\036) +17.001200 +(\004) +-11.018600 +(*) +-4.960940 +(\013) +34.287900 +(\002) +25.018000 +(&) +] TJ 212.003000 0 Td [ (\006) +-49.982000 +(\t) +6.980170 +(!) +] TJ /R3 9.750000 Tf -212.003000 -13 Td [ (7) +24.018900 +(\033) +-31.980200 +(\)) +-3 +(\n) +34 +($) +-31.980200 +(\037) +36 +(\003) +25.019500 +(\033) +-31.980200 +(\034) +7.019230 +(\004) +-48.019800 +(\033) +-31.980200 +(+) +7.019230 +(\004) +-48.981400 +(\003) +25.981100 +( ) +-12.980800 +(\n) +34 +(\004) +-48.981400 +(\031) +16 +(\n) +33.037900 +(\030) +-49.982000 +(\034) +7.980770 +(\032) +-31.980200 +(\033) +-31.980200 +(\033) +-31.980200 +(*) +] TJ 17.874400 TL T* [ (@) +24.018900 +(\n) +34 +(2) +-40 +(\n) +33.037900 +(\030) +-49.980500 +(\034) +7.980770 +(\002) +15.039100 +( ) +-12.019200 +(\004) +-48.981400 +(/) +-29.980500 +(5) +-32.980800 +(\033) +-31.980200 +(\034) +7.980770 +(*) +15.039100 +(+) +7.980770 +(\026) +35.039100 +(\033) +-31.018600 +(5) +-32.980800 +(!) +-1.962140 +(\004) +-48.019800 +(2) +-40.961500 +(\031) +16 +(2) +-40 +(\003) +25.018000 +(\n) +34.287900 +(#) +23.019800 +(\004) +-48.981400 +(\030) +-49.982000 +($) +-31.018600 +(#) +23.019800 +(\037) +35.039100 +(\024) +-12.019200 +(\037) +35.039100 +(2) +-40 +(\003) +25.018000 +(\034) +7.980770 +(\030) +-49.982000 +(\003) +25.018000 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(!) +-1 +(\004) +-48.981400 +(2) +-40 +(\n) +34 +(\002) +16 +(\017) +-12.980800 +(\034) +7.019230 +(\037) +36 +(\003) +25.018000 +(\031) +] TJ 200 0 Td [ (0) +-29.982000 +(C) +-48.019800 +(\004) +-48.981400 +(;) +-31.980200 +(\034) +7.019230 +(\033) +-31.980200 +(\020) +-31.018600 +(\034) +7.019230 +(\030) +-49.982000 +(#) +23.019800 +(#) +23.019800 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.980200 +(C) +] TJ -200 -13 Td [ (\027) +-24.960900 +(\017) +-12.019200 +(2) +-40.961500 +(\037) +36 +(\002) +16 +(\004) +-48.981400 +(/) +-29.980500 +(\r) +-31.018600 +(\030) +-49.980500 +(2) +-40.961500 +(2) +-40 +(\037) +36 +(') +16 +(\n) +33.037900 +(\004) +-48.019800 +(\030) +-49.980500 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.019800 +(\030) +-49.982000 +(\002) +15.039100 +(\003) +25.979600 +(\037) +36 +(') +15.039100 +(\n) +34.287900 +(C) +-48.981400 +(\004) +-48.019800 +(\r) +-31.980200 +(\n) +33.037900 +(\034) +7.980770 +(\002) +15.039100 +(\017) +-12.019200 +(2) +-40.961500 +(2) +-40 +(\037) +36 +(\033) +-31.980200 +(\024) +-12.980800 +(\004) +-48.981400 +(\030) +-49.020400 +(\024) +-12.980800 +($) +-31.980200 +(\004) +-48.981400 +(\020) +-31.980200 +(\017) +-12.019200 +(\037) +35.039100 +(\003) +25.979600 +(\030) +-49.982000 +(\034) +7.019230 +(!) +-1 +(\004) +-48.981400 +(2) +] TJ 200 0 Td [ (\033) +-31.980200 +(#) +23.019800 +(\n) +34 +(\004) +-48.981400 +(\002) +16 +(\026) +36 +(\030) +-49.982000 +(\034) +7.019230 +(\037) +36 +(\024) +-12.980800 +(\n) +34 +(\003) +25.018000 +(0) +-29.982000 +(C) +] TJ -200 -13 Td [ (\f) +-31.980200 +(\030) +-49.980500 +(\037) +36 +(\026) +36 +(\037) +36 +(\024) +-12.980800 +(\020) +-31.980200 +(C) +-48.981400 +(\004) +-48.019800 +(H) +6.018630 +(\033) +-31.980200 +(\026) +36 +(\026) +36 +(\n) +33.037900 +(\031) +16 +(\032) +-31.980200 +(\030) +-49.980500 +(\026) +36 +(\026) +36 +(C) +-48.981400 +(\004) +-48.019800 +(\f) +-31.980200 +(=) +-31.980200 +(\017) +-12.980800 +(\030) +-49.982000 +(2) +-39.519200 +( ) +-12.980800 +(C) +-48.981400 +(\004) +-48.019800 +(\016) +43.019800 +(\026) +36 +(\r) +-31.980200 +(\037) +36 +(\024) +-12.980800 +(\n) +34 +(\004) +-48.981400 +(2) +-40 +(\r) +-31.980200 +(\033) +-31.980200 +(\034) +7.019230 +(\003) +25.018000 +(2) +] TJ -121.125000 -55.249700 Td [ (3) +-31.980900 +(4) +-12.980800 +(\034) +7.980770 +(\037) +35.038300 +(\002) +16 +( ) +-12.980800 +(!) +-1 +(\004) +-48.980600 +(\006) +-12.019200 +(\022) +-12.980800 +(\004) +-48.980600 +(A) +15 +(\033) +-31.980900 +(') +15.038300 +(\n) +34 +(#) +23.019800 +(\032) +-31.980200 +(\n) +34 +(\034) +7.019230 +(\004) +-48.019800 +(\005) +-12.980800 +(\006) +-12.980800 +(\006) +-12.500000 +(\013) +] TJ 39 TL T* [ (\027) +-24.961700 +(\030) +-49.018900 +(\034) +7.019230 +(\003) +25.019500 +(\037) +36 +(\024) +-12.980800 +(\004) +-48.980600 +(\036) +16 +(,) +-1 +(\004) +-48.980600 +(I) +6.019380 +(\034) +7.980770 +(\030) +-49.980500 +(+) +7.019230 +(+) +7.019230 +(\003) +] TJ ET Q Q 0 G 0 g q 4.166670 0 0 4.166670 0 0 cm BT /R2 10 Tf 1 0 0 1 18 764 Tm [ (\001) +38.031200 +(\002) +19.031200 +(\003) +-40 +(\004) +-2.968870 +(\005) +-36.968600 +(\006) +34 +(\007) +43 +(\b) +41.031400 +(\t) +19.031200 +(\003) +-40 +(\n) +25.968800 +(\013) +4.031250 +(\003) +-40 +(\f) +38.031000 +(\006) +34 +(\005) +-36.969000 +(\r) +41.968500 +(\r) +43 +(\007) +] TJ 472 0 Td [ (\016) +19.031200 +(\007) +43.002000 +(\007) +43.002000 +(\017) +1.031250 +(\020) +-40.002000 +(\021) +-3 +(\021) +-3 +(\022) +-40.968800 +(\005) +-36.966800 +(\006) +34.002000 +(\007) +43.002000 +(\b) +41.033200 +(\t) +19.031200 +(\023) +7.968750 +(\024) +44.970700 +(\006) +34.002000 +(\005) +-37.998000 +(\r) +43.002000 +(\r) +43.002000 +(\007) +43.002000 +(\013) +4.031250 +(\t) +19.031200 +(\025) +48.966800 +(\007) +43.002000 +(\021) +-3 +(\026) +25.968800 +(\027) +45.908200 +(\021) +] TJ -472 -720.699000 Td [ (\032) +1.031250 +(\003) +-40 +(\031) +1.031250 +(\r) +43 +(\003) +-40 +(\032) +] TJ 530 0 Td [ (\033) +1.031250 +(\003) +-40.002000 +(\034) +30 +(\031) +1.031250 +(\027) +44.970700 +(\003) +-40.002000 +(\035) +1.031250 +(\036) +1.031250 +(\036) +1.031250 +(\037) +] TJ ET Q Q +endstream +endobj +20 0 obj +10425 +endobj +6 0 obj +<< /Type /Page /Parent 2 0 R +/MediaBox [ 0.000000 0.000000 612.000000 792.000000 ] +/TrimBox [ 0.000000 0.000000 612.000000 792.000000 ] +/Contents 19 0 R +/Resources << /ExtGState << /R0 9 0 R +>> + /Font << /R1 12 0 R +/R2 13 0 R +/R3 14 0 R +>> + /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> >> +endobj +9 0 obj +<< /Type /ExtGState +/OPM 1 +>> +endobj +10 0 obj +<< /Subtype /Image +/ColorSpace /DeviceRGB +/Width 185 +/Height 230 +/BitsPerComponent 8 +/Filter /FlateDecode +/DecodeParms << /Predictor 15 +/Columns 185 +/Colors 3 +>> +/Length 33701 +>> +stream +xœìiÐdgY÷ïsNw?3Œ Y†Äd&“dBV¶, +A +P«´•*-õƒ¥%E•, +Ê® …QDEËÒ*,@)U(dßȞ™d2kVfÈ¢jæyºÏyÿuÿêú¿W÷3 Amß÷çCW÷é³ÜËÿ¾ö뺛aÊwïáh¾‹•ïñøÆÊw‘÷ÿÕÑ4ÍÿäÓþ›³ûH·4ÿG‚È:ÿu¬,Üø]pü{,@俌˜ï+ùúG‚Ë£\óÝcyG¿? +P¾SÐ|gXy$4ð3®¿å»Ç²#ŸIßæùq.3J8p×]wÝÿýÿú¯ÿºººª“mÛ1}ßë Ÿ³ÙL_ò¸L'u‹; 3|ïº.wÌÏ) ‘:£ý3÷¶¯ÇÚÚÚt:ÕÏñx¼²²¢gê¤ÎlØ°Aíyøá‡u£>uòßêñïÿþïú©¿xàã÷8]©æq½Îè^ýÔ§®TõØM›6é ¥j†¾Ó`º¬Oýå øÉÓ<¼”î¨Ù¾’þê'CqD:­~©[¶l9çœsžýìgÿðÿð2J|(1 +\£ÎÜxã;wîüÿøw’C§ è›'8P¦=Äz  Ö þÕK\ž¬ÛÕ°¯ýë<ð€Î|ï÷~¯€¢+G£‘.;|ø°&iãƍ=ô¯{5÷ú‹Ûup ¬øùúWß9£‡= L@“FžiO ÿò©é¼î5z€£¯ñ°ç͔›6è»Ú£¿Ž:ꨗ¾ô¥¿ú«¿ú=ßó=%LWæ·ÅÍ +\°{÷îk¯½ö[ßú–W‹‰¦˜ ” +ã#Ϻ۪Ò5<ÄXÉCcØñä< :4—ÿùŸÿùÍo~“k|ðÁûî»O'_Q M†f…¹Ñ[„žÌøêú²¡ºÐ@„ ýûo|CðÒ¿z‹^¡ïz8Wt¸èSOð"á$pÉH2åЋt xÍË,c…ÑнËë­!‡<—D׏>úèW¾ò•?ù“?ip´éà§Ï/åÛÂåÛ`…¯¾új‘¯ SQ¿ÞË´¤ÕŸ©K¦\éÖóo™_|÷*4þth>YáCó§¹ÔÍ+¯AgéÓT]9™Lt¯æ˜¹ÑšÝfôu—ۦ˄}×-zŽ.ÓÅzš^$ÌÁ_h Nq  ÍV“ |ÂV aôLÀŠ[Î2ðzƒr4‰áæ©5=.‰äðó§ú§ë·~‹áÕÃj¾è““y´#\ +üuÙe—íÛ·þ!‚¸3žÚÌeŒK-\ãžÓ&c…ó ­/I¸a]2è_ûÚ×î½÷^]&é†ÂC4a}¯?]¯Ÿšr]&&¢O]9©K™©_ðñ,÷B?Qs¯ktËžð}BKÌD@¤n§Ëj€»¦ÇêöÃõ`† <`‚™0éê!\­J¢Ä™`¯ŸQšZ-7ÙxÁ ^ðæ7¿™Wû`|2h²ÔømáòˆXáü5×\³k×.u ڛ±âGƒ˜!t®,¾5Ú“æúG‘W4Êâšo‰¢¯˜¢¸Ï …Ñ°”ÕþLü4ñO|â8h€ÐÀÛ5å¢U‚‚Þ¨ùÓKõ]ë] ËD¥kô" ˆ™ÓíºRß%øë^=Š%ØAfàYP DH¯ƒäd| Á덌<ò}¨ ÓÁ÷ÿñÅ+^Á€¨Á£t€›Ì› \ŽŒNîÝ»÷Ê+¯´pE37ݔ Ó³2/ÌúáL>ï–è½DMž„ÖC‡=\DNc—ëÁ]fçšf…Hç…0Ý"”<éIObuzƒN'ü ‹z7 +ú'’(€d#’£VJe:HÇzz\ Â_€5ã†Üc^QAj֋Xy(²«ï³…UçïyÖ9~ý×ýÅ/~±Z«ÞçÃ%¯´G‡Ë#bEùä'?©•˜b2gቐ²ª,C?$!73¦f^×åÊ,)ç£/‚…4s‰«M‘t¯Qˆ3ф ÇÖ4ŒIRt—è^§ Ö5ÌÒ®Þ" fµú‰ ¤O]cRxS +ú¢Ÿÿò/ÿ"ë–ïû¾ï;æ˜càn¥Êé´-Ê$Ä €[?õ@^§CßÅ[õ4´6xœž9ô¤€3J“/¼õ©^\xá…Ed2¾dĘ+å…úX±Â™n¸áæ›o6-a2g¡qÆJ™g«™ƒøŒ!Uæ™nŸ, œÔ ‰†­ú‚úªN"Â\š*rª:O‡™Â¢+‹˜ë4Á…×1g(2ÂÊ°X‰ˆŠþzò“Ÿ¬™ÓX múÔ(Ïô`„†õïõÐõz>“Þ¨/j­^§Æ¨ úWd ¦&XÐNXr•¤.’ÔY˜‘Z¨G±JóÔèÉ(ksS8OZ|’%÷£?ú£Ò¥ +p×1‰Þdù7kµëárd¬èøÈG>Â(X3¢/ ¾ 2ZæS%Hˆiÿj8DKîºë.È2TÅ 5ê“ΩOú¬O‚®dÝk¦u;ʎîãЄ!ht QȒºE3 +þ°ÎéQǼXFq+æRpÑ+ ^tª£¿ô½½Þ!2ÃOË +}Õê™~„ ÍšÖsî¹çÁZ‚( ·õh è°³&,@ ô8ÆY·¼ýío"¬>3b2\…-b…ŸwÞy痿üe…>/ðË+ŒX±ì’˜_Ù'3®iC† .¸ûî»ï¸ãÊꇵ³Úxû¦®ÂHÐx51H™‰hÕ +4´œEÔQGé$-Áª«ç@H´ú5å0/½T˜Àlc=\×è º˜Ÿ"{Ž=öXAGß­EŠ‘!×õ¯¦Mg ̊º'©Bë^?5% F?Õ=3ZŽ4Eò×( ƒ×ðA®tÖ=ÇÙMßõv– V².“œ¡OIŽN„4=D´Švêz h¢¨¹©z² £3ŠnÔej°hª˜/½CÖ¦ËôNρòåX’˜âUŠ`NcÄC_ö²—±–àÅßÇz¸Q‹>2Vøùþ÷¿`³JŸ,§Ã¼1ÍÊ/+& (4t ;.ÐÐxñ^„$˜ºz¢éÇÉWªCt^ڇ¾ˆ~h@% è1V @dž»kD€•d†ÆTB†º Un¾Çz`^5&z¬Î3ÇTs·nÝzûí·ëzµJmëÐEmµ_ó$¡]D¦Gӆâ¦Ëtñ¿ÖiO2x–`2!7Ù6ñê-U°ûùŸÿy°âC]7fF rnYï>"VÞ÷¾÷Áz Şãÿ{[b@Lƒéic¶ÅYŽiÂ.âF ò«MÔ+ª.Ó°nÙ²E=PçÕU=V"Ž(“.Öe:ÉôCWt®AfŽÙeDtFDÖ^5Cøƒôpñ5C di³øŽÆ„É+a‹Óõ0& †LÍd «yz²C¬yÇwœnú1Š‡2—º:Ší@ÏôuFoGf*I?Èt©%ƒI?ìÇ~ 1ŠòÄ8€KæD&-ëÙа¢n¼ç=ïA¾›ETGf=~J–†à;²ì¦É4)3Ú¾†ìÚµKt[/҄!…`›W7ô©‘bMÓOuFiªÖ£ëuº´–šÐ†‡ ñÕ½ðŽ¦j¶P/CÕ$5+â}Ñõ]Mº÷Þ{4yÒu™Ú O $ÈÎú¤…ú"¸ë‹ £×!Í@ A€Þ¨‡ëu"R‰éÂ5Ö9¤]½ŽªÁZXƒÔ`uJA2Õ0ôsU[ý z5š—Ùâ-_`Ù/xÁ Œ…^CZ€ X±ù ÍaÅTá /„Ød9£‡°s¿IŠÏŽR…V,܍ÕBÑK@ÑJ…Ñ@†ªïtáîÇÔ¦AWgN9ålqȳØWöìÙ£‡˜zé¤V¡¦V?O<ñDÌ©ºëLZÌB‚…&cŒ^‡ Z—iR…½T×ã¬V3ÔKNH¬ºÙÙþdFY¯ÐÕ(¢(&]ôa 6¬f4pž†P%®Jó„!=!1YÔ´0Ä|!N@4¢s2V²­KýÐý +3X%úTóLZtæ–6ôhXQ·ÿðÿ°Oñ$¦´ÉÓÍ¿³å2]é“Çq¨VêR%YAD3¡uEEºD fÐYdxéDEN>ùd}jXõ©¾é ¢†òŽ;îÐõP=V‘*Ɂ iP4UZ:š?ÔK¥Ÿ}öÙzšmü}ø†ô@aE3¡IHÒ±'=Mρ&iX­ž˜v´¾»ˆgÐyý1ÀjL,j9´GOP„cµYB ú<î$!I´B%ÒBèÌ Â©Çjy°u^„uâelϑ¾_pÁƊÀJ6ÕNd©åQØÐ\¨•ÙÇ»Þõ®>"2ò†H›}eփðY‚̘eÕU¬m¸Žu£: uk—.‰è/ z)wéÐ,²ÈPJ5ˆ•ªžð4 ¬T½B³2TýéO×YŒ5êiAÀÏv¹oƒÞ÷¶·½ fT’±µ™È˒Š›Õ¤£ ³#@J,·FÕCý”ÄGœº(dP]Ñ0u)ðBBCÆ*g1µÕTÅbeÁkÕmlz:£`¡è™˜FAÒA!Î9çœg=ëYb[D3iÔôÝ®¶Ijэö¿¨ š=_×ð:ƔIÅh†Ø‹F³1Œ:ê#& À½ ùܳDýæEO½V«ð‘ñLV .Vƒu3ÝVÿ,8>íiOc…€u¢ 6ÂO”ÅÛo•·¼å-}Ä ÉòÖ¦°¼ &™}¬¹q¯:£A‡j°Ô&Q~5Zg4ô꼊¾è§ÚŠ@ æ"¨{:©±À>dƒ&¯3}Kèi” Êè!ˆ: ­"Lo"”@Wsꩧ>ó™Ï,5lýK₾KRÛ .ºEÍP³qz3ŽDÔA :Hý‹Ã.”¿4*ÄÕnÎLóq@†‘š —AÒOuAO°!C£Õ@KΘn’U½„;EKÂXšÄègYXŸëU¡ÿ‹•ÌqÞüæ7/•LQ291æ=D%ü^÷×:¬ó"ûã5¬"ét[ã}– +€¡É–î Ÿê†eU+ MõùaØ@نJåõœkûž‰-¬è!š‘8"â¤Æ."cbO&¬¨‰ozӛ,¯æaÈm2íµáð4P *ê9«Ws‰Žªae¡`ÃÖ]b:¬ªmÛ¶IIÑOÝ"eD3ª+ RœÕøV†˜§+1A<‡ïÕ[ˆSD*ÔíP{\ƒÒ#4¾H‘j•°¢÷JRÑ¿RŽÔ¾š§¹Ç˜qj=tU«tÞÌH bWçu£.Ó¸k .Ù ŽP<„+ɗ¶¡ý:¸Ÿp8‹^M…éð(<Ž"]ƒ¢Ð$ÃfC +C„x»@WМ°²^m>2VÞøÆ7ö)¡ C­u㠎Œ•~,äpu@“å„êS3'Z¢ÆéSñ"&^«Y­”n¢ÉÓ¸h n¾ùf` +ùÁ¦Ç²”駵qЩ/ˆÀ‚#ª8ÀB U«4—"u8õ©“x…ÍÓYg%Ò¢èvM$ Gz‚®Ñ_xžÉ@ÓCiƒìëùjL© +˜nYú9¤`ˆ0YÄ÷Ñ{ðCi”0'À@´V`ì¹ PøFtSc€’銀9šM,GÅ]AúŽ±ò†7¼aH‘°ÆŠ™N;9áÆùbì›,M¬gؚÔ=>–uÉ1˜áÁµ®×léûöíÛ¥0ëù·ß~ûîÝ»M¨éAÕœ)øì”ámaò@*¯=´,\b „ÕBT-TP=ùÄz:)¢"¤i(Õ[)ÕL‚”¥‡è$þ„¡:›ô"4gõTŸHTˆGx¡QŽ SŽ’O³1@B˜3´zÙō5ŸD½à¦F$b*=GL«ºƒ‚ùHXAmF¥7êæÓ@±‚ÑLXBúÒLW2JP܆{Wœ`¡nhú5÷øÿ47꼤}ׂ`D4#}×_j®% +Ùu×]§5„ +àBBõLßq×5x¤A†®q$Œ ÕÓJ<›)ÞljT }QÔ`Ñm€²ÿ~„†-õÐ4¸ºš¡/4Lj0Sì"Œ NM»‹¡º ªc» Ò&•Å2¬ºè_êÑ»H»@ä*BœMNòÔHØÊ<(ëA`EXqôÓcÅÊë_ÿú!Œ­\—o.ÉMhªð[⇅wH½š¨qǻƐé™qM¶W=D=a‰÷5¼ûŠ”£[n¹E‡2ó…@¼Ï8òIû$@  þjÓF*«þå/µDoÑ£ËX„´»Þ駟®{ÕNÁ#•Î‹7 j“(¡RŸ‚ˆÁ·GSnãid—1÷d4B'@c Ó»*D ŽâÔ$ þÔi@U]‰ªH°*es—Øú£cÅæ8Dz%pK™Ò™ .¸@ÏÄ@‚Œ Å.<± ç ))ýL7¢Uù*ΤTÅ°H#·ÝAlZô¡ž0oT-&ÈVc®m[œe¾ô`å7ó7§‘Si­ÇzòÜýópiªSW=mÔ/ˆ´I õ{ «P‹‡0B>†&‚4 ¦‚¥QPvà␴ÙRý–`è£æ +(Š‹< n@u¸E× 8)ÅI±:¨Áj¼°¢[Ho¥AæÕÅpRÝ^,6lµXu8 †cºÙC˜øUÈþ-9§¸3Ò:ù­·ÞŠPR÷5hê>|þLÓ#aÅÚÐ+¯yÍkpÓé"õ¨IÇAëe€P5Õ1–/¡¡IšÁ_me¹`/g1Ù(§¡u%³½Í¯,Mž ©7D +v|d?#ÑV +æ–>r‹øŽ[g5¸q®¡w˜(„}'!H—¡*oݺUc _ 3’‘D€à^D`xßy–°$4¦QM:¡_4E-I/1ƒBk)j<õñ\C­¢¥…ß*[Y˜£åb…AdY·ÉMÈOp“¥Z;D^2ë€Ò¦F³üñ6Ló¡Y¸Xõ—˜ŽNªÑB‰t"Ø¢îÂÅQ’y,¬A㎈äƒejs$+›å‹‘9F”Á9§9³®Ë蛡Ðl­ÁµKDEˆ±2DZÙ8¹p›38Hµæ°!Ôuä*‡…Ó CJwšêK'xž¥q@!BBdzݮ‹w¶Î|D¬dÙö;ÆÊ«_ýj›¢Kr,s[—â-…ñZ‹³:⚤ú‰Á›,/u{C[CÛuÏaϚ<§z ÿaa¡,BB3œ€ˆ… ©á2–aù´Í†;$ (¹ ^ä"Á­x‹Zk ­EÁE\œjB &Ì `dhÑ}Ôj€p2O7%J{ ë™·ÂÎÀ=ÂH£çP@ɦÛ!R3y¯õ ÿy¬¼êU¯Bó˲DbºÂl á ²ÔsÑO,"¢„áKk«{öl±YA_DH!Ô6 "â-¢–7´GSsh>ü sorèD V'+ž–ˆ®8`‘¸¦"Š£«••ôµAb*¤*©‡zÔ§øvB¥gj˜„ÕÀmBnk/Š1Ý$÷'´\Í1»ûÁ6"žxÝ£ó ÿº’+”d¬ ¿Y`:(½M5y9«2 7›…PK¾úŽ…CäDUWoõÛ¸0?xÂ`äÐ䶆¿#R¸? ȌƒEà_)µ¦ÑÇN +(™ÔµZr‡Q¢‹(_Ì.LŠ>¢i›ài QRÔA}J\ã$)ă"Øò„ §À×Ìêۇ㶉Êê-·Pol©µlõ9Ke<ÓgœqƲ°"=µ€9 …’ëÑô‚O–¼š.tc¥@<”˜‚m[ÍB=!0‡Ø‘z&LøÐÐ&DZ°XhÅm;«Tú'CÜF€˜à'‚0˜Æ¾4‰‚<֌Nè |Á.I².„馆g#Ù`9ÄeÈÁõ©n³pc $»‚Ø.– +d†‚œ½¤µ%ŠŒðÅ +¡9V9¡+uÃÊ5bÒÞ%S;o­Ì—…Z"]ùßø $8Äx_I É`œAÔúÓ2’LŠ¯GÔŠ86À‚&œ…Ôp}"”d¯[ˆ[Öâ `–wAT˜fâ‡́G­[W‚øKþå;š'¬ +Þ¿ºXٜwÀƒf[¢z$j‡ö©§µXk5Úê?×P aïUHT\ƒ[؊4¨EtƒFÚrˆ˜…¾pÞ2–þݼy³ó ¤9QŠ±n–ªŸ€˜%Ê+¯xÅ+ìPµÈbgR.C=”`U] ÆÕn( ¡$Ë@ ü&5ÚGÀxÀâk#ø¬‹&øèÉåÅaå3¬Ê¦ëq$[@Ešj¥°Bó8ƒ.ªƒÀDá5Þ* ’¯†Åù§ø}t‹ƒÔ¤iFIwç&ڀB•85#6D*']vp¸îE˅5ÓZ¤i¼}”ßZ"zùË_Ž3 ¬˜õ´)êÀö‹˜U°«5ÿ[sê?‰”õGP@4³_ ×Ú4r·ìbå`˜˜o›íAOî + ‚ð(ªÓXjEbô¿/º;h aP'‘Q+U? F)#Ê8¾d-rí`|›jº!ƒƒ ÏÐÑ/¸ªO€¿DVj%“¢•¨•u:ˆ"\‹‹®¸`Kà– @¨¨p}nß¾}YXùµ_û5֐cª=m™éM¨µ¬iá>VPp¾ÕTÃK Ôcæ‚Òšöbá `C "&{. ?+Q¹‰kb,+©”£Ð¤ƒ>ª`”jÇÃ쁽›}S-4˜ÐZ3‹£„J†è† Žñ°‹4^FeË² ÌB ² _¢¨'ÂïÆ(û  7\«I0øF¬sé8ýôӗ…•_þå_¶}e©=¾ù â¢iµG”ÑÑIÒை~,G4ƒéË Ö` +$t ï8rK'‘Ïb%a‰¥°!Ë4 Œ:8¤"†hg°B"ñ–·\ ¶U5°©Á¿l`ÙÌÃwk@ L5<{A½±b±ŒµÁ_6"LjD˜ˆ +‰H³Tþè´ÓN[V~á~Áv°ÙºÔC–8V5ÂSHÇeøH‚âT½¢üSE­AŒÑý„ï@`²†Åò*µ.†d="B :\ÐE|CN¡%_pYʦ ¥z©8O‘:HH›\qðeø&rFžwõ +½ÌLKìE«23E풦†"`™äbzíEhEÌ$ñ£ˆn"„B¡òX"]yÙË^Ætzñ )?–±Ö´5Ü;RScKu¬1VjUÖ6é>Ü×%]½ iRY‹¢Ï$"q6D©:cÚ3Š:‹Vï#?ßX)Ûe¢r8ŠÀ:=+³ˆ>6ÖùË!MÔá¡1ÓH†ò_Øûð¡¢ýé-DF–°ß¬FaŠÕZv’¼1rôÑàÀœE]X°¦ôáÈâî#ýÔSO]V^úҗZŠÎÿ{;®Îp\‹`Ó(ᩂ9£ÓE Èi·å—ÛK +ÄD¡eÎÆ)UÝB ˜ÄÁs@àÐFەZ;cÕ³A“gy Ü`Kí#]É}-R.æDӔ:‹šôqHµH8‰ª°Wk6 0 @£m¢J–h*)mCõoKFÁÅM€9#}\"V~â'~Â1 Í|æi‰ÚÀ¤Ò4Ո‰½¹D¶ŸZŒ%Òb›RufX +L£\Âg¶uÌMÃPÛðÖÂGüÝ +`2­òÈfQÆR0¯ƒ–˜!nÛ½`^i‹ˆi œù×,Šé™2<ÆÍȃڸÃÕ(ŒÛEœMÒ.|gRV£$ö$ .ºkǎˆ)`®DÁ~†q˖-ËÂÊK^òsŸ&•jBUsœ3L”¬Á¶Æªb–$X0”]¤'²‚y})üd³ ÛÔÊ6PZÏ.&8`aª€Üj‰§ ¦±8T{ «vñÆ𣧉£¼ÚiÔ@wv#‡…rX’££”q6d1ëTB0Š‚ÝEIí!êÞbØÄ;9t¨[QÌ¢x.Òφš¬Oj„ "º²oß>ÄÇ̘¸“O>yYXyñ‹_ܧ <¯ 1Öú,*¹Qd@ߏ>úh`åpT¢@|Á¤«+âX; ï°¸ÊZlSvgF˜Y»ç#† ¢„æV›˜!®Dà€ŠôQ5hšªA»$Ý4ò½­3båË$Çv)hFa¦0q$ßiÔEn¢Ð7á˜Ð!g Øt‹uXO {´wï^@|8Ê&˜•ŸtÒIKÄ +ü’3æ|ÖÓ4ͦ½³Z}iV#µ0ÇaªjRy0Ïœ˜v#a¨¹Èpè0 ƨT1¥€wÀd¦ ü8 +Á£r°¥ bÖÖDÉdË s-êÛˑMMЕ6e½ ‘ÓoõÐX\€ºÀ †¯ÑÒBT²`d™+ZÕQQ¢7s©ŸO~ò“?þx^' Üx㍒mÝ©Y„Àê 'œp²°ò#?ò#C^¦mž![ρH«Q8î¸ãHü!kwåh»pÙ ƔàË ¢ß4²­šðøcâD”a°Sè9n6žSR¼DVÝ!œ&Ã|™ÚF½¸v¾´šßÎâ6êÃ×Èc!6@a{ e ``´i J²ºFg՚¹ÈPÏb‡Ïх6ùÝ#reN9åé]»vÝvÛmÄwö)·‹ï›7o^V^øÂv n!ÔKBMø þ¢°€°B .SՄ*k×9gˆÃ…8 Õþ†¥d5j¹Î"ä± ¯–sx„-o¦ó¶VÑ#Û3,•›gu)‡Ò´º­¡†°­ñNÚXקH”&jg@~Ó6=ï´¦1Ð0–J>äNoH r¡ÇӞ¦Z±ñc®•‚#6¤¿„•;w’å:‹=¬: ËÂʋ^ô¢Œ’L]` f+$¿à-»ÿþûÉøb4Yˆž3Îdg? 0;\‹(y¹[ÁAΰ٠±C°o–š-Mw5á&÷MÛ )‘Å=„IÍFÒ>œDӈ>îÃМq`KZ‹Üô!œ‹Ö®-Gcé†Z?ŸEº†‹h¬EJ‘£)‰bjôLr¯ôÌÜtÓMJÛö©À… °DÄk†¤­€u5©ÉöxBJYÖ$—‹xb{ÂȋhFëmA@!l`CMþ†ë›‰XOab&QÓÑèAÀ„bµ)ø×jXdŽÛËׄݳ͐j›Ù€kØ0ÊnTKQžf ³³H;õxêpêÿ(B!7Õò-7߂ŒÈ‚°àGÀ…k0Ñb”cL$÷¬Ô2AŠ”Ð~¾’#?ÉC[–lëAñ¦:˜1$$ +:)~9„os}'k¿´yՆ€ 67Cñs ÛP#ÿë5j™£$=(ƒ`ž”&j;°‚¦Ðæ/؁۳›mšð4©jÒ4¶´°…×R0wM#‰Ž ïØx82VJXîad‡S½Åó «+ að×\sÍ=÷ÜÓ§‚¦å `Yö•I¥##"ª+ޔHò õÍâVð,X@BxÔŠÚ…iÎâˆgÝç!c¶ŽŒR–‰ÅgS#¿Ñ¼ }˜ù°BÄ %¦%`«‰84t“Y”¾¥1fO}òÀ¹“]SõgÂ톈—&®ŒZg±È ¬ye1ÙÁ¹øÅÚp'iKÝïéöÛo·>_ÒF1¬ÒeÙm³Œb=¨°ÅR—Ôç3ÙO¯æ.r|èá(‚•˜3^ìÒ¤¬XÚæ–P¢(Ð(+Û°¯·’‘ÔEjVÅÌJ„Ô#>a 3#0Ò„]J`0ª¸…%x¥$ϑtL<˜3‡€AÆÌìîé/[SôÍYìÉ9«µ“i?f\­ØÝ»wK·0vK:–…•Ÿú©Ÿâ̂°b®Â!Gy,ÍÄìà8Åö?ŠxØqTóǶ.)IÏò•ëYÉ$vønkÉŒ¹à˜Ä…mJ<`Åg‰Ø‘Å–x°kYªm",Þì,K9M­´Ó†u{Û{@TЉh¡39†´‡ä3.Á1J0\ّÎA4 +‡°BU‡Ì€`£ËÂÊÏýÜϙ={€†Ø,e5²Õ¾µš‘:B³Èô?ÅE¬ª´©">²ËÚ¨‡1™öÐÊqäytì'O!g˜³jË1m–IM]LTÊüp#J8=îù“Ø2de%ð%9ú‡ÈóiÚºÙ¤´Z³Q³?cÅ®1‚Ø͕ h¢®6ÔzªšliCÔÚ¤þÂb^ +V~ñÑgJxÎF†ˆkÁRÃ"鬻* ˆÙrƒ[`nÒFTú$’wàÄ%U»,¡Ýø@Ht°­-%£ùýÊúسDb +Tge,LŒ*·9Æ6·ÌK(MHBYdA†c^]ŠÌ4Ãàð’0PLû0î9œŠªG`‘7vÕ­ÈI=JÚГžô¤|ÔCwCs´,¬üʯü +Ð6ÊÀÆÑþaºÞIýp”˜n"ƒ¦ ÝW c„ba>GÈÚæÖD꒶„´`÷ôüqҔ|o@î3‡#/†&vÀ55eLixxŸ2µ†0‘ñön~o]f¤Ì1}qî]* ™Æ檘±ú¯Ö ´ Þm$d}"íâ¸&âÝ@¡ñ"6ËÂÊË_þr[“Ü™YxÂDEõ%…Ÿ²Žäg±¡`6³¶Õ› ²NÞ§ m„¤tá1îÂAˆeÏÛ¼XÄÉpl£À®éÇ(ê˜IÙ¶Q"©¢9 ÐOó¸·á³Bd‘¥‰ ÛZV£D ·ã?ïÒ.:Cø¡f©Òx©šö,B6‡jDÆ»©Á7òfáÅ\‰=´6ÔRá˜2\¤K/ +¯|å+ûdÇÌ ™ÕÚL {¨Iè$R¯Z«ˆŽTµTÁ‚¶Ù¾!úl½´MM•Ð“K ‘Íµ¡‡[Îõd7áŽÈì ¹Òv9wÜÜg-¶Ð`õ/ˆ&™&e~T’Ù·Dêk‘Stš²4þwQ"…ÌVœ!¼‰V¦ 1„:Ÿ%þ‚¹«Q˜qß¾}ËÂÊë^÷:¯˜’d:˜Ë×끎C7X+±!®C„&‘¾ÕŦl¦YºœÐ†©`Îd‹¢ è(JØ.RRX²[ñ/`e-J³´i›À’Ìk%”LúùÍpÊüá·Øꏸ2šˆÁhÂl8pÝÌÎÚðW.àÌf@.©<­ÉA›…ë¶î^/Š›£€yõ®]»–…•7¼á ¦«Ù&ÑV7)›sÌ¢ú ‘`°‡£ÒC¬“öÜz"͆lò_‰í`»ê憶‘õӆm†Ãꏩ”yPñ Cx=v]:L²tbJcòӄ£côþÞv~ÏûvÞUd>Å_ÓØig{~¢ÕÛú—WšÕf`! ]…õ¢2Ž}"°Ölª%ÁkôŽ;–…•·¾õ­³H{1ÛcÕ\4Äoxmš“¨a;c¶á2g0f„ÄD3‹,€ÆiŸl¾Ì.xj¢6õ(Ò&ÆóUä³¼bóåJ~»N߶!„Æ»ã%¤“&EQua³Ę́‹½›ˆ'E΀EN;yþZ”7"Ýß>jÃeZ㗩Ì(MG²ÃýÇ5Άª°R…ðJº‘´êÖ[o]VÞñŽw”pŒñ>nP‹Ù9™Ô@¬jØpá ô Jã:Šj[6¶2ñNÛ1]Y‰ õ, ´áKbFðᄱ£K‰Êd&N¾×b ÖWº§³ØÃX›öŒ¢LWû°ÍRØÛ8`3}êRX1#ÜÆnœÓ„ëÃ}­p€Ér£ +]¡®3‚KŸ@ÃQ!vŒÆ›oÞpà ËÂÊ;ßùÎÌí<.ÓZ;ÿî»ïfהaïQŒ™9wÎÞ6ª±™#X ]‰bìÀIâjâ!ªLgWBTJT—°•¥KQ´¶ßØÄ2„þïç›Ç-È +ÌÐ,JpC„2  ÖhºØ·ÔÒI‚<â&K~¸Å»>LÃÓØaÖô å™zÁ¤ÔŒkÉ3MWÛ¼ys“¬‘<áúë¯_VÞýîw÷)¶ÊR‹$$¬!x)ӂØA¾UÛˆëa%y†lJ±é–@§ ±›g*K˜­`gf ¬,vŒRIFجÈ4‘`Ä±ÒT…ÖÔÈü¨ +ªÛ6•@óy‹ÌMr5Œ£l]š&bÔ1tiçœ>"r췉'ÉҨOjÑïY¸Ã×-™Ž>úèã?žœŠ6ì{zÔu×]·,¬\xá… ûÓüb5²©‡ÐGÆáŽn"ža†Ø%À¤Ål® óO_=¬ïM„Ï aµëS>ª;Lª2ˆÖŸÉ‘èêöImòaŒ&èìÄO$ž×Šž>¯¾úêeaåOþäOJŠ”1#VöìÙ#¸Ø@4ŽÒ,#l۞涚Î0us-¦Ô蛮j˄¤YtT X½ÚgAµhKÓXƐÌ\¾ p+³”*ë{ÁGy©ãA—CþJì £,Ќ#fÔ¶lӕ,DÛLeÃ<Ç^$kOm”¼È‘7O_0 Ok ±!bEšÐÿõ„%bå½ï}o›B|‡òÕIÔޒ¯2ãۄEai)Sû!ö;Dñ!—`p³»ÛòRFÊe,ß Õ™útÍGêYÿ‡|²µ¦Y9o¹ôÒK—…•¿þë¿6E16¡Ò¾DW੖B8¦ìn&ÒERÏ,ræØÔeS-¼#JÖ ò¥ £í(9ñíáíÖ†°åL"7‰¸8E+b¦@NÔ¢¨‰GÆn–ŽË:ë~ÆM6ùt) +Ç6¡.J3Î$HϽlÓ>jÕI^!8–°]ÌuÅy¾F•=•2µ»è¢‹–…•¿ýÛ¿59i’ƒ^ª²èŠå”xº€¿[ŀ´IzØJ-­ ÃJcF©V`EJÝc5¸OÁÎ@¶ +ŠW×A ›2fžÕ¨«\ìÜf>ÐײtŒ¤²^iZ‚ØÈ(ôÝ@R¡!㧠;L郙c§bªÓ¡-¬Pb™F5pÎ:cf_õt˖-ˆ,è¾ð…eaåýï¦(&"€·ÔsÐ4=" +¤£¿2ÔŒq옻RË·  «ÜE¤m›’6`t D,ÀFƔ" šLç›0®F˜—µª~%'g ¦K>vËRÆ%3dÆg ºD„”]˜Y±ççƨxˆJÅXv¦Çáº-]ÙgˆÊÓ+±WI_¶mÛ¶yóæ<}ŸûÜ疅•|à&Â&0ÓZK@‘PMe,ß2 +‡~S•a®ì¢Ä `y³Nr¢¼ÝxeܽJ,lˆJÑ }©Ör}aí‡c[m[ÏJÔ]Uïf©a.ÅæåÀ„Ë ¬´Ém °ˆ\´ÑhÛß"·Ú"ÒGܵW¹Wv~+û= —62y" “ì-»;骿_ûÚ×°lQ¥¬‰ !¦–àÒ϶nÝJ>¢§õŸþ韖…•~ðƒž-_Àj¾ñÆ/»ì2ÛQh±‡. ›Ð•ø¡ÞhüClšNø>µ!6DŽ{&'–ÚTÓËʂ÷ì%Ž˜"¼~CË4’zÚj!mxLšZ¯Ë)õŽ³™DZµ¥ŠY찞…’&¬ÒMdºO#ôÚ·ÛsiV8‰ZTypØò„\ˆmÍuôýСCâATyÅà @añÄ8Ó/6«¥©:ÿ©O}jYXù‡øŸç}}’W„ò€¸æ¸†Ù¢uÕUáÎjí &ˆ°“šØP—\Ä%LYÜ¡énz'1ˆŠYϤÆpØÊZ7æ¦ó帆ˆ‹&~%–»ˆ¼ì’¯ IþÂöÐ!¶0™E}+½pÉ6²¦©ÜÔÕ$Hk|ãȖb4FßiÏ<ò;m"¯H¸óÎ;%µ”(HúAI“r΅€§>õ©T§ÿøǗ…•øÃ~M&0{ë­·^|ñÅ¢‡%v_qL¼ÞÊä‘Údoj©ýmÍÍÄoN£7F%ROL&fMl8CK(කêlŽÝ]€Å?¼Üº²”õ,³¼uÇN©qCd´‘„Ö$½l ^“Š7aŞEµÜ>ùz ´¯;[ò^9ŽÊ^èƒ|g6Wâ8ô|uíÅõéµu×ÃûïªGVÐ<÷ÜsQ#˜Á~ô£ËÂÊG>ò‘’b=Lºç͟ÿüç…Ë}IÆ)’8~—RÂ_VØÊaCÍK5AnS¸[b‚+¬0–àA°‰>êDBNœhc¢˘Dæ"+6y›ÄÎD“ØËìÆ6b³È¬±¾míУð 9ØÏ9`<ÖytM-nuì±ÇZ¬fÂt%¥'`F÷ß¿°¢/lÇ«šÕ‚&÷¼ãªFXZ g¡Æ%B‘±­!½b›Â‘4KaÒӔ*ì%¾%àšt57i’í¡DÛ,rB­ä›¼ÙØÓF~!t¨OÈFÞ4jò ¢îf§±­ø]ªH«îk†È®b²áAlxO&Ôb9-ßµk×ÃiSFì‡Ì+£Í£Ž?þxñ äÆ_ŒbYXùØÇ>V’ÌŸiù’WvìØAÜ^¹9¶"èeßúÖ·à¸D`´‘¤CKGp®ØW2¤–)2ì9åncmá± ñî9,R˜IYÏs? '¥uZ_`—aî!«~³( æÃÌh5ªäYœêS ÷ñ|Þ¤˜Uü7Ô}P6Ô=Bð‘õ±ß¡ž¦ñ]9xð i…0 .ÊN¢*Fyńm‰Xùä'?Yæ(½¤$j}õ«_½þúëõųèlÂ!6:†äd¥nR7âÙ¶mÎmÁÜS{b› + Pª½¤`fæ¾I)¢nÉ," gØì[Ú(ø3Ž`Á5®ÛބÕÕy}JVuÃLZ¸lH!;}do8„Öè´ªLC[Cð5aš<­%Jë ›ê.SRˆØXVœMªT‡bñÐ3J³lÙ²åiO{l””b»,¬H7Vü>V9»V^zé¥Yhk—î%ê8@Ќ@¯mäÁJvùz@),kS÷,e†šn•Ð›ðÙÎʶ¬c’cyë õÀü5Z·…ð(EK!ubÎZKušŒ-™¦ +^f[ XIÑU}lZ×FÉL^„UŸ`EŸÜY«û ("çÂJW÷“-a“dCU֘¾ëóÌ3ϔ¼b›–>?ô¡- +Ÿþô§ /#æ@;tèЍ7Þ(ÄHD·-ÕA²]ìØDÐ$“m@Œ7Æþö³˜õPʅšäô72åÕ(ŒÓ}K”;ŸD–¹i€}–“+ià l¦CH –Äû¿0ÛØZã'Ï¢cFKÜMr†›_xTG)ý@¦¥Q"ÒlQW@Ñ°KÕÍ6ÖRÂjr ûhâõØóÎ;ïœsÎ×d?ù|`YXùÌg>c™êJÁ&¸ÃCõPÄ;IþP‹Ñò&¬4Ž¢\DEý×r!¬ æmf8ø\Kù5Ù2fiTi%ÙÆoßòYH̨DÅ&‚ø2‹ì|g °²ÛHOÔг-…¯™Åþ¢£äç®E-S«ÐF+GCRýën}u¦špچ¤Ÿì.Ï,ê»ÃÅZœW_}µt‹¡Æ`ݬiš»º‘Î4ªÒ_pÁ§Ÿ~º£yôÌ÷¿ÿýËÂÊç>÷9Ëq«5‡–}ÆJUYY[XPÉçB Ú²çÿ8’LÕ7µFXÑäYgñü±È°¤Í¢Òf ëE捵Z' ¥ƒ‡'‹@C¸²÷-Ҡ류(¬ñâÜÉKÏ%Š>õÌʖ¨p&ў,Qœ æGôúpì]6È#gõÊJøjJ&5¼Ø۞Oµ_ŸÈLR˜¯¸â +}B5Í:©®iHõdr̺ê]îsŸ+‘”³æÿæoþfYX‘VlALÚ•¥š(ÓËЬEYz .û÷ïgQÈN‚.ˆDT‰CèbSvx +Cï݌½Rg#2ÄÆö† °·³x¢ÎãF@KßT·(UÛN;í4 %eX#̒FQéÃ"­¥¬¬̈́š§‰‘¸€o5G§P9’¸ÒÌq"¶Ç QÂdl–¢¯éõ¨V1"hP#vòÉ'³%µºùå/YR‹. Ô¶¡]Ó¿j°°‚ÅA?Ÿÿüç džVü«¿ú«eaå _øKP3$ ‹xЄí6ÊtA]—>Âp©Q”Ԝ‰ Ù«lÔO£øÈs\´u Îã_µ€‚  )„°M¢¢S©¦ÞR÷%Ö(h@¿UN"ÄôiŽQø×Ø¡µ{ì±úŽúÚV/Þ.À (ÒGDJ‚ ‡r]xÂZ”Ë>&ûMæçµa³o ·"r®4G îUû/¾øb)¡z©«QjX4ºX mQߟóœçH4lSJå±òÅ/~‘“š†›o¾ùƒlƒÕ¨–N&˜~ +ïRý f &0h4¹H‡´ /Ó-è<–J‰Ÿu4,Ԁ±FÆ<éu"Ō²–™—¼Ìß$ívwT=«Ì ÀŠ‰½õÖ[…ëÉV‰m÷j°Žf‘Î:" Ƅ +ږ#.ì=ŠT©£ê.áRñË +(_úҗô:3Gªöé»pÜÖ-:՗g=ëYŠ׭¾üå_þ层$¡tÝu×QüÃYLC@@YÐ4iq¸n™=Káé%¶*Ԉ[{[†°‡N£x„ÃÕ(^‚i [‹ µÖYܒ.ò:‡´ ܨn¢‡AØIÜ…í‹6M´„:÷”¦µšNÌ.¼š°Ý»w¯EAÛYÊ!šUºÚF"ÏãkéyB©õ.8”PˆøŜáè¶KËê^[}òÇÇÁ>¾»víúÄ'>An¹iÝæZ šúÔwÍý³Ÿýl1/+Ìú|ßûÞ·,¬¼¬l Šè +•ÓJ¾ïQÔ+° +£ù€Þ:˜²D^ ¤Ö³‡I.´‘‚Õ‡U¾„a ’n“y›B¼¦0[֙^ìQ³¾ÍbuÝZ‰iS2½‰ +8ÞM5•à=æƺ´fÙöª«®ºé¦›¬ô‹‘xôØ{ï½W£_ !Š†iÅk¦Ù ­upµ©À?U 5hj’°òä'?¹­;{}ô£U6ÕÚÆ“ð'ë-D8ˆ”žþùjžÙ¿ø‹¿XV.ºè"„)ô‚‹V‰ˆÊ,ÂßK¤äŒ£`+ŒpÊÊî¢Æ\Y£®‹‚MÌ~2¿º‰œ FÝg-¶ÅµÒÛχC·)5·÷QPt-jÎÚtæx›nÑw4FhËN0`SyÄÛ¦†tiú5"´"-d^Îjµ"Äü.m†ImN8…{ûÖ\²ƒ¯.Ð31Ø6‰9:®Ë$©h:…˜‹®—(¹cÇ wìþK‘~©‰?«UžögögËŠäí¡˜ÔŠ%ºJ h’kWÅ8¢_bų‚›CëɛÀ4”o +áƒI噀ÀI$}DiÀ¡èÆ8ŠØÎâ°yf-JÄB¸ÅLpõv‰/aŒÈÂîÇü‹±åKkFšÈÕW_­1A´"‹f;Ô|Z7u™FÙº>\]b@XØàé:à•¼šJ;^z æ†Z²Dd^š3ã[‚¤ïj°ÔŸg>ó™qLï}ï{—‹Q¼Ë/¿\­“Öw;ҐãDä;¼áÓØâb[¢æ¢n U7ºˆt/ió§QʒoR¦Å,… QóÞXY‚¢^:C*vÒG¢ÐZä¦`;Æ +gïÝ86ƒs$¥7)pY©ð/Ô‘…d ãhǓ 6nÒñ³´`¹ì¸2`v(>Ôqm#ÍùC`Âœd*¤»°ˆÂ"QŽ¶oß.¬^%…© ïyÏ{–…•¯|å+}Ý5êÒK/Õ +ÐèHÌîRôþ ⬆ÖÒg`Ž¦`RúÔÊíRe/{[lEì°ÒÏGû"ó[‹4®@fӟNžh¢4f—ŠÑ™‡bÎG…f|rÐl£h“š=‰v£¡8pà€ÄL*>Z··ÿË´Ó#Àe(bè/t¡ÏXWÈLÓlXzØ <é՗\r‰nÑ÷êVôSDëÌz°†Íƒtüñÿñ²°"=^?[ì +MÚ֎ˆ–±IrðÈÌáØa`‰¨hq”xE ä.¢ŠšùRŽô  m}*mâ4 üAkQ/©Oµ¯í♤*©%ÅEó«Où6!í‚*Ÿæ[KèСCû÷ï?xð 6›&Ûҗqd‘ á:uË-`e®Êfó-™0ÈÂ5öîM5˜P!¬`†Vc¨’­‡h)jA>å)Oªºñɗ /¼p‰XÑw „èŠFD-ÓÍRnv‡)±èYâ³Ñy<>ê°8¨èŒ† [Ieû´×*}³ëÄi‰ˆ¸¬7Ùæõ=ìQ[ې‡&)cc¨y£ n·se庚ö† œáU×´” gd6 ?´Ä»x»ŽÐ(’jgQã©D Æ,j'³´ú”ãâ’Ð1 Ñ -¦sÙe—QÔþõª9G9ï¼óÎ>ûlÝšÉpù£?ú£eaEÈE‘ÌÛm·i&4.kQôW—fAH&&ÜCàp»T %zh"}|åIÛ(ÑD–¼m>†¨÷ÚFdSÖkXÓkóÕ³ºdºRÂgÞDì„Õ±&ÕVÁ¤‚d[3†AuM+‡ªÃø©ƒb韙Äæœt̕CÄ»L##uŸ#ƒ±'.õp{!Ugðã¶5(]Q¹à‚ D¿s÷“w¿ûÝËÂŠÈ ßÅ%ó댆kótIÀX'z¨qD­ÐâIÅ ä1Ó±ªìGÕ¸qÔîê¢zZໞé‡cÇÒ&B¯KÐ{چHìGUKS »!ò»¨î7„‹€ÙB&CõŽXY .ìKàšg³Øe5 K¤ÄæqîR±–,“µQØ¿ŽMu³T2° éK_ºë®»P*Õ^ªçŸvÚi矾ˆÐ†Zo+cåþà–…Q9ú):qå•WŠÐapçñ±A°Áÿ[=t}W7£šE‘}Q‡Q‚¦Q"k%v²…£Kñ­£ˆd6h,8›[¥€¦>öÉ0iA£i" úpÚL¼©Õ Wbçˆv¾è>C†x‹=ފÜýõ`³òܸ ‹­¦R³z›Ê6©¸5y{Žu-Á/I;wîÄ$ñEcН|òÉO}êSE„4à£TGMÇ»Þõ®%ҕ!ªËK9”ŠØTË wá÷8J°:8°ÃÑÂ]ìøÓÔ½xv,å~ÚG“¼w]Kjj ·­±m„Põ©J,¼Ï‘MC$âÛȋl„?ËæÈ ¡¼”¨¯ycI`†§µkuWxê¶ +êõZÊ Ò]¼Ã±é`¹’îxæì&m2‘[‰-@Ʊá£dh­^iÎzšäYÑr‰Èãâ>"-"á[¶l¡riFËw¾óKĊע†CR öb÷§5–Ó2¦}Hy¬×.6¸á}ºÂ8KuP£,š´Œc£fŸÏqØ ˆOZ(îb³e`äå>D.ãâW  ”uæ‰õØe‚ pÔ$\ĉ\źM‰gև…›>%‚P­(98Ð"šMáæC”µ²•YºöÚko¹å=\£ªÆÜwß}¸T7׃„! síßû½ß["ÊR´Zsã72âNÖ£iá>HyŒ +'dF/F@ÇÞG¤t_Spó`yÂÆ)+Ýî›6U’¢p-}ª]ЇEßĵd{¼qÙF¸×Ðf.€ÈB ؜]±dêæ¹1Ø$‡Pø9o2æX+ö6Á™ Ú¦5‹<Ý{c=4¼Ò.õ|É.`{ëÖ­’p ¦´¨·\¬ ‘Zyß³gÏÞ½{ÛȪ›͍íÕƱӷÚ-*O´Ût~é»°Èl‰4Áq”ÛoR±‚2_Ø+&ÛcrÇè‘ŸYÄAN#q܊O›ÒcajŒæ ×XOuY½#ˆgZÿ‚<*ÙnL g*te›N›ëÁˆM„Lõ<_@mY«û7ád@0æüŒg<Õ«ýïxÇréJ“JæiPvì؁áŸ*¨m.ô€n£X–ºÁ¹LÓ6ßÒÆK]DŸxaY´nbô´©(1Wò¿Y÷q ì,âÚØҒBÕÇ ˆKˆÏqªªb‘—ª%§6jpØ·ݙ®L¢sGY&£(F4M¼™il ýõ׋鼦-=G:ÄsžóœmÛ¶µ)P\ŸËÅJ3ŸH†þ,9·¯Þ2š ?Òñ,^è¼Þ$¬P`SåV°ÒFy%ŠØ4mڝÌ<»D%m/».mVizc:QRŒ·ƒcì˜E¹Q32Œ„Ђ´-¯XÄ&xJB¥°â'—Ðó1ô0Ÿ±ÖE¦te…zº(sŠTd•ÍãoØiÑJ‚dœiÿêÕÏ|æ3ðPçg)•NÇÛßþöÿ=¬4u5‘>ŒÊ˜€Ä\t1û:w¡Ô¬n]/¢B⤖®°ôÚÇvØ£TvÅi½†ËQ2MÚ±¤ä,ñ•Ø1·IrÁ®ºcÜ;Jõ¸86Ôc”ö‡i«ýT¤åÎ;Ø×-]öÇËÀ˜ÎäÅbM?¿)^IÁY–®†êôj´tf½aQ…êíÏ©‡ÎÛdjÒòÖ·¾u¹Xɲ-ßÕ¦]»vitÀÍƚ’ßÖ`Oïà@pk~à.êGڒ1„éâ+&Øʼˆ k@9€Áòæ6˜Ï­5%7V4ֵ#^öÇä¡Wó¢QƒÙfå&Šw€QRIq"u„”Ê•(0ÙEµ‹’,úêqÔwéRø˜G¦¤¢·v+â¤Ô°_qÅZ„j?I0<ðÄO|Þóž'%h’JDûQKĊZ“Éff¨Tv@С&jÄÕáú£¨ dÍèŒÝÅɈ5&6£´ÉN–c,— çC꧱•¯IK ŸE|<>Ô]Rx¤š!q›­ ˆ°5҆¨ä– ì4¡ðƒcè–V"ÿ¦¨W•­&æ•q;ö8šp/˜™‚G25³ð«®Ž+"*‚K_+ƒ<å)OùøÒ =›“·¼å-KÇÊz6$tïܹ“œ®ƒªÅô•Ø´Ó ‚:Ú¨6ž©ç-ðŽ¢’g‰ª–æAÖ­JªÍߥëLç=ô´Ö~é\1ŸðPK’ +ìç# P g.Β¢g¬eèEÒ`‰—ÆŒÔFõ¼ ©¤¥Yêö§ÄmTí.‘ƒR¢Àñ-KeVCù%ØB¤5þI,Q”ïÿþï—ÎœW¸¹tºrD¸ á +Ýú.Z¢/7]ö Î*ùÿQ‰HÊ,ÏÒs ðØèf‘_Sæëܛ’{¬ù9J…b۔ÁåŽX“D1h çﭟ»L!s0úø¨‘iš +ÐSl°Âx@óG?kõX³‹ÔÌhû«ší΢ÕZÔµƒ´¸r[±!ºàÀ[ ÷O{ÚӞúÔ§:zÒ¼¸,[¶Vüšf^*µ\ÚPSãC‡ácc-²VȐP¯ÈÝÊu àÊVƒmQè¢æx“Ô ƒ£MÛªZ—n£:hś²‘ÔtÞ9Æm­L¦çhpñéc¦Sk‘TÔrL±Ž_!(·gI,9.¤"òs~S5Ù{7Úà[B2£%0Ç!j®–¨DD ØI-Œu8Ê©Ûq}à 7àÜPÃn¿ývõK¯ë9묳¶oߎ#Å3åY[.]á +S³L]QµZ6Áe•UÑ)†jÇZIg…£6?D¥M{–0ü[€˜E ™16E0¬“ÈȪ©Y{‰j9´u w§nA©È³HW`Ü@1í÷ê€ìå>ê<Á:›7oiÙ³gÕGéÂJìñêëMZlš›F©ÎilpØEù».*—2æ€^²‘äMÕw”ÈxÆgH^ї.òaK˜˜ù¾Dºrå•Wëj¬4µ°"„ÓÁR!4Ùô“lHú8‚´GWÁ²kÃo‡ÛÜݜÈZ±å\k¡æz–'Jª²Äc±¹µ±Ë Þ jD%»¶nê;ƒLb›1a£…°ÒYN:é$5檫®‚²Z¤u”õ$Š_z-çbéÉa.m9è$‰¨Ü{ï½£ZE'¥‚i +Ž=öXaEŠ€BK…ŽxmÃCiÐV¬&}¥‘.(™©q×ZlXRë,‚vÙXRÄÓ¦qƒŠd‚ÚG=K[x›¨…ÑÕx.z$qRX‘€/ WÊ3 +v‰Q0SÐl"d9 6¾­DEäqŸ¥j_üâI?SÔ-W)êzµ$•SO=5Ë yâ–+ۂ3¿žkÄ\öíÛ×Ղ%ãr·1±°Ní'X‰¥¶.|"™´ä7fÏ a´e8¬”ZU6UÏòŠ%-µÛñ‡{î!þ`ZBºÐ¯.ä +¼%Œ7Ÿað]| 'œ|òÉ€$΋Üfz ™iºh– +­"«ÒÂ/?§‘„;ŠJG,6Q”K/½T¡6 QªšéSN9åì³Ïƌ;¤ªy3g¬dÄ4aԈ‹Yjb¬Dµá!ÐU” õ\â­&c™Ã¡.šŒƒÊ,⓳c…q·ÖÓ%ç¢[ÞÄ>‚Rm¸€ÌH¤B BZÿj­âLùÆ®æ¿ 4C@ÙŒ»TìUøQ!ÙBŸz©Èí†Ø: Ûê年coËRmøŒœ`G¬§\߯½öZÁEÍ#DRmÖw½úÜsÏ¥KÇ7X:Všõ¾€­?‰r"¹X*›8Jã‰eç2͹lŽ£)h¤%Ùæ GË.þ9Žìè&£ùhgó{¾P¼ v0‰‚+Öê‡3¢9E ¾†>ŒÓQpÅ.d´D׋ +m­c ©]ÙT‹êhÂЌf±·é&K¸´ +¢éL¢î(‡‡ÚXѕ—_~9J–&ùF3}æ™gª &¥ž …ŸKÄÊÕW_ºž¬éa|÷îÝ]Š+n"¤È†/æ†rõ¾rIuþ^’(0¤pö,̶iӘ,ÏfÎhY‘¶ C»ý/:¤äïܹóî»ïî#ª_¦U÷.BÄ¡š«Q}”'¢º¸E½ f¤&Œ-{ W -´‡²K)‰C*çč&ÛCD÷p¢"j¶¦–ÚAjƒÚ&Þ'm¹Mé~ÂÂÚ^"V®¹æc%ÏG¦ljîu×]ÇòµÍŠ͂JÑj留 cqiª!ÎÜd¡=}Ä+•”æ!Î}˜¥š%}äbYoD&ØuÌ$à +(b "x^å9ïÄ`u="›P]$†¦}]# lÛ¶ 5r•Ya“vßó+øŽÇgˆ’Ï¥Æsõá/á…Vc(è"¦ÃØê/q@©?ìoSÖCò3ëK”mEW29Éâ­¿ëJø]wÝ5‰mښÐlуðl‰®LcS³ƒI„%O"ŋ1Êô³MI¦C¤4ºV’ÛÖΔ"a CË(¿§Qü‡ 3a¡ +Yҁjô ‚*ž\w¹û]ÝÚDJæL’ Ž˜ÃiŸ´>Íj-ÎaJ"aˆzÌþnÒB ”$\s¼e˱?/•…™*IvY.V +ͼﰔ9M¬©ÑOW\q…èdž¨‡`VVH¸jëöY¼ˆ­cƵ&9„iǪ²A“E(fk”rQ=²^Ó£ìÆV“qlÊ¢êèɔ,0íÌB~ÊÕ8k†¨Î-v  lß¾]Ó¶©ª’îùšˆyƒR²fPûš'e1˚3gÜ£.6‘€(¨“p=‰ÕäŒeˆ<җåò Ž³žÊqþÀ’ω׷Ü>«Éܔ$¨×sÌ1㈘G1%Å™ïa¡·Y‚+KeIv ‘4ý4I[fۊÓǎ4³(÷HL,Òû,£Y”íà;ÓÆ_VOfQPH Vˆ$§¥™€¡ZVu$”ÝÅ®›Vû­jYVc™Ån¸AøÓK);åÝ/óy6˜À›ßüæ¥cå‘ â/º^B®˜‘¨ºmGV›é¨jÇÖ­[1WX¤Íþ ñ‘˜K¼™1¸FdŸÒmìi‚—=žr&¿DŸvý†¶¯Fín{úê…ARé#沋*¬’T¨™ˆçˆk¸~)ê"Mñ–ŽSÈpq“%é€]دñ$ˆiÓDäMæÚYZÈlÈ痈‘ŠLÇ2D†°”$ö"—°Å'¾ï¾û.¹äu‚ñ§œrÊãkI´qÊ՜q +hEÄ@†°¥6QöÝrè$â MQšÈsÞXkc§ïcSÞ¬'÷‘‹­y-ŠÂtL$üX\BêeQÈP§ŽÈ»îf‡Î´¼MÙ@¹‰-Û´é*¹Í}ìUïNõóñožÄÁ¥,Õw(ºbۑ§mAjÉçKÊ;çi"6úЇ„9,Ö§žz*îr<°¯Læ÷P0?šF™$Èui^^"™Ïª¸í¿6à :‹}$ÂyXñò”(%X‹š†C ®h#w¥@H-ÛT÷äÐàê“äxt:ÞB¤æ,61p€1mi¬ ¢+ÜÖÎ/ÆYÓIü!wá*/ó¼f½l›—ܱ¢96qƒ2ëYOå2’úZ0ý _øÂ?øA$_IY,«N"†TÐ.…§ŒRì{Ž¤’,.%e/Rh¦_“™QW·``•ce^½ÎÐrK5˜`GôÍ¢b”[2ªÙONFÄÅAÕÐQx˜ÁÊZ썜k¬tÉ$mòÐÕ}D‚¶»Sª £¥þjŸüçe\bĬç Kô~õ«_æýÌüµçˆX1P÷]»výÝßýÝõ×_¿¡Öޔ 8ŽdLŒ ±‡Ý8B暨‡`ùÀ·xî‡ðç™JñjÇ9²µ‹¤§ô¡ír}ԇ²hÒÖ¬Jì(ÇFÂÀÅ|‡…t’m͹k5Ši{›ü}ÙJÚØn5v)²ÎÏhxk.ÖÕl¾´¢'δþ–êgV²ÄßÚ¦¬É#ÈÏÙ½{÷ßÿýß_wÝu³ºW "‹µÜlž²—í¿mlWç(F¦q›Or VíZ”œlS¥?"Æ…!¬}Ôé˜F‰/æ¸ON›ÐY²Å™P)—f¡ÒÌ8"®Mºàh8›²iÀœ¤]kð#º³©åz‹9ì,ÊB[\[¿n3?–ë$¬¬'! Ír;ŒžÌ†ôœx೟ýìg>óê< +Ô 68FQM{CÉènŸ´å8Ï1n”qDÅvów%y~%Á Aý;‰<È.‹ gK×´³KÕçÚꂪ1åøüìdžWR²…gÉCēÔ1MÕËڈ֞ÔôÆ­[»¨k—ê‚Ȳ »,Q1xˆXSõƒ2§ä@ÄÓs>üáßyçêªÖ‡˜®OTè6j‡òœQäàxõ34–òú`Õ2%™ög‹é€V3›M‘ 7Æov u§e"å†0Ž•ˆ´Êç!Œô]Švºu¦¼ù¨EVśy%Ÿç –ÛÀÈ+f5Y‰¸<g8Î#Α!’ ̛Þô¦eaEBF~«e—G¢4à^Rô={ö|ìc»ùæ›õSëƒ>³¤²òâ ÛFáğƶî–ûTuÇ\¦MQ,}Ħàõu¦±+ó@{aѵÔx¢Y䲗”«Ö„ z™Ó(ÌáHX ÷Pmt}”Jä ˜q|ðAŠÔƒ]Û FQà‰f ·Q «·4s—åíkº'v¿òȪgŠŸ¿û»¿»Dº2$íÆPȘ="™)IQ·ï¹çžOúÓTœ“²pÜqÇY"E¡¯6)š0µµ‘#ÓD¬µm*™xxÎ",žÍAL“ íT?˜Ä¾1mdVsÆS.§‘ÍK1LãJG®dŽ[#þޖÀÌ°]¾þõ¯ã 6jkéeºPÂeLÛØÿS$¹¯õȔÕjõ'žx¢ pIRãÅÎ/+ âêz4”²(µ4C¸7ŀډ­[öïß/š„~®Cåì³ÏÎÁú͑$Ùè,+âAë9Ž[àóùÌéc(¿ñoì۷."ýɉQª¹Ò&šmq% ¯C +Hƒ•´ËÃåüì«C–´¸j‹î§!UzšàH‹g²1¨#Qq¥5š&èigQãá´Ã=ĬTo½Mlr$6%†Ë[Úð&–Hƒ2iþþíßþ}¼ô]ädëÖ­ìԐçe˜×}<)v èûïüÎïü/ѕ#Báˆäná ±8®°"64«±ޒ˭ªV<‰=ãÝÄ,‚4á^v#  Þ¬ W”I]—rEíýY‹ÍŸ2´E©ãª ä +óïú £ZeOÖ¿›êÎ-º ¯w¾+)Z‹€+[‡dÏ8ã M$5ú&‘à’'kýøgåŸo|ã—+Û.´æ‘ð‘ú³ 3¼èšk®¹øâ‹EcP2-Ó5±KG6hŽ"?ÞkÂôcµÈâvs"8ÉEņT4Dxe“<½>Ú( f&Vr}ÀYÔFdŽ]caˆíx½+f^ÄðjVp-õö›CJuòeÉ›7o>í´Ó6ÆÖ.‡Œ†J¿ž´´Aö†7¼aYX¹á†°™ùÎB› :¥²!Ž÷•¯|E¦Té9§%œôÛá&ÓØ/{u(šˆ×ô~,vèpØ6‹Ò˜&NÖÛs¿Úùº~M„ðð¢|ó¿DW ‚õ¸ÉXÉ 5_&yåÖ[oUç)Bñ°—Çp™Dý£q*8^R2•-úyU# ²!J ò(+/¥ +³ ÁjŽFâÓLÃr€‹~/f“âa‘=ÛØꈙ¸Ø×=Ž]›0)M"ʼnN"æ\KKª€È0×+gŸ}6\ýuôÑGK—Þ¶m›ãÕ½2-2ç)`¸^óš×,7&!Ãâ‘HKƯ¶) N'I…}ž‰pv(‰yGY‰møJF)×pHeºˆ3í£vþ¦<;÷¹½¯4F©‡´˜&|~Y7ib4SµŽ3 ýđqÚÆ~56šÂòքjcª …Ç +© +çí éµÀqÖYgI-Vô4ü$’ãaûBž‹N¤Ïåbe=Pø˽ÉB–ÖÖ׿þu)V7ÝtA£TT‚™èŸׄT˜%VË(yM¡˜ŒS„ChÌCû8†°Ûf¡Áž oä.·i›—lP6=§½ -ÿÂ}0ÌÛèq/Qȃïþg‚Îïß¿ŸÊ^ø2õd’íÛ·#>ç`JͱHe‚hÛ5¬éË«^õªåÊ+GœþrÒÌël  ÔÆ®¾újÊ ä€>ª]иRE‡.\ù%(|n°LošMEQ1K¦˜ì¸Æ2lÁ³ÓØQ“ï}ÄOMj‰6îòÄc)G|I‰8W“3PºH>uVÀ,ŠM–=8‹ ȵ´Ýˆ‰å½÷Þ{èÐ!v Ôô®Í›7‹´ µX0®õFªµX’þº§ºQMç†$è8žëÕ¯~õí+ ¢uæˆ ÒÉ£€‰ùPOî¼óÎK/½TÖ<ÂI£MÒ0G±—‰J>ç.ªg÷‘ÐÅ´•°XؓìöX¼m"Kžù›Eú3OͧP•Û(Xgʗ‰+rôÆØü(Çf7anf‰‹v6ÂZ->0J°Õ"û…Ѧ ƒ^¶U"óêú;wŠ~«ƒbL§Ÿ~ºà"„m¾%ò dÛÌz¾-hòÏ!ì],/}J°½è¢‹ÔKM*é+gQϾç48(É|pHq‡f^m” *ÁŒLÏ41—9¿«®%ØÐZ젗%!>5DZ]/@ˆÝhšu»½ÁHӏéO¸Áøk™½‹2ñ=ôÎüñޓ5S/úêW¿ºtÙ¶O1› (Éüҏ[€TS ‘:DQ¾üå/£]DL£|tÙö${ÜÛT"Ö*´Ä}ëÃÍÅ<re*2„Nk1©eˆ=X†´“Li‹™¢˜–*¼“ OÌù,6¶7ß±Úe#²GŒó{÷îïÀšBAoê¿C'ðH¨ƒÒn$´65‚aÖ2;£MÁ›®îD*eåé×-·Ü²ÜØìL6ŽH]2Gȟù²YM%Eùâ¿ÈêáÝCØømðð\ŽSȜa‘‰Vó>6ìöš,7©ôw•TÌÁêIÖےÌÁ8¥§©²{×F ¯5ÿbA©²<›Ù 2<›/÷bq[+ž43øŦZ~AZŒàu!ÝD煡z÷`®ÖÒðâ\j†Ð¦‹iÞÅåo¿ýöeaEhç“Ç]ßɦÌ[xûZâLm•l˼MøuûØɯ'0³ØFÍàÒE¼' ބy*ÿˤ:4ßZUá˜y f) ¹ÒNI•Tg¼’= PcbV#ûM™|d¬xX4I’úŚ5dzpw#&‹„úÔsÄÁ›Zo º2„ӄ–Ö"€Ç¶t +´{÷îåÚøˆ(,Å×´QÓ|ÿþý{öìѧ–ˆE +$šÐÆ00‹øä.ìc¦+¾w”ö1îÒƽÙNeM™ß¤ý“-‚ i yy`›Øï6íi9¤ 8;™Õ§.¯Å&‹fj}d<‰MlÙ²ESHt©GƒÞiÎ4…’](ƌÇ[8Ыx᭘eQ¶)¢¹ßT+~³x†0ü8p`‰t¥9’2œ¡S’›p©õ’³Ô¾›o¾™p8Ñöiƒo)ǖ'ú(r1JÅ +›¤‰´;‰Lf„wrûT5I9·†EЉe6)ŸV’AF&*h4ìoÓÅöž³(³ÐGˆç42Wcƒï>•³˜BA͍֤†Hԅ×eªEZÄP4—£›*U.!³dTËïê ÜG'©6åH ëe”i]V®½öÚTŽrk<5!$ +ݒÈvîܹcÇ6„aâõzu° 58“–! +÷óEÝܬ’‚.ì1¶ã™Æø-ñkmªdŽ`9šü&|‡–u æã´E ØÍú¶7;APÀ@²mÓÇIÝîA‰^qÅWìÚµKëÊ9M^j-Ó [¡ÌŘɤ|Ý쳏 8`ç#‰Þu_"]y$ÒDÝUu@xEE¤ìàËÂŒyŠb¶’å÷‘º¼šê‚–ù­½‡pß[ˆĺTˆ{¨ÑCX÷ɯi“­ÍÅäÁÖ0÷‰—Š‰‡ÉžåžU$‹Æ+ܐDŠ¾îÓ$6$îÌpe†‹à‚iX’Š´ÝÈ®LH'HÁ}MñgMZs1 + .X"VDW†ùPH“b +½T6>èq\YÆå»uëVõ¹$sªA‡ V³¨1Ù%ëmÑtmÚÞ¬x (ÇÁ´µ®Ô¸MæÝÌnl£ é0Áðe½„tådÞ& +¨¬F%K—³J¥ÛEN)¨íó¹Ï}NK {ÅÞ.LÛލmßĒÖêVLJŽªGS3¥½Ÿ'-$pàc‘f¾D¬¬M` T8Dôzé5«±U>Â!Ü1¶QÎjÖqô-C:Áx|AI|·XÚDƒ2³7Ä.¹¦ášgõY´ÌSB§Úˆ?êS5C`m°)Տ݆ÇǶ™µØU ã +{Y‘‡ã°pJ8?ó™ÏÜ{ï½]-çæ^“¨V´ÌDÀ +òŸ~Rf²ÓM5½ð„I”ÿ z¹X!.ÎgPß‘»îºK\F_X%5ÝEf0ÕwQƒi‡nWƒÄ¤‰•oæC¥Ú°Ý"ïܜfÞuç¡7'rµR›Û³§š&a 1[ì¢Ö±xdrIn ¾Ö¸Îîh'+ÑN®9C.v)J¼]zæ“êÁ,Â=õï'>ñ ‘äY8Ų6d=ÜkR·mۦ­…Lي4轘é4ÚLù†¨¤'K|\bü +s/¶"àßUqò´ ¶³Ã°GjÖ•}¡ÕⵔÎÇQ³Tu¾„‰¢×¦¹Ì†šä"3¨ KŒ#`L{ۈ 3V¬w©êBWC¦Qm¥KþHs¨i”­›DAÑ6éðh: „Ä@1¥téʕ8Ô6qí|ä#ìÅÕ§ˆ“– +B^_w€9ñÄK K…f¬Äöe6G3n„bAðn½õÖeaE´*²gÏ1TVKjš¢„l˜‡ƒØ¤h+b†IDÅÂyaŽf(CòÚÏ¢ò–÷u±¸Ų exaYqH,“«§šæP[ÆFQ&Éâj›¶J¶fFŒTdÙ%ó,¨ Œ˜¸¾s;L„‰Çvú)ŠòÏÿüÏâã‡cgwKúm”Õ˜ÔA.³Àà±VK=a‚kÂ?©YmúTK–HW~é—~I=Q‡KXÕȘê#&m– +ݔØ&Ö]EEdÄ:|;züޒüŽ Bg¯cËOŒJ8nè$édZn£µ¹[»ã )`Åd¦‹ðo›XF©šþ(¥\@ù©Ì€˜Ì{ƒ¶è©…éS:Ág?ûYä¼YrA{LŒ*M§ô ÑøƒZ&sð†Ùe>†°QÉAg–˃^ø–°y8–Œ/´ošöM€ÑvÉsÖ¤˜E½û¤“NrÍc˜˺O;K廬k˜+ynÚäÈlS„v! ¹” YCŒ¢˜Šé|Á‹n‰­±†ˆÙ“™W։Ü0öƒÀ3@” w¡ÈØÖl1\"¬|þóŸÏ;x‘̮ȒfTO–<€4fµÒøü®&iÝú¹D$¬d‹{ S&̨„ÅÖÜgÅò9Úäb•˜"aÅf„KNØÐ9„ '‹,Mrß+yš»ˆ æ]MT@mR o ;1áÉ@*êRô¿ÕEt7f4Ë–©iêR +œC²›Ø˃‡™/dB’7ÝtÓE]dÙÎ:šå¤®Úõ5ýºXsI(ª—Í0iâú#© ëþ™ÔÕZ +VžûÜç:BÇëÞá±%éœ ¨=®ki«V$N †ÀÖUÓI륣ØÈk«M?FÍ~‹Û‹ ¢_mì$ÃÛdË’±ˆdêåiXÀ±EÎ&L k†Øb-ª’v555× 1iÑd`‰¿ä’K®ºê*ëÛk©¢©!Ëܳ·Ç¬º©0‰2OMÚêÞ²?˜Ðô#'‰-ÑÆÿüç?-Ôe5v@·Lgn?j£Ðƒ.V?·lÙBÎ7ò.¥ š~ )£g–‚™M«<µn7әÅfÚÐDÝö6ù,ÍÅ<1CäúuÓؼ™÷´)ªDÇ,<Õ³Ø hEš­4¢˜ Î#rJ°k0VfQêÇ,¯­" .úk×®]º1v%v»3õà ¡„2÷š‚µZûy)XyÞóž×„Õ•ÃJDæß×ÈB†%Jý«vlݺ¦³›6©|mžcC$3‹žÑ#R7À¤…fCîvI! mªÚÂ5}x£úH™.¡ÏR@x?x½²mõÉtÎæTê³êSŸÚ»w/X1]´ X’xKq(ý»oß>}"±Ú +0›ßÇù ®ˆ¦{·mÛ¶,¬œþù^—v©C60±X­Ízò,ezBÙ²¡©¶Åµ(n.ë.¡¡4!ÐD¬B&^s/ò/¡¥vÓ(ÛGC¦ +³H’5}2켦©Ê­=³ Uͼu›±^‰m¥FQ(¢2©uäôäO~ò“÷ÝwÃ҄µÚ˯‰È +„ÁKÿÞsÏ=Dök^¡‚ŽÎìÃ? +¼¢tlß¾}YX9ï¼óú¨ü‘§ÁA2Ékº$±WßÙ—„¥ÑI¬¶òl…#¯Ô&¢{Úä÷n#ôɇA–§ÓM²°ik„ïµp`j‘ˆ¾fj—¡iәÁäG£p­É]Þåqõ)õçãÿ¸Ô`Îaêy'±¡*҃p˜}ôÑDh¯¥¢e%%8³¾¶©VÄ\"Vú€í"õ ›ŠzÐg)°™ñÕºÅ"}j(á7¿ùÍVŠ3`ÙÄß7Ë™êxŒϖoähB²„î‡w)Ä?ÿåèT—ÌüšÈ¹UMȤVÁƑª­i€h2|ðÁÏ~ö³l)nb9”"¯¥¶4¡:éQµêôpØPžKãQ”|1:$¤¥`åÏx†Å”.…¯š&+&àÙ<À4¨K§všDq-2™m÷ìRm´&öØÈÄ©$¬„9‹LtS‘6Å 4!åFnX“”““*ÏiÖýÌﺴ«Q“Ò‘š”‹9Š:d£Hbâ€HS¥]ǝwÞ)…:í‡÷Õ±›˜5iU £žpèС‡z–´!*Š1e&¨.ÓL¦È²ä[‡Hó0µQ^ ¹¬¨°>ÒõxÚ1Çsꩧê݄+ïC(ÌM(Sm”Kñú’¨;DZ²9ú?íÍ«\ÅÅ«ÎéÛ>xð„’ñQgŠ3uè¿àŸâ@āSN+"œ +ˆˆFM¢F¢âGü òO»O½ÍYO÷Ííí(Ï®Á¥Ó9}>ªÖY{í]»vY5zç˜.'ÿš똻nVŒÏŸÚ9‰Ç Ë\`ÖÙ.Õfâý²Îó@IðÆ¿ûî»ï¼óŽòZJFn†Lº&Z=ÏZ!2Cэß~û­ £Rg [»¯ÓÁóÜ#C³C¬<úè£ [Ï2q̺Lêl±ä/¶ NÂ6lPOX3Ù¥C8AgΜ‰ʪTÈyže&»L[9È%æ(•šCÍRàÞö(«ÙœØ‹ßž0ï>›ÎO¢ó¯ÇOÐN±ðŸUŸJÖÏ­éôjº´Ï%•1*Þ¤Ìû!½ñš¾X©Y#HÁ·ùX&Üì88°Bî•úJÕ[Š ´ÈoÚ V~øa}ÓYm#¥cõ¶Ð‹Ð,µ¥¦:Uñ!ï‡~PÚðAÎpJïÇÉÈfR‘[èc,ÜHónŠ¹² p£Óg?6Tñhç*ÐÜ2* +Vì}Æþû¬ï9G<û{ï½wñâEu=Ȋ¬ + éñ%“ÆÝGdtgqu%Ä`¬YB0ËDA5"{Z‰xVâop“Xy衇YJ×ˆ—©e­s—ºËÜV«äžÉñʕ+W®]»&7¢®Y8ÎY]·uXf ¤–ž7C8c_Ìõ…NüŸ8f°ð†““Çô +¸Yä^ƒ +ÌÏ]éTø8Õ´EÍuáÅt4…ää¤ýÀvðèäüêôƒ²Ú\7Cñ9‡Ö¥2sRs6µÎ®}fú©ëâío#­dۖIBt¾¨…¤qQúæ:V”ß…•'žx"xr‚õæ<7>P ¤›€Â2à{úôéð™ã¿¾üòËxânØ;¶[͸†––ÀÑÌEÇ)벂(ªsi³!Ų„q­>'º±8]ÎxûHëy¹î" pt6e]m“’šêr%[ï WëÄ1çϟ¿té’<Eô—™ÙÉðÈ YpUa~Áñúõëßÿ½Ê¸Ëv“þ-s{·ËÁ+šˆ±DÍHëef±È¶XyöÙg_~ùe÷†Ì*e].Á¹æ4 ¼Òr+·;ï¼ó¾ûî‹ãƒW¾øâ ­†IÖ,óŠÚ fã–0%ÉÐv™¥Ëˍvi¹ùãÝYîíb\ÍÕ[áÐÎæ‹Åá3hÏýsd,&•Ûs é$K—÷ß?¸“]-GÑ£l¡EVO%×z>Vg ·Y*XÅG/@¸§jË °‚¶•³ Þ+ê‘ðþŸ|òIh­­¦éÓ#J\f‰Gà"¶‡¶ýôÓO^¦µ7˜;wîÜlÜ/VW³Ö XÁqE¼úJ›©Áâ%øD€£šj®6çׯEu]<Á¦5ýÂ`EʀŸãK—Lŝ咰è“àƒÀŠÖ›aàÜÒ ¹<¥³b¢ +%È©ÂÅ÷ڔ- ©ûۘ !“ä6èöq}+ÂVò@—8VêàÇ{,”T5³¤?\Rêj°ÕYL ©ãÂ÷ßÀ?Ll(åè -ižç~ ¼‚ؿкeùɅÀd@ÀbÈÀ<Æ¥¦.9?09y³hJ3-ÅmL°Ò[~…“_—Å·zۖ">‡!éF¥nœ»¥…ê»ÜUˆÒÄ+ZGÚ6˜éöqãÙ˜pîëÀI‘DSOr^A¬Èý^Ç +¢pVxÚ!“n^|ñŧžzªå.ƒšØl)]aï–yÑBÂnwß}÷©S§ÂT}ðÁñ„áÅ=¹‡é·âÏ+†jz ¡¤ŸeVÊäYŠµ.óg‹ÍW7‹µtY;±ì¨%ÚĽá^éŒÚޖ@3‰X¹rå +…Lq—À͐“V]N­ å3hjôäO?ý¤pOr³‹í(‰(f®@Ôë¼VÈ>V$şyæ™W^yeȜ«–ÓîÕÊ2xØ .7¬=yòä=÷Ü„øæŒ*جױ¤øê,°ÆÈ1H]ÎÛ1–€e&[MÌ +LL€ZœÉ€©Ã×Ô[ºË:1Oo ÅÕJÌÅ+{ñâÅà’ߢ{áW§´ÈÊ«?•‡]dÿÝwßÅ?ok}•qÅÉϹO¡[%_Âm`%`á~„­°"oKo2’‹>™b¥åz;1[ÜÄÓO?ýÆo´\¤à7Æ^K’‚KÉ­¸›p…¢›>úè£Ï?ÿwžÝeàg*܁r¢@†£æBù脶áÂ0Æ‘êv’©¹ö e_×R†vôj #\Ky1ºÂÊ2[\TZV›[°BĖ@sI8’°RÌރEã>Bœ¾öÚk/½ôR|p£ ~W|ºË Š]£E;sæLàãòå˟}öÙ0›µû¬îƒ™;±Èn‰—ØíHË©MÜW=Ô°º^D#Ĉ֔Lšlé•tÅ'–ËÕ÷¬£k´ÕL.õOœ$õÃ? >Ð15§'K +m×Ր3²J-ˆ3„ã]F·YÂ@t®3DžⰚëøg™§§5ˆ`EŒâHbŝ £±âòVKþU &\¾W_}õÍ7ßãуAîu™ÁõbE~`A¬ PV£)nÈԡ௚Fî2é_Ã3¡[Ìå`.=·-F Ïþﱝ;w.tî›*Lãø•Ê,ۛ›©cº®ê¨Å—•èg¹B]–»Ukf!‰‚¶‚ˆCdEhž;ÛN„í+eMÞþœ›© .Ú´äí·ß: ™¦5þ¹±˜Ë1EYâ˸§·qX¼UZë 8óR*ÜâwýºìÀ¸`‰º óŽu‚^K›ÊñМ›ºb°™©!‹I 6%ÞYdÙºY&wB*ñ^EEÄ Cà«þ™Í­ÏAV&Øh€Ê+eÍò¸pbø«ê4ª“æsž{¬Ü‚¶+³¬ ÄúW$Yø»” ©”#±RVs™—p‘1R¥+©Z‘ +¥'’eo†nA› ÄÊA®¬†Z}PnËúš8ÛI¥¬c¥¬Òì²°’‚Tn( ߪ`Ëâä»ïº¿QûMx®Š"+˜¡dý_ϲSs™²|Û+üÅûEçNó_kÊžWnqÛÈ+j`%={˜õùõ*GÑ-á´‹š#WYЄT¨;Vö ùc›ë×ö¹ÊD€2$Mô$„é9 (åH¬”Õ蜌7Ov ìµí®ÛFmëps8>@ÉÌöœ äX)‡À…ð?éjø>ÐO[«ÀSöXÙA›ðʺjÁ'šYó”‰-Rn€•r\š•¿šàci©ü•Ê+x[ñi×T ã¸é­Îö@)7ÆJY›Íaøal™D÷÷Je×Í]¡I¤ BnÊö@)Gb¥lʑ1ƒ•u%ë2e•]·u¬[ÃÐYs"Á=.Û¥lƒ•² +”b pG©¬–^šh”=PvÚ&Üà:«24iegG_eËQ\§‡‰•Ù¨a÷¤rkÚúO4oYµP‡ýꈫk7Žý:—lüÉ¾íº­ù(ëGn‰’_>îXÞÀ¯9 IÇ:ÿ¾ÝtÛ Ùöü7=–‡eßþjíp9Þy~çöó=tþÄvn%¿þüÔ=>þ‚íwâcåTûÞ·-Û+û¶mû¨ Iendstream +endobj +11 0 obj +<< /BaseFont /YZQWPV+f-1-0 +/FontDescriptor 21 0 R +/Type /Font +/FirstChar 1 +/LastChar 28 +/Widths [ 575 +556 +371 +278 +426 +260 +816 +315 +612 +352 +463 +463 +538 +405 +519 +556 +538 +538 +297 +538 +538 +352 +723 +482 +501 +519 +519 +501 +] +/Encoding 22 0 R +/Subtype /Type1 +>> +endobj +12 0 obj +<< /BaseFont /WNZPXW+f-2-0 +/FontDescriptor 23 0 R +/Type /Font +/FirstChar 1 +/LastChar 58 +/Widths [ 593 +333 +241 +296 +833 +463 +352 +259 +519 +463 +444 +259 +463 +556 +352 +259 +370 +519 +500 +500 +685 +500 +500 +537 +426 +537 +611 +444 +481 +222 +611 +444 +444 +500 +519 +389 +500 +759 +500 +500 +315 +611 +630 +463 +444 +648 +630 +259 +722 +333 +407 +333 +500 +870 +537 +463 +556 +556 +] +/Encoding 24 0 R +/Subtype /Type1 +>> +endobj +13 0 obj +<< /BaseFont /GSYXPF+f-3-0 +/FontDescriptor 25 0 R +/Type /Font +/FirstChar 1 +/LastChar 32 +/Widths [ 538 +519 +260 +797 +463 +334 +343 +241 +519 +426 +204 +538 +343 +519 +501 +260 +297 +759 +408 +445 +449 +426 +445 +501 +501 +501 +501 +630 +501 +501 +501 +501 +] +/Encoding 26 0 R +/Subtype /Type1 +>> +endobj +14 0 obj +<< /BaseFont /VZGDJA+f-0-0 +/FontDescriptor 27 0 R +/Type /Font +/FirstChar 1 +/LastChar 76 +/Widths [ 593 +426 +333 +259 +500 +500 +500 +500 +574 +444 +500 +481 +481 +556 +500 +481 +500 +500 +352 +500 +500 +241 +796 +463 +426 +481 +481 +315 +500 +426 +241 +500 +204 +593 +741 +481 +463 +259 +426 +1000 +407 +426 +315 +204 +407 +574 +278 +278 +500 +370 +481 +500 +685 +407 +537 +259 +593 +407 +481 +296 +481 +611 +537 +537 +630 +444 +259 +519 +833 +611 +241 +519 +519 +500 +352 +204 +] +/Encoding 28 0 R +/Subtype /Type1 +>> +endobj +21 0 obj +<< /Type /FontDescriptor +/FontName /YZQWPV+f-1-0 +/FontBBox [ -49 +-204 +742 +700 +] +/Flags 32 +/Ascent 700 +/CapHeight 684 +/Descent -204 +/ItalicAngle 0 +/StemV 111 +/MissingWidth 315 +/XHeight 476 +/CharSet (/C/E/F/I/P/S/V/a/b/c/d/e/f/h/i/k/l/m/n/o/p/r/s/space/t/u/w/x) +/FontFile3 29 0 R +>> +endobj +22 0 obj +<< /Type /Encoding +/BaseEncoding /WinAnsiEncoding +/Differences [ 1 +/C +/u +/r +/i +/c +/l +/m +/space +/V +/t +/a +/e +/P +/s +/o +/n +/d +/E +/I +/h +/p +/f +/w +/k +/S +/b +/F +/x +] +>> +endobj +23 0 obj +<< /Type /FontDescriptor +/FontName /WNZPXW+f-2-0 +/FontBBox [ -56 +-214 +844 +761 +] +/Flags 34 +/Ascent 761 +/CapHeight 701 +/Descent -214 +/ItalicAngle 0 +/StemV 138 +/MissingWidth 296 +/XHeight 487 +/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/Z/a/b/c/comma/d/e/emdash/f/g/h/hyphen/i/j/k/l/m/n/o/p/parenleft/parenright/period/q/quotedbl/r/s/slash/space/t/u/v/w/x/y/z) +/FontFile3 30 0 R +>> +endobj +24 0 obj +<< /Type /Encoding +/BaseEncoding /WinAnsiEncoding +/Differences [ 1 +/D +/r +/period +/space +/M +/a +/t +/i +/n +/F +/e +/l +/x +/K +/f +/I +/s +/h +/S +/o +/w +/E +/g +/R +/c +/C +/A +/L +/b +/comma +/U +/v +/y +/Z +/u +/z +/d +/m +/P +/p +/slash +/G +/O +/hyphen +/T +/N +/H +/j +/emdash +/parenleft +/quotedbl +/parenright +/q +/W +/B +/k +/X +/V +] +>> +endobj +25 0 obj +<< /Type /FontDescriptor +/FontName /GSYXPF+f-3-0 +/FontBBox [ -17 +-214 +712 +761 +] +/Flags 32 +/Ascent 761 +/CapHeight 701 +/Descent -214 +/ItalicAngle 0 +/StemV 106 +/MissingWidth 260 +/XHeight 487 +/CharSet (/C/F/K/M/N/V/a/c/colon/e/f/four/h/hyphen/i/k/m/n/nine/o/one/p/period/r/seven/slash/space/t/three/two/v/zero) +/FontFile3 31 0 R +>> +endobj +26 0 obj +<< /Type /Encoding +/BaseEncoding /WinAnsiEncoding +/Differences [ 1 +/C +/V +/space +/M +/a +/r +/t +/i +/n +/F +/period +/K +/f +/h +/p +/colon +/slash +/m +/hyphen +/k +/e +/c +/v +/one +/o +/four +/seven +/N +/two +/zero +/nine +/three +] +>> +endobj +27 0 obj +<< /Type /FontDescriptor +/FontName /VZGDJA+f-0-0 +/FontBBox [ -42 +-214 +905 +768 +] +/Flags 34 +/Ascent 768 +/CapHeight 701 +/Descent -214 +/ItalicAngle 0 +/StemV 100 +/MissingWidth 259 +/XHeight 487 +/CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Z/a/at/b/c/colon/comma/d/dieresis/e/eight/endash/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedbl/quotesingle/r/s/semicolon/seven/six/slash/space/t/three/two/u/udieresis/v/w/x/y/z/zero) +/FontFile3 32 0 R +>> +endobj +28 0 obj +<< /Type /Encoding +/BaseEncoding /WinAnsiEncoding +/Differences [ 1 +/O +/c +/t +/space +/two +/zero +/five +/endash +/D +/e +/nine +/S +/p +/A +/u +/g +/one +/seven +/J +/n +/eight +/l +/M +/a +/y +/b +/o +/r +/four +/F +/i +/h +/comma +/G +/m +/d +/E +/colon +/v +/at +/hyphen +/k +/f +/period +/T +/plus +/parenleft +/parenright +/six +/s +/Z +/udieresis +/w +/z +/C +/I +/U +/L +/P +/slash +/q +/H +/B +/R +/N +/x +/semicolon +/X +/W +/Q +/j +/V +/K +/three +/quotedbl +/quotesingle +] +>> +endobj +29 0 obj +<< /Filter /FlateDecode +/Subtype /Type1C +/Length 2131 +>> +stream +xœmV PW힙~= Ž2ã ¨Ø3 +Lâ—(EDü€« @D‡?ŒòU‚:Êg[À5Š” €Éâ”BÁ F¸þ%Š® ,ÙÂ_¢È˜ÈÖí©g­ûƉ)“JU×T÷{¯oŸsî¹÷MIDMÓ(ÖuŠ«»ùn¢0–DÂ8ñ*¼Ö”cZÆð6bÞFRç`•/‡om¡`č¤Ä4Zð¥Ÿný¦´„¸ø KÌ$͔Y³Ü5¾ëtÑZMȦô mJºfQjŒ.m½.-*C»ÎM£ñMN֛ϧk‚µéÚ´,²¬ËHHא+J“‘µN›•–¤ÑÅj|ãb£4~¿¾ Kýõ`ˆ6%!D›–«™§K^§™9ãÝòo«E9ŒA+åâ±2k‘Ân˜ÃÆÖF5|”d´=²b¥õjåD-§&R!”3µ‚ZI…RSáÔ<êsʏšOùS ¨j +µˆZLM§© ʃZJÑÔ8"%!Ë»¨´/}QĊ´¢&ÑÏâ qª¸Y¢”„IZ$ÿc¢™SÌ òC…è:ëÄF³ÛØéh©tʄÖê,áÓΰ*ùc#íݏUF(Bw:~¼y‹÷÷âð>#N&té[„—-ô9B¨{¢Ü°qiüt^ŠWn… ù¥fÁ¸§Õ‰»Ô`ƒô—vbw²›¾OÆA8㶃¨ÁÞÚ½_«eB=^’+ۄm„ÙS#„ƒÈN1!P¨lÝŠ'¿Ä"?ßíxÄô©ú_¾ãœßLRá`1:t4º‡—‚S¨`8ÈWƒ+‚þž’©6ô"E/0ó¾j¨°ð®ç[ ®J[2käý„|äáo©1zêíÛ!òc¾³S¼ìW Ž¨>bt¨À{}v0Á,FŸo)nWC: g/×$­T†X²›˜¹€ì‡t®¼ô׃ƒ7Ïdyª£"paÞ¤#Å¿3Ùg¹%<ïB¾Î’ÔÙ? +«ªÍ–÷‘Ì]é#™ËC·À IâC—Çfÿæ9Xí:¹“hd nH΂’*ºHHŸP]E0Â@ŽÃ°Bx.”’:Ld– ¬Â>X > ž®Vä6?ÂJ{s7hËÌf·A@•¼Ë¡æÚËíRÕ‘;Û¿J?µ¶“ ª @ƒ-ÈÀ;z§F%nRà"Âþiæ,U~AT6âe{Ùëþþ=˜õ÷ÉÃVŸ~–¶­¤¾Mp¬£ûÉ`-œ;”éyÑɼÔ= \^ì¿×yuoP´¬Qï¼v,Ǝ!Îxþ¤Ï4}‡ÊÊO’õfI‡0Ã4w®˜w2¾QMËö3ÃøgIö|)ö0°O$Ÿ™E> +stream +xœ…W{XTÕÚ_Þ½f@…ùf¥=# Œ( +¢¢‚\T¬AN€e"7o‚—Ž€—Rw|¦©XE¥R;Šå%ñRI––2!T3xI:8駼{|ç<ç¬=hçüó=ÏÀ¬µžµ×þ½¿÷÷þÞ5 +¢t# +…‚†Ž “GAÒ…äç&=ÃeàBÇMG/zr¢§òŸæwoÉ× ö€ù §P,ymëԒÒåe ŠæWMyÍá'†ãóKæ3–—W—“—ä•”•–”åVä2ã/6¦Ëûˍéåe•l5½¤bA¹‘}re¹ùŹe‹Œ%…Æø¢Â\ãÔ'O/(YòdcFîö¯ lA¡qJÉâ|ãøq®uyÙµJ™4Ä}bäÿ 6ù+ÆéÝ<¼BT£uTÓÿ¿¡¾|à°QýF öñ¤Ö†…N0xN +?’®Œ3V 𤒉$€¤‘@2“D‘a$‘ LfÉ$ÃÉ_Hyd‘)d$É&SI(É!ÓÈ(2›$Ñ$‘„‘é$œ$‘dAf±äY2Ž¯\¯|Wù¹ò_üËü›|+õ¢&:‹ÖÓv§ÊR½¦jW«ª÷¹û¸§¸ïv¿è1Ú£Òc‹G«öÓô‹ì·¥_g¿ß<9O?Ïpϱž‹<÷xZ<ïC‹F‚†JȶBÇ/Š­ÒÏÜVý#z²yéÌæQ¬q$ò8€~5ZWGïbÙT#½ÛP) µDÛ¼;laóўèÐÛ`½{ÖÞñ˜!à\W}¹¼ÝB +¦ä­6Pí÷ÃUé\C¥#±J±I:Ém҃…I°"q7ÏÆX +ÿ‚°òÈƁXþP-!­¼F:$Za½æY½­v˜nO²ûhZõAoÁà]0|Çü=ë-CJ+¨ï<t0<ƒüþ$gS{”î<=k~}øè„ê— ÏÑ(åeª}øñÿÕ jƜ¿„bXLëkÌðج8j‡WìlªÑAÀå{#“º1“Bp$†\6A 9¨ÓýPÿ^÷Ža1±«CLÕ¾À«ÔbUœ7ØjNÚtËkfÎ/ª1 ´ÿëNúîúɹPSð˜t ‡âK©8ŸÅ=0 Fv}×´ã}vÖz̬„—¢/ÓÌ2ËÙ,Ú®\¨³Á:Z_ú÷‹¨r¡"ÀoöCTMž›QZc`àõèAoÐJ·¦§€£àë½0+‡a:£ $ +ڇ@EKKûj f¼ ÃìJø‚)ÆJ‰àŽaè;')V¸Kìþè³C¾úÒ[•öS쏆bôŽ?™yçê‘ãûê™ba”²T•ñÒ´çKËõ݁ï„?¼î‰²n³M›ñ6ý)îƒÂf¸Æ£'ÅUxßä óú‚Þ&¥qÛô™?@<+µxþ!ÅXØ#`)ïOC0(‚ØFàRV©K] +…—«—lÆ¬k”#Q©›ÑÓAø¼‚Á«t8(¶0û•fƧüf?ðõ¨LŒX6&:bã†8U}ïĒŠ;¥^W2dTÿ+=Ë1Jru·)Ô:&ËÉPb·œ /èf3Hv–381}Ól‡˜œdjÓ½²¦lCpH>ôûõö‘ó_~»%µÈð€þ8ÿ6Aÿú¢ÇuÆoÙþ\‡^Rx(,6i³0µ1òrœm,©#µñuÎ6›#³œ_˲¤¯yÊ úŠf¸cö~îã-øÑG{ó==Ü7ãZVð°~æ¯à °X¥½‰+ñïr}¦O­êU°éÙéáxp­i*l‰fàIª Ç´-è÷©?¨¯7Ÿß¿MpÙÔD}Ålm9!º8hJdmo; ÀO„)žQXmðµqi“N³8OóàÁNvf÷J‡yô’ÙeŒ-¼pƒµ¤Ø8Éð½®rmIí<öZýðºc€÷÷PPfXP‚¾Kq.¦þ2Ï6mÙÚ,àÛÐ¥kh¸ØѶ3³X.Ö?{P;3n¸ÂúØüVˆH “q>ÎOÇɘŠ)ç1æ0$ð  »1y䗲/…J¶È Ì@˜,CÌ0Ú¼ºÊ8ÆÐ?€c!…€¿ý[詆Ööæ¦ukší*í?¶ÕAMêLTfKø‰ùìzæ!笰ÂÕQr\ÅçîP3 ßËZw2ßfÀIrGùŽží\‹ŠÈÌâ)†i®n²ÐÌ*ìÿÑMº¥X©TNûúÈÞü³±Œ¬þ9H™¢4ͨ¯kG?ß·ÕPO3Å4ÌÌn|{‰¦jxíLuë›þ?žÁ€G¡^×þöC‹e±%1QÕ½…'·›\Q®ë ÷ÿ^n -œ=Äb×åŕö£,í‹ä´¿#Eè²ÞO9(~¦n=yàŠÙRüúáWUÅæéo'3ªtÁ³pÀПò/.~¶¨u‰8Õ7.¹tFLrӞ½ývÚ Vþøh[:û4rÂ~ñâS,SY[î|ñ­8{ÌSɬèAet^Šë>¼öXqk¤8^\0ý¯®ûH×]Œã±éT•b¿£•ƒ0½Üߣ¥fÖÑ ÆÙÌËSo)Œ9OɈb¤S|k®Y›„ÉÂÜ^ÅII͝„¹:IÝëT3%­Að>‚öÜ=Ë+vØúô{¬SÔÂm®ýt(,¬ã™‘: +åSN8<¹ì‡gï?=Ùnö{a„4–yÍú’³?5;±KšÇòûÝËxTS훐†ËØÊ÷OWØ¥ Ã*.õrp)H‡ÆE˜.B†Ù"āñ€úsŠe"fŠ¸ZÄ7D|ÄrõÓÇ`\/·Ãt°q¯™"¬¡N„gqc£z– +4Kÿ†±"拘#b³çÊFÁJÅyðâΏÒ]§ŸÀJùw„¦f»#q;.ÝÁÛ)¼°Å9VT™=lýeäæjO÷7<5„üãWGendstream +endobj +31 0 obj +<< /Filter /FlateDecode +/Subtype /Type1C +/Length 1959 +>> +stream +xœMT TT×½7ï΀dÐß`g&øłò ŠUÁ; ¢(Æe  |Ä°€à'‰E+>1¥&ÄÄ ÄÖmŒñG1@ 6jUœ…À Ž‰QpŠŸž7žiWï vu­·Ö{÷¾{ÎÝgŸ}6G„ã8šâþ'ädy¿×8ßv– ’7/y+þä¯Z­æa°Í҆žãr·î‰ÉËßT“½ºÈ8aU 1tÚ´£)#oe¦1ySaQæúBãÜÜUyùyéE™“ŒFÓºuÆ$÷ùBcRfafA1ÛMÊ+Ê)4²'ÝXTž‘¹>½`­1/ËhÊÎJ7ƼŒÎÉË}y09s}Nrzn¡1"bpã՚bô|ó¡^J_Á[§ð_S«†{h´C†éGŒ2úñ# C I ‹È’H’Éx²„,%³I™C&‘ÉÄLbÉ\2Ä“©d!Q2” #¢%ÉH82‚ø‘‘ä ÆQh²|ÏMà–pÅ\÷£G´G®GÇC^äWòUü-þ¹âWŠ$ÅqÅ·Š[Š~a†°\8@}¨‰Î¡+é5úö«åÕÅrTò6M§²-¾Úó: ¤ÑŸÏƒÎqUŠ{KmøòÒºöÈàå± ¹ú2ªíÏ¥Z.+©•§ÔruÝðÛnö”ˆpåL‚ y€ c1'} +;Ä'_€0ð¸…сÅcƌÝü¸_¯–O”´ÊýÜE;ÔöóòNPˆYyYÙ’ +'.‡0ˆüç!0CÀ£#‘ñ†~ú4ú>¾Ù+p5úâü+¸r:Z<Îò”á’bH­—ǝ̪w—’Ûí«íêÄ5¢Ëiåú¯æޕTàs<àu˜˜òiTjìꫦïg“Ò‚[DmW_½ãÚõoÂÑ+¬Øøk½¶/,FÞ0¨¡—q4æ‡è^–ØW{ÒMл´÷ØÝ'úê^%¥Ä-U±<×A01V¢ª‹ÁÚ»›8k7oÕuƒ¶µà6Ø 5a/UÃÒzyT„nàÀÓÂÃͳâ¶]%» +¤iÒî¦=Í*8º:ÔA¨ÒôŽ€Š©+zТÜq>§_:$}.ýá#•ZNd€ò7pûdËt×)DËùB EËÇÊÞÂ4ª–W•4dœ‚yµ°°Vs¦3Î3øbøCßEÿþÞOhDCnTâN½îýóïZTw*bÞ2Ä+µ ۉ±¥hô›ß˜Üqç\ÓáÏôåt@aJINH[{ôâL);Rîî]u±Ó¼áU™÷Ê)Tá=á1ÅY€ƒ`B)JxY(ƒË‘ P«{R-w¾m¼ì× æ—¾¿#ƒuZŸ#î|Ù×Ó-MÏ4بmE;z¡gÔL ÁÀïP æ3Ç**OèÕΩ_>xƒ³^•7v°K¯Ê.višË%´³—“åÿ&N3zRLqم2ŠËd»À–j§—ôL.ସba‘ÙÊ"k]V¡Ïi6¹ºØѹK˜À`.)©‡Ês@‘¾ÓÁËżÒ÷JÓÒñÙüÔ_ÓSãL4,™€þs?¾ýã¾ÊSz¬†ñHՏVë§q+õ¬×¬Q³ë`f=Þ¬×ÞìâÙ ¯Cý_é…}—íÇ—l«Ö·*7í-¬p3ô~x a]øŠ»Ê—ƒÙ©¸ÁÉäݲ˦½a¸½í“¥‹õØn§Ê‡ §LX>.ó}<01u플¹§¹Ó3ƒuü~»3ßDµ!;a¨¨%=÷¦ÒW‚-î䃙%FGJÂ/WA,€l!‚b ®äinUîʏ6p›åVëRØè4 Ñ“]^ðüHx“Ñ,ýŸ›$º_텗†R:ëÿ eòöIð³^“ÌYz¼egÊۙÍQ!i“×leã6›È•± n³éza6Asƒk„¾rDh¹-¬Ø4É¡itøj/5ê´Äá϶Ðÿ¹ÈUÁg|ú‹7)$=Ùh¸ÝªA¾ÔÀ}cƒý6>fn5ý,DÂdˆJ…éæ ÇHŒ¨ÁYo@°‹ýû`xO%ÎF‰¥ŒŽ×pèv˜ÿØm8Lüj6Â;:yØ¡ëtªçR§f%(o ì·Ô*oàšì°ÌÆ7ëdŸV[¿ø(ý¾ôt¶¬šžþv\äƋ§õa´<¥& ™ó ¹} Ä'‰gì7”+µÎüþÚÉ?àMÍèC™æízQĵB½ƒƒ&&Ö&Ö·8àZ‘“ ‘+\F!>W–Á¿Är¬ÇŒìýƒAr{+wEöäê~¢ðÜ.´º<AòEkë¡®AsÊm‡|VCßð?Ž?;´ ×ÂcðxFÁŒ7hŸ¢&f:z£Ï­X‡ý|Ë¡O åt¶„y8œÙ±¹¨þ;²þ!¶íºsÿz$Æ.NZ`ʾÑÅfm¿ä€£ &ˆ4 ²·øBÚjW¾â¥> +stream +xœ…XiXS×ÖÞÇpvÂ`€ÄŠ’q¬¨ +DDëD‹‚CQ¡"`‹ŽX­Š½ëÐAE©ŠmÅ: ÔjJê€Á«ÖV­ÚuèJ¯ß>AûÝûýùž'ÉÞÏÞõ®w½km8âІpGgôöïí/ÿê&uä¤Nm$oÅ4œõ—wË&^tQˆ.¥Ú­ÖHo»Ã!WHv# +Ž›»ôã¨Ì¬楧͜oè‘ÜÓ`4ú"R2§§Þù {~êœlÃð¹É™ó²2çM›ŸšÒÇ`ˆ˜=Û/_ŸmˆOÍN—Ëvã3ç§gØgšaþ¼i)©s¦ÍË0dÎ0D¤Í˜fˆz}wzæÜ×¾3m.û“:/}†aÀû–¼cß „¼­n74¼cpÛ@Ç°®tý:+»†t×h?<Òk`‡6žA]"œ¸^¡nц!z—˜Þo=b}‡õTù ¢î|œ·2ÀA#Œpîõv_ÿýûøҙŒ&FâKƐ.d, %]I<éFÞ!ÝÉ»¤I =É8òOz‘DIüH‰"½É2”ô!É0җDCH,éG†“@Gú“dy›‘‘$˜Œ"!DM2‰+q#îDC´¤ˆñ$iO:ñ"I'2“8'âCšˆ iK–“Q,māݜMJ9g.ÛÎýÝÆ·Íä6ÇÚ4)Ԋ¾ŠuŠ'½âŠv8œsø›̗ó·i{šBóénúPé««,UÖªºªòTåªÇŽS:>uæ”ádqvwîí<Åy³óg‹‹ŸË—e.[\J]δÚöo;¿í]µ ^ ¾£nvU¸ºžsëç6Þm©Û×n7ÝÝÝt¿ìþRã¢ñ‡-jéԎ\H7ÃÃËÜ&éÅ&+­tÖП1·RÌn‰æýèC…"úò8•ª¥Õ;r¥`S¼EsÓÓ,žÚŠ›H¤·+À»ù’iÔa‰(ë¦[úÌ1¦,ÖRí h£TK[wä¶Dçq¢´U!:4Qˆ‚ï!¿ç›(΁Ãx¨çƒ(úa1öbö±žWKe¢>3Ã"³¦É +ÖÉVOí‹&Aÿóø‚Whé¸OõEJ­T²¡q/8zÃàjTèpµÆ VzúÖò®ØÖ·pŠ>–Æ9üNµ//N +B :}”¢`!嘤v&î¨[°¢@Ÿ*à@úwA>hH@êQ90èQE8—_½a=‰Îè’68å +¸èÔ³TgæN6Áé» +é#P¹ùïLï/ªpð\ Jh¿ނnõñƒõw)8„ßAN‰FŒÆAgp2¤þqrϖ=ìI9˜ S®£“M2Õi,êú›8K°@E-N/}÷–¨Ç +p‡vÐkâCT†§ŽM_ªgl?®QZ°@ÐÖ7ìRwo3ÒQÝò ÔiG¥Þ}©gO͒ÉÌ}! U|á! 5ão¥*¾ÆÖ5,Jl²U1â/·^ÅXßݤ`Œ{P†®ßÂYÈ 7LÖc_™á#:þ:‹pe`2zéÇÑÿƒžñ:ƒ ¥îÈð¾–襶~`¡riYju8#G9©7öÂvGÐo•V•ë‹(΀aÂùÍ@ïÖíGbôI Œ +Íò”q“ÌQb†|šŒëW3nƒXmÆՐ›Ìx‡ªÁÂtÚïǑWyžÚƒ²H“(´;uˆîª91mè¢ cëç_dif•Ð𿏴BÃ?N¢­)·@˜E pTHÝ>q«X®*;´»úØù+·ê.(sÖ§'Š*Ÿø ƒÃ.¾džþûù»ó«sÅ ÞMÊž¿ãã%º‘ÊÏW_ô#Kžâ§ãFíNúŠ%¤¹À _˜aYôsö®QÖ¸´Kò° úá"º¤à½¬aŒª ù ^ྟ ß ×J¿—E”¥¤ jDoƒ8'Uc ÌÕi_kO–|¦RÃm†ßÑÄÏÐWW W-û(GT [~¼TG¡ ÛAeÌTañV<§ :úëöíEë¶3¾‘Sg†Ê†°QùMJ‰òc(Rûª?[Ä0tɦÉGaðièoÒ|g½£YÀ¹pÙã'¸CÏ-y€=Ð#9rôÝuºþàgå7ÄâáÅÅãÖå‹ãÅùù«‰Š*í!Øe*‚NL´Þùáä®-Lõ…Ð[ãW,É̛<1sª¨š™ñEEýËí'ôÿØçkÞgp?Ãûü/÷B14òþWáO|!ü$8¦•ÀMR8sö + <0žo ë äòFŠ<D²Ÿà‡¹ü3„)y\²™vdŒÆؖё±+ †NU‚7¸¦€'zœñNz3xŒvx¸›ê¾òõ÷›Ó;¨ûrpªbÂé%š[ø׈ÁjF±…·§VƵA +T@[L.Qø°%@Nm;›“L¸^rb+ˆ³e18ƒÿñæ õ +ÉëŒðþ²ô5Œ<ì7´÷¯|ýðöÅõõôzÚMÔ¢w¼ú␁àwäˏ7íÕ©[ŠHkoqM—¤üK Ç%é9cnŠí9ƒ}IÏù"ÛóK-Ѩ¢˜hk”ߟ(5òèHeø&ø·IS +ñ:Ôxj›J=à¡ 73Ӏµð7_5ñ¯dÎ÷ª•¸ÉG[©ÓTX! b!Üñ°0·ÃŠBº¤lNUÃíøºc;½ö8ö:Ö”×U—mf5€i`žnRåP 1IXÀ2 çYNâŸÒ\ฦZ0ײj%+‹à ÍÊ?i‰Ž°ÝdJ7ùîrÎ L°ÔÔlâŽY!Ѫ:œrV-X>Ž½×;¼¯èwÃ×»”Ïn jÇøcgÚÔº9°~ÓC³°aß®êË¢êçc3Zméu?«mRÀ Ö“ŽÁˆ„¨‰‹I8a"ÆbFÃ0Aà/ÜwB띺Â"uËÁ0Öãô9nºV[6±²á€0+"Ì!‚ÁۄޕôâŽ#u{v®X¹Mwž9鼏Ójç‘aúá¡ñ7™Gç0:o†õöŽ”ÝZ癰µ¿T²÷EcQ‚ûËÉLÏ<Q;húäžú`{;J1A/f€r;z›ÇR7)Kˆ¡Úú°Båò½3Ïd¯s’“£E§èî eg÷mÖÓ ÜHt›ô庺håÖÕå‹k™{{›¯@G=«½%³¯^©/E."4Ûæ?¿*›&kž;u M +éw%v^VXT±û‡";¼apj’Áޕ˜th„'ŒÁ]ŒÁno츻³î¨ŸÇŠÏA÷z³ÈjŸÀÿïü7dÇ*cì3Ã;{KZÙ;w…¾wLÜѽ Û[i2Œ]x}ÙI¿/;)/n½¾_7 ˆ “t.óZMo=Ñ•=s{ëÙ0+í]š5ך1Rܶ;>Õú€› %ÍÍ­ó•]EåM°‚©h¹ä'$ìµO<¯ºxòÛºÚsóW”èn(³×'|:œ¥@ë7;7¥^LӟO7eTÏÃ:„˜½wÃB]¨rÛG5Êü @O@à¿V®gHpº‰y ¥¾9L†"7 f\iЌ¹±‹—¯]·T7Z¹aÍFñQõû­ïêµþ›[òʀ€f¹Ú™½òfŒÌóŒ¬ ñ`4ÛüâÀøO3‚Å2çvÂ?a8?á)¾ Û ÒøÊƸÉ|¡(ÓÍ*§Å-«³Â>V‡Åö®”DÃÄÎ̞¬¯9òРڄŸõŎBâ[£h œ¾ÃÁ)Ð)k m,ØFjϴѦçGÁ§ÊB‰Šð4ŽjeÊLgÑüxïÕ« äê+rµ€0!Jº @¡kè‡Ø¦¤-ÛvîûITùq&ÿI“êµ/ÂÞ¯*Õ÷£S¾é@ï›ÙÑÄaL3z²ƒÇ15þBUë+ö™`ºIsÁ + ']ð?…'»Ø\ë ÓJ׶ÎÖß¡‡ÓŸ²Z>ûb$†‰þ0Vžhêk¡-qͨ™8mV.;ñlAµÐPQ}ãVÙø~óF„N9{“ӖV¯¼`á̒£¨Ç- ++¥þ¢Í1Ž([¡l0ÁB“¦Òg…ÙÖá Ìv!©oœ5;Ÿ•OÝ(³ûø»æox= ;Ëôë‡Ä”q|¡®P©ýcÒÒ¨™¨ðÒþšïB[«AÊ.—ÿ`ùùpò ¡ÉÓFe:¯Óþ± ֊£×&FôO›nì;»ª–Á|!eB†ÆtÿÕ«²òŠÄ‹÷Cì߬ +j¥LfPÕt+d°ñN»‚1þQbßhaºÌ¨¦Üwrí” ÝrÐ y†&âÃs_²¤$—uevû ôeí{È<è‹cÈ‡F  r•àZì»ý;å“×:æÝW¿ºxïæ‘1ƒBÞfL¯”Íi‹øö<рŠ•çTPI.Bk…jwزÞët…lûeNì²&p@Wá'ú dóT;uìÞ\9Õ÷™ÿˆ›Å{õ¿âUC)úþåË]ªWÀÇ=…î'DH!T„AkaüïÇTJž.âG‹8j-~±Éª77¶^ñ5ú +0¼L„%"Œaôøc«ÞS>I1AÄPöYƒã{LT©ÿZˆ*îVJB98žäý î7aÄuÈ?ªh©ø—°¨ ‹?F±ö4 ½À•µçá鰔±éÓ1¶eT.\X¼uWùýgôÌ÷§9 K?Ï© +;`{6UŒBŸÞç&\½úmÅö­úuï¯}ÏÂÊØÀ´ß†Âìp:àSp*û;†a'(`3»êùö½m:¸ +žÃ‚LJwΚ=.¿B—也“«ü…Ž0‰×åÿæœç`›«60ëO‡¤ó˜‰ì†I£Øñ—q.g‡«z¦¨bi©±§¥Û>%ÕÜՔ4ßnf(‘jäÆ}7€å†¾þ­.`-¬sŠ¡{1… ŸØ‚E¥ÉÉâ¬srÞ°ÄőÿŠÞ!úendstream +endobj +xref +0 33 +0000000000 65535 f +0000000107 00000 n +0000000156 00000 n +0000027482 00000 n +0000060335 00000 n +0000090778 00000 n +0000101601 00000 n +0000000234 00000 n +0000027461 00000 n +0000101911 00000 n +0000101956 00000 n +0000135869 00000 n +0000136133 00000 n +0000136517 00000 n +0000136797 00000 n +0000027829 00000 n +0000060313 00000 n +0000060656 00000 n +0000090756 00000 n +0000091099 00000 n +0000101579 00000 n +0000137254 00000 n +0000137551 00000 n +0000137727 00000 n +0000138131 00000 n +0000138444 00000 n +0000138788 00000 n +0000139015 00000 n +0000139528 00000 n +0000139959 00000 n +0000142180 00000 n +0000145516 00000 n +0000147565 00000 n +trailer +<< /Size 33 /Root 1 0 R +/Info << /Title (CV Martin F. Krafft) /CreationDate (D:20091107145214+0100) /ModDate (D:20091107145214+0100) /Producer (pdftopdf) /Trapped /False >> +>> +startxref +152113 +%%EOF diff --git a/ie-note.rst b/ie-note.rst new file mode 100644 index 0000000..6acd3ce --- /dev/null +++ b/ie-note.rst @@ -0,0 +1,22 @@ +.. ie-note.en.rst +.. restructured text source for the note about IE's lack of support +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. + +.. class:: ie-note screen-only + +Notice: you are using Microsoft Internet Explorer, or a text-based browser (in +which case you can ignore this note). Internet Explorer does not properly +support the `XHTML`_ and `CSS`_ standards used to render this page the way it +is supposed to look. The information is still all there, but for a better +result, please consider the `Opera`_ and `Firefox`_ browsers instead. `Read +more...` + +.. _Opera: http://www.opera.com/ +.. _Firefox: http://www.mozilla.org/products/firefox/ +.. _Read more...: http://www.windowsitpro.com/windowspaulthurrott/Article/ArticleID/47208/windowspaulthurrott_47208.html diff --git a/links.rst b/links.rst new file mode 100644 index 0000000..8c89547 --- /dev/null +++ b/links.rst @@ -0,0 +1,104 @@ +.. links.rst +.. common reST links for curriculum vitae files +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. +.. + +.. _Irish Software Engineering Research Centre: http://lero.ie/ +.. _CSIS: http://www.csis.ul.ie/ +.. _University of Limerick: http://www.ul.ie/ +.. _Artificial Intelligence Lab: http://ailab.ch/ +.. _Department of Informatics: http://www.ifi.unizh.ch/IFIE.html +.. _Institut für Informatik: http://www.ifi.unizh.ch/ +.. _University of Zurich: http://www.unizh.ch/index.en.html +.. _Universität Zürich: http://www.unizh.ch/ +.. _Swarthmore College: http://www.swarthmore.edu/ +.. _Munich International School: http://www.mis-munich.de/home/set.html +.. _Otto-von-Taube Gymnasium Gauting: http://www.ovtg.de/ +.. _Neuronics AG: http://www.neuronics.ch/en/ +.. _Experts Exchange, LLC: http://www.experts-exchange.com/ +.. _AERAsec GmbH: http://www.aerasec.com/ +.. _Andreae-Noris-Zahn AG: http://www.anzag.de/ +.. _Open Source Press: http://www.opensourcepress.de/ +.. _Ubuntu project: http://ubuntulinux.org/ +.. _Plone Foundation: http://plone.org/foundation/ +.. _Zope Corporation: http://www.zope.com/ +.. _VBC Embrach: http://www.vbce.net/ +.. _Debian project: http://debian.org/ +.. _TSV Pentenried: http://www.tsv-pentenried.de/ + +.. _docutils: http://docutils.sourceforge.net/ + +.. _Debian: http://debian.org/ +.. _debian.ch: http://debian.ch/ +.. _DebConf: http://debconf.org/ +.. _The Debian System: http://debiansystem.info/ +.. _GNU: http://gnu.org/ +.. _Linux: http://kernel.org/ +.. _FAI: http://www.informatik.uni-koeln.de/fai/ +.. _NetBSD: http://netbsd.org/ +.. _Solaris: http://solaris.com/ +.. _Mac OS X: http://www.apple.com/macosx/ +.. _MS Windows: http://www.microsoft.com/windows/ + +.. _postfix: http://postfix.org/ +.. _Apache2: http://httpd.apache.org/ +.. _Zope: http://zope.org/ +.. _Plone: http://plone.org/ +.. _PostgreSQL: http://postgres.org/ +.. _djbdns: http://cr.yp.to/djbdns.html +.. _Mailman: http://list.org/ +.. _BIND: http://www.isc.org/sw/bind/ +.. _OpenLDAP: http://www.openldap.org/ +.. _squid: http://squid-cache.org/ +.. _snort: http://snort.org/ +.. _nessus: http://nessus.org/ +.. _Linux QoS: http://lartc.org/ +.. _iproute2: http://developer.osdl.org/dev/iproute2/ +.. _netfilter: http://netfilter.org/ +.. _tcpdump: http://tcpdump.org/ +.. _Puppet: http://reductivelabs.com/trac/puppet +.. _Cisco IOS: http://www.cisco.com/univercd/cc/td/doc/product/software/ +.. _VPN-1: http://www.checkpoint.com/products/vpn-1_pro/ +.. _Firewall-1: http://www.checkpoint.com/products/firewall-1/ + +.. _Boost: http://boost.org/ +.. _Python: http://python.org/ +.. _XML: http://www.w3.org/XML/ +.. _XHTML: http://www.w3.org/MarkUp/ +.. _CSS: http://www.w3.org/Style/CSS/ +.. _Perl: http://perl.org/ +.. _doxygen: http://doxygen.org/ +.. _gdb: http://www.gnu.org/software/gdb/gdb.html +.. _GNU arch: http://www.gnu.org/software/gnu-arch/ +.. _baz: http://bazaar.canonical.com/ +.. _bzr: http://bazaar-ng.org/ +.. _git: http://www.kernel.org/pub/software/scm/git/ +.. _SVN: http://subversion.org/ +.. _CVS: http://www.nongnu.org/cvs + +.. _vim: http://vim.org/ +.. _LaTeX: http://www.latex-project.org/ +.. _OpenOffice.org: http://openoffice.org/ +.. _Gimp: http://gimp.org/ +.. _Inkscape: http://www.inkscape.org/ +.. _dia: http://www.gnome.org/projects/dia/ +.. _Maple: http://www.maplesoft.com/products/maple/ +.. _MatLab: http://www.mathworks.com/products/matlab/ +.. _Opnet: http://http://www.opnet.com/products/modeler/ + +.. _Khepera: http://www.k-team.com/robots/khepera/ + +.. _LPIC: http://lpi.org/en/lpic.html +.. _Linux Professional Institute: http://lpi.org/ + +.. _Check Point: http://www.checkpoint.com/ +.. _Certified Security Administrator: http://www.checkpoint.com/services/education/certification/ccsa_ngx/ +.. _CCSA: http://www.checkpoint.com/services/education/certification/ccsa_ngx/ +.. _Certified Security Engineer: http://www.checkpoint.com/services/education/certification/ccse_ngx/ +.. _CCSE: http://www.checkpoint.com/services/education/certification/ccse_ngx/ diff --git a/portrait.png b/portrait.png new file mode 100644 index 0000000..dd723a6 Binary files /dev/null and b/portrait.png differ diff --git a/ref-frueh_neuronics_1999.rst b/ref-frueh_neuronics_1999.rst new file mode 100644 index 0000000..33c3645 --- /dev/null +++ b/ref-frueh_neuronics_1999.rst @@ -0,0 +1,44 @@ +=============================================================================== + Letter of reference +=============================================================================== +by Dr. Hansruedi Früh, 17 December 1999 +------------------------------------------------------------------------------- + +(translated from German by myself) + +Mr. Martin F. Krafft, born on 14 February 1979, resident at +Waldpromenade 36a in 82131 Gauting/München, Germany, worked for our company as +an intern in development and customer support between 16 August 1999 and 17 +December 1999. + +Mr. Krafft performed the following tasks: + +* Development and improvement of our software product *NNetView for Windows*, + a graphical development and experimentation environment for the simulation + of neural networks. +* Representation of our company on fairs and exhibitions. +* Development of a Software Development Kit (SDK) for the programmatic control + of up to 63 robots via radio links or cable, in cooperation with the author + of the communication protocol. The SDK was developed in ANSI C++ for + Windows and Unix/Linux systems. +* Introduction of customers and demonstration of the software *NNetView*, as + well as our robotic platform *Samurai*. +* Maintenance and installation of several computers at our offices. +* Miscellaneous organisational activities. + +These tasks were completed by Mr. Krafft with efficiency, resourcefulness, +enthusiam, and interest. His extensive experience with software development, +computers, and neural networks, in combination with his keen perception made +Mr. Krafft be a valuable and dependable asset for our company. + +His friendliness and readiness to cooperate with others was very well received +with his colleagues. + +We thank Mr. Krafft for his commitment to out company and would welcome him +back at any time. + +.. class:: signature + +signed Dr. Hansruedi Früh +Chief Executive Officer +Neuronics, Inc. diff --git a/ref-pfeifer_ailab_1999.rst b/ref-pfeifer_ailab_1999.rst new file mode 100644 index 0000000..4ae189d --- /dev/null +++ b/ref-pfeifer_ailab_1999.rst @@ -0,0 +1,37 @@ +=============================================================================== + Letter of reference +=============================================================================== +by Prof. Dr. Rolf Pfeifer, 20 December 1999 +------------------------------------------------------------------------------- + +(translated from German by myself) + +Mr. Martin F. Krafft, born on 14 February 1979, currently living at +Waldpromenade 36a in 82131 Gauting/München, Germany, joined our lab as intern +and staff member between 16 August 1999 and 17 December 1999. + +Mr. Krafft took part in projects and experiments within our institute. His +ambition and his knowledge of artificial intelligence, neural networks, and +robotics made him a dependable and resourceful worker. + +He assisted lectures and lab sessions by answering students' questions +objectively and intelligibly, and by helping them putting theoretical +experiments to work in the real world. Of special remark were his didactic +abilites, his friendliness, and his patience. + +Within the institute, Mr. Krafft followed the research of others with +interest, and contributed scientific talks to the community. He was a pleasant +and open-minded partner in discussions, and never had a problem articulating +his position in a comprehensible fashion. + +Towards his colleagues, he was always polite and suave. His humour and his +natural character were well received. + +We thank Mr. Krafft for his commitment in our institute, and would welcome him +back at any point in time. + +.. class:: signature + +signed Prof. Dr. Rolf Pfeifer +Full professor of computer science +Director of the Artificial Intelligence Laboratory diff --git a/ref-wolff-intact-1999.rst b/ref-wolff-intact-1999.rst new file mode 100644 index 0000000..90ab7b7 --- /dev/null +++ b/ref-wolff-intact-1999.rst @@ -0,0 +1,40 @@ +=============================================================================== + Letter of reference +=============================================================================== +by Michael Wolff, 21 October 1999 +------------------------------------------------------------------------------- + +(translated from German by myself) + +Mr. Martin F. Krafft, born on 14 February 1979, was an intern in our company +between 17 May and 16 July 1999. + +His well-founded knowledge of computers and data processing made it possible +for us to place him in position at one of our major clients from the start. +There, his tasks ranged from user support to the planning, development, and +deployment of the unattended migration of all company PCs to WinNT 4.0. This +minimised our expenditure of time and thus cost. + +Mr. Krafft also assisted with general administration tasks of our NT network +and helped with the design of a MS Access database. + +For another client, he developed an ASP script for the processing of forms for +the client's web site. + +Mr. Krafft quickly familiarised himself with the tasks laid upon him, and +completed them to our fullest satisfaction, without exception. He possesses +a keen perception and good manners. His work was of very high quality +throughout, and his commitment exceeded the normal bounds. Organisational +tasks he completed promptly, and with great care. + +The above reflects the feedback we received from out clients, who have always +appraised his work. + +The employment contract ends due to the continuation of Mr. Krafft's studies. +We wish him success therewith, and all the best for his future. + +.. class:: signature + +signed Michael Wolff +Team leader +INTACT Computer Service GmbH diff --git a/ref.css b/ref.css new file mode 100644 index 0000000..7198f9d --- /dev/null +++ b/ref.css @@ -0,0 +1,48 @@ +/* ref.css + * CSS file for (translated) references + * + * This file is copyright © 2005 martin f. krafft . + * You may use this file for your own curriculum vitae + * under the terms of the Artistic License 2.0, provided that you change all + * personal data. The attribution has to appear only inside a comment, though + * a brief note and link would be appreciated, if the CV is served as a web + * page. You can use the screen-only class for this. + */ + +@import url(cv.css); + +@media print { + .document { + width: 35em; + } +} + +.title, .subtitle, p { + margin-left: 0; + padding-left: 0; +} + +.title { + font-size: 140%; + margin-bottom: 1em; +} + +.subtitle { + margin-bottom: 1em; +} + +p { + text-align: justify; +} + +ul { + list-style-type: disc; + padding-left: 0; + margin-left: 2em; +} + +.signature { + white-space: pre; + line-height: normal; + margin-left: 17em; +} diff --git a/references/.svn/entries b/references/.svn/entries new file mode 100644 index 0000000..2f307dc --- /dev/null +++ b/references/.svn/entries @@ -0,0 +1,301 @@ +10 + +dir +606 +svn+ssh://svn.madduck.net/srv/svn/svn.madduck.net/pub/cv/references +svn+ssh://svn.madduck.net/srv/svn/svn.madduck.net + + + +2006-09-01T19:08:20.802387Z +266 +madduck + + + + + + + + + + + + + + +d3a7e407-1618-0410-b472-f1f387cadc13 + +20-ifi-courses.pdf +file + + + + +2006-09-01T19:08:00.000000Z +98d97fa40345632ee28387e420d65765 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +01-igcse.pdf +file + + + + +2006-09-01T19:08:01.000000Z +88b8c92e18893788e5353e5bbcbfccd8 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +05-class98.pdf +file + + + + +2006-09-01T19:08:00.000000Z +7ae5e095291af0dc80d793e5eb7fe459 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +11-newhall.pdf +file + + + + +2006-09-01T19:08:01.000000Z +b007d45dfd034e377770e84356d2a8a8 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +06-class99.pdf +file + + + + +2006-09-01T19:08:01.000000Z +1fa9a9179cb602a510e4cd8d3f2acafa +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +12-friedler.pdf +file + + + + +2006-09-01T19:08:02.000000Z +35abffcb0bd58c4ba433d00912e46fd0 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +13-meeden.pdf +file + + + + +2006-09-01T19:08:02.000000Z +db54397aa1d7fe4fe858b6dda4e34881 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +09-ifi99.pdf +file + + + + +2006-09-01T19:08:02.000000Z +3d405a405dad799109e62352358b2293 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +04-anzag.pdf +file + + + + +2006-09-01T19:08:02.000000Z +b26a6465386da3be43e63eaacae089e6 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +03-alevel-sciences.pdf +file + + + + +2006-09-01T19:08:02.000000Z +125a8c2cc2df5c8cb539a6d2c27e369c +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +15-swat-diploma.pdf +file + + + + +2006-09-01T19:08:02.000000Z +cb2fee9bf0f0e00d209279ef054c1bb9 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +14-swat-transcript.pdf +file + + + + +2006-09-01T19:08:02.000000Z +3afc55a1bd31440be8bc7e0de35fd026 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +17-aerasec.pdf +file + + + + +2006-09-01T19:08:02.000000Z +f27d955dfe115d4f98d35d62a414be51 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +08-neuronics.pdf +file + + + + +2006-09-01T19:08:02.000000Z +793c73d8faa73824cdaff94ddd8bcb5e +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +16-ccsa.pdf +file + + + + +2006-09-01T19:08:02.000000Z +388dfad40aab9e4f1d4991404cd97ee9 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +10-mcp.pdf +file + + + + +2006-09-01T19:08:02.000000Z +49f3058c415c4373d4be86e2b7910ad6 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +02-alevel-german.pdf +file + + + + +2006-09-01T19:08:03.000000Z +2bf2529d4760acd56644e516056b4a9c +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +18-lpic1.pdf +file + + + + +2006-09-01T19:08:03.000000Z +68b87ac48e335927eae74a834413369c +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +21-pfeifer.pdf +file + + + + +2006-09-01T19:08:03.000000Z +03ec6463609c9d2206f97bc58ae955fc +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +19-ifi-grades.pdf +file + + + + +2006-09-01T19:08:03.000000Z +3829bfee0f5dc65abf0b6f28dd666574 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + +07-intact.pdf +file + + + + +2006-09-01T19:08:03.000000Z +fc575f99225a4ee6c5da409e1497b3c8 +2006-09-01T19:08:20.802387Z +266 +madduck +has-props + diff --git a/references/.svn/prop-base/01-igcse.pdf.svn-base b/references/.svn/prop-base/01-igcse.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/01-igcse.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/02-alevel-german.pdf.svn-base b/references/.svn/prop-base/02-alevel-german.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/02-alevel-german.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/03-alevel-sciences.pdf.svn-base b/references/.svn/prop-base/03-alevel-sciences.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/03-alevel-sciences.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/04-anzag.pdf.svn-base b/references/.svn/prop-base/04-anzag.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/04-anzag.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/05-class98.pdf.svn-base b/references/.svn/prop-base/05-class98.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/05-class98.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/06-class99.pdf.svn-base b/references/.svn/prop-base/06-class99.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/06-class99.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/07-intact.pdf.svn-base b/references/.svn/prop-base/07-intact.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/07-intact.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/08-neuronics.pdf.svn-base b/references/.svn/prop-base/08-neuronics.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/08-neuronics.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/09-ifi99.pdf.svn-base b/references/.svn/prop-base/09-ifi99.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/09-ifi99.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/10-mcp.pdf.svn-base b/references/.svn/prop-base/10-mcp.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/10-mcp.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/11-newhall.pdf.svn-base b/references/.svn/prop-base/11-newhall.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/11-newhall.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/12-friedler.pdf.svn-base b/references/.svn/prop-base/12-friedler.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/12-friedler.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/13-meeden.pdf.svn-base b/references/.svn/prop-base/13-meeden.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/13-meeden.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/14-swat-transcript.pdf.svn-base b/references/.svn/prop-base/14-swat-transcript.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/14-swat-transcript.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/15-swat-diploma.pdf.svn-base b/references/.svn/prop-base/15-swat-diploma.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/15-swat-diploma.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/16-ccsa.pdf.svn-base b/references/.svn/prop-base/16-ccsa.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/16-ccsa.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/17-aerasec.pdf.svn-base b/references/.svn/prop-base/17-aerasec.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/17-aerasec.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/18-lpic1.pdf.svn-base b/references/.svn/prop-base/18-lpic1.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/18-lpic1.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/19-ifi-grades.pdf.svn-base b/references/.svn/prop-base/19-ifi-grades.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/19-ifi-grades.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/20-ifi-courses.pdf.svn-base b/references/.svn/prop-base/20-ifi-courses.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/20-ifi-courses.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/prop-base/21-pfeifer.pdf.svn-base b/references/.svn/prop-base/21-pfeifer.pdf.svn-base new file mode 100644 index 0000000..5e9587e --- /dev/null +++ b/references/.svn/prop-base/21-pfeifer.pdf.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/references/.svn/text-base/01-igcse.pdf.svn-base b/references/.svn/text-base/01-igcse.pdf.svn-base new file mode 100644 index 0000000..aabc7eb Binary files /dev/null and b/references/.svn/text-base/01-igcse.pdf.svn-base differ diff --git a/references/.svn/text-base/02-alevel-german.pdf.svn-base b/references/.svn/text-base/02-alevel-german.pdf.svn-base new file mode 100644 index 0000000..5f77d61 Binary files /dev/null and b/references/.svn/text-base/02-alevel-german.pdf.svn-base differ diff --git a/references/.svn/text-base/03-alevel-sciences.pdf.svn-base b/references/.svn/text-base/03-alevel-sciences.pdf.svn-base new file mode 100644 index 0000000..94696ed Binary files /dev/null and b/references/.svn/text-base/03-alevel-sciences.pdf.svn-base differ diff --git a/references/.svn/text-base/04-anzag.pdf.svn-base b/references/.svn/text-base/04-anzag.pdf.svn-base new file mode 100644 index 0000000..3d240b4 Binary files /dev/null and b/references/.svn/text-base/04-anzag.pdf.svn-base differ diff --git a/references/.svn/text-base/05-class98.pdf.svn-base b/references/.svn/text-base/05-class98.pdf.svn-base new file mode 100644 index 0000000..4824a1d Binary files /dev/null and b/references/.svn/text-base/05-class98.pdf.svn-base differ diff --git a/references/.svn/text-base/06-class99.pdf.svn-base b/references/.svn/text-base/06-class99.pdf.svn-base new file mode 100644 index 0000000..db8d03d Binary files /dev/null and b/references/.svn/text-base/06-class99.pdf.svn-base differ diff --git a/references/.svn/text-base/07-intact.pdf.svn-base b/references/.svn/text-base/07-intact.pdf.svn-base new file mode 100644 index 0000000..214a8b8 Binary files /dev/null and b/references/.svn/text-base/07-intact.pdf.svn-base differ diff --git a/references/.svn/text-base/08-neuronics.pdf.svn-base b/references/.svn/text-base/08-neuronics.pdf.svn-base new file mode 100644 index 0000000..c20939f Binary files /dev/null and b/references/.svn/text-base/08-neuronics.pdf.svn-base differ diff --git a/references/.svn/text-base/09-ifi99.pdf.svn-base b/references/.svn/text-base/09-ifi99.pdf.svn-base new file mode 100644 index 0000000..014e5ee Binary files /dev/null and b/references/.svn/text-base/09-ifi99.pdf.svn-base differ diff --git a/references/.svn/text-base/10-mcp.pdf.svn-base b/references/.svn/text-base/10-mcp.pdf.svn-base new file mode 100644 index 0000000..c8e24f3 Binary files /dev/null and b/references/.svn/text-base/10-mcp.pdf.svn-base differ diff --git a/references/.svn/text-base/11-newhall.pdf.svn-base b/references/.svn/text-base/11-newhall.pdf.svn-base new file mode 100644 index 0000000..89a28a5 Binary files /dev/null and b/references/.svn/text-base/11-newhall.pdf.svn-base differ diff --git a/references/.svn/text-base/12-friedler.pdf.svn-base b/references/.svn/text-base/12-friedler.pdf.svn-base new file mode 100644 index 0000000..3257856 Binary files /dev/null and b/references/.svn/text-base/12-friedler.pdf.svn-base differ diff --git a/references/.svn/text-base/13-meeden.pdf.svn-base b/references/.svn/text-base/13-meeden.pdf.svn-base new file mode 100644 index 0000000..64fd8d3 Binary files /dev/null and b/references/.svn/text-base/13-meeden.pdf.svn-base differ diff --git a/references/.svn/text-base/14-swat-transcript.pdf.svn-base b/references/.svn/text-base/14-swat-transcript.pdf.svn-base new file mode 100644 index 0000000..eabf418 Binary files /dev/null and b/references/.svn/text-base/14-swat-transcript.pdf.svn-base differ diff --git a/references/.svn/text-base/15-swat-diploma.pdf.svn-base b/references/.svn/text-base/15-swat-diploma.pdf.svn-base new file mode 100644 index 0000000..77f1c3c Binary files /dev/null and b/references/.svn/text-base/15-swat-diploma.pdf.svn-base differ diff --git a/references/.svn/text-base/16-ccsa.pdf.svn-base b/references/.svn/text-base/16-ccsa.pdf.svn-base new file mode 100644 index 0000000..2c52660 Binary files /dev/null and b/references/.svn/text-base/16-ccsa.pdf.svn-base differ diff --git a/references/.svn/text-base/17-aerasec.pdf.svn-base b/references/.svn/text-base/17-aerasec.pdf.svn-base new file mode 100644 index 0000000..f6bdf60 Binary files /dev/null and b/references/.svn/text-base/17-aerasec.pdf.svn-base differ diff --git a/references/.svn/text-base/18-lpic1.pdf.svn-base b/references/.svn/text-base/18-lpic1.pdf.svn-base new file mode 100644 index 0000000..2694e2f Binary files /dev/null and b/references/.svn/text-base/18-lpic1.pdf.svn-base differ diff --git a/references/.svn/text-base/19-ifi-grades.pdf.svn-base b/references/.svn/text-base/19-ifi-grades.pdf.svn-base new file mode 100644 index 0000000..7d5ab29 Binary files /dev/null and b/references/.svn/text-base/19-ifi-grades.pdf.svn-base differ diff --git a/references/.svn/text-base/20-ifi-courses.pdf.svn-base b/references/.svn/text-base/20-ifi-courses.pdf.svn-base new file mode 100644 index 0000000..3222d3d Binary files /dev/null and b/references/.svn/text-base/20-ifi-courses.pdf.svn-base differ diff --git a/references/.svn/text-base/21-pfeifer.pdf.svn-base b/references/.svn/text-base/21-pfeifer.pdf.svn-base new file mode 100644 index 0000000..b5a613e Binary files /dev/null and b/references/.svn/text-base/21-pfeifer.pdf.svn-base differ diff --git a/references/01-igcse.pdf b/references/01-igcse.pdf new file mode 100644 index 0000000..aabc7eb Binary files /dev/null and b/references/01-igcse.pdf differ diff --git a/references/02-alevel-german.pdf b/references/02-alevel-german.pdf new file mode 100644 index 0000000..5f77d61 Binary files /dev/null and b/references/02-alevel-german.pdf differ diff --git a/references/03-alevel-sciences.pdf b/references/03-alevel-sciences.pdf new file mode 100644 index 0000000..94696ed Binary files /dev/null and b/references/03-alevel-sciences.pdf differ diff --git a/references/04-anzag.pdf b/references/04-anzag.pdf new file mode 100644 index 0000000..3d240b4 Binary files /dev/null and b/references/04-anzag.pdf differ diff --git a/references/05-class98.pdf b/references/05-class98.pdf new file mode 100644 index 0000000..4824a1d Binary files /dev/null and b/references/05-class98.pdf differ diff --git a/references/06-class99.pdf b/references/06-class99.pdf new file mode 100644 index 0000000..db8d03d Binary files /dev/null and b/references/06-class99.pdf differ diff --git a/references/07-intact.pdf b/references/07-intact.pdf new file mode 100644 index 0000000..214a8b8 Binary files /dev/null and b/references/07-intact.pdf differ diff --git a/references/08-neuronics.pdf b/references/08-neuronics.pdf new file mode 100644 index 0000000..c20939f Binary files /dev/null and b/references/08-neuronics.pdf differ diff --git a/references/09-ifi99.pdf b/references/09-ifi99.pdf new file mode 100644 index 0000000..014e5ee Binary files /dev/null and b/references/09-ifi99.pdf differ diff --git a/references/10-mcp.pdf b/references/10-mcp.pdf new file mode 100644 index 0000000..c8e24f3 Binary files /dev/null and b/references/10-mcp.pdf differ diff --git a/references/11-newhall.pdf b/references/11-newhall.pdf new file mode 100644 index 0000000..89a28a5 Binary files /dev/null and b/references/11-newhall.pdf differ diff --git a/references/12-friedler.pdf b/references/12-friedler.pdf new file mode 100644 index 0000000..3257856 Binary files /dev/null and b/references/12-friedler.pdf differ diff --git a/references/13-meeden.pdf b/references/13-meeden.pdf new file mode 100644 index 0000000..64fd8d3 Binary files /dev/null and b/references/13-meeden.pdf differ diff --git a/references/14-swat-transcript.pdf b/references/14-swat-transcript.pdf new file mode 100644 index 0000000..eabf418 Binary files /dev/null and b/references/14-swat-transcript.pdf differ diff --git a/references/15-swat-diploma.pdf b/references/15-swat-diploma.pdf new file mode 100644 index 0000000..77f1c3c Binary files /dev/null and b/references/15-swat-diploma.pdf differ diff --git a/references/16-ccsa.pdf b/references/16-ccsa.pdf new file mode 100644 index 0000000..2c52660 Binary files /dev/null and b/references/16-ccsa.pdf differ diff --git a/references/17-aerasec.pdf b/references/17-aerasec.pdf new file mode 100644 index 0000000..f6bdf60 Binary files /dev/null and b/references/17-aerasec.pdf differ diff --git a/references/18-lpic1.pdf b/references/18-lpic1.pdf new file mode 100644 index 0000000..2694e2f Binary files /dev/null and b/references/18-lpic1.pdf differ diff --git a/references/19-ifi-grades.pdf b/references/19-ifi-grades.pdf new file mode 100644 index 0000000..7d5ab29 Binary files /dev/null and b/references/19-ifi-grades.pdf differ diff --git a/references/20-ifi-courses.pdf b/references/20-ifi-courses.pdf new file mode 100644 index 0000000..3222d3d Binary files /dev/null and b/references/20-ifi-courses.pdf differ diff --git a/references/21-pfeifer.pdf b/references/21-pfeifer.pdf new file mode 100644 index 0000000..b5a613e Binary files /dev/null and b/references/21-pfeifer.pdf differ diff --git a/refs.css b/refs.css new file mode 100644 index 0000000..b5f75fd --- /dev/null +++ b/refs.css @@ -0,0 +1,23 @@ +/* refs.css + * CSS file for my CV's list of references. + * + * This file is copyright © 2005 martin f. krafft . + * You may use this file for your own curriculum vitae + * under the terms of the Artistic License 2.0, provided that you change all + * personal data. The attribution has to appear only inside a comment, though + * a brief note and link would be appreciated, if the CV is served as a web + * page. You can use the screen-only class for this. + */ + +@import url(cv.css); + +h1.title { + margin-bottom: 0; +} + +h2.subtitle { + border: none; + font-size: 140%; + margin: 0 0 1em 0; + border: none; +} diff --git a/refs.en.rst b/refs.en.rst new file mode 100644 index 0000000..c76e071 --- /dev/null +++ b/refs.en.rst @@ -0,0 +1,170 @@ +.. refs.en.rst +.. restructured text source for my English CV references +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. +.. + +=============================================================================== + List of References +=============================================================================== +Martin F. Krafft +------------------------------------------------------------------------------- + +.. include:: ie-note.rst + +.. class:: screen-only + +This list of references corresponds to my `curriculum vitae`_. |nl| +References can be mailed upon request. + +.. _curriculum vitae: cv.en.html + +.. class:: screen-only + +You may prefer the `PDF version`_. + +.. _PDF version: refs_martin-f-krafft.en.pdf + +.. class:: screen-only + +External links are `currently broken`_. I apologise for the inconvenience. + +.. _currently broken: + http://docutils.sourceforge.net/BUGS.html#hyperlink-references-in-substitutions + +------------------------------------------------------------------------------- +Education +------------------------------------------------------------------------------- + +#. `Prof. Dr. Brian Fitzgerald`_ (thesis advisor) |nl| + Vice president research, |UL| + +.. _Prof. Dr. Brian Fitzgerald: mailto: bf@ul.ie + +#. Letter of reference, `Prof. Dr. Rolf Pfeifer`_ |nl| + |AILab|, |UniZH| + +#. Transcript of completed courses |nl| + |IFI|, |UniZH| + +#. High Honors Bachelor of Arts Diploma |nl| + |Swarthmore College| + +#. Grade transcript |nl| + |Swarthmore College| + +#. Letter of reference, `Prof. Lisa Meeden`_ (advisor) |nl| + Dept. of Computer Science, |Swarthmore College| + +#. A-Level diploma in mathematics, physics, and chemistry |nl| + (University of London) |nl| + |MIS| + +#. A-Level diploma German |nl| + (Oxford/Cambridge Examination Council) |nl| + |MIS| + +#. IGCSE diploma |nl| + (University of Cambridge) |nl| + |MIS| + +.. _Prof. Lisa Meeden: mailto:meeden@cs.swarthmore.edu + +------------------------------------------------------------------------------- +Internships +------------------------------------------------------------------------------- + +10. Letter of reference, `Prof. Dr. Rolf Pfeifer`_ |nl| + |AILab|, |UniZH| + +.. #. Letter of reference, `Dr. Hansruedi Früh`_ |nl| + |Neuronics| + +.. #. Letter of reference, Michael Wolff |nl| + |Intact| + +.. #. Letter of reference, Heike Hoffmann |nl| + |Class| + +.. #. Letter of reference, Heike Hoffmann |nl| + |Class| + +.. _Prof. Dr. Rolf Pfeifer: mailto:pfeifer@ailab.ch +.. _Dr. Hansruedi Früh: mailto:frueh@neuronics.ch + +.. ------------------------------------------------------------------------------- +.. Professional work +.. ------------------------------------------------------------------------------- + +.. 15. Letter of reference, `Dr. Matthias Leu`_ |nl| + |AERAsec| + +.. _Dr. Matthias Leu: mailto:mleu@aerasec.de + +.. References by clients can be obtained on request. + +.. ------------------------------------------------------------------------------- +.. Student work +.. ------------------------------------------------------------------------------- + +.. 16. Letter of reference, `Prof. Tia Newhall`_ |nl| + Dept. of Computer Science, |Swarthmore College| + +.. #. Letter of reference, `Sorelle Friedler`_ |nl| + Student, class of 2003, |Swarthmore College| + +.. #. Letter of reference, H. Stelzig |nl| + |ANZAG| + +.. _Prof. Tia Newhall: newhall@cs.swarthmore.edu +.. _Sorelle Friedler: mailto:sorelle@sccs.swarthmore.edu + +.. ------------------------------------------------------------------------------- +.. Certifications +.. ------------------------------------------------------------------------------- +.. +.. All certifications are available upon request. +.. +.. ------------------------------------------------------------------------------- +.. Publications +.. ------------------------------------------------------------------------------- +.. +.. All publications are available upon request. + +.. class:: refs + +Further references are available on request. + +.. class:: online-notes screen-only + +This list of references is officially available from +http://martin-krafft.net/cv/refs.html . |nl| +The document was generated with `docutils`_ from `this source`_, +`this Makefile`_, and formatted using `this CSS definition`_. |nl| +The printed document is designed to look different from the on-screen +version. The printed version looks best if produced with the `Opera browser`_. +Preferred fonts: `Rotis Sans Serif 55`_, `Rotis Sans Serif 65 Bold`_, +`Rotis Semi Serif 65 Bold`_. |nl| + +.. _Opera browser: http://www.opera.com +.. _Rotis Sans Serif 55: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-55.htm +.. _Rotis Sans Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-65-bold.htm +.. _Rotis Semi Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-semi-serif-65-bold.htm +.. _this source: refs.en.rst +.. _this Makefile: Makefile +.. _this CSS definition: refs.css + +.. include:: copyright.en.rst + +.. include:: colophon.en.rst + +.. include:: subst.en.rst +.. include:: links.rst +.. include:: syms.rst + +.. vim:tw=80 diff --git a/refs.html.en b/refs.html.en new file mode 120000 index 0000000..fabcc78 --- /dev/null +++ b/refs.html.en @@ -0,0 +1 @@ +refs.en.html \ No newline at end of file diff --git a/refs_martin-f-krafft.en.pdf b/refs_martin-f-krafft.en.pdf new file mode 100644 index 0000000..7451e90 Binary files /dev/null and b/refs_martin-f-krafft.en.pdf differ diff --git a/subst.en.rst b/subst.en.rst new file mode 100644 index 0000000..c0e99dd --- /dev/null +++ b/subst.en.rst @@ -0,0 +1,40 @@ +.. subst.en.rst +.. common reST substitutions for English curriculum vitae files +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. +.. + +.. |Lero| replace:: `Irish Software Engineering Research Centre`_ +.. |CSIS| replace:: `CSIS`_ +.. |UL| replace:: `University of Limerick`_, Ireland +.. |AILab| replace:: `Artificial Intelligence Lab`_ +.. |IFI| replace:: `Department of Informatics`_ +.. |UniZH| replace:: `University of Zurich`_, Switzerland +.. |Swarthmore College| replace:: `Swarthmore College`_, Philadelphia, PA, USA +.. |MIS| replace:: `Munich International School`_, Percha/Starnberg, Germany +.. |OvTG| replace:: `Otto-von-Taube Gymnasium Gauting`_, Germany +.. |Neuronics| replace:: `Neuronics AG`_, Zurich, Switzerland +.. |Grundschule Gauting| replace:: Grundschule Gauting, Germany +.. |Intact| replace:: Intact GmbH, Class Group, Starnberg, Germany +.. |Class| replace:: Class GmbH, Class Group, Starnberg, Germany +.. |AERAsec| replace:: `AERAsec GmbH`_, Hohenbrunn, Germany +.. |Experts Exchange| replace:: `Experts Exchange, LLC`_, Paso Robles, CA, USA +.. |ANZAG| replace:: `Andreae-Noris-Zahn AG`_, Munich, Germany +.. |Open Source Press| replace:: `Open Source Press`_, Munich, Germany +.. |Ubuntu project| replace:: The `Ubuntu project`_ +.. |Ubuntu OS| replace:: Ubuntu operating system +.. |Plone Foundation| replace:: `Plone Foundation`_, Houston, TX, USA +.. |Plone CMS| replace:: `Plone`_ content management system +.. |Zope Corporation| replace:: `Zope Corporation`_, Fredericksburg, VA, USA +.. |Zope server| replace:: `Zope`_ application server +.. |VBCE| replace:: `VBC Embrach`_, Switzerland +.. |Debian project| replace:: The `Debian project`_ +.. |debian.ch| replace:: `debian.ch`_ +.. |DebConf| replace:: `DebConf`_ +.. |Debian OS| replace:: Debian GNU/Linux operating system +.. |TSV Pentenried| replace:: `TSV Pentenried`_, Germany diff --git a/syms.rst b/syms.rst new file mode 100644 index 0000000..a8a2f19 --- /dev/null +++ b/syms.rst @@ -0,0 +1,27 @@ +.. syms.rst +.. common reST symbols for curriculum vitae files +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. +.. + +.. |--| unicode:: U+2013 + +.. |---| unicode:: U+2014 + :trim: + +.. |nl| raw:: html + +
+ +.. |x| raw:: html + + x + +.. |copyright| replace:: copyright |(c)| + +.. |(c)| unicode:: U+00A9 diff --git a/tech-profile.css b/tech-profile.css new file mode 100644 index 0000000..47f560e --- /dev/null +++ b/tech-profile.css @@ -0,0 +1,83 @@ +/* tech-profile.css + * CSS file for my CV's tech profile + * + * This file is copyright © 2005 martin f. krafft . + * You may use this file for your own curriculum vitae + * under the terms of the Artistic License 2.0, provided that you change all + * personal data. The attribution has to appear only inside a comment, though + * a brief note and link would be appreciated, if the CV is served as a web + * page. You can use the screen-only class for this. + */ + +@import url(cv.css); + +h1, h2, p, table { + margin-left: 0; + padding-left: 0; +} + +h1, h2 { + text-align: center; +} + +.title { + margin-bottom: 0; +} + +h2 { + background: transparent; + font-size: 140%; + margin: 0 0 1em 0; + border: none; +} + +table { + width: 100%; + page-break-inside: avoid; + border-spacing: 0; + empty-cells: show; +} + +table, th, td { + border: none; +} + +@media screen { + thead tr { + background: #ddd; + } +} + +@media print { + th { + border-bottom: 2px solid #ddd; + } +} + +th { + text-align: left; + font-family: "RotisSemiSerif", "Bitstream Vera Serif", "Times New Roman", Times, serif; +} + +td { + border-bottom: 1px solid #ddd; +} + +@media print { + td { + font-size: smaller; + } +} + +.online-notes { + padding-left: 0; +} + +a.reference[href="http://debiansystem.info"] { + font-style: italic; +} + +span.level, span.check { + display: block; + text-align: center; +} diff --git a/tech-profile.en.rst b/tech-profile.en.rst new file mode 100644 index 0000000..1557c6c --- /dev/null +++ b/tech-profile.en.rst @@ -0,0 +1,190 @@ +.. tech-profile.en.rst +.. restructured text source for my English CV's technical profile +.. +.. This file is copyright © 2005-7 martin f. krafft . +.. You may use this file for your own curriculum vitae +.. under the terms of the Artistic License 2.0, provided that you change all +.. personal data. The attribution has to appear only inside a comment, though +.. a brief note and link would be appreciated, if the CV is served as a web +.. page. You can use the screen-only class for this. +.. + +=============================================================================== + Technical Profile +=============================================================================== +Martin F. Krafft +------------------------------------------------------------------------------- + +.. include:: ie-note.rst + +.. class:: screen-only + +This technical profile corresponds to my `curriculum vitae`_. + +.. _curriculum vitae: cv.en.html + +.. class:: screen-only + +You may prefer the `PDF version`_. + +.. _PDF version: techprofile_martin-f-krafft.en.pdf + +.. class:: screen-only + +External links are `currently broken`_. I apologise for the inconvenience. + +.. _currently broken: + http://docutils.sourceforge.net/BUGS.html#hyperlink-references-in-substitutions + +==================== ======= ======= ======= ================================== +Operating systems |Adv| |Pro| |Bas| Notes +==================== ======= ======= ======= ================================== +`Debian`_ |x| Active developer |nl| + author of the book + `The Debian System`_ +`GNU`_/`Linux`_ |x| `LPIC`_-1 +`FAI`_ |x| +`NetBSD`_ |x| +`Solaris`_ |x| +`Mac OS X`_ |x| +`MS Windows`_ NT 4.0 |x| MCSE (SQL7, TCP/IP) +`MS Windows`_ 2000 |x| +`MS Windows`_ XP |x| +`MS Windows`_ Vista will not touch +Mac OS 9.x |x| +==================== ======= ======= ======= ================================== + +==================== ======= ======= ======= ================================== +Administration |Adv| |Pro| |Bas| Notes +==================== ======= ======= ======= ================================== +`postfix`_ |x| +`Apache2`_ |x| +`Zope`_ |x| Active developer +`Plone`_ |x| Active developer +`PostgreSQL`_ |x| +`djbdns`_ |x| +`Mailman`_ |x| +`BIND`_ |x| +`OpenLDAP`_ |x| +`squid`_ |x| +`snort`_ |x| +`nessus`_ |x| +`Linux QoS`_ |x| +`iproute2`_ |x| +`netfilter`_ |x| +`tcpdump`_ |x| +`Puppet`_ |x| +`Cisco IOS`_ |x| +`VPN-1`_ |x| `CCSA`_/`CCSE`_ +`Firewall-1`_ |x| `CCSA`_/`CCSE`_ +==================== ======= ======= ======= ================================== + +==================== ======= ======= ======= ================================== +Programming & design |Adv| |Pro| |Bas| Notes +==================== ======= ======= ======= ================================== +C++ |x| +`Boost`_ |x| +`Python`_ |x| +C |x| +sh |x| +awk |x| +SQL |x| +`XML`_ |x| +`XHTML`_ |x| +`CSS`_ |x| +VHDL |x| +`Perl`_ |x| +`doxygen`_ |x| +`gdb`_ |x| +`bzr`_ |x| +`git`_ |x| +`SVN`_ |x| +`CVS`_ |x| +Design patterns |x| +Policy-driven design |x| +|TDD| |x| +Agile development |x| +==================== ======= ======= ======= ================================== + +.. |TDD| replace:: Test-driven development + +==================== ======= ======= ======= ================================== +Protocols & concepts |Adv| |Pro| |Bas| Notes +==================== ======= ======= ======= ================================== +Diffie-Hellman |x| +RSA |x| +AES |x| +Serpent |x| +ElGamal |x| +DSA |x| +Blowfish |x| +IKE |x| +TCP/IP |x| +IPv6 |x| +IPsec/VPN |x| +PPP |x| +PPPoE |x| +802.X |x| +WPA |x| +ATM |x| +FDDI |x| +Serial interfaces |x| +Protocol design |x| +Multithreading |x| +Event-driven design |x| +==================== ======= ======= ======= ================================== + +==================== ======= ======= ======= ================================== +Applications |Adv| |Pro| |Bas| Notes +==================== ======= ======= ======= ================================== +`vim`_ |x| +`LaTeX`_ |x| +`OpenOffice.org`_ |x| +`Gimp`_ |x| +`Inkscape`_ |x| +`dia`_ |x| +`Maple`_ |x| +`MatLab`_ |x| +`Opnet`_ |x| +==================== ======= ======= ======= ================================== + +.. |Adv| raw:: html + + Advanced + +.. |Pro| raw:: html + + Proficient + +.. |Bas| raw:: html + + Basic + +.. class:: online-notes screen-only + +This technical profile is officially available from +http://martin-krafft.net/cv/tech-profile.html . |nl| +The document was generated with `docutils`_ from `this source`_, +`this Makefile`_, and formatted using `this CSS definition`_. |nl| +The printed document is designed to look different from the on-screen +version. The printed version looks best if produced with the `Opera browser`_. +Preferred fonts: `Rotis Sans Serif 55`_, `Rotis Sans Serif 65 Bold`_, +`Rotis Semi Serif 65 Bold`_. |nl| + +.. _Opera browser: http://www.opera.com +.. _Rotis Sans Serif 55: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-55.htm +.. _Rotis Sans Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-sans-serif-65-bold.htm +.. _Rotis Semi Serif 65 Bold: http://www.searchfreefonts.com/font/agfa-rotis-semi-serif-65-bold.htm +.. _this source: tech-profile.en.rst +.. _this Makefile: Makefile +.. _this CSS definition: tech-profile.css + +.. include:: copyright.en.rst + +.. include:: colophon.en.rst + +.. include:: subst.en.rst +.. include:: links.rst +.. include:: syms.rst + +.. vim:tw=80 diff --git a/tech-profile.html.en b/tech-profile.html.en new file mode 120000 index 0000000..f69c65c --- /dev/null +++ b/tech-profile.html.en @@ -0,0 +1 @@ +tech-profile.en.html \ No newline at end of file diff --git a/techprofile_martin-f-krafft.en.pdf b/techprofile_martin-f-krafft.en.pdf new file mode 100644 index 0000000..2c91a09 Binary files /dev/null and b/techprofile_martin-f-krafft.en.pdf differ