summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/songs
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/songs
Initial commit
Diffstat (limited to 'macros/latex/contrib/songs')
-rw-r--r--macros/latex/contrib/songs/Makefile23
-rw-r--r--macros/latex/contrib/songs/README109
-rw-r--r--macros/latex/contrib/songs/history.txt415
-rw-r--r--macros/latex/contrib/songs/license.txt340
-rw-r--r--macros/latex/contrib/songs/sample/Makefile31
-rw-r--r--macros/latex/contrib/songs/sample/chordbook.tex54
-rw-r--r--macros/latex/contrib/songs/sample/lyricbook.tex54
-rw-r--r--macros/latex/contrib/songs/sample/slidebook.tex85
-rw-r--r--macros/latex/contrib/songs/sample/songs.sbd1098
-rw-r--r--macros/latex/contrib/songs/sample/transparencies.tex66
-rw-r--r--macros/latex/contrib/songs/songidx/bible.can200
-rw-r--r--macros/latex/contrib/songs/songidx/catholic.can174
-rw-r--r--macros/latex/contrib/songs/songidx/greek.can187
-rw-r--r--macros/latex/contrib/songs/songidx/protestant.can160
-rw-r--r--macros/latex/contrib/songs/songidx/songidx.lua1073
-rw-r--r--macros/latex/contrib/songs/songidx/tanakh.can100
-rw-r--r--macros/latex/contrib/songs/songs.dtx12455
-rw-r--r--macros/latex/contrib/songs/songs.ins61
-rw-r--r--macros/latex/contrib/songs/songs.pdf28725
19 files changed, 45410 insertions, 0 deletions
diff --git a/macros/latex/contrib/songs/Makefile b/macros/latex/contrib/songs/Makefile
new file mode 100644
index 0000000000..73feef03fd
--- /dev/null
+++ b/macros/latex/contrib/songs/Makefile
@@ -0,0 +1,23 @@
+LATEX = pdflatex
+TEXOUT = pdf
+MAKEINDEX = makeindex
+
+all: songs.sty songs.$(TEXOUT)
+
+songs.sty: songs.ins songs.dtx
+ $(LATEX) $<
+
+songs.$(TEXOUT): songs.dtx songs.sty
+ $(LATEX) $<
+ $(MAKEINDEX) -s gind.ist -o $(join $(basename $@ $@),.ind .idx)
+ $(MAKEINDEX) -s gglo.ist -o $(join $(basename $@ $@),.gls .glo)
+ $(LATEX) $<
+ $(MAKEINDEX) -s gind.ist -o $(join $(basename $@ $@),.ind .idx)
+ $(MAKEINDEX) -s gglo.ist -o $(join $(basename $@ $@),.gls .glo)
+ $(LATEX) $<
+
+clean:
+ -rm songs.$(TEXOUT) songs.sty
+ -rm *.aux *.log *.out
+ -rm *.ind *.idx *.gls *.glo *.ilg
+
diff --git a/macros/latex/contrib/songs/README b/macros/latex/contrib/songs/README
new file mode 100644
index 0000000000..a9116c19a7
--- /dev/null
+++ b/macros/latex/contrib/songs/README
@@ -0,0 +1,109 @@
+------------------------------------------------------------------------------
+ Songs LaTeX Package Documentation
+------------------------------------------------------------------------------
+
+Table Of Contents:
+ I. Overview
+ II. Copyright Notice
+ III. Manifest
+ IV. Installation Instructions
+ V. Help & Support
+
+
+I. Overview
+
+The Songs package is for producing songbooks containing lyrics and chords
+(but not sheet music). Each songs document can produce a lyric-only songbook
+for singers, a chorded songbook for musicians, a set of overhead
+transparencies, or a set of digital projector slides, all from a single master
+document. It can also automatically generate partial songbooks consisting of
+only some songs from the master document in a specified order. Facilities for
+automatic transposition and creation of guitar tablature diagrams are also
+included.
+
+
+II. Copyright Notice
+
+The Songs LaTeX Package is copyright (C) 2018 Kevin W. Hamlen.
+
+It is free software; you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software Foundation;
+either version 2 of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
+Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+III. Manifest
+
+This software consists of three main components:
+
+1. The LaTeX2e "Songs" style package for creating songbooks, with source
+consisting of:
+ songs.dtx (self-documenting source code)
+ songs.ins (installer script for docstrip)
+ Makefile (makefile for generating songs.sty and songs.pdf)
+
+2. The songidx index-generation script:
+ songidx/songidx.lua (Lua source file)
+ songidx/*.can (text data files used by songidx at runtime)
+
+(Please note that the "makeindex" program that comes standard with LaTeX
+is NOT a suitable replacement for songidx.)
+
+3. A sample chord book, lyric book, slide book, and transparency book:
+ sample/songs.sbd (song data for all four books)
+ sample/chordbook.tex (chord book LaTeX source)
+ sample/lyricbook.tex (lyric book LaTeX source)
+ sample/slidebook.tex (slide book LaTeX source)
+ sample/transparencies.tex (transparencies LaTeX source)
+ sample/Makefile (GNU makefile for generating all four books)
+
+
+IV. Installation Instructions
+
+1. The songs/Makefile file generates the songs package (songs.sty) and its
+documentation (songs.pdf). If pdflatex and makeindex are both in your path,
+you should be able to invoke Make to generate both:
+
+ cd songs
+ gmake
+
+Otherwise you will need to first edit the top three lines of the Makefile
+to indicate where pdflatex and makeindex are located on your system. If you
+wish to use latex instead of pdflatex you must also change the "TEXOUT"
+line to "TEXOUT = dvi".
+
+If desired, copy the resulting songs.sty file to the appropriate place in
+your LaTeX tree (usually /usr/local/share/texmf/tex/latex/songs).
+
+ mkdir /usr/local/share/texmf/tex/latex/songs
+ cp songs.sty /usr/local/share/texmf/tex/latex/songs
+
+2. The sample books can be compiled using the files in songs/sample. If
+pdflatex is in your path, you should be able to invoke GNU Make to generate
+all of them (note that GNU-compatible version of Make is REQUIRED):
+
+ cd ../sample
+ gmake
+
+Otherwise you will need to first edit the top line of the Makefile to
+indicate where pdflatex is located on your system. If you wish to use
+latex instead of pdflatex you must also change the "TEXOUT" line to
+"TEXOUT = dvi".
+
+
+V. Help & Support
+
+The songs.pdf file contains documentation precompiled from the songs.dtx
+source code. For more support, including example songbooks, songbook
+editing tools, and self-installing executables for Windows, please refer
+to the Songs package homepage at:
+
+ http://songs.sourceforge.net
+
diff --git a/macros/latex/contrib/songs/history.txt b/macros/latex/contrib/songs/history.txt
new file mode 100644
index 0000000000..648ba73926
--- /dev/null
+++ b/macros/latex/contrib/songs/history.txt
@@ -0,0 +1,415 @@
+Songs LaTeX Package Revision History:
+
+Version 3.1 [2018/09/12]: Sixth CTAN Release
+
+ * Fixed a bug that broke \titleprefixword, \authsepword, \authbyword, and \authignoreword family of macros.
+
+ * New support for drawing barre chords in \gtab
+
+ * Macros now permitted within \gtab strings and fingering arguments.
+
+ * PDF mode now correctly detected on XeTeX.
+
+Version 3.0 [2017/06/05]: Fifth CTAN Release
+
+ * Transitioned the songidx program to LuaTeX, eliminating the need for C-compiled programs. This significant change to the install process warrants the transition to a new major version number.
+
+ * The sbdchk program is being retired, since I don't think anyone is using it and it relies on LaTeX hyphenation algorithms that aren't well suited to the task of chord placement. If anyone wants it back, let me know and I'll consider porting it to Lua.
+
+ * Corrected a longstanding, elusive bug in the page-builder that occasionally inserted unwanted vertical space between songs.
+
+ * Corrected a bug in the indexer that sometimes incorrectly sorted entries that are strict prefixes of other entries (e.g., entry "Smith" now always precedes entry "Smith, John").
+
+ * Fixed a bug in the chord replaying logic that failed to apply transposition and note renaming to replayed chords within chord-over-ligature macros.
+
+ * Added support for lyric fonts with no hyphen character (usually for non-hyphenated languages).
+
+Version 2.18 [2015/08/18]:
+
+ * Added \echofont for customizing the font of echo parts.
+
+ * Added \meterfont for customizing the font of meter numbers, and fixed a bug that italicized meter numbers within italicized lyric sections. Also added a tiny vertical space between meter numbers and meter bars for improved readability.
+
+ * Bug fix: Customizing \versefont and \chorusfont no longer nullifies custom line spacing via \baselineadj.
+
+ * \includeonlysongs may now specify repeated songs without throwing errors. (Note that this can result in duplicate index entries, however.)
+
+ * Fixed a bug in songidx that caused an infinite loop when the system's locale (conflictingly) classifies certain characters as "digits", but doesn't recognize those same characters as constituting numbers.
+
+ * Documentation improvements (color, reorganization, and clarifications)
+
+ * Experimental: Index sorting now optionally uses ICU collation instead of locale to sort international texts, affording users many new sorting options. (Separate installation of the ICU library is required.) Note: ICU support does not yet include ICU-based "bucketing" (grouping of index entries into alphabetic subsections, as in title indexes). Such support is expected to appear in a future release.
+
+ * Better support for small LaTeX environments with missing packages
+
+ * Compliance with new 2015/01/01 LaTeX release (e-TeX extended registers available by default on newer installations without explicit loading of e-TeX style package).
+
+ * Windows installer now installs native 64-bit songidx and sbdchk programs on 64-bit systems.
+
+Version 2.17 [2013/07/10]:
+
+ * Fixed a major error in the page-builder (introduced in v2.16 by the fix to \sclearpage) which caused the last page of many songs environments to be dropped. The fix required a significant overhaul of the page-building algorithm, so is given its own release.
+
+ * Fixed a returning bug that caused the first lines of numbered, centered verses to be slightly off-center.
+
+Version 2.16 [2013/07/02]:
+
+ * \pagepreludes now sets \songpos to 0, since otherwise songs could become separated from their preludes.
+
+ * Fixed a bug introduced in v2.15 that caused errors when a song title began with a multinational character encoded by the inputenc package.
+
+ * Fixed a bug introduced in v2.14 that broke the \authsepword, \authbyword, and \authignoreword macros (again).
+
+ * Fixed a bug that caused \sclearpage (and macros that call it) to sometimes output a blank page. The same bug also caused the \songpos algorithm to occasionally miss the best song placement.
+
+ * Added extra error-checking for macro name-clashes with other packages.
+
+Version 2.15 [2013/02/02]:
+
+ * New page format: In non-slides mode, activating \pagepreludes typesets each song on a fresh page with title spanning the entire page width, but with the rest of the song typeset in multiple columns below the title.
+
+ * New \songtarget and \songlink macros elaborate the nopdfindex option with finer control over PDF bookmark indexes and hyperlinks. The \ifpdfindex conditional has been retired.
+
+ * Some index-sorting problems related to the inputenc package have been resolved. (For even better sorting of international alphabets, use a LaTeX version with native Unicode support, such as XeTeX, instead of inputenc.)
+
+ * The author indexer now treats everything except spaces, commas, and semicolons not enclosed in braces as parts of words. This helps to support unusual band names that contain punctuation or numbers.
+
+ * Setting \idxheadwidth to 0pt now suppresses the letter divisions in large indexes entirely.
+
+ * Fixed a bug that caused the author indexer to recognize only the last \authignoreword.
+
+ * Fixed a bug in the title indexer that incorrectly indexed titles beginning with numbers.
+
+ * Updated the Unix installer to bring it into compliance with Gnu autoconf 2.69 standards. See the README file for new (easier) install instructions.
+
+Version 2.14 [2012/03/17]: Fourth CTAN Release
+
+ * Corrected a bug introduced in version 2.13 that broke \titleprefixword, \authsepword, \authbyword, and \authignoreword. (Turns out this fix contained another bug that left the last three of these macros unfixed until v2.16. See v2.16 notes above.)
+
+ * Corrected a bug that caused misformatted multiline index entries in single-column indexes.
+
+Version 2.13 [2011/08/08]:
+
+ * New \clineparams macro allows better customization of the vertical space between chords and lyrics.
+
+ * New \afterpreludeskip and \beforepostludeskip skip registers allow customization of the vertical space above and below song bodies.
+
+ * New \gtabtrans macro allows the user to customize what happens when a \gtab macro is supposed to be auto-transposed. (By default, the chord name is transposed and the tablature diagram is omitted.)
+
+ * Note name conversion is now applied by default to chord names in \gtab macros (even when there is no auto-transposition).
+
+ * New \notrans macro allows transposition to be suppressed within a chord name without suppressing note name conversion (via \notenamesin and \notenamesout).
+
+ * New \sepindexesfalse macro disables automatic page breaks at the end of indexes, and makes every index n-column (where n is specified in the optional argument to \showindex) instead of converting short indexes to centered, single-columns. This allows the user to put many small indexes on a single page if desired.
+
+ * Declaring a large number of song indexes no longer causes TeX to exceed the write-register limit.
+
+ * Fixed a bug that caused errors when certain fragile macros appeared in \songmark, \versemark, or \chorusmark definitions.
+
+ * Fixed a bug that erased numerators from meter bars that began the first lines of numbered verses.
+
+ * Fixed a bug that inadvertently swapped the meanings of \begin{verse} and \begin{verse*}.
+
+ * Windows installer now supports 64-bit MiKTeX installations.
+
+Version 2.12 [2011/01/09]:
+
+ * The argument to \beginscripture and the sr={} key of \beginsong now support multi-byte unicode input characters. Surrounding any text in these arguments with braces suppresses any reformatting that would otherwise be applied to that text.
+
+ * All macro pairs of the form \beginX...\endX now have an equivalent environment definition of the form \begin{X}...\end{X}. This fixes some compatibility problems with other packages.
+
+ * Fixed a bug that caused one-word author names to be preceded by a comma in the author index.
+
+Version 2.11 [2010/06/09]:
+
+ * New intersong environment typesets column-width or page-width displays between songs in a songs environment.
+
+ * New songgroup environment allows scripture quotations or other intersong displays to be included with a nearby song when using \includeonlysongs to generate a partial book.
+
+ * Tablature diagrams can now have any number of strings and from 1 to 9 rows of frets.
+
+ * Colors of textual notes, song number boxes, and index section boxes are now independently configurable by redefining \notebgcolor, \snumbgcolor, and \idxbgcolor.
+
+ * New \sclearpage and \scleardpage macros shift to the next blank page or the next even-numbered blank page, respectively.
+
+ * Songs environments and indexes are no longer followed by a forced \cleardoublepage. Documents can use \cleardoublepage explicitly if this behavior is desired.
+
+ * \includeonlysongs now works even when the page-builder is disabled.
+
+ * New "--locale" option for songidx and sbdchk overrides the environment default locale setting.
+
+ * Added extra grouping levels for verses, choruses, textual notes, and most other constructs to help users avoid color "bleeding" errors when using the color package.
+
+Version 2.10 [2010/01/01]:
+
+ * The size of accidentals (sharps and flats) is now relative to the current font size instead of being relative to the document default font size.
+
+ * New \sharpsymbol and \flatsymbol macros can be redefined to change the font symbols used for accidentals.
+
+ * Fixed a bug that forced single column mode whenever \songcols was used within a songs environment.
+
+ * Fixed a bug in which \songpos{1} caused empty pages to be inserted between some songs when used in one-sided documents.
+
+ * Fixed a bug that caused lines in numbered verses to be slightly off-center in slides mode.
+
+ * The current system locale setting is now consulted when alphabetizing song titles that contain non-English letters. Change the system locale before running songidx to alphabetize according to the conventions of another language.
+
+ * Some missing Vim icon files were re-included into the Unix distribution.
+
+Version 2.9 [2009/08/02]:
+
+ * Song numbering can now be disabled with \nosongnumbers.
+
+ * New \nolyrics macro puts chords on the baseline instead of raised, to better typeset instrumental solos and intros.
+
+ * \brk can be used between songs to force column breaks without introducing the extra vertical space that \nextcol puts at the bottom of the column.
+
+ * \begin...only and \begin...never family of macros have been made obsolete. Eliminate them from existing documents by replacing \beginXonly with \ifX, replace \beginXnever with \ifX\else, and replace both \endXonly and \endXnever with \fi.
+
+ * \colminheight (which could not be perfectly supported by LaTeX's page-breaking algorithm) has been eliminated in favor of \colbotglue and \lastcolglue.
+
+ * An external page-making package (e.g., multicol) can now be used in place of the songs-provided one by setting the number of columns to zero (with \songcolumns{0}).
+
+ * The song-positioning algorithm, which moves songs to fresh columns or pages to avoid column-breaks, page-breaks, and page-turns within songs, can now be tuned or disabled with \songpos.
+
+ * \interlinepenalty now controls the penalties inserted between consecutive lines of each verse and chorus.
+
+ * The rest of the penalty system has been recalibrated in accordance with the above changes. The \interlinepenalty now defaults to 1000 and \vvpenalty and friends now default to 200. \spenalty defaults to 100.
+
+ * Fixed a compatibility issue with Babel that caused \gtab to malfunction when French was the active language
+
+ * Fixed a bug that caused overthick division bars between songs when \sbarheight was set larger than 1pt
+
+ * Fixed a bug that caused the song-positioning algorithm to underestimate the size of songs containing auto-repeated choruses.
+
+ * Re-fixed a returning bug that caused spurious hyphenation when an \echo part ended with a chord longer than its lyric.
+
+Version 2.8 [2009/03/14]:
+
+ * \songnumstyle and \versenumstyle replaced with \thesongnum and \theversenum macros (for compatibility with standard LaTeX counters)
+
+ * \label's within a song or numbered verse can now be used to create automatic references to the song's or the verse's number.
+
+ * Using \showindex with \includeonlysongs now yields a partial index instead of a full index.
+
+ * New \indexsongsas macro can customize indexes to print page numbers instead of song numbers.
+
+ * Index fonts now customizable with \idxheadfont, \idxtitlefont, \idxlyricfont, \idxscripfont, \idxauthfont, and \idxrefsfont.
+
+ * Formatting of scripture index book names is now customizable with \idxbook.
+
+ * \showindex now takes an optional argument to specify the number of columns.
+
+ * Index typesetting logic improved to handle index entries whose left-hand-sides exceed the width of the column
+
+Version 2.7 [2009/01/08]: Third CTAN release
+
+ * Constructions like "\[A]\[B]\[C]lyric" now typeset the same as "\[A B C]lyric", but the chords in the sequence can be replayed separately (e.g., with "^^^lyric").
+
+ * Added support for begin- and end-repeat signs (\lrep and \rrep).
+
+ * Column and page breaks can now be inserted into partial song lists created with \includeonlysongs.
+
+ * Fixed a bug that caused sharp symbols to be doubled within echo parts on eTeX.
+
+Version 2.6 [2008/04/02]:
+
+ * \newchords and \replay macros added, optional argument added to \memorize
+
+ * new "Quick Chords" mode for Vim users to make chord-entry a snap
+
+ * Windows uninstaller reworked to avoid deleting files modified since installation
+
+ * Last pages of multicolumn indexes are now vertically balanced.
+
+ * Fixed a bug that occasionally produced empty pages when \topskip was non-zero
+
+ * Fixed a bug that produced duplicate verse numbers when the first line of a verse was contained in a group
+
+ * \echo macro no longer introduces a spurious line-break on eTeX.
+
+ * \DeclareLyricChar and friends now perform macro-tests based on macro name rather than macro definition.
+
+ * Extended mark register classes are now allocated safely so as to cooperate with other eTeX-aware packages.
+
+Version 2.5 [2008/02/08]:
+
+ * Unix version now uses the GNU automake system to configure and build itself
+
+ * Support for more than two columns added (use \songcolumns to set the number of columns).
+
+ * Chord replaying system now works properly in choruses.
+
+ * Added \stitlefont to allow users to customize the song title font without having to redefine \makeprelude.
+
+ * Added \baselineadj to allow users to customize the \baselineskip without having to redefine \everychorus and \everyverse.
+
+ * Superscript ("^") now works again in math mode even when chord replaying system is active. (It can therefore be used to typeset chord names if desired.)
+
+ * hyphchk utility renamed to sbdchk
+
+ * sbdchk utility updated to report column numbers in reports and error messages
+
+ * sbdchk and songidx sources updated to better adhere to GNU coding standards
+
+Version 2.4 [2007/10/09]: Second CTAN release
+
+ * Added \titleprefixword, \authsepword, \authbyword, \authignoreword, and \idxcont to support automatic index-generation for non-English languages.
+
+ * songidx program now supports piping to/from stdin/stdout (specify a filename of "-" to use this feature) and will infer an output filename when none is specified on the command line.
+
+ * Unix makefiles and Windows batch files for the sample books have been updated to allow users to add new indexes without changing any of the make/batch files.
+
+Version 2.3 [2007/09/23]:
+
+ * \indexentry and \indextitleentry now accept an optional argument specifying which indexes to add the new entry to (overriding the defaults for the current songs environment)
+
+ * \ch and \mch macros can now replay chords by using "^" as the chord name
+
+ * Renamed the .dat and .tex intermediate files produced during index generation to .sxd (Song indeX Data) and .sbx (Song Book indeX), respectively, to avoid conflicts with other software. Unix users can now write Makefiles that recognize these unique file extensions.
+
+Version 2.2 [2007/08/09]:
+
+ * The page-layout algorithm now honors \maxdepth, fixing a bug that occasionally produced overfilled vbox warnings during output.
+
+ * Fixed compiler warnings for systems that won't implicitly cast between integer and wide-characters.
+
+Version 2.1 [2007/08/02]:
+
+ * "Overheads" mode renamed to "slides" to reflect some substantial changes to that mode (see below).
+
+ * \sepverses can now be used in slides mode to put each verse and chorus on a separate slide. This seems to be the norm in churches that use a digital projector, since it allows worship leaders to repeat previous verses or choruses without having extraneous lyrics up on the screen.
+
+ * Choruses in slides mode are no longer surrounded by vertical rules, but are instead italicized by default. The rules looked nice, but they made it impossible to correctly break large choruses that couldn't fit on a single slide.
+
+ * To make echo parts stand out in italicized choruses, \echo now toggles between oblique and upright shapes (like \emph) instead of forcing the former.
+
+ * \repchoruses can now be used to repeat choruses automatically in songs that span more than one slide. This is very useful when creating foils for an overhead projector.
+
+ * \versemark and \chorusmark added to allow page headers that match the current verse or chorus rather than just the current song.
+
+ * \everyverse and \everychorus added so that users can make choruses begin with "Chorus:" and the like if they wish. (Personally I think that wastes too much space, but it's a common style.)
+
+ * \ifvnumbered conditional added to allow code that checks to see if the current verse is numbered or not.
+
+ * New \begin...only and \begin...never conditionals introduced that are just like \if... and \if...\else except that they avoid certain "runaway argument" errors raised by the latter.
+
+ * Added \versefont, \chorusfont, \versejustify, and \chorusjustify to allow users to customize font and/or justification of verses and choruses all independently. This reduces slides mode to a set of customizations that can all be manually duplicated (or undone) by the user.
+
+ * \baselineskip logic improved to better handle large fonts.
+
+ * Indexes now work properly when using \includeonlysongs to generate a partial list.
+
+ * \brk can now be used in vertical mode to suggest column- and page-breaks in verses and choruses that are too long to fit on a single slide.
+
+ * Added \DeclareNonLyric and \DeclareNoHyphen for better support of \inputenc.
+
+ * \tablature macro shortened to \gtab and with only two mandatory arguments instead of four.
+
+ * Automatic transposition now recognizes alternate note names, such as solfedge note names.
+
+Version 2.0 [2007/06/20]:
+
+ * Introduced keyval syntax for \beginsong.
+
+ * Added chord-replaying system (^, \memorize, \[^...]).
+
+ * Removed in-package code that loads hyperref. Users must now load hyperref manually.
+
+ * \songsection and \songchapter now support optional arguments like \section and \chapter do.
+
+ * Non-output-producing tokens (like \relax) can now appear between the last \Acolon or \Bcolon line and the \endscripture line without messing up the scripture citation that gets appended to the last line.
+
+ * Fewer macros are declared \outer, allowing authors to embed them within their own macro definitions.
+
+ * Lyric-scanner code is now faster.
+
+ * songidx was not recognizing apostrophes as intra-word characters.
+
+ * When a guitar tablature diagram with a fret number appeared above a lyric, subsequent chords that did not include tablature diagrams were being spaced incorrectly (as if they had invisible fret numbers).
+
+ * Fixed a bug that caused songs environments to occasionally generate pages slightly larger than \textheight.
+
+Version 1.22 [2007/05/15]: First CTAN release
+
+ * \chordson and \chordsoff modified to update interline spacing, so that they can now be used within a song.
+
+ * \MultiwordChords added to allow spaces to be included under chords.
+
+ * \DeclareLyricChar added to allow user-specified macros to be treated as lyric characters.
+
+ * Added support for UTF-8 encoded source files.
+
+Version 1.21 [2006/09/17]:
+
+ * Changed \rep so that it does not enter math mode when making the "times" symbol. (This helps quell missing font size warnings.)
+
+ * \echo now preserves existing font selection and merely italicizes it.
+
+Version 1.20 [2006/03/12]:
+
+ * Added \noversenumbers to turn off automatic verse numbering
+
+Version 1.19 [2005/10/24]:
+
+ * Added book sectioning commands (\songchapter and \songsection).
+
+ * Fixed song numbering so that it now starts at 1 by default in each song section.
+
+Version 1.18 [2005/09/29]:
+
+ * Automatic verse numbering added.
+
+Version 1.17 [2005/09/24]: First release as a style package instead of a class
+
+ * Code massively reorganized to function as a .sty package instead of a .cls class.
+
+ * Added \songmark so that users can add marks to affect page headers/footers
+
+Version 1.16 [2005/07/23]:
+
+ * First rollout of the new \[] syntax for producing chords. Lyrics are parsed as an implicit second argument.
+
+Version 1.15 [2005/05/26]:
+
+ * Added song title iterators: \songtitle, \songtitletoks, \nexttitle, \foreachtitle, \resettitles
+
+ * Added \makeprelude and \makepostlude to allow users to customize song headers/footers
+
+Version 1.14 [2005/05/15]:
+
+ * Introduced the scripture reference parser, to prevent odd linebreaks in scripture references.
+
+ * Choruses now stretch and shrink like verses do.
+
+Version 1.13 [2005/05/12]:
+
+ * Added kerning correction for double-quote ligatures in the Zaph Chancery font.
+
+ * Added \Acolon, \Bcolon, and \strophe for typesetting biblical poetry.
+
+ * Chords now preserve the \spacefactor so that subsequent text is spaced appropriately.
+
+Version 1.12 [2005/05/10]:
+
+ * Redid intra-song spacing and penalties to eliminate superfluous vbox items. Improved performance.
+
+ * Improved inter-song penalties for better page- and column-breaking.
+
+ * \parindent now controls the amount of indentation for wrapped lines within a song or scripture.
+
+ * Multiline textnotes now work right.
+
+ * Fixed chord macros to avoid introducing hyphenation when lyric ends in punctuation.
+
+Version 1.11 [2005/04/21]: Begin tracking revision history
+
+ * Renamed various macros to avoid naming clashes with other packages.
+
+ * Adjusted the \\ index-separator macro so that its scope is now limited to the indexes.
+
+Version 1.1 [2005/04/03]: First release as a .cls documentclass
+
+ * First release as a self-documenting .dtx file
+
+Version 1.0 [2001/12/01]: Initial release
diff --git a/macros/latex/contrib/songs/license.txt b/macros/latex/contrib/songs/license.txt
new file mode 100644
index 0000000000..f90922eea3
--- /dev/null
+++ b/macros/latex/contrib/songs/license.txt
@@ -0,0 +1,340 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/macros/latex/contrib/songs/sample/Makefile b/macros/latex/contrib/songs/sample/Makefile
new file mode 100644
index 0000000000..ae3d4d5e2a
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/Makefile
@@ -0,0 +1,31 @@
+LATEX = pdflatex
+TEXLUA = texlua
+TEXOUT = pdf
+SONGIDX = ../songidx/songidx.lua
+BIBLE = ../songidx/bible.can
+
+all: chordbook.$(TEXOUT) lyricbook.$(TEXOUT) slidebook.$(TEXOUT) transparencies.$(TEXOUT)
+
+.SUFFIXES:
+.SUFFIXES: .$(TEXOUT) .tex .sbx .sxd
+
+%.$(TEXOUT): %.tex songs.sbd songs.sty
+ $(LATEX) $<
+ $(MAKE) indexes
+ $(LATEX) $<
+
+indexes: $(patsubst %.sxd,%.sbx,$(wildcard *.sxd))
+
+%.sbx: %.sxd $(SONGIDX) $(BIBLE)
+ $(TEXLUA) $(SONGIDX) -b $(BIBLE) $< $@
+
+../songs.sty: ../songs.dtx
+ $(MAKE) -C .. songs.sty
+
+songs.sty: ../songs.sty
+ cp ../songs.sty .
+
+clean:
+ -rm *.$(TEXOUT) *.aux *.log *.out *.sxc *.sxd *.sbx
+ -rm songs.sty
+
diff --git a/macros/latex/contrib/songs/sample/chordbook.tex b/macros/latex/contrib/songs/sample/chordbook.tex
new file mode 100644
index 0000000000..9f6c47a246
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/chordbook.tex
@@ -0,0 +1,54 @@
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+
+\documentclass[letterpaper]{article}
+\usepackage[bookmarks]{hyperref}
+\usepackage[chorded]{songs}
+% \includeonlysongs{2}
+
+\setlength{\oddsidemargin}{0in}
+\setlength{\evensidemargin}{0in}
+\setlength{\textwidth}{6.5in}
+\setlength{\topmargin}{0in}
+\setlength{\topskip}{0in}
+\setlength{\headheight}{0in}
+\setlength{\headsep}{0in}
+\setlength{\textheight}{9.1in}
+\settowidth{\versenumwidth}{1.\ }
+\pagestyle{empty}
+
+\newindex{titleidx}{cbtitle}
+\newauthorindex{authidx}{cbauth}
+\newscripindex{scripidx}{cbscrip}
+
+\begin{document}
+
+\showindex{Complete Index of Songs}{titleidx}
+
+\songsection{Worship Songs}
+\begin{songs}{titleidx,authidx,scripidx}
+\input{songs.sbd}
+\end{songs}
+
+\showindex{Index of Authors and Composers}{authidx}
+\showindex{Index of Scripture}{scripidx}
+
+\end{document}
+
diff --git a/macros/latex/contrib/songs/sample/lyricbook.tex b/macros/latex/contrib/songs/sample/lyricbook.tex
new file mode 100644
index 0000000000..4cd38ffdc4
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/lyricbook.tex
@@ -0,0 +1,54 @@
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+
+\documentclass[letterpaper]{article}
+\usepackage[bookmarks]{hyperref}
+\usepackage[lyric]{songs}
+% \includeonlysongs{2}
+
+\setlength{\oddsidemargin}{0in}
+\setlength{\evensidemargin}{0in}
+\setlength{\textwidth}{6.5in}
+\setlength{\topmargin}{0in}
+\setlength{\topskip}{0in}
+\setlength{\headheight}{0in}
+\setlength{\headsep}{0in}
+\setlength{\textheight}{9.1in}
+\settowidth{\versenumwidth}{1.\ }
+\pagestyle{empty}
+
+\newindex{titleidx}{lbtitle}
+\newauthorindex{authidx}{lbauth}
+\newscripindex{scripidx}{lbscrip}
+
+\begin{document}
+
+\showindex{Complete Index of Songs}{titleidx}
+
+\songsection{Worship Songs}
+\begin{songs}{titleidx,authidx,scripidx}
+\input{songs.sbd}
+\end{songs}
+
+\showindex{Index of Authors and Composers}{authidx}
+\showindex{Index of Scripture}{scripidx}
+
+\end{document}
+
diff --git a/macros/latex/contrib/songs/sample/slidebook.tex b/macros/latex/contrib/songs/sample/slidebook.tex
new file mode 100644
index 0000000000..d191c0134e
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/slidebook.tex
@@ -0,0 +1,85 @@
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+
+\documentclass[letterpaper,oneside,landscape]{article}
+\usepackage[pdfpagemode=UseThumbs]{hyperref}
+\usepackage{color}
+\usepackage[slides]{songs}
+% \includeonlysongs{2}
+
+\setlength{\oddsidemargin}{-0.5in}
+\setlength{\evensidemargin}{-0.5in}
+\setlength{\textwidth}{10in}
+\setlength{\topmargin}{-0.75in}
+\setlength{\topskip}{0in}
+\setlength{\headheight}{13.6pt}
+\setlength{\headsep}{0.5in}
+\setlength{\textheight}{6.5in}
+
+% Don't number the verses:
+\noversenumbers
+
+% Put each verse and chorus on a separate slide:
+\sepverses
+
+% Use 28pt Adobe Helvetica font for the lyrics
+\renewcommand{\lyricfont}{%
+ \fontfamily{phv}\fontseries{b}\fontsize{28pt}{28pt}\selectfont%
+}
+
+% If background colors are supported on this machine, then slides
+% will have white lettering on a blue background.
+\csname @ifundefined\endcsname{set@page@color}{}{
+ \definecolor{SlideBG}{rgb}{0,0,0.43}
+ \pagecolor{SlideBG}
+ \color{white}
+ \definecolor{SongbookShade}{rgb}{0,0,0.2}
+}
+
+% Define some headers for each slide to help the projector-operator
+% find the correct slide. We use the fancyhdr package for this.
+\IfFileExists{fancyhdr.sty}{
+ \usepackage{fancyhdr}
+ \usepackage{extramarks}
+ \pagestyle{fancy}
+ \fancyhf{}
+ \lhead{\sffamily\firstleftmark}
+ \rhead{\sffamily\firstrightmark}
+ \renewcommand{\headrulewidth}{0pt}
+
+ \renewcommand{\songmark}{\markboth{}{\thesongnum}}
+ \renewcommand{\versemark}{%
+ \ifvnumbered
+ \markboth{\thesongnum. \songtitle}{Verse \theversenum}%
+ \else
+ \markboth{\thesongnum. \songtitle}{}%
+ \fi
+ }
+ \renewcommand{\chorusmark}{\markboth{\thesongnum. \songtitle}{Chorus}}
+}{}
+
+\begin{document}
+
+\begin{songs}{}
+\input{songs.sbd}
+\end{songs}
+
+\end{document}
+
diff --git a/macros/latex/contrib/songs/sample/songs.sbd b/macros/latex/contrib/songs/sample/songs.sbd
new file mode 100644
index 0000000000..17ea8ee533
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/songs.sbd
@@ -0,0 +1,1098 @@
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+
+\beginsong{Doxology}[
+ by={Louis Bourgeois and Thomas Ken},
+ sr={Revelation 5:13},
+ cr={Public domain.},
+ index={Praise God, from Whom all blessings flow}]
+\beginverse*
+\[G]Praise God, \[D]from \[Em]Whom \[Bm]all \[Em]bless\[D]ings \[G]flow;
+\[G]Praise Him, all \[D]crea\[Em]tures \[C]here \[G]be\[D]low;
+\[Em]Praise \[D]Him \[G]a\[D]bove, \[G]ye \[C]heav'n\[D]ly \[Em]host;
+\[G]Praise Fa\[Em]ther, \[D]Son, \[Am]and \[G/B G/C]Ho\[D]ly \[G]Ghost.
+\[C]A\[G]men.
+\endverse
+\endsong
+
+\beginsong{And Can It Be}[
+ by={Charles Wesley and Thomas Campbell},
+ sr={Romans 8:1; Philippians 2:6-8; 1 Thessalonians 5:9},
+ cr={Public domain.},
+ index={Amazing love! How can it be}]
+\beginverse
+\[F]And \[F/A]can \[(C)]it \[F]be that \[Gm/B&]I \[C7]should \[F]gain
+An \[B&]in\[C]terest \[F/A]in \[C/E]the \[C/G]Sav\[G7]ior's \[C]blood?
+Died He \[F/C]for me, \[C] who \[F/A]caused \[F]His \[C]pain?
+For \[B&]me, who \[F/A]Him \[(Gm/B&)]to \[F/C]death \[C7]pur\[F]sued?
+A\[C]mazing \[F/A]love! \[C/G]How \[B&]can \[G7/B]it \[C]be
+That \[F]Thou, my \[B&]God, shouldst \[C C7]die for \[F]me?
+\endverse
+\beginchorus
+Amazing \[C]love! How \[C7/E]can it \[F]be
+That \[B&]Thou, my \[F/A]God, \[Gm/B&]shouldst \[F/C]die \[C7]for \[F]me?
+\endchorus
+\beginverse
+^He ^left ^His ^Father's ^throne ^a^bove,
+So ^free, ^so ^in^fi^nite ^His ^grace!
+Emptied ^Him^self of ^all ^but ^love,
+And ^bled for ^Ad^am's ^help^less ^race!
+'Tis ^mercy ^all, ^im^mense ^and ^free,
+For, ^O my ^God, it ^found out ^me.
+\endverse
+\beginverse
+^'Tis ^mys^tery ^all! The Im^mor^tal ^dies:
+Who ^can ^ex^plore ^His ^strange ^de^sign?
+In vain ^the ^first-born ^ser^aph ^tries
+To ^sound the ^depths ^of ^love ^di^vine!
+'Tis ^mercy ^all, ^let ^earth ^a^dore,
+Let ^angel ^minds in^quire no ^more.
+\endverse
+\beginverse
+^Long ^my ^im^prisoned ^spir^it ^lay
+Fast ^bound ^in ^sin ^and ^na^ture's ^night.
+Thine eye ^di\ch{^}{f}{f}{ff}used a ^quicken^ing ^ray;
+I ^woke, the ^dun^geon ^flamed ^with ^light!
+My ^chains fell ^off, ^my ^heart ^was ^free,
+I ^rose, went ^forth, and ^followed ^Thee.
+\endverse
+\beginverse
+^No ^con^dem^nation ^now ^I ^dread:
+Je^sus, ^and ^all ^in ^Him, ^is ^mine!
+Alive ^in ^Him, my ^liv^ing ^Head,
+And ^clothed in ^right^eous^ness ^di^vine,
+Bold ^I ap^proach ^th' e^ter^nal ^throne,
+And ^claim the ^crown, through ^Christ, my ^own.
+\endverse
+\endsong
+
+\beginscripture{Romans 8:3-4}
+For what the law was powerless to do in that it was weakened by the sinful nature, God did by sending his own Son in the likeness of sinful man to be a sin offering. And so he condemned sin in sinful man, in order that the righteous requirements of the law might be fully met in us, who do not live according to the sinful nature but according to the Spirit.
+\endscripture
+
+\beginsong{My Jesus I Love Thee}[
+ by={William R. Featherstone},
+ sr={1 John 4:19},
+ cr={Public domain.}]
+\capo{2}
+\beginverse
+My \[D]Je\[G]sus, I \[D]love Thee; I \[A7]know Thou art \[D]mine.
+For Thee, \[G]all the \[D]follies of \[A7]sin I re\[D]sign.
+My gra\[G]cious Re\[Em7]deem\[A7]er, my \[D]Sav\[Em7]ior art \[D]Thou; \[A7]
+If \[D]ev\[G]er I \[D]loved Thee, my \[A7]Jesus, 'tis \[D]now.
+\endverse
+\beginverse
+I ^love ^Thee be^cause Thou hast ^first lov\`ed ^me,
+And pur^chased my ^pardon on ^Calvary's ^tree.
+I love ^Thee for ^wear^ing the ^thorns ^on Thy ^brow; ^
+If ^ev^er I ^loved Thee, my ^Jesus, 'tis ^now.
+\endverse
+\beginverse
+I'll ^love ^Thee in ^life, I will ^love Thee in ^death,
+And praise ^Thee as ^long as Thou ^lendest me ^breath,
+And say, ^when the ^death ^dew lies ^cold ^on my ^brow, ^
+``If ^ev^er I ^loved Thee, my ^Jesus, 'tis ^now.''
+\endverse
+\beginverse
+In ^man^sions of ^glory and ^endless de^light,
+I'll ev^er a^dore Thee in ^heaven so ^bright;
+I'll sing, ^with the ^glit^tering ^crown ^on my ^brow, ^
+``If ^ev^er I ^loved Thee, my ^Jesus, 'tis ^now.''
+\endverse
+\endsong
+
+\beginscripture{Romans 8:1-2}
+There is now no condemnation for those who are in Christ Jesus, because through Christ Jesus the law of the Spirit of life set me free from the law of sin and death.
+\endscripture
+
+\beginsong{Amazing Grace}[
+ by={John Newton},
+ sr={Luke 15:4; 2 Corinthians 4:8,9; Ephesians 2:8; Revelation 14:3},
+ cr={Public domain.}]
+\beginverse
+A\[E]mazing \[E/D#]grace! How \[A/C#]sweet the \[E/B]sound
+That \[E]saved a \[E/C#]wretch like \[B7]me!
+I \[E]once was \[E/D#]lost, but \[A/C#]now am \[E/B]found;
+Was \[A]blind, but \[A/B]now I \[E]see.
+\endverse
+\beginverse
+T'was ^grace that ^taught my ^heart to ^fear,
+And ^grace my ^fears re^lieved;
+How ^precious ^did that ^grace ap^pear
+The ^hour I ^first be^lieved!
+\endverse
+\beginverse
+The ^Lord has ^promised ^good to ^me,
+His ^word my ^hope se^cures;
+He ^will my ^shield and ^portion ^be
+As ^long as ^life en^dures.
+\endverse
+\beginverse
+Through ^many ^dangers, ^toils and ^snares
+I ^have al^ready ^come;
+'Tis ^grace hath ^brought me ^safe thus ^far,
+And ^grace will ^lead me ^home.
+\endverse
+\beginverse
+Yes, ^when this ^flesh and ^heart shall ^fail,
+And ^mortal ^life shall ^cease,
+I ^shall pos^sess with^in the ^veil
+A ^life of ^joy and ^peace.
+\endverse
+\beginverse
+When ^we've been ^there ten ^thousand ^years,
+Bright ^shining ^as the ^sun,
+We've ^no less ^days to ^sing God's ^praise
+Than ^when we've ^first be^gun.
+\endverse
+\endsong
+
+\beginsong{It Is Well With My Soul}[
+ by={Horatio G. Spafford and Philip Paul Bliss},
+ sr={Psalm 49:15},
+ cr={Public domain.},
+ index={When peace, like a river, attendeth my way}]
+\beginverse
+When \[A]peace, like a \[E]river, at\[D]ten\[E]deth my \[A]way,
+When \[F#m]sorrows like \[B]sea billows \[E]roll--- \[E7]
+What\[A]ever my \[D]lot, Thou hast \[B]taught me to \[E]say,
+``It is \[A/C#]well, \[D]it is \[A/E]well \[E]with my \[A]soul.'' \[D] \[A]
+\endverse
+\beginchorus
+It is \[A]well (It is \[E]well)
+With my soul, (With my \[A]soul)
+It is \[D]well, it is \[A/E]well \[E]with my \[A]soul. \[D] \[A]
+\endchorus
+\beginverse
+Though ^Satan should ^buffet, though ^tri^als should ^come,
+Let ^this blest as^surance con^trol: ^
+That ^Christ hath re^garded my ^helpless es^tate
+And hath ^shed ^His own ^blood ^for my ^soul! ^ ^
+\endverse
+\beginverse
+My ^sin---O the ^joy of this ^glo^rious ^thought---
+My ^sin, not in ^part, but the ^whole, ^
+Is ^nailed to the ^cross, and I ^bear it no ^more:
+Praise the ^Lord, ^praise the ^Lord, ^O my ^soul! ^ ^
+\endverse
+\beginverse
+And ^Lord, haste the ^day when my ^faith ^shall be ^sight,
+The ^clouds be rolled ^back as a ^scroll: ^
+The ^trump shall re^sound and the ^Lord shall de^scend!
+Even ^so, ^it is ^well ^with my ^soul. ^ ^
+\endverse
+\endsong
+
+\beginsong{What A Friend We Have In Jesus}[
+ by={Charles Crozat Converse and Joseph M. Scriven},
+ sr={Matthew 11:28; John 15:15; Ephesians 6:18; Philippians 4:6; 1 Peter 5:7},
+ cr={Public domain.}]
+\beginverse
+\[D]What a \[D7/C]Friend we have in \[G/B]Jesus, \[(Gm/B&)]
+\[D/A]All our \[Bm]sins and griefs to \[Em]bear! \[A7]
+\[D]What a \[D7/C]privilege to \[G/B]carry \[(Gm/B&)]
+\[D/A]Every\[(Gmaj7)]thing to \[A]God in \[D]prayer!
+\[A]O what \[A7/C#]peace we often \[D]for\[D7/C]feit,
+\[G/B]O what \[D/A]needless pain we \[Em]bear, \[A7]
+\[D]All be\[D7/C]cause we do not \[G/B]carry \[(Gm/B&)]
+\[D/A]Every\[(Gmaj7)]thing to \[A]God in \[D]prayer!
+\endverse
+\beginverse
+^Have we ^trials and temp^tations? ^
+^Is there ^trouble any^where? ^
+^We should ^never be dis^couraged; ^
+^Take it ^to the ^Lord in ^prayer.
+^Can we ^find a friend so ^faith^ful
+^Who will, ^all our sorrows, ^share? ^
+^Jesus ^knows our every ^weakness; ^
+^Take it ^to the ^Lord in ^prayer.
+\endverse
+\beginverse
+^Are we ^weak and heavy ^laden, ^
+^Cumbered ^with a load of ^care? ^
+^Precious ^Savior, still our ^refuge! ^
+^Take it ^to the ^Lord in ^prayer!
+^Do thy ^friends despise, for^sake ^thee?
+^Take it ^to the Lord in ^prayer! ^
+^In His ^arms He'll take and ^shield thee--- ^
+^Thou wilt ^find a ^solace ^there.
+\endverse
+\endsong
+
+\beginsong{O Love That Will Not Let Me Go}[
+ by={Albert Lister Peace and George Matheson},
+ sr={Genesis 9:16; Isaiah 60:19; Jeremiah 31:3; John 8:12; Romans 8:38,39},
+ cr={Public domain.}]
+\beginverse
+O \[G]Love that will not \[Em]let me \[G/D]go, \[D]
+I rest my weary soul in \[D/F#]Thee. \[D7/F#]
+I \[G]give Thee \[B7]back the life I \[Em]owe,
+That, \[A]in Thine ocean depths, its \[G/D]flow
+May richer, full\[D7]er \[G]be.
+\endverse
+\beginverse
+O ^Light that foll'west ^all my ^way, ^
+I yield my flick'ring torch to ^Thee. ^
+My ^heart re^stores its borrowed ^ray,
+That, ^in Thy sunshine's blaze, its ^day
+May brighter, fair^er ^be.
+\endverse
+\beginverse
+O ^Joy that seekest ^me through ^pain, ^
+I cannot close my heart to ^Thee. ^
+I ^trace the ^rainbow through the ^rain,
+And ^feel the promise is not ^vain
+That morn shall tear^less ^be.
+\endverse
+\beginverse
+O ^Cross that liftest ^up my ^head, ^
+I dare not ask to fly from ^Thee. ^
+I ^lay in ^dust life's glory ^dead,
+And ^from the ground there blossoms ^red
+Life that shall end^less ^be.
+\endverse
+\endsong
+
+\beginscripture{Psalm 23:6}
+\Acolon Surely goodness and love
+\Bcolon will follow me all the days of my life,
+\Acolon and I will dwell in the house of the LORD
+\Bcolon forever.
+\endscripture
+
+\beginsong{Come Thou Fount}[
+ by={John Wyeth and Robert Robinson},
+ sr={Zechariah 13:1},
+ cr={Public domain.}]
+\beginverse
+\[C]Come, \[G7]Thou \[C]Fount of every \[G]blessing,
+\[C]Tune my \[F]heart \[C]to \[G7]sing Thy \[C]grace.
+Streams \[G7]of \[C]mercy, never \[G]ceasing,
+\[C]Call for \[F]songs \[C]of \[G7]loudest \[C]praise.
+\[G7]Teach me \[C]some me\[F]lodious \[C]sonnet,
+\[G7]Sung by \[C]flaming \[F]tongues a\[C]bove.
+\[G7]Praise the \[C]mount! I'm fixed up\[G]on it---
+\[C]Mount of \[F]Thy \[C]re\[G7]deeming \[C]love.
+\endverse
+\beginverse
+^Here ^I ^raise mine Eben^ezer;
+^Hither ^by ^Thy ^help I'm ^come.
+And ^I ^hope, by Thy good ^pleasure,
+^Safely ^to ^ar^rive at ^home.
+^Jesus ^sought me ^when a ^stranger
+^Wandering ^from the ^fold of ^God;
+^He, to ^rescue me from ^danger,
+^Inter^posed ^His ^precious ^blood.
+\endverse
+\beginverse
+^O ^to ^grace, how great a ^debtor,
+^Daily, ^I'm ^con^strained to ^be!
+Let ^Thy ^goodness, like a ^fetter,
+^Bind my ^wand'r^ing ^heart to ^Thee.
+^Prone to ^wander, ^Lord, I ^feel it,
+^Prone to ^leave the ^God I ^love---
+^Here's my ^heart, O take and ^seal it;
+^Seal it ^for ^Thy ^courts a^bove.
+\endverse
+\endsong
+
+\beginsong{Holy Holy Holy}[
+ by={John B. Dykes and Reginald Heber},
+ sr={Isaiah 6:2,3; Revelation 4:4,6,8,10},
+ cr={Public domain.}]
+\beginverse
+\[C]Holy, \[Am]holy, \[G]ho\[C]ly: \[F]Lord God Al\[C]mighty!
+\[G]Early \[C]in the \[Am]morn\[G]ing our song shall \[D]rise to \[G]Thee. \[G7]
+\[C]Holy, \[Am]holy, \[G]ho\[C]ly, \[F]merciful and \[C]mighty:
+\[Am]God \[C7]in three \[F]Per\[C7/E]sons, \[Dm]blessed \[G7]Trini\[C]ty!
+\endverse
+\beginverse
+^Holy, ^holy, ^ho^ly! ^All the saints a^dore Thee,
+^Casting ^down their ^golden ^crowns around the ^glassy ^sea; ^
+^Cheru^bim and ^sera^phim ^falling down be^fore Thee,
+^Who ^wert, and ^art, ^and ^ever^more shalt ^be.
+\endverse
+\beginverse
+^Holy, ^holy, ^ho^ly! ^Though the darkness ^hide Thee,
+^Though the ^eye of ^sinful ^man, Thy glory, ^may not ^see, ^
+^Only ^Thou art ^ho^ly. ^There is none, be^sides Thee,
+^Per^fect in ^pow'r, ^in ^love, and ^puri^ty. \[G/A] \[A7]
+\endverse
+\transpose{2}
+\beginverse
+^Holy, ^holy, ^ho^ly: ^Lord God Al^mighty!
+^All Thy ^works shall ^praise Thy ^name in earth and ^sky and ^sea. ^
+^Holy, ^holy, ^ho^ly, ^merciful and ^mighty:
+^God ^in three ^Per^sons, ^blessed ^Trini^ty!
+\endverse
+\endsong
+
+\beginsong{How Great Thou Art}[
+ by={Stuart Hine},
+ sr={Psalm 8:1,3,4; Romans 5:9; 8:32; 1 Thessalonians 4:16,17},
+ cr={\copyright~1941, 1953, 1955 Stuart K. Hine. Renewed 1981 Manna Music, Inc.},
+ index={O Lord my God! When I in awesome wonder},
+ index={Then sings my soul, my Savior God, to Thee}]
+\beginverse
+O Lord my \[A]God! When I, in \[D]awesome wonder,
+Con\[(D#dim7)]sider \[A]all the \[E7]worlds Thy hands have \[A]made---
+I see the stars, I hear the \[D]rolling thunder,
+Thy \[(D#dim7)]power through\[A]out the \[E7]universe dis\[A]played---
+\endverse
+\beginchorus
+\[E7]Then sings my \[A]soul, my \[D]Savior God, to \[A]Thee:
+How great Thou \[Bm]art! \[E7] How great Thou \[A]art!
+\[E7]Then sings my \[A]soul, my \[D]Savior God, to \[A]Thee:
+How great Thou \[Bm]art! \[E7] How great Thou \[A]art!
+\endchorus
+\beginverse
+When, through the ^woods and forest ^glades, I wander,
+And ^hear the ^birds sing ^sweetly in the ^trees---
+When I look down from lofty ^mountain grandeur
+And ^hear the ^brook and ^feel the gentle ^breeze---
+\endverse
+\beginverse
+And when I ^think that God, His ^Son not sparing,
+Sent ^Him to ^die, I ^scarce can take it ^in---
+That on the cross, my burden ^gladly bearing,
+He ^bled and ^died to ^take away my ^sin---
+\endverse
+\beginverse
+When Christ shall ^come with shout of ^acclamation
+And ^take me ^home, what ^joy shall fill my ^heart!
+Then I shall bow in humble ^adoration
+And ^there pro^claim, ``My ^God, how great Thou ^art!''
+\endverse
+\endsong
+
+\beginsong{Be Thou My Vision}[
+ by={Eleanor Hull and Mary E. Byrne},
+ sr={1 Corinthians 1:30},
+ cr={\copyright~Public Domain.}]
+\beginverse
+\[D]Be Thou my \[G]Vision, \[A]O \[D]Lord of \[A]my \[D]heart;
+\[A]Nought be all else \[D]to me, \[G]save that \[D]Thou \[A]art---
+\[G]Thou my best \[D]thought, by \[A]day \[(Bm)]or \[(F#m)]by \[G]night, \[A]
+\[D]Waking or \[Bm]sleeping, Thy \[G]presence my \[D]light. \[(G/D)]
+\endverse
+\beginverse
+^Be Thou my ^Wisdom ^and ^Thou my ^true ^Word;
+^I ever with ^Thee and ^Thou with ^me, ^Lord;
+^Thou my great ^Father, ^I ^Thy ^true ^son, ^
+^Thou in me ^dwelling, and ^I with Thee ^one. ^
+\endverse
+\beginverse
+^Be Thou my ^shield and ^my ^sword for ^the ^fight,
+^Be Thou my dig^nity, ^be Thou ^my ^might.
+^Thou my soul's ^shelter and ^Thou ^my ^high ^tow^er,
+^Raise, Thou, me ^heavenward, O ^Pow'r of my ^pow'r. ^
+\endverse
+\beginverse
+^Riches I ^heed not, ^nor ^man's emp^ty ^praise,
+^Thou mine inher^itance, ^now and ^al^ways:
+^Thou and Thou ^only, ^first ^in ^my ^heart, ^
+^High King of ^heaven, my ^Treasure Thou ^art. ^
+\endverse
+\beginverse
+^High King of ^heaven, ^my ^victo^ry ^won,
+^May I reach heav^en's joys, ^O bright ^heaven's ^Sun!
+^Heart of my ^own heart, what^ev^er ^be^fall, ^
+^Still be my ^Vision, O ^Ruler of ^all.
+\endverse
+\endsong
+
+\beginscripture{1 Peter 1:3-5}
+Praise be to the God and Father of our Lord Jesus Christ! In his great mercy he has given us new birth into a living hope through the resurrection of Jesus Christ from the dead, and into an inheritance that can never perish, spoil or fade---kept in heaven for you, who through faith are shielded by God's power until the coming of the salvation that is ready to be revealed in the last time.
+\endscripture
+
+\beginsong{In The Garden}[
+ by={C. Austin Miles},
+ cr={Public domain.}]
+\beginverse
+I \[G]come to the garden alone,
+While the \[C]dew is still on the \[G]roses;
+And the \[D]voice I hear, falling \[G]on my ear,
+The \[A]Son of God dis\[D]closes.
+\endverse
+\beginchorus
+And He \[G]walks with me,
+And He \[D]talks with me,
+And He \[D7]tells me I am His \[G]own;
+And the joy we \[B7]share, as we \[Em]tarry \[C]there,
+None \[G]other has \[D]ever \[G]known.
+\endchorus
+\beginverse
+He ^speaks, and the sound of His voice
+Is so ^sweet, the birds hush their ^singing,
+And the ^melody that He ^gave to me,
+With^in my heart is ^ringing.
+\endverse
+\beginverse
+I'd ^stay in the garden with Him,
+Though the ^night around me be ^falling,
+But He ^bids me go; through the ^voice of woe,
+His ^voice to me is ^calling.
+\endverse
+\endsong
+
+\beginsong{Great Is Thy Faithfulness}[
+ by={Thomas Obediah Chisholm and William M. Runyan},
+ sr={Lamentations 3:22-23},
+ cr={\copyright~1923. Renewed 1951 Hope Publishing Company.}]
+\beginverse
+\[D]Great is \[(D+)]Thy \[Gmaj7]faithfulness, \[A7]O God my \[D]Father,
+\[G]There is no \[D/F#]shadow of \[E]turning \[E7]with \[A]Thee;
+\[A7]Thou changest \[D]not, Thy com\[D/F#]passions they \[Gmaj7]fail not;
+\[G#dim7]As Thou hast \[D/A]been Thou for\[Gmaj7/A]ever \[A]wilt \[D]be.
+\endverse
+\beginchorus
+\[A]Great is \[A/C#]Thy \[Dsus4]faith\[D]fulness! \[B]Great is \[B/D#]Thy \[Em4]faithful\[Em]ness!
+\[A]Morning by \[D]morning \[E]new \[A]mer\[D]cies \[E]I \[A]see;
+\[A7]All I have \[D]needed Thy \[D/F#]hand hath pro\[Gmaj7]vided.
+\[G#dim7]Great is Thy \[D/A]faithfulness, \[Gmaj7/A]Lord, un\[A]to \[D]me!
+\endchorus
+\beginverse
+^Summer ^and ^winter, and ^springtime and ^harvest,
+^Sun, moon, and ^stars in their ^courses ^a^bove,
+^Join with all ^nature in ^manifold ^witness
+^To Thy great ^faithfulness, ^mercy, ^and ^love.
+\endverse
+\beginverse
+^Pardon ^for ^sin and a ^peace that en^dureth,
+^Thy own dear ^presence to ^cheer and ^to ^guide,
+^Strength for to^day and bright ^hope for to^morrow:
+^Blessings all ^mine, with ten ^thousand ^be^side.
+\endverse
+\endsong
+
+\beginscripture{Lamentations 3:21-22}
+Yet this I call to mind and therefore I have hope: Because of the LORD's great love we are not consumed, for his compassions never fail.
+\endscripture
+
+\beginsong{O The Deep Deep Love of Jesus}[
+ by={Samuel Trevor Francis and Thomas J. Williams},
+ cr={Public domain.}]
+\capo{2}
+\beginverse
+\[Dm]O the \[A]deep, \[Dm]deep \[A7]love of \[Dm]Jesus,
+\[F]Vast, \[C7]un\[F]mea\[(Dm)]sured, \[Gm]bound\[A]less, \[Dm]free!
+\[Dm]Rolling \[A]as \[Dm]a \[A7]mighty \[Dm]ocean
+\[F]In \[C7]its \[F]full\[(Dm)]ness \[Gm]o\[A]ver \[Dm]me!
+\[F]Under\[Csus4]neath \[C]me, \[Dm]all a\[Asus4]round \[A]me,
+\[Dm]Is the \[Gm]current \[F/A]of \[Gm/B&]Thy \[Asus4]love; \[A]
+\[Dm]Leading \[A]on\[Dm]ward, \[A7]leading \[Dm]homeward,
+\[F]To \[C7]my \[F]glori\[(Dm)]ous \[Gm]rest \[A]a\[Dm]bove!
+\endverse
+\beginverse
+^O the ^deep, ^deep ^love of ^Jesus,
+^Spread ^His ^praise ^from ^shore ^to ^shore!
+^How He ^lov^eth, ^ever ^loveth,
+^Chang^eth ^nev^er, ^nev^er^more!
+^How He ^watch^eth ^o'er His ^loved ^ones,
+^Died to ^call them ^all ^His ^own; ^
+^How for ^them ^He ^inter^cedeth,
+^Watch^eth ^o'er ^them ^from ^the ^throne!
+\endverse
+\beginverse
+^O the ^deep, ^deep ^love of ^Jesus,
+^Love ^of ^eve^ry ^love ^the ^best!
+^'Tis an ^o^cean ^full of ^blessing,
+^'Tis ^a ^ha^ven ^giv^ing ^rest.
+^O the ^deep, ^deep ^love of ^Je^sus,
+^'Tis a ^heav'n of ^heav'ns ^to ^me; ^
+^And it ^lifts ^me ^up to ^glory,
+^For ^it ^lifts ^me ^up ^to ^Thee!
+\endverse
+\endsong
+
+\beginsong{Jesus Lover Of My Soul}[
+ by={Charles Wesley and Simeon B. Marsh},
+ cr={Public domain.}]
+\beginverse
+\[Dm]Jesus, Lover of \[A]my \[Dm]soul,
+Let \[A]me \[Dm]to \[A]Thy \[Dm]bosom \[Asus4]fly, \[A]
+\[Dm]While the nearer wa\[A]ters \[Dm]roll,
+\[A]While the \[F]tem\[Gdim7]pest \[Dm/A]still \[A]is \[Dm]high!
+\[B&]Hide \[F]me, \[B&]O \[Gdim7]my \[F]Sav\[C7]ior, \[F]hide,
+\[Dm]'Til \[A]the \[Dm]storm \[C]of \[F]life \[E]is \[Am]past.
+\[B&]Safe in\[F]to the \[Dm]ha\[Gm]ven \[Asus4]guide, \[A]
+\[Dm]Oh, receive my soul \[A]at \[Dm]last!
+\endverse
+\beginverse
+^Other refuge have ^I ^none;
+Hangs ^my ^help^less ^soul on ^Thee. ^
+^Leave, O leave me not ^a^lone;
+^Still sup^port ^and ^com^fort ^me!
+^All ^my ^trust ^on ^Thee ^is ^stayed;
+^All ^my ^help ^from ^Thee ^I ^bring.
+^Cover ^my de^fense^less ^head ^
+^With the shadow of ^Thy ^wing.
+\endverse
+\beginverse
+^Thou, O Christ, art all ^I ^want;
+More ^than ^all ^in ^Thee I ^find. ^
+^Raise the fallen, cheer ^the ^faint,
+^Heal the ^sick, ^and ^lead ^the ^blind.
+^Just ^and ^ho^ly ^is ^Thy ^name;
+^I ^am ^all ^un^right^eous^ness.
+^False and ^full of ^sin ^I ^am; ^
+^Thou art full of truth ^and ^grace.
+\endverse
+\beginverse
+^Plenteous grace with Thee ^is ^found,
+Grace ^to ^cov^er ^all my ^sin. ^
+^Let the healing streams ^a^bound;
+^Make and ^keep ^me ^pure ^with^in.
+^Thou ^of ^life ^the ^Foun^tain ^art,
+^Free^ly ^let ^me ^take ^of ^Thee;
+^Spring Thou ^up with^in ^my ^heart; ^
+^Rise to all eter^ni^ty.
+\endverse
+\endsong
+
+\beginsong{When I Survey The Wondrous Cross}[
+ by={Isaac Watts and Lowell Mason},
+ cr={Public domain.}]
+\capo{2}
+\beginverse
+\[D]When I \[(A)]sur\[Bm]vey \[(Em/G) (B/F#)]the \[Em]won\[A6]drous \[D]cross
+On which the \[G/D]Prince \[D]of \[Bm]glory \[Asus4]died, \[A]
+\[D]My rich\[(A)]est \[Bm]gain \[(Em/G) (B/F#)]I \[Em]count \[A6]but \[D]loss,
+\[D]And \[(D/C#)]pour con\[Em]tempt \[Bm]on \[Em/G]all \[A6]my \[D]pride.
+\endverse
+\beginverse
+^Forbid ^it, ^Lord, ^that ^I ^should ^boast,
+Save in the ^death ^of ^Christ, my ^God; ^
+^All the ^vain ^things ^that ^charm ^me ^most,
+^I ^sacri^fice ^them ^to ^His ^blood.
+\endverse
+\beginverse
+^See, from ^His ^head, ^His ^hands, ^His ^feet,
+Sorrow and ^love ^flow ^mingled ^down; ^
+^Did e'er ^such ^love ^and ^sor^row ^meet,
+^Or ^thorns com^pose ^so ^rich ^a ^crown?
+\endverse
+\beginverse
+^Were the ^whole ^realm ^of ^na^ture ^mine,
+That were a ^pres^ent ^far too ^small; ^
+^Love so ^a^maz^ing, ^so ^di^vine,
+^De^mands my ^soul, ^my ^life, ^my ^all.
+\endverse
+\endsong
+
+\beginsong{Crown Him With Many Crowns}[
+ by={George J. Elvey, Godfrey Thring and Matthew Bridges},
+ sr={Revelation 4:9-11,5:13},
+ cr={Public domain.}]
+\beginverse
+\[C]Crown Him with \[Am]many \[F]crowns,
+The \[C]Lamb up\[F]on His \[Gsus4]throne. \[G]
+Hark! \[C]How the \[F]heav'nly \[D]anthem \[G]drowns
+All music \[D]but its \[G]own! \[G7]
+A\[C]wake, my soul, and \[F]sing \[F/E]
+Of \[D]Him Who died for \[G]thee \[G7/F]
+And \[C/E]hail Him \[F]as thy \[G7]matchless \[C]King
+Through \[F]all e\[G]terni\[C]ty.
+\endverse
+\beginverse
+^Crown Him the ^Lord of ^love!
+Be^hold His ^hands and ^side--- ^
+Rich ^wounds, yet ^visi^ble a^bove,
+In beauty ^glori^fied. ^
+No ^angel in the ^sky ^
+Can ^fully bear that ^sight, ^
+But ^downward ^bends His ^wondering ^eye
+At ^myster^ies so ^bright.
+\endverse
+\beginverse
+^Crown Him the ^Lord of ^life,
+Who ^triumphed ^o'er the ^grave, ^
+Who ^rose vic^tori^ous to the ^strife,
+For those He ^came to ^save. ^
+His ^glories now we ^sing, ^
+Who ^died and rose on ^high, ^
+Who ^died e^ternal ^life to ^bring
+And ^lives that ^death may ^die.
+\endverse
+\beginverse
+^Crown Him the ^Lord of ^heav'n:
+One ^with the ^Father ^known, ^
+One ^with the ^Spirit ^through Him ^giv'n
+From yonder ^glorious ^throne. ^
+All ^hail, Redeemer, ^hail! ^
+For ^Thou hast died for ^me; ^
+Thy ^praise and ^glory ^shall not ^fail
+Through^out e^terni^ty.
+\endverse
+\endsong
+
+\beginsong{Fairest Lord Jesus}[
+ by={H.A. Hoffman von Fallersleben and Joseph A. Seiss},
+ sr={Song of Songs 6:10},
+ cr={Public domain.}]
+\beginverse
+\[C]Fairest Lord \[G]Je\[C]sus, \[C/E]Ruler of all \[F G]na\[C]ture,
+\[C]O \[F]Thou of \[C/E]God and \[Dm]man, \[Am]the \[Gsus4]Son: \[G]
+\[Em]Thee will I \[Dm]cherish, \[G7]Thee will I \[C]honor,
+Thou \[C/E]my soul's glory, \[Fmaj7]joy, \[G]and \[C]crown.
+\endverse
+\beginverse
+^Fair are the ^mead^ows, ^fairer still the ^wood^lands
+^Robed ^in the ^blooming ^garb ^of ^spring. ^
+^Jesus is ^fairer, ^Jesus is ^purer,
+Who ^makes the woeful ^heart ^to ^sing.
+\endverse
+\beginverse
+^Fair is the ^sun^shine, ^fairer still the ^moon^light,
+^And ^all the ^twinkling, ^star^ry ^host. ^
+^Jesus shines ^brighter; ^Jesus shines ^purer
+Than ^all the angels ^heav'n ^can ^boast.
+\endverse
+\beginverse
+^Beautiful ^Sav^ior, ^Lord of all the ^na^tions,
+^Son ^of ^God, and ^Son ^of ^man: ^
+^Glory and ^honor, ^praise, ado^ration
+Now ^and forever^more ^be ^Thine!
+\endverse
+\endsong
+
+\beginsong{Turn Your Eyes Upon Jesus}[
+ by={Helen H. Lemmel},
+ sr={Romans 8:37},
+ cr={Public domain},
+ index={O soul, are you weary and troubled?}]
+\beginverse
+O \[D]soul, are you weary and \[Gmaj7]troubled?
+No \[A]light in the \[A7]darkness you \[D]see?
+There's light for a look at the \[E]Savior,
+And \[B7/D#]life more a\[A/E]bundant \[E]and \[A]free! \[A7]
+\endverse
+\beginchorus
+\[D]Turn your \[A/C#]eyes upon \[Bm]Je\[Bm7/A]sus,
+Look \[G]full in His \[Em7]wonderful \[Asus4]face, \[A]
+And the \[D]things of \[A/C#]earth will go \[Bm]strangely \[Gm/B&]dim
+In the \[D/A]light of His \[A7]glory and \[D]grace.
+\endchorus
+\beginverse
+Through ^death into life ever^lasting
+He ^passed, and we ^follow Him ^there;
+O'er us sin no more hath do^minion---
+For ^more than ^conqu'rors ^we ^are! ^
+\endverse
+\beginverse
+His ^word shall not fail you---He ^promised;
+Be^lieve Him, and ^all will be ^well:
+Then go to a world that is ^dying,
+His ^perfect sal^vation ^to ^tell! ^
+\endverse
+\endsong
+
+\beginsong{Joyful Joyful We Adore Thee}[
+ by={Henry van Dyke and Ludwig van Beethoven},
+ cr={Public domain.}]
+\capo{2}
+\beginverse
+\[D]Joyful, joyful, \[G]we a\[A]dore Thee,
+\[D]God of glory, \[A]Lord of love!
+\[D]Hearts unfold like \[G]flow'rs be\[A]fore Thee,
+\[D]Op'ning to the \[A]sun a\[D]bove.
+\[A]Melt the \[D/A]clouds of \[A]sin and \[D/A]sadness;
+\[A]Drive the \[F#]dark of \[Bm]doubt \[(E)]a\[A]way.
+\[D]Giver of im\[G]mortal \[A]gladness,
+\[D]Fill us with the \[A]light of \[D]day!
+\endverse
+\beginverse
+^All Thy works with ^joy sur^round Thee;
+^Earth and heav'n re^flect Thy rays.
+^Stars and angels ^sing a^round Thee,
+^Center of un^broken ^praise.
+^Field and ^forest, ^vale and ^mountain,
+^Flowery ^meadow, ^flash^ing ^sea,
+^Chanting bird, and ^flowing ^fountain,
+^Call us to re^joice in ^Thee.
+\endverse
+\beginverse
+^Thou art giving ^and for^giving,
+^Ever blessing, ^ever blest,
+^Wellspring of the ^joy of ^living,
+^Ocean depth of ^happy ^rest!
+^Thou our ^Father, ^Christ our ^Brother;
+^All who ^live in ^love ^are ^Thine.
+^Teach us how to ^love each ^other;
+^Lift us to the ^joy di^vine.
+\endverse
+\beginverse
+^Mortals, join the ^mighty ^chorus
+^Which the morning ^stars began.
+^Father love is ^reigning ^o'er us,
+^Brother love binds ^man to ^man.
+^Ever ^singing, ^march we ^onward,
+^Victors ^in the ^midst ^of ^strife.
+^Joyful music ^lifts us ^sunward
+^In the triumph ^song of ^life.
+\endverse
+\endsong
+
+\beginsong{O For A Thousand Tongues To Sing}[
+ by={Charles Wesley},
+ sr={Revelation 5:11-14; Isaiah 35:5-6},
+ cr={Public domain.}]
+\beginverse
+O \[G]for a \[D]thousand \[G]tongues \[D]to \[G]sing
+\[D]My \[G]great Re\[C]deem\[G]er's \[D]praise,
+The \[G]glories of my \[C]God and King,
+The \[G]triumphs of \[D]His \[G]grace!
+\endverse
+\beginverse
+My ^gracious ^Master ^and ^my ^God,
+^As^sist me ^to ^pro^claim,
+To ^spread through all the ^earth abroad
+The ^honors of ^Thy ^name.
+\endverse
+\beginverse
+Je^sus, the ^name that ^charms ^our ^fears,
+^That ^bids our ^sor^rows ^cease:
+'Tis ^music in the ^sinner's ears,
+'Tis ^life and health ^and ^peace.
+\endverse
+\beginverse
+He ^breaks the ^pow'r of ^can^celed ^sin,
+^He ^sets the ^pris'n^er ^free.
+His ^blood can make the ^foulest clean---
+His ^blood availed ^for ^me.
+\endverse
+\beginverse
+Hear ^Him, ye ^deaf! His ^praise, ^ye ^dumb,
+^Your ^loosened ^tongues ^em^ploy!
+Ye ^blind, behold your ^Savior come;
+And ^leap, ye lame, ^for ^joy!
+\endverse
+\endsong
+
+\beginsong{All Glory, Laud, And Honor}[
+ by={Theodulph of Orleans; translated by John Mason Neale},
+ sr={Matthew 21:9,15-16; Revelation 5:11-14},
+ cr={Public domain.}]
+\beginverse
+\[^(G)]All \[D]glory, laud, and \[G]honor
+To \[C]Thee, Re\[D]deemer, \[G]King,
+To \[D]Whom the lips of \[G]children
+Made \[C]sweet ho\[D]sannas \[G]ring:
+Thou \[G/B]art the King of \[D]Israel,
+Thou \[Em]David's \[A7]royal \[D]Son,
+Who \[G/B]in the \[(C)]Lord's name \[D]com\[Em]est,
+The \[Am]King and \[D]blessed \[G]one!
+\endverse
+\beginverse
+The ^company of ^angels
+Are ^praising ^Thee on ^high,
+And ^mortal men and ^all things
+Cre^ated ^make re^ply:
+The ^people of the ^Hebrews
+With ^palms be^fore Thee ^went;
+Our ^praise and ^prayer and ^an^thems
+Be^fore Thee ^we pre^sent.
+\endverse
+\beginverse
+To ^Thee, before Thy ^passion,
+They ^sang their ^hymns of ^praise;
+To ^Thee, now high ex^alted,
+Our ^melo^dy we ^raise:
+Thou ^didst accept their ^praises---
+Ac^cept the ^praise we ^bring,
+Who ^in all ^good de^light^est,
+Thou ^good and ^gracious ^King!
+\endverse
+\endsong
+
+\beginsong{All Hail The Power Of Jesus Name}[
+ by={Edward Perronet, John Rippon and Oliver Holden},
+ sr={Exodus 29:1-9},
+ cr={Public domain.},
+ index={Crown Him Lord of all}]
+\beginverse
+All \[D]hail the pow'r of \[A]Jesus' name;
+Let angels prostrate \[D]fall!
+\[A]Bring \[D]forth the royal \[A]dia\[D]dem,
+\[A]And \[D]crown \[A/C#]Him \[Bm]Lord \[E]of \[A]all;
+Bring \[D]forth the royal \[A]diadem,
+And \[D/F#]crown \[G]Him \[D/A A]Lord of \[D]all.
+\endverse
+\beginverse
+Ye ^chosen seed of ^Israel's race,
+Ye ransomed from the ^fall,
+^Hail ^Him who saves you ^by His ^grace,
+^And ^crown ^Him ^Lord ^of ^all;
+Hail ^Him who saves you ^by His grace,
+And ^crown ^Him ^Lord of ^all.
+\endverse
+\beginverse
+Let ^every kindred, ^every tribe
+On this terrestrial ^ball
+^To ^Him all majes^ty as^cribe,
+^And ^crown ^Him ^Lord ^of ^all;
+To ^Him all majes^ty ascribe,
+And ^crown ^Him ^Lord of ^all. \[B7]
+\endverse
+\transpose{2}
+\beginverse
+O ^that with yonder ^sacred throng,
+We at His feet may ^fall!
+^We'll ^join the ever^lasting ^song
+^And ^crown ^Him ^Lord ^of ^all;
+We'll ^join the ever^lasting song
+And ^crown ^Him ^Lord of ^all.
+\endverse
+\endsong
+
+\beginsong{Immortal Invisible}[
+ by={John Robert and Walter Chalmers Smith},
+ cr={Public domain.}]
+\capo{3}
+\beginverse
+Im\[G]mortal, in\[A]visible, \[D]God on\[A]ly \[D]wise,
+In \[G]light inac\[A]cessible, \[D]hid from \[A]our \[D]eyes,
+Most blessed, most glorious, the Ancient of \[A]Days,
+Al\[Bm]mighty, vic\[A]torious: Thy \[Gmaj7]great name \[A]we \[D]praise.
+\endverse
+\beginverse
+Un^resting, un^hasting, and ^silent ^as ^night,
+Nor ^wanting, nor ^wasting, Thou ^rulest ^in ^might:
+Thy justice, like mountains, high soaring ^above,
+Thy ^clouds, which are ^fountains of ^goodness ^and ^love.
+\endverse
+\beginverse
+To ^all life Thou ^givest, to ^both great ^and ^small.
+In ^all life Thou ^livest---the ^true Life ^of ^all.
+Thy wisdom so boundless, Thy mercy so ^free,
+E^ternal Thy ^goodness---for ^naught chang^eth ^Thee.
+\endverse
+\beginverse
+Great ^Father of ^glory, pure ^Father ^of ^light,
+Thine ^angels a^dore Thee, all ^veiling ^their ^sight.
+All praise we should render; O help us to ^see
+'Tis ^only the ^splendor of ^light hid^eth ^Thee!
+\endverse
+\endsong
+
+\beginsong{Take My Life And Let It Be}[
+ by={Francis Ridley Havergal and Henri A. C\'esar Malan},
+ sr={1 Corinthians 6:20},
+ cr={Public domain.}]
+\beginverse
+\[D]Take my life, and let it be
+\[Bm]Conse\[Em]crated, \[A]Lord, to \[D]Thee.
+Take my \[A]moments \[A7/C#]and my \[D]days;
+Let them \[G]flow in \[D]ceaseless \[A]praise.
+\[D]Let them \[Bm]flow \[Em]in \[A]ceaseless \[D]praise.
+\endverse
+\beginverse
+^Take my hands, and let them move
+^At the ^impulse ^of Thy ^love.
+Take my ^feet, and ^let them ^be
+Swift and ^beauti^ful for ^Thee,
+^Swift and ^beau^ti^ful for ^Thee.
+\endverse
+\beginverse
+^Take my voice, and let me sing
+^Always, ^only, ^for my ^King.
+Take my ^lips, and ^let them ^be
+Filled with ^messag^es from ^Thee,
+^Filled with ^mes^sag^es from ^Thee.
+\endverse
+\beginverse
+^Take my silver and my gold;
+^Not a ^mite would ^I with^hold.
+Take my ^intel^lect, and ^use
+Every ^pow'r as ^Thou shalt ^choose,
+^Every ^pow'r ^as ^Thou shalt ^choose. \[B7]
+\endverse
+\transpose{2}
+\beginverse
+^Take my will, and make it Thine;
+^It shall ^be no ^longer ^mine.
+Take my ^heart, it ^is Thine ^own;
+It shall ^be Thy ^royal ^throne.
+^It shall ^be ^Thy ^royal ^throne.
+\endverse
+\beginverse
+^Take my love, my Lord, I pour
+^At Thy ^feet its ^treasure ^store.
+Take my^self, and ^I will ^be
+Ever, ^only, ^all for ^Thee,
+^Ever, ^on^ly, ^all for ^Thee.
+\endverse
+\endsong
+
+\beginsong{Christ The Lord Is Risen Today}[
+ by={Charles Wesley},
+ sr={Matthew 28:6; Mark 16:6; Luke 24:6; John 21:14; 1 Corinthians 15:55},
+ cr={Public domain.}]
+\beginverse
+\[A]Christ the Lord is \[D]risen to\[A]day, Al\[Bm7]le\[E7]lu\[A]ia!
+\[D/F#]Sons of \[D]men and \[Bm7]angels \[E7]say: \[A]Al\[Bm7]le\[E7]lu\[A]ia!
+\[E]Raise your joys and \[A]tri\[E]umphs \[A]high: \[E]Al\[F#m7]le\[B7]lu\[E]ia!
+\[E7]Sing, ye \[A]heavens and \[D]earth re\[A]ply: Al\[Bm7]le\[E7]lu\[A]ia!
+\endverse
+\beginverse
+^Lives again our ^glorious ^King: Al^le^lu^ia!
+^Where, O ^death, is ^now thy ^sting? ^Al^le^lu^ia!
+^Dying once, He ^all ^doth ^save: ^Al^le^lu^ia!
+^Where thy ^victo^ry, O ^grave? Al^le^lu^ia!
+\endverse
+\beginverse
+^Love's redeeming ^work is ^done: Al^le^lu^ia!
+^Fought the ^fight, the ^battle ^won: ^Al^le^lu^ia!
+^Death in vain for^bids ^Him ^rise: ^Al^le^lu^ia!
+^Christ hath ^opened ^para^dise: Al^le^lu^ia!
+\endverse
+\beginverse
+^Sing we to our ^God a^bove: Al^le^lu^ia!
+^Praise e^ternal ^as His ^love: ^Al^le^lu^ia!
+^Praise Him, all ye ^heaven^ly ^host: ^Al^le^lu^ia!
+^Father, ^Son, and ^Holy ^Ghost: Al^le^lu^ia!
+\endverse
+\endsong
+
+\beginsong{I Sing The Mighty Power Of God}[
+ by={Isaac Watts},
+ sr={Genesis 1:31; Psalm 136:4-9,25-26; Romans 1:20},
+ cr={Public domain.}]
+\beginverse
+I \[G]sing the mighty \[Em]pow'r \[(Am)]of \[D]God
+\[(G)]That \[C]made the \[D]mountains \[G]rise,
+That spread the flowing \[Em]seas \[(Am)]a\[D]broad
+\[(G)]And \[C]built the \[D]lofty \[G]skies.
+I \[G]sing the wis\[(C)]dom \[D]that ordained
+The \[G]sun to rule \[(C)]the \[D]day;
+The \[G]moon shines full at \[Em]His \[(Am)]com\[D]mand
+\[(G)]And \[C]all the \[D]stars o\[G]bey.
+\endverse
+\beginverse
+I ^sing the goodness ^of ^the ^Lord,
+^That ^filled the ^earth with ^food;
+He formed the creatures ^with ^His ^word
+^And ^then pro^nounced them ^good.
+Lord, ^how Thy won^ders ^are displayed
+Wher^e'er I turn ^my ^eye,
+If ^I survey the ^ground ^I ^tread,
+^Or ^gaze up^on the ^sky!
+\endverse
+\beginverse
+There's ^not a plant or ^flow'r ^be^low,
+^But ^makes Thy ^glories ^known;
+And clouds arise and ^tem^pests ^blow
+^By ^order ^from Thy ^throne,
+While ^all that bor^rows ^life from Thee
+Is ^ever in ^Thy ^care,
+And ^everywhere that ^man ^can ^be,
+^Thou, ^God, art ^present ^there.
+\endverse
+\endsong
+
+\beginsong{All Creatures Of Our God And King}[
+ by={St. Francis of Assisi; translated by William H. Draper},
+ sr={Psalm 103:22},
+ cr={Public domain.}]
+\beginverse
+\[C]All creatures \[Am]of our God and \[G]King,
+\[C]Lift up your \[Am]voice and with us \[G]sing:
+\[C]Alle\[F]lu\[C]ia! \[Am]Alle\[D]lu\[G]ia!
+\[C]Thou burning \[Am]sun with golden \[G]beam,
+\[C/E]Thou silver \[Fmaj7]moon with softer \[G]gleam:
+\endverse
+\beginchorus
+\[F]O \[G]praise \[C/E]Him! \[Dm7]O \[Gsus4]praise \[Am]Him!
+\[Am]Alle\[D]lu\[Em]ia! \[C/E]Alle\[D]lu\[G/B]ia! \[Dm]Alle\[G]lu\[C]ia!
+\endchorus
+\beginverse
+^Thou rushing ^wind that art so ^strong,
+^Ye clouds that ^sail in heav'n a^long:
+^O ^praise ^Him! ^Alle^lu^ia!
+^Thou rising ^morn, in praise re^joice;
+\[C]Ye lights of \[Am]evening, find a \[G]voice!
+\endverse
+\beginverse
+^Thou flowing ^water, pure and ^clear,
+^Make music ^for thy Lord to ^hear:
+^Alle^lu^ia! ^Alle^lu^ia!
+^Thou fire so ^masterful and ^bright,
+\[C]That givest \[Am]man both warmth and \[G]light:
+\endverse
+\beginverse
+^Let all things ^their Creator ^bless,
+^And worship ^Him in humble^ness.
+^O ^praise ^Him! ^Alle^lu^ia!
+^Praise, praise the ^Father, praise the ^Son,
+\[C]And praise the \[Am]Spirit, Three in \[G]One!
+\endverse
+\endsong
+
+\beginsong{A Mighty Fortress Is Our God}[
+ by={Martin Luther},
+ sr={Psalm 71:3-4},
+ cr={Public domain.}]
+\capo{1}
+\beginverse
+A \[A]mighty \[C#m]Fortress \[B7]is our \[E]God,
+A \[D]bulwark \[A]never \[E7]fail\[A]ing.
+Our helper \[C#m]He, a\[B7]mid the \[E]flood
+Of \[D]mortal \[A]ills pre\[E7]vail\[A]ing.
+For still our \[B7sus4]an\[B7]cient \[E]foe
+Doth \[A]seek to \[E/G#]work us \[F#m]woe;
+His craft and \[B7]pow'r are \[E]great,
+And \[Bm]armed with cruel \[C#]hate,
+On \[D]earth is \[A]not his \[E7]e\[A]qual.
+\endverse
+\beginverse
+Did ^we in ^our own ^strength con^fide,
+Our ^striving ^would be ^los^ing.
+Were not the ^right Man ^on our ^side,
+The ^Man of ^God's own ^choos^ing.
+Dost ask who ^that ^may ^be?
+Christ ^Jesus, ^it is ^He!
+Lord Saba^oth His ^name,
+From ^age to age the ^same;
+And ^He must ^win the ^bat^tle.
+\endverse
+\beginverse
+And ^though this ^world, with ^devils ^filled,
+Should ^threaten ^to un^do ^us,
+We will not ^fear; for ^God hath ^willed
+His ^truth to ^triumph ^through ^us.
+The prince of ^dark^ness ^grim---
+We ^trouble ^not for ^him.
+His rage we ^can en^dure,
+For ^Lo! his doom is ^sure:
+One ^little ^word shall ^fell ^him.
+\endverse
+\beginverse
+That ^word a^bove all ^earthly ^pow'rs---
+No ^thanks to ^them---a^bid^eth.
+The Spirit ^and the ^gifts are ^ours
+Through ^Him Who ^with us ^sid^eth.
+Let goods and ^kin^dred ^go,
+This ^mortal ^life al^so,
+The body ^they may ^kill;
+God's ^truth abideth ^still.
+His ^kingdom ^is for^ev^er.
+\endverse
+\endsong
+
diff --git a/macros/latex/contrib/songs/sample/transparencies.tex b/macros/latex/contrib/songs/sample/transparencies.tex
new file mode 100644
index 0000000000..400a3003b4
--- /dev/null
+++ b/macros/latex/contrib/songs/sample/transparencies.tex
@@ -0,0 +1,66 @@
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+
+\documentclass[letterpaper,oneside]{article}
+\usepackage[bookmarks]{hyperref}
+\usepackage[slides]{songs}
+% \includeonlysongs{2}
+
+\setlength{\oddsidemargin}{-0.5in}
+\setlength{\evensidemargin}{-0.5in}
+\setlength{\textwidth}{7.5in}
+\setlength{\topmargin}{-0.75in}
+\setlength{\topskip}{0in}
+\setlength{\headheight}{13.6pt}
+\setlength{\headsep}{0.5in}
+\setlength{\textheight}{9in}
+
+% Repeat the chorus on subsequent pages of a song so that the projector-
+% operator won't have to flip back to the first page for each chorus.
+% This feature is only supported for eTeX-compatible versions of LaTeX.
+\ifx\eTeXversion\undefined\else
+ \ifx\eTeXversion\relax\else
+ \repchoruses
+ \fi
+\fi
+
+% Define some headers for each slide to help the projector-operator
+% find the correct slide. We use the fancyhdr package for this.
+\IfFileExists{fancyhdr.sty}{
+ \usepackage{fancyhdr}
+ \usepackage{extramarks}
+ \pagestyle{fancy}
+ \fancyhf{}
+ \rhead{\sffamily\firstrightmark}
+ \renewcommand{\headrulewidth}{0pt}
+
+ \renewcommand{\songmark}{\markboth{}{\thesongnum}}
+ \renewcommand{\versemark}{\markboth{}{\thesongnum. \songtitle}}
+ \renewcommand{\chorusmark}{\markboth{}{\thesongnum. \songtitle}}
+}{}
+
+\begin{document}
+
+\begin{songs}{}
+\input{songs.sbd}
+\end{songs}
+
+\end{document}
+
diff --git a/macros/latex/contrib/songs/songidx/bible.can b/macros/latex/contrib/songs/songidx/bible.can
new file mode 100644
index 0000000000..eda272fcd3
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/bible.can
@@ -0,0 +1,200 @@
+# Copyright (C) 2018 Kevin W. Hamlen
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+# The latest version of this program can be obtained from
+# http://songs.sourceforge.net.
+#
+#
+# Filename: bible.can
+# Last modified: 2006/06/12
+#
+# The following Canon data file describes a composite of the Protestant,
+# Catholic, and Greek Orthodox Christian bibles. All books of all bibles
+# are represented. Where two bibles have a different number of chapters
+# or a different number of verses, the larger is used. The result is a
+# Canon file that should be adequate to generate scripture indexes for
+# songs referencing any of these biblical canons.
+#
+# File Format: In what follows, each book of the bible is represented by a
+# pair of lines: the first line lists the book title(s), and the second lists
+# the number of verses in each of the book's chapters. The first line may
+# list more than one title, separated by | characters. The first title listed
+# is the one used to generate the scripture index. The other titles, if any,
+# are recognized as aliases when they appear in "sr=" keyvals in the
+# \beginsong macro. Any of the titles may contain arbitrary LaTeX macros.
+# The order that books appear in this file dictates the order that they appear
+# when sorting the scripture index.
+Genesis
+031 025 024 026 032 022 024 022 029 032 032 020 018 024 021 016 027 033 038 018 034 024 020 067 034 035 046 022 035 043 055 032 020 031 029 043 036 030 023 023 057 038 034 034 028 034 031 022 033 026
+Exodus
+022 025 022 031 023 030 025 032 035 029 010 051 022 031 027 036 016 027 025 026 036 031 033 018 040 037 021 043 046 038 018 035 023 035 035 038 029 031 043 038
+Leviticus
+017 016 017 035 019 030 038 036 024 020 047 008 059 057 033 034 016 030 037 027 024 033 044 023 055 046 034
+Numbers
+054 034 051 049 031 027 089 026 023 036 035 016 033 045 041 050 013 032 022 029 035 041 030 025 018 065 023 031 040 016 054 042 056 029 034 013
+Deuteronomy
+046 037 029 049 033 025 026 020 029 022 032 032 018 029 023 022 020 022 021 020 023 030 025 022 019 019 026 068 029 020 030 052 029 012
+Joshua
+018 024 017 024 015 027 026 035 027 043 023 024 033 015 063 010 018 028 051 009 045 034 016 033
+Judges
+036 023 031 024 031 040 025 035 057 018 040 015 025 020 020 031 013 031 030 048 025
+Ruth
+022 023 018 022
+1 Samuel|1 Kingdoms
+028 036 021 022 012 021 017 022 027 027 015 025 023 052 035 023 058 030 024 042 015 023 029 022 044 025 012 025 011 031 013
+2 Samuel|2 Kingdoms
+027 032 039 012 025 023 029 018 013 019 027 031 039 033 037 023 029 033 043 026 022 051 039 025
+1 Kings|3 Kingdoms
+053 046 028 034 018 038 051 066 028 029 043 033 034 031 034 034 024 046 021 043 029 053
+2 Kings|4 Kingdoms
+018 025 027 044 027 033 020 029 037 036 021 021 025 029 038 020 041 037 037 021 026 020 037 020 030
+1 Chronicles
+054 055 024 043 026 081 040 040 044 014 047 040 014 017 029 043 027 017 019 008 030 019 032 031 031 032 034 021 030
+2 Chronicles
+017 018 017 022 014 042 022 018 031 019 023 016 022 015 019 014 019 034 011 037 020 012 021 027 028 023 009 027 036 027 021 033 025 033 027 023
+1 Esdras
+058 030 024 063 073 034 015 096 055
+2 Esdras
+011 070 013 024 017 022 028 036 015 044 011 020 032 023 019 019 073 018 038 039 036 047 031
+Ezra
+011 070 013 024 017 022 028 036 015 044
+Nehemiah
+011 020 032 023 019 019 073 018 038 039 036 047 031
+Tobit|Tobias
+025 023 025 023 028 022 020 024 012 013 021 022 023 017
+Judith
+012 018 015 016 029 021 025 034 019 020 021 020 031 018 015 031
+Esther
+022 023 015 017 014 014 010 017 032 013 012 006 018 019 019 024
+1 Macabees|1 Maccabees
+067 070 060 061 068 063 050 032 073 089 074 054 054 049 041 024
+2 Macabees|2 Maccabees
+036 033 040 050 027 031 042 036 029 038 038 046 026 046 040
+3 Macabees|3 Maccabees
+029 033 030 021 051 041 023
+4 Macabees|4 Maccabees
+035 024 021 026 038 035 023 028 032 021 027 019 027 020 032 025 024 024
+Job
+022 013 026 021 027 030 021 022 035 022 020 025 028 022 035 022 016 021 029 029 034 030 017 025 006 014 023 028 025 031 040 022 033 037 016 033 024 041 030 024 034 017
+Psalms|Psalm
+006 012 008 008 012 010 017 009 020 018 007 008 006 007 005 011 015 050 014 009 013 031 006 010 022 012 014 009 011 012 024 011 022 022 028 012 040 022 013 017 013 011 005 026 017 011 009 014 020 023 019 009 006 007 023 013 011 011 017 012 008 012 011 010 013 020 007 035 036 005 024 020 028 023 010 012 020 072 013 019 016 008 018 012 013 017 007 018 052 017 016 015 005 023 011 013 012 009 009 005 008 028 022 035 045 048 043 013 031 007 010 010 009 008 018 019 002 029 176 007 008 009 004 008 005 006 005 006 008 008 003 018 003 003 021 026 009 008 024 013 010 007 012 015 021 010 020 014 009 006 007
+Odes
+019 043 010 018 012 008 020 037 034 009 010 015 004 046
+Proverbs
+033 022 035 027 023 035 027 036 018 032 031 028 025 035 033 033 028 024 029 030 031 029 035 034 028 028 027 028 027 033 031
+Ecclesiastes
+018 026 022 016 020 012 029 017 018 020 010 014
+Song of Songs|Song of Solomon
+017 017 011 016 016 013 013 014
+Wisdom|Wisdom of Solomon
+016 025 019 020 024 027 030 021 019 021 027 027 019 031 019 029 020 025 020
+Sirach|Ecclesiasticus
+040 023 034 036 018 037 040 022 025 034 036 019 032 027 022 031 031 033 028 033 031 033 038 047 036 028 033 030 034 027 042 028 033 031 026 028 034 039 041 032 028 026 037 027 031 023 031 028 019 031 038
+Psalms of Solomon|Psalm of Solomon
+008 037 012 025 019 006 010 034 011 008 009 006 012 010 013 015 046 012
+Isaiah
+031 022 026 006 030 013 025 022 021 034 016 006 022 032 009 014 014 007 025 006 017 025 018 023 012 021 013 029 024 033 009 020 024 017 010 022 038 022 008 031 029 025 028 028 025 013 015 022 026 011 023 015 012 017 013 012 021 014 021 022 011 012 019 012 025 024
+Jeremiah
+019 037 025 031 031 030 034 022 026 025 023 017 027 022 021 021 027 023 015 018 014 030 040 010 038 024 022 017 032 024 040 044 026 022 019 032 021 028 018 016 018 022 013 030 005 028 007 047 039 046 064 034
+Lamentations
+022 022 066 022 022
+Baruch
+022 035 038 037 009 073
+Letter of Jeremiah
+073
+Ezekiel
+028 010 027 017 017 014 027 018 011 022 025 028 023 023 008 063 024 032 014 049 032 031 049 027 017 021 036 026 021 026 018 032 033 031 015 038 028 023 029 049 026 020 027 031 025 024 023 035
+Daniel
+021 049 100 034 031 028 028 027 027 021 045 013 065 042
+Hosea
+011 023 005 019 015 011 016 014 017 015 012 014 016 009
+Joel
+020 032 021
+Amos
+015 016 015 013 027 014 017 014 015
+Obadiah
+021
+Jonah
+017 010 010 011
+Micah
+016 013 012 013 015 016 020
+Nahum
+015 013 019
+Habakkuk
+017 020 019
+Zephaniah
+018 015 020
+Haggai
+015 023
+Zechariah
+021 013 010 014 011 015 014 023 017 012 017 014 009 021
+Malachi
+014 017 018 006
+Matthew
+025 023 017 025 048 034 029 034 038 042 030 050 058 036 039 028 027 035 030 034 046 046 039 051 046 075 066 020
+Mark
+045 028 035 041 043 056 037 038 050 052 033 044 037 072 047 020
+Luke
+080 052 038 044 039 049 050 056 062 042 054 059 035 035 032 031 037 043 048 047 038 071 056 053
+John
+051 025 036 054 047 071 053 059 041 042 057 050 038 031 027 033 026 040 042 031 025
+Acts
+026 047 026 037 042 015 060 040 043 048 030 025 052 028 041 040 034 028 041 038 040 030 035 027 027 032 044 031
+Romans
+032 029 031 025 021 023 025 039 033 021 036 021 014 026 033 025
+1 Corinthians
+031 016 023 021 013 020 040 013 027 033 034 031 013 040 058 024
+2 Corinthians
+024 017 018 018 021 018 016 024 015 018 033 021 014
+Galatians
+024 021 029 031 026 018
+Ephesians
+023 022 021 032 033 024
+Philippians
+030 030 021 023
+Colossians
+029 023 025 018
+1 Thessalonians
+010 020 013 018 028
+2 Thessalonians
+012 017 018
+1 Timothy
+020 015 016 016 025 021
+2 Timothy
+018 026 017 022
+Titus
+016 015 015
+Philemon
+025
+Hebrews
+014 018 019 016 014 020 028 013 028 039 040 029 025
+James
+027 026 018 017 020
+1 Peter
+025 025 022 019 014
+2 Peter
+021 022 018
+1 John
+010 029 024 021 021
+2 John
+013
+3 John
+014
+Jude
+025
+Revelation
+020 029 022 011 014 017 017 013 021 011 019 017 018 020 008 021 018 024 021 015 027 021
diff --git a/macros/latex/contrib/songs/songidx/catholic.can b/macros/latex/contrib/songs/songidx/catholic.can
new file mode 100644
index 0000000000..0fef3b3c8b
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/catholic.can
@@ -0,0 +1,174 @@
+# Copyright (C) 2018 Kevin W. Hamlen
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+# The latest version of this program can be obtained from
+# http://songs.sourceforge.net.
+#
+#
+# Filename: catholic.can
+# Last modified: 2006/06/12
+#
+# The following Canon data file describes the layout of the Catholic Bible.
+# The deuterocanonical books are included, along with the additional verses
+# in Esther and Daniel.
+#
+Genesis
+031 025 024 026 032 022 024 022 029 032 032 020 018 024 021 016 027 033 038 018 034 024 020 067 034 035 046 022 035 043 055 032 020 031 029 043 036 030 023 023 057 038 034 034 028 034 031 022 033 026
+Exodus
+022 025 022 031 023 030 025 032 035 029 010 051 022 031 027 036 016 027 025 026 036 031 033 018 040 037 021 043 046 038 018 035 023 035 035 038 029 031 043 038
+Leviticus
+017 016 017 035 019 030 038 036 024 020 047 008 059 057 033 034 016 030 037 027 024 033 044 023 055 046 034
+Numbers
+054 034 051 049 031 027 089 026 023 036 035 016 033 045 041 050 013 032 022 029 035 041 030 025 018 065 023 031 040 016 054 042 056 029 034 013
+Deuteronomy
+046 037 029 049 033 025 026 020 029 022 032 032 018 029 023 022 020 022 021 020 023 030 025 022 019 019 026 068 029 020 030 052 029 012
+Joshua
+018 024 017 024 015 027 026 035 027 043 023 024 033 015 063 010 018 028 051 009 045 034 016 033
+Judges
+036 023 031 024 031 040 025 035 057 018 040 015 025 020 020 031 013 031 030 048 025
+Ruth
+022 023 018 022
+1 Samuel
+028 036 021 022 012 021 017 022 027 027 015 025 023 052 035 023 058 030 024 042 015 023 029 022 044 025 012 025 011 031 013
+2 Samuel
+027 032 039 012 025 023 029 018 013 019 027 031 039 033 037 023 029 033 043 026 022 051 039 025
+1 Kings
+053 046 028 034 018 038 051 066 028 029 043 033 034 031 034 034 024 046 021 043 029 053
+2 Kings
+018 025 027 044 027 033 020 029 037 036 021 021 025 029 038 020 041 037 037 021 026 020 037 020 030
+1 Chronicles
+054 055 024 043 026 081 040 040 044 014 047 040 014 017 029 043 027 017 019 008 030 019 032 031 031 032 034 021 030
+2 Chronicles
+017 018 017 022 014 042 022 018 031 019 023 016 022 015 019 014 019 034 011 037 020 012 021 027 028 023 009 027 036 027 021 033 025 033 027 023
+Ezra
+011 070 013 024 017 022 028 036 015 044
+Nehemiah
+011 020 032 023 019 019 073 018 038 039 036 047 031
+Tobit|Tobias
+025 023 025 023 028 022 020 024 012 013 021 022 023 017
+Judith
+012 018 015 016 029 021 025 034 019 020 021 020 031 018 015 031
+Esther
+022 023 015 017 014 014 010 017 032 013 012 006 018 019 019 024
+1 Macabees
+067 070 060 061 068 063 050 032 073 089 074 054 054 049 041 024
+2 Macabees
+036 033 040 050 027 031 042 036 029 038 038 046 026 046 040
+Job
+022 013 026 021 027 030 021 022 035 022 020 025 028 022 035 022 016 021 029 029 034 030 017 025 006 014 023 028 025 031 040 022 033 037 016 033 024 041 030 024 034 017
+Psalms|Psalm
+006 012 008 008 012 010 017 009 020 018 007 008 006 007 005 011 015 050 014 009 013 031 006 010 022 012 014 009 011 012 024 011 022 022 028 012 040 022 013 017 013 011 005 026 017 011 009 014 020 023 019 009 006 007 023 013 011 011 017 012 008 012 011 010 013 020 007 035 036 005 024 020 028 023 010 012 020 072 013 019 016 008 018 012 013 017 007 018 052 017 016 015 005 023 011 013 012 009 009 005 008 028 022 035 045 048 043 013 031 007 010 010 009 008 018 019 002 029 176 007 008 009 004 008 005 006 005 006 008 008 003 018 003 003 021 026 009 008 024 013 010 007 012 015 021 010 020 014 009 006
+Proverbs
+033 022 035 027 023 035 027 036 018 032 031 028 025 035 033 033 028 024 029 030 031 029 035 034 028 028 027 028 027 033 031
+Ecclesiastes
+018 026 022 016 020 012 029 017 018 020 010 014
+Song of Songs|Song of Solomon
+017 017 011 016 016 013 013 014
+Wisdom|Wisdom of Solomon
+016 025 019 020 024 027 030 021 019 021 027 027 019 031 019 029 020 025 020
+Sirach|Ecclesiasticus
+040 023 034 036 018 037 040 022 025 034 036 019 032 027 022 031 031 033 028 033 031 033 038 047 036 028 033 030 034 027 042 028 033 031 026 028 034 039 041 032 028 026 037 027 031 023 031 028 019 031 038
+Isaiah
+031 022 026 006 030 013 025 022 021 034 016 006 022 032 009 014 014 007 025 006 017 025 018 023 012 021 013 029 024 033 009 020 024 017 010 022 038 022 008 031 029 025 028 028 025 013 015 022 026 011 023 015 012 017 013 012 021 014 021 022 011 012 019 012 025 024
+Jeremiah
+019 037 025 031 031 030 034 022 026 025 023 017 027 022 021 021 027 023 015 018 014 030 040 010 038 024 022 017 032 024 040 044 026 022 019 032 021 028 018 016 018 022 013 030 005 028 007 047 039 046 064 034
+Lamentations
+022 022 066 022 022
+Baruch
+022 035 038 037 009 073
+Ezekiel
+028 010 027 017 017 014 027 018 011 022 025 028 023 023 008 063 024 032 014 049 032 031 049 027 017 021 036 026 021 026 018 032 033 031 015 038 028 023 029 049 026 020 027 031 025 024 023 035
+Daniel
+021 049 100 034 031 028 028 027 027 021 045 013 065 042
+Hosea
+011 023 005 019 015 011 016 014 017 015 012 014 016 009
+Joel
+020 032 021
+Amos
+015 016 015 013 027 014 017 014 015
+Obadiah
+021
+Jonah
+017 010 010 011
+Micah
+016 013 012 013 015 016 020
+Nahum
+015 013 019
+Habakkuk
+017 020 019
+Zephaniah
+018 015 020
+Haggai
+015 023
+Zechariah
+021 013 010 014 011 015 014 023 017 012 017 014 009 021
+Malachi
+014 017 018 006
+Matthew
+025 023 017 025 048 034 029 034 038 042 030 050 058 036 039 028 027 035 030 034 046 046 039 051 046 075 066 020
+Mark
+045 028 035 041 043 056 037 038 050 052 033 044 037 072 047 020
+Luke
+080 052 038 044 039 049 050 056 062 042 054 059 035 035 032 031 037 043 048 047 038 071 056 053
+John
+051 025 036 054 047 071 053 059 041 042 057 050 038 031 027 033 026 040 042 031 025
+Acts
+026 047 026 037 042 015 060 040 043 048 030 025 052 028 041 040 034 028 041 038 040 030 035 027 027 032 044 031
+Romans
+032 029 031 025 021 023 025 039 033 021 036 021 014 026 033 025
+1 Corinthians
+031 016 023 021 013 020 040 013 027 033 034 031 013 040 058 024
+2 Corinthians
+024 017 018 018 021 018 016 024 015 018 033 021 014
+Galatians
+024 021 029 031 026 018
+Ephesians
+023 022 021 032 033 024
+Philippians
+030 030 021 023
+Colossians
+029 023 025 018
+1 Thessalonians
+010 020 013 018 028
+2 Thessalonians
+012 017 018
+1 Timothy
+020 015 016 016 025 021
+2 Timothy
+018 026 017 022
+Titus
+016 015 015
+Philemon
+025
+Hebrews
+014 018 019 016 014 020 028 013 028 039 040 029 025
+James
+027 026 018 017 020
+1 Peter
+025 025 022 019 014
+2 Peter
+021 022 018
+1 John
+010 029 024 021 021
+2 John
+013
+3 John
+014
+Jude
+025
+Revelation
+020 029 022 011 014 017 017 013 021 011 019 017 018 020 008 021 018 024 021 015 027 021
diff --git a/macros/latex/contrib/songs/songidx/greek.can b/macros/latex/contrib/songs/songidx/greek.can
new file mode 100644
index 0000000000..a807cc6b2c
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/greek.can
@@ -0,0 +1,187 @@
+# Copyright (C) 2018 Kevin W. Hamlen
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+# The latest version of this program can be obtained from
+# http://songs.sourceforge.net.
+#
+#
+# Filename: greek.can
+# Last modified: 2006/06/12
+#
+# The following Canon data file describes the layout of the Greek Orthodox
+# Christian Bible. It includes the deuterocanonical books along with
+# 1 Esdras, 3 & 4 Maccabees, and Odes. Greek Orthodox names for the books
+# are used, including 1-4 Kingdoms, 2 Esdras, and Letter of Jeremiah. The
+# extra verses of Esther and Daniel are also included, as well as the 151st
+# Psalm.
+#
+Genesis
+031 025 024 026 032 022 024 022 029 032 032 020 018 024 021 016 027 033 038 018 034 024 020 067 034 035 046 022 035 043 055 032 020 031 029 043 036 030 023 023 057 038 034 034 028 034 031 022 033 026
+Exodus
+022 025 022 031 023 030 025 032 035 029 010 051 022 031 027 036 016 027 025 026 036 031 033 018 040 037 021 043 046 038 018 035 023 035 035 038 029 031 043 038
+Leviticus
+017 016 017 035 019 030 038 036 024 020 047 008 059 057 033 034 016 030 037 027 024 033 044 023 055 046 034
+Numbers
+054 034 051 049 031 027 089 026 023 036 035 016 033 045 041 050 013 032 022 029 035 041 030 025 018 065 023 031 040 016 054 042 056 029 034 013
+Deuteronomy
+046 037 029 049 033 025 026 020 029 022 032 032 018 029 023 022 020 022 021 020 023 030 025 022 019 019 026 068 029 020 030 052 029 012
+Joshua
+018 024 017 024 015 027 026 035 027 043 023 024 033 015 063 010 018 028 051 009 045 034 016 033
+Judges
+036 023 031 024 031 040 025 035 057 018 040 015 025 020 020 031 013 031 030 048 025
+Ruth
+022 023 018 022
+1 Kingdoms|1 Samuel
+028 036 021 022 012 021 017 022 027 027 015 025 023 052 035 023 058 030 024 042 015 023 029 022 044 025 012 025 011 031 013
+2 Kingdoms|2 Samuel
+027 032 039 012 025 023 029 018 013 019 027 031 039 033 037 023 029 033 043 026 022 051 039 025
+3 Kingdoms|1 Kings
+053 046 028 034 018 038 051 066 028 029 043 033 034 031 034 034 024 046 021 043 029 053
+4 Kingdoms|2 Kings
+018 025 027 044 027 033 020 029 037 036 021 021 025 029 038 020 041 037 037 021 026 020 037 020 030
+1 Chronicles
+054 055 024 043 026 081 040 040 044 014 047 040 014 017 029 043 027 017 019 008 030 019 032 031 031 032 034 021 030
+2 Chronicles
+017 018 017 022 014 042 022 018 031 019 023 016 022 015 019 014 019 034 011 037 020 012 021 027 028 023 009 027 036 027 021 033 025 033 027 023
+1 Esdras
+058 030 024 063 073 034 015 096 055
+2 Esdras
+011 070 013 024 017 022 028 036 015 044 011 020 032 023 019 019 073 018 038 039 036 047 031
+Tobit|Tobias
+025 023 025 023 028 022 020 024 012 013 021 022 023 017
+Judith
+012 018 015 016 029 021 025 034 019 020 021 020 031 018 015 031
+Esther
+022 023 015 017 014 014 010 017 032 013 012 006 018 019 019 024
+1 Macabees|1 Maccabees
+067 070 060 061 068 063 050 032 073 089 074 054 054 049 041 024
+2 Macabees|2 Maccabees
+036 033 040 050 027 031 042 036 029 038 038 046 026 046 040
+3 Macabees|3 Maccabees
+029 033 030 021 051 041 023
+4 Macabees|4 Maccabees
+035 024 021 026 038 035 023 028 032 021 027 019 027 020 032 025 024 024
+Job
+022 013 026 021 027 030 021 022 035 022 020 025 028 022 035 022 016 021 029 029 034 030 017 025 006 014 023 028 025 031 040 022 033 037 016 033 024 041 030 024 034 017
+Psalms|Psalm
+006 012 008 008 012 010 017 009 020 018 007 008 006 007 005 011 015 050 014 009 013 031 006 010 022 012 014 009 011 012 024 011 022 022 028 012 040 022 013 017 013 011 005 026 017 011 009 014 020 023 019 009 006 007 023 013 011 011 017 012 008 012 011 010 013 020 007 035 036 005 024 020 028 023 010 012 020 072 013 019 016 008 018 012 013 017 007 018 052 017 016 015 005 023 011 013 012 009 009 005 008 028 022 035 045 048 043 013 031 007 010 010 009 008 018 019 002 029 176 007 008 009 004 008 005 006 005 006 008 008 003 018 003 003 021 026 009 008 024 013 010 007 012 015 021 010 020 014 009 006 007
+Odes
+019 043 010 018 012 008 020 037 034 009 010 015 004 046
+Proverbs
+033 022 035 027 023 035 027 036 018 032 031 028 025 035 033 033 028 024 029 030 031 029 035 034 028 028 027 028 027 033 031
+Ecclesiastes
+018 026 022 016 020 012 029 017 018 020 010 014
+Song of Songs|Song of Solomon
+017 017 011 016 016 013 013 014
+Wisdom|Wisdom of Solomon
+016 025 019 020 024 027 030 021 019 021 027 027 019 031 019 029 020 025 020
+Sirach|Ecclesiasticus
+040 023 034 036 018 037 040 022 025 034 036 019 032 027 022 031 031 033 028 033 031 033 038 047 036 028 033 030 034 027 042 028 033 031 026 028 034 039 041 032 028 026 037 027 031 023 031 028 019 031 038
+Psalms of Solomon|Psalm of Solomon
+008 037 012 025 019 006 010 034 011 008 009 006 012 010 013 015 046 012
+Isaiah
+031 022 026 006 030 013 025 022 021 034 016 006 022 032 009 014 014 007 025 006 017 025 018 023 012 021 013 029 024 033 009 020 024 017 010 022 038 022 008 031 029 025 028 028 025 013 015 022 026 011 023 015 012 017 013 012 021 014 021 022 011 012 019 012 025 024
+Jeremiah
+019 037 025 031 031 030 034 022 026 025 023 017 027 022 021 021 027 023 015 018 014 030 040 010 038 024 022 017 032 024 040 044 026 022 019 032 021 028 018 016 018 022 013 030 005 028 007 047 039 046 064 034
+Lamentations
+022 022 066 022 022
+Baruch
+022 035 038 037 009
+Letter of Jeremiah
+073
+Ezekiel
+028 010 027 017 017 014 027 018 011 022 025 028 023 023 008 063 024 032 014 049 032 031 049 027 017 021 036 026 021 026 018 032 033 031 015 038 028 023 029 049 026 020 027 031 025 024 023 035
+Daniel
+021 049 100 034 031 028 028 027 027 021 045 013 065 042
+Hosea
+011 023 005 019 015 011 016 014 017 015 012 014 016 009
+Joel
+020 032 021
+Amos
+015 016 015 013 027 014 017 014 015
+Obadiah
+021
+Jonah
+017 010 010 011
+Micah
+016 013 012 013 015 016 020
+Nahum
+015 013 019
+Habakkuk
+017 020 019
+Zephaniah
+018 015 020
+Haggai
+015 023
+Zechariah
+021 013 010 014 011 015 014 023 017 012 017 014 009 021
+Malachi
+014 017 018 006
+Matthew
+025 023 017 025 048 034 029 034 038 042 030 050 058 036 039 028 027 035 030 034 046 046 039 051 046 075 066 020
+Mark
+045 028 035 041 043 056 037 038 050 052 033 044 037 072 047 020
+Luke
+080 052 038 044 039 049 050 056 062 042 054 059 035 035 032 031 037 043 048 047 038 071 056 053
+John
+051 025 036 054 047 071 053 059 041 042 057 050 038 031 027 033 026 040 042 031 025
+Acts
+026 047 026 037 042 015 060 040 043 048 030 025 052 028 041 040 034 028 041 038 040 030 035 027 027 032 044 031
+Romans
+032 029 031 025 021 023 025 039 033 021 036 021 014 026 033 025
+1 Corinthians
+031 016 023 021 013 020 040 013 027 033 034 031 013 040 058 024
+2 Corinthians
+024 017 018 018 021 018 016 024 015 018 033 021 014
+Galatians
+024 021 029 031 026 018
+Ephesians
+023 022 021 032 033 024
+Philippians
+030 030 021 023
+Colossians
+029 023 025 018
+1 Thessalonians
+010 020 013 018 028
+2 Thessalonians
+012 017 018
+1 Timothy
+020 015 016 016 025 021
+2 Timothy
+018 026 017 022
+Titus
+016 015 015
+Philemon
+025
+Hebrews
+014 018 019 016 014 020 028 013 028 039 040 029 025
+James
+027 026 018 017 020
+1 Peter
+025 025 022 019 014
+2 Peter
+021 022 018
+1 John
+010 029 024 021 021
+2 John
+013
+3 John
+014
+Jude
+025
+Revelation
+020 029 022 011 014 017 017 013 021 011 019 017 018 020 008 021 018 024 021 015 027 021
diff --git a/macros/latex/contrib/songs/songidx/protestant.can b/macros/latex/contrib/songs/songidx/protestant.can
new file mode 100644
index 0000000000..fd7da82bdd
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/protestant.can
@@ -0,0 +1,160 @@
+# Copyright (C) 2018 Kevin W. Hamlen
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+# The latest version of this program can be obtained from
+# http://songs.sourceforge.net.
+#
+#
+# Filename: protestant.can
+# Last modified: 2006/06/12
+#
+# The following Canon data file describes the layout of the Protestant Bible.
+# Books of the Apocrypha are omitted, as are the extra chapters of Esther
+# and Daniel and the 151st Psalm.
+#
+Genesis
+031 025 024 026 032 022 024 022 029 032 032 020 018 024 021 016 027 033 038 018 034 024 020 067 034 035 046 022 035 043 055 032 020 031 029 043 036 030 023 023 057 038 034 034 028 034 031 022 033 026
+Exodus
+022 025 022 031 023 030 025 032 035 029 010 051 022 031 027 036 016 027 025 026 036 031 033 018 040 037 021 043 046 038 018 035 023 035 035 038 029 031 043 038
+Leviticus
+017 016 017 035 019 030 038 036 024 020 047 008 059 057 033 034 016 030 037 027 024 033 044 023 055 046 034
+Numbers
+054 034 051 049 031 027 089 026 023 036 035 016 033 045 041 050 013 032 022 029 035 041 030 025 018 065 023 031 040 016 054 042 056 029 034 013
+Deuteronomy
+046 037 029 049 033 025 026 020 029 022 032 032 018 029 023 022 020 022 021 020 023 030 025 022 019 019 026 068 029 020 030 052 029 012
+Joshua
+018 024 017 024 015 027 026 035 027 043 023 024 033 015 063 010 018 028 051 009 045 034 016 033
+Judges
+036 023 031 024 031 040 025 035 057 018 040 015 025 020 020 031 013 031 030 048 025
+Ruth
+022 023 018 022
+1 Samuel
+028 036 021 022 012 021 017 022 027 027 015 025 023 052 035 023 058 030 024 042 015 023 029 022 044 025 012 025 011 031 013
+2 Samuel
+027 032 039 012 025 023 029 018 013 019 027 031 039 033 037 023 029 033 043 026 022 051 039 025
+1 Kings
+053 046 028 034 018 038 051 066 028 029 043 033 034 031 034 034 024 046 021 043 029 053
+2 Kings
+018 025 027 044 027 033 020 029 037 036 021 021 025 029 038 020 041 037 037 021 026 020 037 020 030
+1 Chronicles
+054 055 024 043 026 081 040 040 044 014 047 040 014 017 029 043 027 017 019 008 030 019 032 031 031 032 034 021 030
+2 Chronicles
+017 018 017 022 014 042 022 018 031 019 023 016 022 015 019 014 019 034 011 037 020 012 021 027 028 023 009 027 036 027 021 033 025 033 027 023
+Ezra
+011 070 013 024 017 022 028 036 015 044
+Nehemiah
+011 020 032 023 019 019 073 018 038 039 036 047 031
+Esther
+022 023 015 017 014 014 010 017 032 003
+Job
+022 013 026 021 027 030 021 022 035 022 020 025 028 022 035 022 016 021 029 029 034 030 017 025 006 014 023 028 025 031 040 022 033 037 016 033 024 041 030 024 034 017
+Psalms|Psalm
+006 012 008 008 012 010 017 009 020 018 007 008 006 007 005 011 015 050 014 009 013 031 006 010 022 012 014 009 011 012 024 011 022 022 028 012 040 022 013 017 013 011 005 026 017 011 009 014 020 023 019 009 006 007 023 013 011 011 017 012 008 012 011 010 013 020 007 035 036 005 024 020 028 023 010 012 020 072 013 019 016 008 018 012 013 017 007 018 052 017 016 015 005 023 011 013 012 009 009 005 008 028 022 035 045 048 043 013 031 007 010 010 009 008 018 019 002 029 176 007 008 009 004 008 005 006 005 006 008 008 003 018 003 003 021 026 009 008 024 013 010 007 012 015 021 010 020 014 009 006
+Proverbs
+033 022 035 027 023 035 027 036 018 032 031 028 025 035 033 033 028 024 029 030 031 029 035 034 028 028 027 028 027 033 031
+Ecclesiastes
+018 026 022 016 020 012 029 017 018 020 010 014
+Song of Songs|Song of Solomon
+017 017 011 016 016 013 013 014
+Isaiah
+031 022 026 006 030 013 025 022 021 034 016 006 022 032 009 014 014 007 025 006 017 025 018 023 012 021 013 029 024 033 009 020 024 017 010 022 038 022 008 031 029 025 028 028 025 013 015 022 026 011 023 015 012 017 013 012 021 014 021 022 011 012 019 012 025 024
+Jeremiah
+019 037 025 031 031 030 034 022 026 025 023 017 027 022 021 021 027 023 015 018 014 030 040 010 038 024 022 017 032 024 040 044 026 022 019 032 021 028 018 016 018 022 013 030 005 028 007 047 039 046 064 034
+Lamentations
+022 022 066 022 022
+Ezekiel
+028 010 027 017 017 014 027 018 011 022 025 028 023 023 008 063 024 032 014 049 032 031 049 027 017 021 036 026 021 026 018 032 033 031 015 038 028 023 029 049 026 020 027 031 025 024 023 035
+Daniel
+021 049 030 037 031 028 028 027 027 021 045 013
+Hosea
+011 023 005 019 015 011 016 014 017 015 012 014 016 009
+Joel
+020 032 021
+Amos
+015 016 015 013 027 014 017 014 015
+Obadiah
+021
+Jonah
+017 010 010 011
+Micah
+016 013 012 013 015 016 020
+Nahum
+015 013 019
+Habakkuk
+017 020 019
+Zephaniah
+018 015 020
+Haggai
+015 023
+Zechariah
+021 013 010 014 011 015 014 023 017 012 017 014 009 021
+Malachi
+014 017 018 006
+Matthew
+025 023 017 025 048 034 029 034 038 042 030 050 058 036 039 028 027 035 030 034 046 046 039 051 046 075 066 020
+Mark
+045 028 035 041 043 056 037 038 050 052 033 044 037 072 047 020
+Luke
+080 052 038 044 039 049 050 056 062 042 054 059 035 035 032 031 037 043 048 047 038 071 056 053
+John
+051 025 036 054 047 071 053 059 041 042 057 050 038 031 027 033 026 040 042 031 025
+Acts
+026 047 026 037 042 015 060 040 043 048 030 025 052 028 041 040 034 028 041 038 040 030 035 027 027 032 044 031
+Romans
+032 029 031 025 021 023 025 039 033 021 036 021 014 026 033 025
+1 Corinthians
+031 016 023 021 013 020 040 013 027 033 034 031 013 040 058 024
+2 Corinthians
+024 017 018 018 021 018 016 024 015 018 033 021 014
+Galatians
+024 021 029 031 026 018
+Ephesians
+023 022 021 032 033 024
+Philippians
+030 030 021 023
+Colossians
+029 023 025 018
+1 Thessalonians
+010 020 013 018 028
+2 Thessalonians
+012 017 018
+1 Timothy
+020 015 016 016 025 021
+2 Timothy
+018 026 017 022
+Titus
+016 015 015
+Philemon
+025
+Hebrews
+014 018 019 016 014 020 028 013 028 039 040 029 025
+James
+027 026 018 017 020
+1 Peter
+025 025 022 019 014
+2 Peter
+021 022 018
+1 John
+010 029 024 021 021
+2 John
+013
+3 John
+014
+Jude
+025
+Revelation
+020 029 022 011 014 017 017 013 021 011 019 017 018 020 008 021 018 024 021 015 027 021
diff --git a/macros/latex/contrib/songs/songidx/songidx.lua b/macros/latex/contrib/songs/songidx/songidx.lua
new file mode 100644
index 0000000000..6ac12c2411
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/songidx.lua
@@ -0,0 +1,1073 @@
+-- Copyright (C) 2018 Kevin W. Hamlen
+--
+-- This program is free software; you can redistribute it and/or
+-- modify it under the terms of the GNU General Public License
+-- as published by the Free Software Foundation; either version 2
+-- of the License, or (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with this program; if not, write to the Free Software
+-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+-- MA 02110-1301, USA.
+--
+-- The latest version of this program can be obtained from
+-- http://songs.sourceforge.net.
+
+
+VERSION = "3.1"
+BIBLEDEFAULT = "bible.can"
+
+-- fileopen(<filename>)
+-- Open <filename> for reading, returning a filestate table on success or
+-- nil on failure.
+function fileopen(fnam)
+ local handle
+ if fnam ~= "-" then
+ local msg,errno
+ handle,msg,errno = io.open(fnam, "r")
+ if not handle then
+ io.stderr:write("songidx: Unable to open ",fnam," for reading.\n",
+ "Error ",errno,": ",msg,"\n")
+ return nil
+ end
+ else
+ handle = io.stdin
+ fnam = "stdin"
+ end
+ return { f=handle, filename=fnam, lineno=0 }
+end
+
+-- filereadln(<fstate>)
+-- Read a line of input, returning the string or nil if at file-end.
+function filereadln(fs)
+ fs["lineno"] = fs["lineno"] + 1
+ local s = fs["f"]:read()
+ if not s then return nil end
+ return s
+end
+
+-- closeout(<handle>)
+-- Close an output file <handle>.
+function closeout(handle)
+ if handle == io.stdout then handle:flush()
+ else handle:close() end
+end
+
+-- errorout(<handle>)
+-- Respond to a write failure to <handle>.
+function errorout(handle)
+ closeout(handle)
+ io.stderr:write("songidx: Error writing to output file. Aborting.\n")
+ return 2
+ end
+
+-- fileclose(<fstate>)
+-- Close file table <fstate>.
+function fileclose(fs)
+ if (fs["f"] ~= io.stdin) then fs["f"]:close() end
+ fs["f"] = nil
+ fs["filename"] = nil
+ fs["lineno"] = 0
+end
+
+-- numprefix(<string>)
+-- Find the longest prefix of <string> that represents a number (according to
+-- the current locale) and contains no whitespace. Return the number and the
+-- suffix of <string> not parsed. If there is no such prefix, return false
+-- and the original <string>.
+function numprefix(s)
+ local _, len = unicode.utf8.find(s,"^%S*")
+ for i=len, 1, -1 do
+ local n = tonumber(s:sub(1,i))
+ if n then return n, s:sub(i+1) end
+ end
+ return false, s
+end
+
+-- cleantitle(<song>)
+-- Remove macros and braces from <song>'s title, and convert it to uppercase.
+-- Macro-spaces ("\ ") are converted to regular spaces (" "). Cache the
+-- result to avoid re-cleaning during sorting.
+function cleantitle(s)
+ if not s["clean"] then
+ local t = s["title"]:gsub("\\[^%a%s]","")
+ :gsub("\\(%s)","%1")
+ :gsub("\\%a+%s*","")
+ :gsub("{%s*","")
+ :gsub("}","")
+ s["clean"] = unicode.utf8.upper(t)
+ end
+ return s["clean"]
+end
+
+-- songcmp(<song1>,<song2>)
+-- Return true if <song1> is less than <song2>, and false otherwise. The
+-- ordering is first by title, then by index. This function is suitable for
+-- use with table.sort().
+function songcmp(s1,s2)
+ local t1 = cleantitle(s1)
+ local t2 = cleantitle(s2)
+
+ while true do
+ -- Find the next word or number in each string.
+ t1, t2 = unicode.utf8.match(t1,"%w.*"), unicode.utf8.match(t2,"%w.*")
+
+ -- If there is no next word/number in both, sort by index. If there is
+ -- no next word/number in one but not the other, sort the shorter string
+ -- before the longer one.
+ if not t1 then
+ if not t2 then break end
+ return true
+ elseif not t2 then return false end
+
+ -- If one is a number, sort the number before the word. If both are
+ -- numbers (and are not equal), then sort in numerical order.
+ local n1, n2
+ n1, t1 = numprefix(t1)
+ n2, t2 = numprefix(t2)
+ if n1 then
+ if not n2 or n1 < n2 then return true end
+ if n1 > n2 then return false end
+ elseif n2 then return false
+ else
+ -- Otherwise, both are words. Lexicographically compare the words
+ -- according to the current locale's collation conventions. If the
+ -- locale considers them "equal" (i.e., w1<w2 is false but w1<=w2 is true)
+ -- then continue the loop to consider the next pair of words.
+ local w1, w2 = unicode.utf8.match(t1,"^[%a'`]*"),
+ unicode.utf8.match(t2,"^[%a'`]*")
+ local diff = w1 < w2
+ if diff or not (w1 <= w2) then return diff end
+ t1, t2 = t1:sub(#w1+1), t2:sub(#w2+1)
+ end
+ end
+
+ -- If all corresponding words/numbers are equal, then sort alternate-form
+ -- entries (e.g., lyrics) after normal entries (e.g., titles)
+ local alt1, alt2 = s1["title"]:sub(1,1), s2["title"]:sub(1,1)
+ if alt1 == "*" and alt2 ~= "*" then return false end
+ if alt1 ~= "*" and alt2 == "*" then return true end
+
+ -- If everything is the same, sort by the right-hand sides of the index
+ -- entries (e.g., the song or page numbers).
+ return s1["idx"] < s2["idx"]
+end
+
+-- setstartchars(<array>)
+-- Try to find canonical "start characters" for each block of songs in a
+-- sorted <array> of songs. Since Lua doesn't currently have any means of
+-- imparting a locale's alphabet, we adopt the following strategy: Extract
+-- the first unicode character from each title in the sorted list of titles
+-- until reaching one that the locale's collation algorithm says is "bigger"
+-- than the last. Find the "smallest" first character in that set using
+-- NON-UNICODE lexicographic sort. This tends to be the most canonical one,
+-- since unicode tends to put canonical (e.g., no-accent) glyphs at lower
+-- code points than non-canonical (e.g., accented) ones. (Unfortunately, if
+-- none of the titles in the block start with the desired canonical glyph,
+-- there's no way to guess it; we just use the best one available.)
+function setstartchars(songs)
+ local start = 1
+ local best
+
+ for i=1, #songs do
+ local c = unicode.utf8.match(cleantitle(songs[i]),"%w")
+ if c then
+ c = unicode.utf8.upper(c)
+ if not best then
+ songs[start]["newblk"], start, best = "\\#", i, c
+ elseif best < c then
+ songs[start]["newblk"], start, best = best, i, c
+ elseif #c < #best then best = c
+ elseif #c == #best then
+ for j=1,#c do
+ if c:byte(j) < best:byte(j) then best = c; break
+ elseif c:byte(j) > best:byte(j) then break end
+ end
+ end
+ elseif best then
+ songs[start]["newblk"], start, best = best, i, nil
+ end
+ end
+
+ if start <= #songs then
+ if best then
+ songs[start]["newblk"] = best
+ else
+ songs[start]["newblk"] = "\\#"
+ end
+ end
+end
+
+wt_prefix = { A=true, THE=true }
+wt_and = { AND=true }
+wt_by = { BY=true }
+wt_unknown = { UNKNOWN=true }
+
+-- rotate(<title>)
+-- If the first word of <title> is any word in wt_prefix, then shift that word
+-- to the end of the string, preceded by a comma and a space. So for example,
+-- if wt_prefix contains "The", then rotate("The title") returns "Title, The".
+-- Words in wt_prefix are matched case-insensitively, and the new first word
+-- becomes capitalized. If <title> begins with the marker character '*',
+-- that character is ignored and left unchanged.
+function rotate(s)
+ local t = unicode.utf8.upper(s)
+ local n = 0
+ if s:sub(1,1) == "*" then n = 1 end
+ for pre in pairs(wt_prefix) do
+ if t:sub(1+n,n+#pre) == pre and
+ unicode.utf8.find(t, "^%s+%S", n+#pre+1) then
+ local len = unicode.utf8.len(pre)
+ local x, y, z = unicode.utf8.match(unicode.utf8.sub(s,n+len+1),"^%s+(%W*)(%w?)(.*)$")
+ return s:sub(1,n) .. x .. unicode.utf8.upper(y) .. z:gsub("\\%s","%0\1"):match("^(.-)%s*$"):gsub("\1","") .. ",~" .. unicode.utf8.sub(s,1+n,n+len)
+ end
+ end
+ return s
+end
+
+-- matchany(<string>,<init>,<wordtable>)
+-- If a word in <wordtable> case-insensitively matches to <string> starting
+-- at index <init>, and if the match concludes with whitespace, then return
+-- the index of the whitespace; otherwise return <init>.
+function matchany(s,init,wt)
+ local t = s:sub(init)
+ local u = unicode.utf8.upper(t)
+ for w,_ in pairs(wt) do
+ if u:sub(1,#w) == w and
+ (#w == #u or unicode.utf8.find(u, "^%s", #w+1)) then
+ return init + #(unicode.utf8.sub(t,1,unicode.utf8.len(w)))
+ end
+ end
+ return init
+end
+
+-- issuffix(<string>,<init>)
+-- Return true if the abbreviation "Jr" or a roman numeral (followed by
+-- nothing, space, period, comma, or semicolon) appears at position <init>
+-- within <string>. Return false otherwise.
+function issuffix(s,i)
+ return unicode.utf8.find(s, "^Jr$", i) or
+ unicode.utf8.find(s, "^Jr[%s,;%.]", i) or
+ unicode.utf8.find(s, "^[IVX]+$", i) or
+ unicode.utf8.find(s, "^[IVX]+[%s,;%.]", i)
+end
+
+-- grabauthor(<string>)
+-- Return a string of the form "Sirname, Restofname" denoting the full name
+-- of the first author found in <string>; or return nil if no author name
+-- can be found. Also return an index to the suffix of <string> that was
+-- not parsed, and just the "Sirname" part as a stand-alone string.
+--
+-- Precondition: Caller must first sanitize <string> as follows:
+-- <string>:gsub("[\1\2\3]","")
+-- :gsub("\\\\","\\\1"):gsub("\\{","\\\2"):gsub("\\}","\\\3")
+--
+-- Postcondition: Caller must then unsanitize the returned <string> with:
+-- <string>:gsub("\1","\\"):gsub("\2","{"):gsub("\3","}")
+--
+-- This is to allow grabauthor() to safely use Lua's %b pattern to find
+-- balanced brace pairs without getting confused by escaped braces.
+--
+-- Heuristics:
+-- * Names are separated by punctuation (other than hyphens, periods,
+-- apostrophes, or backslashes) or by the word "and" (or whatever words
+-- are in wt_and).
+-- Special case: If a comma is followed by the abbreviation "Jr" or by a
+-- roman numeral, then the comma does NOT end the author's name.
+-- * If a name contains the word "by" (or anything in wt_by), then
+-- everything before it is not considered part of the name. (Let's hope
+-- nobody is named "By".)
+-- * The author's last name is always the last capitalized word in the
+-- name unless the last capitalized word is "Jr." or a roman numeral.
+-- In that case the author's last name is the penultimate captialized
+-- word.
+-- * If an author appears to have only a first name, or if the last name
+-- found according to the above heuristics is an abbreviation (ending in
+-- a period), look ahead in <string> until we find someone with a last
+-- name and use that one. This allows us to identify the first author in
+-- a string like "Joe, Billy E., and Bob Smith" to be "Joe Smith".
+-- * If the resultant name contains the word "unknown" (or any word in
+-- wt_unknown), it's probably not a real name. Recursively attempt
+-- to parse the next author.
+function grabauthor(authline,i)
+ i = unicode.utf8.find(authline, "[^%s,;]", i)
+ if not i then return nil end
+ i = unicode.utf8.find(authline, "%S", matchany(authline,i,wt_and))
+ if not i then return nil end
+ i = unicode.utf8.find(authline, "%S", matchany(authline,i,wt_by))
+ if not i then return nil end
+ local skip = (matchany(authline,i,wt_unknown) > i)
+
+ -- Set "first" to the index of the start of the first name, "last" to the
+ -- index of the start of the sirname, "suffix" to the index of any suffix
+ -- like "Jr." or "III" (or nil if there is none), and i to the index of the
+ -- first character beyond the end of this author's name.
+ local first,last,suffix = i,nil,nil
+ while i <= #authline do
+ while true do
+ local j = select(2,authline:find("^\\%A", i)) or
+ select(2,authline:find("^\\%a+%s*", i)) or
+ select(2,authline:find("^%b{}", i))
+ if not j then break end
+ i = j + 1
+ end
+ if i > #authline then break
+ elseif authline:sub(i,i) == "," then
+ local j = unicode.utf8.find(authline, "%S", i+1)
+ if j and issuffix(authline,j) then i = i + 1
+ else break end
+ elseif authline:sub(i,i) == ";" then break
+ elseif unicode.utf8.find(authline, "^%s", i) then
+ i = unicode.utf8.find(authline, "%S", i)
+ if not i then i = #authline + 1; break end
+ if matchany(authline, i, wt_and) > i then break end
+ skip = skip or (matchany(authline, i, wt_unknown) > i)
+ local j = matchany(authline, i, wt_by)
+ if j > i then
+ j = unicode.utf8.find(authline, "%S", j)
+ if not j then last = i; break end -- last name of "By"?
+ i,first,last,suffix = j,j,nil,nil
+ elseif issuffix(authline,i) then
+ suffix = i
+ elseif unicode.utf8.find(authline:sub(i):gsub("\\%A",""):gsub("\\%a+%s*",""),"^[%s{}'`\"]*%u") then
+ last,suffix = i,nil
+ end
+ else
+ i = select(2, unicode.utf8.find(authline, ".", i)) + 1
+ end
+ end
+
+ -- If an "unknown" word appeared, skip this entry and parse the next.
+ if skip then return grabauthor(authline,i) end
+
+ -- Find the sirname.
+ local sirname, fullname
+ if last then
+ sirname = unicode.utf8.gsub(authline:sub(last,(suffix or i)-1),
+ "([^%s,;\\])[%s,;]+$", "%1")
+ end
+ if not sirname or unicode.utf8.find(sirname, "%a%.$") then
+ -- Here's where it gets tough. We either have a single-word name, or the
+ -- last name ends in a "." which means maybe it's just a middle initial or
+ -- other abbreviation. We could be dealing with a line like, "Billy,
+ -- Joe E., and Bob Smith", in which case we have to go searching for the
+ -- real last name. To handle this case, we will try a recursive call.
+ local _,_,r = grabauthor(authline,i)
+ if r or not sirname then
+ fullname = unicode.utf8.gsub(authline:sub(first,i-1),
+ "([^%s,;\\])[%s,;]+$", "%1")
+ if r then return (r .. ", " .. fullname), i, r
+ else return fullname, i, nil end
+ end
+ end
+
+ -- Add the first name.
+ fullname = sirname .. ", " ..
+ unicode.utf8.gsub(authline:sub(first,(last or suffix or i)-1),
+ "([^%s,;\\])[%s,;]+$", "%1")
+
+ -- Add the suffix, if any.
+ if suffix then
+ fullname = fullname .. " " ..
+ unicode.utf8.gsub(authline:sub(suffix,i-1), "([^%s,;\\])[%s,;]+$", "%1")
+ end
+
+ return fullname, i, sirname
+end
+
+-- genindex(<fstate>,<outname>)
+-- Reads a title (if <authorindex>=false) or author (if <authorindex>=true)
+-- index data file from file table <fstate> and generates a new file named
+-- <outfile> containing a LaTeX title/author index.
+-- Return Value: 0 on success, 1 on warnings, or 2 on failure
+function genindex(fs,outname,authorindex)
+ local songs = {}
+ local seen = {}
+ local wt = { wt_sep, wt_after, wt_prefix, wt_ignore }
+ local typ = authorindex and "author" or "title"
+
+ io.stderr:write("songidx: Parsing ",typ," index data file ",fs["filename"],"...\n")
+
+ while true do
+ local buf = filereadln(fs)
+ if not buf then break end
+ if buf:sub(1,1) == "%" then
+ local j = buf:match("^()%%sep ") or
+ buf:match("^%%()after ") or
+ buf:match("^%%p()refix ") or
+ buf:match("^%%ig()nore ")
+ if j then
+ if not seen[j] then
+ for w in pairs(wt[j]) do wt[j][w] = nil end
+ seen[j] = true
+ end
+ wt[j][unicode.utf8.upper(buf:sub(buf:find(" ")+1))] = true
+ end
+ else
+ local snum = filereadln(fs)
+ if not snum then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": incomplete song entry (orphan ",typ,")\n")
+ return 2
+ end
+ local link = filereadln(fs)
+ if not link then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": incomplete song entry (missing hyperlink)\n")
+ return 2
+ end
+ if authorindex then
+ local i,a = 1
+ buf = buf:gsub("[\1\2\3]",""):gsub("\\\\","\\\1")
+ :gsub("\\{","\\\2"):gsub("\\}","\\\3")
+ while true do
+ a,i = grabauthor(buf, i)
+ if not a then break end
+ a = a:gsub("\1","\\"):gsub("\2","{"):gsub("\3","}")
+ table.insert(songs, {title=a, num=snum, linkname=link, idx=#songs})
+ end
+ else
+ buf = rotate(unicode.utf8.gsub(unicode.utf8.gsub(buf,"([^%s\\])%s+$","%1"),"^(%*?)%s+","%1"))
+ table.insert(songs, {title=buf, num=snum, linkname=link, idx=#songs})
+ end
+ end
+ end
+ fileclose(fs)
+
+ -- Sort the song table.
+ table.sort(songs, songcmp)
+ -- Find the index blocks.
+ setstartchars(songs)
+
+ -- Write the sorted data out to the output file.
+ io.stderr:write("songidx: Generating ",typ," index TeX file ",outname,"...\n")
+ local f,msg,errno
+ if outname == "-" then
+ f, outname = io.stdout, "stdout"
+ else
+ f,msg,errno = io.open(outname, "w")
+ if not f then
+ io.stderr:write("songidx: Unable to open ",outname," for writing.\n",
+ "Error ",errno,": ",msg,"\n")
+ return 2
+ end
+ end
+ for i=1, #songs do
+ if i>1 and songs[i]["title"] == songs[i-1]["title"] then
+ if not f:write("\\\\\\songlink{",songs[i]["linkname"],"}{",songs[i]["num"],"}") then return errorout(f) end
+ else
+ if songs[i]["newblk"] then
+ if i>1 then
+ if not f:write("}\n\\end{idxblock}\n") then return errorout(f) end
+ end
+ if not f:write("\\begin{idxblock}{",songs[i]["newblk"]) then return errorout(f) end
+ end
+ if songs[i]["title"]:find("^%*") then
+ if not f:write("}\n\\idxaltentry{",songs[i]["title"]:sub(2)) then return errorout(f) end
+ else
+ if not f:write("}\n\\idxentry{",songs[i]["title"]) then return errorout(f) end
+ end
+ if not f:write("}{\\songlink{",songs[i]["linkname"],"}{",songs[i]["num"],"}") then return errorout(f) end
+ end
+ end
+ if #songs > 0 then
+ if not f:write("}\n\\end{idxblock}\n") then return errorout(f) end
+ end
+
+ return 0
+end
+
+bible = {}
+chapX = 0
+
+-- readbible(<filename>)
+-- Read bible data file <filename> into the bible table. Return nil on error
+-- or true on success.
+function readbible(filename)
+ local fs = fileopen(filename)
+ if not fs then return nil end
+ bible = {}
+
+ while true do
+ local buf = filereadln(fs)
+ if not buf then break end
+ if buf:sub(1,1) ~= "#" and buf:find("%S") then
+ local t, vbuf = { name = buf:match("^[^|]*"),
+ aliases = "|" .. unicode.utf8.upper(buf) .. "|" }
+ repeat
+ vbuf = filereadln(fs)
+ if not vbuf then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": incomplete bible book entry (book title with no verses)\n")
+ fileclose(fs)
+ return nil
+ end
+ until vbuf:sub(1,1) ~= "#" and buf:find("%S")
+ if vbuf:find("[^%d%s]") then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": verse count includes a non-digit\n")
+ fileclose(fs)
+ return nil
+ end
+ for n in vbuf:gmatch("%d+") do
+ local i = tonumber(n)
+ if not i then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": invalid number ",n,"\n")
+ fileclose(fs)
+ return nil
+ end
+ i = math.floor(i)
+ if chapX < i+1 then chapX = i+1 end
+ table.insert(t, i)
+ end
+ table.insert(bible, t)
+ end
+ end
+
+ fileclose(fs)
+ return true
+end
+
+-- parseref(<string>,<init>,<book>,<chapter>)
+-- Interpret the characters starting at index <init> of <string> as a
+-- scripture reference, and return four values: (1) the index of the first
+-- character after <init> not parsed, (2) the book number parsed, (3) the
+-- chapter number parsed (or 1 if the book has only verses), and (4) the
+-- verse number parsed. Arguments <book> and <chapter> are the PREVIOUS book
+-- number and chapter parsed, or -1 if none. If book or chapter information
+-- is missing from <string>, they will be drawn from <book> and <chapter>.
+-- That way, successive calls can correctly parse a run-on string like
+-- "Philippians 3:1,5; 4:3", infering that "5" refers to "Philippians 3" and
+-- "4:3" refers to "Philippians". If the parser encounters an error in
+-- processing the book name (e.g., a book name was specified but not
+-- recognized), then #bible+1 is returned for the book. If no chapter or no
+-- verse is provided (e.g., the reference is just "Philippians" or
+-- "Philippians 3") then the chapter and/or verse are returned as -1.
+function parseref(s,i,book,ch)
+ local v = -1
+ i = unicode.utf8.find(s,"%S",i)
+ if not i then return nil end
+ local j = unicode.utf8.find(s,"[%d:]*%s*[,;%-]",i) or
+ unicode.utf8.find(s,"[%d:]*%s*$",i)
+ local bookname = "|" .. unicode.utf8.upper(unicode.utf8.match(s:sub(i,j-1), "(.-)%s*$")) .. "|"
+ i = j
+ if bookname ~= "||" then
+ book, ch = #bible+1, -1
+ for b,t in pairs(bible) do
+ if t["aliases"]:find(bookname, 1, true) then book = b; break end
+ end
+ end
+ j = unicode.utf8.find(s,"%D",i) or (#s+1)
+ if s:sub(j,j) == ":" then
+ ch, i = (tonumber(s:sub(i,j-1)) or -1), j+1
+ j = unicode.utf8.find(s,"%D",i) or (#s+1)
+ end
+ if ch<=0 and book>0 and #bible[book] == 1 then
+ -- Special case: This book has only one chapter.
+ ch = 1
+ end
+ if ch <= 0 then
+ ch = tonumber(s:sub(i,j-1)) or -1
+ else
+ v = tonumber(s:sub(i,j-1)) or -1
+ end
+ i = unicode.utf8.find(s,"%S",j)
+ if not i then i = #s+1
+ elseif not s:find("^[,;%-]",i) then return nil end
+ return i, book, ch, v
+end
+
+-- vlt(<chapter1>,<verse1>,<chapter2>,<verse2>)
+-- Return true if <chapter1>:<verse1> precedes <chapter2>:<verse2> and false
+-- otherwise.
+function vlt(ch1,v1,ch2,v2)
+ return ch1 < ch2 or (ch1 == ch2 and v1 < v2)
+end
+
+-- vinc(<book>,<chapter>,<verse>)
+-- Return the chapter,verse pair of the verse immediately following
+-- <chapter>:<verse> in <book>. If <chapter>:<verse> is the last verse in
+-- <book>, the returned chapter will not exist in <book>.
+function vinc(book,ch,v)
+ if v < bible[book][ch] then return ch, v+1 end
+ return ch+1, 1
+end
+
+-- vdec(<book>,<chapter>,<verse>)
+-- Return the chapter,verse pair of the verse immediately preceding
+-- <chapter>:<verse> in <book>. If <chapter> and <verse> are both 1,
+-- then 0,nil will be returned.
+function vdec(book,ch,v)
+ if v > 1 then return ch, v-1 end
+ return ch-1, bible[book][ch-1]
+end
+
+-- unpack_cv(<cv>)
+-- Decompose a chapter-verse key (computed as cv*chapX+v) into the original
+-- chapter and verse numbers.
+function unpack_cv(cv)
+ local v = cv % chapX
+ return (cv-v)/chapX, v
+end
+
+-- eqdom(<table1>,<table2>)
+-- Return true if two tables have identical domains; false otherwise.
+function eqdom(t1,t2)
+ for k,_ in pairs(t1) do if not t2[k] then return false end end
+ for k,_ in pairs(t2) do if not t1[k] then return false end end
+ return true
+end
+
+-- insertref(<is_add>,<changeset>,<chapter>,<verse>,<song>,<link>,<key>)
+-- Insert song <song>,<link>,<key> into the set of "adds" (if <is_add>=true)
+-- or "drops" (if <is_add>=false) for verse <chapter>:<verse> in <changeset>.
+-- A <changeset> is a table that maps cv's to {adds=<refset>, drops=<refset>}
+-- tables, where cv's are chapter-verse pairs encoded as chapter*chapX+verse.
+-- Each such entry denotes a verse where the set of songs that reference it
+-- changes. The "adds" field lists the songs that refer to this verse but
+-- not the previous one. The "drops" field lists the songs that refer to
+-- this verse but not the next. This formulation allows us to efficiently
+-- represent range-references (e.g., "Psalms 1:1-8") without creating a
+-- separate table entry for each verse in the range.
+-- Create a new entry for <chapter>:<verse> in <changeset> if it doesn't
+-- already exist. Return the new <changeset>.
+function insertref(is_add,set,ch,v,n,l,k)
+ if not set then set = {} end
+ local cv = ch*chapX+v
+ if not set[cv] then set[cv] = { adds={}, drops={} } end
+ set[cv][is_add and "adds" or "drops"][k] = { num=n, link=l }
+ return set
+end
+
+-- print_vrange(<file>,<book>,<ch1>,<v1>,<ch2>,<v2>,<lastchapter>)
+-- Output LaTeX material to file <file> for verse range <ch1>:<v1>--<ch2>:<v2>
+-- of book number <book>. Depending on <lastchapter>, the outputted material
+-- might be the start of a new index entry or the continuation of a previous
+-- entry. If <lastchapter> is positive, continue the previous entry and
+-- print the chapter of <ch1>:<v1> only if it differs from <lastchapter>. If
+-- <lastchapter> is negative, continue the previous entry and always print
+-- the chapter number of <ch1>:<v1>.
+function print_vrange(f,b,ch1,v1,ch2,v2,lch)
+ local r = f:write(lch == 0 and "\\idxentry{" or ",")
+
+ if v1 <= 0 then
+ if lch ~= 0 then r = r and f:write("\\thinspace ") end
+ r = r and f:write(ch1)
+ elseif 0 <= b and b < #bible and #bible[b] == 1 then
+ -- This book has only one chapter.
+ if lch ~= 0 then r = r and f:write("\\thinspace ") end
+ r = r and f:write(v1)
+ elseif lch <= 0 or lch ~= ch1 or ch1 ~= ch2 then
+ if lch ~= 0 then r = r and f:write(" ") end
+ r = r and f:write(ch1,":",v1)
+ else
+ if lch ~= 0 then r = r and f:write("\\thinspace ") end
+ r = r and f:write(v1)
+ end
+
+ if vlt(ch1,v1,ch2,v2) then
+ if v2 <= 0 then
+ r = r and f:write("--",ch2)
+ elseif ch1 ~= ch2 then
+ r = r and f:write("--",ch2,":",v2)
+ else
+ r = r and f:write("--",v2)
+ end
+ end
+
+ return r
+end
+
+-- print_reflist(<file>,<refset>)
+-- Output the list of song references given by <refset> in sorted order
+-- to file <file>.
+function print_reflist(f,t)
+ local r = true
+ local s = {}
+ for k,_ in pairs(t) do table.insert(s,k) end
+ table.sort(s)
+
+ local first = true
+ for _,k in ipairs(s) do
+ if first then first = false else r = r and f:write("\\\\") end
+ r = r and f:write("\\songlink{",t[k]["link"],"}{",t[k]["num"],"}")
+ end
+ return r
+end
+
+function debug_print_reflist(r)
+ local first = true
+ io.stderr:write("{")
+ for k,_ in pairs(r) do
+ if first then first=false else io.stderr:write(",") end
+ io.stderr:write(k)
+ end
+ io.stderr:write("}")
+end
+
+function debug_print_changeset(x)
+ if not x then io.stderr:write("nil") else
+ for cv,r in pairs(x) do
+ local ch,v = unpack_cv(cv)
+ io.stderr:write("{",ch,":",v," --> adds=")
+ debug_print_reflist(r["adds"])
+ io.stderr:write(", drops=")
+ debug_print_reflist(r["drops"])
+ io.stderr:write("}")
+ end
+ end
+end
+
+-- genscriptureindex(<fstate>,<outname>,<biblename>)
+-- Generate a LaTeX file named <outname> containing material suitable to
+-- typeset the scripture index data found in input file <fstate>. Input
+-- bible data from an ascii file named <biblename>. Return 0 on success,
+-- 1 if there were warnings, and 2 if there was a fatal error.
+function genscriptureindex(fs,outname,biblename)
+ local hadwarnings = 0
+ local idx = {}
+
+ io.stderr:write("songidx: Parsing scripture index data file ",fs["filename"],"...\n")
+
+ -- Read the bible data file into the bible array.
+ if not readbible(biblename) then return 2 end
+
+ -- Walk through the input file and construct a <changeset> for each book
+ -- of the bible. Each changeset represents the set of verses in that book
+ -- referred to by songs in the song book.
+ local key = 0
+ while true do
+ local ref = filereadln(fs)
+ if not ref then break end
+ local n = filereadln(fs)
+ if not n then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": incomplete song entry (orphan reference line)\n")
+ fileclose(fs)
+ return 2
+ end
+ local l = filereadln(fs)
+ if not l then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": incomplete song entry (missing hyperlink)\n")
+ fileclose(fs)
+ return 2
+ end
+ key = key + 1
+
+ local i = 1
+ local book, ch1, v1, ch2, v2 = -1, -1, -1, -1, -1
+ while i <= #ref do
+ i,book,ch1,v1 = parseref(ref,i,book,ch1)
+ ch2,v2 = ch1,v1
+ if not i then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Malformed scripture reference for song ",n,". Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if book < 1 then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," doesn't include a book name. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if book > #bible then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," references unknown book. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if ch1 < 1 then ch1 = 1 end
+ if ch1 > #bible[book] then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," refers to ",bible[book]["name"]," ",ch1,", which doesn't exist. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if v1 < 1 then v1 = 1 end
+ if v1 > bible[book][ch1] then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," refers to ",bible[book]["name"]," ",ch1,":",v1,", which doesn't exist. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+
+ if ref:sub(i,i) == "-" then
+ -- If the reference ends in a "-", it starts an explicit range.
+ -- Parse the next reference to find the range's end.
+ i = unicode.utf8.find(ref, "[^%s%-]", i)
+ if not i then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," has range with no limit. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ local book2
+ i,book2,ch2,v2 = parseref(ref,i,book,ch1)
+ if not i then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Malformed scripture reference for song ",n,". Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if book2 ~= book then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," appears to span books! Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ end
+ if ch2 < 1 then ch2 = #bible[book] end
+ if ch2 > #bible[book] then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," refers implicitly to ",bible[book]["name"]," ",ch2,", which doesn't exist. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if v2 < 1 then v2 = bible[book][ch2]
+ elseif v2 > bible[book][ch2] then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," refers implicitly to chapter ",ch2," of ",bible[book]["name"],", which doesn't exist. Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if vlt(ch2,v2,ch1,v1) then
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": WARNING: Scripture reference for song ",n," contains backwards range ",bible[book]["name"]," ",ch1,":",v1,"-",ch2,":",v2,". Ignoring it.\n")
+ hadwarnings = 1
+ break
+ end
+ if i < #ref then i = i + 1 end
+
+ idx[book] = insertref(true, idx[book], ch1, v1, n, l, key)
+ idx[book] = insertref(false, idx[book], ch2, v2, n, l, key)
+ end
+ end
+ fileclose(fs)
+
+ -- Now create the index .sbx file.
+ io.stderr:write("songidx: Generating scripture index TeX file ",outname,"...\n")
+ local f,msg,errno
+ if outname == "-" then
+ f, outname = io.stdout, "stdout"
+ else
+ f,msg,errno = io.open(outname, "w")
+ if not f then
+ io.stderr:write("songidx: Unable to open ",outname," for writing.\n",
+ "Error ",errno,": ",msg,"\n")
+ return 2
+ end
+ end
+
+ -- For each book of the bible the has songs that reference it, go through its
+ -- <changeset> and generate a sequence of index entries. Wherever possible,
+ -- compact adjacent entries that have identical <refset>'s so that we never
+ -- have two consecutive index entries with identical right-hand sides.
+ for b=1,#bible do
+ local x = idx[b]
+ if x then
+ -- io.stderr:write("idx[",b,"] = ")
+ -- debug_print_changeset(x)
+ local s, t = {}, {}
+ for cv,_ in pairs(x) do table.insert(s,cv) end
+ table.sort(s)
+ local lch = 0 -- 0=none, -1=force printing of chapter
+ local cv1 = s[1]
+ local ch1,v1 = unpack_cv(cv1)
+ if not f:write("\\begin{idxblock}{",bible[b]["name"],"}\n") then return errorout(f) end
+ for i,cv in ipairs(s) do
+ local this = x[cv]
+ local ch,v = unpack_cv(cv)
+ local ncv,nxt,nch,nv = s[i+1]
+ if ncv then
+ nxt,nch,nv = x[ncv], unpack_cv(ncv)
+ end
+ for k,r in pairs(this["adds"]) do t[k] = r end
+ local skip = false
+ if ncv and eqdom(this["drops"], nxt["adds"]) then
+ -- Set of drops here equals set of adds next time. There's at least
+ -- a chance that we can combine this item and the next one into a
+ -- single index entry.
+ local ch2, v2 = vinc(b,ch,v)
+ if not vlt(ch2,v2, nch,nv) then
+ -- If the next item is adjacent to this one, do nothing. Just let
+ -- the range in progress be extended. We'll output a single entry
+ -- for all of these adjacent verses when we reach the end.
+ skip = true
+ elseif eqdom(t, this["drops"]) then
+ -- Otherwise, if the next item is not adjacent but all refs are
+ -- dropped here, then print a partial entry to be continued with a
+ -- comma next time.
+ if not print_vrange(f,b,ch1,v1,ch,v,lch) then return errorout(f) end
+ lch = (ch1 == ch) and ch or -1
+ ch1, v1 = nch, nv
+ skip = true
+ end
+ end
+ if not skip then
+ if next(this["drops"]) then
+ -- Some songs get dropped here, and either the next item is not
+ -- adjacent to this one, or it's adjacent and the set of adds is not
+ -- the same. In either case, that means the set of refs changes at
+ -- this point, so we need to output a full entry (or finish the one
+ -- in progress).
+ if not (print_vrange(f,b,ch1,v1,ch,v,lch) and
+ f:write("}{") and
+ print_reflist(f,t) and
+ f:write("}\n")) then return errorout(f) end
+ for k,_ in pairs(this["drops"]) do t[k] = nil end
+ lch = 0
+ if not next(t) and ncv then
+ ch1, v1 = nch, nv
+ else
+ ch1, v1 = vinc(b,ch,v)
+ end
+ end
+ if next(t) and ncv and next(nxt["adds"]) and vlt(ch1,v1,nch,nv) then
+ -- There are verses between this item and the next which have refs,
+ -- but the refs change at the beginning of the next item. Make an
+ -- entry for the intermediate block of verses.
+ local ch2, v2 = vdec(b,nch,nv)
+ if not (print_vrange(f,b,ch1,v1,ch2,v2,lch) and
+ f:write("}{") and
+ print_reflist(f,t) and
+ f:write("}\n")) then return errorout(f) end
+ lch, ch1, v1 = 0, nch, nv
+ end
+ end
+ end
+ if not f:write("\\end{idxblock}\n") then return errorout(f) end
+ end
+ end
+
+ closeout(f)
+ return hadwarnings
+end
+
+-- Main program entry point
+function main()
+ local fs, biblename, inname, outname, locale
+
+ local i = 1
+ while arg[i] do
+ if arg[i] == "-v" or arg[i] == "--version" then
+ io.write("songidx ", VERSION, "\n",
+ "Copyright (C) 2018 Kevin W. Hamlen\n",
+ "License GPLv2: GNU GPL version 2 or later",
+ " <http://gnu.org/licenses/gpl.html>\n",
+ "This is free software: you are free to change and redistribute it.\n",
+ "There is NO WARRANTY, to the extent permitted by law.\n")
+ return 0
+ elseif arg[i] == "-h" or arg[i] == "--help" then
+ io.write("Syntax: ",arg[-1]," ",arg[0]," [options] input.sxd [output.sbx]\n",
+"Available options:\n",
+" -b FILE Set the bible format when generating a scripture index\n",
+" --bible FILE (default: ", BIBLEDEFAULT, ")\n",
+"\n",
+" -l LOCALE Override the default system locale (affecting how non-\n",
+" --locale LOCALE English characters are sorted). See your system help\n",
+" for valid LOCALEs.\n",
+"\n",
+" -h Display this help file and stop.\n",
+" --help\n",
+"\n",
+" -v Print version information and stop.\n",
+" --version\n",
+"\n",
+"If omitted, [output.sbx] defaults to the input filename but with the file\n",
+"extension renamed to '.sbx'. To read or write to stdin or stdout, use '-'\n",
+"in place of input.sxd or output.sbx.\n",
+"\n",
+"See http://songs.sourceforge.net for support.\n")
+ return 0
+ elseif arg[i] == "-b" or arg[i] == "--bible" then
+ if biblename then
+ io.stderr:write("songidx: multiple bible files specified\n")
+ return 2
+ end
+ i = i + 1
+ if arg[i] then
+ biblename = arg[i]
+ else
+ io.stderr:write("songidx: ",arg[i-1]," option requires an argument\n")
+ return 2
+ end
+ elseif arg[i] == "-l" or arg[i] == "--locale" then
+ if locale then
+ io.stderr:write("songidx: multiple locales specified\n")
+ return 2
+ end
+ i = i + 1
+ if arg[i] then
+ locale = arg[i]
+ else
+ io.stderr:write("songidx: ",arg[i-1]," requires an argument\n")
+ return 2
+ end
+ elseif arg[i] == "-o" or arg[i] == "--output" then
+ if outname then
+ io.stderr:write("songidx: multiple output files specified\n")
+ return 2
+ end
+ i = i + 1
+ if arg[i] then
+ outname = arg[i]
+ else
+ io.stderr:write("songidx: ",arg[i-1]," option requires an argument\n")
+ return 2
+ end
+ elseif arg[i]:sub(1,1) == "-" and arg[i] ~= "-" then
+ io.stderr:write("songidx: unknown option ",arg[i],"\n")
+ return 2
+ elseif not inname then inname = arg[i]
+ elseif not outname then outname = arg[i]
+ else
+ io.stderr:write("songidx: too many command line arguments\n")
+ return 2
+ end
+ i = i + 1
+ end
+
+ if not locale then
+ os.setlocale("")
+ elseif not os.setlocale(locale) then
+ io.stderr:write("songidx: invalid locale: ",locale,"\n")
+ return 2
+ end
+
+ if not inname then
+ io.stderr:write("songidx: no input file specified\n")
+ return 2
+ end
+ if not outname then
+ if inname == "-" then
+ outname = "-"
+ else
+ local n
+ outname,n = inname:gsub("%.[^%./\\]*$", ".sbx")
+ if n == 0 then outname = inname .. ".sbx" end
+ end
+ end
+ if not biblename then biblename = BIBLEDEFAULT end
+
+ fs = fileopen(inname)
+ if not fs then return 2 end
+
+ local retval = 2
+ local buf = filereadln(fs)
+ if not buf then
+ io.stderr:write("songidx:",fs["filename"],": file is empty\n")
+ fileclose(fs)
+ elseif buf == "TITLE INDEX DATA FILE" then
+ retval = genindex(fs,outname,false)
+ elseif buf == "SCRIPTURE INDEX DATA FILE" then
+ retval = genscriptureindex(fs,outname,biblename)
+ elseif buf == "AUTHOR INDEX DATA FILE" then
+ retval = genindex(fs,outname,true)
+ else
+ io.stderr:write("songidx:",fs["filename"],":",fs["lineno"],": file has unrecognized format\n")
+ fileclose(fs)
+ end
+
+ if retval == 0 then
+ io.stderr:write("songidx: Done!\n")
+ elseif retval == 1 then
+ io.stderr:write("songidx: COMPLETED WITH ERRORS. SEE ABOVE.\n")
+ else
+ io.stderr:write("songidx: FAILED. SEE ERROR MESSAGES ABOVE.\n")
+ end
+
+ return retval
+end
+
+os.exit(main())
+
diff --git a/macros/latex/contrib/songs/songidx/tanakh.can b/macros/latex/contrib/songs/songidx/tanakh.can
new file mode 100644
index 0000000000..3f67d2076e
--- /dev/null
+++ b/macros/latex/contrib/songs/songidx/tanakh.can
@@ -0,0 +1,100 @@
+# Copyright (C) 2018 Kevin W. Hamlen
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+# The latest version of this program can be obtained from
+# http://songs.sourceforge.net.
+#
+#
+# Filename: tanakh.can
+# Last modified: 2006/06/12
+#
+# The following Canon data file describes the layout of the Jewish Tanakh.
+# This includes the books of the Protestant Old Testament, but in a different
+# order and with Chronicles as one book (spanning the Protestant books of
+# 1 & 2 Chronicles) and Ezra as one book (spanning the Protestant books of
+# Ezra and Nehemiah).
+#
+Genesis
+031 025 024 026 032 022 024 022 029 032 032 020 018 024 021 016 027 033 038 018 034 024 020 067 034 035 046 022 035 043 055 032 020 031 029 043 036 030 023 023 057 038 034 034 028 034 031 022 033 026
+Exodus
+022 025 022 031 023 030 025 032 035 029 010 051 022 031 027 036 016 027 025 026 036 031 033 018 040 037 021 043 046 038 018 035 023 035 035 038 029 031 043 038
+Leviticus
+017 016 017 035 019 030 038 036 024 020 047 008 059 057 033 034 016 030 037 027 024 033 044 023 055 046 034
+Numbers
+054 034 051 049 031 027 089 026 023 036 035 016 033 045 041 050 013 032 022 029 035 041 030 025 018 065 023 031 040 016 054 042 056 029 034 013
+Deuteronomy
+046 037 029 049 033 025 026 020 029 022 032 032 018 029 023 022 020 022 021 020 023 030 025 022 019 019 026 068 029 020 030 052 029 012
+Joshua
+018 024 017 024 015 027 026 035 027 043 023 024 033 015 063 010 018 028 051 009 045 034 016 033
+Judges
+036 023 031 024 031 040 025 035 057 018 040 015 025 020 020 031 013 031 030 048 025
+Samuel
+028 036 021 022 012 021 017 022 027 027 015 025 023 052 035 023 058 030 024 042 015 023 029 022 044 025 012 025 011 031 013 027 032 039 012 025 023 029 018 013 019 027 031 039 033 037 023 029 033 043 026 022 051 039 025
+Kings
+053 046 028 034 018 038 051 066 028 029 043 033 034 031 034 034 024 046 021 043 029 053 018 025 027 044 027 033 020 029 037 036 021 021 025 029 038 020 041 037 037 021 026 020 037 020 030
+Isaiah
+031 022 026 006 030 013 025 022 021 034 016 006 022 032 009 014 014 007 025 006 017 025 018 023 012 021 013 029 024 033 009 020 024 017 010 022 038 022 008 031 029 025 028 028 025 013 015 022 026 011 023 015 012 017 013 012 021 014 021 022 011 012 019 012 025 024
+Jeremiah
+019 037 025 031 031 030 034 022 026 025 023 017 027 022 021 021 027 023 015 018 014 030 040 010 038 024 022 017 032 024 040 044 026 022 019 032 021 028 018 016 018 022 013 030 005 028 007 047 039 046 064 034
+Ezekiel
+028 010 027 017 017 014 027 018 011 022 025 028 023 023 008 063 024 032 014 049 032 031 049 027 017 021 036 026 021 026 018 032 033 031 015 038 028 023 029 049 026 020 027 031 025 024 023 035
+Hosea
+011 023 005 019 015 011 016 014 017 015 012 014 016 009
+Joel
+020 032 021
+Amos
+015 016 015 013 027 014 017 014 015
+Obadiah
+021
+Jonah
+017 010 010 011
+Micah
+016 013 012 013 015 016 020
+Nahum
+015 013 019
+Habakkuk
+017 020 019
+Zephaniah
+018 015 020
+Haggai
+015 023
+Zechariah
+021 013 010 014 011 015 014 023 017 012 017 014 009 021
+Malachi
+014 017 018 006
+Psalms|Psalm
+006 012 008 008 012 010 017 009 020 018 007 008 006 007 005 011 015 050 014 009 013 031 006 010 022 012 014 009 011 012 024 011 022 022 028 012 040 022 013 017 013 011 005 026 017 011 009 014 020 023 019 009 006 007 023 013 011 011 017 012 008 012 011 010 013 020 007 035 036 005 024 020 028 023 010 012 020 072 013 019 016 008 018 012 013 017 007 018 052 017 016 015 005 023 011 013 012 009 009 005 008 028 022 035 045 048 043 013 031 007 010 010 009 008 018 019 002 029 176 007 008 009 004 008 005 006 005 006 008 008 003 018 003 003 021 026 009 008 024 013 010 007 012 015 021 010 020 014 009 006
+Proverbs
+033 022 035 027 023 035 027 036 018 032 031 028 025 035 033 033 028 024 029 030 031 029 035 034 028 028 027 028 027 033 031
+Job
+022 013 026 021 027 030 021 022 035 022 020 025 028 022 035 022 016 021 029 029 034 030 017 025 006 014 023 028 025 031 040 022 033 037 016 033 024 041 030 024 034 017
+Song of Songs|Song of Solomon
+017 017 011 016 016 013 013 014
+Ruth
+022 023 018 022
+Lamentations
+022 022 066 022 022
+Ecclesiastes
+018 026 022 016 020 012 029 017 018 020 010 014
+Esther
+022 023 015 017 014 014 010 017 032 003
+Daniel
+021 049 030 037 031 028 028 027 027 021 045 013
+Ezra
+011 070 013 024 017 022 028 036 015 044 011 020 032 023 019 019 073 018 038 039 036 047 031
+Chronicles
+054 055 024 043 026 081 040 040 044 014 047 040 014 017 029 043 027 017 019 008 030 019 032 031 031 032 034 021 030 017 018 017 022 014 042 022 018 031 019 023 016 022 015 019 014 019 034 011 037 020 012 021 027 028 023 009 027 036 027 021 033 025 033 027 023
diff --git a/macros/latex/contrib/songs/songs.dtx b/macros/latex/contrib/songs/songs.dtx
new file mode 100644
index 0000000000..3f6889fda2
--- /dev/null
+++ b/macros/latex/contrib/songs/songs.dtx
@@ -0,0 +1,12455 @@
+% \iffalse meta-comment
+%
+% Copyright (C) 2018 Kevin W. Hamlen
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, 5th Floor, Boston,
+% MA 02110-1301, USA.
+%
+% The latest version of this program can be obtained from
+% http://songs.sourceforge.net.
+%
+% \fi
+%
+% \iffalse
+%<*driver>
+\ProvidesFile{songs.dtx}
+%</driver>
+%<package>\NeedsTeXFormat{LaTeX2e}
+%<package>\ProvidesPackage{songs}
+%<*package>
+ [2018/09/12 v3.1 Songs package]
+%</package>
+%
+%<*driver>
+\documentclass{ltxdoc}
+
+% This documentation compiles as part of the Songs self-installer, so it
+% needs to work even on tiny LaTeX installations with few packages. We
+% therefore try to be especially robust to missing package failures.
+\newcommand\trypackage[4][]{\IfFileExists{#2.sty}{\usepackage[#1]{#2}#3}{#4}}
+\trypackage{microtype}{\linepenalty=20 \parfillskip=0pt plus\textwidth\relax}{}
+\trypackage{lmodern}{\usepackage[T1]{fontenc}}{}
+\trypackage{ifpdf}{}{\expandafter\newif\csname ifpdf\endcsname\pdffalse}
+\trypackage{color}{}{}
+\ifpdf
+ \trypackage[bookmarks,linkbordercolor={.6 0 0}]{hyperref}{}{}
+\fi
+\usepackage[nopdfindex]{songs}
+
+% Provide back-up hyperlinking and color macros that do nothing,
+% in case the hyperref and/or color packages are absent.
+\providecommand\href[2]{#2}
+\providecommand\url[1]{#1}
+\providecommand\pdfbookmark[3][]{}
+\providecommand\hyperdef[3]{}
+\providecommand\hyperlink[2]{#2}
+\providecommand\texorpdfstring[2]{#1}
+\providecommand\definecolor[3]{}
+\providecommand\color[1]{}
+\providecommand\textcolor[2]{#2}
+\providecommand\microtypesetup[1]{}
+
+% Configure the document:
+\let\oldSE\StopEventually
+\EnableCrossrefs
+\CodelineIndex
+\RecordChanges
+%\OnlyDescription
+
+% Create the \Songs logo, if the musix13 font is available:
+\newcommand\Songs{\texorpdfstring{{\sffamily songs}}{songs}}
+\newcount\imode
+\imode=\interactionmode
+\batchmode
+\newfont\musicfont{musix13}
+\interactionmode=\imode
+\ifx\musicfont\nullfont\else
+ \newdimen\msize
+ \newcommand\wholenote{%
+ \msize4ex
+ \expandafter\ifx\csname musicfont\the\msize\endcsname\relax
+ \expandafter\newfont\csname musicfont\the\msize\endcsname
+ {musix13 at \the\msize}%
+ \fi
+ \kern.13ex
+ \raise.5ex\hbox{{\csname musicfont\the\msize\endcsname\symbol9}}%
+ \kern1.53ex
+ }
+ \renewcommand\Songs{\texorpdfstring{{\sffamily s\wholenote ngs}}{songs}}
+\fi
+
+% Create the logo for Christopher Rath's Songbook package:
+\newcommand{\Rath}{{\sffamily Song$\flat$ook}}
+
+% Colors
+\definecolor{myred}{rgb}{0.6,0,0}
+\definecolor{myblu}{rgb}{0,0,0.6}
+\definecolor{mygra}{gray}{0.33}
+\def\PrintDescribeMacro#1{\strut{\MacroFont\color{myred}\string#1}\ }
+\let\PrintMacroName\PrintDescribeMacro
+\def\PrintDescribeEnv#1{\strut{\MacroFont\color{myred}#1}\ }
+\let\PrintEnvName\PrintDescribeEnv
+{\makeatletter\gdef\verbatim@font{\normalfont\color{myblu}\ttfamily}}
+
+% For some reason, doc.sty removes the \verbatim@font customization hook
+% for \verb|...|. (Why??) That's not nice, so we put it back:
+{\makeatletter
+ \gdef\verb {\relax\ifmmode\hbox\else\leavevmode\null\fi
+ \bgroup \let\do\do@noligs \verbatim@nolig@list
+ \verbatim@font \verb@eol@error \let\do\@makeother \dospecials
+ \@ifstar{\@sverb}{\@vobeyspaces \frenchspacing \@sverb}}
+}
+
+% Define some environments to simulate the interior of a verse,
+% for showing samples in the documentation:
+{\makeatletter
+ \gdef\likeverse{%
+ \SB@insongtrue\SB@inversetrue
+ \SB@loadactives
+ \global\SB@ctail\SB@cr@
+ }
+ \gdef\chordheight{\SB@setbaselineskip}
+}
+
+% Typeset a block of LaTeX code:
+\newcommand\pfs{\parfillskip0pt plus1fil\relax}
+\newenvironment{codeblock}{%
+ \medskip
+ \begingroup
+ \ifdim\parindent=0pt \parindent=20pt\fi
+ \indent\vbox\bgroup
+ \hsize\linewidth
+ \advance\hsize-\parindent
+ \rightskip=0pt plus1fil\pfs
+ \parindent=0pt
+ \color{myblu}%
+ \obeylines
+}{%
+ \egroup\endgroup
+ \medskip
+}
+
+% Typeset a sample song or scripture quotation:
+\songcolumns{0}
+\newenvironment{sample}{%
+ \medskip
+ \noindent\hfil
+ \vbox\bgroup
+ \hsize.5\hsize
+ \advance\hsize-.5\columnsep
+ \versesep=5pt
+ \pfs
+}{%
+ \egroup{\pfs\par}\medskip
+}
+
+% Typeset a sample lyric book fragment:
+\newenvironment{lyrics}{%
+ \medskip
+ \noindent\hfil
+ \vbox\bgroup\begingroup
+ \hsize=.7\textwidth
+ \leftskip=20pt\rightskip=0pt plus1fil\pfs
+ \parindent=-20pt
+ \likeverse\obeylines
+}{%
+ \par\endgroup\egroup
+ \hfil{\pfs\par}
+ \medskip
+}
+
+% Typeset a sample chord book fragment:
+\newenvironment{chorded}{%
+ \medskip
+ \noindent\hfil
+ \vbox\bgroup\begingroup
+ \hsize=.7\textwidth
+ \leftskip=20pt\rightskip=0pt plus1fil\pfs
+ \parindent=-20pt
+ \likeverse\obeylines
+ \versesep=5pt\chordheight
+}{%
+ \par\endgroup\egroup
+ \hfil{\pfs\par}
+ \medskip
+}
+
+% Typeset a "<code> produces <text>" example:
+\newlength\prodlen
+\setlength{\prodlen}{2.7in}
+\newbox\prodbox
+\newcommand{\example}{%
+ \medskip\setbox\prodbox\hbox\bgroup\begingroup\color{myblu}%
+}
+\newcommand{\produces}{%
+ \endgroup\egroup
+ \indent
+ \vbox{\hbox to\prodlen{\unhbox\prodbox\hfil}}
+ \ {\it produces}\quad
+ \afterassignment\prodprefix
+ \setbox\prodbox\hbox
+}
+\newcommand{\prodprefix}{%
+ \likeverse\chordheight
+ \aftergroup\prodsuffix
+}
+\newcommand{\prodsuffix}{\unhbox\prodbox{\pfs\par}\medskip}
+\newbox\vcbox
+\newdimen\vcadjust
+\newcommand{\vcenterbox}[1]{%
+ \setbox\vcbox\vbox{\hbox{#1}}%
+ \vcadjust=.5\ht\vcbox
+ \advance\vcadjust by-6pt
+ \lower\vcadjust\box\vcbox
+}
+
+% Recode \DescribeMacro and \DescribeEnv to make nice pdfbookmark entries.
+% Also create some \MainImpl macros that make pdfbookmarks to help the reader
+% find the "real" implementations of important macros.
+\newcount\seclevel
+\newcommand\mybookmark[2]{%
+ \ifnum\value{subsection}=0 \seclevel=2
+ \else\ifnum\value{subsubsection}=0 \seclevel=3
+ \else\seclevel=4 \fi\fi
+ \setcounter{tocdepth}{4}%
+ \pdfbookmark[\the\seclevel]{#1}{#2}%
+ \setcounter{tocdepth}{3}%
+}
+{\makeatletter
+ \xdef\bschar{\@backslashchar}
+ \global\let\For\@for}
+\newcommand\DescMacro[1]{%
+ \ifhmode\unskip\fi
+ \mybookmark{\bschar\bschar#1}{macdef-#1}%
+ \expandafter\DescribeMacro\expandafter{\csname#1\endcsname}%
+ \hyperdef{macro}{#1}{}\unpenalty
+ \ignorespaces
+}
+\newcommand\DescMacroGroup[3]{%
+ \ifhmode\unskip\fi
+ \mybookmark{\bschar\bschar#2}{macdef-#1}%
+ \expandafter\DescribeMacro\expandafter{\csname#2\endcsname}%
+ \For\temp:=#3\do{\hyperdef{macro}{\temp}{}}\unpenalty
+ \ignorespaces
+}
+\newcommand\MainImpl[1]{%
+ \pdfbookmark[3]{\bschar\bschar#1}{mimpl-#1}%
+}
+\newcommand{\DescEnv}[1]{%
+ \ifhmode\unskip\fi
+ \mybookmark{#1}{envdef-#1}%
+ \DescribeEnv{#1}%
+ \hyperdef{env}{#1}{}\unpenalty
+ \ignorespaces
+}
+\newcommand{\MainEnvImpl}[1]{%
+ \mybookmark{#1}{eimpl-#1}%
+}
+
+% Create macros to hyperlink macro and environment names to their
+% documentation points.
+\newcommand{\mac}[1]{{\tt\hyperlink{macro.#1}{\textcolor{myblu}{\char92 #1}}}}
+\newcommand{\env}[1]{{\tt\hyperlink{env.#1}{\textcolor{myblu}{#1}}}}
+
+% Defining bookmarks for definitions of active characters is a little trickier
+% because many of these characters have special meanings either to TeX or to
+% PDF. The only reliable way is to insert an "\ooo" escape sequence into the
+% bookmark text, where ooo is the ascii number of the character expressed in
+% octal. To achieve this, we use `\string<symbol> to obtain the decimal
+% ascii number d of the symbol, then do some math (implemented in \octal)
+% to compute and tokenize each octal digit of d into the bookmark text.
+\newcount\cnta
+\newcount\cntb
+\newcommand\ooo{}
+\newcommand\octal{%
+ \cntb\cnta
+ \divide\cnta8
+ \multiply\cnta-8
+ \advance\cntb\cnta
+ \edef\ooo{\the\cntb\ooo}%
+ \divide\cnta-8
+}
+\newcommand{\DescChar}[2]{%
+ \ifhmode\unskip\fi
+ \expandafter\let\csname string#1\expandafter\endcsname
+ \expandafter=\string#2%
+ \cnta\expandafter`\string#2%
+ \def\ooo{}\octal\octal\octal
+ \mybookmark{\bschar\ooo}{#1def}%
+ {\def\SpecialUsageIndex##1{}%
+ \expandafter\DescribeMacro\string#2}%
+ \hyperdef{env}{#1}{}\unpenalty
+ \ignorespaces
+}
+\newcommand{\refchar}[1]{{\tt\hyperlink{env.#1}{\csname string#1\endcsname}}}
+
+% At the end of the implementation section we'll have a code line index of
+% macro definitions and usages. To make it look a bit less ragged than the
+% default index style and to conserve some space, we'll customize a few of
+% the parameters:
+
+\IndexPrologue{%
+ \subsection{Codeline Index}%
+ Underlined numbers refer to the code line where the corresponding entry
+ is defined; other numbers refer to the code lines where the entry
+ is used.}
+
+{\makeatletter
+
+ \gdef\IndexParms{%
+ \sfcode`,=1750
+ \parindent0pt
+ \columnsep15pt
+ \parskip0pt plus1pt
+ \rightskip0pt
+ \mathsurround0pt
+ \parfillskip0pt
+ \small
+ \microtypesetup{protrusion=false}%
+ \def\@idxitem{\par\hangindent15pt}%
+ \def\subitem{\@idxitem\hspace*{15pt}}%
+ \def\subsubitem{\@idxitem\hspace*{25pt}}%
+ \def\indexspace{\par\vspace{10pt plus 2pt minus 3pt}}}
+
+ \gdef\SpecialMainOptIndex#1{%
+ \@bsphack
+ \special@index{%
+ #1\actualchar{\string\ttfamily\space#1} (option)\encapchar main}%
+ \special@index{%
+ options:\levelchar
+ #1\actualchar{\string\ttfamily\space#1}\encapchar main}%
+ \@esphack}
+}
+
+% Create a conditional that typesets its first argument if we're including
+% the implementation section, otherwise typesets its second argument.
+\newcommand\ImplOrDesc[2]{%
+ \ifx\StopEventually\oldSE#1\else#2\fi
+}
+
+% Hyphenating the word "choruses" looks weird. No "ruses" please!
+\hyphenation{choruses white-space}
+
+% An environment for describing the implementation of a package option:
+\let\oldsmei\SpecialMainEnvIndex
+\newenvironment{option}[1]{%
+ \let\SpecialMainEnvIndex\SpecialMainOptIndex
+ \begin{environment}{#1}%
+ \let\SpecialMainEnvIndex\oldsmei
+}{%
+ \end{environment}%
+ \let\SpecialMainEnvIndex\oldsmei
+}
+
+% Describe the default setting for an option:
+\newcommand\optdef[1]{\noindent{\it(Default: #1)}\hspace{.5cm}}
+
+% Typeset a chord name:
+\newcommand{\chord}[1]{{\sffamily\slshape#1}}
+
+% Here are a few macros to produce nice syntax parameters:
+\newcommand\Meta[1]{{\color{mygra}\meta{#1}}}
+\newcommand\argp[1]{\Meta{arg#1}}
+\newcommand\Metarm[1]{\textrm{\Meta{#1}}}
+\newcommand\OR{\,$\mid$\,}
+\newcommand\SPC{\char`\ }
+
+% Now let's quell those annoying "Marginpar has moved" warning messages.
+{\makeatletter
+ \global\let\oldamp=\@addmarginpar
+ \global\let\oldlwnl=\@latex@warning@no@line
+ \gdef\@addmarginpar{%
+ \let\@latex@warning@no@line\@gobble
+ \oldamp
+ \let\@latex@warning@no@line\oldlwnl
+ }
+}
+
+% The \eat macro just gobbles its argument. I use it to appease my syntax
+% highlighter when it gets confused.
+\newcommand{\eat}[1]{}
+
+\begin{document}
+ \DocInput{songs.dtx}
+\end{document}
+%</driver>
+% \fi
+%
+% \CheckSum{8935}
+%
+% \CharacterTable
+% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+% Digits \0\1\2\3\4\5\6\7\8\9
+% Exclamation \! Double quote \" Hash (number) \#
+% Dollar \$ Percent \% Ampersand \&
+% Acute accent \' Left paren \( Right paren \)
+% Asterisk \* Plus \+ Comma \,
+% Minus \- Point \. Solidus \/
+% Colon \: Semicolon \; Less than \<
+% Equals \= Greater than \> Question mark \?
+% Commercial at \@ Left bracket \[ Backslash \\
+% Right bracket \] Circumflex \^ Underscore \_
+% Grave accent \` Left brace \{ Vertical bar \|
+% Right brace \} Tilde \~}
+%
+% \changes{v1.0}{2001/12/01}{Initial version}
+% \changes{v1.1}{2005/04/03}{Change log introduced and first release of this documentation}
+% \changes{v1.17}{2005/09/24}{Transformed the source from a class to a package}
+% \changes{v1.18}{2005/09/29}{Verse numbering added}
+% \changes{v2.0}{2007/06/20}{Keyval syntax and chord-replay system added}
+%
+% \iffalse
+% Here we list all the macros that should not be indexed because they are:
+% (a) too common and therefore the index would be too large if we listed them,
+% (b) not useful in an index because they are predefined TeX macros, or
+% (c) not really macros but rather control sequence names given to \string.
+% \fi
+% \DoNotIndex{\@M,\@depth,\@empty,\@firstofone,\@firstoftwo,\@gobble,\@gobbletwo,\@height,\@m,\@minus,\@ne,\@plus,\@secondoftwo,\@width,\m@ne,\p@,\thr@@,\tw@,\voidb@x,\@xpt,\z@,\z@skip}
+% \DoNotIndex{\advance,\char,\count,\divide,\font,\fontdimen,\maxdimen,\multiply,\setcounter,\setlength,\settoheight,\settowidth,\stepcounter}
+% \DoNotIndex{\begin,\begingroup,\bgroup,\egroup,\end,\endgroup}
+% \DoNotIndex{\box,\copy,\dp,\hbox,\ht,\leavevmode,\lower,\null,\prevdepth,\raise,\rlap,\setbox,\unhbox,\unhcopy,\unpenalty,\unskip,\unvbox,\unvcopy,\vbox,\vtop,\wd}
+% \DoNotIndex{\csname,\def,\edef,\endcsname,\futurelet,\gdef,\global,\let,\long,\mathchardef,\newcommand,\renewcommand,\renewenvironment,\xdef}
+% \DoNotIndex{\@ifundefined,\@for,\do,\else,\fi,\ifcase,\ifcat,\ifdim,\iffalse,\ifhmode,\ifmmode,\ifinner,\ifnum,\ifodd,\ifvbox,\ifvmode,\ifvoid,\ifx,\loop,\or,\repeat,\undefined}
+% \DoNotIndex{\afterassignment,\aftergroup,\expandafter,\ignorespaces,\immediate,\noexpand,\protect,\relax,\space,\string,\the}
+% \DoNotIndex{\hfil,\hfilneg,\hskip,\hss,\indent,\kern,\nobreak,\noindent,\nointerlineskip,\offinterlineskip,\par,\penalty,\strut,\thinspace,\vadjust,\vfil,\vfilneg,\vphantom,\vskip}
+% \DoNotIndex{\@octets,\four,\three,\two,\UTFviii@,\UTFviii@zero@octets,\0,\1,\2,\3,\4,\5,\6,\7,\8,\9,\X,\O}
+%
+% \GetFileInfo{songs.dtx}
+%
+% \title{The \Songs{} package\thanks{This manual documents
+% \textsf{songs}~\fileversion, dated~\filedate,
+% \copyright~2018 Kevin W.~Hamlen, and
+% distributed under version~2 the GNU General Public License
+% as published by the Free Software Foundation.}}
+% \author{Kevin W. Hamlen}
+%
+% \maketitle
+%
+% \begin{abstract}
+% The \Songs{} package produces songbooks that contain lyrics and chords
+% (but not full sheet music).
+% It allows lyric books, chord books, overhead slides, and digital projector
+% slides to all be maintained and generated from a single \LaTeX{} source
+% document.
+% Automatic transposition, guitar tablature diagrams, handouts, and
+% a variety of specialized song indexes are supported.
+% \end{abstract}
+%
+% \section{Introduction}
+%
+% The \Songs{} \LaTeX{} package produces books of songs that contain lyrics and
+% (optionally) chords.
+% A single source document yields a lyric book for singers, a chord book for
+% musicians, and overhead or digital projector slides for corporate singing.
+%
+% The software is especially well suited for churches and religious
+% fellowships desiring to create their own books of worship songs.
+% Rather than purchasing a fixed hymnal of songs, the \Songs{} package allows
+% worship coordinators to maintain a constantly evolving repertoire of music
+% to which they can add and remove songs over time.
+% As the book content changes, the indexes, spacing, and other formatting
+% details automatically adjust to stay consistent.
+% Songs can also be quickly selected and arranged for specific events or
+% services through the use of scripture indexes, automatic transposition,
+% and handout and slide set creation features.
+%
+% \section{Terms of Use}
+%
+% \noindent
+% The \Songs{} package is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version~2
+% of the License, or (at your option) any later version.
+% A copy of the license can be found in \S\ref{sec:license}.
+%
+% \medskip
+%
+% \noindent
+% This program is distributed in the hope that it will be useful,
+% but {\sc without any warranty}; without even the implied warranty of
+% {\sc merchantability} or {\sc fitness for a particular purpose}. See the
+% GNU General Public License in \S\ref{sec:license} for details.
+% A copy of the license can also be obtained by writing to the
+% Free Software Foundation, Inc., 51 Franklin Street, 5th Floor,
+% Boston, MA 02110-1301, USA.
+%
+% \medskip
+%
+% \noindent
+% This software is copyright \copyright~2018 Kevin W.~Hamlen.
+% For contact information or the latest version, see the project webpage at:
+%
+% \vskip1.5ex
+% \begingroup\centering\noindent
+% \href{http://songs.sourceforge.net}{{\tt http://songs.sourceforge.net}}\par
+% \endgroup
+%
+% \section{Sample Document}
+%
+% For those who would like to start making song books quickly, the
+% following is a sample document that yields a simple song book with
+% one song.
+% Starting from this template, you can begin to add songs and customizations
+% to create a larger book.
+% Instructions for compiling this sample song book follow the listing.
+%
+% \begingroup\color{myblu}
+% \begin{verbatim}
+% \documentclass{article}
+% \usepackage[chorded]{songs}
+%
+% \noversenumbers
+%
+% \begin{document}
+%
+% \songsection{Worship Songs}
+%
+% \begin{songs}{}
+% \beginsong{Doxology}[by={Louis Bourgeois and Thomas Ken},
+% sr={Revelation 5:13},
+% cr={Public domain.}]
+% \beginverse
+% \[G]Praise God, \[D]from \[Em]Whom \[Bm]all \[Em]bless\[D]ings \[G]flow;
+% \[G]Praise Him, all \[D]crea\[Em]tures \[C]here \[G]be\[D]low;
+% \[Em]Praise \[D]Him \[G]a\[D]bove, \[G]ye \[C]heav'n\[D]ly \[Em]host;
+% \[G]Praise Fa\[Em]ther, \[D]Son, \[Am]and \[G/B G/C]Ho\[D]ly \[G]Ghost.
+% \[C]A\[G]men.
+% \endverse
+% \endsong
+% \end{songs}
+%
+% \end{document}
+% \end{verbatim}
+% \endgroup\nointerlineskip\vskip-6pt plus0pt minus0pt
+%
+% To compile this book, run \LaTeX{} (|pdflatex| is recommended):
+%
+% \begin{codeblock}
+% |pdflatex mybook.tex|
+% \end{codeblock}
+%
+% \noindent
+% (where |mybook.tex| is the name of the source document above).
+% The final document is named |mybook.pdf| if you use |pdflatex| or
+% |mybook.dvi| if you use regular |latex|.
+%
+% Note that compiling a document that includes indexes requires extra steps.
+% See \S\ref{sec:compiling} for details.
+%
+% \begin{figure}
+% \noindent\vbox{\begingroup\hsize=352pt
+% \versesep=12pt\columnsep=7pt\parindent=20pt
+% \def\colbotglue{0pt}\def\lastcolglue{0pt}
+% \baselineadj=-1pt\relax
+% \noversenumbers
+% \setlength\textwidth{352pt}
+% \setlength\textheight{498pt}
+% \songcolumns{2}
+% \vskip-3.5ex plus-1ex minus-.2ex
+% \nointerlineskip\null\nointerlineskip
+% \songsection*{Worship Songs}
+% \begin{songs}{}
+% \beginsong{Doxology}[
+% by={Louis Bourgeois and Thomas Ken},
+% sr={Revelation 5:13},
+% cr={Public domain.}]
+% \beginverse
+% \[G]Praise God, \[D]from \[Em]Whom \[Bm]all \[Em]bless\[D]ings \[G]flow;
+% \[G]Praise Him, all \[D]crea\[Em]tures \[C]here \[G]be\[D]low;
+% \[Em]Praise \[D]Him \[G]a\[D]bove, \[G]ye \[C]heav'n\[D]ly \[Em]host;
+% \[G]Praise Fa\[Em]ther, \[D]Son, \[Am]and \[G/B G/C]Ho\[D]ly \[G]Ghost.
+% \[C]A\[G]men.
+% \endverse
+% \endsong\eat\]
+% \parindent=15pt
+% \beginscripture{Psalm 18:2-6}
+% \Acolon The LORD is my rock and my fortress and my deliverer,
+% \Bcolon my God, my rock, in whom I take refuge,
+% \Bcolon my shield, and the horn of my salvation, my stronghold.
+% \Acolon I call upon the LORD, who is worthy to be praised,
+% \Bcolon and I am saved from my enemies.
+% \strophe
+% \Acolon The cords of death encompassed me;
+% \Bcolon the torrents of destruction assailed me;
+% \Acolon the cords of Sheol entangled me;
+% \Bcolon the snares of death confronted me.
+% \strophe
+% \Acolon In my distress I called upon the LORD;
+% \Bcolon to my God I cried for help.
+% \Acolon From his temple he heard my voice,
+% \Bcolon and my cry to him reached his ears.
+% \endscripture
+% \parindent=20pt
+% \beginsong{A Mighty Fortress Is Our God}[
+% by={Martin Luther},
+% cr={Public Domain.}]
+% \beginverse
+% A \[A]mighty \[C#m]Fortress \[B7]is our \[E]God,
+% A \[D]bulwark \[A]never \[E7]fail\[A]ing.
+% Our helper \[C#m]He, a\[B7]mid the \[E]flood
+% Of \[D]mortal \[A]ills pre\[E7]vail\[A]ing.
+% For still our \[B7sus4]an\[B7]cient \[E]foe
+% Doth \[A]seek to \[E/G#]work us \[F#m]woe;
+% His craft and \[B7]pow'r are \[E]great,
+% And, \[Bm]armed with cruel \[C#]hate,
+% On \[D]earth is \[A]not his \[E7]e\[A]qual.
+% \endverse
+% \beginverse
+% Did ^we in ^our own ^strength con^fide,
+% Our ^striving ^would be ^los^ing.
+% Were not the ^right Man ^on our ^side,
+% The ^Man of ^God's own ^choos^ing.
+% Dost ask who ^that ^may ^be?
+% Christ ^Jesus, ^it is ^He;
+% Lord Saba^oth His ^Name,
+% From ^age to age the ^same;
+% And ^He must ^win the ^bat^tle.
+% \endverse
+% \endsong\eat\]
+% \end{songs}
+% \endgroup}\par
+% \caption{Sample page from a chord book}\label{fig:sample}
+% \end{figure}
+% A copy of the first page of a sample song section is shown in
+% Figure~\ref{fig:sample}.
+% The page shown in that figure is from a chorded version of the book.
+% When generating a lyric version, the chords are omitted.
+% See \S\ref{sec:options} for information on how to generate different
+% versions of the same book.
+%
+% \section{Initialization and Options}\label{sec:options}
+%
+% Each \LaTeX{} document that uses the \Songs{} package should contain a
+% line like the following near the top of the document:
+%
+% \begin{codeblock}
+% |\usepackage[|\Meta{options}|]{songs}|
+% \end{codeblock}
+%
+% \noindent
+% Supported \Meta{options} include the following:
+%
+% \paragraph{Output Type.}
+% \DescEnv{lyric}
+% \DescEnv{chorded}
+% \DescEnv{slides}
+% \DescEnv{rawtext}
+% The \Songs{} package can produce four kinds of books: lyric books, chord
+% books, books of overhead slides, and raw text output.
+% You can specify which kind of book is to be produced by specifying one of
+% |lyric|, |chorded|, |slides|, or |rawtext| as an option.
+% The |slides| and |chorded| options can be used together to create chorded
+% slides.
+% If no output options are specified, |chorded| is the default.
+%
+% Lyric books omit all chords, whereas chord books include chords and
+% additional information for musicians (specified using \mac{musicnote}).
+% Books of overhead slides typeset one song per page in a large font, centered.
+%
+% Raw text output yields an ascii text file named \Meta{jobname}|.txt|
+% (where \Meta{jobname} is the root filename) containing lyrics without chords.
+% This can be useful for importing song books into another program, such as a
+% spell-checker.
+%
+% \DescMacro{chordson}
+% \DescMacro{chordsoff}
+% Chords can be turned on or off in the middle of the document
+% by using the |\chordson| or |\chordsoff| macros.
+%
+% \DescMacro{slides}
+% Slides mode can be activated in the middle of the document by using the
+% |\slides| macro.
+% For best results, this should typically only be done in the document
+% preamble or at the beginning of a fresh page.
+%
+% \paragraph{Measure Bars.}
+% \DescEnv{nomeasures}
+% \DescEnv{showmeasures}
+% \DescMacro{measureson}
+% \DescMacro{measuresoff}
+% The \Songs{} package includes a facility for placing measure bars in chord
+% books (see \S\ref{sec:measures}).
+% To omit these measure bars, use the |nomeasures| option;
+% to display them, use the |showmeasures| option (the default).
+% Measure bars can also be turned on or off in the middle of the document by
+% using the |\measureson| or |\measuresoff| macros.
+%
+% \paragraph{Transposition.}
+% \DescEnv{transposecapos}
+% The |transposecapos| option changes the effect of the \mac{capo} macro.
+% Normally, using |\capo{|\Meta{n}|}| within a song environment produces a
+% textual note in chord books that suggests the use of a guitar capo on fret
+% \Meta{n}.
+% However, when the |transposecapos| option is active, these textual notes
+% are omitted and instead the effect of |\capo{|\Meta{n}|}| is the
+% same as for \mac{transpose}|{|\Meta{n}|}|.
+% That is, chords between the \mac{capo} macro and the end of the song are
+% automatically transposed up by \Meta{n} half-steps.
+% This can be useful for adapting a chord book for guitarists to one that can
+% be used by pianists, who don't have the luxury of capos.
+% See \S\ref{sec:notes} and \S\ref{sec:transpose} for more information on the
+% \mac{capo} and \mac{transpose} macros.
+%
+% \paragraph{Indexes.}
+% \DescEnv{noindexes}
+% \DescMacro{indexeson}
+% \DescMacro{indexesoff}
+% The |noindexes| option suppresses the typesetting of any in-document indexes.
+% Display of indexes can also be turned on or off using the |\indexeson| and
+% |\indexesoff| macros.
+%
+% \DescEnv{nopdfindex}
+% PDF bookmark entries and hyperlinks can be suppressed with the |nopdfindex|
+% option.
+% For finer control of PDF indexes, see \S\ref{sec:idxcust}.
+%
+% \paragraph{Scripture Quotations.}
+% \DescEnv{noscripture}
+% \DescMacro{scriptureon}
+% \DescMacro{scriptureoff}
+% The |noscripture| option omits scripture quotations (see
+% \S\ref{sec:scripture}) from the output.
+% You can also turn scripture quotations on or off in the middle of the
+% document by using |\scriptureon| or |\scriptureoff|, respectively.
+%
+% \paragraph{Shaded Boxes.}
+% \DescEnv{noshading}
+% The |noshading| option causes all shaded boxes, such as those that surround
+% song numbers and textual notes, to be omitted.
+% You might want to use this option if printing such shaded boxes causes
+% problems for your printer or uses too much ink.
+%
+% \paragraph{Partial Song Sets.}
+% \DescMacro{includeonlysongs}
+% Often it is useful to be able to extract a subset of songs from the master
+% document---e.g.~to create a handout or set of overhead slides for a specific
+% worship service.
+% To do this, you can type |\includeonlysongs{|\Meta{songlist}|}| in the
+% document preamble (i.e., before the |\begin{document}| line), where
+% \Meta{songlist} is a comma-separated list of the song numbers to include.
+% For example,
+%
+% \begin{codeblock}
+% |\includeonlysongs{37,50,2}|
+% \end{codeblock}
+%
+% \noindent
+% creates a document consisting only of songs 37, 50, and 2, in that order.
+%
+% Partial books generated with |\includeonlysongs| omit all scripture
+% quotations (\S\ref{sec:scripture}), and ignore uses of
+% \mac{nextcol}, \mac{brk}, \mac{sclearpage}, and \mac{scleardpage}
+% between songs unless they are followed by a star (e.g., \mac{nextcol}|*|).
+% To force a column- or page-break at a specific point in a partial book,
+% add the word |nextcol|, |brk|, |sclearpage|, or |scleardpage| at the
+% corresponding point in the \Meta{songlist}.
+%
+% The |\includeonlysongs| macro only reorders songs within each
+% \env{songs} environment (see \S\ref{sec:songs}), not between different
+% \env{songs} environments.
+% It also cannot be used in conjunction with the \env{rawtext} option.
+%
+% \section{Songs}\label{sec:songs}
+%
+% \subsection{Beginning a Song}
+%
+% \paragraph{Song Sets.}
+% \DescEnv{songs}
+% Songs are contained within |songs| environments.
+% Each |songs| environment begins and ends with:
+%
+% \begin{codeblock}
+% |\begin{songs}{|\Meta{indexes}|}|
+% $\vdots$
+% |\end{songs}|
+% \end{codeblock}
+%
+% \noindent
+% \Meta{indexes} is a comma-separated list of index \Meta{id}'s
+% (see \S\ref{sec:indexes})---one identifier for each index that is to
+% include songs in this song set.
+% Between the |\begin{songs}| and |\end{songs}| lines of
+% a song section only songs (see below) or inter-song environments
+% (see \S\ref{sec:between}) may appear.
+% No text in a |songs| environment may appear outside of these environments.
+%
+% \paragraph{Songs.}
+% \DescMacro{beginsong}
+% \DescMacro{endsong}
+% A song begins and ends with:
+%
+% \begin{codeblock}
+% |\beginsong{|\Meta{titles}|}[|\Meta{otherinfo}|]|
+% $\vdots$
+% |\endsong|
+% \end{codeblock}
+%
+% \noindent
+% Songs should appear only within \env{songs} environments (see above)
+% unless you are supplying your own page-builder (see \S\ref{sec:layout}).
+%
+% In the \mac{beginsong} line, \Meta{titles} is one or more song titles
+% separated by |\\|.
+% If multiple titles are provided, the first is typeset normally
+% atop the song and the rest are each typeset in parentheses on
+% separate lines.
+%
+% The |[|\Meta{otherinfo}|]| part is an optional comma-separated list of
+% key-value pairs (keyvals) of the form \Meta{key}|=|\Meta{value}.
+% The possible keys and their values are:
+%
+% \medskip
+% \noindent\hfil\vbox{\halign{#\hfil&\kern2em{\it#}\hfil\cr
+% |by={|\Meta{authors}|}|&authors, composers, and other contributors\cr
+% |cr={|\Meta{copyright}|}|&copyright information\cr
+% |li={|\Meta{license}|}|&licensing information\cr
+% |sr={|\Meta{refs}|}|&related scripture references\cr
+% |index={|\Meta{lyrics}|}|&an extra index entry for a line of lyrics\cr
+% |ititle={|\Meta{title}|}|&an extra index entry for a hidden title\cr}}
+% {\pfs\par}\medskip
+%
+% \noindent
+% For example, a song that begins and ends with
+%
+% \begin{codeblock}
+% |\beginsong{Title1 \\ Title2}[by={Joe Smith}, sr={Job 3},|
+% | cr={\copyright~|\unskip\expandafter|\the\year|| XYZ.}, li={Used with permission.}]|
+% |\endsong|
+% \end{codeblock}
+%
+% \noindent looks like
+%
+% \begin{sample}
+% \setcounter{songnum}{1}%
+% \vskip1pt%
+% \beginsong{Title1 \\ Title2}[by={Joe Smith}, sr={Job 3},
+% cr={\copyright~\the\year{} XYZ.}, li={Used with permission.}]
+% \endsong
+% \end{sample}
+%
+% The four keyvals used in the above example are described in detail in the
+% remainder of this section;
+% the final two are documented in \S\ref{sec:ientry}.
+% You can also create your own keyvals (see \S\ref{sec:newkey}).
+%
+% \paragraph{Song Authors.}
+% \DescEnv{by=}
+% The |by={|\Meta{authors}|}| keyval lists one or more authors,
+% composers, translators, etc.
+% An entry is added to each author index associated with the current
+% \env{songs} environment for each contributor listed.
+% Contributors are expected to be separated by commas, semicolons, or the
+% word |and|.
+% For example:
+%
+% \begin{codeblock}
+% |by={Fred Smith, John Doe, and Billy Bob}|
+% \end{codeblock}
+%
+% \noindent
+% Words separated by a macro-space (\verb*@\ @\eat*) or tie (|~|)
+% instead of a regular space are treated as single words by the indexer.
+% For example, \verb*@The Vienna Boys' Choir@\eat* is indexed as
+% ``Choir, The Vienna Boys'\thinspace'' but
+% \verb*@The Vienna\ Boys'\ Choir@\eat* is indexed as
+% ``Vienna Boys' Choir, The''.
+%
+% \paragraph{Copyright Info.}
+% \DescEnv{cr=}
+% The |cr={|\Meta{copyright}|}| keyval specifies the copyright-holder of the
+% song, if any.
+% For example:
+%
+% \begin{codeblock}
+% |cr={\copyright~2000 ABC Songs, Inc.}|
+% \end{codeblock}
+%
+% \noindent
+% Copyright information is typeset in fine print at the bottom of the song.
+%
+% \paragraph{Licensing Info.}
+% \DescEnv{li=}
+% \DescMacro{setlicense}
+% Licensing information is provided by |li={|\Meta{license}|}|, where
+% \Meta{license} is any text.
+% Licensing information is displayed in fine print under the song just
+% after the copyright information (if any).
+% Alternatively, writing |\setlicense{|\Meta{license}|}| anywhere between
+% the \mac{beginsong} and \mac{endsong} lines is equivalent to using
+% |li={|\Meta{license}|}| in the \mac{beginsong} line.
+%
+% When many songs in a book are covered by a common license, it is
+% usually convenient to create a macro to abbreviate the licensing
+% information.
+% For example, if your organization has a music license from Christian
+% Copyright Licensing International with license number 1234567, you might
+% define a macro like
+%
+% \begin{codeblock}
+% |\newcommand{\CCLI}{(CCLI \#1234567)}|
+% \end{codeblock}
+%
+% \noindent
+% Then you could write |li=\CCLI| in the \mac{beginsong} line of each song
+% covered by CCLI.
+%
+% \paragraph{Scripture References.}
+% \DescEnv{sr=}
+% The \Songs{} package has extensive support for scripture citations and
+% indexes of scripture citations.
+% To cite scripture references for the song, use the keyval
+% |sr={|\Meta{refs}|}|, where \Meta{refs} is a list of scripture
+% references.
+% Index entries are added to all scripture indexes associated
+% with the current \env{songs} environment for each such reference.
+% The |songidx| index generation script (see \S\ref{sec:compiling}) expects
+% \Meta{refs} to be a list of references in which semicolons are used to
+% separate references to different books, and commas are used to separate
+% references to to different chapters and verses within the same book.
+% For example, one valid scripture citation is
+%
+% \begin{codeblock}
+% |sr={John 3:16,17, 4:1-5; Jude 3}|
+% \end{codeblock}
+%
+% The full formal syntax of a valid \Meta{refs} argument is given in
+% Figure~\ref{fig:srsyntax}.
+% \begin{figure}
+% \noindent\hfil\vbox{\advance\baselineskip2pt
+% \halign{\hfil{\tt#}\,$\longrightarrow$\,&{\tt#}\hfil\cr
+% \Metarm{refs}&\Metarm{nothing}\OR\Metarm{ref};\SPC\Metarm{ref};$\ldots$;\SPC\Metarm{ref}\cr
+% \Metarm{ref}&\Metarm{many-chptr-book}\SPC\Metarm{chapters}\OR\Metarm{one-chptr-book}\SPC\Metarm{verses}\cr
+% \Metarm{many-chptr-book}&Genesis\OR Exodus\OR Leviticus\OR Numbers\OR $\ldots$\cr
+% \Metarm{one-chptr-book}&Obadiah\OR Philemon\OR 2 John\OR 3 John\OR Jude\cr
+% \Metarm{chapters}&\Metarm{chref},\SPC\Metarm{chref},$\ldots$,\SPC\Metarm{chref}\cr
+% \Metarm{chref}&\Metarm{chapter}\OR\Metarm{chapter}-\Metarm{chapter}\OR\Metarm{chapter}:\Metarm{verses}\OR\cr
+% \omit&\quad\Metarm{chapter}:\Metarm{verse}-\Metarm{chapter}:\Metarm{verse}\cr
+% \Metarm{verses}&\Metarm{vref},\Metarm{vref},$\ldots$,\Metarm{vref}\cr
+% \Metarm{vref}&\Metarm{verse}\OR\Metarm{verse}-\Metarm{verse}\cr}}
+% \caption{Formal syntax rules for song scripture references}\label{fig:srsyntax}
+% \end{figure}
+% In those syntax rules, \Meta{chapter} and \Meta{verse} stand for arabic
+% numbers denoting a valid chapter number for the given book, and a valid
+% verse number for the given chapter, respectively.
+% Note that when referencing a book that has only one chapter,
+% one should list only its verses after the book name
+% (rather than |1:|\Meta{verses}).
+%
+% \subsection{Verses and Choruses}
+%
+% \paragraph{Starting A Verse Or Chorus.}
+% \DescMacro{beginverse}
+% \DescMacro{endverse}
+% \DescMacro{beginchorus}
+% \DescMacro{endchorus}
+% Between the \mac{beginsong} and \mac{endsong} lines of a song can
+% appear any number of verses and choruses.
+% A verse begins and ends with:
+%
+% \begin{codeblock}
+% |\beginverse|
+% $\vdots$
+% |\endverse|
+% \end{codeblock}
+%
+% \noindent and a chorus begins and ends with:
+%
+% \begin{codeblock}
+% |\beginchorus|
+% $\vdots$
+% |\endchorus|
+% \end{codeblock}
+%
+% \noindent
+% Verses are numbered (unless \mac{noversenumbers} has been used to
+% suppress verse numbering) whereas choruses have a vertical line placed to
+% their left.
+%
+% To create an unnumbered verse, begin the verse with |\beginverse*| instead.
+% This can be used for things that aren't really verses but should be
+% typeset like a verse (e.g.~intros, endings, and the like).
+% A verse that starts with |\beginverse*| should still end with |\endverse|
+% (not |\endverse*|).
+%
+% Within a verse or chorus you should enter one line of text for
+% each line of lyrics.
+% Each line of the source document produces a separate line in the resulting
+% document (like \LaTeX's |\obeylines| macro).
+% Lines that are too long to fit are wrapped with hanging indentation
+% of width |\parindent|.
+%
+% \subsection{Chords}\label{sec:chords}
+%
+% \DescMacro{[}
+% \DescChar{hash}{#}
+% \DescChar{amp}{&}
+% Between the \mac{beginverse} and \mac{endverse} lines, or between
+% the \mac{beginchorus} and \mac{endchorus} lines,
+% chords can be produced using the macro |\[|\Meta{chordname}|]|\eat\].
+% Chords only appear in chord books; they are omitted from lyric books.
+% The \Meta{chordname} may consist of arbitrary text.
+% To produce sharp and flat symbols, use |#| and |&| respectively.
+%
+% Any text that immediately follows the |\[]|\eat\] macro with no
+% intervening whitespace is assumed to be the word or syllable
+% that is to be sung as the chord is struck, and is therefore
+% typeset directly under the chord.
+% For example:
+%
+% \example|\[E&]peace and \[Am]joy|\produces{\[E&]peace and \[Am]joy}
+% \eat\]
+%
+% \noindent
+% If whitespace (a space or \Meta{return}) immediately follows,
+% then the chord name be typeset without any lyric text
+% below it, indicating that the chord is to be struck between
+% any surrounding words.
+% For example:
+%
+% \example|\[E&]peace and \[Am] joy|\produces{\[E&]peace and \[Am] joy}
+% \eat\]
+%
+% If the lyric text that immediately follows the chord contains
+% another chord, and if the width of the chord name exceeds the
+% width of the lyric text, then hyphenation is added automatically.
+% For example:
+%
+% \example|\[F#sus4]e\[A]ternal|\produces{\[F#sus4]e\[A]ternal}
+% \eat\]
+%
+% Sequences of chords that sit above a single word can be written
+% back-to-back with no intervening space, or as a single chord:
+%
+% \example|\[A]\[B]\[Em]joy|\produces{\[A]\[B]\[Em]joy}
+% \example|\[A B Em]joy|\produces{\[A B Em]joy}
+% \eat\]
+%
+% \noindent
+% The only difference between the two examples above is that the chords
+% in the first example can later be replayed separately (see
+% \S\ref{sec:replay}) whereas the chords in the second example can only be
+% replayed as a group.
+%
+% You can explicitly dictate how much of the text following a
+% chord macro is to appear under the chord name by using braces.
+% To exclude text that would normally be drawn under the chord,
+% use a pair of braces that includes the chord macro.
+% For example:
+%
+% \example|{\[G A]e}ternal|\produces{{\[G A]e}ternal}
+% \eat\]
+%
+% \noindent
+% (Without the braces, the syllables ``ternal'' would not be
+% pushed out away from the chord.)
+% This might be used to indicate that the chord transition occurs
+% on the first syllable rather than as the second syllable is
+% sung.
+%
+% Contrastingly, braces that do not include the chord itself can
+% be used to include text under a chord that would otherwise be
+% excluded.
+% For example:
+%
+% \example|\[Gmaj7sus4]{th' eternal}|\produces{\[Gmaj7sus4]{th' eternal}}
+% \eat\]
+%
+% \noindent
+% Without the braces, the word ``eternal'' would be pushed out away
+% from the chord so that the chord would appear only over
+% the partial word ``th'\thinspace''.
+%
+% \paragraph{Chords Without Lyrics.}
+% \DescMacro{nolyrics}
+% Sometimes you may want to write a line of chords with no lyrics in it at all,
+% such as for an instrumental intro or solo.
+% To make the chords in such a line sit on the baseline instead of raised above
+% it, use the |\nolyrics| macro.
+% For example:
+%
+% \example|{\nolyrics Intro: \[G] \[A] \[D]}|\produces{\nolyrics Intro: \[G] \[A] \[D]}
+% \eat\]
+%
+% \noindent
+% Note the enclosing braces that determine how long the effect should last.
+% Multiple lines can be included in the braces.
+% Instrumental solos should typically not appear in lyric books, so such
+% lines should usually also be surrounded by \mac{ifchorded} and |\fi|
+% (see \S\ref{sec:conditionals}).
+%
+% \paragraph{Symbols Under Chords.}
+% \DescMacro{DeclareLyricChar}
+% If you are typesetting songs in a language whose alphabet contains symbols
+% that \LaTeX{} treats as punctuation, you can use the |\DeclareLyricChar|
+% macro to instruct the \Songs{} package to treat the symbol as
+% non-chord-ending, so that it is included under chords by default just
+% like an alphabetic character.
+%
+% \begin{codeblock}
+% |\DeclareLyricChar{|\Meta{token}|}|
+% \end{codeblock}
+%
+% \noindent
+% Here, \Meta{token} must be a single \TeX{} macro control sequence,
+% active character, letter (something \TeX{} assigns catcode 11), or
+% punctuation symbol (something \TeX{} assigns catcode 12).
+% For example, by default,
+%
+% \example|\[Fmaj7]s\dag range|\produces{\[Fmaj7]s\dag range}
+% \eat\]
+%
+% \noindent
+% because |\dag| is not recognized as an alphabetic symbol;
+% but if you first type,
+%
+% \begin{codeblock}
+% |\DeclareLyricChar{\dag}|
+% \end{codeblock}
+%
+% \noindent
+% then instead you will get:
+%
+% \DeclareLyricChar{\dag}
+% \example|\[Fmaj7]s\dag range|\produces{\[Fmaj7]s\dag range}
+% \eat\]
+%
+% \noindent
+% \DescMacro{DeclareNonLyric}
+% Likewise, you can type
+%
+% \begin{codeblock}
+% |\DeclareNonLyric{|\Meta{token}|}|
+% \end{codeblock}
+%
+% \noindent
+% to reverse the above effect and force a token to be lyric-ending.
+% Such tokens are pushed out away from long chord names so that they
+% never fall under a chord, and hyphenation is added to the resulting gap.
+%
+% \DescMacro{DeclareNoHyphen}
+% To declare a token to be lyric-ending but without the added hyphenation,
+% use |\DeclareNoHyphen{|\Meta{token}|}| instead.
+% Such tokens are pushed out away from long chord names so that they never
+% fall under the chord, but hyphenation is not added to the resulting gap.
+%
+% \paragraph{Extending Chords Over Adjacent Words.}
+% \DescMacro{MultiwordChords}
+% The |\MultiwordChords| macro forces multiple words to be squeezed under one
+% chord by default.
+% Normally a long chord atop a short lyric pushes subsequent
+% lyrics away to make room for the chord:
+%
+% \example|\[Gmaj7sus4]my life|\produces{\[Gmaj7sus4]my life}
+% \eat\]
+%
+% \noindent
+% But if you first type |\MultiwordChords|, then instead you get the more
+% compact:
+%
+% \begingroup\MultiwordChords
+% \example|\[Gmaj7sus4]my life|\produces{\[Gmaj7sus4]my life}
+% \eat\]
+% \endgroup
+%
+% \noindent
+% Authors should exercise caution when using |\MultiwordChords| because
+% including many words under a single chord can often produce output that
+% is ambiguous or misleading to musicians.
+% For example,
+%
+% \begingroup\MultiwordChords
+% \example|\[F G Am]me free|\produces{\[F G Am]me free}\par
+% \eat\]
+% \endgroup
+%
+% \noindent
+% This might be misleading to musicians if all three chords are intended
+% to be played while singing the word ``me.''
+% Liberal use of braces is therefore required to make |\MultiwordChords|
+% produce good results, which is why it isn't the default.
+%
+% \paragraph{Accidentals Outside Chords.}
+% \DescMacro{shrp}
+% \DescMacro{flt}
+% Sharp and flat symbols can be produced with |#| and |&| when they appear
+% in chord macros, but if you wish to produce those symbols in
+% other parts of the document, you must use the |\shrp| and |\flt| macros.
+% For example, to define a macro that produces a \chord{C\shrp} chord, use:
+%
+% \begin{codeblock}
+% |\newcommand{\Csharp}{C\shrp}|
+% \end{codeblock}
+%
+% \subsection{Replaying Chords and Choruses}\label{sec:replay}
+%
+% \DescChar{hat}{^}
+% Many songs consist of multiple verses that use the same chords.
+% The \Songs{} package simplifies this common case by providing a means to
+% replay the chord sequence of a previous verse without having to retype
+% all the chords.
+% To replay a chord from a previous verse, type a hat symbol (|^|) anywhere
+% you would otherwise use a chord macro (|\[]|\eat\]).
+% For example,
+%
+% \begin{codeblock}
+% \mac{beginverse}
+% |\[G]This is the \[C]first \[G]verse.|\eat\]
+% \mac{endverse}
+% \mac{beginverse}
+% |The ^second verse ^ has the same ^chords.|
+% \mac{endverse}
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{chorded}\memorize
+% \[G]This is the \[C]first \[G]verse.\eat\]
+% \end{chorded}
+% \begin{chorded}
+% The ^second verse ^ has the same ^chords.
+% \end{chorded}
+%
+% Normal chords can appear amidst replayed chords without disrupting the
+% sequence of chords being replayed.
+% Thus, a third verse could say,
+%
+% \begin{codeblock}
+% \mac{beginverse}
+% |The ^third verse ^has a \[Cm]new ^chord.|\eat\]
+% \mac{endverse}
+% \end{codeblock}
+%
+% \noindent to produce
+%
+% \begin{chorded}
+% The ^third verse ^has a \[Cm]new ^chord.\eat\]
+% \end{chorded}
+%
+% Replaying can be used in combination with automatic transposition to produce
+% modulated verses.
+% See \S\ref{sec:transpose} for an example.
+%
+% \DescMacro{memorize}
+% By default, chords are replayed from the current song's first verse, but
+% you can replay the chords of a different verse or chorus by saying
+% |\memorize| at the beginning of any verse or chorus whose chords you want
+% to later replay.
+% Subsequent verses or choruses that use \refchar{hat} replay chords
+% from the most recently memorized verse or chorus.
+%
+% \paragraph{Selective Memorization.}
+% It is also possible to inject unmemorized chords into a memorized verse
+% so that they are not later replayed.
+% To suppress memorization of a chord, begin the chord's name with a hat
+% symbol.
+% For example,
+%
+% \begin{codeblock}
+% \mac{beginverse}\mac{memorize}
+% |The \[G]third \[C]chord will \[^Cm]not be re\[G]played.|\eat\]
+% \mac{endverse}
+% \mac{beginverse}
+% |When ^replaying, the ^unmemorized chord is ^skipped.|
+% \mac{endverse}
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{chorded}\memorize
+% The \[G]third \[C]chord will \[^Cm]not be re\[G]played.\eat\]
+% \vskip5pt%
+% When ^replaying, the ^unmemorized chord is ^skipped.
+% \end{chorded}
+%
+% \noindent
+% This is useful when the first verse of a song has something unique,
+% like an intro that won't be repeated in subsequent verses, but has
+% other chords that you wish to replay.
+%
+% \paragraph{Memorizing Multiple Chord Sequences.}
+% By default, the \Songs{} package only memorizes one sequence of chords
+% at a time and \refchar{hat} replays chords from that most recently
+% memorized sequence.
+% However, you can memorize and replay multiple independent sequences
+% using the macros described in the following paragraphs.
+%
+% \DescMacro{newchords}
+% Memorized or replayed chord sequences are stored in chord-replay registers.
+% To declare a new chord-replay register, type
+%
+% \begin{codeblock}
+% |\newchords{|\Meta{regname}|}|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{regname} is any unique alphabetic name.
+%
+% Once you've declared a register, you can memorize into that register
+% by providing the \Meta{regname} as an optional argument to
+% \mac{memorize}:
+%
+% \begin{codeblock}
+% \mac{memorize}|[|\Meta{regname}|]|
+% \end{codeblock}
+%
+% \noindent
+% Memorizing into a non-empty register replaces the contents of that
+% register with the new chord sequence.
+%
+% \DescMacro{replay}
+% To replay chords from a particular register, type
+%
+% \begin{codeblock}
+% |\replay[|\Meta{regname}|]|
+% \end{codeblock}
+%
+% \noindent
+% Subsequent uses of \refchar{hat} reproduce chords from the sequence
+% stored in register \Meta{regname}.
+%
+% Register contents are global, so you can memorize a chord sequence from one
+% song and replay it in others.
+% You can also use |\replay| multiple times in the same verse or chorus to
+% replay a sequence more than once.
+%
+% \paragraph{Replaying Choruses.}
+% \DescMacro{repchoruses}
+% When making overhead slides, it is often convenient to repeat the song's
+% chorus after the first verse on each page, so that the projector-operator
+% need not flip back to the first slide each time the chorus is to be sung.
+% You can say |\repchoruses| to automate this process.
+% This causes the first chorus in each subsequent song to be automatically
+% repeated after the first verse on each subsequent page of the song (unless
+% that verse is already immediately followed by a chorus).
+% If the first chorus is part of a set of two or more consecutive choruses,
+% then the whole set of choruses is repeated.
+% (A set of choruses is assumed to consist of things like pre-choruses that
+% should always be repeated along with the chorus.)
+% Choruses are not automatically inserted immediately after unnumbered
+% verses (i.e., verses that begin with \mac{beginverse}|*|).
+% Unnumbered verses are assumed to be bridges or endings that aren't
+% followed by a chorus.
+%
+% \DescMacro{norepchoruses}
+% Writing |\norepchoruses| turns off chorus repetition for subsequent songs.
+%
+% If you need finer control over where replayed choruses appear, use the
+% conditional macros covered in \S\ref{sec:conditionals} instead of
+% |\repchoruses|.
+% For example, to manually insert a chorus into only slide books at a
+% particular point (without affecting other versions of your book),
+% you could write:
+%
+% \begin{codeblock}
+% \mac{ifslides}
+% \mac{beginchorus}
+% $\vdots$
+% \mac{endchorus}
+% |\fi|
+% \end{codeblock}
+%
+% \noindent
+% and copy and paste the desired chorus into the middle.
+%
+% \subsection{Line and Column Breaks}
+%
+% \paragraph{Line Breaking.}
+% \DescMacro{brk}
+% To cause a long line of lyrics to be broken in a particular place, put the
+% |\brk| macro at that point in the line.
+% This does not affect lines short enough to fit without breaking.
+% For example,
+%
+% \begin{codeblock}
+% |\beginverse|
+% {\tt\frenchspacing This is a |\brk| short line.
+% But this is a particularly long line of lyrics |\brk| that will need to be wrapped.
+% } |\endverse|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{lyrics}
+% This is a \brk short line.
+% But this is a particularly long line of lyrics \brk that will need to be wrapped.
+% \end{lyrics}
+%
+% \paragraph{Column Breaks Within Songs.}
+% To suggest a column break within a verse or chorus too long to fit in a
+% single column, use |\brk| on a line by itself.
+% If there are no |\brk| lines in a long verse, it is broken
+% somewhere that a line does not wrap.
+% (A wrapped line is never divided by a column break.)
+% If there are no |\brk| lines in a long chorus, it overflows the column,
+% yielding an overfull vbox warning.
+%
+% \paragraph{Column Breaks Between Songs.}
+% \DescMacro{nextcol}
+% \DescMacro{sclearpage}
+% \DescMacro{scleardpage}
+% To force a column break between songs, use |\nextcol|, |\brk|, |\sclearpage|,
+% or |\scleardpage| between songs.
+% The |\nextcol| macro ends the column by leaving blank space at the bottom.
+% The |\brk| macro ends the current column in lyric books by stretching
+% the preceeding text so that the column ends flush with the bottom
+% of the page.
+% (In non-lyric books |\brk| is identical to |\nextcol|.)
+% The |\sclearpage| macro is like |\nextcol| except that it shifts to the next
+% blank page if the current page is nonempty.
+% The |\scleardpage| macro is like |\sclearpage| except that it shifts to the
+% next blank even-numbered page in two-sided documents.
+% Column breaks usually need to be in different places in different book types.
+% To achieve this, use a conditional block from \S\ref{sec:conditionals}.
+% For example,
+%
+% \begin{codeblock}
+% \mac{ifchorded}|\else|\mac{ifslides}|\else\brk\fi\fi|
+% \end{codeblock}
+%
+% \noindent
+% forces a column break only in lyric books but does not affect chord books
+% or books of overhead slides.
+%
+% When a partial list of songs is being extracted with \mac{includeonlysongs},
+% |\brk|, |\nextcol|, |\clearpage|, and |\cleardpage| macros between songs
+% must be followed by a star to have any effect.
+% To force a column-break at a specific point in a partial book, add the
+% word |nextcol|, |brk|, |clearpage|, or |cleardpage| at the corresponding
+% point in the argument to \mac{includeonlysongs}.
+%
+% \subsection{Echoes and Repeats}
+%
+% \paragraph{Echo Parts.}
+% \DescMacro{echo}
+% To typeset an echo part, use |\echo{|\Meta{lyrics and chords}|}|.
+% Echo parts are parenthesized and italicized.
+% For example,
+%
+% \example|Alle\[G]luia! \echo{Alle\[A]luia!}|\produces{Alle\[G]luia! \echo{Alle\[A]luia!}}
+% \eat\]
+%
+% \paragraph{Repeated Lines.}
+% \DescMacro{rep}
+% To indicate that a line should be sung multiple times by all singers, put
+% |\rep{|\Meta{n}|}| at the end of the line.
+% For example,
+%
+% \example|Alleluia! \rep{4}|\produces{Alleluia! \rep{4}}
+%
+% \DescMacro{lrep}
+% \DescMacro{rrep}
+% To indicate exactly where repeated parts begin and end, use |\lrep| and
+% |\rrep| to create begin- and end-repeat signs.
+% For example,
+%
+% \example|\lrep \[G]Alleluia!\rrep \rep{4}|\produces{\lrep \[G]Alleluia!\rrep \rep{4}}
+% \eat\]
+%
+% \subsection{Measure Bars}\label{sec:measures}
+%
+% \DescMacro{measurebar}
+% \DescChar{pipe}{|}
+% Measure bars can be added to chord books in order to help musicians
+% keep time when playing unfamiliar songs.
+% To insert a measure bar, type either |\measurebar| or type the
+% vertical pipe symbol (``\verb@|@'').
+% For example,
+%
+% \example\verb@Alle|\[G]luia@\produces{Alle\meter{}{}\measurebar\[G]luia}
+% \eat\]
+%
+% \noindent
+% In order for measure bars to be displayed, the \env{showmeasures}
+% option must be enabled.
+% Measure bars are only displayed by default in chord books.
+%
+% \DescMacro{meter}
+% The first measure bar in a song has meter numbers placed above
+% it to indicate the time signature of the piece.
+% By default, these numbers are 4/4, denoting four quarter notes
+% per measure.
+% To change the default, type |\meter{|\Meta{n}|}{|\Meta{d}|}|
+% somewhere after the \mac{beginsong} line of the song but before the
+% first measure bar, to declare a time signature of \Meta{n} \Meta{d}th
+% notes per measure.
+%
+% \DescMacro{mbar}
+% You can also change meters mid-song either by using |\meter| in the
+% middle of the song or by typing |\mbar{|\Meta{n}|}{|\Meta{d}|}|
+% to produce a measure bar with a time signature of \Meta{n}/\Meta{d}.
+% For example,
+%
+% \begin{codeblock}
+% |\meter{6}{8}|
+% |\beginverse|
+% \verb@|Sing to the |heavens, ye \mbar{4}{4}saints of |old!@
+% |\endverse|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{chorded}
+% \meter{6}{8}%
+% \measurebar Sing to the \measurebar heavens, ye \mbar{4}{4}saints of \measurebar old!
+% \end{chorded}
+%
+% \subsection{Textual Notes}\label{sec:notes}
+%
+% \DescMacro{textnote}
+% \DescMacro{musicnote}
+% Aside from verses and choruses, songs can also contain textual notes
+% that provide instructions to singers and musicians.
+% To create a textual note that is displayed in both lyric books
+% and chord books, use:
+%
+% \begin{codeblock}
+% |\textnote{|\Meta{text}|}|
+% \end{codeblock}
+%
+% \noindent
+% To create a textual note that is displayed only in chord books, use:
+%
+% \begin{codeblock}
+% |\musicnote{|\Meta{text}|}|
+% \end{codeblock}
+%
+% \noindent
+% Both of these create a shaded box containing \Meta{text}.
+% For example,
+%
+% \begin{codeblock}
+% |\textnote{Sing as a two-part round.}|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{lyrics}
+% \textnote{Sing as a two-part round.}
+% \end{lyrics}
+%
+% \noindent
+% Textual notes can be placed anywhere within a song, either within
+% verses and choruses or between them.
+%
+% \paragraph{Guitar Capos.}
+% \DescMacro{capo}
+% One special kind of textual note suggests to guitarists a fret on which
+% they should put their capos.
+% Macro |\capo{|\Meta{n}|}| should be used for this purpose.
+% It normally has the same effect as \mac{musicnote}|{capo |\Meta{n}|}|;
+% however, if the \env{transposecapos} option is active then it
+% instead has the effect of \mac{transpose}|{|\Meta{n}|}|.
+% See \S\ref{sec:transpose} for more information on automatic chord
+% transposition.
+%
+% \subsection{Chords in Ligatures}
+%
+% This subsection covers an advanced topic and can probably be
+% skipped by those creating song books for non-professional use.
+%
+% The \mac{[\eat]} macro is the normal means by which chords should be inserted
+% into a song; however, a special case occurs when a chord falls within a
+% ligature.
+% Ligatures are combinations of letters or symbols that \TeX{} normally
+% typesets as a single font character so as to produce cleaner-looking
+% output.
+% The only ligatures in English are: ff, fi, fl, ffi, and ffl.
+% Other languages have additional ligatures like \ae{} and \oe.
+% Notice that in each of these cases, the letters are ``squished''
+% together to form a single composite symbol.
+%
+% \DescMacro{ch}
+% When a chord macro falls inside a ligature, \LaTeX{} fails to compact
+% the ligature into a single font character even in non-chorded versions of
+% the book.
+% To avoid this minor typographical error, use the |\ch| macro to typeset
+% the chord:
+%
+% \begin{codeblock}
+% |\ch{|\Meta{chord}|}{|\Meta{pre}|}{|\Meta{post}|}{|\Meta{full}|}|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{chord} is the chord text, \Meta{pre} is the text to
+% appear before the hyphen if the ligature is broken by auto-hyphenation,
+% \Meta{post} is the text to appear after the hyphen if the ligature
+% is broken by auto-hyphenation, and \Meta{full} is the full ligature
+% if it is not broken by hyphenation.
+% For example, to correctly typeset |\[Gsus4]dif\[G]ficult|\eat\],
+% in which the \chord{G} chord falls in the middle of the ``ffi''
+% ligature, one should use:
+%
+% \example|di\ch{G}{f}{fi}{ffi}cult|\produces{di\ch{G}{f}{fi}{ffi}cult}
+%
+% \noindent
+% This causes the ``ffi'' ligature to appear intact yet still correctly
+% places the \chord{G} chord over the second f.
+% To use the |\ch| macro with a replayed chord name (see \S\ref{sec:replay}),
+% use |^| as the \Meta{chord}.
+%
+% \DescMacro{mch}
+% The |\mch| macro is exactly like the \mac{ch} macro except that it
+% also places a measure bar into the ligature along with the chord.
+% For example,
+%
+% \example|di\mch{G}{f}{fi}{ffi}cult|\produces{di\mch{G}{f}{fi}{ffi}cult}
+%
+% \noindent
+% places both a measure bar and a \chord{G} chord after the first ``f''
+% in ``difficult'', yet correctly produces an unbroken ``ffi'' ligature
+% in copies of the book in which measure bars are not displayed.
+%
+% In the unusual case that a meter change is required within a
+% ligature, this can be achieved with a construction like:
+%
+% \example|\meter{6}{8}di\mch{G}{f}{fi}{ffi}cult|\produces{\meter{6}{8}di\mch{G}{f}{fi}{ffi}cult}
+%
+% \noindent
+% The \mac{meter} macro sets the new time signature, which appears
+% above the next measure bar---in this case the measure bar
+% produced by the |\mch| macro.
+%
+% Chords and measure bars produced with \refchar{hat} or
+% \refchar{pipe} are safe to use in ligatures.
+% Thus, |dif|\refchar{pipe}\refchar{hat}|ficult| requires
+% no special treatment; it leaves the ``ffi'' ligature intact when measure
+% bars are not being displayed.
+%
+% \section{Guitar Tablatures}\label{sec:tablatures}
+%
+% \DescMacro{gtab}
+% Guitar tablature diagrams can be created by using the construct
+%
+% \begin{codeblock}
+% |\gtab{|\Meta{chord}|}{|\Meta{fret}|:|\Meta{strings}|:|\Meta{fingering}|}|
+% \end{codeblock}
+%
+% \noindent
+% where the \Meta{fret} and \Meta{fingering} parts are both optional
+% (and you may omit any colon that borders an omitted argument).
+%
+% \Meta{chord} is a chord name to be placed above the diagram.
+%
+% \Meta{fret} is an optional digit from 2 to 9 placed to the
+% left of the diagram.
+%
+% \Meta{strings} should be a series of symbols, one for each string
+% of the guitar from lowest pitch to highest.
+% Each symbol should be one of:
+% |X| if that string is not to be played,
+% |0| (zero or the letter O) if that string is to be played open, or
+% one of |1| through |9| if that string is to be played on the given
+% numbered fret.
+%
+% \Meta{fingering} is an optional series of digits, one for each
+% string of the guitar from lowest pitch to highest.
+% Each digit should be one of:
+% |0| if no fingering information is to be displayed for that string (e.g., if
+% the string is not being played or is being played open), or
+% one of |1| through |4| to indicate that the given numbered finger is to be
+% used to hold down that string.
+%
+% Here are some examples to illustrate:
+%
+% \example|\gtab{A}{X02220:001230}|\produces{\vcenterbox{\gtab{A}{{\hphantom{4}}:X02220:001230}}}
+% \example|\gtab{C#sus4}{4:XX3341}|\produces{\vcenterbox{\gtab{C\shrp sus4}{4:XX3341}}}
+% \example|\gtab{B&}{X13331}|\produces{\vcenterbox{\gtab{B\flt}{{\hphantom{4}}:X13331:}}}
+%
+% To create a barre chord in which one finger is extended across multiple
+% strings, use parentheses |()| or brackets |[]| in the \Meta{strings}
+% argument to group the barred strings.
+% Each such group will draw a barre on the lowest numbered fret it contains.
+% For example:
+%
+% \example|\gtab{C7}{X(3535X):013140}|\produces{\vcenterbox{\gtab{C7}{{\hphantom{4}}:X(3535X):013140}}}
+%
+% \DescMacro{minfrets}
+% By default, tablature diagrams always consist of at least 4 fret rows
+% (more if the \Meta{strings} argument contains a number larger than 4).
+% To change the minimum number of fret rows, change the value of |\minfrets|.
+% For example, typing
+%
+% \begin{codeblock}
+% |\minfrets=1|
+% \end{codeblock}
+%
+% \noindent
+% causes tablature diagrams to have only as many rows are required to
+% accommodate the largest digit appearing in the \Meta{strings} argument.
+%
+% \paragraph{Tablatures Within Macros}
+% Macros that produce tablatures must not bury the colons that separate the
+% \Meta{fret}, \Meta{strings}, and \Meta{fingering} arguments within other
+% macros, and it's safest to always include both colons to avoid ambiguities
+% related to optional argument parsing.
+% For example,
+%
+% \begin{codeblock}
+% |\newcommand{\mystrings}{X4412X}|
+% |\newcommand{\myfingers}{X3412X}|
+% |\newcommand{\mychord}{|\mac{gtab}|{C|\mac{shrp}|}{:\mystrings:\myfingers}}|
+% \end{codeblock}
+%
+% \noindent
+% works as expected.
+% But omitting the colon before |\mystrings| in the definition of |\mychord|
+% confuses \mac{gtab} into thinking |\mystrings| is the \Meta{fret}
+% argument, and writing code like |\gtab{C\shrp}{\allargs}| with |\allargs|
+% defined to something with colons results in an error, because it confuses
+% \mac{gtab} into thinking that |\allargs| is only the \Meta{strings} argument.
+%
+% \section{Automatic Transposition}\label{sec:transpose}
+%
+% \DescMacro{transpose}
+% You can automatically transpose some or all of the chords in a song up by
+% \Meta{n} half-steps by adding the line
+%
+% \begin{codeblock}
+% |\transpose{|\Meta{n}|}|
+% \end{codeblock}
+%
+% \noindent
+% somewhere between the song's \mac{beginsong} line and the first chord to
+% be transposed.
+% For example, if a song's first chord is |\[D]|\eat\], and the line
+% |\transpose{2}| appears before it, then the chord appears as an
+% \chord{E} in the resulting document.
+% Specifying a negative number for \Meta{n} transposes subsequent chords
+% down instead of up.
+%
+% The |\transpose| macro affects all chords appearing after it until the
+% \mac{endsong} line.
+% If two |\transpose| macros appear in the same song, their effects are
+% cumulative.
+%
+% When the \env{transposecapos} option is active, the \mac{capo}
+% macro acts like |\transpose|.
+% See \S\ref{sec:notes} for more information.
+%
+% \paragraph{Enharmonics.}
+% \DescMacro{preferflats}
+% \DescMacro{prefersharps}
+% When using \mac{transpose} to automatically transpose the chords of a song,
+% the \Songs{} package code chooses between enharmonically equivalent
+% names for ``black key'' notes based on the first chord of the song.
+% For example, if |\transpose{1}| is used, and if the first chord of the
+% song is an \chord{E}, then all \chord{A} chords that appear in
+% the song are transcribed as \chord{B\flt} chords rather than
+% \chord{A\shrp} chords, since the key of \chord{F}-major (\chord{E}
+% transposed up by one half-step) has a flatted key signature.
+% Usually this guess produces correct results, but if not, you can use
+% either |\preferflats| or |\prefersharps| after the \mac{transpose} line
+% to force all transcription to use flatted names or sharped names
+% respectively, when resolving enharmonic equivalents.
+%
+% \paragraph{Modulated Verses.}
+% Automatic transposition can be used in conjunction with chord-replaying
+% (see \S\ref{sec:chords}) to produce modulated verses.
+% For example,
+%
+% \begin{codeblock}
+% \mac{beginverse}\mac{memorize}
+% |\[F#]This is a \[B/F#]memorized \[F#]verse. \[E&7]|\eat\]
+% \mac{endverse}
+% \mac{transpose}|{2}|
+% \mac{beginverse}
+% |^This verse is ^modulated up two ^half-steps.|
+% \mac{endverse}
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{chorded}\memorize
+% \[F#]This is a \[B/F#]memorized \[F#]verse. \[E&7]\eat\]
+% \vskip5pt\replay\transpose{2}%
+% ^This verse is ^modulated up two ^half-steps.
+% \transpose{-2}%
+% \end{chorded}
+%
+% \paragraph{Both Keys.}
+% \DescMacro{trchordformat}
+% By default, when chords are automatically transposed using \mac{transpose},
+% only the transposed chords are printed.
+% However, in some cases you may wish to print the old chords and the
+% transposed chords together so that musicians playing transposing and
+% non-transposing instruments can play from the same piece of music.
+% This can be achieved by redefining the |\trchordformat| macro, which
+% receives two arguments---the original chord name and the transposed chord
+% name, respectively.
+% For example, to print the old chord above the new chord above each lyric,
+% define
+%
+% \begin{codeblock}
+% |\renewcommand{\trchordformat}[2]{\vbox{\hbox{#1}\hbox{#2}}}|
+% \end{codeblock}
+%
+% \paragraph{Changing Note Names.}
+% \DescMacro{solfedge}
+% \DescMacro{alphascale}
+% In many countries it is common to use the solfedge names for the notes of
+% the scale (\chord{LA, SI, DO, RE, MI, FA, SOL\/}) instead of the
+% alphabetic names (\chord{A, B, C, D, E, F, G\/}).
+% By default, the transposition logic only understands alphabetic names, but
+% you can tell it to look for solfedge names by typing |\solfedge|.
+% To return to alphabetic names, type |\alphascale|.
+%
+% \DescMacro{notenames}
+% You can use other note names as well.
+% To define your own note names, type
+%
+% \begin{codeblock}
+% |\notenames{|\Meta{nameA}|}{|\Meta{nameB}|}|$\ldots$|{|\Meta{nameG}|}|
+% \end{codeblock}
+%
+% \noindent
+% where each of \Meta{nameA} through \Meta{nameG} must consist entirely of
+% a sequence of one or more \emph{uppercase} letters.
+% For example, some solfedge musicians use \chord{TI} instead of \chord{SI}
+% for the second note of the scale.
+% To automatically transpose such music, use:
+%
+% \begin{codeblock}
+% |\notenames{LA}{TI}{DO}{RE}{MI}{FA}{SOL}|
+% \end{codeblock}
+%
+% \DescMacro{notenamesin}
+% \DescMacro{notenamesout}
+% The \Songs{} package can also automatically convert one set of note names
+% to another.
+% For example, suppose you have a large song book in which chords have been
+% typed using alphabetic note names, but you wish to produce a book that
+% uses the equivalent solfedge names.
+% You could achieve this by using the |\notenamesin| macro to tell the
+% \Songs{} package which note names you typed in the input file, and then
+% using |\notenamesout| to tell the \Songs{} package how you want it to
+% typeset each note name in the output file.
+% The final code looks like this:
+%
+% \begin{codeblock}
+% |\notenamesin{A}{B}{C}{D}{E}{F}{G}|
+% |\notenamesout{LA}{SI}{DO}{RE}{MI}{FA}{SOL}|
+% \end{codeblock}
+%
+% \noindent
+% The syntaxes of |\notenamesin| and |\notenamesout| are identical to that
+% of \mac{notenames} (see above), except that the arguments of |\notenamesout|
+% can consist of any \LaTeX{} code that is legal in horizontal mode, not just
+% uppercase letters.
+%
+% To stop converting between note names, use \mac{alphascale}, \mac{solfedge},
+% or \mac{notenames} to reset all note names back to identical input and
+% output scales.
+%
+% \paragraph{Transposing Chords In Macros.}
+% \DescMacro{transposehere}
+% The automatic transposition logic does not find chord names that are hidden
+% inside macro bodies.
+% For example, if you abbreviate a chord by typing,
+%
+% \begin{codeblock}
+% |\newcommand{\mychord}{F|\mac{shrp}| sus4/C|\mac{shrp}|}|
+% \mac{transpose}|{4}|
+% |\[\mychord]|\eat\]
+% \end{codeblock}
+%
+% \noindent
+% then the \mac{transpose} macro fails to transpose it; the
+% resulting chord is still an \chord{F\shrp sus4/C\shrp} chord.
+% To fix the problem, you can use |\transposehere| in your macros to
+% explicitly invoke the transposition logic on chord names embedded in
+% macro bodies.
+% The above example could be corrected by instead defining:
+%
+% \begin{codeblock}
+% |\newcommand{\mychord}{\transposehere{F|\mac{shrp}| sus4/C|\mac{shrp}|}}|
+% \end{codeblock}
+%
+% \DescMacro{notrans}
+% Transposition can be suppressed within material that would otherwise be
+% transposed by using the |\notrans| macro.
+% For example, writing
+%
+% \begin{codeblock}
+% \mac{transposehere}|{G = \notrans{G}}|
+% \end{codeblock}
+%
+% \noindent
+% would typeset a transposed \chord{G} followed by a non-transposed
+% \chord{G} chord.
+% This does not suppress note name conversion (see \mac{notenames}).
+% To suppress both transposition and note name conversion, just use
+% braces (e.g., |{G}| instead of |\notrans{G}|).
+%
+% \paragraph{Transposing Guitar Tablatures.}
+% \DescMacro{gtabtrans}
+% The songs package cannot automatically transpose tablature diagrams
+% (see \S\ref{sec:tablatures}).
+% Therefore, when automatic transposition is taking place, only the chord
+% names of \mac{gtab} macros are displayed (and transposed); the diagrams
+% are omitted.
+% To change this default, redefine the |\gtabtrans| macro, whose two
+% arguments are the two arguments to \mac{gtab}.
+% For example, to display original tablatures without transposing them even
+% when transposition has been turned on, write
+%
+% \begin{codeblock}
+% |\renewcommand{\gtabtrans}[2]{|\mac{gtab}|{|\mac{notrans}|{#1}}{#2}}|
+% \end{codeblock}
+%
+% \noindent
+% To transpose the chord name but not the diagram under it, replace
+% \mac{notrans}|{#1}| with simply |#1| in the above.
+% To restore the default behavior, write
+%
+% \begin{codeblock}
+% |\renewcommand{\gtabtrans}[2]{|\mac{transposehere}|{#1}}|
+% \end{codeblock}
+%
+% \section{Between Songs}\label{sec:between}
+%
+% Never put any material directly into the top level of a \env{songs}
+% environment.
+% Doing so will disrupt the page-builder, usually producing strange page
+% breaks and blank pages.
+% To safely put material between songs, use one of the environments
+% described in this section.
+%
+% \subsection{Intersong Displays}\label{sec:intersong}
+%
+% \DescEnv{intersong}
+% To put column-width material between the songs in a \env{songs} environment,
+% use an |intersong| environment:
+%
+% \begin{codeblock}
+% |\begin{intersong}|
+% $\vdots$
+% |\end{intersong}|
+% \end{codeblock}
+%
+% \noindent
+% Material contributed in an |intersong| environment is subject to the same
+% column-breaking rules as songs (see \S\ref{sec:layout}), but all other
+% formatting is up to you.
+% By default, \LaTeX{} inserts interline glue below the last line of an
+% |intersong| environment.
+% To suppress this, end the |intersong| content with |\par\nointerlineskip|.
+%
+% \DescEnv{intersong*}
+% To instead put page-width material above a song, use an |intersong*|
+% environment:
+%
+% \begin{codeblock}
+% |\begin{intersong*}|
+% $\vdots$
+% |\end{intersong*}|
+% \end{codeblock}
+%
+% \noindent
+% This starts a new page if the current page already has column-width
+% material in it.
+%
+% \DescEnv{songgroup}
+% By default, all intersong displays are omitted when generating a partial
+% book with \mac{includeonlysongs}.
+% You can force them to be included whenever a particular song is included
+% by using a |songgroup| environment:
+%
+% \begin{codeblock}
+% |\begin{songgroup}|
+% $\vdots$
+% |\end{songgroup}|
+% \end{codeblock}
+%
+% \noindent
+% Each |songgroup| environment may include any number of \env{intersong},
+% \env{intersong*}, or scripture quotations (see \S\ref{sec:scripture}),
+% but must include exactly one song.
+% When using \mac{includeonlysongs}, the entire group is included in the
+% book if the enclosed song is included; otherwise the entire group is
+% omitted.
+%
+% \subsection{Scripture Quotations}\label{sec:scripture}
+%
+% \paragraph{Starting a Scripture Quotation.}
+% \DescMacro{beginscripture}
+% \DescMacro{endscripture}
+% A special form of intersong block typesets a scripture quotation.
+% Scripture quotations begin and end with
+%
+% \begin{codeblock}
+% |\beginscripture{|\Meta{ref}|}|
+% $\vdots$
+% |\endscripture|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{ref} is a scripture reference that is
+% typeset at the end of the quotation.
+% The \Meta{ref} argument should conform to the same syntax
+% rules as for the \Meta{ref} arguments passed to \mac{beginsong}
+% macros (see \S\ref{sec:songs}).
+%
+% The text of the scripture quotation between the |\beginscripture| and
+% |\endscripture| lines are parsed in normal paragraph mode.
+% For example:
+%
+% \begin{codeblock}
+% |\beginscripture{James 5:13}|
+% {\tt\frenchspacing%
+% Is any one of you in trouble? He should pray. Is anyone happy? Let him sing songs of praise.
+% } |\endscripture|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{sample}
+% \beginscripture{James 5:13}
+% Is any one of you in trouble? He should pray. Is anyone happy? Let him sing songs of praise.
+% \endscripture
+% \end{sample}
+%
+% \paragraph{Tuplets.}
+% \DescMacro{Acolon}
+% \DescMacro{Bcolon}
+% To typeset biblical poetry the way it appears in most bibles, begin each
+% line with either |\Acolon| or |\Bcolon|.
+% A-colons are typeset flush with the left margin, while B-colons are
+% indented.
+% Any lines too long to fit are wrapped with double-width hanging indentation.
+% For example,
+%
+% \begin{codeblock}
+% |\beginscripture{Psalm 1:1}|
+% {\tt\frenchspacing%
+% |\Acolon| Blessed is the man
+% |\Bcolon| who does not walk in the counsel of the wicked
+% |\Acolon| or stand in the way of sinners
+% |\Bcolon| or sit in the seat of mockers.
+% } |\endscripture|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{sample}
+% \beginscripture{Psalm 1:1}
+% \Acolon Blessed is the man
+% \Bcolon who does not walk in the counsel of the wicked
+% \Acolon or stand in the way of sinners
+% \Bcolon or sit in the seat of mockers.
+% \endscripture
+% \end{sample}
+%
+% \paragraph{Stanzas.}
+% \DescMacro{strophe}
+% Biblical poetry is often grouped into stanzas or ``strophes'',
+% each of which is separated from the next by a small vertical
+% space.
+% You can create that vertical space by typing |\strophe|.
+% For example,
+%
+% \begin{codeblock}
+% |\beginscripture{Psalm 88:2-3}|
+% {\tt\frenchspacing%
+% |\Acolon| May my prayer come before you;
+% |\Bcolon| turn your ear to my cry.
+% |\strophe|
+% |\Acolon| For my soul is full of trouble
+% |\Bcolon| and my life draws near the grave.
+% } |\endscripture|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{sample}
+% \beginscripture{Psalm 88:2-3}
+% \Acolon May my prayer come before you;\par
+% \Bcolon turn your ear to my cry.\par
+% \strophe
+% \Acolon For my soul is full of trouble\par
+% \Bcolon and my life draws near the grave.
+% \endscripture
+% \end{sample}
+%
+% \paragraph{Indented Blocks.}
+% \DescMacro{scripindent}
+% \DescMacro{scripoutdent}
+% Some bible passages, such as those that mix prose and poetry, contain
+% indented blocks of text.
+% You can increase the indentation level within a scripture quotation
+% by using |\scripindent| and decrease it by using |\scripoutdent|.
+% For example,
+%
+% \begin{codeblock}
+% |\beginscripture{Hebrews 10:17-18}|
+% {\tt\frenchspacing%
+% Then he adds:
+% |\scripindent|
+% |\Acolon ``|Their sins and lawless acts
+% |\Bcolon| I will remember no more.|''|
+% |\scripoutdent|
+% And where these have been forgiven, there is no longer any sacrifice for sin.
+% } |\endscripture|
+% \end{codeblock}
+%
+% \noindent produces
+%
+% \begin{sample}
+% \beginscripture{Hebrews 10:17-18}
+% Then he adds:\par
+% \scripindent
+% \Acolon ``Their sins and lawless acts\par
+% \Bcolon I will remember no more.''\par
+% \scripoutdent
+% And where these have been forgiven, there is no longer any sacrifice for sin.
+% \endscripture
+% \end{sample}
+%
+% \section{Chapters and Sections}\label{sec:sectioning}
+%
+% \DescMacro{songsection}
+% \DescMacro{songchapter}
+% Song books can be divided into chapters and sections using all the usual
+% macros provided by \LaTeX{} (e.g., |\chapter|, |\section|, etc.) and by
+% other macro packages.
+% In addition, the \Songs{} package provides two helpful built-in sectioning
+% macros:
+%
+% \begin{codeblock}
+% |\songchapter{|\Meta{title}|}|
+% |\songsection{|\Meta{title}|}|
+% \end{codeblock}
+%
+% \noindent
+% which act like \LaTeX's |\chapter| and |\section| commands except that they
+% center the \Meta{title} text in sans serif font and omit the chapter/section
+% number.
+% The |\songchapter| macro only works in document classes that support
+% |\chapter| (e.g., the |book| class).
+%
+% \section{Indexes}
+%
+% \subsection{Index Creation}\label{sec:indexes}
+%
+% \DescMacro{newindex}
+% \DescMacro{newauthorindex}
+% \DescMacro{newscripindex}
+% The \Songs{} package supports three kinds of indexes: indexes by title and/or
+% notable lyrics, indexes by author, and indexes by scripture reference.
+% To generate an index, first declare the index in the document preamble
+% (i.e., before the |\begin{document}| line) with one of the following:
+%
+% \begin{codeblock}
+% |\newindex{|\Meta{id}|}{|\Meta{filename}|}|
+% |\newauthorindex{|\Meta{id}|}{|\Meta{filename}|}|
+% |\newscripindex{|\Meta{id}|}{|\Meta{filename}|}|
+% \end{codeblock}
+%
+% \noindent
+% The \Meta{id} should be an alphabetic identifier that will be used to
+% identify the index in other macros that reference it.
+% The \Meta{filename} should be a string that, when appended with an
+% extension, constitutes a valid filename on the system.
+% Auxiliary files named \Meta{filename}|.sxd| and \Meta{filename}|.sbx|
+% are generated during the automatic index generation process.
+% For example:
+%
+% \begin{codeblock}
+% |\newindex{mainindex}{idxfile}|
+% \end{codeblock}
+%
+% \noindent
+% creates a title index named ``|mainindex|'' whose data is
+% stored in files named |idxfile.sxd| and |idxfile.sbx|.
+%
+% \DescMacro{showindex}
+% To display the index in the document, use:
+%
+% \begin{codeblock}
+% |\showindex[|\Meta{columns}|]{|\Meta{title}|}{|\Meta{id}|}|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{id} is the same identifier used in the \mac{newindex},
+% \mac{newauthorindex}, or \mac{newscripindex} command, and where
+% the \Meta{title} is the title of the index, which should consist only of
+% simple text (no font or formatting macros, since those cannot be used in
+% pdf bookmark indexes).
+% The |[|\Meta{columns}|]| part is optional; if specified it dictates the
+% number of columns if the index can't fit in a single column.
+% For example, for a 2-column title index, write:
+%
+% \begin{codeblock}
+% |\showindex[2]{Index of Song Titles}{mainindex}|
+% \end{codeblock}
+%
+% \subsection{Index Entries}\label{sec:ientry}
+%
+% Every song automatically gets entries in the current \env{songs}
+% environment's list of title index(es) (see \S\ref{sec:songs}).
+% However, you can also add extra index entries for a song to any index.
+%
+% \paragraph{Indexing Lyrics.}
+% \DescEnv{index=}
+% For example, title indexes often have entries for memorable lines
+% of lyrics in a song in addition to the song's title.
+% You can add an index entry for the current song to the section's
+% title index(es) by adding |index={|\Meta{lyrics}|}| to the song's
+% \mac{beginsong} line.
+% For example,
+%
+% \begin{codeblock}
+% \mac{beginsong}|{Doxology}|
+% | [index={Praise God from Whom all blessings flow}]|
+% \end{codeblock}
+%
+% \noindent
+% causes the song to be indexed both as ``\textit{Doxology}'' and as
+% ``Praise God from Whom all blessings flow'' in the section's title index(es).
+% You can use |index=| multiple times in a \mac{beginsong} line to produce
+% multiple additional index entries.
+% Index entries produced with |index={|\Meta{lyrics}|}| are
+% typeset in an upright font instead of in italics to distinguish
+% them from song titles.
+%
+% \paragraph{Indexing Extra Song Titles.}
+% \DescEnv{ititle=}
+% To add a regular index entry typeset in italics to the title
+% index(es), use:
+%
+% \begin{codeblock}
+% |ititle={|\Meta{title}|}|
+% \end{codeblock}
+%
+% \noindent
+% in the \mac{beginsong} line instead.
+% Like \env{index=} keyvals, |ititle=| can be used multiple times to produce
+% multiple additional index entries.
+%
+% \DescMacro{indexentry}
+% \DescMacro{indextitleentry}
+% You can also create index entries by saying
+% |\indexentry[|\Meta{indexes}|]{|\Meta{lyrics}|}| (which creates an
+% entry like \env{index=}) or
+% |\indextitleentry[|\Meta{indexes}|]{|\Meta{title}|}| (which
+% creates an entry like \env{ititle=}).
+% These two macros can be used anywhere between the song's \mac{beginsong}
+% and \mac{endsong} lines, and can be used multiple times to produce
+% multiple entries.
+% If specified, \Meta{indexes} is a comma-separated list of the identifiers
+% of indexes to which the entry should be added.
+% Otherwise the new entry is added to all of the title indexes for the current
+% \env{songs} environment.
+%
+% \subsection{Compiling}\label{sec:compiling}
+%
+% As with a typical \LaTeX{} document, compiling a song book document with
+% indexes requires three steps.
+% First, use \LaTeX{} (|pdflatex| is recommended) to generate auxiliary files
+% from the |.tex| file:
+%
+% \begin{codeblock}
+% |pdflatex mybook.tex|
+% \end{codeblock}
+%
+% Second, use the |songidx.lua| script to generate an index for each index that
+% you declared with \mac{newindex}, \mac{newauthorindex}, or
+% \mac{newscripindex}.
+% The script can be launched using Lua\TeX, using the following syntax:
+%
+% \begin{codeblock}
+% |texlua songidx.lua |\textcolor{black}{[}|-b| \Meta{canon}|.can|\textcolor{black}{]} \Meta{filename}|.sxd| \Meta{filename}|.sbx|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{filename} is the same \Meta{filename} that was used in the
+% \mac{newindex}, \mac{newauthorindex}, or \mac{newscripindex} macro.
+% If the index was declared with \mac{newscripindex}, then the |-b| option
+% is used to specify which version of the bible you wish to use as a basis
+% for sorting your scripture index.
+% The \Meta{canon} part can be any of the |.can| files provided with
+% the |songidx| distribution.
+% If you are using a Protestant, Catholic, or Greek Orthodox Christian bible
+% with book names in English, then the |bible.can| canon file should work
+% well.
+% For other bibles, you should create your own |.can| file by copying and
+% modifying one of the existing |.can| files.
+%
+% For example, if your song book |.tex| file contains the lines
+%
+% \begin{codeblock}
+% \mac{newindex}|{titleidx}{titlfile}|
+% \mac{newauthorindex}|{authidx}{authfile}|
+% \mac{newscripindex}|{scripidx}{scrpfile}|
+% \end{codeblock}
+%
+% \noindent
+% then to generate indexes sorted according to a Christian English bible,
+% execute:
+%
+% \begin{codeblock}
+% |texlua songidx.lua titlfile.sxd titlfile.sbx|
+% |texlua songidx.lua authfile.sxd authfile.sbx|
+% |texlua songidx.lua -b bible.can scrpfile.sxd scrpfile.sbx|
+% \end{codeblock}
+%
+% Once the indexes are generated, generate the final book by invoking
+% \LaTeX{} one more time:
+%
+% \begin{codeblock}
+% |pdflatex mybook.tex|
+% \end{codeblock}
+%
+% \section{Customizing the Book}
+%
+% \subsection{Song and Verse Numbering}\label{sec:numbering}
+%
+% \paragraph{Song Numbering.}
+% \DescEnv{songnum}
+% The |songnum| counter defines the next song's number.
+% It is set to 1 at the beginning of a \env{songs} environment and is
+% increased by 1 after each \mac{endsong}.
+% It can be redefined anywhere except within a song.
+% For example,
+%
+% \begin{codeblock}
+% |\setcounter{songnum}{3}|
+% \end{codeblock}
+%
+% \noindent sets the next song's number to be 3.
+%
+% \DescMacro{thesongnum}
+% You can change the song numbering style for a song section by redefining
+% |\thesongnum|.
+% For example, to cause songs to be numbered A1, A2, etc., in the current
+% song section, type
+%
+% \begin{codeblock}
+% |\renewcommand{\thesongnum}{A\arabic{songnum}}|
+% \end{codeblock}
+%
+% \noindent
+% The expansion of |\thesongnum| must always produce plain text with no
+% font formatting or unexpandable macro tokens, since its text is
+% exported to auxiliary index generation files where it is sorted.
+%
+% \DescMacro{printsongnum}
+% To change the formatting of song numbers as they appear at the beginning
+% of each song, redefine the |\printsongnum| macro,
+% which expects the text yielded by \mac{thesongnum} as its only argument.
+% For example, to typeset song numbers in italics atop each song, define
+%
+% \begin{codeblock}
+% |\renewcommand{\printsongnum}[1]{\it\LARGE#1}|
+% \end{codeblock}
+%
+% \DescMacro{songnumwidth}
+% The |\songnumwidth| length defines the width of the shaded boxes that contain
+% song numbers at the beginning of each song.
+% For example, to make each such box 2 centimeters wide, you could define
+%
+% \begin{codeblock}
+% |\setlength{\songnumwidth}{2cm}|
+% \end{codeblock}
+%
+% \noindent
+% If |\songnumwidth| is set to zero, song numbers are not shown at all.
+%
+% \DescMacro{nosongnumbers}
+% To turn off song numbering entirely, type |\nosongnumbers|.
+% This inhibits the display of the song number atop each song
+% (but song numbers are still be displayed elsewhere, such as in indexes).
+% The same effect can be achieved by setting \mac{songnumwidth} to zero.
+%
+% \paragraph{Verse Numbering.}
+% \DescEnv{versenum}
+% The |versenum| counter defines the next verse's number.
+% It is set to 1 after each \mac{beginsong} line and is increased by 1 after
+% each \mac{endverse} (except if the verse begins with \mac{beginverse}|*|).
+% The |versenum| counter can be redefined anywhere within a song.
+% For example,
+%
+% \begin{codeblock}
+% |\setcounter{versenum}{3}|
+% \end{codeblock}
+%
+% \noindent sets the next verse's number to be 3.
+%
+% \DescMacro{theversenum}
+% You can change the verse numbering style by redefining |\theversenum|.
+% For example, to cause verses to be numbered in uppercase roman numerals,
+% define
+%
+% \begin{codeblock}
+% |\renewcommand{\theversenum}{\Roman{versenum}}|
+% \end{codeblock}
+%
+% \DescMacro{printversenum}
+% To change the formatting of verse numbers as they appear at the beginning
+% of each verse, redefine the |\printversenum| macro,
+% which expects the text yielded by \mac{theversenum} as its only argument.
+% For example, to typeset verse numbers in italics, define
+%
+% \begin{codeblock}
+% |\renewcommand{\printversenum}[1]{\it\LARGE#1.\ }|
+% \end{codeblock}
+%
+% \DescMacro{versenumwidth}
+% The |\versenumwidth| length defines the horizontal space reserved for verse
+% numbers to the left of each verse text.
+% Verse text is shifted right by this amount.
+% For example, to reserve half a centimeter of space for verse numbers, define
+%
+% \begin{codeblock}
+% |\setlength{\versenumwidth}{0.5cm}|
+% \end{codeblock}
+%
+% Verse numbers whose widths exceed |\versenumwidth| indent the first
+% line of the verse an additional amount to make room, but subsequent lines
+% of the verse are only indented by |\versenumwidth|.
+%
+% \DescMacro{noversenumbers}
+% To turn off verse numbering entirely, use |\noversenumbers|.
+% This is equivalent to saying
+%
+% \begin{codeblock}
+% |\renewcommand{|\mac{printversenum}|}[1]{}|
+% |\setlength{\versenumwidth}{0pt}|
+% \end{codeblock}
+%
+% \DescMacro{placeversenum}
+% The horizontal placement of verse numbers within the first line of each
+% verse is controlled by the |\placeversenum| macro.
+% By default, each verse number is placed flush-left.
+% \ImplOrDesc
+% {Authors interested in changing the placement of verse numbers should
+% consult \S\ref{sec:impparams} of the implementation section for more
+% information on this macro.}
+% {For more information on this macro, recompile this documentation with
+% the implementation section included.}
+%
+% \subsection{Song Appearance}
+%
+% \paragraph{Font Selection.}
+% \DescMacro{lyricfont}
+% By default, lyrics are typeset using the document-default font
+% (|\normalfont|) and with the document-default point size (|\normalsize|).
+% You can change these defaults by redefining |\lyricfont|.
+% For example, to cause lyrics to be typeset in small sans serif font,
+% you could define
+%
+% \begin{codeblock}
+% |\renewcommand{\lyricfont}{\sffamily\small}|
+% \end{codeblock}
+%
+% \DescMacro{stitlefont}
+% Song titles are typeset in a sans-serif, slanted font by default
+% (sans-serif, upright if producing slides), with minimal line spacing.
+% You can change this default by redefining |\stitlefont|.
+% For example, to cause titles to be typeset in a roman font with lines
+% spaced 20 points apart, you could define
+%
+% \begin{codeblock}
+% |\renewcommand{\stitlefont}{|
+% | \rmfont\Large\baselineskip=20pt\lineskiplimit=0pt|
+% |}|
+% \end{codeblock}
+%
+% \DescMacro{versefont}
+% \DescMacro{chorusfont}
+% \DescMacro{meterfont}
+% \DescMacro{echofont}
+% \DescMacro{notefont}
+% You can apply additional font changes to verses, choruses, meter numbers,
+% echo parts produced with \mac{echo}, and textual notes produced with
+% \mac{textnote} and \mac{musicnote}, by redefining |\versefont|,
+% |\chorusfont|, |\meterfont|, |\echofont|, and |\notefont|, respectively.
+% For example, to typeset choruses in italics, you could define
+%
+% \begin{codeblock}
+% |\renewcommand{\chorusfont}{\it}|
+% \end{codeblock}
+%
+% \DescMacro{notebgcolor}
+% \DescMacro{snumbgcolor}
+% The colors of shaded boxes containing textual notes and song numbers
+% can be changed by redefining the |\notebgcolor| and |\snumbgcolor|
+% macros.
+% For example:
+%
+% \begin{codeblock}
+% |\renewcommand{\notebgcolor}{red}|
+% \end{codeblock}
+%
+% \DescMacro{printchord}
+% By default, chords are typeset in sans serif oblique (slanted) font.
+% You can customize chord appearance by redefining |\printchord|, which
+% accepts the chord text as its argument.
+% For example, to cause chords to be printed in roman boldface font,
+% you could define
+%
+% \begin{codeblock}
+% |\renewcommand{\printchord}[1]{\rmfamily\bf#1}|
+% \end{codeblock}
+%
+% \paragraph{Accidental Symbols.}
+% \DescMacro{sharpsymbol}
+% \DescMacro{flatsymbol}
+% By default, sharp and flat symbols are typeset using \LaTeX's
+% |\#| ($\#$) and |\flat| ($\flat$) macros.
+% Users can change this by redefining |\sharpsymbol| and |\flatsymbol|.
+% For example, to use |\sharp| ($\sharp$) instead of $\#$, one could
+% redefine |\sharpsymbol| as follows.
+%
+% \begin{codeblock}
+% |\renewcommand{\sharpsymbol}{\ensuremath{^\sharp}}|
+% \end{codeblock}
+%
+% \paragraph{Verse and Chorus Titles.}
+% \DescMacro{everyverse}
+% \DescMacro{everychorus}
+% The |\everyverse| macro is executed at the beginning of each verse, and
+% |\everychorus| is executed at the beginning of each chorus.
+% Thus, to begin each chorus with the word ``Chorus:'' one could type,
+%
+% \begin{codeblock}
+% |\renewcommand{\everychorus}{|\mac{textnote}|{Chorus:}}|
+% \end{codeblock}
+%
+% \paragraph{Spacing Options.}
+% \DescMacro{versesep}
+% The vertical distance between song verses and song choruses is defined by
+% the skip register |\versesep|.
+% For example, to put 12 points of space between each pair of verses and
+% choruses, with a flexibility of plus or minus 2 points, you could define
+%
+% \begin{codeblock}
+% |\versesep=12pt plus 2pt minus 2pt|
+% \end{codeblock}
+%
+% \DescMacro{afterpreludeskip}
+% \DescMacro{beforepostludeskip}
+% The vertical distance between the song's body and its prelude and postlude
+% material is controlled by skips |\afterpreludeskip| and
+% |\beforepostludeskip|.
+% This glue can be made stretchable for centering effects.
+% For example, to cause each song body to be centered on the page with one
+% song per page, you could write:
+%
+% \begin{codeblock}
+% \mac{songcolumns}|{1}|
+% \mac{spenalty}|=-10000|
+% |\afterpreludeskip=2pt plus 1fil|
+% |\beforepostludeskip=2pt plus 1fil|
+% \end{codeblock}
+%
+% \DescMacro{baselineadj}
+% The vertical distance between the baselines of consecutive lines of
+% lyrics is computed by the \Songs{} package based on several factors
+% including the lyric font size, the chord font size (if in \env{chorded}
+% mode), and whether \env{slides} mode is currently active.
+% You can adjust the results of this computation by redefining skip
+% register |\baselineadj|.
+% For example, to reduce the natural distance between baselines by 1 point
+% but allow an additional 1 point of stretching when attempting to balance
+% columns, you could define
+%
+% \begin{codeblock}
+% |\baselineadj=-1pt plus 1pt minus 0pt|
+% \end{codeblock}
+%
+% \DescMacro{clineparams}
+% To change the vertical distance between chords and the lyrics below them,
+% redefine the |\clineparams| macro with a definition that adjusts the
+% \LaTeX{} parameters |\baselineskip|, |\lineskiplimit|, and |\lineskip|.
+% For example, to cause the baselines of chords and their lyrics to be
+% 12 points apart with at least 1 point of space between the bottom of the
+% chord and the top of the lyric, you could write:
+%
+% \begin{codeblock}
+% |\renewcommand{\clineparams}{|
+% | \baselineskip=12pt|
+% | \lineskiplimit=1pt|
+% | \lineskip=1pt|
+% |}|
+% \end{codeblock}
+%
+% \DescMacro{cbarwidth}
+% The width of the vertical line that appears to the left of choruses is
+% controlled by the |\cbarwidth| length.
+% To eliminate the line entirely (and the spacing around it), you can set
+% |\cbarwidth| to |0pt|:
+%
+% \begin{codeblock}
+% |\setlength{\cbarwidth}{0pt}|
+% \end{codeblock}
+%
+% \DescMacro{sbarheight}
+% The height of the horizontal line that appears between each pair of songs
+% is controlled by the |\sbarheight| length.
+% To eliminate the line entirely (and the spacing around it), you can set
+% |\sbarheight| to |0pt|:
+%
+% \begin{codeblock}
+% |\setlength{\sbarheight}{0pt}|
+% \end{codeblock}
+%
+% \paragraph{Song Top and Bottom Material.}
+% You can adjust the header and footer material that precedes and concludes
+% each song by redefining |\extendprelude| and |\extendpostlude|.
+%
+% \DescMacro{extendprelude}
+% \DescMacro{showauthors}
+% \DescMacro{showrefs}
+% By default, |\extendprelude| displays the song's authors and scripture
+% references using the macros |\showauthors| and |\showrefs|.
+% The following definition changes it to also print copyright info:
+%
+% \begin{codeblock}
+% |\renewcommand{\extendprelude}{|
+% | |\mac{showrefs}\mac{showauthors}
+% | {\bfseries|\mac{songcopyright}|\par}|
+% |}|
+% \end{codeblock}
+%
+% \DescMacro{extendpostlude}
+% By default, |\extendpostlude| prints the song's copyright and licensing
+% information as a single paragraph using \mac{songcopyright} and
+% \mac{songlicense}.
+% The following definition changes it to also print the words
+% ``Used with permission'' at the end of every song's footer information:
+%
+% \begin{codeblock}
+% |\renewcommand{\extendpostlude}{|
+% | |\mac{songcopyright}|\ |\mac{songlicense}|\unskip|
+% | \ Used with permission.|
+% |}|
+% \end{codeblock}
+%
+% In general, any macro documented in \S\ref{sec:songinfo} can be used
+% in |\extendprelude| and |\extendpostlude| to print song information, such
+% as \mac{songauthors}, \mac{songrefs}, \mac{songcopyright}, and
+% \mac{songlicense}.
+% For convenience, the \mac{showauthors} and \mac{showrefs} macros display
+% author and scripture reference information as a pre-formatted paragraph
+% the way it appears in the default song header blocks.
+%
+% See \S\ref{sec:newkey} for how to define new \mac{beginsong} keyvals and
+% use them in |\extendprelude|.
+%
+% \DescMacro{makeprelude}
+% \DescMacro{makepostlude}
+% For complete control over the appearance of the header and footer material
+% that precedes and concludes each song, you can redefine the macros
+% |\makeprelude| and |\makepostlude|.
+% When typesetting a song, the \Songs{} package code invokes both of these
+% macros once (after processing all the material between the \mac{beginsong}
+% and \mac{endsong} lines), placing the results within vboxes.
+% The resulting vboxes are placed atop and below the song content.
+% By default, |\makeprelude| displays the song's titles, authors, and scripture
+% references to the right of a shaded box containing the song's number; and
+% |\makepostlude| displays the song's copyright and licensing information in
+% fine print.
+%
+% As a simple example, the following causes each song to start with its
+% number and title(s), centered, in a large, boldface font, and then centers
+% the rest of the prelude material (e.g., references and authors) below that
+% (using \mac{extendprelude}).
+%
+% \begin{codeblock}
+% |\renewcommand\makeprelude{%|
+% | |\mac{resettitles}
+% | \centering|
+% | {\Large\bfseries|\mac{thesongnum}|. |\mac{songtitle}|\par|
+% | |\mac{nexttitle}\mac{foreachtitle}|{(|\mac{songtitle}|)\par}}%|
+% | |\mac{extendprelude}
+% |}|
+% \end{codeblock}
+%
+% \paragraph{Page- and Column-breaking.}
+% \DescMacro{vvpenalty}
+% \DescMacro{ccpenalty}
+% \DescMacro{vcpenalty}
+% \DescMacro{cvpenalty}
+% \DescMacro{brkpenalty}
+% Page-breaking and column-breaking within songs that are too large to fit
+% in a single column/page is influenced by the values of several penalties.
+% Penalties of value |\interlinepenalty| are inserted between consecutive
+% lines of each verse and chorus;
+% penalties of value |\vvpenalty|, |\ccpenalty|, |\vcpenalty|, and |\cvpenalty|
+% are inserted into each song between consecutive verses, between consecutive
+% choruses, after a verse followed by a chorus, and after a chorus followed by
+% a verse, respectively;
+% and penalties of value |\brkpenalty| are inserted wherever \mac{brk} is
+% used on a line by itself.
+% The higher the penalty, the less likely \TeX{} is to place a
+% page- or column-break at that site.
+% If any are set to $-10000$ or lower, breaks are forced there.
+% By default, |\interlinepenalty| is set to 1000 and the rest are set to 200
+% so that breaks between verses and choruses are preferred over breaks within
+% choruses and verses, but are not forced.
+%
+% \DescMacro{sepverses}
+% Saying |\sepverses| sets all of the above penalties to $-10000$ except for
+% |\ccpenalty| which is set to 100.
+% This is useful in \env{slides} mode because it forces each verse and
+% chorus to be typeset on a separate slide, except for consecutive choruses,
+% which remain together when possible.
+% (This default reflects an expectation that consecutive choruses typically
+% consist of a pre-chorus and chorus that are always sung together.)
+%
+% These defaults can be changed by changing the relevant penalty register
+% directly.
+% For example, to force a page- or column-break between consecutive choruses,
+% type
+%
+% \begin{codeblock}
+% |\ccpenalty=-10000|
+% \end{codeblock}
+%
+% \paragraph{Text Justification.}
+% \DescMacro{versejustify}
+% \DescMacro{chorusjustify}
+% \DescMacro{justifyleft}
+% \DescMacro{justifycenter}
+% To left-justify or center the lines of verses or choruses, redefine
+% |\versejustify| or |\chorusjustify| to |\justifyleft| or |\justifycenter|,
+% respectively.
+% For example, to cause choruses to be centered, one could type:
+%
+% \begin{codeblock}
+% |\renewcommand{|\mac{chorusjustify}|}{\justifycenter}|
+% \end{codeblock}
+%
+% \DescMacro{notejustify}
+% Justification of textual notes too long to fit on a single line
+% is controlled by the |\notejustify| macro.
+% By default, it sets up an environment that fully justifies the note
+% (i.e., all but the last line of each paragraph extends all the way from
+% the left to the right margin).
+% \ImplOrDesc
+% {Authors interested in changing this behavior should consult
+% \S\ref{sec:impparams} of the implementation section for more
+% information about this macro.}
+% {For more information, recompile this documentation with the
+% implementation section included.}
+%
+% \DescMacro{placenote}
+% A textual note that is shorter than a single line is placed flush-left by
+% default, or is centered when in slides mode.
+% This placement of textual notes is controlled by |\placenote|.
+% \ImplOrDesc
+% {Authors interested in changing this behavior should consult
+% \S\ref{sec:impparams} of the implementation section for more
+% information about this macro.}
+% {For more information, recompile this documentation with the
+% implementation section included.}
+%
+% \subsection{Scripture Appearance}
+%
+% \DescMacro{scripturefont}
+% By default, scripture quotations are typeset in Zaph Chancery font
+% with the document-default point size (|\normalsize|).
+% You can change these defaults by redefining |\scripturefont|.
+% For example, to cause scripture quotations to be typeset in sans serif
+% italics, define:
+%
+% \begin{codeblock}
+% |\renewcommand{\scripturefont}{\sffamily\it}|
+% \end{codeblock}
+%
+% \DescMacro{printscrcite}
+% By default, the citation at the end of a scripture quotation is
+% typeset in sans serif font at the document-default point size
+% (|\normalsize|).
+% You can customize the appearance of the citation by redefining
+% |\printscrcite|, which accepts the citation text as its argument.
+% For example, to cause citations to be printed in roman italics font, define:
+%
+% \begin{codeblock}
+% |\renewcommand{\printscrcite}[1]{\rmfamily\it#1}|
+% \end{codeblock}
+%
+% \subsection{Conditional Blocks}\label{sec:conditionals}
+%
+% Conditional macros allow certain material to be included in some books but
+% not others.
+% For example, a musician's chord book might include extra verses with
+% alternate chordings.
+%
+% \DescMacroGroup{if}{if...}{ifchorded,iflyric,ifslides,ifpartiallist,ifsongindexes,ifmeasures,ifrawtext,iftranscapos,ifnolyrics,ifpagepreludes,ifvnumbered}
+% A conditional block begins with a macro named |\if|\Meta{type}, where
+% \Meta{type} is one of the types listed in the first column of
+% Table~\ref{tab:conditionals}.
+% \begin{table}
+% \newcommand\tablerule{\noalign{\hrule}}
+% \newlength\oldbaselineskip \oldbaselineskip\baselineskip
+% \newlength\oldlineskip \oldlineskip\lineskip
+% \newdimen\oldlineskiplimit \oldlineskiplimit\lineskiplimit
+% \newcommand\oninterlineskip{%
+% \baselineskip\oldbaselineskip
+% \lineskip\oldlineskip
+% \lineskiplimit\oldlineskiplimit}
+% \vbox{\offinterlineskip\hrule
+% \halign{&\vrule#&\strut\quad#\hfil\quad&\vrule#&\quad\vtop{\oninterlineskip\hsize3.5in\leftskip0.25in\parindent-0.25in\indent\vrule height\ht\strutbox width0pt depth0pt#\vrule height0pt width0pt depth\dp\strutbox\par}\quad\cr
+% height2pt&\omit&&\omit&\cr
+% &\hfil{\large\strut Type}&&\hfil{\large\strut Processed only if\kern1pt$\ldots$}&\cr\tablerule
+% height2pt&\omit&&\omit&\cr
+% &|chorded|&&the \env{chorded} option is active&\cr\tablerule
+% &|lyric|&&the \env{chorded} option is not active&\cr\tablerule
+% &|slides|&&the \env{slides} option is active&\cr\tablerule
+% &|partiallist|&&the \mac{includeonlysongs} macro is being used to extract
+% a partial list of songs&\cr\tablerule
+% &|songindexes|&&the \env{noindexes} option is not active&\cr\tablerule
+% &|measures|&&the \env{nomeasures} option is not active&\cr\tablerule
+% &|rawtext|&&the \env{rawtext} option is active&\cr\tablerule
+% &|transcapos|&&the \env{transposecapos} option is active&\cr\tablerule
+% &|nolyrics|&&the \mac{nolyrics} macro is in effect&\cr\tablerule
+% &|pagepreludes|&&the \mac{pagepreludes} macro is in effect&\cr\tablerule
+% &|vnumbered|&&the current verse is numbered (i.e., it was started
+% with \mac{beginverse} instead of \mac{beginverse}|*|)&\cr}
+% \hrule}
+% \caption{Conditional macros}\label{tab:conditionals}
+% \end{table}
+% The conditional block concludes with the macro |\fi|.
+% Between the |\if|\Meta{type} and the |\fi| may also appear an |\else|.
+% For example, in the construction
+%
+% \begin{codeblock}
+% |\ifchorded|
+% \quad\Meta{A}
+% |\else|
+% \quad\Meta{B}
+% |\fi|
+% \end{codeblock}
+%
+% \noindent
+% material \Meta{A} is only included if the \env{chorded} option is active,
+% and material \Meta{B} is only included if the \env{chorded} option is not
+% active.
+%
+% \subsection{Page Layout}\label{sec:layout}
+%
+% \DescMacro{songcolumns}
+% The number of columns per page can be set with |\songcolumns|.
+% For example, to create 3 columns per page, write
+%
+% \begin{codeblock}
+% |\songcolumns{3}|
+% \end{codeblock}
+%
+% \noindent
+% The number of columns should only be changed outside of \env{songs}
+% environments.
+%
+% Setting the number of columns to zero disables the page-building algorithm
+% entirely.
+% This can be useful if you want to use an external package, such as
+% |multicol| or \LaTeX's built-in |\twocolumn| macro, to build pages.
+% For example, the following sets up an environment that is suitable for
+% a lyric book that uses |\twocolumn|:
+%
+% \begin{codeblock}
+% |\songcolumns{0}|
+% |\flushbottom|
+% |\twocolumn[\LARGE\centering My Songs]|
+% |\begin{|\env{songs}|}{}|
+% $\vdots$
+% |\end{|\env{songs}|}|
+% \end{codeblock}
+%
+% \noindent
+% When disabling the page-builder, please note the following potential
+% issues:
+%
+% \begin{itemize}
+% \item The \mac{repchoruses} feature does not work when the page-builder
+% is disabled because the page-builder is responsible for inserting
+% repeated choruses as new columns are formed.
+% \item External page-building packages tend to allow column- and
+% page-breaks within songs because they have no mechanism for moving an
+% entire song to the next column or page to avoid such a break
+% (see \mac{songpos} below).
+% \item Indexes produced with \mac{showindex} are typeset to the width of
+% the enclosing environment.
+% Thus, you should be sure to reset \LaTeX{} back to one column (via
+% |\onecolumn|) before executing \mac{showindex}.
+% \end{itemize}
+%
+% \DescMacro{pagepreludes}
+% Song preludes (i.e., the material atop each song, including the title) are
+% typeset by default at column width.
+% Writing |\pagepreludes| typesets subsequent preludes at page width atop
+% fresh pages, with the rest of the song in multiple columns beneath its title.
+% (To prohibit separation of songs from their preludes, it also sets
+% \mac{songpos} to 0.)
+%
+% \DescMacro{columnsep}
+% The horizontal distance between consecutive columns is controlled by
+% the |\columnsep| dimension.
+% For example, to separate columns by 1 centimeter of space, write
+%
+% \begin{codeblock}
+% |\columnsep=1cm|
+% \end{codeblock}
+%
+% \DescMacro{colbotglue}
+% When \LaTeX{} ends each column it inserts glue equal to |\colbotglue|.
+% In lyric books this macro is set to |0pt| so that each column ends flush with
+% the bottom of the page.
+% In other books that have ragged bottoms, it is set to stretchable
+% glue so that columns end at whatever vertical position is convenient.
+% The recommended setting for typsetting columns with ragged bottoms is:
+%
+% \begin{codeblock}
+% |\renewcommand{\colbotglue}{0pt plus .5\textheight minus 0pt}|
+% \end{codeblock}
+%
+% \DescMacro{lastcolglue}
+% The last column in a \env{songs} environment gets |\lastcolglue| appended
+% to it instead.
+% By default it is infinitely stretchable so that the last column ends
+% at its natural height.
+% By setting it to |0pt|, you can force the last column to be flush with
+% the bottom of the page:
+%
+% \begin{codeblock}
+% |\renewcommand{\lastcolglue}{0pt}|
+% \end{codeblock}
+%
+% \DescMacro{songpos}
+% The \Songs{} package uses a song-positioning algorithm that
+% moves songs to the next column or page in order to avoid column- or
+% page-breaks within songs.
+% The algorithm has four levels of aggressiveness, numbered from 0 to 3.
+% You can change the aggressiveness level by typing
+%
+% \begin{codeblock}
+% |\songpos{|\Meta{level}|}|
+% \end{codeblock}
+%
+% \noindent
+% The default level is 3, which avoids column-breaks, page-breaks,
+% and page-turns within songs whenever possible.
+% (Page-turns are page-breaks after odd-numbered pages in two-sided documents,
+% or after all pages in one-sided documents.)
+% Level 2 avoids page-breaks and page-turns but allows column-breaks within
+% songs.
+% Level 1 avoids only page-turns within songs.
+% Level 0 turns off the song-positioning algorithm entirely.
+% This causes songs to be positioned wherever \TeX{} thinks is best
+% based on penalty settings (see \mac{vvpenalty} and \mac{spenalty}).
+%
+% \DescMacro{spenalty}
+% The value of |\spenalty| controls the undesirability of column breaks
+% at song boundaries.
+% Usually it should be set to a value between 0 and \mac{vvpenalty} so that
+% breaks between songs are preferable to breaks between verses within a song.
+% By default it is set to 100.
+% When it is $-10000$ or less, breaks between songs are required, so that
+% each song always begins a fresh column.
+%
+% \subsection{Indexes}\label{sec:idxcust}
+%
+% \subsubsection{Index Appearance}
+%
+% \paragraph{Index Titles.}
+% To customize the appearance of index titles, redefine the \mac{songsection}
+% and/or \mac{songchapter} macros from \S\ref{sec:sectioning}.
+% For example, to use \LaTeX's built-in |\section| and |\chapter| macros
+% instead, you could write:
+%
+% \begin{codeblock}
+% |\renewcommand{|\mac{songchapter}|}{\chapter}|
+% |\renewcommand{|\mac{songsection}|}{\section}|
+% \end{codeblock}
+%
+% \paragraph{Layout and page divisions.}
+% \DescMacro{sepindexestrue}
+% \DescMacro{sepindexesfalse}
+% Indexes are by default typeset on separate pages, and when an index is
+% sufficiently small, it is centered on the page in one column.
+% To disable these defaults, write |\sepindexesfalse|.
+% This causes indexes to avoid using unnecessary vertical space or
+% starting unnecessary new pages.
+% To re-enable the defaults, use |\sepindexestrue|.
+%
+% \DescMacro{idxheadwidth}
+% The |\idxheadwidth| length defines the width of the shaded boxes that
+% begin each alphabetic block of a large title index.
+% Setting it to 0pt suppresses the boxes entirely.
+% For example, to set the width of those boxes to 1 centimeter, you could
+% define
+%
+% \begin{codeblock}
+% |\setlength{\idxheadwidth}{1cm}|
+% \end{codeblock}
+%
+% \paragraph{Fonts and colors.}
+% \DescMacro{idxrefsfont}
+% To control the formatting of the list of references on the right-hand side
+% of index entries, redefine |\idxrefsfont|.
+% For example, to typeset each list in boldface, write
+%
+% \begin{codeblock}
+% |\renewcommand{\idxrefsfont}{\bfseries}|
+% \end{codeblock}
+%
+% \DescMacro{idxtitlefont}
+% \DescMacro{idxlyricfont}
+% Title indexes contain entries for song titles and also entries for notable
+% lines of lyrics.
+% The fonts for these entries are controlled by |\idxtitlefont| and
+% |\idxlyricfont|, respectively.
+% For example, to show title entries in boldface sans-serif and lyric entries
+% in regular roman font, one could define:
+%
+% \begin{codeblock}
+% |\renewcommand{\idxtitlefont}{\sffamily\bfseries}|
+% |\renewcommand{\idxlyricfont}{\rmfamily\mdseries}|
+% \end{codeblock}
+%
+% \DescMacro{idxheadfont}
+% To change the font used to typeset the capital letters that start each
+% alphabetic section of a large title index, redefine |\idxheadfont|.
+% For example, to typeset those letters in italics instead of boldface, type
+%
+% \begin{codeblock}
+% |\renewcommand{\idxheadfont}{\sffamily\it\LARGE}|
+% \end{codeblock}
+%
+% \DescMacro{idxbgcolor}
+% To change the background color of the shaded boxes that contain the
+% capital letters that start each alphabetic sectino of a large title
+% index, redefine |\idxbgcolor|.
+% For example:
+%
+% \begin{codeblock}
+% |\renewcommand{\idxbgcolor}{red}|
+% \end{codeblock}
+%
+% \DescMacro{idxauthfont}
+% The font used to typeset entries of an author index is controlled by
+% |\idxauthfont|.
+% For example, to typeset such entries in italics instead of boldface, type
+%
+% \begin{codeblock}
+% |\renewcommand{\idxauthfont}{\small\it}|
+% \end{codeblock}
+%
+% \DescMacro{idxscripfont}
+% The font used to typeset entries of a scripture index is controlled by
+% |\idxscripfont|.
+% For example, to typeset such entries in boldface instead of italics, type
+%
+% \begin{codeblock}
+% |\renewcommand{\idxscripfont}{\sffamily\small\bfseries}|
+% \end{codeblock}
+%
+% \DescMacro{idxbook}
+% To control the formatting of the lines that start each new book of the
+% bible in a scripture index, redefine |\idxbook|, which accepts the book
+% name as its single argument.
+% For example, to typeset each book name in a box, one could define
+%
+% \begin{codeblock}
+% |\renewcommand{\idxbook}[1]{\framebox{\small\bfseries#1}}|
+% \end{codeblock}
+%
+% \DescMacro{idxcont}
+% In a scripture index, when a column break separates a block of entries
+% devoted to a book of the bible, the new column is titled
+% ``\Meta{bookname} (continued)'' by default.
+% You can change this default by redefining the |\idxcont| macro, which
+% receives the \Meta{bookname} as its single argument.
+% For example, to typeset an index in German, one might define
+%
+% \begin{codeblock}
+% |\renewcommand{\idxcont}[1]{\small\textbf{#1} (fortgefahren)}|
+% \end{codeblock}
+%
+% \subsubsection{Entry References}
+%
+% \DescMacro{indexsongsas}
+% By default, the right-hand side of each index entry contains a list of
+% one or more song numbers.
+% To instead list page numbers, use the |\indexsongsas| macro:
+%
+% \begin{codeblock}
+% |\indexsongsas{|\Meta{id}|}{\thepage}|
+% \end{codeblock}
+%
+% \noindent
+% where \Meta{id} is the same identifier used in the \mac{newindex},
+% \mac{newauthorindex}, or \mac{newscripindex} macro that created the index.
+% The second argument must always be something that expands into raw text
+% without any formatting, since this text gets output to auxiliary files that
+% are lexographically sorted by the index-generation program.
+% To go back to indexing songs by song number, use \mac{thesongnum} in place
+% of |\thepage| in the above.
+%
+% \subsubsection{PDF Bookmarks and Links}
+%
+% \DescMacro{songtarget}
+% \DescMacro{songlink}
+% Each \mac{beginsong} environment adds a PDF bookmark (if generating a PDF)
+% and hyperlink target (if using the |hyperref| package) for the
+% song by invoking |\songtarget| with two arguments:
+% (1) a suggested PDF bookmark level, and (2) a link target name.
+% Links in indexes to these targets are created by |\songlink|, which
+% also gets two arguments:
+% (1) the link target name (same as the second argument to \mac{songtarget}),
+% and (2) the text to be linked.
+%
+% Redefine these macros to customize or suppress these bookmarks, targets,
+% and links.
+% For example, to enable both bookmarks and links (the default behavior) use:
+%
+% \begin{codeblock}
+% |\renewcommand{\songtarget}[2]|
+% | {\pdfbookmark[#1]{|\mac{thesongnum}|. |\mac{songtitle}|}{#2}}|
+% |\renewcommand{\songlink}[2]{\hyperlink{#1}{#2}}|
+% \end{codeblock}
+%
+% \noindent
+% To enable links but not bookmarks, use:
+%
+% \begin{codeblock}
+% |\renewcommand{\songtarget}[2]{\hypertarget{#2}{\relax}}|
+% |\renewcommand{\songlink}[2]{\hyperlink{#1}{#2}}|
+% \end{codeblock}
+%
+% \noindent
+% To disable both bookmarks and links, use:
+%
+% \begin{codeblock}
+% |\renewcommand{\songtarget}[2]{}|
+% |\renewcommand{\songlink}[2]{#2}|
+% \end{codeblock}
+%
+% \subsubsection{Sort Order}
+%
+% The alphabetic ordering of entries in title and author indexes is dictated
+% by the computer system on which the \Songs{} software is installed.
+% Different languages and regions have different sorting conventions, so the
+% |songidx| Lua script delegates decisions about order to your operating system.
+% If the default ordering proves inadequate, you can modify it by changing your
+% operating system's \emph{locale} (see your system's local help files).
+% Alternatively, you can explicitly tell the |songidx| program which locale to
+% use in one of three ways:
+%
+% \begin{itemize}
+% \item \emph{Windows:}
+% Edit the |generate.bat| file in the |Sample| folder (or your working folder)
+% with any plain text editor (e.g., Vim or Notepad).
+% Near the top, find the line that says |SET locale=|.
+% After the |=|, type any valid locale name.
+% For a list of valid locale names on Windows, please see the ``Language name
+% abbreviation'' column of Microsoft's online National Language Support (NLS)
+% API Reference:
+%
+% {\centering\url{http://msdn.microsoft.com/en-us/goglobal/bb896001.aspx}\par}
+%
+% \item \emph{Unix:}
+% Create an environment variable named |SONGIDX_LOCALE| and set it equal to
+% the desired locale name.
+% The command |locale -a| lists all valid locale names on most Unix systems.
+%
+% \item \emph{Command-line:}
+% If you are executing the |songidx| script manually, use the |-l| option to
+% specify the locale:
+%
+% \begin{codeblock}
+% |texlua songidx -l sv_SE myindex.sxd myindex.sbx|
+% \end{codeblock}
+%
+% \end{itemize}
+%
+% \subsubsection{Special Words In Song Info}
+%
+% The following macros control how certain keywords are treated when parsing
+% and sorting index entries.
+% They only affect indexes that have already been declared, so put them
+% strictly after all your index creation commands (see \S\ref{sec:indexes}).
+%
+% \DescMacro{titleprefixword}
+% In English, when a title begins with ``The'' or ``A'', it is traditional to
+% move these words to the end of the title and sort the entry by the following
+% word.
+% So for example, ``The Song Title'' is typically indexed as
+% ``Song Title, The''.
+% To change this default behavior, you can use |\titleprefixword| in the
+% document preamble to identify each word to be moved to the end whenever
+% it appears as the first word of a title index entry.
+% For example, to cause the word ``I'' to be moved to the end of title index
+% entries, one could say,
+%
+% \begin{codeblock}
+% |\titleprefixword{I}|
+% \end{codeblock}
+%
+% \noindent
+% The first use of |\titleprefixword| overrides the defaults, so if you also
+% want to continue to move ``The'' and ``A'' to the end of entries, you must
+% also say |\titleprefixword{The}| and |\titleprefixword{A}| explicitly.
+% This macro may only be used in the document preamble but may be used
+% multiple times to declare multiple prefix words.
+%
+% \DescMacro{authsepword}
+% When parsing author index entries, the word ``and'' is recognized by the
+% |songidx| script as a conjunctive that separates author names.
+% To override this default and specify a different conjunctive, use the
+% |\authsepword| macro one or more times in the document preamble.
+% For example, to instead treat ``und'' as a conjunctive, you could say,
+%
+% \begin{codeblock}
+% |\authsepword{und}|
+% \end{codeblock}
+%
+% \noindent
+% The first use of |\authsepword| and each of the following macros overrides
+% the default, so if you also want to continue to treat ``and'' as a
+% conjunctive, you must also say |\authsepword{and}| explicitly.
+%
+% \DescMacro{authbyword}
+% When parsing author index entries, the word ``by'' is recognized as a
+% keyword signaling that the index entry should only include material
+% in the current list item that follows the word ``by''.
+% So for example, ``Music by J.S. Bach'' is indexed as ``Bach, J.S.''
+% rather than ``Bach, Music by J.S.''
+% To recognize a different word instead of ``by'', you can use |\authbyword|
+% in the document preamble.
+% For example, to recognize ``durch'' instead, you could say
+%
+% \begin{codeblock}
+% |\authbyword{durch}|
+% \end{codeblock}
+%
+% \DescMacro{authignoreword}
+% When parsing author index entries, if a list item contains the word
+% ``unknown'', that item is ignored and is not indexed.
+% This prevents items like ``Composer unknown'' from being indexed as names.
+% To cause the indexer to recognize and ignore a different word, you can
+% use the |\authignoreword| macro in the document preamble.
+% For example, to ignore author index entries containing the word
+% ``unbekannt'', you could say,
+%
+% \begin{codeblock}
+% |\authignoreword{unbekannt}|
+% \end{codeblock}
+%
+% \subsection{Page Headers and Footers}
+%
+% In \LaTeX, page headers and footers are defined using a system of
+% invisible \emph{marks} that get inserted into the document at the
+% beginning of each logical unit of the document (e.g., each section, song,
+% verse, and chorus).
+% The headers and footers are then defined so as to refer to the first
+% and/or last invisible mark that ends up on each page once the document
+% is divided into pages.
+% This section describes the marks made available by the \Songs{} package.
+% For more detailed information about the marks already provided by
+% \LaTeX{} and how to use them, consult any \LaTeX{} user manual.
+%
+% \DescMacro{songmark}
+% \DescMacro{versemark}
+% \DescMacro{chorusmark}
+% To add song information to page headings and footers, redefine |\songmark|,
+% |\versemark|, or |\chorusmark| to add the necessary \TeX{} marks to the
+% current page whenever a new song, verse, or chorus begins.
+% These macros expect no arguments; to access the current song's
+% information including titles, use the macros documented in
+% \S\ref{sec:songinfo}.
+% To access the current song's number or the current verse's number, use
+% \mac{thesongnum} or \mac{theversenum} (see \S\ref{sec:numbering}).
+% For example, to include the song number in the page headings produced by
+% \LaTeX's |\pagestyle{myheadings}| feature, you could redefine |\songmark|
+% as follows:
+%
+% \begin{codeblock}
+% |\renewcommand{\songmark}{\markboth{|\mac{thesongnum}|}{|\mac{thesongnum}|}}|
+% \end{codeblock}
+%
+% \subsection{Defining New Beginsong Keyvals}\label{sec:newkey}
+%
+% \DescMacro{newsongkey}
+% The \mac{beginsong} macro supports several optional keyval parameters for
+% declaring song information, including \env{by=}, \env{sr=}, and \env{cr=}.
+% Users can define their own additional keyvals as well.
+% To do so, use the |\newsongkey| macro, which has the syntax
+%
+% \begin{codeblock}
+% |\newsongkey{|\Meta{keyname}|}{|\Meta{initcode}|}[|\Meta{default}|]{|\Meta{setcode}|}|
+% \end{codeblock}
+%
+% \noindent
+% Here, \Meta{keyname} is the name of the new key for the keyval,
+% \Meta{initcode} is \LaTeX{} code that is executed at the start of each
+% \mac{beginsong} line before the \mac{beginsong} arguments are processed,
+% \Meta{default} (if specified) is the default value used for the keyval when
+% \Meta{keyname} appears in \mac{beginsong} without a value,
+% and \Meta{setcode} is macro code that is executed whenever
+% \Meta{key} is parsed as part of the \mac{beginsong} keyval arguments.
+% In \Meta{setcode}, |#1| expands to the value given by the user for the
+% keyval (or to \Meta{default} if no value was given).
+%
+% For example, to define a new song key called |arr| which stores its
+% value in a macro called |\arranger|, one could write:
+%
+% \begin{codeblock}
+% |\newcommand{\arranger}{}|
+% |\newsongkey{arr}{\def\arranger{}}|
+% | {\def\arranger{Arranged by #1\par}}|
+% \end{codeblock}
+%
+% \noindent
+% Then one could redefine \mac{extendprelude} to print the arranger below the
+% other song header information:
+%
+% \begin{codeblock}
+% |\renewcommand{\extendprelude}{|
+% | |\mac{showrefs}\mac{showauthors}
+% | {\bfseries\arranger}|
+% |}|
+% \end{codeblock}
+%
+% \noindent
+% A \mac{beginsong} line could then specify the song's arranger as follows:
+%
+% \begin{codeblock}
+% \mac{beginsong}|{The Title}[arr={R. Ranger}]|
+% $\vdots$
+% \mac{endsong}
+% \end{codeblock}
+%
+% \noindent This produces
+%
+% \begin{sample}
+% \setcounter{songnum}{1}%
+% \vskip1pt%
+% \newcommand\arranger{}%
+% \newsongkey{arr}{\def\arranger{}}%
+% {\def\arranger{Arranged by #1\par}}%
+% \renewcommand{\extendprelude}{
+% \showrefs\showauthors
+% {\bfseries\arranger}
+% }%
+% \beginsong{The Title}[arr={R. Ranger}]
+% \endsong
+% \renewcommand{\extendprelude}{}%
+% \end{sample}
+%
+% For more detailed information about keyvals and how they work, consult the
+% documentation for David Carlisle's |keyval| package, which comes standard
+% with most \LaTeXe{} installations.
+%
+% \subsection{Font Kerning Corrections}
+%
+% \paragraph{Chord Overstriking.}
+% In order to conserve space and keep songs readable, the \Songs{} package
+% pushes chords down very close to the lyrics with which they are paired.
+% Unfortunately, this can sometimes cause low-hanging characters in chord
+% names to overstrike the lyrics they sit above.
+% For example,
+%
+% \example|\[(Gsus4/D)]Overstrike|\produces{\[(Gsus4/D)]Overstrike}
+% \eat\]
+%
+% \noindent
+% Note that the parentheses and slash symbols in the chord name have
+% invaded the lyric that sits beneath them.
+%
+% \DescMacro{chordlocals}
+% The best solution to this problem is to use a font for chord names that
+% minimizes low-hanging symbols; but if you lack such a font, then the
+% following trick works pretty well.
+% Somewhere in the preamble of your document, you can write the following
+% \LaTeX{} code:
+%
+% \begin{codeblock}
+% |\renewcommand{\chordlocals}{\catcode`(\active|
+% | \catcode`)\active|
+% | \catcode`/\active}|
+% |\newcommand{\smraise}[1]{\raise2pt\hbox{\small#1}}|
+% |\newcommand{\myslash}{\smraise/}|
+% |\newcommand{\myopenparen}{\smraise(|\eat)|}|
+% |\newcommand{\mycloseparen}{\smraise)}|
+% |{\chordlocals|
+% | \global\let(\myopenparen|
+% | \global\let)\mycloseparen|
+% | \global\let/\myslash}|
+% \end{codeblock}
+%
+% \noindent
+% This sets the |/|, |(|, and |)| symbols as active characters whenever they
+% appear within chord names.
+% \ImplOrDesc
+% {(See \S\ref{sec:chordlocals} for documentation of the
+% \texttt{\string\chordlocals} hook.)}
+% {(Recompile this documentation to include the implementation section
+% for more information about the \texttt{\string\chordlocals} macro.)}
+% Each active character is defined so that it produces a smaller, raised
+% version of the original symbol.
+% The result is as follows:
+%
+% \renewcommand{\chordlocals}{\catcode`(\active
+% \catcode`)\active
+% \catcode`/\active}
+% \newcommand{\smraise}[1]{\raise2pt\hbox{\small#1}}
+% \newcommand{\myslash}{\smraise/}
+% \newcommand{\myopenparen}{\smraise(}
+% \newcommand{\mycloseparen}{\smraise)}
+% {\chordlocals
+% \global\let(\myopenparen
+% \global\let)\mycloseparen
+% \global\let/\myslash}
+%
+% \example|\[(Gsus4/D)]Overstrike (fixed)|\produces{\[(Gsus4/D)]Overstrike (fixed)}
+% \eat\]
+%
+% \renewcommand\chordlocals{}
+%
+% \noindent
+% As you can see, the low-hanging symbols have been elevated so that they
+% sit above the baseline, correcting the overstrike problem.
+%
+% \paragraph{Scripture Font Quotation Marks.}
+% \DescMacro{shiftdblquotes}
+% The \Songs{} package compensates for a kerning problem in the Zaph Chancery
+% font (used to typeset scripture quotations) by redefining the |``| and |''|
+% token sequences to be active characters that yield double-quotes shifted
+% 1.1 points and 2 points left, respectively, of their normal positions.
+% If you use a different font size for scripture quotations, then you can use
+% the |\shiftdblquotes| macro when redefining \mac{scripturefont} to change
+% this kerning correction.
+% For example,
+%
+% \begin{codeblock}
+% |\renewcommand{|\mac{scripturefont}|}{|
+% | \usefont{OT1}{pzc}{mb}{it}|
+% | \shiftdblquotes{-1pt}{-2pt}{-3pt}{-4pt}|
+% |}|
+% \end{codeblock}
+%
+% \noindent
+% removes 1 point of space to the left and 2 points of space to the
+% right of left-double-quote characters, and 3 points to the left and 4 points
+% to the right of right-double-quotes, within scripture quotations.
+%
+% \section{Informational Macros}\label{sec:songinfo}
+%
+% The macros described in this section can be used to retrieve information
+% about the current song.
+% This can be used when redefining \mac{extendprelude}, \mac{extendpostlude},
+% \mac{makeprelude}, \mac{makepostlude}, \mac{songmark}, \mac{versemark}, or
+% \mac{chorusmark}, or any other macros that might typeset this information.
+%
+% \DescMacro{songauthors}
+% To get the current song's list of authors (if any) use |\songauthors|.
+% This yields the value of the \env{by=} key used in the \mac{beginsong}
+% line.
+%
+% \DescMacro{songrefs}
+% To get the current song's list of scripture references (if any) use
+% |\songrefs|.
+% This yields the value of the \env{sr=} key used in the \mac{beginsong}
+% line, but modified with hyphens changed to en-dashes and spaces falling
+% within a list of verse numbers changed to thin spaces for better
+% typesetting.
+% In addition, various penalties have been added to inhibit line breaks
+% in strange places and encourage line breaks in others.
+%
+% \DescMacro{songcopyright}
+% To get the current song's copyright info (if any), use |\songcopyright|.
+% This yields the value of the \env{cr=} key used in the \mac{beginsong} line.
+%
+% \DescMacro{songlicense}
+% To get the current song's licensing information (if any), use
+% |\songlicense|.
+% This yields the value of the \env{li=} key used in the \mac{beginsong}
+% line, or whatever text was declared with \mac{setlicense}.
+%
+% \DescMacro{songtitle}
+% The |\songtitle| macro yields the current song's title.
+% By default this is the first title provided in the \mac{beginsong} line.
+% The \mac{nexttitle} and \mac{foreachtitle} macros (see below) cause it
+% to be set to the current song's other titles, if any.
+%
+% \DescMacro{resettitles}
+% To get the current song's primary title (i.e., the first title specified
+% in the song's \mac{beginsong} line), execute |\resettitles|.
+% This sets the |\songtitle| macro to be the song's primary title.
+%
+% \DescMacro{nexttitle}
+% To get the song's next title, execute |\nexttitle|, which
+% sets |\songtitle| to be the next title in the song's list of titles
+% (or sets |\songtitle| to |\relax| if there are no more titles).
+%
+% \DescMacro{foreachtitle}
+% The |\foreachtitle| macro accepts \LaTeX{} code as its single
+% argument and executes it once for each (remaining) song title.
+% Within the provided code, use |\songtitle| to get the current title.
+% For example, the following code generates a comma-separated list of all
+% of the current song's titles:
+%
+% \begin{codeblock}
+% \mac{resettitles}
+% \mac{songtitle}
+% \mac{nexttitle}
+% |\foreachtitle{, |\mac{songtitle}|}|
+% \end{codeblock}
+%
+% \DescMacro{songlist}
+% When \mac{includeonlysongs} is used to extract a partial list of songs, the
+% |\songlist| macro expands to the comma-separated list of songs that is being
+% extracted.
+% Redefining |\songlist| within the document preamble alters the list of
+% songs to be extracted.
+% Redefining it after the preamble may have unpredictable results.
+%
+% \section{Other Resources}
+%
+% There are a number of other \LaTeX{} packages available for typesetting
+% songs, tablature diagrams, or song books.
+% Probably the best of these is the \Rath{} package by Christopher Rath
+% (\href{http://rath.ca/Misc/Songbook/}{{\tt http://rath.ca/Misc/Songbook/}}).
+% Most of the differences between other packages and this one are intentional;
+% the following is a summary of where I've adopted various differing design
+% decisions and why.
+%
+% \bigskip
+%
+% \paragraph{Ease of Song Entry.}
+% Much of the \Songs{} package programming is devoted to easing the burden of
+% typing chords.
+% With most \LaTeX{} song book packages the user types chords using a standard
+% \LaTeX{} macro syntax like |\chord{|\Meta{chord}|}{|\Meta{lyric}|}|.
+% The \Songs{} package uses a less conventional
+% |\[|\Meta{chord}|]|\Meta{lyric}\eat\] syntax for several
+% reasons detailed below.
+%
+% First, macros in the standard \LaTeX{} syntax require more key-presses
+% than macros in the \Songs{} package's syntax.
+% This can become become very taxing when typing up a large book.
+% Chords often appear as frequently as one per syllable, especially in hymns,
+% so keeping the syntax as brief as possible is desirable.
+%
+% Second, the standard \LaTeX{} macro syntax requires the user to estimate how
+% much of the \Meta{lyric} will lie below the chord (because the \Meta{lyric}
+% part must be enclosed in braces) whereas the \Songs{} package's syntax does
+% not.
+% Estimating this accurately can be quite difficult, since in many cases the
+% \Meta{lyric} part must include punctuation or multiple words to get proper
+% results.
+% The \Songs{} package automates this for the user, significantly easing the
+% task of chord-entry.
+%
+% Third, unlike the standard \LaTeX{} chord syntax, the \Songs{} package's
+% syntax handles all hyphenation of chorded lyrics fully automatically.
+% Extra hyphenation must be introduced in chord books wherever a chord
+% is wider than the syllable it sits above.
+% With the standard \LaTeX{} chord syntax such hyphenation must be
+% introduced manually by the user (usually via a special hyphenation macro),
+% but the \Songs{} package does this automatically.
+%
+% Fourth and finally, some other packages allow the user to use ``|b|''
+% in a \Meta{chord} to produce a flat symbol, whereas the \Songs{} package
+% requires an ``|&|'' instead.
+% Using ``|b|'' is more intuitive but prevents the
+% use of ``|b|'' for any other purpose within a \Meta{chord}, such as to
+% produce a literal ``b'' or to type another macro name like |\hbox| that
+% contains a ``b''.
+% Consequently, the \Songs{} package uses the less obvious ``|&|'' symbol to
+% produce flat symbols.
+%
+% \paragraph{Song Structure.}
+% The \Songs{} package provides a relatively small number of macros for
+% typesetting high-level song structure, including verses, choruses,
+% textual comments, and conditional macros that indicate that certain sections
+% should go in chord books but not lyric books.
+% These can be combined to typeset more sophisticated structures such as
+% intros, bridges, brackets, endings, and the like.
+% This is done in lieu of providing a specific macro for each of these
+% structures since it results in greater flexibility and fewer macros for
+% users to learn.
+%
+% \paragraph{Multiple columns.}
+% The \Songs{} package was designed from the ground up to produce song books
+% with many songs per page, arranged in multiple columns.
+% As a result, it includes elaborate support for many features not found in
+% most other packages, such as automatic column balancing, completely
+% customizable song header and song footer blocks, and facilities for adding
+% beautiful scripture quotations to fill in gaps between songs.
+%
+% \paragraph{Indexes.}
+% Another major feature of the \Songs{} package is its support for a variety
+% of different index types, most notably indexes arranged by scripture
+% reference.
+% Scripture indexes can be invaluable for planning services around particular
+% sermons or topics.
+% The \Songs{} package allows book authors to specify the names and preferred
+% ordering of books of the bible, and automatically handles complex issues
+% like overlapping verse ranges to produce an easy-to-read, compact, and
+% well-ordered index.
+% Other supported indexes include those sorted by author, by title, and by
+% notable lines of lyrics.
+%
+% \paragraph{Automatic Transposition.}
+% The \Songs{} package has a facility for automatically transposing songs, and
+% even generating chord books that print the chords in multiple keys (e.g., so
+% that a pianist and guitarist using a capo can play together from the same
+% book).
+%
+% \bigskip
+%
+% The \Songs{} package was developed entirely independently of all other
+% \LaTeX{} song book packages.
+% I originally developed the set of \LaTeX{} macros that eventually became
+% the \Songs{} package in order to typeset a song book for the Graduate
+% Christian Fellowship (GCF) at Cornell University, and the Cornell
+% International Christian Fellowship (CICF).
+% Once I had fine-tuned my package to be sufficiently versatile, I decided
+% to release it for public use.
+% At that time I noticed the \Rath{} package and others, and wrote this
+% summary of the most prominent differences.
+%
+% For information on more song-typesetting resources for \LaTeX, I recommend
+% consulting the documentation provided with the \Rath{} package.
+% It includes an excellent list of other resources that might be of interest
+% to creators of song books.
+%
+% \section{GNU General Public License}\label{sec:license}
+%
+% \begingroup\small
+%
+% \begin{center}
+% {\large\sc Terms and Conditions For \\ Copying, Distribution and Modification}
+% \end{center}
+%
+% \begin{enumerate}\addtocounter{enumi}{-1}
+%
+% \item
+%
+% This License applies to any program or other work which contains a notice
+% placed by the copyright holder saying it may be distributed under the
+% terms of this General Public License. The ``Program'', below, refers to
+% any such program or work, and a ``work based on the Program'' means either
+% the Program or any derivative work under copyright law: that is to say, a
+% work containing the Program or a portion of it, either verbatim or with
+% modifications and/or translated into another language. (Hereinafter,
+% translation is included without limitation in the term ``modification''.)
+% Each licensee is addressed as ``you''.
+%
+% Activities other than copying, distribution and modification are not
+% covered by this License; they are outside its scope. The act of
+% running the Program is not restricted, and the output from the Program
+% is covered only if its contents constitute a work based on the
+% Program (independent of having been made by running the Program).
+% Whether that is true depends on what the Program does.
+%
+% \item You may copy and distribute verbatim copies of the Program's source
+% code as you receive it, in any medium, provided that you conspicuously
+% and appropriately publish on each copy an appropriate copyright notice
+% and disclaimer of warranty; keep intact all the notices that refer to
+% this License and to the absence of any warranty; and give any other
+% recipients of the Program a copy of this License along with the Program.
+%
+% You may charge a fee for the physical act of transferring a copy, and you
+% may at your option offer warranty protection in exchange for a fee.
+%
+% \item
+%
+% You may modify your copy or copies of the Program or any portion
+% of it, thus forming a work based on the Program, and copy and
+% distribute such modifications or work under the terms of Section~1
+% above, provided that you also meet all of these conditions:
+%
+% \begin{enumerate}
+%
+% \item
+%
+% You must cause the modified files to carry prominent notices stating that
+% you changed the files and the date of any change.
+%
+% \item
+%
+% You must cause any work that you distribute or publish, that in
+% whole or in part contains or is derived from the Program or any
+% part thereof, to be licensed as a whole at no charge to all third
+% parties under the terms of this License.
+%
+% \item
+% If the modified program normally reads commands interactively
+% when run, you must cause it, when started running for such
+% interactive use in the most ordinary way, to print or display an
+% announcement including an appropriate copyright notice and a
+% notice that there is no warranty (or else, saying that you provide
+% a warranty) and that users may redistribute the program under
+% these conditions, and telling the user how to view a copy of this
+% License. (Exception: if the Program itself is interactive but
+% does not normally print such an announcement, your work based on
+% the Program is not required to print an announcement.)
+%
+% \end{enumerate}
+%
+% These requirements apply to the modified work as a whole. If
+% identifiable sections of that work are not derived from the Program,
+% and can be reasonably considered independent and separate works in
+% themselves, then this License, and its terms, do not apply to those
+% sections when you distribute them as separate works. But when you
+% distribute the same sections as part of a whole which is a work based
+% on the Program, the distribution of the whole must be on the terms of
+% this License, whose permissions for other licensees extend to the
+% entire whole, and thus to each and every part regardless of who wrote it.
+%
+% Thus, it is not the intent of this section to claim rights or contest
+% your rights to work written entirely by you; rather, the intent is to
+% exercise the right to control the distribution of derivative or
+% collective works based on the Program.
+%
+% In addition, mere aggregation of another work not based on the Program
+% with the Program (or with a work based on the Program) on a volume of
+% a storage or distribution medium does not bring the other work under
+% the scope of this License.
+%
+% \item
+% You may copy and distribute the Program (or a work based on it,
+% under Section~2) in object code or executable form under the terms of
+% Sections~1 and~2 above provided that you also do one of the following:
+%
+% \begin{enumerate}
+%
+% \item
+%
+% Accompany it with the complete corresponding machine-readable
+% source code, which must be distributed under the terms of Sections~1
+% and~2 above on a medium customarily used for software interchange; or,
+%
+% \item
+%
+% Accompany it with a written offer, valid for at least three
+% years, to give any third party, for a charge no more than your
+% cost of physically performing source distribution, a complete
+% machine-readable copy of the corresponding source code, to be
+% distributed under the terms of Sections~1 and~2 above on a medium
+% customarily used for software interchange; or,
+%
+% \item
+%
+% Accompany it with the information you received as to the offer
+% to distribute corresponding source code. (This alternative is
+% allowed only for noncommercial distribution and only if you
+% received the program in object code or executable form with such
+% an offer, in accord with Subsection~b above.)
+%
+% \end{enumerate}
+%
+% The source code for a work means the preferred form of the work for
+% making modifications to it. For an executable work, complete source
+% code means all the source code for all modules it contains, plus any
+% associated interface definition files, plus the scripts used to
+% control compilation and installation of the executable. However, as a
+% special exception, the source code distributed need not include
+% anything that is normally distributed (in either source or binary
+% form) with the major components (compiler, kernel, and so on) of the
+% operating system on which the executable runs, unless that component
+% itself accompanies the executable.
+%
+% If distribution of executable or object code is made by offering
+% access to copy from a designated place, then offering equivalent
+% access to copy the source code from the same place counts as
+% distribution of the source code, even though third parties are not
+% compelled to copy the source along with the object code.
+%
+% \item
+% You may not copy, modify, sublicense, or distribute the Program
+% except as expressly provided under this License. Any attempt
+% otherwise to copy, modify, sublicense or distribute the Program is
+% void, and will automatically terminate your rights under this License.
+% However, parties who have received copies, or rights, from you under
+% this License will not have their licenses terminated so long as such
+% parties remain in full compliance.
+%
+% \item
+% You are not required to accept this License, since you have not
+% signed it. However, nothing else grants you permission to modify or
+% distribute the Program or its derivative works. These actions are
+% prohibited by law if you do not accept this License. Therefore, by
+% modifying or distributing the Program (or any work based on the
+% Program), you indicate your acceptance of this License to do so, and
+% all its terms and conditions for copying, distributing or modifying
+% the Program or works based on it.
+%
+% \item
+% Each time you redistribute the Program (or any work based on the
+% Program), the recipient automatically receives a license from the
+% original licensor to copy, distribute or modify the Program subject to
+% these terms and conditions. You may not impose any further
+% restrictions on the recipients' exercise of the rights granted herein.
+% You are not responsible for enforcing compliance by third parties to
+% this License.
+%
+% \item
+% If, as a consequence of a court judgment or allegation of patent
+% infringement or for any other reason (not limited to patent issues),
+% conditions are imposed on you (whether by court order, agreement or
+% otherwise) that contradict the conditions of this License, they do not
+% excuse you from the conditions of this License. If you cannot
+% distribute so as to satisfy simultaneously your obligations under this
+% License and any other pertinent obligations, then as a consequence you
+% may not distribute the Program at all. For example, if a patent
+% license would not permit royalty-free redistribution of the Program by
+% all those who receive copies directly or indirectly through you, then
+% the only way you could satisfy both it and this License would be to
+% refrain entirely from distribution of the Program.
+%
+% If any portion of this section is held invalid or unenforceable under
+% any particular circumstance, the balance of the section is intended to
+% apply and the section as a whole is intended to apply in other
+% circumstances.
+%
+% It is not the purpose of this section to induce you to infringe any
+% patents or other property right claims or to contest validity of any
+% such claims; this section has the sole purpose of protecting the
+% integrity of the free software distribution system, which is
+% implemented by public license practices. Many people have made
+% generous contributions to the wide range of software distributed
+% through that system in reliance on consistent application of that
+% system; it is up to the author/donor to decide if he or she is willing
+% to distribute software through any other system and a licensee cannot
+% impose that choice.
+%
+% This section is intended to make thoroughly clear what is believed to
+% be a consequence of the rest of this License.
+%
+% \item
+% If the distribution and/or use of the Program is restricted in
+% certain countries either by patents or by copyrighted interfaces, the
+% original copyright holder who places the Program under this License
+% may add an explicit geographical distribution limitation excluding
+% those countries, so that distribution is permitted only in or among
+% countries not thus excluded. In such case, this License incorporates
+% the limitation as if written in the body of this License.
+%
+% \item
+% The Free Software Foundation may publish revised and/or new versions
+% of the General Public License from time to time. Such new versions will
+% be similar in spirit to the present version, but may differ in detail to
+% address new problems or concerns.
+%
+% Each version is given a distinguishing version number. If the Program
+% specifies a version number of this License which applies to it and ``any
+% later version'', you have the option of following the terms and conditions
+% either of that version or of any later version published by the Free
+% Software Foundation. If the Program does not specify a version number of
+% this License, you may choose any version ever published by the Free Software
+% Foundation.
+%
+% \item
+% If you wish to incorporate parts of the Program into other free
+% programs whose distribution conditions are different, write to the author
+% to ask for permission. For software which is copyrighted by the Free
+% Software Foundation, write to the Free Software Foundation; we sometimes
+% make exceptions for this. Our decision will be guided by the two goals
+% of preserving the free status of all derivatives of our free software and
+% of promoting the sharing and reuse of software generally.
+%
+% \begin{center}
+% {\large\sc No Warranty}
+% \end{center}
+%
+% \item
+% {\sc Because the program is licensed free of charge, there is no warranty
+% for the program, to the extent permitted by applicable law. Except when
+% otherwise stated in writing the copyright holders and/or other parties
+% provide the program ``as is'' without warranty of any kind, either expressed
+% or implied, including, but not limited to, the implied warranties of
+% merchantability and fitness for a particular purpose. The entire risk as
+% to the quality and performance of the program is with you. Should the
+% program prove defective, you assume the cost of all necessary servicing,
+% repair or correction.}
+%
+% \item
+% {\sc In no event unless required by applicable law or agreed to in writing
+% will any copyright holder, or any other party who may modify and/or
+% redistribute the program as permitted above, be liable to you for damages,
+% including any general, special, incidental or consequential damages arising
+% out of the use or inability to use the program (including but not limited
+% to loss of data or data being rendered inaccurate or losses sustained by
+% you or third parties or a failure of the program to operate with any other
+% programs), even if such holder or other party has been advised of the
+% possibility of such damages.}
+%
+% \end{enumerate}
+%
+% \endgroup
+%
+% \StopEventually{\PrintIndex}
+%
+% \clearpage
+% \section{Implementation}
+%
+% The following provides the verbatim implementation of the \Songs{} \LaTeX{}
+% package, along with commentary on how it works.
+% In general, macro names that contain a |@| symbol are not intended to be
+% directly accessible by the outside world; they are for purely internal use.
+% All other macros are intended to be used or redefined by document authors.
+%
+% Most of the macros likely to be of real interest to song book authors can
+% be found in \S\ref{sec:impparams}.
+% To find the implementation of any particular macro, the index at the end
+% of this document should prove helpful.
+%
+% The unwary \TeX er may wonder at the rather large size of the
+% implementation.
+% The volume and complexity of the code stems mainly from the following
+% challenging features:
+% \begin{itemize}
+% \item Putting chords above lyrics fully automatically requires building an
+% entire lyric-parser in \LaTeX{} (see \S\ref{sec:lyricscan}).
+% \item Avoiding page-turns within songs without prohibiting column-breaks
+% requires building a completely new page-breaking algorithm
+% (see \S\ref{sec:pagebuilder}).
+% \item The package must be able to generate a daunting number of document
+% variants from a common source: lyric-only books, chorded books, digital
+% slides, transparency slides, selected song subsets, transposed songs, and
+% combinations of the above.
+% This is like putting six or more packages into one.
+% \item Song book indexes are far more complex than those for a prose book.
+% See \S\ref{sec:indexgen} for some of the difficulties involved.
+% \end{itemize}
+%
+% \subsection{Initialization}
+%
+% The code in this section detects any \TeX{} versioning or configuration
+% settings that are relevant to the rest of the song book code.
+%
+% \begin{macro}{\ifSB@etex}
+% Numerous enhancements are possible when using an $\varepsilon$-\TeX{}
+% compatible version of \LaTeX.
+% We start by checking to see whether $\varepsilon$-\TeX{} primitives are
+% available.
+% \begin{macrocode}
+\newif\ifSB@etex
+\ifx\eTeXversion\undefined\else
+ \ifx\eTeXversion\relax\else
+ \SB@etextrue
+ \ifx\e@alloc\@undefined
+ \IfFileExists{etex.sty}{\RequirePackage{etex}}{}
+ \fi
+ \fi
+\fi
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@pdf}
+% Detect whether we're generating a pdf file, since this affects the
+% treatment of hyperlinks and bookmark indexes.
+% \begin{macrocode}
+\newif\ifSB@pdf\SB@pdffalse
+\IfFileExists{ifpdf.sty}{\RequirePackage{ifpdf}\ifpdf\SB@pdftrue\fi}{
+ \ifx\pdfoutput\undefined\else
+ \ifx\pdfoutput\relax\else
+ \ifnum\pdfoutput<\@ne\else
+ \SB@pdftrue
+ \fi
+ \fi
+ \fi
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@preamble}
+% Some macros have different effects depending on when they're used in the
+% preamble or in the document body, so we need a conditional that remembers
+% whether we're still in the preamble.
+% It gets initialized to true and later changed to false once the body begins.
+% \begin{macrocode}
+\newif\ifSB@preamble
+\SB@preambletrue
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@test}
+% \begin{macro}{\ifSB@testii}
+% \begin{macro}{\SB@temp}
+% \begin{macro}{\SB@tempii}
+% \begin{macro}{\SB@tempiii}
+% \begin{macro}{\SB@tempiv}
+% \begin{macro}{\SB@tempv}
+% Reserve some control sequence names for scratch use.
+% \begin{macrocode}
+\newif\ifSB@test
+\newif\ifSB@testii
+\newcommand\SB@temp{}
+\newcommand\SB@tempii{}
+\newcommand\SB@tempiii{}
+\newcommand\SB@tempiv{}
+\newcommand\SB@tempv{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@newcount}
+% \begin{macro}{\SB@newdimen}
+% \begin{macro}{\SB@newbox}
+% \begin{macro}{\SB@newtoks}
+% \begin{macro}{\SB@newwrite}
+% Create macros for safely allocating count, dimen, box, token, and write
+% registers with detection for name-clashes.
+% For some reason, the default allocation macros provided by the \LaTeX{}
+% kernel do not detect name-clashes(!), which means that packages that use them
+% might accidentally overwrite our registers, causing all sorts of problems.
+% But at least we can do our best to avoid overwriting their registers.
+% \begin{macrocode}
+\newcommand\SB@newcount[1]{\@ifdefinable#1{\newcount#1}}
+\newcommand\SB@newdimen[1]{\@ifdefinable#1{\newdimen#1}}
+\newcommand\SB@newbox[1]{\@ifdefinable#1{\newbox#1}}
+\newcommand\SB@newtoks[1]{\@ifdefinable#1{\newtoks#1}}
+\newcommand\SB@newwrite[1]{\@ifdefinable#1{\newwrite#1}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@dimen}
+% \begin{macro}{\SB@dimenii}
+% \begin{macro}{\SB@dimeniii}
+% \begin{macro}{\SB@dimeniv}
+% \begin{macro}{\SB@box}
+% \begin{macro}{\SB@boxii}
+% \begin{macro}{\SB@boxiii}
+% \begin{macro}{\SB@toks}
+% \begin{macro}{\SB@cnt}
+% \begin{macro}{\SB@cntii}
+% \begin{macro}{\SB@skip}
+% Reserve some temp registers for various purposes.
+% \begin{macrocode}
+\SB@newdimen\SB@dimen
+\SB@newdimen\SB@dimenii
+\SB@newdimen\SB@dimeniii
+\SB@newdimen\SB@dimeniv
+\SB@newbox\SB@box
+\SB@newbox\SB@boxii
+\SB@newbox\SB@boxiii
+\SB@newtoks\SB@toks
+\SB@newcount\SB@cnt
+\SB@newcount\SB@cntii
+\newlength\SB@skip
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@envbox}
+% Also reserve a slightly less volatile box register for per-environment use.
+% In scripture environments it holds the scripture citation.
+% In indexes it holds the index title text.
+% \begin{macrocode}
+\SB@newbox\SB@envbox
+% \end{macrocode}
+% \end{macro}
+%
+% Load David Carlisle's |keyval| package for processing
+% \Meta{key}=\Meta{value} style macro arguments.
+% \begin{macrocode}
+\RequirePackage{keyval}
+% \end{macrocode}
+%
+% \begin{macro}{\SB@app}
+% Utility macro: Append some text to the definition of another macro.
+% \begin{macrocode}
+\newcommand\SB@app[3]{%
+ \expandafter#1\expandafter#2\expandafter{#2#3}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Default Parameters}\label{sec:impparams}
+%
+% This section defines macros and lengths that will typically be executed or
+% redefined by the user in the document preamble to initialize the document.
+% (Not all of these are restricted to preamble usage, however. Many can be used
+% throughout the document to switch styles for different sections or different
+% songs.)
+%
+% \begin{macro}{\lyricfont}\MainImpl{lyricfont}
+% Define the font style to use for formatting song lyrics.
+% \begin{macrocode}
+\newcommand\lyricfont{\normalfont\normalsize}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\stitlefont}\MainImpl{stitlefont}
+% Define the font style to use for formatting song titles.
+% \begin{macrocode}
+\newcommand\stitlefont{%
+ \sffamily\ifslides\Huge\else\slshape\Large\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\versefont}\MainImpl{versefont}
+% \begin{macro}{\chorusfont}\MainImpl{chorusfont}
+% \begin{macro}{\notefont}\MainImpl{notefont}
+% \begin{macro}{\meterfont}\MainImpl{meterfont}
+% \changes{v2.1}{2007/08/02}{Added}
+% By default, verses, choruses, and textual notes just allow the |\lyricfont|
+% style to continue.
+% Meter numbers are in tiny, sans-serif, upright font.
+% Echo parts toggle slanted and upright fonts.
+% \begin{macrocode}
+\newcommand\versefont{}
+\newcommand\chorusfont{}
+\newcommand\notefont{}
+\newcommand\meterfont{\tiny\sffamily\upshape}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\echofont}\MainImpl{echofont}
+% \changes{v2.18}{2014/06/28}{Added}
+% Echo parts toggle between oblique and upright shapes like |\emph|, but we
+% use |\slshape| instead of |\itshape| because it tends to look nicer with the
+% larger fonts used in slides mode.
+% \begin{macrocode}
+\newcommand\echofont{%
+ \ifdim\fontdimen\@ne\font>\z@\upshape\else\slshape\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\scripturefont}\MainImpl{scripturefont}
+% \changes{v1.13}{2005/05/12}{Added kerning correction for double-quote ligatures}
+% Define the font style to use for formatting scripture quotations
+% (defaults to Zapf Chancery).
+% \begin{macrocode}
+\newcommand\scripturefont{%
+ \usefont{OT1}{pzc}{mb}{it}%
+ \shiftdblquotes{-1.1\p@}\z@{-2\p@}\z@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\printscrcite}\MainImpl{printscrcite}
+% Define the printing style for the citation at the end of a scripture
+% quotation.
+% \begin{macrocode}
+\newcommand\printscrcite[1]{\sffamily\small#1}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\snumbgcolor}\MainImpl{snumbgcolor}
+% \begin{macro}{\notebgcolor}\MainImpl{notebgcolor}
+% \begin{macro}{\idxbgcolor}\MainImpl{idxbgcolor}
+% Define the background color used for shaded boxes containing
+% song numbers, textual notes, and index section headers, respectively.
+% To turn off all shading for a box type, use |\def|\Meta{macroname}|{}|.
+% \begin{macrocode}
+\newcommand\snumbgcolor{SongbookShade}
+\newcommand\notebgcolor{SongbookShade}
+\newcommand\idxbgcolor{SongbookShade}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\versejustify}\MainImpl{versejustify}
+% \begin{macro}{\chorusjustify}\MainImpl{chorusjustify}
+% \changes{v2.1}{2007/08/02}{Added}
+% Verses and choruses are both left-justified with hanging indentation equal
+% to |\parindent|.
+% \begin{macrocode}
+\newcommand\versejustify{\justifyleft}
+\newcommand\chorusjustify{\justifyleft}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\notejustify}\MainImpl{notejustify}
+% \changes{v2.1}{2007/08/02}{Added}
+% Textual notes are fully justified when they are too long to fit in
+% a single line.
+% \begin{macrocode}
+\newcommand\notejustify{%
+ \advance\baselineskip\p@\relax%
+ \leftskip\z@skip\rightskip\z@skip%
+ \parfillskip\@flushglue\parindent\z@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\placenote}\MainImpl{placenote}
+% \changes{v2.1}{2007/08/02}{Added}
+% Textual notes are placed flush-left.
+% The single argument to this macro is horizontal material that comprises the
+% note.
+% Usually it will consist of various hboxes and specials that were produced
+% by |\colorbox|.
+% \begin{macrocode}
+\newcommand\placenote[1]{%
+ \leftskip\z@skip\rightskip\@flushglue\SB@cbarshift%
+ \noindent#1\par%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% These counters define the current song number and verse number.
+% They can be redefined by the user at any time.
+% \begin{macrocode}
+\newcounter{songnum}
+\newcounter{versenum}
+% \end{macrocode}
+%
+% \begin{macro}{\thesongnum}\MainImpl{thesongnum}
+% \begin{macro}{\songnumstyle}
+% By default, the song numbering style will simply be an arabic number.
+% Redefine |\thesongnum| to change it.
+% (The |\songnumstyle| macro is obsolete and exists only for backward
+% compatibility.)
+% \begin{macrocode}
+\renewcommand\thesongnum{\songnumstyle{songnum}}
+\newcommand\songnumstyle{}
+\let\songnumstyle\arabic
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\theversenum}\MainImpl{theversenum}
+% \begin{macro}{\versenumstyle}
+% By default, the verse numbering style will simply be an arabic number.
+% Redefine |\theversenum| to change it.
+% (The |\versenumstyle| macro is obsolete and exists only for backward
+% compatibility.)
+% \begin{macrocode}
+\renewcommand\theversenum{\versenumstyle{versenum}}
+\newcommand\versenumstyle{}
+\let\versenumstyle\arabic
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\printsongnum}\MainImpl{printsongnum}
+% Define the printing style for the large, boxed song numbers starting each
+% song.
+% \begin{macrocode}
+\newcommand\printsongnum[1]{\sffamily\bfseries\LARGE#1}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\printversenum}\MainImpl{printversenum}
+% Define the printing style for the verse numbers to the left of each verse.
+% \begin{macrocode}
+\newcommand\printversenum[1]{\lyricfont#1.\ }
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\placeversenum}\MainImpl{placeversenum}
+% \changes{v2.1}{2007/08/02}{Added}
+% Verse numbers are placed flush-left.
+% This is achieved by inserting horizontal glue that reverses both the
+% |\leftskip| and the |\parindent|.
+% The single argument to this macro is an hbox containing the verse number.
+% \begin{macrocode}
+\newcommand\placeversenum[1]{%
+ \hskip-\leftskip\hskip-\parindent\relax%
+ \box#1%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\everyverse}\MainImpl{everyverse}
+% \begin{macro}{\everychorus}\MainImpl{everychorus}
+% \changes{v2.1}{2007/08/02}{Added}
+% The following hooks allow users to insert material at the head of each
+% verse or chorus.
+% \begin{macrocode}
+\newcommand\everyverse{}
+\newcommand\everychorus{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\printchord}\MainImpl{printchord}
+% Define the printing style for chords.
+% \begin{macrocode}
+\newcommand\printchord[1]{\sffamily\slshape\large#1}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\chordlocals}\MainImpl{chordlocals}
+% \label{sec:chordlocals}
+% This hook is expanded at the start of the scoping group that surrounds
+% every chord name.
+% Thus, it can be used to set any catcodes or definitions that should be
+% local to chord names.
+% \begin{macrocode}
+\newcommand\chordlocals{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\versesep}\MainImpl{versesep}
+% Specify the vertical distance between song verses.
+% This gets set to a sentinel value by default; if the user doesn't redefine
+% it by the end of the document preamble, it gets redefined to something
+% sensible based on other settings.
+% \begin{macrocode}
+\newlength\versesep
+\versesep123456789sp\relax
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\afterpreludeskip}\MainImpl{afterpreludeskip}
+% \begin{macro}{\beforepostludeskip}\MainImpl{beforepostludeskip}
+% Users can specify the amount of vertical space that separates song prelude
+% and postlude material from the body of the song by adjusting the following
+% two macros.
+% \begin{macrocode}
+\newlength\afterpreludeskip
+\afterpreludeskip=2\p@\@plus4\p@
+\newlength\beforepostludeskip
+\beforepostludeskip=2\p@\@plus4\p@
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\baselineadj}\MainImpl{baselineadj}
+% Define an adjustment factor for the vertical distance between consecutive
+% lyric baselines.
+% Setting this to zero accepts the default baseline distance computed by the
+% songs package.
+% \begin{macrocode}
+\newlength\baselineadj
+\baselineadj\z@skip
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\clineparams}\MainImpl{clineparams}
+% The spacing between chords and the lyrics below them can be adjusted
+% by changing the values of |\baselineskip|, |\lineskiplimit|, and
+% |\lineskip| within the following macro.
+% By default, |\baselineskip| is set to 2 points smaller than the height
+% of the current (lyric) font, and |\lineskiplimit| and |\lineskip| are
+% set so that chords intrude at most 2 points into the lyric below them.
+% This helps to keep chords tight with lyrics.
+% \begin{macrocode}
+\newcommand\clineparams{%
+ \baselineskip\f@size\p@%
+ \advance\baselineskip-2\p@%
+ \lineskiplimit-2\p@%
+ \lineskip-2\p@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\parindent}
+% The |\parindent| length controls how far broken lyric lines are
+% indented from the left margin.
+% \begin{macrocode}
+\parindent.25in
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxheadwidth}\MainImpl{idxheadwidth}
+% Specify the width of the head-boxes in a large index.
+% \begin{macrocode}
+\newlength\idxheadwidth
+\setlength\idxheadwidth{1.5cm}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\songnumwidth}\MainImpl{songnumwidth}
+% Set the width of the song number boxes that begin each song.
+% We guess a suitable width by typesetting the text ``999.''
+% \begin{macrocode}
+\newlength\songnumwidth
+\settowidth\songnumwidth{\printsongnum{999.}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\versenumwidth}\MainImpl{versenumwidth}
+% Set the width that is reserved for normal-sized verse numbers.
+% (Verse numbers wider than this will indent the first line of lyrics.)
+% \begin{macrocode}
+\newlength\versenumwidth
+\settowidth\versenumwidth{\printversenum{9\kern1em}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\cbarwidth}
+% This dictates the width of the vertical line placed to the left of
+% choruses.
+% Setting it to |0pt| eliminates the line entirely.
+% \begin{macrocode}
+\newlength\cbarwidth
+\setlength\cbarwidth\p@
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\sbarheight}
+% This dictates the height of the horizontal line placed between each pair
+% of songs.
+% Setting it to |0pt| eliminates the line entirely.
+% \begin{macrocode}
+\newlength\sbarheight
+\setlength\sbarheight\p@
+% \end{macrocode}
+% \end{macro}
+%
+% Column- and page-breaks should typically not occur within a verse or chorus
+% unless they are unavoidable.
+% Thus, we set the |\interlinepenalty| to a high number (1000).
+% \begin{macrocode}
+\interlinepenalty\@m
+% \end{macrocode}
+%
+% \begin{macro}{\vvpenalty}\MainImpl{vvpenalty}
+% \begin{macro}{\ccpenalty}\MainImpl{ccpenalty}
+% \begin{macro}{\vcpenalty}\MainImpl{vcpenalty}
+% \begin{macro}{\cvpenalty}\MainImpl{cvpenalty}
+% \begin{macro}{\brkpenalty}\MainImpl{brkpenalty}
+% \changes{v2.1}{2007/08/02}{Added.}
+% The following count registers define the line-breaking penalties inserted
+% between verses, between choruses, after a verse followed by a chorus, after
+% a chorus followed by a verse, and at |\brk| macros, respectively.
+%
+% The default value of 200 was chosen based on the following logic:
+% Chord books should not yield underfull vbox warnings no matter how short
+% their columns are.
+% However, we still want to put as much material in each column as possible
+% while avoiding intra-song column-breaks when they can be avoided.
+% Chorded mode therefore sets |\colbotglue| with glue whose stretchability
+% is half of the |\textheight|.
+% Such glue will stretch at most twice its stretchability, yielding a
+% badness of 800 in the worst case.
+% The default |\vbadness| setting starts issuing warnings at badness 1000,
+% so we set the penalties below to $1000-800=200$.
+% \begin{macrocode}
+\SB@newcount\vvpenalty\vvpenalty200
+\SB@newcount\ccpenalty\ccpenalty200
+\SB@newcount\vcpenalty\vcpenalty200
+\SB@newcount\cvpenalty\cvpenalty200
+\SB@newcount\brkpenalty\brkpenalty200
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\spenalty}\MainImpl{spenalty}
+% \changes{v2.1}{2007/08/02}{Added.}
+% The following penalty gets inserted between songs.
+% Setting it to a proper value is a somewhat delicate balancing act.
+% It should typically be something between 0 and the default penalties above,
+% so for now it defaults to 100.
+% To start each song on a fresh column/page, set it to $-10000$ or below.
+% \begin{macrocode}
+\SB@newcount\spenalty\spenalty100
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\songmark}\MainImpl{songmark}
+% \changes{v1.17}{2005/09/24}{Added.}
+% \begin{macro}{\versemark}\MainImpl{versemark}
+% \begin{macro}{\chorusmark}\MainImpl{chorusmark}
+% \changes{v2.1}{2007/08/02}{Added.}
+% The user can redefine the following macros to add \TeX{} marks for each
+% song, each verse, or each chorus.
+% Such marks are used by \LaTeX{} to define page headers and footers.
+% \begin{macrocode}
+\newcommand\songmark{}
+\newcommand\versemark{}
+\newcommand\chorusmark{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\extendprelude}\MainImpl{extendprelude}
+% \begin{macro}{\extendpostlude}\MainImpl{extendpostlude}
+% \changes{v2.0}{2007/06/18}{Added.}
+% To just add some fields to the existing |\makeprelude| or |\makepostlude|
+% without having to redefine them entirely, users can redefine
+% |\extendprelude| or |\extendpostlude|.
+% By default, the prelude has the scripture references followed by the
+% authors, and the postlude has the copyright info followed by the licensing
+% info.
+% \begin{macrocode}
+\newcommand\extendprelude{\showrefs\showauthors}
+\newcommand\extendpostlude{\songcopyright\ \songlicense\unskip}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\idxheadfont}\MainImpl{idxheadfont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxheadfont| to affect the font in which each capital
+% letter that heads a section of a title index is rendered.
+% \begin{macrocode}
+\newcommand\idxheadfont{\sffamily\bfseries\LARGE}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxtitlefont}\MainImpl{idxtitlefont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxtitlefont| to affect the font in which song title
+% index entries are rendered.
+% \begin{macrocode}
+\newcommand\idxtitlefont{\sffamily\slshape}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxlyricfont}\MainImpl{idxlyricfont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxlyricfont| to affect the font in which notable lines
+% of lyrics are rendered in a title index.
+% \begin{macrocode}
+\newcommand\idxlyricfont{\rmfamily}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxscripfont}\MainImpl{idxscripfont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxscripfont| to affect the font in which scripture
+% references are rendered in a scripture index.
+% \begin{macrocode}
+\newcommand\idxscripfont{\sffamily\small\slshape}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxauthfont}\MainImpl{idxauthfont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxauthfont| to affect the font in which contributor
+% names are rendered in an author index.
+% \begin{macrocode}
+\newcommand\idxauthfont{\small\bfseries}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxrefsfont}\MainImpl{idxrefsfont}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxrefsfont| to affect the font in which the list of
+% song references on the right-hand-side of an index entry is typeset.
+% \begin{macrocode}
+\newcommand\idxrefsfont{\normalfont\normalsize}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxbook}\MainImpl{idxbook}
+% \changes{v2.8}{2009/02/22}{Added.}
+% Users can redefine |\idxbook| to dictate the book name header in a
+% scripture index that begins each book of the bible.
+% \begin{macrocode}
+\newcommand\idxbook[1]{\small\bfseries#1}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\idxcont}\MainImpl{idxcont}
+% \changes{v2.0}{2007/06/18}{Added.}
+% Users can redefine |\idxcont| to dictate the column header in a scripture
+% index after a column break falls within a book of the bible.
+% \begin{macrocode}
+\newcommand\idxcont[1]{\small\textbf{#1} (continued)}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\colbotglue}
+% Glue of size |\colbotglue| is inserted at the bottom of each column.
+% We use a macro instead of a glue register so that this can be redefined
+% in terms of variable quantities such as |\textheight|.
+% \begin{macrocode}
+\newcommand\colbotglue{}
+\let\colbotglue\z@skip
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\lastcolglue}
+% Glue of size |\lastcolglue| is inserted at the bottom of the last column.
+% \begin{macrocode}
+\newcommand\lastcolglue{}
+\let\lastcolglue\@flushglue
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\minfrets}
+% Define the minimum number of fret rows that should appear in tablature
+% diagrams.
+% \begin{macrocode}
+\SB@newcount\minfrets\minfrets4
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@colwidth}
+% Define a length to store the computed width of each column in a
+% multi-column song page.
+% The user shouldn't set this one directly, but some users might want to
+% refer to it in calculations.
+% \begin{macrocode}
+\SB@newdimen\SB@colwidth
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Package Options}
+%
+% This section defines code associated with the various option
+% settings that can be specified on the |\usepackage| line.
+% Many of these options can also be turned on or off subsequent to the
+% |\usepackage| line, so macros for doing that are also located here.
+% The options are not actually processed until \S\ref{sec:optproc} because
+% some of the macros defined here refer to macros that have not yet been
+% defined.
+%
+% \begin{option}{slides}\MainEnvImpl{slides}
+% \begin{macro}{\slides}\MainImpl{slides}
+% \optdef{off}
+% Turning this option on generates a book of overhead slides---one for each
+% song.
+% It really just amounts to changing various parameter settings.
+% Elsewhere in the code we also consult |\ifslides| to determine a few default
+% parameter settings and to use a different song preamble structure.
+% All the parameter changes below are local to the current scope; so to
+% undo slides mode, just put |\slides| within a group and end the group
+% wherever you want the slides settings to end.
+% \begin{macrocode}
+\DeclareOption{slides}{\slides}
+\newcommand\slides{%
+ \slidestrue%
+ \def\lyricfont{\normalfont\huge}%
+ \def\chorusfont{\slshape}%
+ \def\versejustify{\justifycenter}%
+ \let\chorusjustify\versejustify
+ \def\placenote##1{\justifycenter\noindent##1\par}%
+ \scriptureoff%
+ \onesongcolumn%
+ \ifSB@preamble\ifSB@chordedspec\else\SB@chordsoff\fi\fi%
+ \spenalty-\@M%
+ \let\colbotglue\@flushglue%
+ \setlength\cbarwidth\z@%
+ \setlength\sbarheight\z@%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{option}
+%
+% \begin{macro}{\justifyleft}
+% \changes{v2.1}{2007/08/02}{Added}
+% The |\justifyleft| macro sets up an environment in which lyrics are
+% left-justified with hanging indentation equal to |\parindent|.
+% It reserves spaces for verse numbers if used in a verse, and reserves
+% space for the vertical bar left of choruses if used in a chorus.
+% \begin{macrocode}
+\newcommand\justifyleft{%
+ \leftskip\parindent%
+ \ifSB@inverse\advance\leftskip\versenumwidth\fi%
+ \SB@cbarshift%
+ \parindent-\parindent%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\justifycenter}
+% \changes{v2.1}{2007/08/02}{Added}
+% The |\justifycenter| macro sets up an environment in which lyrics are
+% centered on each line.
+% Verse numbers continue to be placed flush-left, but |\placeversenum|
+% is temporarily redefined to keep the rest of the line containing a
+% verse number centered.
+% \begin{macrocode}
+\newcommand\justifycenter{%
+ \centering\SB@cbarshift\rightskip\leftskip%
+ \def\placeversenum##1{%
+ \hskip-\leftskip\hskip-\parindent\relax%
+ \hangindent-\wd##1\hangafter\m@ne%
+ \box##1\hfil%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{option}{unouter}\MainEnvImpl{unouter}
+% \begin{macro}{\SB@outer}
+% \optdef{off}
+% Several macros provided by the \Songs{} package are, by default, declared
+% |\outer| to aid in debugging.
+% However, unusual documents may need to use these macros within larger
+% constructs.
+% To do so, use the |unouter| option to prevent any of the macros supplied
+% by this package from being declared |\outer|.
+% \begin{macrocode}
+\newcommand\SB@outer{\outer}
+\DeclareOption{unouter}{\let\SB@outer\relax}
+% \end{macrocode}
+% \end{macro}
+% \end{option}
+%
+% \begin{option}{rawtext}\MainEnvImpl{rawtext}
+% \optdef{off}
+% Instead of generating a document, this dumps a text version of the song book
+% to a file. This option can only be set in the |\usepackage| line because
+% it dictates many top-level macro definitions. Turning rawtext on turns off
+% the indexes by default, but this can be overridden by explicitly setting
+% index options. (Note: Using rawtext with indexes turned on doesn't actually
+% work yet, but might be added in a future revision.)
+% \begin{macrocode}
+\DeclareOption{rawtext}{\rawtexttrue\indexesoff}
+% \end{macrocode}
+% \end{option}
+%
+% \begin{option}{noshading}\MainEnvImpl{noshading}
+% \optdef{off}
+% Inhibit all shaded boxes (e.g., if the color package is unavailable).
+% This option can only be set in the |\usepackage| line because the color
+% package must be loaded in the preamble if at all. (Note: In a future release
+% this might be extended to be modifiable throughout the preamble.)
+% \begin{macrocode}
+\DeclareOption{noshading}{\SB@colorboxesfalse}
+% \end{macrocode}
+% \end{option}
+%
+% \begin{option}{noindexes}\MainEnvImpl{noindexes}
+% \begin{macro}{\indexeson}\MainImpl{indexeson}
+% \begin{macro}{\indexesoff}\MainImpl{indexesoff}
+% \optdef{off}
+% Suppress generation of index files and displaying of in-document indexes.
+% The |\indexeson| and |\indexesoff| macros can be used elsewhere to toggle
+% display of indexes.
+% Index-regeneration will occur if indexes are turned on by the end of the
+% document.
+% \begin{macrocode}
+\DeclareOption{noindexes}{\indexesoff}
+\newcommand\indexeson{\songindexestrue}
+\newcommand\indexesoff{\songindexesfalse}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{option}
+%
+% \begin{option}{nopdfindex}\MainEnvImpl{nopdfindex}
+% \optdef{off}
+% Suppress creation of PDF bookmark entries and hyperlinks.
+% \begin{macrocode}
+\DeclareOption{nopdfindex}{%
+ \let\songtarget\@gobbletwo%
+ \let\songlink\@secondoftwo%
+}
+% \end{macrocode}
+% \end{option}
+%
+% \begin{macro}{\ifSB@measurespec}
+% \begin{macro}{\ifSB@chordedspec}
+% The |showmeasures| and |chorded| options interact in the sense that by
+% default, switching one of them on or off switches the other on or off as
+% well.
+% However, if the user explicitly says that one should be on or off, then
+% switching the other shouldn't affect it.
+% To produce this behavior, we need two extra conditionals to remember whether
+% each of these options has been explicitly specified by the user or whether
+% it is still in a default state.
+% \begin{macrocode}
+\newif\ifSB@measurespec
+\newif\ifSB@chordedspec
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{option}{chorded}\MainEnvImpl{chorded}
+% \begin{option}{lyric}\MainEnvImpl{lyric}
+% \begin{macro}{\chordson}\MainImpl{chordson}
+% \begin{macro}{\chordsoff}\MainImpl{chordsoff}
+% \begin{macro}{\SB@chordson}
+% \begin{macro}{\SB@chordsoff}
+% \changes{v1.22}{2007/05/15}{Update \cs{baselineskip} when in songs.}
+% \optdef{chorded}
+% Determines whether chords should be shown.
+% This option can be set in the |\usepackage| line or toggled elsewhere
+% with the |\chordson| and |\chordsoff| macros.
+% Chords cannot be turned on in conjunction with the |rawtext| option.
+% If chords are turned on by the end of the preamble, no attempt will be made
+% to balance columns on each page.
+% \begin{macrocode}
+\DeclareOption{chorded}{\chordson}
+\DeclareOption{lyric}{\chordsoff}
+\newcommand\chordson{\SB@chordedspectrue\SB@chordson}
+\newcommand\chordsoff{\SB@chordedspectrue\SB@chordsoff}
+\newcommand\SB@chordson{%
+ \ifrawtext%
+ \SB@errrtopt%
+ \else%
+ \chordedtrue\lyricfalse%
+ \let\SB@bracket\SB@chord%
+ \let\SB@rechord\SB@@rechord%
+ \let\SB@ch\SB@ch@on%
+ \ifSB@measurespec%
+ \ifmeasures\SB@measureson\else\SB@measuresoff\fi%
+ \else%
+ \SB@measureson%
+ \fi%
+ \ifSB@preamble\def\colbotglue{\z@\@plus.5\textheight}\fi%
+ \SB@setbaselineskip%
+ \fi%
+}
+\newcommand\SB@chordsoff{%
+ \chordedfalse\lyrictrue%
+ \def\SB@bracket##1]{\ignorespaces}%
+ \let\SB@rechord\relax%
+ \let\SB@ch\SB@ch@off%
+ \ifSB@measurespec%
+ \ifmeasures\SB@measureson\else\SB@measuresoff\fi%
+ \else%
+ \SB@measuresoff%
+ \fi%
+ \ifSB@preamble\let\colbotglue\z@skip\fi%
+ \SB@setbaselineskip%
+}
+% \end{macrocode}
+% \eat\]
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{option}
+% \end{option}
+%
+% \begin{option}{showmeasures}\MainEnvImpl{showmeasures}
+% \begin{option}{nomeasures}\MainEnvImpl{nomeasures}
+% \begin{macro}{\measureson}\MainImpl{measureson}
+% \begin{macro}{\measuresoff}\MainImpl{measuresoff}
+% \begin{macro}{\SB@measureson}
+% \begin{macro}{\SB@measuresoff}
+% \optdef{showmeasures if chorded, nomeasures otherwise}
+% Determines whether measure bars and meter notes should be shown.
+% Option can be set in the |\usepackage| line or toggled elsewhere with the
+% |\measureson| and |\measuresoff| macros.
+% \begin{macrocode}
+\DeclareOption{showmeasures}{\measureson}
+\DeclareOption{nomeasures}{\measuresoff}
+\newcommand\measureson{\SB@measurespectrue\SB@measureson}
+\newcommand\measuresoff{\SB@measurespectrue\SB@measuresoff}
+\newcommand\SB@measureson{%
+ \measurestrue%
+ \let\SB@mbar\SB@makembar%
+ \ifchorded%
+ \let\SB@mch\SB@mch@on%
+ \else%
+ \let\SB@mch\SB@mch@m%
+ \fi%
+ \ifSB@inverse\SB@loadactives\fi%
+ \ifSB@inchorus\SB@loadactives\fi%
+}
+\newcommand\SB@measuresoff{%
+ \measuresfalse%
+ \let\SB@mbar\@gobbletwo%
+ \ifchorded%
+ \let\SB@mch\SB@ch@on%
+ \else%
+ \let\SB@mch\SB@ch@off%
+ \fi%
+ \ifSB@inverse\SB@loadactives\fi%
+ \ifSB@inchorus\SB@loadactives\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{option}
+% \end{option}
+%
+% \begin{option}{transposecapos}\MainEnvImpl{transposecapos}
+% \optdef{off}
+% If set, the |\capo| macro transposes the song instead of printing a note
+% to use a capo. Use this option to generate a chord book for pianists who
+% have trouble transposing or guitarists who don't have capos.
+% \begin{macrocode}
+\DeclareOption{transposecapos}{\transcapostrue}
+% \end{macrocode}
+% \end{option}
+%
+% \begin{option}{noscripture}\MainEnvImpl{noscripture}
+% \begin{macro}{\scriptureon}\MainImpl{scriptureon}
+% \begin{macro}{\scriptureoff}\MainImpl{scriptureoff}
+% \optdef{off}
+% Inhibits the display of scripture quotes.
+% This option can also be toggled on and off anywhere with the |\sciptureon|
+% and |\scriptureoff| macros.
+% \begin{macrocode}
+\DeclareOption{noscripture}{\SB@omitscriptrue}
+\newcommand\scriptureon{\SB@omitscripfalse}
+\newcommand\scriptureoff{\SB@omitscriptrue}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{option}
+%
+% \begin{option}{onesongcolumn}\MainEnvImpl{onesongcolumn}
+% \begin{option}{twosongcolumns}\MainEnvImpl{twosongcolumns}
+% \begin{macro}{\onesongcolumn}\MainImpl{onesongcolumn}
+% \begin{macro}{\twosongcolumns}\MainImpl{twosongcolumns}
+% \begin{macro}{\songcolumns}\MainImpl{songcolumns}
+% \optdef{onesongcolumn is the default if generating slides or rawtext, twosongcolumns otherwise}
+% The number of columns per page is specified using the following package
+% options and macros.
+% In \env{rawtext} mode it must remain set to one column per page.
+% The entire page-making system can be turned off by setting the number of
+% columns to zero.
+% This will cause each song to be contributed to the current vertical list
+% without any attempt to form columns; the enclosing environment must handle
+% the page layout.
+% Probably this means that |\repchoruses| will not work, since an external
+% package won't know to insert repeated choruses when building pages.
+% \begin{macrocode}
+\DeclareOption{twosongcolumns}{\SB@numcols\tw@}
+\DeclareOption{onesongcolumn}{\SB@numcols\@ne}
+\newcommand\songcolumns[1]{%
+ \SB@cnt#1\relax%
+ \ifnum\SB@cnt=\SB@numcols\else%
+ \ifSB@preamble\else{\SB@clearpage}\fi%
+ \fi%
+ \SB@numcols\SB@cnt%
+ \ifnum\SB@numcols>\z@%
+ \SB@colwidth-\columnsep%
+ \multiply\SB@colwidth\SB@numcols%
+ \advance\SB@colwidth\columnsep%
+ \advance\SB@colwidth\textwidth%
+ \divide\SB@colwidth\SB@numcols%
+ \else%
+ \ifrepchorus\SB@warnrc\fi%
+ \fi%
+}
+\newcommand\onesongcolumn{\songcolumns\@ne}
+\newcommand\twosongcolumns{\songcolumns\tw@}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{option}
+% \end{option}
+%
+% \begin{macro}{\includeonlysongs}\MainImpl{includeonlysongs}
+% \begin{macro}{\songlist}
+% Display only a select list of songs and ignore the rest.
+% \begin{macrocode}
+\newcommand\songlist{}
+\newcommand\includeonlysongs[1]{%
+ \ifSB@songsenv\SB@errpl\else%
+ \partiallisttrue%
+ \renewcommand\songlist{#1}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\nosongnumbers}\MainImpl{nosongnumbers}
+% \changes{v2.9}{2009/04/01}{Added.}
+% The user can turn off song numbering with the following macro.
+% \begin{macrocode}
+\newcommand\nosongnumbers{\setlength\songnumwidth\z@}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\noversenumbers}\MainImpl{noversenumbers}
+% \changes{v1.20}{2006/03/12}{Added.}
+% The user can turn off verse numbering with the following macro.
+% \begin{macrocode}
+\newcommand\noversenumbers{%
+ \renewcommand\printversenum[1]{}%
+ \setlength\versenumwidth\z@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\repchoruses}\MainImpl{repchoruses}
+% \begin{macro}{\norepchoruses}\MainImpl{norepchoruses}
+% \changes{v2.1}{2007/08/02}{Added.}
+% Using |\repchoruses| causes choruses to be automatically repeated on
+% subsequent pages of the song.
+% The feature requires $\varepsilon$-\TeX{} because the supporting code needs
+% an extended mark register class.
+% \begin{macrocode}
+\ifSB@etex
+ \newcommand\repchoruses{%
+ \ifnum\SB@numcols<\@ne\SB@warnrc\fi%
+ \repchorustrue%
+ }
+\else
+ \newcommand\repchoruses{\SB@erretex}
+\fi
+\newcommand\norepchoruses{\repchorusfalse}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\sepverses}
+% The following penalty settings cause verses and choruses to be separated
+% onto different slides when in slides mode, except that consecutive choruses
+% remain together when they fit.
+% \begin{macrocode}
+\newcommand\sepverses{%
+ \vvpenalty-\@M%
+ \ccpenalty100 %
+ \vcpenalty\vvpenalty%
+ \cvpenalty\vvpenalty%
+ \let\colbotglue\@flushglue%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% Some option settings, margins, and other lengths are finalized at the end of
+% the preamble.
+% That code is below.
+%
+% \begin{macrocode}
+\AtBeginDocument{
+% \end{macrocode}
+%
+% If the user hasn't set the |\versesep|, set it to the default.
+% \begin{macrocode}
+ \SB@setversesep
+% \end{macrocode}
+%
+% Initialize page layout algorithm.
+% \begin{macrocode}
+ \songcolumns\SB@numcols
+% \end{macrocode}
+%
+% Macros used after this point occur outside the preamble.
+% \begin{macrocode}
+ \SB@preamblefalse
+}
+% \end{macrocode}
+%
+% \subsection{Page-builder}
+% \label{sec:pagebuilder}
+%
+% The following macros handle the building of pages that contain songs.
+% They compute where best to place each song (e.g., whether to place it in the
+% current column or move to the next column or page).
+% The output routines for generating a partial list of songs in a specified
+% order also can be found here.
+%
+% \begin{macro}{\SB@songbox}
+% The most recently processed song (or scripture quotation) is stored in this
+% box.
+% \begin{macrocode}
+\SB@newbox\SB@songbox
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@numcols}
+% \begin{macro}{\SB@colnum}
+% Reserve two count registers to hold the total number of columns and the
+% current column number, respectively.
+% \begin{macrocode}
+\SB@newcount\SB@numcols\SB@numcols\tw@
+\SB@newcount\SB@colnum
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@colbox}
+% Reserve a box register to hold the current column in progress.
+% \begin{macrocode}
+\SB@newbox\SB@colbox
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@pgbox}
+% Reserve a box register to hold the current page in progress.
+% \begin{macrocode}
+\SB@newbox\SB@pgbox
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@mrkbox}
+% Reserve a box register to hold marks that migrate out of songs as they
+% get split into columns and pages.
+% \begin{macrocode}
+\SB@newbox\SB@mrkbox
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@maxmin}
+% The following helper macro takes the max or min of two dimensions.
+% If \argp{2}=``|<|'', it sets \argp{1} to the maximum of \argp{1} and
+% \argp{3}.
+% If \argp{2}=``|>|'', it sets \argp{1} to the minimum of \argp{1} and
+% \argp{3}.
+% \begin{macrocode}
+\newcommand\SB@maxmin[3]{\ifdim#1#2#3#1#3\fi}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@mkpage}
+% The following macro is the heart of the page-building engine.
+% It splits the contents of a box into a page of columns.
+% If |\repchoruses| is active, the contents of |\SB@chorusbox|
+% are additionally inserted into fresh columns created during the spitting
+% process.
+% The macro arguments are:
+% \begin{enumerate}
+% \item an integer (positive or zero) indicating whether box $b$ should be
+% fully emptied and committed as columns (if positive), or whether its
+% final less-than-column-height remainder should be reserved as an in-progress
+% column (if zero);
+% \item the box $b$ to split;
+% \item a count register $i$ equaling the column index (zero or greater)
+% where the content of $b$ is to begin; and
+% \item the desired column height.
+% \end{enumerate}
+% Box $b$ is split and $i$ is incremented until $i$ reaches
+% |\SB@numcols| or $b$ is emptied.
+% If $b$ is emptied and the first argument is 0, the final column is \emph{not}
+% contributed; instead it is left in $b$ and $i$ is left equal to the index
+% of the column that would have been added if $b$ had been emptied.
+% This allows the next call to reconsider whether to end the
+% current column here or add some or all of the next contribution to it.
+% Otherwise, if $b$ is emptied and the first argument is positive, the final
+% column is contributed and $i$ is set to one greater than the index of that
+% column.
+% (If $i$ reaches |\SB@numcols| before $b$ is emptied, the first argument is
+% ignored.)
+%
+% Box $b$ and count register $i$ are globally modified.
+% If |\SB@updatepage| is not redefined, boxes |\SB@pgbox| and |\SB@mrkbox|
+% are also globally modified based on the results of the split.
+%
+% The implementation takes two special steps to avoid pre-committing
+% in-progress columns (when the first macro argument is zero):
+% First, the final split that empties box $b$ is ``undone'' by reverting to a
+% backup copy made before each split.
+% Second, any underfull box warnings for this final split are suppressed by
+% temporarily adding infinite-stretch |\vfil| glue to the bottom of the box.
+% This strategy preserves underfull and overfull box warnings for the columns
+% that are actually committed, but suppresses faux warnings for the last split
+% that is undone.
+% \begin{macrocode}
+\newcommand\SB@mkpage[4]{%
+ \ifvoid#2\else\begingroup%
+ \edef\SB@temp{\ifnum#2=\SB@box\SB@boxii\else\SB@box\fi}%
+ \edef\SB@tempii{\ifnum#2=\SB@boxiii\SB@boxii\else\SB@boxiii\fi}%
+ \splitmaxdepth\maxdepth\splittopskip\z@skip%
+ \ifnum#1=\z@\global\setbox#2\vbox{\unvbox#2\vfil}\fi%
+ \loop\ifnum#3<\SB@numcols%
+ \ifnum#1=\z@\setbox\SB@tempii\copy#2\fi%
+ \setbox\SB@temp\vsplit#2to#4\relax%
+ \ifvoid#2%
+ \ifnum#1=\z@%
+ \global\setbox#2\box\SB@tempii%
+ \else%
+ \SB@updatepage%
+ \global\advance#3\@ne%
+ \fi%
+ #3\SB@numcols%
+ \else%
+ \SB@updatepage%
+ \global\advance#3\@ne%
+ \ifrepchorus\ifvoid\SB@chorusbox\else%
+ \SB@insertchorus#2%
+ \fi\fi%
+ \fi%
+ \repeat%
+ \ifnum#1=\z@\global\setbox#2\vbox{\unvbox#2\unskip}\fi%
+ \endgroup\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@migrate}
+% Migrate a mark out of a recently split vertical list, but do not insert
+% superfluous empty marks that may override previous marks.
+% \begin{macrocode}
+\newcommand\SB@migrate[1]{%
+ \SB@toks\expandafter{#1}%
+ \edef\SB@temp{\the\SB@toks}%
+ \ifx\SB@temp\@empty\else\mark{\the\SB@toks}\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@updatepage}
+% Update boxes |\SB@pgbox| and |\SB@mrkbox| immediately after splitting
+% the contents of |\SB@colbox|.
+% \begin{macrocode}
+\newcommand\SB@updatepage{%
+ \global\setbox\SB@mrkbox\vbox{%
+ \unvbox\SB@mrkbox%
+ \SB@migrate\splitfirstmark%
+ \SB@migrate\splitbotmark%
+ }%
+ \global\setbox\SB@pgbox\hbox{%
+ \SB@dimen\SB@colwidth%
+ \advance\SB@dimen\columnsep%
+ \multiply\SB@dimen\SB@colnum%
+ \advance\SB@dimen-\wd\SB@pgbox%
+ \unhbox\SB@pgbox%
+ \ifdim\SB@dimen=\z@\else\hskip\SB@dimen\relax\fi%
+ \box\SB@temp%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@droppage}
+% This alternate definition of |\SB@updatepage| drops the just-created
+% page instead of contributing it.
+% This allows |\SB@mkpage| to be called by the song-positioning algorithm
+% as a trial run without outputting anything.
+% \begin{macrocode}
+\newcommand\SB@droppage{\setbox\SB@temp\box\voidb@x}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@output}
+% This is the main output routine for the page-builder.
+% It repeatedly calls |\SB@mkpage|, emitting pages as they are completed,
+% until the remaining content of box |\SB@colbox| is not enough to fill a
+% column.
+% If the macro argument is 0, this final, in-progress column is left
+% unfinished, pending future contributions.
+% If the argument is positive, the final material is committed as a column.
+% If the argument is two or greater, the entire in-progress page is also
+% committed and the column number reset.
+% \begin{macrocode}
+\newcommand\SB@output[1]{%
+ \ifnum\SB@numcols>\z@\begingroup%
+ \loop%
+ \SB@dimen\textheight%
+ \ifinner\else\advance\SB@dimen-\pagetotal\fi%
+ \SB@mkpage#1\SB@colbox\SB@colnum\SB@dimen%
+ \SB@testfalse\SB@testiitrue%
+ \ifnum#1>\@ne\ifvoid\SB@colbox\ifnum\SB@colnum>\z@%
+ \SB@testtrue\SB@testiifalse%
+ \fi\fi\fi%
+ \ifnum\SB@colnum<\SB@numcols\SB@testiifalse\else\SB@testtrue\fi%
+ \ifSB@test%
+ \unvbox\SB@mrkbox%
+ \ifinner\else\kern\z@\fi%
+ \box\SB@pgbox%
+ \ifinner\else\vfil\break\vskip\vsize\relax\fi%
+ \global\SB@colnum\z@%
+ \fi%
+ \ifSB@testii\repeat%
+ \endgroup\else%
+ \unvbox\SB@colbox\unskip%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@putboxes}
+% Create a vertical list consisting of the already committed contents of the
+% current column plus the most recently submitted song box.
+% The \LaTeX{} primitive that should be used to contribute each box is
+% specified in the first argument.
+% \begin{macrocode}
+\newcommand\SB@putboxes[1]{%
+ \SB@dimen\ifnum\SB@numcols>\z@\ht\SB@colbox\else\p@\fi%
+ #1\SB@colbox%
+ \ifdim\SB@dimen>\z@%
+ \SB@breakpoint\spenalty%
+ \ifdim\sbarheight>\z@%
+ \vskip-\sbarheight\relax%
+ \fi%
+ \fi%
+ #1\SB@songbox%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@nextcol}
+% Force $n$ column breaks, where $n$ is given by the first argument.
+% The first created column is finished with the glue specified in the
+% second argument.
+% When the second argument is |\@flushglue|, this forces a break that leaves
+% whitespace at the bottom of the column.
+% When it's |\colbotglue|, it acts like a natural column break chosen by
+% the page-breaker.
+% However, if the current column is empty, |\@flushglue| is always used so
+% that an empty column will result.
+% \begin{macrocode}
+\newcommand\SB@nextcol[2]{%
+ \ifnum#1>\z@%
+ \ifnum\SB@numcols>\z@%
+ \global\setbox\SB@colbox\vbox{%
+ \SB@cnt#1\relax%
+ \SB@dimen\ht\SB@colbox%
+ \unvbox\SB@colbox%
+ \unskip%
+ \ifdim\SB@dimen>\z@%
+ \vskip#2\relax%
+ \break%
+ \advance\SB@cnt\m@ne%
+ \fi%
+ \loop\ifnum\SB@cnt>\z@%
+ \nointerlineskip%
+ \null%
+ \vfil%
+ \break%
+ \advance\SB@cnt\m@ne%
+ \repeat%
+ }%
+ \SB@output1%
+ \else%
+ \ifnum\lastpenalty=-\@M\null\fi%
+ \break%
+ \fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@selectcol}
+% This is the entrypoint to the song-positioning algorithm.
+% It gets defined by |\songpos| to either |\SB@@selectcol| (below) or
+% |\relax| (when song-positioning is turned off).
+% \begin{macrocode}
+\newcommand\SB@selectcol{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@@selectcol}
+% \changes{v2.1}{2007/08/02}{Rewritten to better handle glue}
+% \changes{v2.9}{2009/07/30}{Rewritten to handle repeated choruses}
+% Songs should be squeezed in wherever they fit, but breaking a column or page
+% within a song should be avoided.
+% The following macro outputs zero or more column breaks to select a good
+% place for |\SB@songbox| to be contributed to the current (or the next) page.
+% The number of column breaks is determined by temporarily setting
+% |\SB@updatepage| to |\SB@droppage| and then calling the |\SB@mkpage|
+% algorithm under various conditions to see how many columns it would
+% contribute if we start the current song at various positions.
+% \begin{macrocode}
+\newcommand\SB@@selectcol{%
+ \begingroup%
+ \SB@cnt\z@%
+ \vbadness\@M\vfuzz\maxdimen%
+ \let\SB@updatepage\SB@droppage%
+ \SB@dimen\textheight%
+ \ifinner\else\advance\SB@dimen-\pagetotal\fi%
+ \setbox\SB@boxii\vbox{\SB@putboxes\unvcopy}%
+ \SB@cntii\SB@colnum%
+ \SB@mkpage0\SB@boxii\SB@cntii\SB@dimen%
+ \SB@spos%
+ \global\SB@cnt\SB@cnt%
+ \endgroup%
+ \SB@nextcol\SB@cnt\colbotglue%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@spbegnew}
+% Begin a trial typesetting of the current song on a fresh page to see if
+% it fits within a page.
+% \begin{macrocode}
+\newcommand\SB@spbegnew{%
+ \setbox\SB@boxiii\copy\SB@songbox%
+ \SB@cntii\z@%
+ \SB@mkpage0\SB@boxiii\SB@cntii\textheight%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@spextold}
+% Tentatively extend the song previously typeset on the current even page to
+% the next odd page to see whether it fits on a double-page.
+% If the current page is odd-numbered, do nothing since extending the song
+% to the next page would introduce a page-turn.
+% \begin{macrocode}
+\newcommand\SB@spextold{%
+ \ifodd\c@page\else%
+ \SB@cntii\z@%
+ \SB@mkpage0\SB@boxii\SB@cntii\textheight%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@spextnew}
+% Extend the trial typesetting started with |\SB@spbegnew| to a second
+% page to see whether the song fits on a fresh double-page.
+% \begin{macrocode}
+\newcommand\SB@spextnew{%
+ \SB@cntii\z@%
+ \SB@mkpage0\SB@boxiii\SB@cntii\textheight%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@spdblpg}
+% Compute the number of column breaks required to shift the current song
+% to the next double-page if the result of the last test run fits within
+% its page (as indicated by counter |\SB@cntii|).
+% Otherwise leave the requested number of column breaks set to zero.
+% \begin{macrocode}
+\newcommand\SB@spdblpg{%
+ \ifnum\SB@cntii<\SB@numcols%
+ \SB@cnt\SB@numcols%
+ \advance\SB@cnt-\SB@colnum%
+ \if@twoside\ifodd\c@page\else%
+ \advance\SB@cnt\SB@numcols%
+ \fi\fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@sposi}
+% This is the level-1 song positioning algorithm.
+% It moves songs to the next double-page only if doing so would avoid a
+% page-turn that would otherwise appear within the song.
+% \begin{macrocode}
+\newcommand\SB@sposi{%
+ \ifnum\SB@cntii<\SB@numcols\else\if@twoside%
+ \SB@spextold%
+ \fi\fi%
+ \ifnum\SB@cntii<\SB@numcols\else%
+ \SB@spbegnew%
+ \ifnum\SB@cntii<\SB@numcols\else\if@twoside%
+ \SB@spextnew%
+ \fi\fi%
+ \SB@spdblpg%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@sposii}
+% This is the level-2 song-positioning algorithm.
+% It moves songs to the next page or double-page if doing so avoids a
+% page-break or page-turn that would otherwise appear within the song.
+% \begin{macrocode}
+\newcommand\SB@sposii{%
+ \ifnum\SB@cntii<\SB@numcols\else%
+ \SB@spbegnew%
+ \ifnum\SB@cntii<\SB@numcols%
+ \SB@cnt\SB@numcols%
+ \advance\SB@cnt-\SB@colnum%
+ \else%
+ \if@twoside%
+ \SB@spextold%
+ \ifnum\SB@cntii<\SB@numcols\else%
+ \SB@spextnew%
+ \SB@spdblpg%
+ \fi%
+ \fi%
+ \fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@sposiii}
+% This is the level-3 song-positioning algorithm.
+% It moves songs to the next column, the next page, or the next double-page
+% if doing so avoids a column-break, page-break, or page-turn that would
+% otherwise appear within the song.
+% \begin{macrocode}
+\newcommand\SB@sposiii{%
+ \ifnum\SB@cntii>\SB@colnum%
+ \SB@cnt\SB@colnum%
+ \advance\SB@cnt\@ne%
+ \ifnum\SB@cnt<\SB@numcols%
+ \setbox\SB@boxiii\copy\SB@songbox%
+ \SB@mkpage0\SB@boxiii\SB@cnt\SB@dimen%
+ \advance\SB@cnt\m@ne%
+ \fi%
+ \ifnum\SB@cnt>\SB@colnum%
+ \SB@cnt\z@%
+ \SB@sposii%
+ \else%
+ \SB@cnt\@ne%
+ \fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\songpos}
+% This is the macro by which the user adjusts the aggressiveness level of the
+% song-positioning algorithm.
+% See the macros above for what each level does.
+% \begin{macrocode}
+\newcommand\songpos[1]{%
+ \ifcase#1%
+ \let\SB@selectcol\relax%
+ \let\SB@spos\relax%
+ \or%
+ \let\SB@selectcol\SB@@selectcol%
+ \let\SB@spos\SB@sposi%
+ \or%
+ \let\SB@selectcol\SB@@selectcol%
+ \let\SB@spos\SB@sposii%
+ \or%
+ \let\SB@selectcol\SB@@selectcol%
+ \let\SB@spos\SB@sposiii%
+ \else%
+ \SB@errspos%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@spos}
+% The |\SB@spos| macro gets redefined by |\songpos| above depending on the
+% current song-positioning aggressiveness level.
+% By default it is set to level 3.
+% \begin{macrocode}
+\newcommand\SB@spos{}
+\songpos\thr@@
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@clearpage}
+% Output all contributed material as a new page unless there is no contributed
+% material. In that case do nothing (i.e., don't produce a blank page).
+% The |\SB@colbox| is tested for zero height and depth rather than voidness,
+% since sometimes it contains zero-length |\splittopskip| glue.
+% \begin{macrocode}
+\newcommand\SB@clearpage{%
+ \SB@testtrue%
+ \ifvoid\SB@pgbox%
+ \ifdim\ht\SB@colbox=\z@\ifdim\dp\SB@colbox=\z@%
+ \SB@testfalse%
+ \fi\fi%
+ \fi%
+ \ifSB@test%
+ \SB@cnt\SB@numcols%
+ \advance\SB@cnt-\SB@colnum%
+ \SB@nextcol\SB@cnt\lastcolglue%
+ \SB@output2%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@cleardpage}
+% Like |\SB@clearpage| but shift to a fresh \emph{even-numbered} page in
+% two-sided documents.
+% Note that this differs from \LaTeX's |\cleardoublepage|, which shifts to
+% odd-numbered pages.
+% Song books prefer starting things on even-numbered pages because this
+% maximizes the distance until the next page-turn.
+% \begin{macrocode}
+\newcommand\SB@cleardpage{%
+ \SB@clearpage%
+ \if@twoside\ifodd\c@page%
+ \SB@nextcol\SB@numcols\@flushglue%
+ \SB@output2%
+ \fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@stype}
+% There are two song content submission types: column- and page-submissions.
+% Page-submissions are page-width and go atop fresh pages unless the current
+% page has only page-width material so far.
+% Column-submissions are column-width and start a new page only when the
+% current page is full.
+% This macro gets set to the desired type for the current submission.
+% Mostly it stays set to the default column-submission type.
+% \begin{macrocode}
+\newcommand\SB@stype{\SB@stypcol}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@stypcol}
+% \changes{v2.1}{2007/08/02}{Rewritten to better handle glue}
+% Column-submissions contribute the contents of |\SB@songbox| to either the
+% current column or the next column or page, depending on where it best fits.
+% \begin{macrocode}
+\newcommand\SB@stypcol{%
+ \ifnum\SB@numcols>\z@%
+ \SB@selectcol%
+ \global\setbox\SB@colbox\vbox{\SB@putboxes\unvbox}%
+ \SB@output0%
+ \else%
+ \unvbox\voidb@x%
+ \SB@breakpoint\spenalty%
+ \ifdim\sbarheight>\z@%
+ \vskip-\sbarheight\relax%
+ \fi%
+ \unvbox\SB@songbox%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@styppage}
+% Page-submissions go directly to the top of the nearest fresh page unless
+% the current page has all page-width material so far.
+%
+% Implementation notes:
+% The |\null| is needed because the page builder consults |\pagetotal|,
+% which isn't updated by \TeX{} until a box is contributed (|\unvbox| doesn't
+% count).
+% Both |\nointerlineskip|s are needed because |\unvbox| fails to update
+% |\prevdepth|, and it doesn't make sense to inherit its value from whatever
+% preceeded this contribution.
+% Authors who want interline glue must therefore insert it explicitly at the
+% bottom of their contributed text.
+% \begin{macrocode}
+\newcommand\SB@styppage{%
+ \ifnum\SB@numcols>\z@%
+ \SB@clearpage%
+ \unvbox\SB@songbox%
+ \nointerlineskip\null%
+ \else%
+ \unvbox\SB@songbox%
+ \fi%
+ \nointerlineskip%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@sgroup}
+% This macro controls whether songs submitted to the
+% page-builder are actually contributed to the final document when
+% using |\includeonlysongs| to generate a partial list.
+% If |\SB@sgroup| is empty, then the song is silently dropped.
+% Otherwise it is contributed only if |\SB@sgroup| is a member of
+% |\songlist|.
+% \begin{macrocode}
+\newcommand\SB@sgroup{}
+\let\SB@sgroup\@empty
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@groupcnt}
+% This counter assigns a unique integer to each item of a group.
+% Environments that come before the group's song are numbered decreasingly
+% from $-1$.
+% The song itself has number 0.
+% Environments that come after the song are numbered increasingly from 1.
+% \begin{macrocode}
+\SB@newcount\SB@groupcnt
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@clearpboxes}
+% This dynamically constructed macro clears the content of all boxes created
+% by the workings of |\includeonlysongs|.
+% \begin{macrocode}
+\newcommand\SB@clearpboxes{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@partbox}
+% Save a box of full-song or chorus material for later output when producing
+% a partial list using |\includeonlysongs|.
+% \begin{macrocode}
+\newcommand\SB@partbox[1]{%
+ \SB@newbox#1%
+ \SB@app\gdef\SB@clearpboxes{\setbox#1\box\voidb@x}%
+ \global\setbox#1\box%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@submitpart}
+% When a song completes and we're generating a partial list, save the song
+% in a box so that it can be submitted at the end of the section in the
+% order specified by |\includeonlysongs|.
+% \begin{macrocode}
+\newcommand\SB@submitpart{%
+ \ifx\SB@sgroup\@empty\else%
+ \SB@testfalse
+ \@for\SB@temp:=\songlist\do{\ifx\SB@temp\SB@sgroup\SB@testtrue\fi}%
+ \ifSB@test%
+ \edef\SB@tempii{\SB@sgroup @\the\SB@groupcnt}%
+ \expandafter\SB@partbox
+ \csname songbox@\SB@tempii\endcsname\SB@songbox%
+ \global\expandafter\let%
+ \csname stype@\SB@tempii\endcsname\SB@stype%
+ \ifrepchorus\ifvoid\SB@chorusbox\else%
+ \expandafter\SB@partbox
+ \csname chbox@\SB@tempii\endcsname\SB@chorusbox%
+ \fi\fi%
+ \fi%
+ \global\advance\SB@groupcnt%
+ \ifnum\SB@groupcnt<\z@\m@ne\else\@ne\fi%
+ \fi%
+ \setbox\SB@songbox\box\voidb@x%
+ \setbox\SB@chorusbox\box\voidb@x%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@submitsong}
+% Submit the most recently finished song (or block of other vertical material)
+% for output.
+% If we're generating a partial list of songs, save it in a box instead of
+% submitting it here.
+% (The saved boxes will be submitted in the requested order at the end of
+% the songs section.)
+% \begin{macrocode}
+\newcommand\SB@submitsong{%
+ \ifpartiallist\SB@submitpart\else\SB@stype\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@submitenv}
+% Submit the |\SB@envbox| box as a page-width contribution.
+% \begin{macrocode}
+\newcommand\SB@submitenv{%
+ \begingroup%
+ \let\SB@songbox\SB@envbox%
+ \SB@styppage%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@songlistbrk}
+% \begin{macro}{\SB@songlistnc}
+% \begin{macro}{\SB@songlistcp}
+% \begin{macro}{\SB@songlistcdp}
+% These macros define the words that, when placed in a |\songlist|,
+% force a column break at that point.
+% Using |brk| produces a soft break (like |\brk|) that won't leave
+% whitespace at the bottom of the broken column in lyric books.
+% Using |nextcol| produces a hard break (like |\nextcol|) that may
+% insert whitespace to finish the column.
+% Using |sclearpage| moves to the next page if the current page is
+% nonempty.
+% Using |scleardpage| moves to the next double-page if the current
+% double-page is nonempty.
+% \begin{macrocode}
+\newcommand*\SB@songlistbrk{brk}
+\newcommand*\SB@songlistnc{nextcol}
+\newcommand*\SB@songlistcp{sclearpage}
+\newcommand*\SB@songlistcdp{scleardpage}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\commitsongs}\MainImpl{commitsongs}
+% If we're generating only a partial list, then wait until the end of the
+% section and then output all the songs we saved in boxes in the order
+% specified.
+% \begin{macrocode}
+\newcommand\commitsongs{%
+ \ifpartiallist%
+ \ifnum\SB@numcols>\z@%
+ \@for\SB@temp:=\songlist\do{%
+ \ifx\SB@temp\SB@songlistnc\SB@nextcol\@ne\@flushglue\else%
+ \ifx\SB@temp\SB@songlistbrk\SB@nextcol\@ne\colbotglue\else%
+ \ifx\SB@temp\SB@songlistcp\SB@clearpage\else%
+ \ifx\SB@temp\SB@songlistcdp\SB@cleardpage\else%
+ \SB@groupcnt\m@ne\SB@finloop%
+ \SB@groupcnt\z@\SB@finloop%
+ \fi\fi\fi\fi%
+ }%
+ \else%
+ \@for\SB@temp:=\songlist\do{%
+ \ifx\SB@temp\SB@songlistnc\vfil\break\else%
+ \ifx\SB@temp\SB@songlistbrk\break\else%
+ \ifx\SB@temp\SB@songlistcp\clearpage\else%
+ \ifx\SB@temp\SB@songlistcdp%
+ \clearpage%
+ \ifodd\c@page\null\newpage\fi%
+ \else%
+ \SB@groupcnt\m@ne\SB@finloop%
+ \SB@groupcnt\z@\SB@finloop%
+ \fi\fi\fi\fi%
+ }%
+ \fi%
+ \SB@clearpboxes%
+ \fi%
+ \SB@clearpage%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@finloop}
+% While contributing saved material included by |\includeonlysongs|,
+% this macro contributes each series of boxes grouped together as part of a
+% |songgroup| environment.
+% \begin{macrocode}
+\newcommand\SB@finloop{%
+ \loop\edef\SB@tempii{\SB@temp @\the\SB@groupcnt}%
+ \expandafter\ifx%
+ \csname songbox@\SB@tempii\endcsname\relax\else%
+ \setbox\SB@songbox\expandafter\copy%
+ \csname songbox@\SB@tempii\endcsname%
+ \expandafter\ifx\csname chbox@\SB@tempii\endcsname\relax%
+ \repchorusfalse%
+ \else%
+ \repchorustrue%
+ \setbox\SB@chorusbox\expandafter\copy%
+ \csname chbox@\SB@tempii\endcsname%
+ \fi%
+ \csname stype@\SB@tempii\endcsname%
+ \advance\SB@groupcnt\ifnum\SB@groupcnt<\z@\m@ne\else\@ne\fi%
+ \repeat%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@insertchorus}
+% Insert a chorus into the first marked spot in the box given
+% in the first argument.
+% This is usually achieved by splitting the box at the first valid
+% breakpoint after the first |\SB@cmark| in the box.
+% The box is globally modified.
+% \begin{macrocode}
+\newcommand\SB@insertchorus[1]{{%
+ \vbadness\@M\vfuzz\maxdimen%
+ \setbox\SB@box\copy#1%
+ \setbox\SB@box\vsplit\SB@box to\maxdimen%
+ \edef\SB@temp{\splitfirstmarks\SB@nocmarkclass}%
+ \ifx\SB@temp\SB@nocmark\else%
+ \edef\SB@temp{\splitfirstmarks\SB@cmarkclass}%
+ \ifx\SB@temp\SB@cmark%
+ \SB@dimen4096\p@%
+ \SB@dimenii\maxdimen%
+ \SB@dimeniii\SB@dimen%
+ \loop%
+ \SB@dimeniii.5\SB@dimeniii%
+ \setbox\SB@box\copy#1%
+ \setbox\SB@box\vsplit\SB@box to\SB@dimen%
+ \edef\SB@temp{\splitfirstmarks\SB@cmarkclass}%
+ \ifx\SB@temp\SB@cmark%
+ \SB@dimenii\SB@dimen%
+ \advance\SB@dimen-\SB@dimeniii%
+ \else%
+ \advance\SB@dimen\SB@dimeniii%
+ \fi%
+ \ifdim\SB@dimeniii>2\p@\repeat%
+ \setbox\SB@box\vsplit#1to\SB@dimenii%
+ \global\setbox#1\vbox{%
+ \unvbox\SB@box\unskip%
+ \SB@inversefalse\SB@prevversetrue\SB@stanzabreak%
+ \SB@putbox\unvcopy\SB@chorusbox%
+ \SB@inversetrue\SB@prevversefalse\SB@stanzabreak%
+ \unvbox#1%
+ }%
+% \end{macrocode}
+% However, if the first mark is a |\SB@lastcmark|, it means that this chorus
+% should go after the last verse in the song.
+% There is no valid breakpoint there, so to get a chorus into that spot, we
+% have to do a rather ugly hack:
+% We pull the bottom material off the box with |\unskip|, |\unpenalty|, and
+% |\lastbox|, then insert the chorus, then put the bottom material back on.
+% This works because the high-level structure of the bottom material should
+% be static.
+% Even if the user redefines |\makepostlude|, the new definition gets put
+% in a single box that can be manipulated with |\lastbox|.
+% However, if we ever change the high-level structure, we need to remember to
+% change this code accordingly.
+% \begin{macrocode}
+ \else\ifx\SB@temp\SB@lastcmark%
+ \global\setbox#1\vbox{%
+ \unvbox#1%
+ \unskip%
+ \ifdim\sbarheight>\z@%
+ \setbox\SB@box\lastbox%
+ \unskip\unpenalty%
+ \fi%
+ \setbox\SB@box\lastbox%
+ \unskip\unskip%
+ \SB@inversefalse\SB@prevversetrue\SB@stanzabreak%
+ \marks\SB@nocmarkclass{\SB@nocmark}%
+ \unvcopy\SB@chorusbox%
+ \vskip\versesep\vskip\beforepostludeskip\relax%
+ \nointerlineskip\box\SB@box%
+ \ifdim\sbarheight>\z@%
+ \nobreak\vskip2\p@\@plus\p@%
+ \hrule\@height\sbarheight\@width\SB@colwidth%
+ \fi%
+ }%
+ \fi\fi%
+ \fi%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\nextcol}\MainImpl{nextcol}
+% End the current column (inserting vertical space as needed).
+% This differs from column breaks produced with |\brk|, which does not
+% introduce any empty vertical space.
+% \begin{macrocode}
+\newcommand\nextcol{%
+ \@ifstar{\SB@nextcol\@ne\@flushglue}%
+ {\ifpartiallist\else\SB@nextcol\@ne\@flushglue\fi}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\sclearpage}\MainImpl{sclearpage}
+% Move to the next page if the current page is nonempty.
+% \begin{macrocode}
+\newcommand\sclearpage{%
+ \@ifstar\SB@clearpage{\ifpartiallist\else\SB@clearpage\fi}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\scleardpage}\MainImpl{scleardpage}
+% Move to the next even-numbered page if the current page is odd or nonempty.
+% \begin{macrocode}
+\newcommand\scleardpage{%
+ \@ifstar\SB@cleardpage{\ifpartiallist\else\SB@cleardpage\fi}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Songs}
+%
+% The following macros handle the parsing and formatting of the material that
+% begins and ends each song.
+%
+% \begin{macro}{\SB@lop}
+% \begin{macro}{\SB@@lop}
+% \begin{macro}{\SB@emptylist}
+% \begin{macro}{\SB@ifempty}
+% The following macros were adapted from Donald Knuth's \emph{The \TeX book},
+% for manipulating lists of the form
+% {\it |\\|item1|\\|item2|\\|...|\\|itemN|\\|}.
+% \begin{macrocode}
+\newcommand\SB@lop[1]{\expandafter\SB@@lop\the#1\SB@@lop#1}
+\newcommand\SB@@lop{}
+\def\SB@@lop\\#1\\#2\SB@@lop#3#4{\global#3{\\#2}\global#4{#1}}
+\newcommand*\SB@emptylist{\\}
+\newcommand\SB@ifempty[3]{%
+ \edef\SB@temp{\the#1}%
+ \ifx\SB@temp\SB@emptylist#2\else#3\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@titlelist}
+% \begin{macro}{\SB@titletail}
+% These registers hold the full list of titles for the current song and
+% the tail list of titles that has not yet been iterated over.
+% \begin{macrocode}
+\SB@newtoks\SB@titlelist
+\SB@newtoks\SB@titletail
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\songtitle}
+% \changes{v1.15}{2005/05/26}{Added song title iterators}
+% The |\songtitle| macro will initially hold the primary title of the
+% current song.
+% The user can iterate over titles using |\nexttitle| or |\foreachtitle|.
+% \begin{macrocode}
+\newcommand\songtitle{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\resettitles}\MainImpl{resettitles}
+% \changes{v1.15}{2005/05/26}{Added.}
+% Initialize the title list iterator.
+% \begin{macrocode}
+\newcommand\resettitles{%
+ \global\SB@titletail\SB@titlelist%
+ \nexttitle%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\nexttitle}\MainImpl{nexttitle}
+% \changes{v1.15}{2005/05/26}{Added.}
+% Advance the title list iterator to the next title.
+% \begin{macrocode}
+\newcommand\nexttitle{%
+ \SB@ifempty\SB@titletail{%
+ \global\let\songtitle\relax%
+ }{%
+ \SB@lop\SB@titletail\SB@toks%
+ \edef\songtitle{\the\SB@toks}%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\foreachtitle}\MainImpl{foreachtitle}
+% \changes{v1.15}{2005/05/26}{Added.}
+% Execute a block of code for each remaining title in the title list.
+% \begin{macrocode}
+\newcommand\foreachtitle[1]{%
+ \ifx\songtitle\relax\else%
+ \loop#1\nexttitle\ifx\songtitle\relax\else\repeat%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@insong}
+% \begin{macro}{\ifSB@intersong}
+% \begin{macro}{\ifSB@inverse}
+% \begin{macro}{\ifSB@inchorus}
+% To help the user locate errors, keep track of which environments we're inside
+% and immediately signal an error if someone tries to use a song command inside
+% a scripture quotation, etc.
+% \begin{macrocode}
+\newif\ifSB@songsenv\SB@songsenvfalse
+\newif\ifSB@insong\SB@insongfalse
+\newif\ifSB@intersong\SB@intersongfalse
+\newif\ifSB@inverse\SB@inversefalse
+\newif\ifSB@inchorus\SB@inchorusfalse
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@closeall}
+% If an error is detected using one of the above, the following macro will
+% contain a macro sequence sufficient to end the unclosed environment,
+% hopefully allowing processing to continue.
+% \begin{macrocode}
+\newcommand\SB@closeall{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@rawrefs}
+% \begin{macro}{\songauthors}\MainImpl{songauthors}
+% \begin{macro}{\songcopyright}\MainImpl{songcopyright}
+% \begin{macro}{\songlicense}\MainImpl{songlicense}
+% The current song's scripture references, authors, copyright info, and
+% copyright license information are stored in these macros.
+% \begin{macrocode}
+\newcommand\SB@rawrefs{}
+\newcommand\songauthors{}
+\newcommand\songcopyright{}
+\newcommand\songlicense{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\songrefs}\MainImpl{songrefs}
+% When the user asks for the song's scripture references, rather than give
+% them the raw token list that the author entered, we return a prettier
+% version in which spaces, dashes, and penalties have been adjusted.
+% The prettier version is stored in the following control sequence.
+% \begin{macrocode}
+\newcommand\songrefs{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\setlicense}\MainImpl{setlicense}
+% The user sets the licensing info for the current song with this command.
+% \begin{macrocode}
+\newcommand\setlicense{\gdef\songlicense}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\newsongkey}\MainImpl{newsongkey}
+% \begin{macro}{\SB@clearbskeys}
+% \changes{v2.0}{2007/06/18}{Added.}
+% Defining a new key for |\beginsong| is just like the |keyval| package's
+% |\define@key| macro except that we must also define some initializer code
+% for each key.
+% This provides an opportunity to clear registers before each song.
+% (Otherwise when a key wasn't specified, we'd inherit the old values from
+% the previous song.)
+% \begin{macrocode}
+\newcommand\SB@clearbskeys{}
+\newcommand\newsongkey[2]{%
+ \SB@app\gdef\SB@clearbskeys{#2}%
+ \define@key{beginsong}{#1}%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% Define keys |sr|, |by|, |cr|, |li|, |index|, and |ititle| for scripture
+% references, authors, copyright info, licensing info, lyric index entries,
+% and alternate title index entries, respectively.
+% \begin{macrocode}
+\newsongkey{sr}{\def\SB@rawrefs{}\gdef\songrefs{}}
+ {\def\SB@rawrefs{#1}\SB@parsesrefs{#1}}
+\newsongkey{by}{\def\songauthors{}}{\def\songauthors{#1}}
+\newsongkey{cr}{\def\songcopyright{}}{\def\songcopyright{#1}}
+\newsongkey{li}{\setlicense{}}{\setlicense{#1}}
+\newsongkey{index}{}{\indexentry{#1}}
+\newsongkey{ititle}{}{\indextitleentry{#1}}
+% \end{macrocode}
+%
+% \begin{environment}{song}\MainEnvImpl{song}
+% \begin{macro}{\beginsong}
+% \begin{macro}{\SB@@beginsong}
+% \begin{macro}{\SB@bsoldfmt}
+% \begin{macro}{\SB@@bskvfmt}
+% Parse the arguments of a |\beginsong| macro.
+% The |\beginsong| macro supports two syntaxes.
+% The preferred syntax takes the song title(s) as its first argument and
+% an optional keyval list in brackets as its second argument.
+% A legacy syntax supports four arguments, all enclosed in braces,
+% which are: the title(s), scripture references, authors, and copyright info.
+% \begin{macrocode}
+\newenvironment{song}{\beginsong}{\SB@endsong}
+\newcommand\beginsong[1]{%
+ \ifSB@insong\SB@errboo\SB@closeall\fi%
+ \ifSB@intersong\SB@errbor\SB@closeall\fi%
+ \SB@insongtrue%
+ \def\SB@closeall{\endsong}%
+ \SB@parsetitles{#1}%
+ \global\setbox\SB@songwrites\box\voidb@x%
+ \SB@clearbskeys%
+ \@ifnextchar[\SB@bskvfmt\SB@@beginsong%
+}
+\newcommand\SB@@beginsong{%
+ \@ifnextchar\bgroup\SB@bsoldfmt\SB@@@beginsong%
+}
+\newcommand\SB@bsoldfmt[3]{%
+ \SB@bskvfmt[sr={#1},by={#2},cr={#3}]%
+}
+\newcommand\SB@bskvfmt{}
+\def\SB@bskvfmt[#1]{%
+ \setkeys{beginsong}{#1}%
+ \SB@@@beginsong%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@@@beginsong}
+% \changes{v1.12}{2005/05/10}{Redid spacing and page-breaking}
+% \changes{v1.14}{2005/05/15}{Improved scripture reference line-breaking}
+% \changes{v2.0}{2007/06/18}{Added keyval syntax.}
+% Begin typesetting a song.
+% Beginning a song involves typesetting the title and other info, adding
+% entries to the indexes, and setting up the environment in which verses and
+% choruses reside.
+% \begin{macrocode}
+\newcommand\SB@@@beginsong{%
+ \global\SB@stanzafalse%
+ \setbox\SB@chorusbox\box\voidb@x%
+ \SB@gotchorusfalse%
+ \setbox\SB@songbox\vbox\bgroup\begingroup%
+ \ifnum\SB@numcols>\z@\hsize\SB@colwidth\fi%
+ \leftskip\z@skip\rightskip\z@skip%
+ \parfillskip\@flushglue\parskip\z@skip%
+ \SB@raggedright%
+ \global\SB@transposefactor\z@%
+ \global\SB@cr@{\\}%
+ \protected@edef\@currentlabel{\p@songnum\thesongnum}%
+ \setcounter{versenum}{1}%
+ \SB@prevversetrue%
+ \meter44%
+ \resettitles%
+ \SB@addtoindexes\songtitle\SB@rawrefs\songauthors%
+ \nexttitle%
+ \foreachtitle{\expandafter\SB@addtotitles\expandafter{\songtitle}}%
+ \resettitles%
+ \lyricfont\relax%
+ \SB@setbaselineskip%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@endsong}
+% \changes{v1.12}{2005/05/10}{Redid spacing and page-breaking}
+% \changes{v2.0}{2007/06/18}{Removed hyperref dependency}
+% Ending a song involves creating the song header (with |\makeprelude|),
+% creating the song footer (with |\makepostlude|), and then assembling
+% everything together into the |\SB@songbox|.
+% The box is then submitted to the page-builder via |\SB@submitsong|.
+% We do things this way instead of just contributing material directly
+% to the main vertical list because submitting material song by song allows
+% for a more sophisticated page-breaking algorithm than is possible with
+% \TeX's built-in algorithm.
+% \begin{macrocode}
+\newcommand\SB@endsong{%
+ \ifSB@insong%
+ \ifSB@inverse\SB@erreov\endverse\fi%
+ \ifSB@inchorus\SB@erreoc\endchorus\fi%
+ \global\SB@skip\versesep%
+ \unskip%
+ \ifrepchorus\ifvoid\SB@chorusbox\else%
+ \ifSB@prevverse\ifvnumbered%
+ \marks\SB@cmarkclass{\SB@lastcmark}%
+ \fi\fi%
+ \fi\fi%
+ \endgroup\egroup%
+ \begingroup%
+ \ifnum\SB@numcols>\z@%
+ \hsize\ifpagepreludes\textwidth\else\SB@colwidth\fi%
+ \fi%
+ \leftskip\z@skip\rightskip\z@skip%
+ \parfillskip\@flushglue\parskip\z@skip\parindent\z@%
+ \global\setbox\SB@envbox\vbox{%
+ \songmark%
+ \unvbox\SB@songwrites%
+ \ifpagepreludes\else\ifdim\sbarheight>\z@%
+ \hrule\@height\sbarheight\@width\hsize%
+ \nobreak\vskip5\p@\relax%
+ \fi\fi%
+ \resettitles%
+ \begingroup%
+ \songtarget{\ifnum\c@section=\z@1\else2\fi}%
+ {song\theSB@songsnum-\thesongnum}%
+ \endgroup%
+ \vbox{\makeprelude}%
+ \nobreak\vskip\SB@skip%
+ \vskip\afterpreludeskip\relax%
+ }%
+ \ifnum\SB@numcols>\z@\hsize\SB@colwidth\fi%
+ \global\setbox\SB@songbox\vbox{%
+ \ifpagepreludes\else\unvbox\SB@envbox\fi%
+ \unvbox\SB@songbox%
+ \nobreak\vskip\SB@skip%
+ \vskip\beforepostludeskip\relax%
+ \nointerlineskip%
+ \vbox{\makepostlude}%
+ \ifdim\sbarheight>\z@%
+ \nobreak\vskip2\p@\@plus\p@%
+ \nointerlineskip%
+ \hbox{\vrule\@height\sbarheight\@width\hsize}%
+ \fi%
+ }%
+ \endgroup%
+ \SB@insongfalse%
+ \edef\SB@sgroup{\thesongnum}%
+ \global\SB@groupcnt\z@%
+ \ifpagepreludes\SB@submitenv\fi%
+ \SB@submitsong%
+ \ifnum\SB@grouplvl=\z@\let\SB@sgroup\@empty\fi%
+ \stepcounter{songnum}%
+ \else%
+ \ifSB@intersong\SB@erreor\SB@closeall%
+ \else\SB@erreot\fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{environment}
+%
+% \begin{macro}{\SB@setbaselineskip}
+% \changes{v1.22}{2007/05/15}{Added.}
+% \changes{v2.1}{2007/08/02}{Fixed to scale better with large font sizes.}
+% Set the |\baselineskip| to an appropriate line height.
+% \begin{macrocode}
+\newcommand\SB@setbaselineskip{%
+ \SB@dimen\f@size\p@%
+ \baselineskip\SB@dimen\relax%
+ \ifchorded%
+ \setbox\SB@box\hbox{{\printchord{ABCDEFG\shrp\flt/j7}}}%
+ \advance\baselineskip\ht\SB@box%
+ \advance\baselineskip2\p@%
+ \fi%
+ \ifslides%
+ \advance\baselineskip.2\SB@dimen\@plus.5\SB@dimen%
+ \@minus.2\SB@dimen%
+ \else%
+ \advance\baselineskip\z@\@plus.1\SB@dimen\relax%
+ \fi%
+ \advance\baselineskip\baselineadj%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@setversesep}
+% Set the |\versesep| to an appropriate amount if has not already been
+% explicitly set by the user.
+% \begin{macrocode}
+\newcommand\SB@setversesep{%
+ \SB@dimen123456789sp%
+ \edef\SB@temp{\the\SB@dimen}%
+ \edef\SB@tempii{\the\versesep}%
+ \ifx\SB@temp\SB@tempii%
+ \begingroup%
+ \lyricfont\relax%
+ \SB@dimen\f@size\p@%
+ \ifchorded%
+ \setbox\SB@box\hbox{{\printchord{ABCDEFG\shrp\flt/j7}}}%
+ \advance\SB@dimen\ht\SB@box%
+ \fi%
+ \ifslides%
+ \global\versesep1.2\SB@dimen\@plus.3\SB@dimen%
+ \@minus.3\SB@dimen%
+ \else%
+ \global\versesep.75\SB@dimen\@plus.25\SB@dimen%
+ \@minus.13\SB@dimen%
+ \fi%
+ \endgroup%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\makeprelude}\MainImpl{makeprelude}
+% \changes{v1.15}{2005/05/26}{Added to make song header format customizable.}
+% \changes{v2.0}{2007/06/18}{Arguments removed to support keyval syntax.}
+% Generate the material that begins each song.
+% This macro is invoked at |\endsong| so that its code can access song info
+% defined throughout the song.
+%
+% Note that if you are redefining |\makeprelude|, you can probably replace
+% everything below with something much simpler.
+% The code below is lengthy because it accommodates all of the many different
+% options that various authors may adjust to customize their books.
+% If you redefine it, you can replace all of this with smaller, more
+% specialized programming that just outputs the prelude format you desire.
+% \begin{macrocode}
+\newcommand\makeprelude{%
+ \resettitles%
+% \end{macrocode}
+% In slides mode, the title, references, and authors are simply centered on
+% the page with no song number.
+% Only the first of the song titles is included.
+% The references and authors only span the middle 50\% of the page, since
+% letting them span the whole page width stretches them out too much and makes
+% their fine print too hard to read.
+% \begin{macrocode}
+ \ifslides%
+ \hbox to\hsize{{\hfil\stitlefont\relax\songtitle\hfil}}%
+ \vskip5\p@%
+ \hbox to\hsize{%
+ \hfil%
+ \vbox{%
+ \divide\hsize\tw@\parskip\p@\relax%
+ \centering\small\extendprelude%
+ }%
+ \hfil%
+ }%
+ \else%
+% \end{macrocode}
+% In non-slides mode, we write the song number in a shaded box to the left
+% (if |\songnumwidth| is positive) and everything else in left-justified
+% paragraphs to the right of it (or centered if |\pagepreludes| is on).
+% The height of the shaded box that contains the song number depends on
+% which is higher: the natural height of the song number, or everything else
+% that goes to the right of it.
+% To find out which is higher, we start by putting the song number in its
+% own box (|\SB@boxii|).
+% \begin{macrocode}
+ \ifdim\songnumwidth>\z@%
+ \setbox\SB@boxii\hbox{{\SB@colorbox\snumbgcolor{%
+ \hbox to\songnumwidth{%
+ \printsongnum{\thesongnum}\hfil%
+ }%
+ }}}%
+ \fi%
+% \end{macrocode}
+% Now we know the width $w$ of the song number box, so we typeset everything
+% else in a box (|\SB@box|) of width $c-w$, where $c$ is the column width.
+% (If |\pagepreludes| is on, we instead use width $c-2w$ so that the material
+% stays centered on the page.)
+% \begin{macrocode}
+ \setbox\SB@box\vbox{%
+ \ifdim\songnumwidth>\z@%
+ \SB@dimen\wd\SB@boxii%
+ \advance\SB@dimen3\p@%
+ \ifpagepreludes\multiply\SB@dimen\tw@\fi%
+ \advance\hsize-\SB@dimen%
+ \fi%
+ \ifpagepreludes\centering\else\SB@raggedright\fi%
+ \offinterlineskip\lineskip\p@%
+ {\stitlefont\relax%
+ \songtitle\par%
+ \nexttitle%
+ \foreachtitle{(\songtitle)\par}}%
+ \ifdim\prevdepth=\z@\kern\p@\fi%
+ \parskip\p@\relax\tiny%
+ \extendprelude%
+ \kern\z@%
+ }%
+% \end{macrocode}
+% If the song number is being printed (i.e., |\songnumwidth| is positive),
+% and its height is greater than the height of the other material, then we
+% just put |\SB@boxii| and |\SB@box| side-by-side.
+% If the song number is being printed but its height is less, then we
+% re-typeset it at height equal to the other material, and place the boxes
+% side-by-side.
+% Finally, if the song number is not being printed at all, we just unbox
+% |\SB@box| onto the vertical list.
+% \begin{macrocode}
+ \ifdim\songnumwidth>\z@%
+ \hbox{%
+ \ifdim\ht\SB@boxii>\ht\SB@box%
+ \box\SB@boxii%
+ \kern3\p@%
+ \vtop{\box\SB@box}%
+ \else%
+ \SB@colorbox\snumbgcolor{\vbox to\ht\SB@box{{%
+ \hbox to\songnumwidth{%
+ \printsongnum{\thesongnum}\hfil%
+ }\vfil%
+ }}}%
+ \kern3\p@%
+ \box\SB@box%
+ \fi%
+ }%
+ \else%
+ \unvbox\SB@box%
+ \fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\makepostlude}\MainImpl{makepostlude}
+% \changes{v1.15}{2005/05/26}{Added to make song trailer format customizable.}
+% \changes{v2.0}{2007/06/18}{Arguments removed to support keyval syntax.}
+% Generate the material that ends each song.
+% The default implementation just prints the copyright and licensing
+% information (if any) as a single, left-justified, non-indentended paragraph
+% in fine print.
+% \begin{macrocode}
+\newcommand\makepostlude{%
+ \SB@raggedright\baselineskip\z@skip\parskip\z@skip\parindent\z@%
+ \tiny\extendpostlude%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\showauthors}\MainImpl{showauthors}
+% Display the author information in the prelude.
+% This macro is only called by |\extendprelude|, which is only called by
+% |\makeprelude|; so if you redefine either of those, you don't need this.
+% The default implementation prints the authors in boldface and shortens the
+% spacing after periods so that they don't look like ends of sentences.
+% \begin{macrocode}
+\newcommand\showauthors{%
+ \setbox\SB@box\hbox{\bfseries\sfcode`.\@m\songauthors}%
+ \ifdim\wd\SB@box>\z@\unhbox\SB@box\par\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\showrefs}\MainImpl{showrefs}
+% Display the scripture references in the prelude.
+% This macro is only called by |\extendprelude|, which is only called by
+% |\makeprelude|; so if you redefine either of those, you don't need this.
+% The default implementation prints the scripture references in slanted
+% (oblique) font.
+% \begin{macrocode}
+\newcommand\showrefs{%
+ \setbox\SB@box\hbox{\slshape\songrefs\vphantom,}%
+ \ifdim\wd\SB@box>\z@\unhbox\SB@box\par\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@next}
+% \begin{macro}{\SB@donext}
+% \begin{macro}{\SB@dothis}
+% Several macros use |\futurelet| to look ahead in the input stream, and then
+% take various actions depending on what is seen.
+% In these macros, |\SB@next| is assigned the token seen, |\SB@dothis| is
+% assigned the action to be taken on this loop iteration, and |\SB@donext| is
+% assigned the action to be taken to continue (or terminate) the loop.
+% \begin{macrocode}
+\newcommand\SB@next{}
+\newcommand\SB@donext{}
+\newcommand\SB@dothis{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@nextname}
+% Sometimes when scanning ahead we |\string|ify the name of the next token.
+% When that happens, the name is stored in this macro for safekeeping.
+% \begin{macrocode}
+\newcommand\SB@nextname{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@appendsp}
+% Append an explicit space token (catcode 10) to a token register.
+% This is a useful macro to have around because inlining this code directly
+% into a larger macro is harder than it seems:
+% If you write the following code but with an explicit control sequence
+% instead of |#1|, then the space immediately following the name will get
+% stripped by the \TeX{} parser.
+% But invoking the following macro with a control sequence as an argument
+% works fine, because in that case the explicit space has already been
+% tokenized when this macro was first defined and won't be stripped as it
+% is expanded.
+% \begin{macrocode*}
+\newcommand\SB@appendsp[1]{#1\expandafter{\the#1 }}
+% \end{macrocode*}
+% \end{macro}
+%
+% \begin{macro}{\SB@parsetitles}
+% \changes{v2.1}{2007/08/02}{Added}
+% Parse a list of song titles.
+% This just involves removing leading and trailing spaces from around each
+% title in the |\\|-separated list.
+% \begin{macrocode}
+\newcommand\SB@parsetitles[1]{%
+ \begingroup%
+ \global\SB@titlelist{\\}%
+ \SB@toks{}%
+ \let\\\SB@titlesep%
+ \SB@pthead#1\SB@endparse%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@pthead}
+% \begin{macro}{\SB@@pthead}
+% \begin{macro}{\SB@@@pthead}
+% While processing tokens at the head of a title, we skip over all spaces
+% until we reach a non-space token.
+% \begin{macrocode}
+\newcommand\SB@pthead{\futurelet\SB@next\SB@@pthead}
+\newcommand\SB@@pthead{%
+ \ifcat\noexpand\SB@next\@sptoken%
+ \expandafter\SB@@@pthead%
+ \else%
+ \expandafter\SB@ptmain%
+ \fi%
+}
+\newcommand\SB@@@pthead{%
+ \afterassignment\SB@pthead%
+ \let\SB@next= }
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@ptloop}
+% The iterator of the title parser loop just scans the next token.
+% \begin{macrocode}
+\newcommand\SB@ptloop{\futurelet\SB@next\SB@ptmain}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ptmain}
+% Once we've reached a non-space token in the title, we consume the remainder
+% of the title as-is, except that space tokens should be trimmed from the end
+% of each title.
+% \begin{macrocode}
+\newcommand\SB@ptmain{%
+ \ifcat\noexpand\SB@next\@sptoken%
+ \let\SB@donext\SB@ptsp%
+ \else\ifcat\noexpand\SB@next\bgroup%
+ \let\SB@donext\SB@ptbg%
+ \else\ifx\SB@next\SB@endparse%
+ \global\SB@titlelist\expandafter{\the\SB@titlelist\\}%
+ \let\SB@donext\@gobble%
+ \else\ifx\SB@next\\%
+ \SB@toks{}%
+ \def\SB@donext{\SB@ptstep\SB@pthead}%
+ \else%
+ \def\SB@donext{\SB@ptstep\SB@ptloop}%
+ \fi\fi\fi\fi%
+ \SB@donext}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ptstep}
+% Consume a non-space, non-left-brace token and add it to the current song
+% title.
+% If any spaces preceded it, add those too.
+% \begin{macrocode}
+\newcommand\SB@ptstep[2]{%
+ \global\SB@titlelist\expandafter\expandafter\expandafter{%
+ \expandafter\the\expandafter\SB@titlelist\the\SB@toks#2}%
+ \SB@toks{}%
+ #1}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ptbg}
+% The next title token is a left-brace.
+% It should be balanced, so consume the entire group and add it (along with
+% its surrounding braces) as-is to the current title.
+% \begin{macrocode}
+\newcommand\SB@ptbg[1]{\SB@ptstep\SB@ptloop{{#1}}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ptsp}
+% The next title token is a space.
+% We won't know whether to include it in the title until we see what
+% follows it.
+% Strings of spaces followed by the |\\| title-delimiter token, or that
+% conclude a title argument, should be stripped.
+% So rather than add the space token to the title, we remember it in a
+% token register for possible later inclusion.
+% \begin{macrocode}
+\newcommand\SB@ptsp{
+ \SB@appendsp\SB@toks%
+ \afterassignment\SB@ptloop%
+ \let\SB@next= }
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@titlesep}
+% While parsing song titles, we temporarily assign |\\| a non-trivial
+% top-level expansion (|\SB@titlesep|) in order to distinguish it from
+% other macros.
+% \begin{macrocode}
+\newcommand\SB@titlesep{SB@titlesep}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@endparse}
+% The |\SB@endparse| token marks the end of a token sequence being parsed.
+% If parsing works as intended, the macro should never be expanded, so
+% produce an error if it is.
+% \begin{macrocode}
+\newcommand\SB@endparse{%
+ \SB@Error{Title parsing failed}{This error should not occur.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@parsesrefs}
+% \changes{v1.14}{2005/05/15}{Added}
+% Assign the |\songrefs| macro a processed version of a scripture reference in
+% which the following adjustments have been made:
+% (1)~Spaces not preceded by a comma or semicolon are made non-breaking.
+% For example, |2 John 1:1| and |Song of Solomon 1:1| become |2~John~1:1| and
+% |Song~of~Solomon~1:1|, respectively.
+% (2)~Spaces between a semicolon and a book name are lengthened to en-spaces.
+% (3)~Single hyphens are lengthened to en-dashes (|--|).
+% (4)~Non-breaking, thin spaces are appended to commas not followed by a
+% space. For example |John 3:16,17| becomes |John~3:16,\nobreak\thinspace17|.
+% (5)~Everything within an explicit group is left unchanged, allowing the
+% user to suppress all of the above as desired.
+%
+% To achieve this, we must change all commas, hyphens, and spaces
+% in the scripture reference into active characters.
+% Unfortunately, the catcodes of everything in the text were set back when
+% the full keyval list was digested as an argument to |\beginsong|, so we
+% must unset and reset the catcodes.
+% One obvious solution is to use |\scantokens| from $\varepsilon$-\TeX{} to
+% do this, but that doesn't allow us to suppress the re-catcoding process
+% within groups, and we'd like to avoid intoducing features that require
+% $\varepsilon$-\TeX{} anyway for compatibility reasons.
+% Therefore, we build the following small scanner instead.
+%
+% The scanner walks through the text token by token, replacing each important
+% token by its active equivalent.
+% No character codes are modified during this process and no tokens are
+% inserted because some of these tokens might end up being arguments to
+% multi-byte unicode character macros rather than being expanded directly.
+% The |inputenc| package only cares about the character codes, not the
+% category codes, so modifying only the category codes should be safe.
+% \begin{macrocode}
+\newcommand\SB@parsesrefs[1]{%
+ \begingroup%
+ \SB@toks{\begingroup\SB@sractives}%
+ \SB@prloop#1\SB@endparse%
+ \xdef\songrefs{\the\SB@toks\endgroup}%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@prloop}
+% \begin{macro}{\SB@prstep}
+% \begin{macro}{\SB@@prstep}
+% The main loop of the scripture reference scanner identifies each space,
+% hyphen, and comma for special treatment.
+% \begin{macrocode}
+\newcommand\SB@prloop{\futurelet\SB@next\SB@prstep}
+\newcommand\SB@prstep{%
+ \ifcat\noexpand\SB@next A%
+ \expandafter\SB@prcpy%
+ \else%
+ \expandafter\SB@@prstep%
+ \fi%
+}
+\newcommand\SB@@prstep{%
+ \ifcat\noexpand\SB@next\@sptoken%
+ \let\SB@donext\SB@prspace%
+ \else\ifx\SB@next-%
+ \let\SB@donext\SB@prhyphen%
+ \else\ifx\SB@next,%
+ \let\SB@donext\SB@prcomma%
+ \else\ifx\SB@next\SB@endparse%
+ \let\SB@donext\@gobble%
+ \else\ifcat\noexpand\SB@next\bgroup%
+ \let\SB@donext\SB@prgr%
+ \else%
+ \let\SB@donext\SB@prcpy%
+ \fi\fi\fi\fi\fi%
+ \SB@donext%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@prcpy}
+% \begin{macro}{\SB@prgr}
+% Anything that isn't one of the special tokens above, and anything in a
+% group, is copied without modification.
+% \begin{macrocode}
+\newcommand\SB@prcpy[1]{\SB@toks\expandafter{\the\SB@toks#1}\SB@prloop}
+\newcommand\SB@prgr[1]{\SB@toks\expandafter{\the\SB@toks{#1}}\SB@prloop}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+
+% \begin{macro}{\SB@prcomma}
+% \begin{macro}{\SB@prhyphen}
+% Commas and hyphens are replaced with active equivalents.
+% \begin{macrocode}
+\newcommand\SB@prcomma[1]{}
+{\catcode`,\active
+ \gdef\SB@prcomma#1{\SB@toks\expandafter{\the\SB@toks,}\SB@prloop}}
+\newcommand\SB@prhyphen[1]{}
+{\catcode`-\active
+ \gdef\SB@prhyphen#1{\SB@toks\expandafter{\the\SB@toks-}\SB@prloop}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@prspace}
+% \begin{macro}{\SB@@prspace}
+% Spaces are made active as well, but doing so requires some
+% specialized code since they cannot be consumed as implicit macro arguments.
+% \begin{macrocode*}
+\newcommand\SB@prspace[1]{}
+{\obeyspaces
+\gdef\SB@prspace{\SB@toks\expandafter{\the\SB@toks }\SB@@prspace}}
+% \end{macrocode*}
+% \begin{macrocode}
+\newcommand\SB@@prspace{\afterassignment\SB@prloop\let\SB@temp= }
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+
+% \begin{macro}{\SB@sractives}
+% Assign macro definitions to active commas, hyphens, spaces, and returns
+% when the token list generated by |\SB@parsesrefs| is used to typeset a
+% scripture reference list.
+% \begin{macrocode*}
+\newcommand\SB@sractives{}
+{\catcode`,\active\catcode`-\active\obeyspaces%
+\gdef\SB@sractives{%
+\let,\SB@srcomma\let-\SB@srhyphen\let \SB@srspace%
+\SB@srspacing}%
+}
+% \end{macrocode*}
+% \end{macro}
+%
+% \begin{macro}{\SB@srspacing}
+% The space factors of semicolons and commas are what the active spaces
+% within a scripture reference text use to decide what came before.
+% The following sets them to their default values in case they have been
+% changed, but sets all other space factors to 1000.
+% \begin{macrocode}
+\newcommand\SB@srspacing{%
+ \nonfrenchspacing\sfcode`\;=1500\sfcode`\,=1250\relax%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@srcomma}
+% \begin{macro}{\SB@@srcomma}
+% Commas not already followed by whitespace are appended with a thin,
+% non-breaking space.
+% \begin{macrocode}
+\newcommand\SB@srcomma{,\futurelet\SB@next\SB@@srcomma}
+\newcommand\SB@@srcomma{%
+ \ifx\SB@next\SB@srspace\else%
+ \nobreak\thinspace%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@srhyphen}
+% \begin{macro}{\SB@@srhyphen}
+% \begin{macro}{\SB@srdash}
+% \begin{macro}{\SB@@srdash}
+% Hyphens that are not already part of a ligature (an en- or em-dash)
+% become en-dashes.
+% \begin{macrocode}
+\newcommand\SB@srhyphen{\futurelet\SB@next\SB@@srhyphen}
+\newcommand\SB@@srhyphen{%
+ \ifx\SB@next\SB@srhyphen\expandafter\SB@srdash\else--\fi%
+}
+\newcommand\SB@srdash[1]{\futurelet\SB@next\SB@@srdash}
+\newcommand\SB@@srdash{%
+ \ifx\SB@next\SB@srhyphen---\expandafter\@gobble\else--\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@srspace}
+% \begin{macro}{\SB@@srspace}
+% To compress consecutive whitespace, we ignore spaces
+% immediately followed by more whitespace.
+% Spaces not preceded by a semicolon or comma become non-breaking.
+% Most spaces following a semicolon become en-spaces with favorable
+% breakpoints, but a special case arises for spaces between a semicolon
+% and a digit (see |\SB@srcso| below).
+% \begin{macrocode}
+\newcommand\SB@srspace{\futurelet\SB@next\SB@@srspace}
+\newcommand\SB@@srspace{%
+ \let\SB@donext\relax%
+ \ifx\SB@next\SB@srspace\else%
+ \ifnum\spacefactor>\@m%
+ \ifnum\spacefactor>1499 %
+ \ifcat\noexpand\SB@next0%
+ \let\SB@donext\SB@srcso%
+ \else%
+ \penalty-5\enskip%
+ \fi%
+ \else%
+ \space%
+ \fi%
+ \else%
+ \nobreak\space%
+ \fi%
+ \fi%
+ \SB@donext%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@srcso}
+% \begin{macro}{\SB@@srcso}
+% A space between a semicolon and a digit could be within a list of
+% verse references for a common book (e.g., |Job 1:1; 2:2|);
+% or it could separate the previous book from a new book whose name
+% starts with a number (e.g., |Job 1:1; 1 John 1:1|).
+% In the former case, we should just use a regular space;
+% but in the latter case we should be using an en-space with a
+% favorable breakpoint.
+% To distinguish between the two, we peek ahead at the next two tokens.
+% If the second one is a space, assume the latter; otherwise assume the
+% former.
+% \begin{macrocode}
+\newcommand\SB@srcso[1]{\futurelet\SB@temp\SB@@srcso}
+\newcommand\SB@@srcso{%
+ \ifx\SB@temp\SB@srspace%
+ \penalty-5\enskip%
+ \else%
+ \space%
+ \fi%
+ \SB@next%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Verses and Choruses}
+%
+% The following programming typesets song contents, including verses, choruses,
+% and textual notes.
+%
+% \begin{macro}{\ifSB@stanza}
+% The following conditional remembers if we've seen any stanzas yet in the
+% current song.
+% \begin{macrocode}
+\newif\ifSB@stanza
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@stanzabreak}
+% \changes{v1.12}{2005/05/10}{Fixed stanza counting code and improved spacing}
+% End this song stanza and start a new one.
+% \begin{macrocode}
+\newcommand\SB@stanzabreak{%
+ \ifhmode\par\fi%
+ \ifSB@stanza%
+ \SB@breakpoint{%
+ \ifSB@inverse%
+ \ifSB@prevverse\vvpenalty\else\cvpenalty\fi%
+ \else%
+ \ifSB@prevverse\vcpenalty\else\ccpenalty\fi%
+ \fi%
+ }%
+ \vskip\versesep%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@breakpoint}
+% Insert a valid breakpoint into the vertical list comprising a song.
+% \begin{macrocode}
+\newcommand\SB@breakpoint[1]{%
+ \begingroup%
+ \ifnum#1<\@M%
+ \SB@skip\colbotglue\relax%
+ \SB@skip-\SB@skip%
+ \else%
+ \SB@skip\z@skip%
+ \fi%
+ \advance\SB@skip\lastskip%
+ \unskip%
+ \nobreak%
+ \ifnum#1<\@M%
+ \vskip\colbotglue\relax%
+ \penalty#1%
+ \fi%
+ \vskip\SB@skip%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@putbox}
+% Unbox a vbox and follow it by vertical glue if its depth is unusually
+% shallow.
+% This ensures that verses and choruses will look equally spaced even if
+% one of them has a final line with no descenders.
+% \begin{macrocode}
+\newcommand\SB@putbox[2]{%
+ \begingroup%
+ \SB@dimen\dp#2%
+ #1#2%
+ \setbox\SB@box\hbox{{\lyricfont\relax p}}%
+ \ifdim\SB@dimen<\dp\SB@box%
+ \advance\SB@dimen-\dp\SB@box%
+ \vskip-\SB@dimen%
+ \fi%
+ \setbox\SB@box\box\voidb@x%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@obeylines}
+% Within verses and choruses we would like to use |\obeylines| so that each
+% \Meta{return} in the source file ends a paragraph without having to say
+% |\par| explicitly.
+% The \LaTeX{} base code establishes the convention that short-term changes to
+% |\par| will restore |\par| by setting it equal to |\@par|.
+% Long-term (i.e., environment-long) changes to |\par| should therefore
+% redefine |\@par| to restore the desired long-term definition.
+% The following code starts a long-term redefinition of |\par| adhering to
+% these conventions, and extends that definition to \Meta{return} as well.
+% \begin{macrocode}
+\newcommand\SB@obeylines{%
+ \let\par\SB@par%
+ \obeylines%
+ \let\@par\SB@@par%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@par}
+% The following replacement definition of |\par| constructs paragraphs in
+% which page-breaks are disallowed, since no wrapped line in a song should
+% span a page- or column-break.
+% It then inserts an interlinepenalty after the paragraph so that such
+% penalties will appear between consecutive lines in each verse.
+% (Note: The |\endgraf| macro must not be uttered within a local group
+% since this prevents parameters like |\hangindent| from being
+% reset at the conclusion of each paragraph.)
+% \begin{macrocode}
+\newcommand\SB@par{%
+ \ifhmode%
+ \SB@cnt\interlinepenalty%
+ \interlinepenalty\@M%
+ \endgraf%
+ \interlinepenalty\SB@cnt%
+ \ifSB@inchorus%
+ \ifdim\cbarwidth>\z@\nobreak\else\SB@ilpenalty\fi%
+ \else%
+ \SB@ilpenalty%
+ \fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ilpenalty}
+% By default, breaking a vertical list between paragraphs incurs a penalty
+% of zero.
+% Thus, we only insert an explicit penalty between lines if
+% |\interlinepenalty| is non-zero.
+% This avoids cluttering the vertical list with superfluous zero penalties.
+% \begin{macrocode}
+\newcommand\SB@ilpenalty{%
+ \ifnum\interlinepenalty=\z@\else%
+ \penalty\interlinepenalty%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@@par}
+% This replacement definition of |\@par| restores the |\SB@par| definition of
+% |\par| and then ends the paragraph.
+% \begin{macrocode}
+\newcommand\SB@@par{\let\par\SB@par\par}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@parindent}
+% \changes{v1.12}{2005/05/10}{Added}
+% Reserve a length to remember the current |\parindent|.
+% \begin{macrocode}
+\SB@newdimen\SB@parindent
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@everypar}
+% Reserve a control sequence to hold short-term changes to |\everypar|.
+% \begin{macrocode}
+\newcommand\SB@everypar{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@raggedright}
+% \changes{v1.12}{2005/05/10}{Added}
+% Perform |\raggedright| except don't nuke the |\parindent|.
+% \begin{macrocode}
+\newcommand\SB@raggedright{%
+ \SB@parindent\parindent%
+ \raggedright%
+ \parindent\SB@parindent%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\vnumbered}
+% \changes{v2.1}{2007/08/02}{Renamed.}
+% The following conditional remembers whether this verse is being numbered
+% or not (i.e., it distinguishes between |\beginverse| and |\beginverse*|).
+% \begin{macrocode}
+\newif\ifvnumbered
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@prevverse}
+% Reserve a conditional to remember if the previous block in this song was
+% a verse.
+% \begin{macrocode}
+\newif\ifSB@prevverse
+% \end{macrocode}
+% \end{macro}
+%
+% Before replacing the little-used |verse| environment with a new one,
+% issue a warning if the current definition of |\verse| is not the
+% \LaTeX-default one.
+% This may indicate a package clash.
+% \begin{macrocode}
+\CheckCommand\verse{%
+ \let\\\@centercr%
+ \list{}{%
+ \itemsep\z@%
+ \itemindent-1.5em%
+ \listparindent\itemindent%
+ \rightmargin\leftmargin%
+ \advance\leftmargin1.5em%
+ }%
+ \item\relax%
+}
+% \end{macrocode}
+%
+% \begin{environment}{verse}\MainEnvImpl{verse}
+% \begin{environment}{verse*}
+% \begin{macro}{\beginverse}
+% Begin a new verse.
+% This can be done by beginning a |verse| environment or by using the
+% |\beginverse| macro.
+% The latter must check for a trailing star to determine whether this
+% verse should be numbered.
+% We use |\@ifstar| to scan ahead for the star, but this needs to be done
+% carefully because while scanning we might encounter tokens that
+% should be assigned different catcodes once the verse really begins.
+% Thus, we temporarily invoke |\SB@loadactives| for the duration of
+% |\@ifstar| so that everything gets the right catcode.
+% \begin{macrocode}
+\renewenvironment{verse}
+ {\vnumberedtrue\SB@beginverse}
+ {\SB@endverse}
+\newenvironment{verse*}
+ {\vnumberedfalse\SB@beginverse}
+ {\SB@endverse}
+\newcommand\beginverse{%
+ \begingroup%
+ \SB@loadactives%
+ \@ifstar{\endgroup\vnumberedfalse\SB@beginverse}%
+ {\endgroup\vnumberedtrue\SB@beginverse}%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{environment}
+% \end{environment}
+%
+% \begin{macro}{\SB@beginverse}
+% \changes{v1.12}{2005/05/10}{Shifted to using \cs{parindent} instead of \cs{everypar} to do indentation}
+% Start the body of a verse.
+% We begin by inserting a mark if |\repchoruses| is active and this verse
+% was preceded by a numbered verse (making this an eligible place to insert
+% a chorus later).
+%
+% Verse numbering is implemented using |\everypar| so that if there is any
+% vertical material between the |\beginverse| and the first line of the
+% verse, that material will come before the verse number.
+% Intervening horizontal material (e.g., |\textnote|) can temporarily
+% clear |\everypar| to defer the verse number until later.
+% \begin{macrocode}
+\newcommand\SB@beginverse{%
+ \ifSB@insong%
+ \ifSB@inverse\SB@errbvv\endverse\fi%
+ \ifSB@inchorus\SB@errbvc\endchorus\fi%
+ \else%
+ \SB@errbvt\beginsong{Unknown Song}%
+ \fi%
+ \ifrepchorus\ifvoid\SB@chorusbox\else%
+ \SB@gotchorustrue%
+ \ifSB@prevverse\ifvnumbered%
+ \marks\SB@cmarkclass{\SB@cmark}%
+ \fi\fi%
+ \fi\fi%
+ \SB@inversetrue%
+ \def\SB@closeall{\endverse\endsong}%
+ \SB@stanzabreak%
+ \versemark\nobreak%
+ \global\SB@stanzatrue%
+ \SB@ifempty\SB@cr@\memorize{\replay[]}%
+ \setbox\SB@box\vbox\bgroup\begingroup%
+ \ifvnumbered%
+ \protected@edef\@currentlabel{\p@versenum\theversenum}%
+ \def\SB@everypar{%
+ \setbox\SB@box\hbox{{\printversenum{\theversenum}}}%
+ \ifdim\wd\SB@box<\versenumwidth%
+ \setbox\SB@box%
+ \hbox to\versenumwidth{\unhbox\SB@box\hfil}%
+ \fi%
+ \ifchorded\vrule\@height\baselineskip\@width\z@\@depth\z@\fi%
+ \placeversenum\SB@box%
+ \gdef\SB@everypar{}%
+ }%
+ \else%
+ \def\SB@everypar{%
+ \ifchorded\vrule\@height\baselineskip\@width\z@\@depth\z@\fi%
+ \gdef\SB@everypar{}%
+ }%
+ \fi%
+ \everypar{\SB@everypar\everypar{}}%
+ \versefont\relax\SB@setbaselineskip\versejustify%
+ \SB@loadactives%
+ \SB@obeylines%
+ \penalty12345 %
+ \everyverse\relax%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@endverse}
+% End a verse.
+% This involves unboxing the verse material with |\SB@putbox|, which
+% corrects for last lines that are unusually shallow.
+% \begin{macrocode}
+\newcommand\SB@endverse{%
+ \ifSB@insong%
+ \ifSB@inverse%
+ \unpenalty%
+ \endgroup\egroup%
+ \SB@putbox\unvbox\SB@box%
+ \SB@inversefalse%
+ \def\SB@closeall{\endsong}%
+ \ifvnumbered\stepcounter{versenum}\fi%
+ \SB@prevversetrue%
+ \else\ifSB@inchorus\SB@errevc\endchorus%
+ \else\SB@errevo\fi\fi%
+ \else%
+ \SB@errevt%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@chorustop}
+% When a chorus is broken in to several pieces by column-breaks (via |\brk|),
+% the following conditional remembers whether the current piece is the
+% topmost one for this chorus.
+% \begin{macrocode}
+\newif\ifSB@chorustop
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chorusbox}
+% When |\repchoruses| is used, the first sequence of consecutive choruses
+% is remembered in the following box register.
+% \begin{macrocode}
+\SB@newbox\SB@chorusbox
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@gotchorus}
+% The following conditional remembers whether we've completed storing the
+% first block of consecutive choruses.
+% \begin{macrocode}
+\newif\ifSB@gotchorus
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@cmarkclass}
+% \begin{macro}{\SB@nocmarkclass}
+% \changes{v2.6}{2008/02/14}{Added safe allocation of extended mark registers}
+% The |\repeatchoruses| feature requires the use of two extended mark
+% classes provided by $\varepsilon$-\TeX.
+% We use the |\newmarks| macro to allocate these classes, if it's
+% available.
+% If |\newmarks| doesn't exist, then that means the user has an
+% $\varepsilon$-\TeX{} compatible version of \LaTeX, but no |etex| style
+% file to go with it;
+% we just have to pick two mark classes and hope that nobody else is
+% using them.
+% \begin{macrocode}
+\ifSB@etex
+ \@ifundefined{newmarks}{
+ \@ifundefined{newmark}{
+ \mathchardef\SB@cmarkclass83
+ \mathchardef\SB@nocmarkclass84
+ }{
+ \newmark\SB@cmarkclass
+ \newmark\SB@nocmarkclass
+ }
+ }{
+ \newmarks\SB@cmarkclass
+ \newmarks\SB@nocmarkclass
+ }
+\fi
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@cmark}
+% \begin{macro}{\SB@lastcmark}
+% \begin{macro}{\SB@nocmark}
+% To determine where choruses should be inserted when |\repchoruses| is
+% active, three kinds of marks are inserted into song boxes:
+% |\SB@cmark| is used to mark places where a chorus might be inserted between
+% verses, and |\SB@lastcmark| marks a place where a chorus might be inserted
+% after the last verse of the song.
+% Both marks are $\varepsilon$-\TeX{} marks of class |\SB@cmarkclass|,
+% to avoid disrupting the use of standard \TeX{} marks.
+% Each time a chorus is automatically inserted, |\SB@nocmark| is inserted
+% with mark class |\SB@nocmarkclass| just above it (and at the top of each
+% additional page it spans).
+% This inhibits future chorus inserts until the already-inserted chorus has
+% been fully committed to the output file.
+% Otherwise some choruses could get auto-inserted multiple times at the same
+% spot, possibly even leading to an infinite loop!
+% \begin{macrocode}
+\newcommand*\SB@cmark{SB@cmark}
+\newcommand*\SB@lastcmark{SB@lastcmark}
+\newcommand*\SB@nocmark{SB@nocmark}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{environment}{chorus}\MainEnvImpl{chorus}
+% \begin{macro}{\beginchorus}
+% \changes{v1.12}{2005/05/10}{Shifted to using \cs{parindent} instead of \cs{everypar} to do indentation}
+% \changes{v1.14}{2005/05/15}{Choruses now stretch like the verses}
+% Start a new chorus.
+% If |\repchoruses| is active and this is part of the first set of consecutive
+% choruses in the song, then include it and its preceding vertical material
+% in the |\SB@chorusbox| for possible later duplication elsewhere.
+% \begin{macrocode}
+\newenvironment{chorus}{\beginchorus}{\SB@endchorus}
+\newcommand\beginchorus{%
+ \ifSB@insong
+ \ifSB@inverse\SB@errbcv\endverse\fi%
+ \ifSB@inchorus\SB@errbcc\endchorus\fi%
+ \else%
+ \SB@errbct\beginsong{Unknown Song}%
+ \fi%
+ \SB@inchorustrue%
+ \def\SB@closeall{\endchorus\endsong}%
+ \SB@chorustoptrue%
+ \vnumberedfalse%
+ \SB@stanzabreak%
+ \chorusmark%
+ \ifrepchorus%
+ \ifSB@gotchorus\else\ifSB@prevverse\else%
+ \global\setbox\SB@chorusbox\vbox{%
+ \unvbox\SB@chorusbox%
+ \SB@stanzabreak%
+ \chorusmark%
+ }%
+ \fi\fi%
+ \fi%
+ \global\SB@stanzatrue%
+ \replay[]%
+ \SB@@beginchorus%
+ \everychorus\relax%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{environment}
+%
+% \begin{macro}{\SB@@beginchorus}
+% Begin the body of a chorus, or continue the body of a chorus after |\brk|
+% has paused it to insert a valid breakpoint.
+% We insert an empty class-|\SB@cmarkclass| mark here so that this chorus
+% will not be duplicated elsewhere on the same page(s) where it initially
+% appears.
+% \begin{macrocode}
+\newcommand\SB@@beginchorus{%
+ \ifrepchorus\marks\SB@cmarkclass{}\fi%
+ \setbox\SB@box\vbox\bgroup\begingroup%
+ \ifchorded%
+ \def\SB@everypar{%
+ \vrule\@height\baselineskip\@width\z@\@depth\z@%
+ \gdef\SB@everypar{}%
+ }%
+ \everypar{\SB@everypar\everypar{}}%
+ \fi%
+ \chorusfont\relax\SB@setbaselineskip\chorusjustify%
+ \SB@loadactives%
+ \SB@obeylines%
+ \penalty12345 %
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@endchorus}
+% End a chorus.
+% This involves creating the vertical line to the left of the chorus and then
+% unboxing the chorus material that was previously accumulated.
+% \begin{macrocode}
+\newcommand\SB@endchorus{%
+ \ifSB@insong%
+ \ifSB@inchorus%
+ \unpenalty%
+ \endgroup\egroup%
+ \SB@inchorusfalse%
+ \def\SB@closeall{\endsong}%
+ \setbox\SB@box\vbox{%
+ \SB@chorusbar\SB@box%
+ \SB@putbox\unvbox\SB@box%
+ }
+ \ifrepchorus\ifSB@gotchorus\else%
+ \global\setbox\SB@chorusbox\vbox{%
+ \unvbox\SB@chorusbox%
+ \unvcopy\SB@box%
+ }%
+ \fi\fi%
+ \unvbox\SB@box%
+ \SB@prevversefalse%
+ \else\ifSB@inverse\SB@errecv\endverse%
+ \else\SB@erreco\fi\fi%
+ \else%
+ \SB@errect%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@cbarshift}
+% Increase |\leftskip| to accommodate the chorus bar, if any.
+% \begin{macrocode}
+\newcommand\SB@cbarshift{%
+ \ifSB@inchorus\ifdim\cbarwidth>\z@%
+ \advance\leftskip\cbarwidth%
+ \advance\leftskip5\p@\relax%
+ \fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chorusbar}
+% Create the vertical bar that goes to the left of a chorus.
+% Rather than boxing up the chorus in order to put the bar to the left,
+% the bar is introduced as leaders directly into the vertical list of the
+% main song box.
+% This allows it to stretch and shrink when a column is typeset by the
+% page-builder.
+% \begin{macrocode}
+\newcommand\SB@chorusbar[1]{%
+ \ifdim\cbarwidth>\z@%
+ \SB@dimen\ht#1%
+ \SB@dimenii\dp#1%
+ \advance\SB@dimen%
+ \ifSB@chorustop\ifchorded\else2\fi\fi\SB@dimenii%
+ \SB@skip\SB@dimen\relax%
+ \SB@computess\SB@skip1\@plus#1%
+ \SB@computess\SB@skip{-1}\@minus#1%
+ \nointerlineskip\null\nobreak%
+ \leaders\vrule\@width\cbarwidth\vskip\SB@skip%
+ \ifSB@chorustop\ifchorded\else%
+ \advance\SB@skip-\SB@dimenii%
+ \fi\fi%
+ \nobreak\vskip-\SB@skip%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@computess}
+% \changes{v1.14}{2005/05/15}{Added}
+% This computes the stretchability or shrinkability of a vbox and stores
+% the result in the skip register given by \argp{1}.
+% If $\argp{2}=1$ and \argp{3} is ``\texttt{plus}'', then the stretchability
+% of box \argp{4} is added to the plus component of \argp{1}.
+% If $\argp{2}=-1$ and \argp{3} is ``\texttt{minus}'', then the shrinkability
+% of the box is added to the minus component of \argp{1}.
+% If the stretchability or shrinkability is infinite, then we guess 1fil
+% for that component.
+% \begin{macrocode}
+\newcommand\SB@computess[4]{%
+ \begingroup%
+ \vbadness\@M\vfuzz\maxdimen%
+ \SB@dimen4096\p@%
+ \setbox\SB@box\vbox spread#2\SB@dimen{\unvcopy#4}%
+ \ifnum\badness=\z@%
+ \global\advance#1\z@#31fil\relax%
+ \else%
+ \SB@dimenii\SB@dimen%
+ \loop%
+ \SB@dimenii.5\SB@dimenii%
+ \ifnum\badness<100 %
+ \advance\SB@dimen\SB@dimenii%
+ \else
+ \advance\SB@dimen-\SB@dimenii%
+ \fi%
+ \setbox\SB@box\vbox spread#2\SB@dimen{\unvcopy#4}%
+ \ifnum\badness=100 \SB@dimenii\z@\fi%
+ \ifdim\SB@dimenii>.1\p@\repeat%
+ \ifdim\SB@dimen<.1\p@\SB@dimen\z@\fi%
+ \global\advance#1\z@#3\SB@dimen\relax%
+ \fi%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\brk}\MainImpl{brk}
+% Placing |\brk| within a line in a verse or chorus tells \TeX{} to break the
+% line at that point (if it needs to be broken at all).
+%
+% Placing |\brk| on a line by itself within a chorus stops the chorus (and its
+% vertical bar), inserts a valid breakpoint, and then restarts the chorus
+% with no intervening space so that if the breakpoint isn't used, there will
+% be no visible effect.
+% Placing it on a line by itself within a verse just inserts a breakpoint.
+%
+% Placing |\brk| between songs forces a column- or page-break, but only if
+% generating a non-partial list of songs.
+% When generating a partial list, |\brk| between songs is ignored.
+% \begin{macrocode}
+\newcommand\brk{%
+ \ifSB@insong%
+ \ifhmode\penalty-5 \else%
+ \unpenalty%
+ \ifSB@inchorus%
+ \ifdim\cbarwidth=\z@%
+ \ifrepchorus\marks\SB@cmarkclass{}\fi%
+ \SB@breakpoint\brkpenalty%
+ \else%
+ \endgroup\egroup%
+ \ifrepchorus\ifSB@gotchorus\else%
+ \global\setbox\SB@chorusbox\vbox{%
+ \unvbox\SB@chorusbox%
+ \SB@chorusbar\SB@box%
+ \unvcopy\SB@box%
+ \SB@breakpoint\brkpenalty%
+ }%
+ \fi\fi%
+ \SB@chorusbar\SB@box%
+ \unvbox\SB@box%
+ \SB@breakpoint\brkpenalty%
+ \SB@chorustopfalse%
+ \SB@@beginchorus%
+ \fi%
+ \else%
+ \SB@breakpoint\brkpenalty%
+ \fi%
+ \fi%
+ \else%
+ \ifpartiallist\else\SB@nextcol\@ne\colbotglue\fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@boxup}
+% Typeset a shaded box containing a textual note to singers or musicians.
+% We first try typesetting the note on a single line.
+% If it's too big, then we try again in paragraph mode with full
+% justification.
+% \begin{macrocode}
+\newcommand\SB@boxup[1]{%
+ \setbox\SB@box\hbox{{\notefont\relax#1}}%
+ \SB@dimen\wd\SB@box%
+ \advance\SB@dimen6\p@%
+ \advance\SB@dimen\leftskip%
+ \advance\SB@dimen\rightskip%
+ \ifdim\SB@dimen>\hsize%
+ \vbox{{%
+ \advance\hsize-6\p@%
+ \advance\hsize-\leftskip%
+ \advance\hsize-\rightskip%
+ \notejustify%
+ \unhbox\SB@box\par%
+ \kern\z@%
+ }}%
+ \else%
+ \vbox{\box\SB@box\kern\z@}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\textnote}\MainImpl{textnote}
+% \changes{v1.12}{2005/05/10}{Defined unset paragraph parameters}
+% Create a textual note for singers and musicians.
+% If the note begins a verse or chorus, it should not be preceded by any
+% spacing.
+% Verses and choruses begin with the sentinel penalty 12345, so we check
+% |\lastpenalty| to identify this case.
+% When typesetting the note, we must be sure to temporarily clear |\everypar|
+% to inhibit any verse numbering that might be pending.
+% We also readjust the |\baselineskip| as if we weren't doing chords, since
+% no chords go above a textual note.
+% \begin{macrocode}
+\newcommand\textnote[1]{%
+ \ifhmode\par\fi%
+ \ifnum\lastpenalty=12345\else%
+ \ifSB@inverse%
+ \vskip2\p@\relax%
+ \else\ifSB@inchorus%
+ \vskip2\p@\relax%
+ \else\ifSB@stanza%
+ \nobreak\vskip\versesep%
+ \fi\fi\fi%
+ \fi%
+ \begingroup%
+ \everypar{}%
+ \ifchorded\chordedfalse\SB@setbaselineskip\chordedtrue\fi%
+ \placenote{\SB@colorbox\notebgcolor{\SB@boxup{#1}}}%
+ \endgroup%
+ \nobreak%
+ \ifSB@inverse%
+ \vskip2\p@\relax%
+ \else\ifSB@inchorus%
+ \vskip2\p@\relax%
+ \else\ifSB@stanza\else%
+ \nobreak\vskip\versesep%
+ \fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\musicnote}\MainImpl{musicnote}
+% \changes{v1.12}{2005/05/10}{Now just (conditionally) calls \cs{textnote} for consistency}
+% Create a textual note for musicians.
+% \begin{macrocode}
+\newcommand\musicnote[1]{\ifchorded\textnote{#1}\fi}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\echo}\MainImpl{echo}
+% \begin{macro}{\SB@echo}
+% \begin{macro}{\SB@@echo}
+% \changes{v1.21}{2006/09/17}{Customized fonts now preserved.}
+% \changes{v2.1}{2007/08/02}{Toggles instead of forces slanted font.}
+% Typeset an echo part in the lyrics.
+% Echo parts are in a user-customizable font and parenthesized.
+%
+% The |\echo| macro must be able to accept chords in its argument.
+% This complicates the implementation because chord macros should change
+% catcodes, but if we grab |\echo|'s argument in the usual way then all the
+% catcodes will be set before the chord macros have a chance to change them.
+% This would disallow chord name abbreviations like |#| and |&| within
+% |\echo| parts.
+%
+% If we're using $\varepsilon$-\TeX{} then the solution is easy: we use
+% |\scantokens| to re-scan the argument and thereby re-assign the catcodes.
+% (One subtlety: Whenever \LaTeX{} consumes an argument to a macro, it changes
+% |#| to |##| so that when the argument text is substituted into the body of
+% the macro, the replacement text will not contain unsubstituted parameters
+% (such as |#1|).
+% If |\scantokens| is used on the replacement text and the scanned tokens
+% assign a new catcode to |#|, that causes |#|'s to be doubled in the
+% \emph{output}, which was not the intent.
+% To avoid this problem, we use |\@sanitize| before consuming the argument to
+% |\echo|, which sets the catcodes of most special tokens (including |#|) to
+% 12, so that \LaTeX{} will not recognize any of them as parameters and will
+% therefore not double any of them.)
+% \begin{macrocode}
+\ifSB@etex
+ \newcommand\echo{\begingroup\@sanitize\SB@echo}
+ \newcommand\SB@echo[1]{%
+ \endgroup%
+ \begingroup%
+ \echofont\relax%
+ \endlinechar\m@ne%
+ \scantokens{(#1)}%
+ \endgroup%
+ }
+\else
+% \end{macrocode}
+% If we're not using $\varepsilon$-\TeX, we must do something more complicated.
+% We set up the appropriate font within a local group and finish with
+% |\hbox| so that the argument to |\echo| is treated as the body of the box.
+% Control is reacquired after the box using |\aftergroup|, whereupon we
+% unbox the box and insert the closing parenthesis.
+% This almost works except that if the last thing in an echo part is a long
+% chord name atop a short lyric, the closing parenthesis will float out away
+% from the lyric instead of being sucked under the chord.
+% I can find no solution to this problem, so to avoid it users must find a
+% version of \LaTeX{} that is $\varepsilon$-\TeX{} compatible.
+% \begin{macrocode}
+ \newcommand\echo{%
+ \begingroup%
+ \echofont\relax%
+ \afterassignment\SB@echo%
+ \setbox\SB@box\hbox%
+ }
+ \newcommand\SB@echo{\aftergroup\SB@@echo(}
+ \newcommand\SB@@echo{\unhbox\SB@box)\endgroup}
+\fi
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\rep}\MainImpl{rep}
+% \changes{v1.21}{2006/09/17}{Changed to avoid math mode.}
+% Place |\rep{|\Meta{n}|}| at the end of a line to indicate that it should be
+% sung \Meta{n} times.
+% \begin{macrocode}
+\newcommand\rep[1]{%
+ (\raise.25ex\hbox{%
+ \fontencoding{OMS}\fontfamily{cmsy}\selectfont\char\tw@%
+ }#1)%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Scripture Quotations}
+%
+% The macros in this section typeset scripture quotations and other
+% between-songs environments.
+%
+% \begin{environment}{songgroup}\MainEnvImpl{songgroup}
+% A |songgroup| environment associates all enclosed environments
+% with the enclosed song.
+% When generating a partial list, all the enclosed environments are
+% contributed if and only if the enclosed song is contributed.
+% \begin{macrocode}
+\newenvironment{songgroup}{%
+ \ifnum\SB@grouplvl=\z@%
+ \edef\SB@sgroup{\thesongnum}%
+ \global\SB@groupcnt\m@ne%
+ \fi%
+ \advance\SB@grouplvl\@ne%
+}{%
+ \advance\SB@grouplvl\m@ne%
+ \ifnum\SB@grouplvl=\z@\let\SB@sgroup\@empty\fi%
+}
+% \end{macrocode}
+% \end{environment}
+%
+% \begin{macro}{\SB@grouplvl}
+% Count the |songgroup| environment nesting depth.
+% \begin{macrocode}
+\SB@newcount\SB@grouplvl
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{environment}{intersong}\MainEnvImpl{intersong}
+% An intersong block contributes vertical material to a column between the
+% songs of a songs section.
+% It is subject to the same column-breaking algorithm as real songs, but
+% receives none of the other formatting applied to songs.
+% \begin{macrocode}
+\newenvironment{intersong}{%
+ \ifSB@insong\SB@errbro\SB@closeall\fi%
+ \ifSB@intersong\SB@errbrr\SB@closeall\fi%
+ \setbox\SB@chorusbox\box\voidb@x%
+ \SB@intersongtrue%
+ \def\SB@closeall{\end{intersong}}%
+ \setbox\SB@songbox\vbox\bgroup\begingroup%
+ \ifnum\SB@numcols>\z@\hsize\SB@colwidth\fi%
+ \ifdim\sbarheight>\z@%
+ \hrule\@height\sbarheight\@width\hsize%
+ \nobreak%
+ \fi%
+}{%
+ \ifSB@intersong
+ \ifdim\sbarheight>\z@%
+ \ifhmode\par\fi%
+ \SB@skip\lastskip%
+ \unskip\nobreak\vskip\SB@skip%
+ \hbox{\vrule\@height\sbarheight\@width\hsize}%
+ \fi%
+ \endgroup\egroup%
+ \ifSB@omitscrip%
+ \setbox\SB@songbox\box\voidb@x%
+ \else%
+ \SB@submitsong%
+ \fi%
+ \SB@intersongfalse%
+ \else%
+ \ifSB@insong\SB@errero\SB@closeall\else\SB@errert\fi%
+ \fi%
+}
+% \end{macrocode}
+% The starred form contributes page-spanning vertical material directly to
+% the top of the nearest fresh page.
+% \begin{macrocode}
+\newenvironment{intersong*}{%
+ \ifSB@insong\SB@errbro\SB@closeall\fi%
+ \ifSB@intersong\SB@errbrr\SB@closeall\fi%
+ \setbox\SB@chorusbox\box\voidb@x%
+ \SB@intersongtrue%
+ \def\SB@closeall{\end{intersong*}}%
+ \setbox\SB@songbox\vbox\bgroup\begingroup%
+}{%
+ \ifSB@intersong%
+ \endgroup\egroup%
+ \ifSB@omitscrip%
+ \setbox\SB@songbox\box\voidb@x%
+ \else%
+ \def\SB@stype{\SB@styppage}%
+ \SB@submitsong%
+ \def\SB@stype{\SB@stypcol}%
+ \fi%
+ \SB@intersongfalse%
+ \else%
+ \ifSB@insong\SB@errero\SB@closeall\else\SB@errert\fi%
+ \fi%
+}
+% \end{macrocode}
+% \end{environment}
+%
+% \begin{environment}{scripture}\MainEnvImpl{scripture}
+% \begin{macro}{\beginscripture}
+% Begin a scripture quotation.
+% We first store the reference in a box for later use, and then set up
+% a suitable environment for the quotation.
+% Quotations cannot typically be reworded if line-breaking fails,
+% so we set |\emergencystretch| to a relatively high value at the outset.
+% \begin{macrocode}
+\newenvironment{scripture}{\beginscripture}{\SB@endscripture}
+\newcommand\beginscripture[1]{%
+ \begin{intersong}%
+ \SB@parsesrefs{#1}%
+ \setbox\SB@envbox\hbox{{\printscrcite\songrefs}}%
+ \def\SB@closeall{\endscripture}%
+ \nobreak\vskip5\p@%
+ \SB@parindent\parindent\parindent\z@%
+ \parskip\z@skip\parfillskip\@flushglue%
+ \leftskip\SB@parindent\rightskip\SB@parindent\relax%
+ \scripturefont\relax%
+ \baselineskip\f@size\p@\@plus\p@\relax%
+ \advance\baselineskip\p@\relax%
+ \emergencystretch.3em%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@endscripture}
+% End a scripture quotation.
+% \begin{macrocode}
+\newcommand\SB@endscripture{%
+ \ifSB@intersong
+ \scitehere%
+ \ifhmode\par\fi%
+ \vskip-3\p@%
+ \end{intersong}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{environment}
+%
+% \begin{macro}{\scitehere}\MainImpl{scitehere}
+% \changes{v2.1}{2007/08/02}{Added}
+% Usually the scripture citation should just come at the |\endscripture|
+% line, but at times the user might want to invoke this macro explicitly
+% at a more suitable point.
+% A good example is when something near the end of the scripture quotation
+% drops \TeX{} into vertical mode.
+% In such cases, it is often better to issue the citation before leaving
+% horizontal mode.
+%
+% In any case, this macro should work decently whether in horizontal or
+% vertical mode.
+% In horizontal mode life is easy: we just append the reference to the
+% current horizontal list using the classic code from p.~106 of The \TeX book.
+% However, if we're now in vertical mode, the problem is a little harder.
+% We do the best we can by using |\lastbox| to remove the last line, then
+% adding the reference and re-typesetting it.
+% This isn't as good as the horizontal mode solution because \TeX{} only
+% gets to reevaluate the last line instead of the whole paragraph, but
+% usually the results are passable.
+% \begin{macrocode}
+\newcommand\scitehere{%
+ \ifSB@intersong%
+ \ifvoid\SB@envbox\else%
+ \ifvmode%
+ \setbox\SB@box\lastbox%
+ \nointerlineskip\noindent\hskip-\leftskip%
+ \unhbox\SB@box\unskip%
+ \fi%
+ \unskip\nobreak\hfil\penalty50\hskip.8em\null\nobreak\hfil%
+ \box\SB@envbox\kern-\SB@parindent%
+ {\parfillskip\z@\finalhyphendemerits2000\par}%
+ \fi%
+ \else%
+ \SB@errscrip\scitehere%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\Acolon}\MainImpl{Acolon}
+% \begin{macro}{\Bcolon}\MainImpl{Bcolon}
+% \changes{v1.13}{2005/05/12}{Added}
+% Typeset a line of poetry in a scripture quotation.
+% \begin{macrocode}
+\newcommand\Acolon{\SB@colon2\Acolon}
+\newcommand\Bcolon{\SB@colon1\Bcolon}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@colon}
+% Begin a group of temporary definitions that will end at the next
+% \Meta{return}.
+% The \Meta{return} will end the paragraph and close the local scope.
+% \begin{macrocode}
+\newcommand\SB@colon[2]{%
+ \ifSB@intersong\else%
+ \SB@errscrip#2%
+ \beginscripture{Unknown}%
+ \fi%
+ \ifhmode\par\fi%
+ \begingroup%
+ \rightskip\SB@parindent\@plus4em%
+ \advance\leftskip2\SB@parindent%
+ \advance\parindent-#1\SB@parindent%
+ \def\par{\endgraf\endgroup}%
+ \obeylines%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\strophe}\MainImpl{strophe}
+% \changes{v1.13}{2005/05/12}{Added}
+% Insert blank space indicative of a strophe division in a scripture quotation.
+% \begin{macrocode}
+\newcommand\strophe{%
+ \ifSB@intersong\else%
+ \SB@errscrip\strophe\beginscripture{Unknown}%
+ \fi%
+ \vskip.9ex\@plus.45ex\@minus.68ex\relax%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\scripindent}\MainImpl{scripindent}
+% \begin{macro}{\scripoutdent}\MainImpl{scripoutdent}
+% \begin{macro}{\SB@scripdent}
+% \changes{v1.13}{2005/05/12}{Added}
+% Create an indented sub-block within a scripture quotation.
+% \begin{macrocode}
+\newcommand\SB@scripdent[2]{%
+ \ifSB@intersong\else%
+ \SB@errscrip#2\beginscripture{Unknown}%
+ \fi%
+ \ifhmode\par\fi%
+ \advance\leftskip#1\SB@parindent\relax%
+}
+\newcommand\scripindent{\SB@scripdent1\scripindent}
+\newcommand\scripoutdent{\SB@scripdent-\scripoutdent}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\shiftdblquotes}\MainImpl{shiftdblquotes}
+% \changes{v1.13}{2005/05/12}{Added}
+% \begin{macro}{\SB@ldqleft}
+% \begin{macro}{\SB@ldqright}
+% \begin{macro}{\SB@rdqleft}
+% \begin{macro}{\SB@rdqright}
+% \begin{macro}{\SB@scanlq}
+% \begin{macro}{\SB@scanrq}
+% \begin{macro}{\SB@dolq}
+% \begin{macro}{\SB@dorq}
+% The Zaph Chancery font used by default to typeset scripture quotations
+% seems to have some kerning problems with double-quote ligatures. The
+% |\shiftdblquotes| macro allows one to modify the spacing around all
+% double-quotes until the current group ends.
+% \begin{macrocode}
+\newcommand\SB@quotesactive{%
+ \catcode`'\active%
+ \catcode``\active%
+}
+\newcommand\shiftdblquotes[4]{}
+\newcommand\SB@ldqleft{}
+\newcommand\SB@ldqright{}
+\newcommand\SB@rdqleft{}
+\newcommand\SB@rdqright{}
+\newcommand\SB@scanlq{}
+\newcommand\SB@scanrq{}
+\newcommand\SB@dolq{}
+\newcommand\SB@dorq{}
+{
+ \SB@quotesactive
+ \gdef\shiftdblquotes#1#2#3#4{%
+ \def\SB@ldqleft{\kern#1}%
+ \def\SB@ldqright{\kern#2}%
+ \def\SB@rdqleft{\kern#3}%
+ \def\SB@rdqright{\kern#4}%
+ \SB@quotesactive%
+ \def`{\futurelet\SB@next\SB@scanlq}%
+ \def'{\futurelet\SB@next\SB@scanrq}%
+ }
+ \gdef\SB@scanlq{%
+ \ifx\SB@next`%
+ \expandafter\SB@dolq%
+ \else%
+ \expandafter\lq%
+ \fi%
+ }
+ \gdef\SB@scanrq{%
+ \ifx\SB@next'%
+ \expandafter\SB@dorq%
+ \else%
+ \expandafter\rq%
+ \fi%
+ }
+ \gdef\SB@dolq`{%
+ \ifvmode\leavevmode\else\/\fi%
+ \vadjust{}%
+ \SB@ldqleft\lq\lq\SB@ldqright%
+ \vadjust{}%
+ }
+ \gdef\SB@dorq'{%
+ \ifvmode\leavevmode\else\/\fi%
+ \vadjust{}%
+ \SB@rdqleft\rq\rq\SB@rdqright%
+ \vadjust{}%
+ }
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Transposition}
+%
+% The macros that transpose chords are contained in this section.
+%
+% \begin{macro}{\SB@transposefactor}
+% This counter identifies the requested number of halfsteps by which chords are
+% to be transposed (from $-11$ to $+11$).
+% \begin{macrocode}
+\SB@newcount\SB@transposefactor
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@convertnotes}
+% Even when transposition is not requested, the transposition logic can be
+% used to automatically convert note names to another form.
+% The following conditional turns that feature on or off.
+% \begin{macrocode}
+\newif\ifSB@convertnotes
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\notenameA}
+% \begin{macro}{\notenameB}
+% \begin{macro}{\notenameC}
+% \begin{macro}{\notenameD}
+% \begin{macro}{\notenameE}
+% \begin{macro}{\notenameF}
+% \begin{macro}{\notenameG}
+% Reserve a control sequence for each note of the diatonic scale.
+% These will be used to identify which token sequences the input file uses
+% to denote the seven scale degrees.
+% Their eventual definitions \emph{must} consist entirely of uppercase
+% letters, and they must be assigned using |\def|, but that comes later.
+% \begin{macrocode}
+\newcommand\notenameA{}
+\newcommand\notenameB{}
+\newcommand\notenameC{}
+\newcommand\notenameD{}
+\newcommand\notenameE{}
+\newcommand\notenameF{}
+\newcommand\notenameG{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\printnoteA}
+% \begin{macro}{\printnoteB}
+% \begin{macro}{\printnoteC}
+% \begin{macro}{\printnoteD}
+% \begin{macro}{\printnoteE}
+% \begin{macro}{\printnoteF}
+% \begin{macro}{\printnoteG}
+% These control sequences are what the transposition logic actually
+% outputs to denote each scale degree.
+% They can include any \LaTeX{} code that is legal in horizontal mode.
+% \begin{macrocode}
+\newcommand\printnoteA{}
+\newcommand\printnoteB{}
+\newcommand\printnoteC{}
+\newcommand\printnoteD{}
+\newcommand\printnoteE{}
+\newcommand\printnoteF{}
+\newcommand\printnoteG{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\notenamesin}\MainImpl{notenamesin}
+% Set the note names used by the input file.
+% \begin{macrocode}
+\newcommand\notenamesin[7]{%
+ \def\notenameA{#1}%
+ \def\notenameB{#2}%
+ \def\notenameC{#3}%
+ \def\notenameD{#4}%
+ \def\notenameE{#5}%
+ \def\notenameF{#6}%
+ \def\notenameG{#7}%
+ \SB@convertnotestrue%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\notenamesout}\MainImpl{notenamesout}
+% Set the note names that are output by the transposition logic.
+% \begin{macrocode}
+\newcommand\notenamesout[7]{%
+ \def\printnoteA{#1}%
+ \def\printnoteB{#2}%
+ \def\printnoteC{#3}%
+ \def\printnoteD{#4}%
+ \def\printnoteE{#5}%
+ \def\printnoteF{#6}%
+ \def\printnoteG{#7}%
+ \SB@convertnotestrue%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\notenames}\MainImpl{notenames}
+% Set an identical input name and output name for each scale degree.
+% \begin{macrocode}
+\newcommand\notenames[7]{%
+ \notenamesin{#1}{#2}{#3}{#4}{#5}{#6}{#7}%
+ \notenamesout{#1}{#2}{#3}{#4}{#5}{#6}{#7}%
+ \SB@convertnotesfalse%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\alphascale}\MainImpl{alphascale}
+% \begin{macro}{\solfedge}\MainImpl{solfedge}
+% Predefine scales for alphabetic names and solfedge names, and
+% set alphabetic scales to be the default.
+% \begin{macrocode}
+\newcommand\alphascale{\notenames ABCDEFG}
+\newcommand\solfedge{\notenames{LA}{SI}{DO}{RE}{MI}{FA}{SOL}}
+\alphascale
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@prefshrps}
+% When a transposed chord falls on a black key, the code must choose which
+% enharmonically equivalent name to give the new chord.
+% (For example, should C transposed by +1 be named C$\#$ or D$\flat$?)
+% A heuristic is used to guess which name is most appropriate.
+% The following conditional records whether the current key signature is
+% sharped or flatted according to this heuristic guess.
+% \begin{macrocode}
+\newif\ifSB@prefshrps
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@needkey}
+% The first chord seen is usually the best indicator of the key of the song.
+% (Even when the first chord isn't the tonic, it will often be the dominant
+% or subdominant, which usually has the same kind of accidental in its key
+% signatures as the actual key.) This conditional remembers whether the current
+% chord is the first one seen in the song, and should therefore be used to
+% guess the key of the song.
+% \begin{macrocode}
+\newif\ifSB@needkey
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\transpose}\MainImpl{transpose}
+% The |\transpose| macro sets the transposition adjustment factor and
+% informs the transposition logic that the next chord seen will be the first
+% one in the new key.
+% \begin{macrocode}
+\newcommand\transpose[1]{%
+ \advance\SB@transposefactor by#1\relax%
+ \SB@cnt\SB@transposefactor%
+ \divide\SB@cnt12 %
+ \multiply\SB@cnt12 %
+ \advance\SB@transposefactor-\SB@cnt%
+ \SB@needkeytrue%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\capo}\MainImpl{capo}
+% Specifying a |\capo| normally just causes a textual note to musicians to be
+% typeset, but if the |transposecapos| option is active, it activates
+% transposition of the chords.
+% \begin{macrocode}
+\newcommand\capo[1]{%
+ \iftranscapos\transpose{#1}\else\musicnote{capo #1}\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\prefersharps}\MainImpl{prefersharps}
+% \begin{macro}{\preferflats}\MainImpl{preferflats}
+% One of these macros is called after the first chord has been seen to
+% register that we're transposing to a key with a sharped or flatted key
+% signature.
+% \begin{macrocode}
+\newcommand\prefersharps{\SB@prefshrpstrue\SB@needkeyfalse}
+\newcommand\preferflats{\SB@prefshrpsfalse\SB@needkeyfalse}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\transposehere}\MainImpl{transposehere}
+% If automatic transposition has been requested, yield the given chord
+% transposed by the requested amount.
+% Otherwise return the given chord verbatim.
+% \begin{macrocode}
+\newcommand\transposehere[1]{%
+ \ifnum\SB@transposefactor=\z@%
+ \ifSB@convertnotes%
+ \SB@dotranspose{#1}%
+ \the\SB@toks%
+ \else%
+ #1%
+ \fi%
+ \else%
+ \ifSB@convertnotes%
+ {\SB@transposefactor\z@%
+ \SB@dotranspose{#1}%
+ \xdef\SB@tempv{\the\SB@toks}}%
+ \else%
+ \def\SB@tempv{#1}%
+ \fi%
+ \SB@dotranspose{#1}%
+ \expandafter\trchordformat\expandafter{\SB@tempv}{\the\SB@toks}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\notrans}\MainImpl{notrans}
+% Suppress chord transposition without suppressing note name conversion.
+% When a |\notrans{|\Meta{text}|}| macro appears within text undergoing
+% transposition, the |\notrans| macro and the group will be preserved
+% verbatim by the transposition parser.
+% When it is then expanded after parsing, we must therefore re-invoke
+% the transposition logic on the argument, but in an environment where
+% the transposition factor has been temporarily set to zero.
+% This causes note name conversion to occur without actually transposing.
+% \begin{macrocode}
+\newcommand\notrans[1]{%
+ \begingroup%
+ \SB@transposefactor\z@%
+ \transposehere{#1}%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@dotranspose}
+% Parse the argument to a chord macro, yielding the transposed equivalent in
+% the |\SB@toks| token register.
+% \begin{macrocode}
+\newcommand\SB@dotranspose[1]{%
+ \SB@toks{}%
+ \let\SB@dothis\SB@trmain%
+ \SB@trscan#1\SB@trend%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\trchordformat}\MainImpl{trchordformat}
+% By default, transposing means replacing old chords with new chords in the
+% new key. However, sometimes the user may want to typeset something more
+% sophisticated, like old chords followed by new chords in parentheses so
+% that musicians who use capos and those who don't can play from the same
+% piece of music. Such typesetting is possible by redefining the following
+% macro to something like |#1 (#2)| instead of |#2|.
+% \begin{macrocode}
+\newcommand\trchordformat[2]{#2}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trscan}
+% This is the entrypoint to the code that scans over the list of tokens
+% comprising a chord and transposes note names as it goes.
+% Start by peeking ahead at the next symbol without consuming it.
+% \begin{macrocode}
+\newcommand\SB@trscan{\futurelet\SB@next\SB@dothis}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trmain}
+% Test to see whether the token was a begin-brace, end-brace, or space.
+% These tokens require special treatment because they cannot be
+% accepted as implicit arguments to macros.
+% \begin{macrocode}
+\newcommand\SB@trmain{%
+ \ifx\SB@next\bgroup%
+ \let\SB@donext\SB@trgroup%
+ \else\ifx\SB@next\egroup%
+ \SB@toks\expandafter{\the\SB@toks\egroup}%
+ \let\SB@donext\SB@trskip%
+ \else\ifcat\noexpand\SB@next\@sptoken%
+ \SB@appendsp\SB@toks%
+ \let\SB@donext\SB@trskip%
+ \else%
+ \let\SB@donext\SB@trstep%
+ \fi\fi\fi%
+ \SB@donext%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trgroup}
+% A begin-group brace lies next in the input stream.
+% Consume the entire group as an argument to this macro, and append it,
+% including the begin- and end-group tokens, to the list of tokens processed
+% so far.
+% No transposition takes place within a group; they are copied verbatim
+% because they probably contain macro code.
+% \begin{macrocode}
+\newcommand\SB@trgroup[1]{%
+ \SB@toks\expandafter{\the\SB@toks{#1}}%
+ \SB@trscan%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trskip}
+% A space or end-brace lies next in the input stream.
+% It has already been added to the token list, so skip over it.
+% \begin{macrocode}
+\newcommand\SB@trskip{%
+ \afterassignment\SB@trscan%
+ \let\SB@next= }
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trstep}
+% A non-grouping token lies next in the input stream.
+% Consume it as an argument to this macro, and then test it to see whether
+% it's a note letter or some other recognized item.
+% If so, process it; otherwise just append it to the token list and continue
+% scanning.
+% \begin{macrocode}
+\newcommand\SB@trstep[1]{%
+ \let\SB@donext\SB@trscan%
+ \ifcat\noexpand\SB@next A%
+ \ifnum\uccode`#1=`#1%
+ \def\SB@temp{#1}%
+ \let\SB@dothis\SB@trnote%
+ \else%
+ \SB@toks\expandafter{\the\SB@toks#1}%
+ \fi%
+ \else\ifx\SB@next\SB@trend
+ \let\SB@donext\relax%
+ \else%
+ \SB@toks\expandafter{\the\SB@toks#1}%
+ \fi\fi%
+ \SB@donext%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trnote}
+% We're in the midst of processing a sequence of uppercase letters that
+% might comprise a note name.
+% Check to see whether the next token is an accidental (sharp or flat),
+% or yet another letter.
+% \begin{macrocode}
+\newcommand\SB@trnote{%
+ \ifcat\noexpand\SB@next A%
+ \let\SB@donext\SB@trnotestep%
+ \else\ifnum\SB@transposefactor=\z@%
+ \SB@cnt\z@%
+ \let\SB@donext\SB@trtrans%
+ \else\ifx\SB@next\flt%
+ \SB@cnt\m@ne%
+ \let\SB@donext\SB@tracc%
+ \else\ifx\SB@next\shrp%
+ \SB@cnt\@ne%
+ \let\SB@donext\SB@tracc%
+ \else%
+ \SB@cnt\z@%
+ \let\SB@donext\SB@trtrans%
+ \fi\fi\fi\fi%
+ \SB@donext%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trnotestep}
+% The next token is a letter.
+% Consume it and test to see whether it is an uppercase letter.
+% If so, add it to the note name being assembled; otherwise reinsert it into
+% the input stream and jump directly to the transposition logic.
+% \begin{macrocode}
+\newcommand\SB@trnotestep[1]{%
+ \ifnum\uccode`#1=`#1%
+ \SB@app\def\SB@temp{#1}%
+ \expandafter\SB@trscan%
+ \else%
+ \SB@cnt\z@%
+ \expandafter\SB@trtrans\expandafter#1%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@tracc}
+% We've encountered an accidental (sharp or flat) immediately following a
+% note name.
+% Peek ahead at the next token without consuming it, and then jump to the
+% transposition logic.
+% This is done because the transposition logic might need to infer the key
+% signature of the song, and if the next token is an m (for minor), then
+% that information can help.
+% \begin{macrocode}
+\newcommand\SB@tracc[1]{\futurelet\SB@next\SB@trtrans}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trtrans}
+% We've assembled a sequence of capital letters (in |\SB@temp|) that might
+% comprise a note name to be transposed.
+% If the letters were followed by a |\shrp| then |\SB@cnt| is 1; if they were
+% followed by a |\flt| then it is $-1$; otherwise it is 0.
+% If the assembled letters turn out to not match any valid note name, then
+% do nothing and return to scanning.
+% Otherwise compute a new transposed name.
+% \begin{macrocode}
+\newcommand\SB@trtrans{%
+ \advance\SB@cnt%
+ \ifx\SB@temp\notenameA\z@%
+ \else\ifx\SB@temp\notenameB\tw@%
+ \else\ifx\SB@temp\notenameC\thr@@%
+ \else\ifx\SB@temp\notenameD5 %
+ \else\ifx\SB@temp\notenameE7 %
+ \else\ifx\SB@temp\notenameF8 %
+ \else\ifx\SB@temp\notenameG10 %
+ \else-99 \fi\fi\fi\fi\fi\fi\fi%
+ \ifnum\SB@cnt<\m@ne%
+ \SB@toks\expandafter\expandafter\expandafter{%
+ \expandafter\the\expandafter\SB@toks\SB@temp}%
+ \else%
+ \advance\SB@cnt\SB@transposefactor%
+ \ifnum\SB@cnt<\z@\advance\SB@cnt12 \fi%
+ \ifnum\SB@cnt>11 \advance\SB@cnt-12 \fi%
+ \ifSB@needkey\ifnum\SB@transposefactor=\z@\else\SB@setkeysig\fi\fi%
+ \edef\SB@temp{%
+ \the\SB@toks%
+ \ifSB@prefshrps%
+ \ifcase\SB@cnt\printnoteA\or\printnoteA\noexpand\shrp\or%
+ \printnoteB\or\printnoteC\or\printnoteC\noexpand\shrp\or%
+ \printnoteD\or\printnoteD\noexpand\shrp\or\printnoteE\or%
+ \printnoteF\or\printnoteF\noexpand\shrp\or\printnoteG\or%
+ \printnoteG\noexpand\shrp\fi%
+ \else%
+ \ifcase\SB@cnt\printnoteA\or\printnoteB\noexpand\flt\or%
+ \printnoteB\or\printnoteC\or\printnoteD\noexpand\flt\or%
+ \printnoteD\or\printnoteE\noexpand\flt\or\printnoteE\or%
+ \printnoteF\or\printnoteG\noexpand\flt\or\printnoteG\or%
+ \printnoteA\noexpand\flt\fi%
+ \fi}%
+ \SB@toks\expandafter{\SB@temp}%
+ \fi%
+ \let\SB@dothis\SB@trmain%
+ \SB@trscan%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@setkeysig}
+% If this is the first chord of the song, assume that this is the tonic of the
+% key, and select whether to use a sharped or flatted key signature for the
+% rest of the song based on that.
+% Even if this isn't the tonic, it's probably the dominant or sub-dominant,
+% which almost always has a number of sharps or flats similar to the tonic.
+% If the bottom note of the chord turns out to be a black key, we choose the
+% enharmonic equivalent that is closest to C on the circle of fifths
+% (i.e., the one that has fewest sharps or flats).
+% \begin{macrocode}
+\newcommand\SB@setkeysig{%
+ \global\SB@needkeyfalse%
+ \ifcase\SB@cnt%
+ \global\SB@prefshrpstrue\or% A
+ \global\SB@prefshrpsfalse\or% Bb
+ \global\SB@prefshrpstrue\or% B
+ \ifx\SB@next m% C
+ \global\SB@prefshrpsfalse%
+ \else%
+ \global\SB@prefshrpstrue%
+ \fi\or%
+ \global\SB@prefshrpstrue\or% C#
+ \ifx\SB@next m% D
+ \global\SB@prefshrpsfalse%
+ \else%
+ \global\SB@prefshrpstrue%
+ \fi\or%
+ \global\SB@prefshrpsfalse\or% Eb
+ \global\SB@prefshrpstrue\or% E
+ \global\SB@prefshrpsfalse\or% F
+ \global\SB@prefshrpstrue\or% F#
+ \ifx\SB@next m% G
+ \global\SB@prefshrpsfalse%
+ \else%
+ \global\SB@prefshrpstrue%
+ \fi\or%
+ \global\SB@prefshrpsfalse\else% Ab
+ \global\SB@needkeytrue% non-chord
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@trend}
+% The following macro marks the end of chord text to be processed.
+% It should always be consumed and discarded by the chord-scanning
+% logic above, so generate an error if it is ever expanded.
+% \begin{macrocode}
+\newcommand\SB@trend{%
+ \SB@Error{Internal Error: Transposition failed}%
+ {This error should not occur.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Measure Bars}
+%
+% The following code handles the typesetting of measure bars.
+%
+% \begin{macro}{\SB@metertop}
+% \begin{macro}{\SB@meterbot}
+% These macros remember the current numerator and denominator of the meter.
+% \begin{macrocode}
+\newcommand\SB@metertop{}
+\newcommand\SB@meterbot{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\meter}\MainImpl{meter}
+% Set the current meter without producing an actual measure bar yet.
+% \begin{macrocode}
+\newcommand\meter[2]{\gdef\SB@metertop{#1}\gdef\SB@meterbot{#2}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@measuremark}
+% Normally measure bar boxes should be as thin as possible so that they can be
+% slipped into lyrics without making them hard to read. But when two measure
+% bars appear consecutively, they need to be spaced apart more so that they
+% look like two separate lines instead of one thick line. To achieve this,
+% there needs to be a way to pull a vbox off the current list and determine
+% whether or not it is a box that contains a measure bar. The solution is to
+% insert a mark (|\SB@measuremark|) at the top of each measure bar vbox.
+% We can then see whether this measure bar immediately follows another measure
+% bar by using |\vsplit| on |\lastbox|.
+% \begin{macrocode}
+\newcommand\SB@measuremark{SB@IsMeasure}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@makembar}\MainImpl{mbar}
+% Typeset a measure bar. If provided, \argp{1} is the numerator and \argp{2} is
+% the denominator of the meter to be rendered above the bar. If those arguments
+% are left blank, render a measure bar without a meter marking.
+% \begin{macrocode}
+\newcommand\SB@makembar[2]{%
+ \ifSB@inverse\else%
+ \ifSB@inchorus\else\SB@errmbar\fi%
+ \fi%
+ \ifhmode%
+ \SB@skip\lastskip\unskip%
+ \setbox\SB@box\lastbox%
+ \copy\SB@box%
+ \ifvbox\SB@box%
+ \begingroup%
+ \setbox\SB@boxii\copy\SB@box%
+ \vbadness\@M\vfuzz\maxdimen%
+ \setbox\SB@boxii%
+ \vsplit\SB@boxii to\maxdimen%
+ \endgroup%
+ \long\edef\SB@temp{\splitfirstmark}%
+ \ifx\SB@temp\SB@measuremark%
+ \penalty100\hskip1em%
+ \else%
+ \penalty100\hskip\SB@skip%
+ \fi%
+ \else%
+ \penalty100\hskip\SB@skip%
+ \fi%
+ \fi%
+ \ifvmode\leavevmode\fi%
+ \setbox\SB@box\hbox{{\meterfont\relax#1}}%
+ \setbox\SB@boxii\hbox{{\meterfont\relax#2}}%
+ \SB@dimen\wd\ifdim\wd\SB@box>\wd\SB@boxii\SB@box\else\SB@boxii\fi%
+ \SB@dimenii\baselineskip%
+ \advance\SB@dimenii-2\p@%
+ \advance\SB@dimenii-\ht\SB@box%
+ \advance\SB@dimenii-\dp\SB@box%
+ \advance\SB@dimenii-\ht\SB@boxii%
+ \advance\SB@dimenii-\dp\SB@boxii%
+ \let\SB@temp\relax%
+ \ifdim\SB@dimen>\z@%
+ \advance\SB@dimenii-.75\p@%
+ \def\SB@temp{\kern.75\p@}%
+ \fi%
+ \SB@maxmin\SB@dimen<{.5\p@}%
+ \SB@maxmin\SB@dimenii<\z@%
+ \vbox{%
+ \mark{\SB@measuremark}%
+ \hbox to\SB@dimen{%
+ \hfil%
+ \box\SB@box%
+ \hfil%
+ }%
+ \nointerlineskip%
+ \hbox to\SB@dimen{%
+ \hfil%
+ \box\SB@boxii%
+ \hfil%
+ }%
+ \SB@temp%
+ \nointerlineskip%
+ \hbox to\SB@dimen{%
+ \hfil%
+ \vrule\@width.5\p@\@height\SB@dimenii%
+ \hfil%
+ }%
+ }%
+ \meter{}{}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\mbar}
+% The |\mbar| macro invokes |\SB@mbar|, which gets redefined by macros and
+% options that turn measure bars on and off.
+% \begin{macrocode}
+\newcommand\mbar{\SB@mbar}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\measurebar}\MainImpl{measurebar}
+% Make a measure bar using the most recently defined meter.
+% Then set the meter to nothing so that the next measure bar will not
+% display any meter unless the meter changes.
+% \begin{macrocode}
+\newcommand\measurebar{%
+ \mbar\SB@metertop\SB@meterbot%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@repcolon}
+% Create the colon that preceeds or follows a repeat sign.
+% \begin{macrocode}
+\newcommand\SB@repcolon{{%
+ \usefont{OT1}{cmss}{m}{n}\selectfont%
+ \ifchorded%
+ \baselineskip.5\SB@dimen%
+ \vbox{\hbox{:}\hbox{:}\kern.5\p@}%
+ \else%
+ \raise.5\p@\hbox{:}%
+ \fi%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\lrep}\MainImpl{lrep}
+% Create a begin-repeat sign.
+% \begin{macrocode}
+\newcommand\lrep{%
+ \SB@dimen\baselineskip%
+ \advance\SB@dimen-2\p@%
+ \vrule\@width1.5\p@\@height\SB@dimen\@depth\p@%
+ \kern1.5\p@%
+ \vrule\@width.5\p@\@height\SB@dimen\@depth\p@%
+ \SB@repcolon%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\rrep}\MainImpl{rrep}
+% Create an end-repeat sign.
+% \begin{macrocode}
+\newcommand\rrep{%
+ \SB@dimen\baselineskip%
+ \advance\SB@dimen-2\p@%
+ \SB@repcolon%
+ \vrule\@width.5\p@\@height\SB@dimen\@depth\p@%
+ \kern1.5\p@%
+ \vrule\@width1.5\p@\@height\SB@dimen\@depth\p@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Lyric Scanning}\label{sec:lyricscan}
+%
+% The obvious way to create a chord macro is as a normal macro with
+% two arguments, one for the chord name and one for the lyrics to go
+% under the chord---e.g.~|\chord{|\Meta{chordname}|}{|\Meta{lyric}|}|.
+% However, in practice such a macro is extremely cumbersome and
+% difficult to use.
+% The problem is that in order to use such a macro properly, the user
+% must remember a bunch of complex style rules that govern what
+% part of the lyric text needs to go in the \Meta{lyric} parameter and
+% what part should be typed after the closing brace.
+% To avoid separating a word from its trailing punctuation, the
+% \Meta{lyric} parameter must often include punctuation but not certain
+% special punctuation like hyphens, should include the rest of the
+% word but not if there's another chord in the word, should omit
+% measure bars but only if measure bars are being shown, etc.
+% This is way too difficult for the average user.
+%
+% To avoid this problem, we define chords using a one-argument macro
+% (the argument is the chord name), but with no explicit argument for
+% the lyric part.
+% Instead, the macro scans ahead in the input stream, automatically
+% determining what portion of the lyric text that follows should be
+% sucked in as an implicit second argument.
+% The following code does this look-ahead scanning.
+%
+% \begin{macro}{\ifSB@wordends}
+% \begin{macro}{\ifSB@brokenword}
+% Chord macros must look ahead in the input stream to see whether this chord
+% is immediately followed by whitespace or the remainder of a word.
+% If the latter, hyphenation might need to be introduced.
+% These macros keep track of the need for hyphenation, if any.
+% \begin{macrocode}
+\newif\ifSB@wordends
+\newif\ifSB@brokenword
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@lyric}
+% Lyrics appearing after a chord are scanned into the following token list
+% register.
+% \begin{macrocode}
+\SB@newtoks\SB@lyric
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@numhyps}
+% Hyphens appearing in lyrics require special treatment.
+% The following counter counts the number of explicit hyphens ending
+% the lyric syllable that follows the current chord.
+% \begin{macrocode}
+\SB@newcount\SB@numhyps
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@lyricnohyp}
+% When a lyric syllable under a chord ends in exactly one hyphen, the
+% following token register is set to be the syllable without the hyphen.
+% \begin{macrocode}
+\SB@newtoks\SB@lyricnohyp
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@lyricbox}
+% \begin{macro}{\SB@chordbox}
+% The following two boxes hold the part of the lyric text that is to be
+% typeset under the chord, and the chord text that is to be typeset above.
+% \begin{macrocode}
+\SB@newbox\SB@lyricbox
+\SB@newbox\SB@chordbox
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chbstok}
+% \changes{v1.22}{2007/05/15}{Added.}
+% When |\MultiwordChords| is active, the following reserved control
+% sequence remembers the first (space) token not yet included into the
+% |\SB@lyricbox| box.
+% \begin{macrocode}
+\newcommand\SB@chbstok{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@setchord}
+% \changes{v2.3}{2007/09/23}{Support replayed chords over ligatures}
+% \changes{v2.7}{2009/01/08}{Extend rather than replace chordbox}
+% \changes{v3.0}{2017/04/19}{Fix transposition of replayed chord over ligature}
+% The following macro typesets its argument as a chord and stores the
+% result in box |\SB@chordbox| for later placement into the document.
+% The hat token (|^|) is redefined so that outside of math mode it
+% suppresses chord memorization, but inside of math mode it retains
+% its usual superscript meaning.
+% If memorization is active, the chord's token sequence is stored in
+% the current replay register.
+% If |\SB@chordbox| is non-empty, the new chord is appended to it
+% rather than replacing it.
+% This allows consecutive chords not separated by whitespace to be
+% typeset as a single chord sequence atop a common lyric.
+% \begin{macrocode}
+\newcommand\SB@setchord{}
+{
+ \catcode`^\active
+ \gdef\SB@setchord#1{%
+ \SB@gettabindtrue\SB@nohattrue%
+ \setbox\SB@chordbox\hbox{%
+ \unhbox\SB@chordbox%
+ \begingroup%
+ \ifSB@trackch%
+ \let\SB@activehat\SB@hat@tr%
+ \else%
+ \let\SB@activehat\SB@hat@notr%
+ \fi%
+ \let^\SB@activehat%
+ \printchord{%
+ \ifSB@firstchord\else\kern.15em\fi%
+ \vphantom/%
+ \transposehere{#1}%
+ \kern.2em%
+ }%
+ \endgroup%
+ }%
+ \SB@gettabindfalse%
+ \ifSB@trackch\ifSB@nohat%
+ \global\SB@creg\expandafter{\the\SB@creg#1\\}%
+ \fi\fi%
+ \let\SB@noreplay\@firstofone%
+ }
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@outertest}
+% \begin{macro}{\SB@otesta}
+% \begin{macro}{\SB@otestb}
+% The lyric-scanning code must preemptively determine whether the next token
+% is a macro declared |\outer| before it tries to accept that token as an
+% argument.
+% Otherwise \TeX{} will abort with a parsing error.
+% Macros declared |\outer| are not allowed in arguments, so determining
+% whether a token is |\outer| is a delicate process.
+% The following does so by consulting |\meaning|.
+% A macro can be identified as |\outer| if its meaning has the
+% word ``|\outer|'' before the first colon.
+% \begin{macrocode}
+\newcommand\SB@outertest{%
+ \expandafter\SB@otesta\meaning\SB@next:\SB@otesta%
+}
+\newcommand\SB@otesta{}
+\edef\SB@otesta#1:#2\SB@otesta{%
+ \noexpand\SB@otestb%
+ #1\string\outer%
+ \noexpand\SB@otestb%
+}
+\newcommand\SB@otestb{}
+\expandafter\def\expandafter\SB@otestb%
+\expandafter#\expandafter1\string\outer#2\SB@otestb{%
+ \def\SB@temp{#2}%
+ \ifx\SB@temp\@empty\SB@testfalse\else\SB@testtrue\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@UTFtest}
+% \begin{macro}{\SB@U@two}
+% \begin{macro}{\SB@U@three}
+% \begin{macro}{\SB@U@four}
+% \begin{macro}{\SB@@UTFtest}
+% \changes{v1.22}{2007/05/15}{Added.}
+% To support UTF-8 encoded \LaTeX{} source files, we need to be able to
+% identify multibyte characters during the lyric scanning process.
+% Alas, the |utf8.def| file provides no clean way of identifying the
+% macros it defines for this purpose.
+% The best solution seems to be to look for any token named
+% |\UTFviii@|$\ldots$|@octets| in the top-level expansion of the macro.
+% \begin{macrocode}
+\newcommand\SB@UTFtest{}
+\edef\SB@UTFtest#1{%
+ \noexpand\expandafter%
+ \noexpand\SB@@UTFtest%
+ \noexpand\meaning#1%
+ \string\UTFviii@zero@octets%
+ \noexpand\SB@@UTFtest%
+}
+\newcommand\SB@U@two{\global\SB@cnt\tw@}
+\newcommand\SB@U@three{\global\SB@cnt\thr@@}
+\newcommand\SB@U@four{\global\SB@cnt4\relax}
+\newcommand\SB@@UTFtest{}
+{\escapechar\m@ne
+ \xdef\SB@temp{\string\@octets}}
+\edef\SB@temp{##1\string\UTFviii@##2\SB@temp}
+\expandafter\def\expandafter\SB@@UTFtest\SB@temp#3\SB@@UTFtest{%
+ \SB@cnt\z@%
+ {\csname SB@U@#2\endcsname}%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\DeclareLyricChar}\MainImpl{DeclareLyricChar}
+% \begin{macro}{\DeclareNonLyric}\MainImpl{DeclareNonLyric}
+% \begin{macro}{\DeclareNoHyphen}\MainImpl{DeclareNoHyphen}
+% \begin{macro}{\SB@declare}
+% \changes{v1.22}{2007/05/15}{Added \cs{DeclareLyricChar}.}
+% \changes{v2.1}{2007/08/02}{Added \cs{DeclareNonLyric} and \cs{DeclareNoHyphen}.}
+% \changes{v2.6}{2008/03/27}{Macro tests made name-based instead of def-based}
+% When scanning the lyric text that follows a chord, it is necessary to
+% distinguish accents and other intra-word macros (which should be included
+% in the under-chord lyric text) from other macros (which should be pushed
+% out away from the text).
+% The following macros allow users to declare a token to be lyric-continuing
+% or lyric-ending.
+% \begin{macrocode}
+\newcommand\SB@declare[3]{%
+ \afterassignment\iffalse\let\SB@next= #3\relax\fi%
+ \SB@UTFtest\SB@next%
+ \ifcase\SB@cnt%
+ \ifcat\noexpand#3\relax%
+ \SB@addNtest\SB@macrotests#1#2#3%
+ \else\ifcat\noexpand#3.%
+ \SB@addDtest\SB@othertests#1#2%
+ \else\ifcat\noexpand#3A%
+ \SB@addDtest\SB@lettertests#1#2%
+ \else%
+ \SB@addDtest\relax0#2%
+ \fi\fi\fi%
+ \or%
+ \SB@addNtest\SB@macrotests#1#2#3%
+ \else%
+ \SB@addMtest\SB@multitests#1#2#3\relax\relax\relax%
+ \fi%
+}
+\newcommand\DeclareLyricChar{\SB@declare\SB@testtrue0}
+\newcommand\DeclareNonLyric{\SB@declare\SB@testfalse\SB@testfalse}
+\newcommand\DeclareNoHyphen{\SB@declare\SB@testfalse\SB@testtrue}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@lettertests}
+% \begin{macro}{\SB@macrotests}
+% \begin{macro}{\SB@multitests}
+% \begin{macro}{\SB@othertests}
+% For speed, token tests introduced by |\DeclareLyricChar| and friends
+% are broken out into separate macros based on category codes.
+% \begin{macrocode}
+\newcommand\SB@lettertests{}
+\newcommand\SB@macrotests{}
+\newcommand\SB@multitests{}
+\newcommand\SB@othertests{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% The following macros add tests to the test macros defined above.
+% In each, \argp{1} is the test macro to which the test should be added,
+% \argp{2} and \argp{3} is the code to be executed at scanning-time and
+% at hyphenation-time if the test succeeds (or ``0'' if no action is to
+% be performed), and \argp{4} is the token to which the currently scanned
+% token should be compared to determine whether it matches.
+%
+% \begin{macro}{\SB@addDtest}
+% A definition-test: The test succeeds if the next lyric token has the same
+% meaning (at test-time) of the non-macro, non-active character token that
+% was given to the |\Declare| macro.
+% \begin{macrocode}
+\newcommand\SB@addDtest[3]{%
+ \ifx0#2\else%
+ \def#1{{\csname SB@!\meaning\SB@next\endcsname}}%
+ \expandafter\def\csname SB@!\meaning\SB@next\endcsname{\global#2}%
+ \fi%
+ \ifx0#3\else%
+ \expandafter\def\csname SB@HT@\meaning\SB@next\endcsname{\global#3}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@addNtest}
+% A name-test: The test succeeds if the next token is a non-|\outer|
+% macro or active character and its |\string|ified name matches the
+% |\string|ified name of the control sequence that was given to the
+% |\Declare| macro.
+% \begin{macrocode}
+\newcommand\SB@addNtest[4]{%
+ \ifx0#2\else%
+ \def#1{{\csname SB@!\SB@nextname\endcsname}}%
+ \expandafter\def\csname SB@!\string#4\endcsname{\global#2}%
+ \fi%
+ \ifx0#3\else%
+ \expandafter\def\csname SB@HT@\string#4\endcsname{\global#3}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@addMtest}
+% A multibyte-test: The test succeeds if the next lyric token is the
+% beginning of a UTF-8 encoded multibyte character sequence that matches
+% the multibyte sequence given to the |\Declare| macro.
+% \begin{macrocode}
+\newcommand\SB@addMtest[7]{%
+ \edef\SB@temp{%
+ \string#4%
+ \ifx\relax#5\else\string#5\fi%
+ \ifx\relax#6\else\string#6\fi%
+ \ifx\relax#7\else\string#7\fi%
+ }%
+ \ifx0#2\else%
+ \def#1{{\csname SB@!\SB@nextname\endcsname}}%
+ \expandafter\def\csname SB@!\SB@temp\endcsname{\global#2}%
+ \fi%
+ \ifx0#3\else%
+ \expandafter\def\csname SB@HT@\SB@temp\endcsname{\global#3}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% The following code declares the common intra-word macros provided by
+% \TeX{} (as listed on p.~52 of The \TeX book) to be lyric-continuing.
+% \begin{macrocode}
+\DeclareLyricChar\`
+\DeclareLyricChar\'
+\DeclareLyricChar\^
+\DeclareLyricChar\"
+\DeclareLyricChar\~
+\DeclareLyricChar\=
+\DeclareLyricChar\.
+\DeclareLyricChar\u
+\DeclareLyricChar\v
+\DeclareLyricChar\H
+\DeclareLyricChar\t
+\DeclareLyricChar\c
+\DeclareLyricChar\d
+\DeclareLyricChar\b
+\DeclareLyricChar\oe
+\DeclareLyricChar\OE
+\DeclareLyricChar\ae
+\DeclareLyricChar\AE
+\DeclareLyricChar\aa
+\DeclareLyricChar\AA
+\DeclareLyricChar\o
+\DeclareLyricChar\O
+\DeclareLyricChar\l
+\DeclareLyricChar\L
+\DeclareLyricChar\ss
+\DeclareLyricChar\i
+\DeclareLyricChar\j
+\DeclareLyricChar\/
+\DeclareLyricChar\-
+\DeclareLyricChar\discretionary
+% \end{macrocode}
+%
+% We declare |\par| to be lyric-ending without introducing hyphenation.
+% The |\par| macro doesn't actually appear in most verses because we use
+% |\obeylines|, but we include a check for it in case the user says |\par|
+% explicitly somewhere.
+% \begin{macrocode}
+\DeclareNoHyphen\par
+% \end{macrocode}
+%
+% \begin{macro}{\SB@bracket}
+% This macro gets invoked by the |\[|\eat\] macro whenever a chord begins.
+% It gets redefined by code that turns chords on and off, so its initial
+% definition doesn't matter.
+% \begin{macrocode}
+\newcommand\SB@bracket{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chord}
+% Begin parsing a chord macro.
+% While parsing the chord name argument, we set some special catcodes so
+% that chord names can use |#| and |&| for sharps and flats.
+% \begin{macrocode}
+\newcommand\SB@chord{\SB@begincname\SB@@chord}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@begincname}
+% \begin{macro}{\SB@endcname}
+% While parsing a chord name, certain characters such as |#| and |&| are
+% temporarily set active so that they can be used as abbreviations for
+% sharps and flats.
+% To accomplish this, |\SB@begincname| must always be invoked before any
+% macro whose argument is a chord name, and |\SB@endcname| must be invoked
+% at the start of the body of any macro whose argument is a chord name.
+% To aid in debugging, we also temporarily set \Meta{return} characters and
+% chord macros |\outer|.
+% This will cause \TeX{} to halt with a runaway argument error on the correct
+% source line if the user forgets to type a closing end-brace (a common typo).
+% Colon characters are also set non-active to avoid a conflict between the
+% \textsf{Babel} French package and the |\gtab| macro.
+% \begin{macrocode}
+\newcommand\SB@begincname{}
+{\catcode`\^^M\active
+ \gdef\SB@begincname{%
+ \begingroup%
+ \catcode`##\active\catcode`&\active%
+ \catcode`:12\relax%
+ \catcode`\^^M\active\SB@outer\def^^M{}%
+ \SB@outer\def\[{}%
+ \chordlocals\relax%
+ }
+}
+\newcommand\SB@endcname{}
+\let\SB@endcname\endgroup
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@nbsp}
+% Non-breaking spaces (|~|) should be treated as spaces by the lyric-scanner
+% code that follows.
+% Although |~| is usually an active character that creates a non-breaking
+% space, some packages (e.g., the \textsf{Babel} package) redefine it to
+% produce accents, which are typically not lyric-ending.
+% To distinguish the real |~| from redefined |~|, we need to create a macro
+% whose definition is the non-breaking space definition normally assigned to
+% |~|.
+% \begin{macrocode}
+\newcommand*\SB@nbsp{\nobreakspace{}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@firstchord}
+% The following conditional is true when the current chord is the first
+% chord in a sequence of one or more chord macros.
+% \begin{macrocode}
+\newif\ifSB@firstchord\SB@firstchordtrue
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@@chord}
+% Finish processing the chord name and then begin scanning the implicit
+% lyric argument that follows it.
+% This is the main entrypoint to the lyric-scanner code.
+% \begin{macrocode}
+\newcommand*\SB@@chord{}
+\def\SB@@chord#1]{%
+ \SB@endcname%
+ \ifSB@firstchord%
+ \setbox\SB@lyricbox\hbox{\kern\SB@tabindent}%
+ \global\SB@tabindent\z@%
+ \SB@lyric{}%
+ \SB@numhyps\z@%
+ \SB@spcinit%
+ \setbox\SB@chordbox\box\voidb@x%
+ \fi%
+ \SB@setchord{#1}%
+ \SB@firstchordfalse%
+ \let\SB@dothis\SB@chstart%
+ \SB@chscan%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\MultiwordChords}\MainImpl{MultiwordChords}
+% \begin{macro}{\SB@spcinit}
+% \changes{v1.22}{2007/05/15}{Added.}
+% The |\SB@spcinit| macro is invoked at the beginning of the lyric
+% scanning process.
+% By default it does nothing, but if |\MultiwordChords| is invoked,
+% it initializes the lyric-scanner state to process spaces as part of
+% lyrics.
+% \begin{macrocode}
+\newcommand\SB@spcinit{}
+\newcommand\MultiwordChords{%
+ \def\SB@spcinit{%
+ \let\SB@chdone\SB@chlyrdone%
+ \let\SB@chimpspace\SB@chnxtdone%
+ \let\SB@chexpspace\SB@chnxtdone%
+ \let\SB@chespace\SB@chendspace%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chscan}
+% \begin{macro}{\SB@chmain}
+% This is the main loop of the lyric-scanner.
+% Peek ahead at the next token without consuming it, then execute
+% a loop body based on the current state (|\SB@dothis|), and finally
+% go to the next iteration (|\SB@donext|).
+% \begin{macrocode}
+\newcommand\SB@chscan{%
+ \let\SB@nextname\relax%
+ \futurelet\SB@next\SB@chmain%
+}
+\newcommand\SB@chmain{\SB@dothis\SB@donext}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chnxtrelax}
+% \begin{macro}{\SB@chnxtstep}
+% \begin{macro}{\SB@chnxtdone}
+% To shorten the lyric parser macros that follow and thereby improve their
+% speed, we here define some abbreviations for common logic in untaken
+% branches.
+% \begin{macrocode}
+\newcommand\SB@chnxtrelax{\let\SB@donext\relax}
+\newcommand\SB@chnxtstep{\let\SB@donext\SB@chstep}
+\newcommand\SB@chnxtdone{\let\SB@donext\SB@chdone}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% Warning: In the lyric-scanner macros that follow, |\SB@next|
+% might be a macro declared |\outer|.
+% This means that it must \emph{never} be passed as an argument to
+% a macro and it must never explicitly appear in any untaken branch
+% of a conditional.
+% If it does, the \TeX{} parser will complain of a runaway argument
+% when it tries to skip over an |\outer| macro while consuming tokens
+% at high speed.
+%
+% \begin{macro}{\SB@chstart}
+% We begin lyric-scanning with two special cases:
+% (1) If the chord macro is immediately followed by another chord macro with
+% no intervening whitespace, drop out of the lyric scanner and reenter it when
+% the second macro is parsed.
+% The chord texts will get concatenated together above the lyric that follows.
+% (2) If the chord macro is immediately followed by one or more quote
+% tokens, then consume them all and output them \emph{before} the chord.
+% This causes the chord to sit above the actual word instead of the
+% left-quote or left-double-quote symbol, which looks better.
+% \begin{macrocode}
+\newcommand\SB@chstart{%
+ \ifx\SB@next\[\SB@chnxtrelax%
+ \else\ifx\SB@next\SB@activehat\SB@chnxtrelax%
+ \else\ifx\SB@next\ch\SB@chnxtrelax%
+ \else\ifx\SB@next\mch\SB@chnxtrelax%
+ \else\ifx\SB@next`\SB@chnxtstep%
+ \else\ifx\SB@next'\SB@chnxtstep%
+ \else\ifx\SB@next"\SB@chnxtstep%
+ \else%
+ \the\SB@lyric%
+ \SB@lyric{}%
+ \SB@firstchordtrue%
+ \let\SB@dothis\SB@chnorm%
+ \SB@chnorm%
+ \fi\fi\fi\fi\fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \eat\]
+%
+% \begin{macro}{\SB@chnorm}
+% \changes{v2.0}{2007/06/18}{Rewritten for speed}
+% First, check to see whether the lyric token is a letter.
+% Since that's the most common case, we do this check first for speed.
+% \begin{macrocode}
+\newcommand\SB@chnorm{%
+ \ifcat\noexpand\SB@next A%
+ \SB@testtrue\SB@lettertests%
+ \ifSB@test%
+ \SB@chespace\SB@chnxtstep%
+ \else%
+ \SB@chnxtdone%
+ \fi%
+ \else%
+ \SB@chtrymacro%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chtrymacro}
+% Next, check to see whether it's a macro or active character.
+% We do these checks next because these are the only cases when the
+% token might be |\outer|.
+% Once we eliminate that ugly possibility, we can write the rest of
+% the code without having to worry about putting |\SB@next| in
+% places where |\outer| tokens are illegal.
+% \begin{macrocode}
+\newcommand\SB@chtrymacro{%
+ \ifcat\noexpand\SB@next\relax%
+ \SB@chmacro%
+ \else%
+ \SB@chother%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chother}
+% The token is not a letter, macro, or active character.
+% The only other cases of interest are spaces, braces, and hyphens.
+% If it's one of those, take the appropriate action; otherwise end the
+% lyric here.
+% Since we've eliminated the possibility of macros and active characters,
+% we can be sure that the token isn't |\outer| at this point.
+% \begin{macrocode}
+\newcommand\SB@chother{%
+ \ifcat\noexpand\SB@next\@sptoken%
+ \SB@chexpspace%
+ \else\ifcat\noexpand\SB@next\bgroup%
+ \SB@chespace\let\SB@donext\SB@chbgroup%
+ \else\ifcat\noexpand\SB@next\egroup%
+ \SB@chespace\let\SB@donext\SB@chegroup%
+ \else\ifx\SB@next-%
+ \SB@numhyps\@ne\relax%
+ \SB@lyricnohyp\expandafter{\the\SB@lyric}%
+ \let\SB@dothis\SB@chhyph%
+ \SB@chespace\SB@chnxtstep%
+ \else\ifcat\noexpand\SB@next.%
+ \SB@testtrue\SB@othertests%
+ \ifSB@test%
+ \SB@chespace\SB@chnxtstep%
+ \else%
+ \SB@chnxtdone%
+ \fi%
+ \else%
+ \SB@chespace\SB@chnxtstep%
+ \fi\fi\fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chmacro}
+% \changes{v1.22}{2007/05/15}{Added support for UTF-8.}
+% The lyric-scanner has encountered a macro or active character.
+% If it's |\outer|, it should never be used in an argument, so stop here.
+% \begin{macrocode}
+\newcommand\SB@chmacro{%
+ \SB@outertest%
+ \ifSB@test%
+ \SB@chnxtdone%
+ \else%
+ \let\SB@donext\SB@chgetname%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chgetname}
+% We've encountered a non-|\outer| macro or active character.
+% Use |\string| to get its name, but insert the token back into the
+% input stream since we haven't decided whether to consume it yet.
+% \begin{macrocode}
+\newcommand\SB@chgetname[1]{%
+ \edef\SB@nextname{\string#1}%
+ \SB@@chmacro\SB@donext#1%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@@chmacro}
+% The lyric-scanner has encountered a non-|\outer| macro or active character.
+% Its |\string|ified name has been stored in |\SB@nextname|.
+% Test to see whether it's a known macro or the beginning of a
+% multibyte-encoded international character.
+% If the former, dispatch some macro-specific code to handle it.
+% If the latter, grab the full multibyte sequence and include it in the lyric.
+% \begin{macrocode}
+\newcommand\SB@@chmacro{%
+ \ifx\SB@next\SB@activehat%
+ \SB@chnxtdone%
+ \else\ifx\SB@next\SB@par%
+ \SB@chnxtdone%
+ \else\ifx\SB@next\measurebar%
+ \SB@chmbar%
+ \else\ifx\SB@next\mbar%
+ \SB@chmbar%
+ \else\ifx\SB@next\ch%
+ \SB@chespace\let\SB@donext\SB@chlig%
+ \else\ifx\SB@next\mch%
+ \SB@chespace\let\SB@donext\SB@mchlig%
+ \else\ifx\SB@next\ %
+ \SB@chimpspace%
+ \else\ifx\SB@next\SB@nbsp%
+ \SB@chimpspace%
+ \else%
+ \SB@UTFtest\SB@next%
+ \ifcase\SB@cnt\SB@chothermac%
+ \or\or\SB@chespace\let\SB@donext\SB@chsteptwo%
+ \or\SB@chespace\let\SB@donext\SB@chstepthree%
+ \or\SB@chespace\let\SB@donext\SB@chstepfour\fi%
+ \fi\fi\fi\fi\fi\fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chothermac}
+% \changes{v2.6}{2008/03/26}{All active chars now included in lyrics by default.}
+% The lyric-scanner has encountered a macro or active character that is
+% not |\outer|, not a known macro that requires special treatment,
+% and not a multibyte international character.
+% First, check the macro's name (stored in |\SB@nextname|) to see whether it
+% begins with a non-escape character.
+% If so, it's probably an accenting or punctuation character made active
+% by the |inputenc| or |babel| packages.
+% Most such characters should be included in the lyric, so include it by
+% default; otherwise exclude it by default.
+% The user can override the defaults using |\DeclareLyricChar| and friends.
+% \begin{macrocode}
+\newcommand\SB@chothermac{%
+ \SB@testfalse%
+ \afterassignment\iffalse%
+ \SB@cnt\expandafter`\SB@nextname x\fi%
+ \ifnum\the\catcode\SB@cnt=\z@\else\SB@testtrue\fi%
+ \SB@macrotests%
+ \ifSB@test%
+ \SB@chespace\SB@chnxtstep%
+ \else%
+ \SB@chnxtdone%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chstep}
+% \begin{macro}{\SB@chsteptwo}
+% \begin{macro}{\SB@chstepthree}
+% \begin{macro}{\SB@chstepfour}
+% \begin{macro}{\SB@chmulti}
+% \begin{macro}{\SB@chmstop}
+% We've encountered one or more tokens that should be included in the
+% lyric text.
+% (More than one means we've encountered a multibyte encoding of an
+% international character.)
+% Consume them (as arguments to this macro) and add them to the list
+% of tokens we've already consumed.
+% \begin{macrocode}
+\newcommand\SB@chstep[1]{%
+ \SB@lyric\expandafter{\the\SB@lyric#1}%
+ \SB@chscan%
+}
+\newcommand\SB@chsteptwo[2]{\SB@chmulti{#1#2}{\string#1\string#2}}
+\newcommand\SB@chstepthree[3]{%
+ \SB@chmulti{#1#2#3}{\string#1\string#2\string#3}%
+}
+\newcommand\SB@chstepfour[4]{%
+ \SB@chmulti{#1#2#3#4}{\string#1\string#2\string#3\string#4}%
+}
+\newcommand\SB@chmulti[2]{%
+ \def\SB@next{#1}%
+ \edef\SB@nextname{#2}%
+ \SB@testtrue\SB@multitests%
+ \ifSB@test%
+ \SB@lyric\expandafter{\the\SB@lyric#1}%
+ \expandafter\SB@chscan%
+ \else%
+ \expandafter\SB@chmstop%
+ \fi%
+}
+\newcommand\SB@chmstop{\expandafter\SB@chdone\SB@next}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chhyph}
+% We've encountered a hyphen.
+% Continue to digest hyphens, but terminate as soon as we see anything
+% else.
+% \begin{macrocode}
+\newcommand\SB@chhyph{%
+ \ifx\SB@next-%
+ \advance\SB@numhyps\@ne\relax%
+ \SB@chnxtstep%
+ \else%
+ \SB@chnxtdone%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chimpspace}
+% \begin{macro}{\SB@chexpspace}
+% We've encountered an implicit or explicit space.
+% Normally this just ends the lyric, but if |\MultiwordChords| is
+% active, these macros both get redefined to process the space.
+% \begin{macrocode}
+\newcommand\SB@chimpspace{}
+\let\SB@chimpspace\SB@chnxtdone
+\newcommand\SB@chexpspace{}
+\let\SB@chexpspace\SB@chnxtdone
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chespace}
+% \begin{macro}{\SB@chendspace}
+% \changes{v1.22}{2007/05/15}{Added.}
+% The |\SB@chespace| macro gets invoked by the lyric-scanner just before a
+% non-space token is about to be accepted as part of an under-chord lyric.
+% Normally it does nothing; however, if |\MultiwordChords| is active, it
+% gets redefined to do one of three things:
+% (1) Initially it is set equal to |\SB@chendspace| so that if the very
+% first token following the chord macro is not a space, the lyric-scanner
+% macros are redefined to process any future spaces encountered.
+% Otherwise the very first token is a space, and the lyric ends immediately.
+% (2) While scanning non-space lyric tokens, it is set to nothing, since no
+% special action needs to be taken until we encounter a sequence of one or
+% more spaces.
+% (3) When a space token is encountered (but not the very first token after
+% the chord macro), it is set equal to |\SB@chendspace| again so that
+% |\SB@chendspace| is invoked once the sequence of one or more space tokens
+% is finished.
+% \begin{macrocode}
+\newcommand\SB@chespace{}
+\newcommand\SB@chendspace{%
+ \let\SB@chdone\SB@chlyrdone%
+ \def\SB@chexpspace{\SB@chbspace\SB@chexpspace}%
+ \def\SB@chimpspace{\SB@chbspace\SB@chimpspace}%
+ \def\SB@chespace{}%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chbspace}
+% \begin{macro}{\SB@chgetspace}
+% \changes{v1.22}{2007/05/15}{Added.}
+% The |\SB@chbspace| macro gets invoked when |\MultiwordChords| is active
+% and the lyric-scanner has encountered a space token that was immediately
+% preceded by a non-space token.
+% Before processing the space, we add all lyrics seen so far to the
+% |\SB@lyricbox| and check its width.
+% If we've seen enough lyrics to match or exceed the width of the chord,
+% a space stops the lyric-scanning process.
+% (This is important because it minimizes the size of the chord box,
+% providing as many line breakpoints as possible to the paragraph-formatter.)
+%
+% Otherwise we begin scanning space tokens without adding them to the
+% lyric until we see what the next non-space token is.
+% If the next non-space token would have ended the lyric anyway, roll back
+% and end the lyric here, reinserting the space tokens back into the token
+% stream.
+% If the next non-space token would have been included in the lyric,
+% the lyric-scanner proceeds as normal.
+% \begin{macrocode}
+\newcommand\SB@chbspace{%
+ \setbox\SB@lyricbox\hbox{%
+ \unhbox\SB@lyricbox%
+ \the\SB@lyric%
+ }%
+ \SB@lyric{}%
+ \ifdim\wd\SB@lyricbox<\wd\SB@chordbox%
+ \let\SB@chbstok= \SB@next%
+ \def\SB@chexpspace{\let\SB@donext\SB@chgetspace}%
+ \let\SB@chimpspace\SB@chnxtstep%
+ \let\SB@chespace\SB@chendspace%
+ \let\SB@chdone\SB@chspcdone%
+ \else%
+ \let\SB@chimpspace\SB@chnxtdone%
+ \let\SB@chexpspace\SB@chnxtdone%
+ \fi%
+}
+\newcommand\SB@chgetspace{%
+ \SB@appendsp\SB@lyric%
+ \let\SB@nextname\relax%
+ \afterassignment\SB@chscan%
+ \let\SB@next= }
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chmbar}
+% We've encountered a measure bar.
+% Either ignore it or end the lyric text, depending on whether
+% measure bars are being displayed.
+% \begin{macrocode}
+\newcommand\SB@chmbar{%
+ \ifmeasures%
+ \SB@chnxtdone%
+ \else%
+ \SB@chespace\SB@chnxtstep%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chbgroup}
+% We've encountered a begin-group brace.
+% Consume the entire group that it begins, and add it to the list
+% of tokens including the begin and end group tokens.
+% \begin{macrocode}
+\newcommand\SB@chbgroup[1]{%
+ \SB@lyric\expandafter{\the\SB@lyric{#1}}%
+ \SB@chscan%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chegroup}
+% \begin{macro}{\SB@chegrpscan}
+% \begin{macro}{\SB@chegrpmacro}
+% \begin{macro}{\SB@chegrpouter}
+% \begin{macro}{\SB@chegrpname}
+% \begin{macro}{\SB@chegrpdone}
+% We've encountered an end-group brace whose matching begin-group brace
+% must have come before the chord macro itself.
+% This forcibly ends the lyric text.
+% Before stopping, we must set |\SB@next| to the token following the brace
+% and |\SB@nextname| to its |\string|ified name so that |\SB@emitchord| will
+% know whether to add hyphenation.
+% Therefore, we temporarily consume the end-group brace, then scan the
+% next token without consuming it, and finally reinsert the end-group brace
+% and stop.
+% \begin{macrocode}
+\newcommand\SB@chegroup{%
+ \let\SB@nextname\relax%
+ \afterassignment\SB@chegrpscan%
+ \let\SB@next= }
+\newcommand\SB@chegrpscan{%
+ \futurelet\SB@next\SB@chegrpmacro%
+}
+\newcommand\SB@chegrpmacro{%
+ \ifcat\noexpand\SB@next\relax%
+ \expandafter\SB@chegrpouter%
+ \else%
+ \expandafter\SB@chegrpdone%
+ \fi%
+}
+\newcommand\SB@chegrpouter{%
+ \SB@outertest%
+ \ifSB@test%
+ \expandafter\SB@chegrpdone%
+ \else%
+ \expandafter\SB@chegrpname%
+ \fi%
+}
+\newcommand\SB@chegrpname[1]{%
+ \edef\SB@nextname{\string#1}%
+ \SB@chegrpdone#1%
+}
+\newcommand\SB@chegrpdone{\SB@chdone\egroup}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chlig}
+% \begin{macro}{\SB@mchlig}
+% We've encountered a |\ch| chord-over-ligature macro, or an
+% |\mch| measurebar-and-chord-over-ligature macro.
+% Consume it and all of its arguments, and load them into some
+% registers for future processing.
+% (Part of the ligature might fall into this lyric text or might
+% not, depending on whether we decide to add hyphenation.)
+% Then end the lyric text here.
+% \begin{macrocode}
+\newcommand\SB@chlig[5]{%
+ \gdef\SB@ligpre{{#3}}%
+ \gdef\SB@ligpost{\[#2]{#4}}%
+ \gdef\SB@ligfull{%
+ \[\SB@noreplay{\hphantom{{\lyricfont\relax#3}}}#2]{#5}%
+ }%
+ \SB@chdone%
+}
+\newcommand\SB@mchlig[5]{%
+ \SB@lyric\expandafter{\the\SB@lyric#3}%
+ \let\SB@next\measurebar%
+ \edef\SB@nextname{\string\measurebar}%
+ \gdef\SB@ligpost{\measurebar\[#2]{#4}}%
+ \gdef\SB@ligfull{\measurebar\[#2]{#4}}%
+ \SB@chdone%
+}
+% \end{macrocode}
+% \eat\]
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@chdone}
+% \begin{macro}{\SB@chlyrdone}
+% \begin{macro}{\SB@chspcdone}
+% The |\SB@chdone| macro is invoked when we've decided to end the lyric
+% text (usually because we've encountered a non-lyric token).
+% Normally this expands to |\SB@chlyrdone|, which adds any uncontributed
+% lyric material to the |\SB@lyricbox| and jumps to the main chord
+% formatting macro.
+% However, if |\MultiwordChords| is active and if the lyric ended with
+% a sequence of one or more space tokens, then we instead reinsert the
+% space tokens into the token stream without contributing them to the
+% |\SB@lyricbox|.
+% \begin{macrocode}
+\newcommand\SB@chlyrdone{%
+ \setbox\SB@lyricbox\hbox{%
+ \unhbox\SB@lyricbox%
+ \ifnum\SB@numhyps=\@ne%
+ \the\SB@lyricnohyp%
+ \else%
+ \the\SB@lyric%
+ \fi%
+ }%
+ \SB@emitchord%
+}
+\newcommand\SB@chspcdone{%
+ \let\SB@nextname\relax%
+ \let\SB@next= \SB@chbstok%
+ \expandafter\SB@emitchord\the\SB@lyric%
+}
+\newcommand\SB@chdone{}
+\let\SB@chdone\SB@chlyrdone
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@ligpre}
+% \begin{macro}{\SB@ligpost}
+% \begin{macro}{\SB@ligfull}
+% The following three macros record arguments passed to a |\ch| macro that
+% concludes the lyric text of the |\[]|\eat\] macro currently being processed.
+% \begin{macrocode}
+\newcommand\SB@ligpre{}
+\newcommand\SB@ligpost{}
+\newcommand\SB@ligfull{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@clearlig}
+% Clear all ligature-chord registers.
+% \begin{macrocode}
+\newcommand\SB@clearlig{%
+ \gdef\SB@ligpre{}%
+ \gdef\SB@ligpost{}%
+ \gdef\SB@ligfull{}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Chords}
+%
+% \begin{macro}{\SB@emitchord}\MainImpl{[}
+% \changes{v1.12}{2005/05/10}{Inhibited hyphenation of trailing punctuation}
+% \changes{v1.13}{2005/05/12}{Added code to preserve the spacefactor}
+% \changes{v1.16}{2005/07/23}{Chord macros massively reorganized to take lyrics as implicit rather than explicit arguments}
+% The |\SB@emitchord| macro does the actual work of typesetting chord text
+% over lyric text, introducing appropriate hyphenation when necessary.
+% We begin by consulting |\SB@next|, which should have been set by the
+% lyric-scanning code in \S\ref{sec:lyricscan} to the token that immediately
+% follows the lyric under this chord, to determine whether the lyric text
+% ends on a word boundary.
+% \begin{macrocode}
+\newcommand\SB@emitchord{%
+ \ifSB@inverse\else\ifSB@inchorus\else\SB@errchord\fi\fi%
+ \SB@testfalse%
+ \ifcat\noexpand\SB@next\@sptoken\SB@testtrue\fi%
+ \ifcat\noexpand\SB@next.\SB@testtrue\fi%
+ \ifx\SB@next\SB@par\SB@testtrue\fi%
+ \ifx\SB@next\egroup\SB@testtrue\fi%
+ \ifx\SB@next\endgroup\SB@testtrue\fi%
+ {\csname%
+ SB@HT@\ifx\SB@nextname\relax\meaning\SB@next\else\SB@nextname\fi%
+ \endcsname}%
+ \ifSB@test\SB@wordendstrue\else\SB@wordendsfalse\fi%
+% \end{macrocode}
+% Next, compare the width of the lyric to the width of the chord to
+% determine whether hyphenation might be necessary.
+% The original lyric text might have ended in a string of one or more
+% explicit hyphens, enumerated by |\SB@numhyps|.
+% If it ended in exactly one, the lyric-scanning code suppresses that hyphen
+% so that we can here add a new hyphen that floats out away from the word
+% when the chord above it is long.
+% If it ended in more than one (e.g., the encoding of an en- or em-dash) then
+% the lyric-scanner leaves it alone; we must not add any hyphenation or float
+% the dash away from the word.
+%
+% There is also code here to insert a penalty that discourages linebreaking
+% immediately before lyricless chords.
+% Beginning a wrapped line with a lyricless chord is undesirable because it
+% makes it look as though the wrapped line is extra-indented (due to the
+% empty lyric space below the chord).
+% It should therefore happen only as a last resort.
+% \begin{macrocode}
+ \SB@dimen\wd\SB@chordbox%
+ \ifvmode\leavevmode\fi%
+ \SB@brokenwordfalse%
+ \ifdim\wd\SB@lyricbox>\z@%
+ \ifdim\SB@dimen>\wd\SB@lyricbox%
+ \ifSB@wordends\else\SB@brokenwordtrue\fi%
+ \fi%
+ \else%
+ \SB@skip\lastskip%
+ \unskip\penalty200\hskip\SB@skip%
+ \fi%
+ \ifnum\SB@numhyps>\z@%
+ \ifnum\SB@numhyps>\@ne%
+ \SB@brokenwordfalse%
+ \else%
+ \SB@brokenwordtrue%
+ \fi%
+ \fi%
+% \end{macrocode}
+% If lyrics are suppressed on this line (e.g., by using |\nolyrics|), then just
+% typeset the chord text on the natural baseline.
+% \begin{macrocode}
+ \SB@testfalse%
+ \ifnolyrics\ifdim\wd\SB@lyricbox=\z@\SB@testtrue\fi\fi%
+ \ifSB@test%
+ \unhbox\SB@chordbox%
+ \gdef\SB@temp{\expandafter\SB@clearlig\SB@ligfull}%
+ \else%
+% \end{macrocode}
+% Otherwise, typeset the chord above the lyric on a double-height line.
+% \begin{macrocode}
+ \vbox{\clineparams\relax%
+ \ifSB@brokenword%
+ \global\setbox\SB@lyricbox\hbox{%
+ \unhbox\SB@lyricbox%
+ \SB@ligpre%
+ }%
+ \SB@maxmin\SB@dimen<{\wd\SB@lyricbox}%
+ \advance\SB@dimen.5em%
+ \hbox to\SB@dimen{\unhbox\SB@chordbox\hfil}%
+ \hbox to\SB@dimen{%
+ \unhcopy\SB@lyricbox\hfil
+ \ifnum\hyphenchar\font>\m@ne\char\hyphenchar\font\hfil\fi%
+ }%
+ \global\SB@cnt\@m%
+ \gdef\SB@temp{\expandafter\SB@clearlig\SB@ligpost}%
+ \else%
+ \box\SB@chordbox%
+ \hbox{%
+ \unhcopy\SB@lyricbox%
+ \global\SB@cnt\spacefactor%
+ \hfil%
+ }%
+ \gdef\SB@temp{\expandafter\SB@clearlig\SB@ligfull}%
+ \fi%
+ }%
+% \end{macrocode}
+% If the chord is lyricless, inhibit a linebreak immediately following it.
+% This prevents sequences of lyricless chords (which often end lines) from
+% being wrapped in the middle, which looks very unsightly and makes them
+% difficult to read.
+% If the chord has a lyric but it doesn't end on a word boundary, insert
+% an appropriate penalty to prevent linebreaking without hyphenation.
+% Also preserve the spacefactor in this case, which allows \LaTeX{} to
+% fine-tune the spacing between consecutive characters in the word that
+% contains the chord.
+% \begin{macrocode}
+ \ifSB@wordends%
+ \ifdim\wd\SB@lyricbox>\z@\else\nobreak\fi%
+ \else%
+ \penalty%
+ \ifnum\SB@numhyps>\z@\exhyphenpenalty%
+ \else\ifSB@brokenword\hyphenpenalty%
+ \else\@M\fi\fi%
+ \spacefactor\SB@cnt%
+ \fi%
+ \fi%
+% \end{macrocode}
+% Finally, end the macro with some code that handles the special case that
+% this chord is immediately followed by a chord-over-ligature macro.
+% The code above sets |\SB@temp| to the portion of the ligature that should
+% come after this chord but before the chord that tops the ligature.
+% This text must be inserted here.
+% \begin{macrocode}
+ \SB@temp%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@accidental}
+% Typeset an accidental symbol as a superscript within a chord.
+% Since chord names are often in italics but math symbols like sharp and
+% flat are not, we need to do some kerning adjustments before and after the
+% accidental to position it as if it were italicized.
+% The pre-adjustment is just a simple italic correction using |\/|.
+% The post-adjustment is based on the current font's slant-per-point metric.
+% \begin{macrocode}
+\newcommand\SB@accidental[1]{{%
+ \/%
+ \m@th#1%
+ \SB@dimen-\fontdimen\@ne\font%
+ \advance\SB@dimen.088142\p@%
+ \ifdim\SB@dimen<\z@%
+ \kern\f@size\SB@dimen%
+ \fi%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\sharpsymbol}\MainImpl{sharpsymbol}
+% \begin{macro}{\flatsymbol}\MainImpl{flatsymbol}
+% When changing the sharp or flat symbol, change these macros rather than
+% changing |\shrp| or |\flt|.
+% This will ensure that other shortcuts like |#| and |&| will reflect your
+% change.
+% \begin{macrocode}
+\newcommand\sharpsymbol{\ensuremath{^\#}}
+\newcommand\flatsymbol{\raise.5ex\hbox{{\SB@flatsize$\flat$}}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\shrp}\MainImpl{shrp}
+% \begin{macro}{\flt}\MainImpl{flt}
+% \changes{v2.10}{2009/08/18}{Font size made relative}
+% These macros typeset sharp and flat symbols.
+% \begin{macrocode}
+\newcommand\shrp{\SB@accidental\sharpsymbol}
+\newcommand\flt{\SB@accidental\flatsymbol}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\DeclareFlatSize}
+% The |\flat| math symbol is too small for properly typesetting
+% chord names.
+% (Its size was designed for staff notation not textual chord names.)
+% The correct size for the symbol should be approximately 30\% larger
+% than the current superscript size, or 90\% of the base font size $b$.
+% However, simply computing $0.9b$ does not work well because most fonts
+% do not render well in arbitrary sizes.
+% To solve the problem, we must therefore choose an appropriate size
+% individually for each possible base font size $b$.
+% This is the solution adopted by the rest of \LaTeX{} for such things.
+% For example, \LaTeX's |\DeclareMathSizes| macro defines an appropriate
+% superscript size for each possible base font size.
+% The macro below creates a similar macro that that defines an appropriate
+% flat-symbol size for each possible base font size.
+% \begin{macrocode}
+\newcommand\DeclareFlatSize[2]{%
+ \expandafter\xdef\csname SB@flatsize@#1\endcsname{#2}%
+}
+\DeclareFlatSize\@vpt\@vpt
+\DeclareFlatSize\@vipt\@vipt
+\DeclareFlatSize\@viipt\@vipt
+\DeclareFlatSize\@viiipt\@viipt
+\DeclareFlatSize\@ixpt\@viiipt
+\DeclareFlatSize\@xpt\@ixpt
+\DeclareFlatSize\@xipt\@xpt
+\DeclareFlatSize\@xiipt\@xipt
+\DeclareFlatSize\@xivpt\@xiipt
+\DeclareFlatSize\@xviipt\@xivpt
+\DeclareFlatSize\@xxpt\@xviipt
+\DeclareFlatSize\@xxvpt\@xxpt
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@flatsize}
+% Select the correct flat symbol size based on the current font size.
+% \begin{macrocode}
+\newcommand\SB@flatsize{%
+ \@ifundefined{SB@flatsize@\f@size}{}{%
+ \expandafter\fontsize%
+ \csname SB@flatsize@\f@size\endcsname\f@baselineskip%
+ \selectfont%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% In the following code, the |\ch|, |\mch|, |\[|\eat\], and |^| macros are
+% each defined to be a single macro that then expands to the real definition.
+% This is necessary because the top-level definitions of each must stay the
+% same in order to allow the lyric-scanning code to uniquely identify them,
+% yet their internal definitions must be redefined by code that turns
+% chords and/or measure bars on and off.
+% Such code redefines |\SB@ch|, |\SB@mch|, |\SB@bracket|, and |\SB@rechord|
+% to effect a change of mode without touching the top-level definitions.
+%
+% \begin{macro}{\ch}\MainImpl{ch}
+% \begin{macro}{\SB@ch}
+% \begin{macro}{\SB@ch@on}
+% \begin{macro}{\SB@@ch}
+% \begin{macro}{\SB@@@ch}
+% \begin{macro}{\SB@ch@off}
+% The |\ch| macro puts a chord atop a ligature without breaking the ligature.
+% Normally this just means placing the chord midway over the unbroken
+% ligature (ignoring the third argument completely).
+% However, when a previous chord macro encounters it while scanning ahead in
+% the input stream to parse its lyric, the |\ch| macro itself is not actually
+% expanded at all.
+% Instead, the chord macro scans ahead, spots the |\ch| macro, gobbles it,
+% and then steals its arguments, breaking the ligature with hyphenation.
+% Thus, the |\ch| macro is only actually expanded when the ligature
+% shouldn't be broken.
+% \begin{macrocode}
+\newcommand\ch{\SB@ch}
+\newcommand\SB@ch{}
+\newcommand\SB@ch@on{\SB@begincname\SB@@ch}
+\newcommand*\SB@@ch[1]{\SB@endcname\SB@@@ch{#1}}
+\newcommand*\SB@@@ch[4]{\[\SB@noreplay{\hphantom{#2}}#1]#4}
+\newcommand*\SB@ch@off[4]{#4}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \eat\]
+%
+% \begin{macro}{\mch}\MainImpl{mch}
+% \begin{macro}{\SB@mch}
+% \begin{macro}{\SB@mch@m}
+% \begin{macro}{\SB@mch@on}
+% \begin{macro}{\SB@@mch}
+% \begin{macro}{\SB@@@mch}
+% The |\mch| macro is like |\ch| except that it also introduces a measure
+% bar.
+% \begin{macrocode}
+\newcommand\mch{\SB@mch}
+\newcommand\SB@mch{}
+\newcommand*\SB@mch@m[4]{#2\measurebar#3}
+\newcommand\SB@mch@on{\SB@begincname\SB@@mch}
+\newcommand*\SB@@mch[1]{\SB@endcname\SB@@@mch{#1}}
+\newcommand*\SB@@@mch[4]{#2\measurebar\[#1]#3}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \eat\]
+%
+% \begin{macro}{\SB@activehat}
+% This macro must always contain the current definition of the |^|
+% chord-replay active character, in order for the lyric scanner to properly
+% identify it and insert proper hyphenation when necessary.
+% \begin{macrocode}
+\newcommand\SB@activehat{%
+ \ifmmode^\else\expandafter\SB@rechord\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@hat@tr}
+% In verses/choruses where chords are being memorized, |\SB@activehat|
+% gets set to this definition, which marks the current chord as immune to
+% memorization.
+% \begin{macrocode}
+\newcommand\SB@hat@tr{%
+ \ifmmode^\else\global\SB@nohatfalse\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@hat@notr}
+% In verses/choruses where chords are being replayed, |\SB@activehat|
+% get set to the following, which replays the next memorized chord and
+% subjects it to any required transposition and/or note conversion.
+% \begin{macrocode}
+\newcommand\SB@hat@notr{%
+ \ifmmode^\else%
+ \SB@lop\SB@ctail\SB@toks%
+ \expandafter\transposehere\expandafter{\the\SB@toks}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@loadactives}
+% It's cumbersome to have to type |\shrp|, |\flt|, and |\mbar| every time you
+% want a sharp, flat, or measure bar, so within verses and choruses we allow
+% the hash, ampersand, and pipe symbols to perform the those functions too.
+% It's also cumbersome to have to type something like |\chord{Am}{lyric}| to
+% produce each chord.
+% As an easier alternative, we here define |\[Am]|\eat\]
+% to typeset chords.
+% \begin{macrocode}
+\newcommand\SB@loadactives{}
+{
+ \catcode`&\active
+ \catcode`#\active
+ \catcode`|\active
+ \catcode`^\active
+ \global\let&\flt
+ \global\let#\shrp
+ \global\let|\measurebar
+ \global\let^\SB@activehat
+ \gdef\SB@loadactives{%
+ \catcode`^\ifchorded\active\else9 \fi%
+ \catcode`|\ifmeasures\active\else9 \fi%
+ \def\[{\SB@bracket}%
+ }
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Chord Replaying}
+%
+% \begin{macro}{\SB@trackch}
+% While inside a verse where the chord history is being remembered for future
+% verses, |\SB@trackch| is true.
+% \begin{macrocode}
+\newif\ifSB@trackch
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@cr@}
+% Reserve token registers to record a history of the chords seen in a verse.
+% \begin{macrocode}
+\SB@newtoks\SB@cr@
+\SB@newtoks\SB@ctail
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@creg}
+% The following control sequence equals the token register being memorized
+% into or replayed from.
+% \begin{macrocode}
+\newcommand\SB@creg{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\newchords}\MainImpl{newchords}
+% \changes{v2.6}{2008/02/23}{Added}
+% Allocate a new chord-replay register to hold memorized chords.
+% \begin{macrocode}
+\newcommand\newchords[1]{%
+ \@ifundefined{SB@cr@#1}{%
+ \expandafter\SB@newtoks\csname SB@cr@#1\endcsname%
+ \global\csname SB@cr@#1\endcsname{\\}%
+ }{\SB@errdup{#1}}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\memorize}\MainImpl{memorize}
+% \begin{macro}{\SB@memorize}
+% \changes{v2.6}{2008/02/23}{Optional argument added}
+% Saying |\memorize| throws out any previously memorized list of chords and
+% starts memorizing chords until the end of the current verse or chorus.
+% \begin{macrocode}
+\newcommand\memorize{%
+ \@ifnextchar[\SB@memorize{\SB@memorize[]}%
+}
+\newcommand\SB@memorize{}
+\def\SB@memorize[#1]{%
+ \@ifundefined{SB@cr@#1}{\SB@errreg{#1}}{%
+ \SB@trackchtrue%
+ \global\expandafter\let\expandafter\SB@creg%
+ \csname SB@cr@#1\endcsname%
+ \global\SB@creg{\\}%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\replay}\MainImpl{replay}
+% \begin{macro}{\SB@replay}
+% \begin{macro}{\SB@@replay}
+% \changes{v2.6}{2008/02/23}{Added}
+% Saying |\replay| stops any memorization and begins replaying memorized
+% chords.
+% \begin{macrocode}
+\newcommand\replay{\@ifnextchar[\SB@replay\SB@@replay}
+\newcommand\SB@replay{}
+\def\SB@replay[#1]{%
+ \@ifundefined{SB@cr@#1}{\SB@errreg{#1}}{%
+ \SB@trackchfalse%
+ \global\expandafter\let\expandafter\SB@creg%
+ \csname SB@cr@#1\endcsname%
+ \global\SB@ctail\SB@creg%
+ }%
+}
+\newcommand\SB@@replay{%
+ \SB@trackchfalse%
+ \global\SB@ctail\SB@creg%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@rechord}
+% \begin{macro}{\SB@@rechord}
+% Replay the same chord that was in a previous verse.
+% \begin{macrocode}
+\newcommand\SB@rechord{}
+\newcommand\SB@@rechord{%
+ \SB@ifempty\SB@ctail{%
+ \SB@errreplay%
+ \SB@toks{}%
+ \let\SB@donext\@gobble%
+ }{%
+ \SB@lop\SB@ctail\SB@toks%
+ \let\SB@donext\SB@chord%
+ \let\SB@noreplay\@gobble%
+ }%
+ \expandafter\SB@donext\the\SB@toks]%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@nohat}
+% The |\ifSB@nohat| conditional is set to false when a chord macro contains
+% a |^| in its argument.
+% This suppresses the recording mechanism momentarily so that replays will
+% skip this chord.
+% \begin{macrocode}
+\newif\ifSB@nohat
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@noreplay}
+% Sometimes material must be added to a chord but omitted when the chord is
+% replayed.
+% We accomplish this by enclosing such material in |\SB@noreplay| macros,
+% which are set to |\@gobble| just before a replay and reset to
+% |\@firstofone| at other times.
+% \begin{macrocode}
+\newcommand\SB@noreplay{}
+\let\SB@noreplay\@firstofone
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Guitar Tablatures}
+%
+% The song book software not only supports chord names alone, but can also
+% typeset guitar tablature diagrams. The macros for producing these diagrams
+% are found here.
+%
+% \begin{macro}{\SB@fretwidth}
+% Set the width of each vertical string in the tablature diagram.
+% \begin{macrocode}
+\newlength\SB@fretwidth
+\setlength\SB@fretwidth{6\p@}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@fretnum}
+% Typeset a fret number to appear to the left of the diagram.
+% \begin{macrocode}
+\newcommand\SB@fretnum[1]{{%
+ \sffamily\fontsize\@xpt\@xpt\selectfont#1%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@onfret}
+% Typeset one string of one fret with \argp{1} typeset overtop of it (usually
+% a dot or nothing at all).
+% \begin{macrocode}
+\newcommand\SB@onfret[1]{%
+ \kern.5\SB@fretwidth\kern-.2\p@%
+ \vrule\@height6\p@%
+ \kern-.2\p@\kern-.5\SB@fretwidth%
+ \hbox to\SB@fretwidth{\hfil#1\hfil}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@atopfret}
+% Typeset material (given by \argp{1}) to be placed above a string in the
+% tablature diagram.
+% \begin{macrocode}
+\newcommand\SB@atopfret[1]{%
+ \hbox to\SB@fretwidth{\hfil#1\hfil}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@fretbar}
+% Typeset a horizontal fret bar of width |\SB@dimen|.
+% \begin{macrocode}
+\newcommand\SB@fretbar{%
+ \nointerlineskip%
+ \hbox to\SB@dimen{%
+ \advance\SB@dimen-\SB@fretwidth%
+ \advance\SB@dimen.4\p@%
+ \hfil%
+ \vrule\@width\SB@dimen\@height.4\p@\@depth\z@%
+ \hfil%
+ }%
+ \nointerlineskip%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@topempty}
+% \begin{macro}{\SB@topX}
+% \begin{macro}{\SB@topO}
+% Above a string in a tablature diagram there can be nothing,
+% an $\times$, or an $\circ$.
+% \begin{macrocode}
+\newcommand\SB@topempty{\SB@atopfret\relax}
+\newcommand\SB@topX{\SB@atopfret{%
+ \hbox{%
+ \kern-.2\p@%
+ \fontencoding{OMS}\fontfamily{cmsy}%
+ \fontseries{m}\fontshape{n}%
+ \fontsize\@viipt\@viipt\selectfont\char\tw@%
+ \kern-.2\p@%
+ }%
+}}
+\newcommand\SB@topO{\SB@atopfret{%
+ \vrule\@width\z@\@height4.3333\p@\@depth.8333\p@%
+ \lower.74\p@\hbox{%
+ \fontencoding{OMS}\fontfamily{cmsy}%
+ \fontseries{m}\fontshape{n}%
+ \fontsize\@xpt\@xpt\selectfont\char14%
+ }%
+}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@doify}
+% \begin{macro}{\SB@@doify}
+% \begin{macro}{\SB@do}
+% Define the macro given in the first argument to equal the fully expanded
+% content of the second argument, but with |\SB@do| inserted before each token
+% or group.
+% \begin{macrocode}
+\newcommand\SB@do[1]{}
+\newcommand\SB@doify[2]{%
+ \SB@toks{}%
+ \edef#1{#2}%
+ \expandafter\SB@@doify#1\SB@@doify%
+ \edef#1{\the\SB@toks}%
+}
+\newcommand\SB@@doify[1]{%
+ \ifx#1\SB@@doify\else%
+ \SB@toks\expandafter{\the\SB@toks\SB@do{#1}}%
+ \expandafter\SB@@doify%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@allbarres}
+% \begin{macro}{\SB@dobarre}
+% Reserve a control sequence to remember all the stacks, start control
+% sequences, and end control sequences associated with barre delimiter pairs;
+% and a control sequence to perform an arbitrary action on them.
+% \begin{macrocode}
+\newcommand\SB@allbarres{}
+\newcommand\SB@dobarre{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@barreI}
+% \begin{macro}{\SB@barreN}
+% \begin{macro}{\SB@barreY}
+% As we process strings in order, barres in progress can be in one of three
+% states: initial (|\SB@barreI|), deactivated (|\SB@barreN|), or
+% tentatively activated (|\SB@barreY|).
+% \begin{macrocode}
+\newcommand\SB@barreI{\noexpand\SB@barreI}
+\newcommand\SB@barreN{\noexpand\SB@barreN}
+\newcommand\SB@barreY{\noexpand\SB@barreY}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@lowfret}
+% \begin{macro}{\SB@@lowfret}
+% If we see a lower numbered fret than the current fret within a barre,
+% deactivate the barre.
+% (It has already been shown on an earlier fret.)
+% \begin{macrocode}
+\newcommand\SB@lowfret{%
+ \let\SB@dobarre\SB@@lowfret\SB@allbarres%
+ \SB@fretempty%
+}
+\newcommand\SB@@lowfret[3]{{%
+ \let\SB@barreI\SB@barreN%
+ \let\SB@barreY\SB@barreN%
+ \xdef#1{#1}%
+}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@bactivate}
+% If we see the current fret within a barre, tentatively activate the barre
+% (unless it is already deactivated).
+% \begin{macrocode}
+\newcommand\SB@bactivate[3]{{%
+ \let\SB@barreI\SB@barreY%
+ \xdef#1{#1}%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@bbarre}
+% Starting a barre group pushes it onto its stack in the initial state.
+% \begin{macrocode}
+\newcommand\SB@bbarre[1]{%
+ \xdef#1{\SB@barreI{\the\SB@cntii}#1}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@ebarre}
+% \begin{macro}{\SB@@ebarre}
+% \begin{macro}{\SB@@@ebarre}
+% Ending a barre group pops it and draws it if it's active.
+% \begin{macrocode}
+\newcommand\SB@ebarre[3]{%
+ \ifx#1\@empty%
+ \ifnum\SB@cnt=\@ne\SB@errebar#2#3\fi%
+ \else%
+ \expandafter\SB@@ebarre#1\SB@@ebarre#1%
+ \fi%
+}
+\newcommand\SB@@ebarre{}
+\def\SB@@ebarre#1#2#3\SB@@ebarre#4{{%
+ \gdef#4{#3}%
+ \let\SB@barreI\@gobble%
+ \let\SB@barreN\@gobble%
+ \let\SB@barreY\SB@barre%
+ #1{#2}%
+}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@barreson}
+% \begin{macro}{\SB@barresoff}
+% Turn barre delimiters on or off, depending on whether we're typesetting
+% the interior or upper part of the tablature diagram.
+% \begin{macrocode}
+\newcommand\SB@barreson[3]{%
+ \def#2{\SB@bbarre#1}%
+ \def#3{\SB@ebarre#1#2#3}%
+}
+\newcommand\SB@barresoff[3]{\let#2\relax\let#3\relax}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@fretempty}
+% \begin{macro}{\SB@fretdot}
+% \begin{macro}{\SB@@fretdot}
+% On a string in a fret diagram there can be nothing or a filled circle.
+% \begin{macrocode}
+\newcommand\SB@fretempty{%
+ \advance\SB@cntii\@ne%
+ \SB@onfret\relax%
+}
+\newcommand\SB@fretdot{%
+ \advance\SB@cntii\@ne%
+ \let\SB@dobarre\SB@bactivate\SB@allbarres%
+ \SB@@fretdot%
+}
+\newcommand\SB@@fretdot{%
+ \SB@onfret{%
+ \fontencoding{OMS}\fontfamily{cmsy}%
+ \fontseries{m}\fontshape{n}%
+ \fontsize\@xiipt\@xiipt\selectfont\char15%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@barre}
+% Draw a barre.
+% \begin{macrocode}
+\newcommand\SB@barre[1]{{%
+ \SB@dimen\SB@fretwidth%
+ \multiply\SB@dimen\SB@cntii%
+ \advance\SB@dimen-#1\SB@fretwidth%
+ \kern-\SB@dimen%
+ \SB@@fretdot%
+ \kern-.5\SB@fretwidth%
+ \advance\SB@dimen-\SB@fretwidth%
+ \raise.7pt\hbox{\vrule\@height4.6\p@\@width\SB@dimen}%
+ \kern-.5\SB@fretwidth%
+ \SB@@fretdot%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@fretend}
+% At the end of a barred row in a tablature diagram, we auto-finish any
+% activated barres that weren't explicitly closed by the user.
+% \begin{macrocode}
+\newcommand\SB@fretend{{%
+ \let\SB@barreI\@gobble%
+ \let\SB@barreN\@gobble%
+ \let\SB@barreY\SB@barre%
+ \def\SB@dobarre##1##2##3{##1\gdef##1{}}\SB@allbarres%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@finger}
+% \begin{macro}{\SB@X}
+% \begin{macro}{\SB@Z}
+% \begin{macro}{\SB@O}
+% If we're including fingering info in the tablature diagram, then below
+% each string there might be a number.
+% \begin{macrocode}
+\newcommand*\SB@X{X}
+\newcommand*\SB@Z{0}
+\newcommand*\SB@O{O}
+\newcommand\SB@finger[1]{%
+ \def\SB@temp{#1}%
+ \ifx\SB@temp\SB@X\SB@topempty\else%
+ \ifx\SB@temp\SB@Z\SB@topempty\else%
+ \ifx\SB@temp\SB@O\SB@topempty\else%
+ \SB@atopfret{\sffamily\fontsize\@vipt\@vipt\selectfont#1}%
+ \fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\ifSB@gettabind}
+% \begin{macro}{\SB@tabindent}
+% Lyrics under tablature diagrams look odd if they aren't aligned with the
+% leftmost string of the diagram.
+% To accomplish this, the following two macros record the amount by which
+% a lyric under this tablature diagram must be indented to position it
+% properly.
+% \begin{macrocode}
+\newif\ifSB@gettabind\SB@gettabindfalse
+\SB@newdimen\SB@tabindent
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@targfret}
+% \begin{macro}{\SB@targstr}
+% \begin{macro}{\SB@targfing}
+% Reserve some macro names in which to store the three pieces of the
+% second argument to the |\gtab| macro.
+% The first is for the fret number, the second is for the \Meta{strings}
+% info, and the last is for the \Meta{fingering} info.
+% \begin{macrocode}
+\newcommand\SB@targfret{}
+\newcommand\SB@targstr{}
+\newcommand\SB@targfing{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% In general |\gtab| macros often appear inside chord macros, which means
+% that their arguments have already been scanned by the time the
+% |\gtab| macro itself is expanded.
+% This means that catcodes cannot be reassigned (without resorting to
+% $\varepsilon$-\TeX).
+%
+% We therefore adopt the alternative strategy of converting each token
+% in the \Meta{strings} and \Meta{fingering} arguments of a |\gtab| macro
+% into a control sequence (using |\csname|).
+% We can then temporarily assign meanings to those control sequences and
+% replay the arguments to achieve various effects.
+%
+% \begin{macro}{\SB@gtinit}
+% \begin{macro}{\SB@gtinc}
+% Different meanings are assigned to digits, |X|'s, and |O|'s
+% as we typeset each row of the interior of the diagram.
+% These meanings are set by |\SB@gtinit| and |\SB@gtinc|.
+% \begin{macrocode}
+\newcommand\SB@gtinit{%
+ \def\SB@do##1{\csname##1\endcsname}%
+ \let\O\0%
+ \let\3\2\let\4\2\let\5\2\let\6\2%
+ \let\7\2\let\8\2\let\9\2%
+}
+\newcommand\SB@gtinc{%
+ \advance\SB@cnt\@ne%
+ \let\9\8\let\8\7\let\7\6\let\6\5\let\5\4%
+ \let\4\3\let\3\2\let\2\1\let\1\SB@lowfret%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\BarreDelims}
+% \begin{macro}{\SB@bdelims}
+% Each pair of barre delimiters reserves a stack and augments the
+% initialization state to recognize those delimiters.
+% \begin{macrocode}
+\newcommand\BarreDelims[2]{%
+ \expandafter\SB@bdelims\csname SB@bs@#1#2\expandafter\endcsname%
+ \csname#1\expandafter\endcsname\csname#2\endcsname%
+}
+\newcommand\SB@bdelims[3]{%
+ \newcommand*#1{}%
+ \SB@app\def\SB@allbarres{\SB@dobarre#1#2#3}%
+}
+\BarreDelims()
+\BarreDelims[]
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\gtab}
+% \begin{macro}{\SB@gtab}
+% \changes{v2.9}{2009/03/27}{Fixed compatibility issue with Babel French}
+% A |\gtab| macro begins by setting catcodes suitable for parsing a chord
+% name as its first argument.
+% This allows tokens like |#| and |&| to be used for sharp and flat even
+% when |\gtab| is used outside a chord macro.
+% Colon is reset to a non-active character while processing the second
+% argument to avoid a potential conflict with \textsf{Babel} French.
+% \begin{macrocode}
+\newcommand\gtab{\SB@begincname\SB@gtab}
+\newcommand*\SB@gtab[1]{%
+ \SB@endcname%
+ \begingroup%
+ \catcode`:12\relax%
+ \SB@@gtab{#1}%
+}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@@gtab}
+% If transposition is currently taking place, allow the user to customize
+% the behavior by redefining |\gtabtrans|.
+% Using |\gtab| within |\gtabtrans| should go directly to |\SB@@@gtab|
+% (otherwise an infinite loop would result!).
+% \begin{macrocode}
+\newcommand*\SB@@gtab[2]{%
+ \endgroup%
+ \ifnum\SB@transposefactor=\z@%
+ \SB@@@gtab{#1}{#2}%
+ \else%
+ \begingroup%
+ \let\gtab\SB@@@gtab%
+ \gtabtrans{#1}{#2}%
+ \endgroup%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\gtabtrans}\MainImpl{gtabtrans}
+% By default, transposed guitar tablatures just display the transposed
+% chord name and omit the diagram.
+% Transposing a tablature diagram requires manual judgment calls for most
+% stringed instruments, so we can't do it automatically.
+% \begin{macrocode}
+\newcommand\gtabtrans[2]{\transposehere{#1}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@@@gtab}\MainImpl{gtab}
+% \changes{v2.13}{2011/04/16}{Added transposition for chord names}
+% Typeset a full tablature diagram.
+% Text \argp{1} is a chord name placed above the diagram.
+% Text \argp{2} consists of a colon-separated list of:
+% (1) an optional fret number placed to the left of the diagram;
+% (2) a sequence of tokens, each of which can be
+% |X| (to place an $\times$ above the string),
+% |0| or |O| (to place an $\circ$ above the string), or
+% one of |1| through |9| (to place a filled circle on that string at the
+% fret of the given number); and
+% (3) an optional sequence of tokens, each of which is either |0|
+% (no fingering information for that string),
+% or one of |1| through |4| (to place the given number under that string).
+% \begin{macrocode}
+\newcommand\SB@@@gtab[2]{%
+ \let\SB@targfret\@empty%
+ \let\SB@targstr\@empty%
+ \let\SB@targfing\@empty%
+ \SB@tabargs#2:::\SB@tabargs%
+ \ifx\SB@targstr\@empty%
+ \def\SB@targstr{\0\0\0\0\0\0}%
+ \fi%
+ \ifvmode\leavevmode\fi%
+ \vbox{%
+ \normalfont\normalsize%
+ \setbox\SB@box\hbox{%
+ \thinspace{\printchord{\transposehere{#1}\strut}}\thinspace%
+ }%
+ \setbox\SB@boxii\hbox{\SB@fretnum{\SB@targfret}}%
+ \setbox\SB@boxiii\hbox{{%
+ \let\X\SB@topX\let\0\SB@topO%
+ \let\1\SB@topempty\let\2\1%
+ \SB@gtinit%
+ \let\SB@dobarre\SB@barresoff\SB@allbarres%
+ \SB@targstr%
+ }}%
+ \hsize\wd\SB@box%
+ \ifSB@gettabind%
+ \global\SB@tabindent\wd\SB@boxii%
+ \global\advance\SB@tabindent.5\SB@fretwidth%
+ \global\advance\SB@tabindent-.5\p@%
+ \fi%
+ \SB@dimen\wd\SB@boxii%
+ \advance\SB@dimen\wd\SB@boxiii%
+ \ifdim\hsize<\SB@dimen%
+ \hsize\SB@dimen%
+ \else\ifSB@gettabind%
+ \SB@dimenii\hsize%
+ \advance\SB@dimenii-\SB@dimen%
+ \divide\SB@dimenii\tw@%
+ \global\advance\SB@tabindent\SB@dimenii%
+ \fi\fi%
+ \hbox to\hsize{\hfil\unhbox\SB@box\hfil}%
+ \kern-\p@\nointerlineskip%
+ \hbox to\hsize{%
+ \hfil%
+ \vtop{\kern\p@\kern2\p@\box\SB@boxii}%
+ \vtop{%
+ \SB@dimen\wd\SB@boxiii%
+ \box\SB@boxiii%
+ \let\X\SB@fretempty\let\0\X%
+ \let\1\SB@fretdot\def\2{\SB@fretempty\global\SB@testtrue}%
+ \SB@gtinit%
+ \let\SB@dobarre\SB@barreson\SB@allbarres%
+ \SB@cnt\@ne%
+ \loop%
+ \SB@testfalse%
+ \SB@fretbar\hbox{\SB@cntii\z@\SB@targstr\SB@fretend}%
+ \ifnum\SB@cnt<\minfrets\SB@testtrue\fi%
+ \ifSB@test\SB@gtinc\repeat%
+ \SB@fretbar%
+ \ifx\SB@targsfing\@empty\else%
+ \kern1.5\p@%
+ \hbox{\let\SB@do\SB@finger\SB@targfing}%
+ \fi%
+ }%
+ \hfil%
+ }%
+ \kern3\p@%
+ }%
+ \SB@gettabindfalse%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@tabargs}
+% \begin{macro}{\SB@@tabargs}
+% \begin{macro}{\SB@ctoken}
+% \changes{v3.1}{2017/06/23}{Allow macros within 2nd gtab arg}
+% Break the second argument to a |\gtab| macro into three sub-arguments.
+% The possible forms are:
+% (a) \Meta{strings},
+% (b) \Meta{fret}|:|\Meta{strings},
+% (c) \Meta{strings}|:|\Meta{fingering}, or
+% (d) \Meta{fret}|:|\Meta{strings}|:|\Meta{fingering}.
+% To distinguish forms (b) and (c), we count the number of tokens before
+% the first colon.
+% If there is only one token or group, we assume it must be form (b),
+% since frets larger than 9 and 1-stringed instruments are both rare.
+% Otherwise we assume form (c).
+% \begin{macrocode}
+\newcommand\SB@ctoken{} \def\SB@ctoken{:}
+\newcommand\SB@tabargs{}
+\def\SB@tabargs#1:#2:#3:#4\SB@tabargs{%
+ \def\SB@temp{#4}%
+ \ifx\SB@temp\@empty%
+ \SB@doify\SB@targstr{#1}%
+ \else\ifx\SB@temp\SB@ctoken%
+ \SB@@tabargs#1\SB@@tabargs%
+ \ifx\SB@temp\@empty%
+ \def\SB@targfret{#1}%
+ \SB@doify\SB@targstr{#2}%
+ \else%
+ \SB@doify\SB@targfing{#2}%
+ \SB@doify\SB@targstr{#1}%
+ \fi%
+ \else%
+ \def\SB@targfret{#1}%
+ \SB@doify\SB@targfing{#3}%
+ \SB@doify\SB@targstr{#2}%
+ \fi\fi%
+}
+\newcommand\SB@@tabargs{}
+\def\SB@@tabargs#1#2\SB@@tabargs{\def\SB@temp{#2}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Book Sectioning}
+%
+% The following macros divide the song book into distinct sections, each with
+% different headers, different song numbering styles, different indexes, etc.
+%
+% \begin{macro}{\songchapter}\MainImpl{songchapter}
+% \changes{v1.19}{2005/10/24}{Added}
+% Format the chapter header for a chapter in a song book.
+% By default, chapter headers on a song book omit the chapter number, but do
+% include an entry in the pdf index or table of contents.
+% Thus, the chapter has a number; it's just not displayed at the start of
+% the chapter.
+% \begin{macrocode}
+\newcommand\songchapter{%
+ \let\SB@temp\@seccntformat%
+ \def\@seccntformat##1{}%
+ \@startsection{chapter}{0}{\z@}%
+ {3.5ex\@plus1ex\@minus.2ex}%
+ {.4ex\let\@seccntformat\SB@temp}%
+ {\sffamily\bfseries\LARGE\centering}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\songsection}\MainImpl{songsection}
+% \changes{v1.19}{2005/10/24}{Section headers changed to omit numbers}
+% Format the section header for a section in a song book.
+% This is the same as for chapter headers except at the section level.
+% \begin{macrocode}
+\newcommand\songsection{%
+ \let\SB@temp\@seccntformat%
+ \def\@seccntformat##1{}%
+ \@startsection{section}{1}{\z@}%
+ {3.5ex\@plus1ex\@minus.2ex}%
+ {.4ex\let\@seccntformat\SB@temp}%
+ {\sffamily\bfseries\LARGE\centering}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{environment}{songs}\MainEnvImpl{songs}
+% \changes{v1.19}{2005/10/24}{Song numbers now starts at one instead of zero}
+% Begin and end a book section.
+% The argument is a list of indexes with which to associate songs in this
+% section.
+% \begin{macrocode}
+\newenvironment{songs}[1]{%
+ \ifSB@songsenv\SB@errnse\fi%
+ \gdef\SB@indexlist{#1}%
+ \SB@chkidxlst%
+ \stepcounter{SB@songsnum}%
+ \setcounter{songnum}{1}%
+ \let\SB@sgroup\@empty%
+ \ifinner\else\ifdim\pagetotal>\z@%
+ \null\nointerlineskip%
+ \fi\fi%
+ \songcolumns\SB@numcols%
+ \SB@songsenvtrue%
+}{%
+ \commitsongs%
+ \global\let\SB@indexlist\@empty%
+ \ifinner\else\clearpage\fi%
+ \SB@songsenvfalse%
+}
+% \end{macrocode}
+% \end{environment}
+%
+% Each |songs| section needs a unique number to aid in hyperlinking.
+% \begin{macrocode}
+\newcounter{SB@songsnum}
+% \end{macrocode}
+%
+% \subsection{Index Generation}
+% \label{sec:indexgen}
+%
+% The following macros generate the various types of indexes. At present there
+% are four types:
+% \begin{enumerate}
+% \item A ``large'' index has a separate section for each capital letter and
+% is printed in two columns.
+% \item A ``small'' index has only a single column, centered, and has no
+% sections.
+% \item A ``scripture'' index has three columns and each entry has a
+% comma-separated list of references.
+% \item An ``author'' index is like a large index except in bold and without
+% the sectioning.
+% \end{enumerate}
+% ``Large'' and ``small'' indexes will be chosen automatically based on the
+% number of index entries when building a song index. The other two types are
+% designated by the user.
+%
+% As is typical of \LaTeX{} indexes, generation of song book indexes requires
+% two passes of document compilation. During the first pass, data files are
+% generated with song titles, authors, and scripture references. An external
+% program is then used to produce \LaTeX{} source files from those data files.
+% During the second pass of document compilation, those source files are
+% imported to typeset all the indexes and display them in the document.
+%
+% Internally, this package code uses a \emph{four} step process to move
+% the index data from the source |.tex| file to the |.sxd| data files.
+% \begin{enumerate}
+% \item While the current song box is in the midst of construction,
+% the data is stored in a box of non-immediate write whatsit nodes.
+% \item The whatsits are migrated out to the top of the song box when
+% it is finalized at |\endsong|.
+% \item When the song box is shipped out to the output file, \TeX{} expands
+% the whatsits, causing the data to be written to the |.sxc| auxiliary file.
+% \item At the |\end{document}| line, the |.sxc| is processed multiple
+% times---once for each index---to split the data into the respective
+% |.sxd| files.
+% \end{enumerate}
+% The first and second steps allow index references to point to the
+% beginning of the song no matter where the indexing commands appear
+% within the song.
+% The third step allows \TeX{} to drop index entries that refer to
+% songs that do not actually appear in the output (e.g., because of
+% |\includeonlysongs|).
+% It also allows index entries to refer to information that is only decided
+% at shipout time, such as page numbers.
+% The fourth step allows all indexing to be accomplished with at most one
+% write register.
+% \LaTeX{} provides extremely few write registers, so using as
+% few as possible is essential for supporting books with many indexes.
+%
+% \begin{macro}{\songtarget}\MainImpl{songtarget}
+% This macro is invoked by each \mac{beginsong} environment with two arguments:
+% (1) a suggested pdf bookmark index level, and
+% (2) a target name to which hyperlinks for this song in the index will refer.
+% The macro is expected to produce a suitable pdf bookmark entry and/or
+% link target.
+% The default definition tries to use |\pdfbookmark| if generating a PDF,
+% and resorts to |\hypertarget| (if it exists) otherwise.
+% The user can redefine the macro to customize how and whether bookmarks
+% and/or links are created.
+% \begin{macrocode}
+\newcommand\songtarget[2]{%
+ \ifnum\@ne=0\ifSB@pdf\ifx\pdfbookmark\undefined\else%
+ \ifx\pdfbookmark\relax\else1\fi\fi\fi\relax%
+ \pdfbookmark[#1]{\thesongnum. \songtitle}{#2}%
+ \else\ifx\hypertarget\undefined%
+ \else\ifx\hypertarget\relax\else%
+ \hypertarget{#2}{\relax}%
+ \fi\fi\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\songlink}\MainImpl{songlink}
+% This macro is invoked by the index code to produce a link to a song target
+% created by \mac{songtarget}.
+% Its two arguments are:
+% (1) the target name (same as the second argument to \mac{songtarget}, and
+% (2) the text that is to be linked.
+% The default implementation uses |\hyperlink| if it exists; otherwise it
+% just leaves the text unlinked.
+% \begin{macrocode}
+\newcommand\songlink{%
+ \ifnum\@ne=0\ifx\hyperlink\undefined\else%
+ \ifx\hyperlink\relax\else1\fi\fi\relax%
+ \expandafter\hyperlink%
+ \else%
+ \expandafter\@gobble%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@indexlist}
+% This macro records the comma-separated list of the identifiers of indexes
+% associated with the current book section.
+% \begin{macrocode}
+\newcommand\SB@indexlist{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@allindexes}
+% This macro records a comma-separated list of all the index identifiers
+% for the entire document.
+% \begin{macrocode}
+\newcommand\SB@allindexes{}
+\let\SB@allindexes\@empty
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@out}
+% The |\SB@out| control sequence is reserved for the write register allocated
+% by the package code, if one is needed.
+% (It is allocated at the first index declaration.)
+% \begin{macrocode}
+\newcommand\SB@out{}
+\let\SB@out\relax
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@newindex}
+% Initialize a new title, author, or scripture index.
+% \begin{macrocode}
+\newcommand\SB@newindex[4]{%
+ \expandafter\newcommand\csname SB@idxfilename@#3\endcsname{#4}%
+ \expandafter\newcommand\csname SB@idxsel@#3\endcsname[3]{###1}%
+ \expandafter\newcommand\csname SB@idxref@#3\endcsname{\thesongnum}%
+ \xdef\SB@allindexes{%
+ \ifx\SB@allindexes\@empty\else\SB@allindexes,\fi#3%
+ }%
+ \if@filesw%
+ \ifx\SB@out\relax%
+ \SB@newwrite\SB@out%
+ \immediate\openout\SB@out=\jobname.sxc\relax%
+ \fi%
+ \immediate\write\SB@out{\noexpand\SB@iwrite{#3}{#2}}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\newindex}\MainImpl{newindex}
+% Define a new title index.
+% The first argument is an identifier for the index (used in constructing
+% index-specific control sequence names).
+% The second argument is a filename root; auxiliary file \argp{2}|.sxd| is
+% where the index data is stored at the end of processing.
+% \begin{macrocode}
+\newcommand\newindex{\SB@newindex1{TITLE INDEX DATA FILE}}
+\@onlypreamble\newindex
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\newscripindex}\MainImpl{newscripindex}
+% Define a new scripture index. This is exactly like |\newindex| except that
+% scripture references are added to the auxiliary file instead of titles.
+% \begin{macrocode}
+\newcommand\newscripindex{\SB@newindex2{SCRIPTURE INDEX DATA FILE}}
+\@onlypreamble\newscripindex
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\newauthorindex}\MainImpl{newauthorindex}
+% Define a new author index. This is exactly like |\newindex| except that
+% author info is added to the auxiliary file instead of titles.
+% \begin{macrocode}
+\newcommand\newauthorindex{\SB@newindex3{AUTHOR INDEX DATA FILE}}
+\@onlypreamble\newauthorindex
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@cwrite}
+% Write index data to a Song indeX Combined (|.sxc|) auxiliary file.
+% The first argument is the identifier for the index to which the data
+% ultimately belongs.
+% The second argument is the data itself.
+% The write is non-immediate so that it is only output if its enclosing
+% song is ultimately shipped to the output file.
+% \begin{macrocode}
+\newcommand\SB@cwrite[2]{%
+ \ifx\SB@out\relax\else%
+ \protected@write\SB@out\SB@keepactive{\protect\SB@iwrite{#1}{#2}}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@keepactive}
+% By default, the |inputenc| package expands Unicode characters into macro
+% names when writing them to files.
+% This behavior must be inhibited when writing to the |.sxc| file, since
+% |songidx| needs the original Unicode characters for sorting.
+% To achieve this, we temporarily redefine most active characters so that
+% they expand to an unexpandable string version of themselves.
+% \begin{macrocode}
+\newcommand\SB@keepactive{}
+{\catcode`\~\active
+ \catcode`\.12
+ \def\\#1#2{%
+ \endgroup
+ \SB@app\gdef\SB@keepactive{\def#1{#2}}%
+ }
+ \def\SB@temp#1#2{%
+ \SB@cnt#1\relax
+ \loop
+ \begingroup
+ \uccode`\~\SB@cnt
+ \uccode`\.\SB@cnt
+ \uppercase{\\~.}
+ \ifnum\SB@cnt<#2\relax
+ \advance\SB@cnt\@ne
+ \repeat
+ }
+ \SB@temp{1}{8}
+ \SB@temp{11}{11}
+ \SB@temp{14}{91}
+ \SB@temp{93}{255}
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@iwrite}
+% The line contributed by |\SB@cwrite| to the |.sxc| file is an |\SB@iwrite|
+% macro that re-outputs the data to an appropriate |.sxd| file.
+% \begin{macrocode}
+\newcommand\SB@iwrite[2]{%
+ \def\SB@tempii{#1}%
+ \ifx\SB@temp\SB@tempii%
+ \SB@toks{#2}%
+ \immediate\write\SB@out{\the\SB@toks}%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@uncombine}
+% At the end of the document, the |.sxc| file can be processed multiple
+% times to produce all the |.sxd| files without resorting to multiple write
+% registers.
+% Each pass activates the subset of the |\SB@iwrite| commands that apply to
+% one index.
+% \begin{macrocode}
+\newcommand\SB@uncombine{%
+ \ifx\SB@out\relax\else%
+ \immediate\closeout\SB@out%
+ \ifsongindexes%
+ \@for\SB@temp:=\SB@allindexes\do{%
+ \immediate\openout\SB@out=%
+ \csname SB@idxfilename@\SB@temp\endcsname.sxd\relax%
+ \begingroup\makeatletter\catcode`\%12\relax%
+ \input{\jobname.sxc}\endgroup%
+ \immediate\closeout\SB@out%
+ }%
+ \fi%
+ \fi%
+}
+\AtEndDocument{\SB@uncombine}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@songwrites}
+% The following box register stores index data until it can be migrated to
+% the top of the song box currently under construction.
+% \begin{macrocode}
+\SB@newbox\SB@songwrites
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@addtoindex}
+% \changes{v2.8}{2009/02/03}{Writes made non-immediate}
+% Queue data \argp{2} associated with the current song for eventual writing
+% to the index whose identifier is given by \argp{1}.
+% \begin{macrocode}
+\newcommand\SB@addtoindex[2]{%
+ \protected@edef\SB@tempii{#2}%
+ \ifx\SB@tempii\@empty\else%
+ \global\setbox\SB@songwrites\vbox{%
+ \unvbox\SB@songwrites%
+ \SB@cwrite{#1}{#2}%
+ \SB@cwrite{#1}{\csname SB@idxref@#1\endcsname}%
+ \SB@cwrite{#1}{song\theSB@songsnum-\thesongnum.%
+ \ifnum\c@section=\z@1\else2\fi}%
+ }%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@addtoindexes}
+% Add \argp{1} to all title indexes, \argp{2} to all scripture indexes, and
+% \argp{3} to all author indexes.
+% \begin{macrocode}
+\newcommand\SB@addtoindexes[3]{%
+ \@for\SB@temp:=\SB@indexlist\do{%
+ \SB@addtoindex\SB@temp%
+ {\csname SB@idxsel@\SB@temp\endcsname{#1}{#2}{#3}}%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@addtotitles}
+% Add \argp{1} to all title indexes, but leave other indexes unaffected.
+% \begin{macrocode}
+\newcommand\SB@addtotitles[1]{%
+ \@for\SB@temp:=\SB@indexlist\do{%
+ \csname SB@idxsel@\SB@temp\endcsname%
+ {\SB@addtoindex\SB@temp{#1}}{}{}%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@chkidxlst}
+% \changes{v2.3}{2007/09/23}{Added.}
+% Check the current list of indexes and flag an error if any are undefined.
+% \begin{macrocode}
+\newcommand\SB@chkidxlst{%
+ \let\SB@temp\SB@indexlist%
+ \let\SB@indexlist\@empty%
+ \@for\SB@tempii:=\SB@temp\do{%
+ \@ifundefined{SB@idxsel@\SB@tempii}{\SB@errnoidx\SB@tempii}{%
+ \ifx\SB@indexlist\@empty%
+ \SB@toks\expandafter{\SB@tempii}%
+ \else%
+ \SB@toks\expandafter\expandafter\expandafter{%
+ \expandafter\SB@indexlist\expandafter,\SB@tempii}%
+ \fi%
+ \edef\SB@indexlist{\the\SB@toks}%
+ }%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\indexentry}\MainImpl{indexentry}
+% \changes{v2.3}{2007/09/23}{Optional argument added}
+% \begin{macro}{\SB@idxentry}
+% \begin{macro}{\SB@@idxentry}
+% |\SB@addtoindexes| will be called automatically for each song in a section.
+% However, |\indexentry| may be called by the user in order to add an
+% alternative index entry for the given song.
+% Usually this is done to index the song by its first line or some other
+% memorable line in a chorus or verse somewhere.
+% \begin{macrocode}
+\newcommand\indexentry{\@ifnextchar[{\SB@idxentry*}{\SB@@idxentry*}}
+\newcommand\SB@idxentry{}
+\def\SB@idxentry#1[#2]#3{{%
+ \def\SB@indexlist{#2}%
+ \SB@chkidxlst%
+ \SB@addtoindexes{#1#3}{#3}{#3}%
+}}
+\newcommand\SB@@idxentry[2]{\SB@addtotitles{#1#2}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\indextitleentry}\MainImpl{indextitleentry}
+% \changes{v2.3}{2007/09/23}{Optional argument added}
+% |\indextitleentry| may be used to add an alternate title for the song to
+% the index.
+% (The only difference between the effects of |\indexentry| and
+% |\indextitleentry| is that the latter are italicized in the rendered index
+% and the former are not.)
+% \begin{macrocode}
+\newcommand\indextitleentry{%
+ \@ifnextchar[{\SB@idxentry{}}{\SB@@idxentry{}}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\indexsongsas}\MainImpl{indexsongsas}
+% \changes{v2.8}{2009/02/03}{Added.}
+% The following macro allows the user to change how songs are indexed on the
+% right side of index entries.
+% By default, the song's number is listed.
+% \begin{macrocode}
+\newcommand\indexsongsas[1]{%
+ \@ifundefined{SB@idxref@#1}%
+ {\SB@errnoidx{#1}\@gobble}%
+ {\expandafter\renewcommand\csname SB@idxref@#1\endcsname}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxcmd}
+% \begin{macro}{\SB@@idxcmd}
+% \begin{macro}{\authsepword}\MainImpl{authsepword}
+% \begin{macro}{\authbyword}\MainImpl{authbyword}
+% \begin{macro}{\authignoreword}\MainImpl{authignoreword}
+% \begin{macro}{\titleprefixword}\MainImpl{titleprefixword}
+% \changes{v2.0}{2007/06/18}{Added.}
+% The |songidx| index-generation script understands several different
+% directives that each dictate various aspects of how index entries are
+% parsed, sorted, and displayed.
+% Such directives should typically appear at the start of the |.sxd|
+% file just after the header line that identifies the type of index.
+% \begin{macrocode}
+\newcommand\SB@idxcmd[3]{%
+ \ifx\SB@allindexes\@empty%
+ \SB@warnnoidx%
+ \else\ifx\SB@out\relax\else%
+ \@for\SB@temp:=\SB@allindexes\do{%
+ \csname SB@idxsel@\SB@temp\endcsname%
+ {\SB@@idxcmd{#1}}{\SB@@idxcmd{#2}}{\SB@@idxcmd{#3}}%
+ }%
+ \fi\fi%
+}
+\newcommand\SB@@idxcmd[1]{%
+ \def\SB@tempii{#1}%
+ \ifx\SB@tempii\@empty\else%
+ \immediate\write\SB@out{%
+ \noexpand\SB@iwrite{\SB@temp}{#1}%
+ }%
+ \fi%
+}
+\newcommand\authsepword[1]{}
+\newcommand\authbyword[1]{}
+\newcommand\authignoreword[1]{}
+\newcommand\titleprefixword[1]{}
+{\catcode`\%=12
+ \gdef\authsepword#1{\SB@idxcmd{}{}{%sep #1}}
+ \gdef\authbyword#1{\SB@idxcmd{}{}{%after #1}}
+ \gdef\authignoreword#1{\SB@idxcmd{}{}{%ignore #1}}
+ \gdef\titleprefixword#1{\SB@idxcmd{%prefix #1}{}{}}}
+\@onlypreamble\authsepword
+\@onlypreamble\authbyword
+\@onlypreamble\authignoreword
+\@onlypreamble\titleprefixword
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxlineskip}
+% Set the spacing between lines in an index.
+% \begin{macrocode}
+\newcommand\SB@idxlineskip[1]{%
+ \vskip#1\p@\@plus#1\p@\@minus#1\p@%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% When rendering an index entry $X\ldots Y$ that is too long to fit on one
+% physical line, we must break text $X$ and/or $Y$ up into multiple lines.
+% Text $X$ should be typeset as a left-justified paragraph with a right
+% margin of about 2em; however, its final line must not be so long that it
+% cannot fit even the first item of list $Y$.
+% Text $Y$ should be typeset as a right-justified paragraph whose first line
+% begins on the last line of $X$.
+% However, breaking $Y$ up the way paragraphs are normally broken up doesn't
+% work well because that causes most of $Y$ to be crammed into the first few
+% lines, leaving the last line very short.
+% This looks strange and is hard to read.
+% It looks much better to instead break $Y$ up in such a way that the portion
+% of $Y$ that is placed on each line is of approximately equal width (subject
+% to the constraint that we don't want to introduce any more lines than are
+% necessary).
+% This makes it visually clear that all of these lines are associated with $X$.
+% The following code performs the width computations that do this
+% horizontal-balancing of text.
+%
+% \begin{macro}{\SB@ellipspread}
+% Typeset an index entry of the form $X\ldots Y$.
+% In the common case, the entire entry fits on one line so we just typeset
+% it in the usual way.
+% If it doesn't fit on one line, we call |\SB@balancerows| for a more
+% sophisticated treatment.
+% \begin{macrocode}
+\newcommand\SB@ellipspread[2]{%
+ \begingroup%
+ \SB@dimen\z@%
+ \def\SB@temp{#1}%
+ \SB@toks{#2}%
+ \setbox\SB@box\hbox{{%
+ \SB@temp%
+ \leaders\hbox to.5em{\hss.\hss}\hskip2em\@plus1fil%
+ {\the\SB@toks}%
+ }}%
+ \ifdim\wd\SB@box>\hsize%
+ \SB@balancerows%
+ \else%
+ \hbox to\hsize{\unhbox\SB@box}\par%
+ \fi%
+ \endgroup%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@balancerows}
+% Typeset an index entry of the form $X\ldots Y$ that doesn't fit on one line,
+% where $X$ is the content of macro |\SB@temp| and
+% $Y$ is the content of token register |\SB@toks|.
+%
+% First, we must pre-compute the width $w_1$ of the final line of $X$ when
+% $X$ is typeset as a left-justified paragraph, storing it in |\SB@dimenii|.
+% This is necessary because in order to force \TeX{} to typeset the first
+% line of $Y$ at some chosen width $w_2$, we must insert leaders of width
+% $c-w_1-w_2$ into the paragraph between $X$ and $Y$, where $c$ is the column
+% width.
+%
+% Computing this width $w_1$ is a bit tricky.
+% We must tell \TeX{} that the last line of $X$ must not be so long that it
+% does not even have room for the first item of $Y$.
+% Thus, we must strip off the first item of $Y$ and add it (or a non-breaking
+% space of equivalent width) to the end of $X$ to typeset the paragraph.
+% Then we use |\lastbox| to pull off the final line and check its width.
+% \begin{macrocode}
+\newcommand\SB@balancerows{%
+ \edef\SB@tempii{\the\SB@toks}%
+ \setbox\SB@box\vbox{%
+ \SB@toks\expandafter{\expandafter\\\the\SB@toks\\}%
+ \SB@lop\SB@toks\SB@toks%
+ \settowidth\SB@dimen{\the\SB@toks}%
+ \advance\SB@dimen-.5em%
+ \leftskip.5cm%
+ {\hbadness\@M\hfuzz\maxdimen%
+ \hskip-.5cm\relax\SB@temp\unskip\nobreak%
+ \hskip\SB@dimen\nobreak%
+ \rightskip2em\@plus1fil\par}%
+ \setbox\SB@box\lastbox%
+ \setbox\SB@box\hbox{%
+ \unhbox\SB@box%
+ \unskip\unskip\unpenalty%
+ \unpenalty\unskip\unpenalty%
+ }%
+ \expandafter%
+ }%
+ \expandafter\SB@dimenii\the\wd\SB@box\relax%
+% \end{macrocode}
+% Next, compute the smallest width $w_2$ such that the index entry text
+% produced by |\SB@multiline| with |\SB@dimen|=$w_2$ has no more lines than
+% with |\SB@dimen| set to the maximum available width for the right-hand side.
+% This effectively horizontal-balances the right-hand side of the index entry
+% text, making all lines of $Y$ roughly equal in width without introducing
+% any extra lines.
+% \begin{macrocode}
+ \SB@dimen\hsize%
+ \advance\SB@dimen-.5cm%
+ \setbox\SB@box\vbox{%
+ \SB@multiline{\hbadness\@M\hfuzz\maxdimen}%
+ }%
+ \SB@dimeniii.5\SB@dimen%
+ \SB@dimeniv\SB@dimeniii%
+ \loop%
+ \SB@dimeniv.5\SB@dimeniv%
+ \setbox\SB@boxii\vbox{%
+ \SB@dimen\SB@dimeniii%
+ \SB@multiline{\hbadness\@M\hfuzz\maxdimen}%
+ }%
+ \ifnum\SB@cnt<\@M%
+ \ifdim\ht\SB@boxii>\ht\SB@box%
+ \advance\SB@dimeniii\SB@dimeniv%
+ \else%
+ \SB@dimen\SB@dimeniii%
+ \advance\SB@dimeniii-\SB@dimeniv%
+ \fi%
+ \else%
+ \advance\SB@dimeniii\SB@dimeniv%
+ \fi%
+ \ifdim\SB@dimeniv>2\p@\repeat%
+ \setbox\SB@box\box\voidb@x%
+ \setbox\SB@boxii\box\voidb@x%
+% \end{macrocode}
+% Finally, typeset the results based on the quantities computed above.
+% \begin{macrocode}
+ \SB@multiline\relax%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@multiline}
+% Create a paragraph containing text $X\ldots Y$
+% where $X$ is the content of |\SB@temp|, $Y$ is the content of |\SB@tempii|,
+% and $Y$ is restricted to width |\SB@dimen| (but may span multiple
+% lines of that width).
+% Dimen register |\SB@dimenii| must be set with the expected width of the
+% final line of $X$.
+% The first argument contains any parameter definitions that should be in
+% effect when $X$ is processed.
+%
+% Note that the expansion of |\SB@tempii|, which may contain |\SB@idxitemsep|,
+% depends on |\SB@dimen|.
+% Therefore, the redefinition of |\SB@dimen| at the start of this macro must
+% not be removed!
+% \begin{macrocode}
+\newcommand\SB@multiline[1]{%
+ \begingroup%
+ \SB@dimen-\SB@dimen%
+ \advance\SB@dimen\hsize%
+ \SB@dimenii-\SB@dimenii%
+ \advance\SB@dimenii\SB@dimen%
+ {#1\hskip-.5cm\relax\SB@temp\unskip\nobreak%
+ \SB@maxmin\SB@dimenii<{1.5em}%
+ \leftskip.5cm\rightskip2em\@plus1fil%
+ \interlinepenalty\@M%
+ \leaders\hbox to.5em{\hss.\hss}\hskip\SB@dimenii\@plus1fill%
+ \nobreak{\SB@tempii\kern-2em}%
+ \par\global\SB@cnt\badness}%
+ \endgroup%
+}%
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxitemsep}
+% \changes{v1.11}{2005/04/21}{Changed macro name to avoid a name clash}
+% If text $Y$ in index entry $X\ldots Y$ has multiple items in a list, those
+% items should be separated by |\\| macros instead of by commas.
+% The |\\| macro will be assigned the definition of |\SB@idxitemsep| during
+% index generation, which produces the comma along with the complex spacing
+% required if $Y$ ends up being broken into multiple lines.
+% In particular, it forces each wrapped line of $Y$ to be right-justified
+% with left margin at least |\SB@dimen|.
+% \begin{macrocode}
+\newcommand\SB@idxitemsep{%
+ ,\kern-2em\penalty-8\hskip2.33em\@minus.11em%
+ \hskip-\SB@dimen\@plus-1fill%
+ \vadjust{}\nobreak%
+ \hskip\SB@dimen\@plus1fill\relax%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% The following set of macros and environments are intended for use in the
+% |.sbx| files that are automatically generated by an index-generating
+% program; they shouldn't normally appear in the user's |.tex| or |.sbd|
+% files directly.
+% However, they are named as exported macros (no |@| symbols) since they are
+% used outside the package code and are therefore not stricly internal.
+%
+% \begin{environment}{idxblock}
+% Some indexes are divided into blocks (e.g., one for each letter of the
+% alphabet or one for each book of the bible).
+% Each such block should be enclosed between |\begin{idxblock}{X}| and
+% |\end{idxblock}| lines, where X is the title of the block. The actual
+% definition of the |idxblock| environment is set within the initialization
+% code for each type of index (below).
+% \begin{macrocode}
+\newenvironment{idxblock}[1]{}{}
+% \end{macrocode}
+% \end{environment}
+%
+% \begin{macro}{\idxentry}
+% \begin{macro}{\idxaltentry}
+% Within each |idxblock| environment there should be a series of |\idxentry|
+% and/or |\idxaltentry| macros, one for each line of the index. Again, the
+% exact definitions of these macros will vary between index types.
+% \begin{macrocode}
+\newcommand\idxentry[2]{}
+\newcommand\idxaltentry[2]{}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{environment}{SB@lgidx}
+% \begin{environment}{SB@smidx}
+% Some indexes actually have two definitions for each |idxblock|
+% environment---one for use when there are few enough entries to permit a
+% small style index, and another for use in a large style index. These macros
+% will be redefined appropriately within the initialization code for each
+% type of index.
+% \begin{macrocode}
+\newenvironment{SB@lgidx}[1]{}{}
+\newenvironment{SB@smidx}[1]{}{}
+% \end{macrocode}
+% \end{environment}
+% \end{environment}
+%
+% \begin{macro}{\SB@idxsetup}
+% Set various parameters for a column of an index environment.
+% \begin{macrocode}
+\newcommand\SB@idxsetup{%
+ \hsize\SB@colwidth%
+ \parskip\z@skip\parfillskip\z@skip\parindent\z@%
+ \baselineskip\f@size\p@\@plus\p@\@minus\p@%
+ \lineskiplimit\z@\lineskip\p@\@plus\p@\@minus\p@%
+ \hyphenpenalty\@M\exhyphenpenalty\@M%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@makeidxcolumn}
+% Break off enough material from |\SB@box| to create one column of the
+% index.
+% \begin{macrocode}
+\newcommand\SB@makeidxcolumn{%
+ \ifdim\ht\SB@box=\z@%
+ \hskip\hsize\relax%
+ \else%
+ \splittopskip\z@skip\splitmaxdepth\maxdepth%
+ \vsplit\SB@box to\SB@dimen%
+ \global\setbox\SB@box\vbox{%
+ \SB@idxsetup%
+ \splitbotmark%
+ \unvbox\SB@box%
+ }%
+ \fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@oneidxpage}
+% Construct one full page of the index.
+% The definition of |\SB@oneidxpage| is generated dynamically based on the
+% type of index and number of columns.
+% \begin{macrocode}
+\newcommand\SB@oneidxpage{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@displayindex}
+% \changes{v1.11}{2005/04/21}{Item separator macro now localized in scope to the index file}
+% \changes{v2.0}{2007/06/18}{Removed hyperref dependency}
+% \changes{v2.6}{2008/02/16}{Balance columns on final page}
+% \changes{v2.8}{2009/03/06}{Changed argument order}
+% Create an index with title \argp{2} and with \argp{1} columns (must be a
+% literal constant). Input the index contents from external file \argp{3},
+% which is expected to be a \TeX{} file.
+% \begin{macrocode}
+\newcommand\SB@displayindex[3]{%
+ \ifsongindexes\begingroup%
+ \SB@colwidth\hsize%
+ \advance\SB@colwidth-#1\columnsep%
+ \advance\SB@colwidth\columnsep%
+ \divide\SB@colwidth#1%
+ \setbox\SB@envbox\vbox{%
+ \let\SB@temp\songsection%
+ \ifx\chapter\undefined\else%
+ \ifx\chapter\relax\else%
+ \let\SB@temp\songchapter%
+ \fi%
+ \fi%
+ \SB@temp{#2}%
+ }%
+% \end{macrocode}
+% The |.sbx| index file might not exist (e.g., if this is the first pass
+% through the \TeX{} compiler).
+% If it exists, first try typesetting its content as a small index
+% (one column, centered, with no divisions).
+% \begin{macrocode}
+ \IfFileExists{\csname SB@idxfilename@#3\endcsname.sbx}{%
+ \ifsepindexes%
+ \global\setbox\SB@box\vbox{%
+ \null%
+ \vfil%
+ \unvcopy\SB@envbox%
+ \vskip.5in\@minus.3in\relax%
+ \hbox to\hsize{%
+ \hfil%
+ \vbox{%
+ \SB@idxsetup%
+ \renewenvironment{idxblock}[1]%
+ {\begin{SB@smidx}{####1}}{\end{SB@smidx}}%
+ \let\\\SB@idxitemsep%
+ \input{\csname SB@idxfilename@#3\endcsname.sbx}%
+ }%
+ \hfil%
+ }%
+ \vskip\z@\@plus2fil\relax%
+ }%
+% \end{macrocode}
+% Test whether the resulting small index fits within one page.
+% If not, re-typeset it as a large index.
+% \begin{macrocode}
+ {\vbadness\@M\vfuzz\maxdimen%
+ \splitmaxdepth\maxdepth\splittopskip\z@skip%
+ \global\setbox\SB@boxii\vsplit\SB@box to\textheight}%
+ \ifvoid\SB@box%
+ \box\SB@boxii%
+ \else%
+ \SB@lgindex{#1}{#3}%
+ \fi%
+ \else%
+ \SB@lgindex{#1}{#3}%
+ \fi%
+ }%
+% \end{macrocode}
+% If the |.sbx| file doesn't exist, then instead typeset a page with a
+% message on it indicating that the document must be compiled a second
+% time in order to generate the index.
+% \begin{macrocode}
+ {%
+ \ifsepindexes%
+ \vbox to\textheight{%
+ \vfil%
+ \unvbox\SB@envbox%
+ \vskip1em\relax%
+ \hbox to\hsize{\hfil[Index not yet generated.]\hfil}%
+ \vskip\z@\@plus2fil\relax%
+ }%
+ \else%
+ \unvbox\SB@envbox%
+ \hbox to\hsize{\hfil[Index not yet generated.]\hfil}%
+ \fi%
+ }%
+ \ifsepindexes\clearpage\fi%
+ \endgroup\fi%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@lgindex}
+% Typeset a large-style index.
+% We begin by typesetting the entire index into a box.
+% \begin{macrocode}
+\newcommand\SB@lgindex[2]{%
+ \global\setbox\SB@box\vbox{%
+ \renewenvironment{idxblock}[1]%
+ {\begin{SB@lgidx}{##1}}{\end{SB@lgidx}}%
+ \let\\\SB@idxitemsep%
+ \SB@idxsetup%
+ \input{\csname SB@idxfilename@#2\endcsname.sbx}%
+ \unskip%
+ }%
+% \end{macrocode}
+% Next, we split the box into columns and pages until the last page is reached.
+% \begin{macrocode}
+ \SB@toks{\SB@makeidxcolumn}%
+ \SB@cnt#1\relax%
+ \loop\ifnum\SB@cnt>\@ne%
+ \SB@toks\expandafter{\the\SB@toks%
+ \kern\columnsep\SB@makeidxcolumn}%
+ \advance\SB@cnt\m@ne%
+ \repeat%
+ \edef\SB@oneidxpage{\the\SB@toks}%
+ \unvbox\SB@envbox%
+ \vskip.2in\relax%
+ \nointerlineskip%
+ \null%
+ \nointerlineskip%
+ \SB@cnt\vbadness\vbadness\@M%
+ \SB@dimenii\vfuzz\vfuzz\maxdimen%
+ \loop%
+ \SB@dimen\textheight%
+ \ifinner\else\kern\z@\advance\SB@dimen-\pagetotal\fi%
+ \global\setbox\SB@boxii\copy\SB@box%
+ \global\setbox\SB@boxiii\hbox{\SB@oneidxpage}%
+ \ifdim\ht\SB@box>\z@%
+ \box\SB@boxiii%
+ \vfil\break%
+ \repeat%
+% \end{macrocode}
+% The final page of the index should have all equal-height columns instead
+% of a few full columns followed by some short or empty columns at the end.
+% To achieve this, we re-typeset the final page, trying different column
+% heights until we find one that causes the material to span an equal
+% percentage of all the columns on the page.
+% \begin{macrocode}
+ \SB@dimenii\ht\SB@boxii%
+ \divide\SB@dimenii#1\relax%
+ \SB@maxmin\SB@dimen>\SB@dimenii%
+ \loop%
+ \global\setbox\SB@box\copy\SB@boxii%
+ \global\setbox\SB@boxiii\hbox{\SB@oneidxpage}%
+ \ifdim\ht\SB@box>\z@%
+ \advance\SB@dimen\p@%
+ \repeat%
+ \box\SB@boxiii%
+ \global\setbox\SB@boxii\box\voidb@x%
+ \vbadness\SB@cnt\vfuzz\SB@dimenii%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\showindex}\MainImpl{showindex}
+% \changes{v2.8}{2009/03/06}{Added optional argument}
+% Create an index with title \argp{2} based on the data associated with index
+% identifier \argp{3} (which was passed to |\newindex|).
+% Optional argument \argp{1} specifies the number of columns.
+% This macro calls the appropriate index-creation macro depending on the type
+% of index that \argp{3} was declared to be.
+% \begin{macrocode}
+\newcommand\showindex[3][0]{%
+ \@ifundefined{SB@idxsel@#3}{\SB@errnoidx{#3}}{%
+ \expandafter\let\expandafter\SB@temp\csname SB@idxsel@#3\endcsname%
+ \SB@cnt#1\relax%
+ \ifnum\SB@cnt<\@ne\SB@cnt\SB@temp232\relax\fi%
+ \expandafter\SB@temp%
+ \expandafter\SB@maketitleindex%
+ \expandafter\SB@makescripindex%
+ \expandafter\SB@makeauthorindex%
+ \expandafter{\the\SB@cnt}%
+ {#2}{#3}%
+ }%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@maketitleindex}
+% \changes{v2.8}{2009/03/06}{Added columns argument}
+% Create a song title index.
+% \argp{1} is a column count,
+% \argp{2} is the title, and
+% \argp{3} is the index identifier (which was passed to |\newindex|).
+% \begin{macrocode}
+\newcommand\SB@maketitleindex{%
+ \ifnum\idxheadwidth>\z@%
+ \renewenvironment{SB@lgidx}[1]{
+ \hbox{\SB@colorbox\idxbgcolor{\vbox{%
+ \hbox to\idxheadwidth{{\idxheadfont\relax##1}\hfil}%
+ }}}%
+ \nobreak\vskip3\p@\@plus2\p@\@minus2\p@\nointerlineskip%
+ }{\penalty-50\vskip5\p@\@plus5\p@\@minus4\p@}%
+ \else%
+ \renewenvironment{SB@lgidx}[1]{}{}%
+ \fi%
+ \renewenvironment{SB@smidx}[1]{}{}%
+ \renewcommand\idxentry[2]{%
+ \SB@ellipspread{\idxtitlefont\relax\ignorespaces##1\unskip}%
+ {{\idxrefsfont\relax##2}}%
+ }%
+ \renewcommand\idxaltentry[2]{%
+ \SB@ellipspread{\idxlyricfont\relax\ignorespaces##1\unskip}%
+ {{\idxrefsfont\relax##2}}%
+ }%
+ \SB@displayindex%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxcolhead}
+% In a scripture index, this macro remembers the current book of the bible
+% we're in so that new columns can be headed with ``Bookname (continued)''.
+% \begin{macrocode}
+\newcommand\SB@idxcolhead{}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxheadsep}
+% Add vertical space following the header line that begins (or continues) a
+% section of a scripture index.
+% \begin{macrocode}
+\newcommand\SB@idxheadsep{{%
+ \SB@dimen4\p@%
+ \advance\SB@dimen-\prevdepth%
+ \SB@maxmin\SB@dimen<\z@%
+ \SB@dimenii\SB@dimen%
+ \SB@maxmin\SB@dimenii>\p@%
+ \vskip\SB@dimen\@plus\p@\@minus\SB@dimenii%
+}}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@idxcont}
+% Typeset the ``Bookname (continued)'' line that continues a scripture
+% index section when it spans a column break.
+% \begin{macrocode}
+\newcommand\SB@idxcont[1]{%
+ \hbox to\hsize{{\idxcont{#1}}\hfil}%
+ \nobreak%
+ \SB@idxheadsep\nointerlineskip%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@makescripindex}
+% \changes{v2.4}{2007/10/08}{Scripture index spacing made more uniform}
+% \changes{v2.8}{2009/03/06}{Added columns argument}
+% Create a scripture index.
+% \argp{1} is a column count,
+% \argp{1} is the title, and
+% \argp{2} is the index identifier (which was passed to |\newscripindex|).
+% \begin{macrocode}
+\newcommand\SB@makescripindex{%
+ \renewenvironment{SB@lgidx}[1]{%
+ \gdef\SB@idxcolhead{##1}%
+ \hbox to\hsize{{\idxbook{##1}}\hfil}%
+ \nobreak%
+ \SB@idxheadsep\nointerlineskip%
+ }{%
+ \mark{\noexpand\relax}%
+ \penalty-20\vskip3\p@\@plus3\p@\relax%
+ }%
+ \renewenvironment{SB@smidx}[1]
+ {\begin{SB@lgidx}{##1}}{\end{SB@lgidx}}%
+ \renewcommand\idxentry[2]{%
+ \SB@ellipspread{\hskip.25cm\idxscripfont\relax##1}%
+ {{\idxrefsfont\relax##2}}%
+ \SB@toks\expandafter{\SB@idxcolhead}%
+ \mark{\noexpand\SB@idxcont{\the\SB@toks}}%
+ }%
+ \renewcommand\idxaltentry[2]{\SB@erridx{a scripture}}%
+ \SB@displayindex%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@makeauthorindex}
+% \changes{v2.8}{2009/03/06}{Added columns argument}
+% Create an author index.
+% \argp{1} is a column count,
+% \argp{2} is the title, and
+% \argp{2} is the index identifier (which was passed to |\newauthindex|).
+% \begin{macrocode}
+\newcommand\SB@makeauthorindex{%
+ \renewenvironment{SB@lgidx}[1]{}{}%
+ \renewenvironment{SB@smidx}[1]{}{}%
+ \renewcommand\idxentry[2]{%
+ \SB@ellipspread{{\idxauthfont\relax\sfcode`.\@m##1}}%
+ {{\idxrefsfont##2}}%
+ }%
+ \renewcommand\idxaltentry[2]{\SB@erridx{an author}}%
+ \SB@displayindex%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Error Messages}
+%
+% We break error messages out into separate macros here in order to reduce the
+% length (in tokens) of the more frequently used macros that do actual work.
+% This can result in a small speed improvement on slower machines.
+%
+% \begin{macro}{\SB@Error}
+% \begin{macro}{\SB@Warn}
+% All errors and warnings will be reported as coming from package ``songs''.
+% \begin{macrocode}
+\newcommand\SB@Error{\PackageError{songs}}
+\newcommand\SB@Warn{\PackageWarning{songs}}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\SB@errspos}
+% \begin{macrocode}
+\newcommand\SB@errspos{%
+ \SB@Error{Illegal \protect\songpos\space argument}{The argume%
+ nt to \protect\songpos\space must be a number from 0 to 3.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errnse}
+% \begin{macrocode}
+\newcommand\SB@errnse{%
+ \SB@Error{Nested songs environments are not supported}{End th%
+ e previous songs environment before beginning the next one.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errpl}
+% \begin{macrocode}
+\newcommand\SB@errpl{%
+ \SB@Error{\protect\includeonlysongs\space not permitted with%
+ in a songs environment}{\protect\includeonlysongs\space can o%
+ nly be used in the document preamble or between songs environ%
+ ments in the document body.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errrtopt}
+% \begin{macrocode}
+\newcommand\SB@errrtopt{%
+ \SB@Error{Cannot display chords in a rawtext dump}{You have u%
+ sed the rawtext option in the \protect\usepackage\space lin%
+ e and have either used the chorded option as well or have use%
+ d the \protect\chordson\space macro subsequently.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@warnrc}
+% \begin{macrocode}
+\newcommand\SB@warnrc{%
+ \SB@Warn{The \protect\repchoruses\space feature will not wor%
+ k when the number of columns is set to zero}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@warnnoidx}
+% \begin{macrocode}
+\newcommand\SB@warnnoidx{%
+ \SB@Warn{Index command has no effect since no indexes are ye%
+ t declared}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errboo}
+% \begin{macrocode}
+\newcommand\SB@errboo{%
+ \SB@Error{Encountered \protect\beginsong\space without seein%
+ g an \protect\endsong\space for the previous song}%
+ {Song \thesongnum\space might be missing a%
+ n \protect\endsong\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbor}
+% \begin{macrocode}
+\newcommand\SB@errbor{%
+ \SB@Error{Encountered \protect\beginsong\space without seein%
+ g an \protect\endscripture\space for the preceding scriptur%
+ e quotation}{A scripture quotation appearing after son%
+ g \thesongnum\space might be missing a%
+ n \protect\endscripture\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erreov}
+% \begin{macrocode}
+\newcommand\SB@erreov{%
+ \SB@Error{Encountered \protect\endsong\space without seein%
+ g an \protect\endverse\space for the preceding verse}{Son%
+ g \thesongnum\space has a \protect\beginverse\space%
+ line with no matching \protect\endverse\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erreoc}
+% \begin{macrocode}
+\newcommand\SB@erreoc{%
+ \SB@Error{Encountered \protect\endsong\space without seein%
+ g an \protect\endchorus\space for the preceding chorus}{Son%
+ g \thesongnum\space has a \protect\beginchorus\space%
+ line with no matching \protect\endchorus\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erreor}
+% \begin{macrocode}
+\newcommand\SB@erreor{%
+ \SB@Error{Encountered \protect\endsong\space without seein%
+ g an \protect\endscripture for the preceding scripture quot%
+ e}{A scripture quote appearing before song \thesongnum\space%
+ ended with \protect\endsong\space instead of wit%
+ h \protect\endscripture.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erreot}
+% \begin{macrocode}
+\newcommand\SB@erreot{%
+ \SB@Error{Encountered \protect\endsong\space with no matchin%
+ g \protect\beginsong}{Before song \thesongnum\space there wa%
+ s an \protect\endsong\space with no matchin%
+ g \protect\beginsong.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbvv}
+% \begin{macrocode}
+\newcommand\SB@errbvv{%
+ \SB@Error{Encountered \protect\beginverse\space without seein%
+ g an \protect\endverse\space for the preceding verse}{Son%
+ g \thesongnum\space might have a verse that has n%
+ o \protect\endendverse\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbvc}
+% \begin{macrocode}
+\newcommand\SB@errbvc{%
+ \SB@Error{Encountered \protect\beginverse\space without seein%
+ g an \protect\endchorus\space for the preceding chorus}{Son%
+ g \thesongnum\space might have a chorus that has n%
+ o \protect\endchorus\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbvt}
+% \begin{macrocode}
+\newcommand\SB@errbvt{%
+ \SB@Error{Encountered \protect\beginverse\space without firs%
+ t seeing a \protect\beginsong\space line}{Before son%
+ g \thesongnum, there is a \protect\beginverse\space line no%
+ t contained in any song.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errevc}
+% \begin{macrocode}
+\newcommand\SB@errevc{%
+ \SB@Error{Encountered \protect\endverse\space while process%
+ ing a chorus}{Song \thesongnum\space might hav%
+ e a \protect\beginchorus\space concluded by a%
+ n \protect\endverse\space instead of an \protect\endchorus.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errevo}
+% \begin{macrocode}
+\newcommand\SB@errevo{%
+ \SB@Error{Encountered \protect\endverse\space without firs%
+ t seeing a \protect\beginverse}{Song \thesongnum\space m%
+ ight have an \protect\endverse\space with no matchin%
+ g \protect\beginverse.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errevt}
+% \begin{macrocode}
+\newcommand\SB@errevt{%
+ \SB@Error{Encountered an \protect\endverse\space outside o%
+ f any song}{Before song \thesongnum, there is a%
+ n \protect\endverse\space line not preceded b%
+ y a \protect\beginsong\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erretex}
+% \begin{macrocode}
+\newcommand\SB@erretex{%
+ \SB@Error{The \protect\repchoruses\space feature requires e-%
+ TeX compatibility}{Your version of LaTeX2e does not appear t%
+ o be e-TeX compatible. Find a distribution that includes e-T%
+ eX support in order to use this feature.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbcv}
+% \begin{macrocode}
+\newcommand\SB@errbcv{%
+ \SB@Error{Encountered \protect\beginchorus\space without see%
+ ing an \protect\endverse\space for the preceding verse}{Son%
+ g \thesongnum\space might hav%
+ e a \protect\beginverse\space with no match%
+ ing \protect\endverse.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbcc}
+% \begin{macrocode}
+\newcommand\SB@errbcc{%
+ \SB@Error{Encountered \protect\beginchorus\space without see%
+ ing an \protect\endchorus\space for the preceding chorus}%
+ {Song \thesongnum\space might have a \protect\beginchorus%
+ \space with no matching \protect\endchorus.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbct}
+% \begin{macrocode}
+\newcommand\SB@errbct{%
+ \SB@Error{Encountered \protect\beginchorus\space without see%
+ ing a \protect\beginsong\space line first}{After son%
+ g \thesongnum\space there is a \protect\beginchorus\space%
+ line outside of any song.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errecv}
+% \begin{macrocode}
+\newcommand\SB@errecv{%
+ \SB@Error{Encountered an \protect\endchorus\space while proc%
+ essing a verse}{Song \thesongnum\space might hav%
+ e a \protect\beginverse\space concluded by \protect\endchorus%
+ \space instead of \protect\endverse.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erreco}
+% \begin{macrocode}
+\newcommand\SB@erreco{%
+ \SB@Error{Encountered \protect\endchorus\space without firs%
+ t seeing a \protect\beginchorus}{Song \thesongnum\space m%
+ ight have an \protect\endchorus\space with no match%
+ ing \protect\beginchorus.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errect}
+% \begin{macrocode}
+\newcommand\SB@errect{%
+ \SB@Error{Encountered an \protect\endchorus\space outside o%
+ f any song}{Before song \thesongnum, there is a%
+ n \protect\endchorus\space line not preceded b%
+ y a \protect\beginsong\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbro}
+% \begin{macrocode}
+\newcommand\SB@errbro{%
+ \SB@Error{Missing \protect\endsong}%
+ {Nested song and intersong environments are not supported%
+ . Song \thesongnum\space might be missing a%
+ n \protect\endsong\space line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errbrr}
+% \begin{macrocode}
+\newcommand\SB@errbrr{%
+ \SB@Error{Nested intersong environments are not supported}%
+ {A scripture quote or other intersong environment before s%
+ ong \thesongnum\space is missing its ending line.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errero}
+% \begin{macrocode}
+\newcommand\SB@errero{%
+ \SB@Error{Encountered an \protect\endscripture\space whil%
+ e processing a song}{Song \thesongnum\space ends wit%
+ h \protect\endscripture\space when it should end wit%
+ h \protect\endsong.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errert}
+% \begin{macrocode}
+\newcommand\SB@errert{%
+ \SB@Error{Encountered an \protect\endscripture\space with%
+ out first seeing a \protect\beginscripture}{Before son%
+ g \thesongnum, there is an \protect\endscripture\space w%
+ ith no matching \protect\beginscripture.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errscrip}
+% \begin{macrocode}
+\newcommand\SB@errscrip[1]{%
+ \SB@Error{Encountered a \protect#1\space outside a scriptu%
+ re quote}{\protect#1\space can only appear betwee%
+ n \protect\beginscripture\space an%
+ d \protect\endscripture\space lines.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errchord}
+% \begin{macrocode}
+\newcommand\SB@errchord{%
+ \SB@Error{Song \thesongnum\space seems to have chord%
+ s that appear outside of any verse or chorus}{All chords a%
+ nd lyrics should appear between \protect\beginverse\space%
+ and \protect\endverse, or between \protect\beginchorus\space%
+ and \protect\endchorus.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errreplay}
+% \begin{macrocode}
+\newcommand\SB@errreplay{%
+ \SB@Error{Replayed chord has no matching chord}{Son%
+ g \thesongnum\space uses \protect^ more times than the%
+ re are chords in the previously memorized verse.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errreg}
+% \begin{macrocode}
+\newcommand\SB@errreg[1]{%
+ \SB@Error{Unknown chord-replay register name: #1}{Chord-re%
+ play registers must be declared with \protect\newchords.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errdup}
+% \begin{macrocode}
+\newcommand\SB@errdup[1]{%
+ \SB@Error{Duplicate definition of chord-replay register%
+ : #1}{\protect\newchords\space was used to declare the sa%
+ me chord-replay register twice.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errmbar}
+% \begin{macrocode}
+\newcommand\SB@errmbar{%
+ \SB@Error{Song \thesongnum\space seems to have measur%
+ e bars that appear outside of any verse or chorus}{All mea%
+ sure bars (produced with \protect\mbar\space or |) must ap%
+ pear between \protect\beginverse\space an%
+ d \protect\endverse, or between \protect\beginchorus\space%
+ and \protect\endchorus.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errebar}
+% \begin{macrocode}
+\newcommand\SB@errebar[2]{%
+ \SB@Error{Ignoring unbalanced \expandafter\@gobble\string#2 i%
+ n \protect\gtab}{Found no \expandafter\@gobble\string#1 to ma%
+ tch the \expandafter\@gobble\string#2.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@errnoidx}
+% \begin{macrocode}
+\newcommand\SB@errnoidx[1]{%
+ \SB@Error{Unknown index identifier: #1}{This index identifie%
+ r was never declared using \protect\newindex.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\SB@erridx}
+% \begin{macrocode}
+\newcommand\SB@erridx[1]{%
+ \SB@Error{\protect\idxaltentry\space not allowed in #1 index}%
+ {This error should not occur. The index generation routines ha%
+ ve malfunctioned. Try deleting all temporary files and then re%
+ compiling.}%
+}
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Option Processing}\label{sec:optproc}
+%
+% \begin{macro}{\ifchorded}
+% \begin{macro}{\iflyric}
+% \begin{macro}{\ifslides}
+% \begin{macro}{\ifmeasures}
+% \begin{macro}{\ifpartiallist}
+% \begin{macro}{\ifrepchorus}
+% \begin{macro}{\iftranscapos}
+% \begin{macro}{\ifnolyrics}
+% \begin{macro}{\ifrawtext}
+% \begin{macro}{\ifsongindexes}
+% \begin{macro}{\ifsepindexes}
+% \begin{macro}{\ifpagepreludes}
+% \begin{macro}{\ifSB@colorboxes}
+% \begin{macro}{\ifSB@omitscrip}
+% Reserve conditionals for all of the various option settings.
+% We wait to define these since if any are used earlier than this, it is
+% an error in the package code, and we'd rather get an error than continue.
+% \begin{macrocode}
+\newif\ifchorded
+\newif\iflyric\lyrictrue
+\newif\ifslides
+\newif\ifmeasures
+\newif\ifpartiallist
+\newif\ifrepchorus
+\newif\iftranscapos
+\newif\ifnolyrics
+\newif\ifrawtext
+\newif\ifsongindexes\songindexestrue
+\newif\ifsepindexes\sepindexestrue
+\newif\ifpagepreludes
+\newif\ifSB@colorboxes
+\IfFileExists{color.sty}\SB@colorboxestrue\SB@colorboxesfalse
+\newif\ifSB@omitscrip
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\nolyrics}
+% \begin{macro}{\pagepreludes}
+% The |\nolyrics| and |\pagepreludes| macros are just shorthand for
+% |\nolyricstrue| and |\pagepreludestrue|, respectively.
+% \begin{macrocode}
+\newcommand\nolyrics{}
+\let\nolyrics\nolyricstrue
+\newcommand\pagepreludes{\pagepreludestrue\songpos0}
+% \end{macrocode}
+% \end{macro}
+% \end{macro}
+%
+% Finally we're ready to process all of the package options.
+% This is delayed until near the end because the option processing code
+% needs to execute various macros found in the previous sections.
+% \begin{macrocode}
+\SB@chordson
+\ProcessOptions\relax
+% \end{macrocode}
+%
+% \begin{macro}{\SB@colorbox}
+% Include the colors package and define colors, if requested.
+% \begin{macrocode}
+\ifSB@colorboxes
+ \RequirePackage{color}
+ \definecolor{SongbookShade}{gray}{.80}
+ \newcommand\SB@colorbox[2]{%
+ \ifx\@empty#1%
+ \vbox{%
+ \kern3\p@%
+ \hbox{\kern3\p@{#2}\kern3\p@}%
+ \kern3\p@%
+ }%
+ \else%
+ \colorbox{#1}{#2}%
+ \fi%
+ }
+\else
+ \newcommand\SB@colorbox[2]{\vbox{%
+ \kern3\p@%
+ \hbox{\kern3\p@{#2}\kern3\p@}%
+ \kern3\p@%
+ }}
+\fi
+% \end{macrocode}
+% \end{macro}
+%
+% \subsection{Rawtext Mode}
+%
+% If generating raw text, most of what has been defined previously is ignored
+% in favor of some very specialized macros that write all the song lyrics to
+% a text file.
+% \begin{macrocode}
+\ifrawtext
+ \SB@newwrite\SB@txtout
+ \immediate\openout\SB@txtout=\jobname.txt
+ \newif\ifSB@doEOL
+ {\catcode`\^^M12 %
+ \catcode`\^^J12 %
+ \gdef\SB@printEOL{\ifSB@doEOL^^M^^J\fi}}
+ {\catcode`#12\gdef\SB@hash{#}}
+ {\catcode`&12\gdef\SB@amp{&}}
+ \renewcommand\SB@@@beginsong{%
+ \begingroup%
+ \def\'{}\def\`{}\def\v{}\def\u{}\def\={}\def\^{}%
+ \def\.{}\def\H{}\def\~{}\def\"{}\def\t{}%
+ \def\copyright{(c)}%
+ \let~\space%
+ \let\par\SB@printEOL%
+ \let\#\SB@hash%
+ \let\&\SB@amp%
+ \catcode`|9 %
+ \catcode`*9 %
+ \catcode`^9 %
+ \def\[##1]{}%
+ \resettitles%
+ \immediate\write\SB@txtout{\thesongnum. \songtitle}%
+ \nexttitle%
+ \foreachtitle{\immediate\write\SB@txtout{(\songtitle)}}%
+ \ifx\songauthors\@empty\else%
+ \immediate\write\SB@txtout{\songauthors}%
+ \fi%
+ \ifx\SB@rawrefs\@empty\else%
+ \immediate\write\SB@txtout{\SB@rawrefs}%
+ \fi%
+ \immediate\write\SB@txtout{}%
+ \SB@doEOLfalse%
+ \obeylines%
+ }
+ \renewcommand\SB@endsong{%
+ \SB@doEOLtrue%
+ \immediate\write\SB@txtout{\songcopyright\space%
+ \songlicense\SB@printEOL}%
+ \endgroup%
+ \SB@insongfalse%
+ \stepcounter{songnum}%
+ }
+ \def\SB@parsesrefs#1{\def\songrefs{#1}}
+ \long\def\beginverse#1#2\endverse{%
+ \SB@doEOLtrue\begingroup%
+ \def\textnote##1{##1}%
+ \def\SB@temp{#1}%
+ \def\SB@star{*}%
+ \ifx\SB@temp\SB@star%
+ \immediate\write\SB@txtout{\@gobble#2}%
+ \else%
+ \immediate\write\SB@txtout{#2}%
+ \fi%
+ \endgroup\SB@doEOLfalse}
+ \long\def\beginchorus#1\endchorus{%
+ \SB@doEOLtrue\begingroup%
+ \def\textnote##1{##1}%
+ \immediate\write\SB@txtout{Chorus:#1}%
+ \endgroup\SB@doEOLfalse}
+ \long\def\beginscripture#1\endscripture{}
+ \def\musicnote#1{}
+ \def\textnote#1{%
+ \SB@doEOLtrue%
+ \immediate\write\SB@txtout{#1\SB@printEOL}%
+ \SB@doEOLfalse}
+ \def\brk{}
+ \def\rep#1{(x#1)}
+ \def\echo#1{(#1)}
+ \def\mbar#1#2{}
+ \def\lrep{}
+ \def\rrep{}
+ \def\nolyrics{}
+ \renewcommand\memorize[1][]{}
+ \renewcommand\replay[1][]{}
+\fi
+% \end{macrocode}
+%
+% \Finale
+\endinput
+
diff --git a/macros/latex/contrib/songs/songs.ins b/macros/latex/contrib/songs/songs.ins
new file mode 100644
index 0000000000..9bbcdc734d
--- /dev/null
+++ b/macros/latex/contrib/songs/songs.ins
@@ -0,0 +1,61 @@
+%% Copyright (C) 2018 Kevin W. Hamlen
+%%
+%% This program is free software; you can redistribute it and/or
+%% modify it under the terms of the GNU General Public License
+%% as published by the Free Software Foundation; either version 2
+%% of the License, or (at your option) any later version.
+%%
+%% This program is distributed in the hope that it will be useful,
+%% but WITHOUT ANY WARRANTY; without even the implied warranty of
+%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+%% GNU General Public License for more details.
+%%
+%% You should have received a copy of the GNU General Public License
+%% along with this program; if not, write to the Free Software
+%% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+%% MA 02110-1301, USA.
+%%
+%% The latest version of this program can be obtained from
+%% http://songs.sourceforge.net.
+
+\input docstrip.tex
+\keepsilent
+
+\usedir{tex/latex/songs}
+
+\preamble
+
+This is a generated file.
+
+Copyright (C) 2018 by Kevin W. Hamlen
+
+This file may be distributed and/or modified under the conditions of
+the LaTeX Project Public License, either version 1.3a of this license
+or (at your option) any later version. The latest version of this
+license is in:
+
+ http://www.latex-project.org/lppl.txt
+
+and version 1.3a or later is part of all distributions of LaTeX version
+2004/10/01 or later.
+
+\endpreamble
+
+\generate{\file{songs.sty}{\from{songs.dtx}{package}}}
+
+\obeyspaces
+\Msg{*************************************************************}
+\Msg{* *}
+\Msg{* To finish the installation you have to move the following *}
+\Msg{* file into a directory searched by TeX: *}
+\Msg{* *}
+\Msg{* songs.sty *}
+\Msg{* *}
+\Msg{* To produce the documentation run the file songbook.dtx *}
+\Msg{* through LaTeX. *}
+\Msg{* *}
+\Msg{* Happy TeXing! *}
+\Msg{* *}
+\Msg{*************************************************************}
+
+\endbatchfile
diff --git a/macros/latex/contrib/songs/songs.pdf b/macros/latex/contrib/songs/songs.pdf
new file mode 100644
index 0000000000..e937aa29d0
--- /dev/null
+++ b/macros/latex/contrib/songs/songs.pdf
@@ -0,0 +1,28725 @@
+%PDF-1.5
+%ÐÔÅØ
+1 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+4 0 obj
+(Introduction)
+endobj
+5 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+8 0 obj
+(Terms of Use)
+endobj
+9 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+12 0 obj
+(Sample Document)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+16 0 obj
+(Initialization and Options)
+endobj
+17 0 obj
+<< /S /GoTo /D (envdef-lyric.2) >>
+endobj
+20 0 obj
+(lyric)
+endobj
+21 0 obj
+<< /S /GoTo /D (envdef-chorded.2) >>
+endobj
+24 0 obj
+(chorded)
+endobj
+25 0 obj
+<< /S /GoTo /D (envdef-slides.2) >>
+endobj
+28 0 obj
+(slides)
+endobj
+29 0 obj
+<< /S /GoTo /D (envdef-rawtext.2) >>
+endobj
+32 0 obj
+(rawtext)
+endobj
+33 0 obj
+<< /S /GoTo /D (macdef-chordson.2) >>
+endobj
+36 0 obj
+(\134chordson)
+endobj
+37 0 obj
+<< /S /GoTo /D (macdef-chordsoff.2) >>
+endobj
+40 0 obj
+(\134chordsoff)
+endobj
+41 0 obj
+<< /S /GoTo /D (macdef-slides.2) >>
+endobj
+44 0 obj
+(\134slides)
+endobj
+45 0 obj
+<< /S /GoTo /D (envdef-nomeasures.2) >>
+endobj
+48 0 obj
+(nomeasures)
+endobj
+49 0 obj
+<< /S /GoTo /D (envdef-showmeasures.2) >>
+endobj
+52 0 obj
+(showmeasures)
+endobj
+53 0 obj
+<< /S /GoTo /D (macdef-measureson.2) >>
+endobj
+56 0 obj
+(\134measureson)
+endobj
+57 0 obj
+<< /S /GoTo /D (macdef-measuresoff.2) >>
+endobj
+60 0 obj
+(\134measuresoff)
+endobj
+61 0 obj
+<< /S /GoTo /D (envdef-transposecapos.2) >>
+endobj
+64 0 obj
+(transposecapos)
+endobj
+65 0 obj
+<< /S /GoTo /D (envdef-noindexes.2) >>
+endobj
+68 0 obj
+(noindexes)
+endobj
+69 0 obj
+<< /S /GoTo /D (macdef-indexeson.2) >>
+endobj
+72 0 obj
+(\134indexeson)
+endobj
+73 0 obj
+<< /S /GoTo /D (macdef-indexesoff.2) >>
+endobj
+76 0 obj
+(\134indexesoff)
+endobj
+77 0 obj
+<< /S /GoTo /D (envdef-nopdfindex.2) >>
+endobj
+80 0 obj
+(nopdfindex)
+endobj
+81 0 obj
+<< /S /GoTo /D (envdef-noscripture.2) >>
+endobj
+84 0 obj
+(noscripture)
+endobj
+85 0 obj
+<< /S /GoTo /D (macdef-scriptureon.2) >>
+endobj
+88 0 obj
+(\134scriptureon)
+endobj
+89 0 obj
+<< /S /GoTo /D (macdef-scriptureoff.2) >>
+endobj
+92 0 obj
+(\134scriptureoff)
+endobj
+93 0 obj
+<< /S /GoTo /D (envdef-noshading.2) >>
+endobj
+96 0 obj
+(noshading)
+endobj
+97 0 obj
+<< /S /GoTo /D (macdef-includeonlysongs.2) >>
+endobj
+100 0 obj
+(\134includeonlysongs)
+endobj
+101 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+104 0 obj
+(Songs)
+endobj
+105 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+108 0 obj
+(Beginning a Song)
+endobj
+109 0 obj
+<< /S /GoTo /D (envdef-songs.3) >>
+endobj
+112 0 obj
+(songs)
+endobj
+113 0 obj
+<< /S /GoTo /D (macdef-beginsong.3) >>
+endobj
+116 0 obj
+(\134beginsong)
+endobj
+117 0 obj
+<< /S /GoTo /D (macdef-endsong.3) >>
+endobj
+120 0 obj
+(\134endsong)
+endobj
+121 0 obj
+<< /S /GoTo /D (envdef-by=.3) >>
+endobj
+124 0 obj
+(by=)
+endobj
+125 0 obj
+<< /S /GoTo /D (envdef-cr=.3) >>
+endobj
+128 0 obj
+(cr=)
+endobj
+129 0 obj
+<< /S /GoTo /D (envdef-li=.3) >>
+endobj
+132 0 obj
+(li=)
+endobj
+133 0 obj
+<< /S /GoTo /D (macdef-setlicense.3) >>
+endobj
+136 0 obj
+(\134setlicense)
+endobj
+137 0 obj
+<< /S /GoTo /D (envdef-sr=.3) >>
+endobj
+140 0 obj
+(sr=)
+endobj
+141 0 obj
+<< /S /GoTo /D (subsection.5.2) >>
+endobj
+144 0 obj
+(Verses and Choruses)
+endobj
+145 0 obj
+<< /S /GoTo /D (macdef-beginverse.3) >>
+endobj
+148 0 obj
+(\134beginverse)
+endobj
+149 0 obj
+<< /S /GoTo /D (macdef-endverse.3) >>
+endobj
+152 0 obj
+(\134endverse)
+endobj
+153 0 obj
+<< /S /GoTo /D (macdef-beginchorus.3) >>
+endobj
+156 0 obj
+(\134beginchorus)
+endobj
+157 0 obj
+<< /S /GoTo /D (macdef-endchorus.3) >>
+endobj
+160 0 obj
+(\134endchorus)
+endobj
+161 0 obj
+<< /S /GoTo /D (subsection.5.3) >>
+endobj
+164 0 obj
+(Chords)
+endobj
+165 0 obj
+<< /S /GoTo /D (macdef-[.3) >>
+endobj
+168 0 obj
+(\134[)
+endobj
+169 0 obj
+<< /S /GoTo /D (hashdef.3) >>
+endobj
+172 0 obj
+(\043)
+endobj
+173 0 obj
+<< /S /GoTo /D (ampdef.3) >>
+endobj
+176 0 obj
+(\046)
+endobj
+177 0 obj
+<< /S /GoTo /D (macdef-nolyrics.3) >>
+endobj
+180 0 obj
+(\134nolyrics)
+endobj
+181 0 obj
+<< /S /GoTo /D (macdef-DeclareLyricChar.3) >>
+endobj
+184 0 obj
+(\134DeclareLyricChar)
+endobj
+185 0 obj
+<< /S /GoTo /D (macdef-DeclareNonLyric.3) >>
+endobj
+188 0 obj
+(\134DeclareNonLyric)
+endobj
+189 0 obj
+<< /S /GoTo /D (macdef-DeclareNoHyphen.3) >>
+endobj
+192 0 obj
+(\134DeclareNoHyphen)
+endobj
+193 0 obj
+<< /S /GoTo /D (macdef-MultiwordChords.3) >>
+endobj
+196 0 obj
+(\134MultiwordChords)
+endobj
+197 0 obj
+<< /S /GoTo /D (macdef-shrp.3) >>
+endobj
+200 0 obj
+(\134shrp)
+endobj
+201 0 obj
+<< /S /GoTo /D (macdef-flt.3) >>
+endobj
+204 0 obj
+(\134flt)
+endobj
+205 0 obj
+<< /S /GoTo /D (subsection.5.4) >>
+endobj
+208 0 obj
+(Replaying Chords and Choruses)
+endobj
+209 0 obj
+<< /S /GoTo /D (hatdef.3) >>
+endobj
+212 0 obj
+(\136)
+endobj
+213 0 obj
+<< /S /GoTo /D (macdef-memorize.3) >>
+endobj
+216 0 obj
+(\134memorize)
+endobj
+217 0 obj
+<< /S /GoTo /D (macdef-newchords.3) >>
+endobj
+220 0 obj
+(\134newchords)
+endobj
+221 0 obj
+<< /S /GoTo /D (macdef-replay.3) >>
+endobj
+224 0 obj
+(\134replay)
+endobj
+225 0 obj
+<< /S /GoTo /D (macdef-repchoruses.3) >>
+endobj
+228 0 obj
+(\134repchoruses)
+endobj
+229 0 obj
+<< /S /GoTo /D (macdef-norepchoruses.3) >>
+endobj
+232 0 obj
+(\134norepchoruses)
+endobj
+233 0 obj
+<< /S /GoTo /D (subsection.5.5) >>
+endobj
+236 0 obj
+(Line and Column Breaks)
+endobj
+237 0 obj
+<< /S /GoTo /D (macdef-brk.3) >>
+endobj
+240 0 obj
+(\134brk)
+endobj
+241 0 obj
+<< /S /GoTo /D (macdef-nextcol.3) >>
+endobj
+244 0 obj
+(\134nextcol)
+endobj
+245 0 obj
+<< /S /GoTo /D (macdef-sclearpage.3) >>
+endobj
+248 0 obj
+(\134sclearpage)
+endobj
+249 0 obj
+<< /S /GoTo /D (macdef-scleardpage.3) >>
+endobj
+252 0 obj
+(\134scleardpage)
+endobj
+253 0 obj
+<< /S /GoTo /D (subsection.5.6) >>
+endobj
+256 0 obj
+(Echoes and Repeats)
+endobj
+257 0 obj
+<< /S /GoTo /D (macdef-echo.3) >>
+endobj
+260 0 obj
+(\134echo)
+endobj
+261 0 obj
+<< /S /GoTo /D (macdef-rep.3) >>
+endobj
+264 0 obj
+(\134rep)
+endobj
+265 0 obj
+<< /S /GoTo /D (macdef-lrep.3) >>
+endobj
+268 0 obj
+(\134lrep)
+endobj
+269 0 obj
+<< /S /GoTo /D (macdef-rrep.3) >>
+endobj
+272 0 obj
+(\134rrep)
+endobj
+273 0 obj
+<< /S /GoTo /D (subsection.5.7) >>
+endobj
+276 0 obj
+(Measure Bars)
+endobj
+277 0 obj
+<< /S /GoTo /D (macdef-measurebar.3) >>
+endobj
+280 0 obj
+(\134measurebar)
+endobj
+281 0 obj
+<< /S /GoTo /D (pipedef.3) >>
+endobj
+284 0 obj
+(\174)
+endobj
+285 0 obj
+<< /S /GoTo /D (macdef-meter.3) >>
+endobj
+288 0 obj
+(\134meter)
+endobj
+289 0 obj
+<< /S /GoTo /D (macdef-mbar.3) >>
+endobj
+292 0 obj
+(\134mbar)
+endobj
+293 0 obj
+<< /S /GoTo /D (subsection.5.8) >>
+endobj
+296 0 obj
+(Textual Notes)
+endobj
+297 0 obj
+<< /S /GoTo /D (macdef-textnote.3) >>
+endobj
+300 0 obj
+(\134textnote)
+endobj
+301 0 obj
+<< /S /GoTo /D (macdef-musicnote.3) >>
+endobj
+304 0 obj
+(\134musicnote)
+endobj
+305 0 obj
+<< /S /GoTo /D (macdef-capo.3) >>
+endobj
+308 0 obj
+(\134capo)
+endobj
+309 0 obj
+<< /S /GoTo /D (subsection.5.9) >>
+endobj
+312 0 obj
+(Chords in Ligatures)
+endobj
+313 0 obj
+<< /S /GoTo /D (macdef-ch.3) >>
+endobj
+316 0 obj
+(\134ch)
+endobj
+317 0 obj
+<< /S /GoTo /D (macdef-mch.3) >>
+endobj
+320 0 obj
+(\134mch)
+endobj
+321 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+324 0 obj
+(Guitar Tablatures)
+endobj
+325 0 obj
+<< /S /GoTo /D (macdef-gtab.2) >>
+endobj
+328 0 obj
+(\134gtab)
+endobj
+329 0 obj
+<< /S /GoTo /D (macdef-minfrets.2) >>
+endobj
+332 0 obj
+(\134minfrets)
+endobj
+333 0 obj
+<< /S /GoTo /D (section.7) >>
+endobj
+336 0 obj
+(Automatic Transposition)
+endobj
+337 0 obj
+<< /S /GoTo /D (macdef-transpose.2) >>
+endobj
+340 0 obj
+(\134transpose)
+endobj
+341 0 obj
+<< /S /GoTo /D (macdef-preferflats.2) >>
+endobj
+344 0 obj
+(\134preferflats)
+endobj
+345 0 obj
+<< /S /GoTo /D (macdef-prefersharps.2) >>
+endobj
+348 0 obj
+(\134prefersharps)
+endobj
+349 0 obj
+<< /S /GoTo /D (macdef-trchordformat.2) >>
+endobj
+352 0 obj
+(\134trchordformat)
+endobj
+353 0 obj
+<< /S /GoTo /D (macdef-solfedge.2) >>
+endobj
+356 0 obj
+(\134solfedge)
+endobj
+357 0 obj
+<< /S /GoTo /D (macdef-alphascale.2) >>
+endobj
+360 0 obj
+(\134alphascale)
+endobj
+361 0 obj
+<< /S /GoTo /D (macdef-notenames.2) >>
+endobj
+364 0 obj
+(\134notenames)
+endobj
+365 0 obj
+<< /S /GoTo /D (macdef-notenamesin.2) >>
+endobj
+368 0 obj
+(\134notenamesin)
+endobj
+369 0 obj
+<< /S /GoTo /D (macdef-notenamesout.2) >>
+endobj
+372 0 obj
+(\134notenamesout)
+endobj
+373 0 obj
+<< /S /GoTo /D (macdef-transposehere.2) >>
+endobj
+376 0 obj
+(\134transposehere)
+endobj
+377 0 obj
+<< /S /GoTo /D (macdef-notrans.2) >>
+endobj
+380 0 obj
+(\134notrans)
+endobj
+381 0 obj
+<< /S /GoTo /D (macdef-gtabtrans.2) >>
+endobj
+384 0 obj
+(\134gtabtrans)
+endobj
+385 0 obj
+<< /S /GoTo /D (section.8) >>
+endobj
+388 0 obj
+(Between Songs)
+endobj
+389 0 obj
+<< /S /GoTo /D (subsection.8.1) >>
+endobj
+392 0 obj
+(Intersong Displays)
+endobj
+393 0 obj
+<< /S /GoTo /D (envdef-intersong.3) >>
+endobj
+396 0 obj
+(intersong)
+endobj
+397 0 obj
+<< /S /GoTo /D (envdef-intersong*.3) >>
+endobj
+400 0 obj
+(intersong*)
+endobj
+401 0 obj
+<< /S /GoTo /D (envdef-songgroup.3) >>
+endobj
+404 0 obj
+(songgroup)
+endobj
+405 0 obj
+<< /S /GoTo /D (subsection.8.2) >>
+endobj
+408 0 obj
+(Scripture Quotations)
+endobj
+409 0 obj
+<< /S /GoTo /D (macdef-beginscripture.3) >>
+endobj
+412 0 obj
+(\134beginscripture)
+endobj
+413 0 obj
+<< /S /GoTo /D (macdef-endscripture.3) >>
+endobj
+416 0 obj
+(\134endscripture)
+endobj
+417 0 obj
+<< /S /GoTo /D (macdef-Acolon.3) >>
+endobj
+420 0 obj
+(\134Acolon)
+endobj
+421 0 obj
+<< /S /GoTo /D (macdef-Bcolon.3) >>
+endobj
+424 0 obj
+(\134Bcolon)
+endobj
+425 0 obj
+<< /S /GoTo /D (macdef-strophe.3) >>
+endobj
+428 0 obj
+(\134strophe)
+endobj
+429 0 obj
+<< /S /GoTo /D (macdef-scripindent.3) >>
+endobj
+432 0 obj
+(\134scripindent)
+endobj
+433 0 obj
+<< /S /GoTo /D (macdef-scripoutdent.3) >>
+endobj
+436 0 obj
+(\134scripoutdent)
+endobj
+437 0 obj
+<< /S /GoTo /D (section.9) >>
+endobj
+440 0 obj
+(Chapters and Sections)
+endobj
+441 0 obj
+<< /S /GoTo /D (macdef-songsection.2) >>
+endobj
+444 0 obj
+(\134songsection)
+endobj
+445 0 obj
+<< /S /GoTo /D (macdef-songchapter.2) >>
+endobj
+448 0 obj
+(\134songchapter)
+endobj
+449 0 obj
+<< /S /GoTo /D (section.10) >>
+endobj
+452 0 obj
+(Indexes)
+endobj
+453 0 obj
+<< /S /GoTo /D (subsection.10.1) >>
+endobj
+456 0 obj
+(Index Creation)
+endobj
+457 0 obj
+<< /S /GoTo /D (macdef-newindex.3) >>
+endobj
+460 0 obj
+(\134newindex)
+endobj
+461 0 obj
+<< /S /GoTo /D (macdef-newauthorindex.3) >>
+endobj
+464 0 obj
+(\134newauthorindex)
+endobj
+465 0 obj
+<< /S /GoTo /D (macdef-newscripindex.3) >>
+endobj
+468 0 obj
+(\134newscripindex)
+endobj
+469 0 obj
+<< /S /GoTo /D (macdef-showindex.3) >>
+endobj
+472 0 obj
+(\134showindex)
+endobj
+473 0 obj
+<< /S /GoTo /D (subsection.10.2) >>
+endobj
+476 0 obj
+(Index Entries)
+endobj
+477 0 obj
+<< /S /GoTo /D (envdef-index=.3) >>
+endobj
+480 0 obj
+(index=)
+endobj
+481 0 obj
+<< /S /GoTo /D (envdef-ititle=.3) >>
+endobj
+484 0 obj
+(ititle=)
+endobj
+485 0 obj
+<< /S /GoTo /D (macdef-indexentry.3) >>
+endobj
+488 0 obj
+(\134indexentry)
+endobj
+489 0 obj
+<< /S /GoTo /D (macdef-indextitleentry.3) >>
+endobj
+492 0 obj
+(\134indextitleentry)
+endobj
+493 0 obj
+<< /S /GoTo /D (subsection.10.3) >>
+endobj
+496 0 obj
+(Compiling)
+endobj
+497 0 obj
+<< /S /GoTo /D (section.11) >>
+endobj
+500 0 obj
+(Customizing the Book)
+endobj
+501 0 obj
+<< /S /GoTo /D (subsection.11.1) >>
+endobj
+504 0 obj
+(Song and Verse Numbering)
+endobj
+505 0 obj
+<< /S /GoTo /D (envdef-songnum.3) >>
+endobj
+508 0 obj
+(songnum)
+endobj
+509 0 obj
+<< /S /GoTo /D (macdef-thesongnum.3) >>
+endobj
+512 0 obj
+(\134thesongnum)
+endobj
+513 0 obj
+<< /S /GoTo /D (macdef-printsongnum.3) >>
+endobj
+516 0 obj
+(\134printsongnum)
+endobj
+517 0 obj
+<< /S /GoTo /D (macdef-songnumwidth.3) >>
+endobj
+520 0 obj
+(\134songnumwidth)
+endobj
+521 0 obj
+<< /S /GoTo /D (macdef-nosongnumbers.3) >>
+endobj
+524 0 obj
+(\134nosongnumbers)
+endobj
+525 0 obj
+<< /S /GoTo /D (envdef-versenum.3) >>
+endobj
+528 0 obj
+(versenum)
+endobj
+529 0 obj
+<< /S /GoTo /D (macdef-theversenum.3) >>
+endobj
+532 0 obj
+(\134theversenum)
+endobj
+533 0 obj
+<< /S /GoTo /D (macdef-printversenum.3) >>
+endobj
+536 0 obj
+(\134printversenum)
+endobj
+537 0 obj
+<< /S /GoTo /D (macdef-versenumwidth.3) >>
+endobj
+540 0 obj
+(\134versenumwidth)
+endobj
+541 0 obj
+<< /S /GoTo /D (macdef-noversenumbers.3) >>
+endobj
+544 0 obj
+(\134noversenumbers)
+endobj
+545 0 obj
+<< /S /GoTo /D (macdef-placeversenum.3) >>
+endobj
+548 0 obj
+(\134placeversenum)
+endobj
+549 0 obj
+<< /S /GoTo /D (subsection.11.2) >>
+endobj
+552 0 obj
+(Song Appearance)
+endobj
+553 0 obj
+<< /S /GoTo /D (macdef-lyricfont.3) >>
+endobj
+556 0 obj
+(\134lyricfont)
+endobj
+557 0 obj
+<< /S /GoTo /D (macdef-stitlefont.3) >>
+endobj
+560 0 obj
+(\134stitlefont)
+endobj
+561 0 obj
+<< /S /GoTo /D (macdef-versefont.3) >>
+endobj
+564 0 obj
+(\134versefont)
+endobj
+565 0 obj
+<< /S /GoTo /D (macdef-chorusfont.3) >>
+endobj
+568 0 obj
+(\134chorusfont)
+endobj
+569 0 obj
+<< /S /GoTo /D (macdef-meterfont.3) >>
+endobj
+572 0 obj
+(\134meterfont)
+endobj
+573 0 obj
+<< /S /GoTo /D (macdef-echofont.3) >>
+endobj
+576 0 obj
+(\134echofont)
+endobj
+577 0 obj
+<< /S /GoTo /D (macdef-notefont.3) >>
+endobj
+580 0 obj
+(\134notefont)
+endobj
+581 0 obj
+<< /S /GoTo /D (macdef-notebgcolor.3) >>
+endobj
+584 0 obj
+(\134notebgcolor)
+endobj
+585 0 obj
+<< /S /GoTo /D (macdef-snumbgcolor.3) >>
+endobj
+588 0 obj
+(\134snumbgcolor)
+endobj
+589 0 obj
+<< /S /GoTo /D (macdef-printchord.3) >>
+endobj
+592 0 obj
+(\134printchord)
+endobj
+593 0 obj
+<< /S /GoTo /D (macdef-sharpsymbol.3) >>
+endobj
+596 0 obj
+(\134sharpsymbol)
+endobj
+597 0 obj
+<< /S /GoTo /D (macdef-flatsymbol.3) >>
+endobj
+600 0 obj
+(\134flatsymbol)
+endobj
+601 0 obj
+<< /S /GoTo /D (macdef-everyverse.3) >>
+endobj
+604 0 obj
+(\134everyverse)
+endobj
+605 0 obj
+<< /S /GoTo /D (macdef-everychorus.3) >>
+endobj
+608 0 obj
+(\134everychorus)
+endobj
+609 0 obj
+<< /S /GoTo /D (macdef-versesep.3) >>
+endobj
+612 0 obj
+(\134versesep)
+endobj
+613 0 obj
+<< /S /GoTo /D (macdef-afterpreludeskip.3) >>
+endobj
+616 0 obj
+(\134afterpreludeskip)
+endobj
+617 0 obj
+<< /S /GoTo /D (macdef-beforepostludeskip.3) >>
+endobj
+620 0 obj
+(\134beforepostludeskip)
+endobj
+621 0 obj
+<< /S /GoTo /D (macdef-baselineadj.3) >>
+endobj
+624 0 obj
+(\134baselineadj)
+endobj
+625 0 obj
+<< /S /GoTo /D (macdef-clineparams.3) >>
+endobj
+628 0 obj
+(\134clineparams)
+endobj
+629 0 obj
+<< /S /GoTo /D (macdef-cbarwidth.3) >>
+endobj
+632 0 obj
+(\134cbarwidth)
+endobj
+633 0 obj
+<< /S /GoTo /D (macdef-sbarheight.3) >>
+endobj
+636 0 obj
+(\134sbarheight)
+endobj
+637 0 obj
+<< /S /GoTo /D (macdef-extendprelude.3) >>
+endobj
+640 0 obj
+(\134extendprelude)
+endobj
+641 0 obj
+<< /S /GoTo /D (macdef-showauthors.3) >>
+endobj
+644 0 obj
+(\134showauthors)
+endobj
+645 0 obj
+<< /S /GoTo /D (macdef-showrefs.3) >>
+endobj
+648 0 obj
+(\134showrefs)
+endobj
+649 0 obj
+<< /S /GoTo /D (macdef-extendpostlude.3) >>
+endobj
+652 0 obj
+(\134extendpostlude)
+endobj
+653 0 obj
+<< /S /GoTo /D (macdef-makeprelude.3) >>
+endobj
+656 0 obj
+(\134makeprelude)
+endobj
+657 0 obj
+<< /S /GoTo /D (macdef-makepostlude.3) >>
+endobj
+660 0 obj
+(\134makepostlude)
+endobj
+661 0 obj
+<< /S /GoTo /D (macdef-vvpenalty.3) >>
+endobj
+664 0 obj
+(\134vvpenalty)
+endobj
+665 0 obj
+<< /S /GoTo /D (macdef-ccpenalty.3) >>
+endobj
+668 0 obj
+(\134ccpenalty)
+endobj
+669 0 obj
+<< /S /GoTo /D (macdef-vcpenalty.3) >>
+endobj
+672 0 obj
+(\134vcpenalty)
+endobj
+673 0 obj
+<< /S /GoTo /D (macdef-cvpenalty.3) >>
+endobj
+676 0 obj
+(\134cvpenalty)
+endobj
+677 0 obj
+<< /S /GoTo /D (macdef-brkpenalty.3) >>
+endobj
+680 0 obj
+(\134brkpenalty)
+endobj
+681 0 obj
+<< /S /GoTo /D (macdef-sepverses.3) >>
+endobj
+684 0 obj
+(\134sepverses)
+endobj
+685 0 obj
+<< /S /GoTo /D (macdef-versejustify.3) >>
+endobj
+688 0 obj
+(\134versejustify)
+endobj
+689 0 obj
+<< /S /GoTo /D (macdef-chorusjustify.3) >>
+endobj
+692 0 obj
+(\134chorusjustify)
+endobj
+693 0 obj
+<< /S /GoTo /D (macdef-justifyleft.3) >>
+endobj
+696 0 obj
+(\134justifyleft)
+endobj
+697 0 obj
+<< /S /GoTo /D (macdef-justifycenter.3) >>
+endobj
+700 0 obj
+(\134justifycenter)
+endobj
+701 0 obj
+<< /S /GoTo /D (macdef-notejustify.3) >>
+endobj
+704 0 obj
+(\134notejustify)
+endobj
+705 0 obj
+<< /S /GoTo /D (macdef-placenote.3) >>
+endobj
+708 0 obj
+(\134placenote)
+endobj
+709 0 obj
+<< /S /GoTo /D (subsection.11.3) >>
+endobj
+712 0 obj
+(Scripture Appearance)
+endobj
+713 0 obj
+<< /S /GoTo /D (macdef-scripturefont.3) >>
+endobj
+716 0 obj
+(\134scripturefont)
+endobj
+717 0 obj
+<< /S /GoTo /D (macdef-printscrcite.3) >>
+endobj
+720 0 obj
+(\134printscrcite)
+endobj
+721 0 obj
+<< /S /GoTo /D (subsection.11.4) >>
+endobj
+724 0 obj
+(Conditional Blocks)
+endobj
+725 0 obj
+<< /S /GoTo /D (macdef-if.3) >>
+endobj
+728 0 obj
+(\134if...)
+endobj
+729 0 obj
+<< /S /GoTo /D (subsection.11.5) >>
+endobj
+732 0 obj
+(Page Layout)
+endobj
+733 0 obj
+<< /S /GoTo /D (macdef-songcolumns.3) >>
+endobj
+736 0 obj
+(\134songcolumns)
+endobj
+737 0 obj
+<< /S /GoTo /D (macdef-pagepreludes.3) >>
+endobj
+740 0 obj
+(\134pagepreludes)
+endobj
+741 0 obj
+<< /S /GoTo /D (macdef-columnsep.3) >>
+endobj
+744 0 obj
+(\134columnsep)
+endobj
+745 0 obj
+<< /S /GoTo /D (macdef-colbotglue.3) >>
+endobj
+748 0 obj
+(\134colbotglue)
+endobj
+749 0 obj
+<< /S /GoTo /D (macdef-lastcolglue.3) >>
+endobj
+752 0 obj
+(\134lastcolglue)
+endobj
+753 0 obj
+<< /S /GoTo /D (macdef-songpos.3) >>
+endobj
+756 0 obj
+(\134songpos)
+endobj
+757 0 obj
+<< /S /GoTo /D (macdef-spenalty.3) >>
+endobj
+760 0 obj
+(\134spenalty)
+endobj
+761 0 obj
+<< /S /GoTo /D (subsection.11.6) >>
+endobj
+764 0 obj
+(Indexes)
+endobj
+765 0 obj
+<< /S /GoTo /D (subsubsection.11.6.1) >>
+endobj
+768 0 obj
+(Index Appearance)
+endobj
+769 0 obj
+<< /S /GoTo /D (macdef-sepindexestrue.4) >>
+endobj
+772 0 obj
+(\134sepindexestrue)
+endobj
+773 0 obj
+<< /S /GoTo /D (macdef-sepindexesfalse.4) >>
+endobj
+776 0 obj
+(\134sepindexesfalse)
+endobj
+777 0 obj
+<< /S /GoTo /D (macdef-idxheadwidth.4) >>
+endobj
+780 0 obj
+(\134idxheadwidth)
+endobj
+781 0 obj
+<< /S /GoTo /D (macdef-idxrefsfont.4) >>
+endobj
+784 0 obj
+(\134idxrefsfont)
+endobj
+785 0 obj
+<< /S /GoTo /D (macdef-idxtitlefont.4) >>
+endobj
+788 0 obj
+(\134idxtitlefont)
+endobj
+789 0 obj
+<< /S /GoTo /D (macdef-idxlyricfont.4) >>
+endobj
+792 0 obj
+(\134idxlyricfont)
+endobj
+793 0 obj
+<< /S /GoTo /D (macdef-idxheadfont.4) >>
+endobj
+796 0 obj
+(\134idxheadfont)
+endobj
+797 0 obj
+<< /S /GoTo /D (macdef-idxbgcolor.4) >>
+endobj
+800 0 obj
+(\134idxbgcolor)
+endobj
+801 0 obj
+<< /S /GoTo /D (macdef-idxauthfont.4) >>
+endobj
+804 0 obj
+(\134idxauthfont)
+endobj
+805 0 obj
+<< /S /GoTo /D (macdef-idxscripfont.4) >>
+endobj
+808 0 obj
+(\134idxscripfont)
+endobj
+809 0 obj
+<< /S /GoTo /D (macdef-idxbook.4) >>
+endobj
+812 0 obj
+(\134idxbook)
+endobj
+813 0 obj
+<< /S /GoTo /D (macdef-idxcont.4) >>
+endobj
+816 0 obj
+(\134idxcont)
+endobj
+817 0 obj
+<< /S /GoTo /D (subsubsection.11.6.2) >>
+endobj
+820 0 obj
+(Entry References)
+endobj
+821 0 obj
+<< /S /GoTo /D (macdef-indexsongsas.4) >>
+endobj
+824 0 obj
+(\134indexsongsas)
+endobj
+825 0 obj
+<< /S /GoTo /D (subsubsection.11.6.3) >>
+endobj
+828 0 obj
+(PDF Bookmarks and Links)
+endobj
+829 0 obj
+<< /S /GoTo /D (macdef-songtarget.4) >>
+endobj
+832 0 obj
+(\134songtarget)
+endobj
+833 0 obj
+<< /S /GoTo /D (macdef-songlink.4) >>
+endobj
+836 0 obj
+(\134songlink)
+endobj
+837 0 obj
+<< /S /GoTo /D (subsubsection.11.6.4) >>
+endobj
+840 0 obj
+(Sort Order)
+endobj
+841 0 obj
+<< /S /GoTo /D (subsubsection.11.6.5) >>
+endobj
+844 0 obj
+(Special Words In Song Info)
+endobj
+845 0 obj
+<< /S /GoTo /D (macdef-titleprefixword.4) >>
+endobj
+848 0 obj
+(\134titleprefixword)
+endobj
+849 0 obj
+<< /S /GoTo /D (macdef-authsepword.4) >>
+endobj
+852 0 obj
+(\134authsepword)
+endobj
+853 0 obj
+<< /S /GoTo /D (macdef-authbyword.4) >>
+endobj
+856 0 obj
+(\134authbyword)
+endobj
+857 0 obj
+<< /S /GoTo /D (macdef-authignoreword.4) >>
+endobj
+860 0 obj
+(\134authignoreword)
+endobj
+861 0 obj
+<< /S /GoTo /D (subsection.11.7) >>
+endobj
+864 0 obj
+(Page Headers and Footers)
+endobj
+865 0 obj
+<< /S /GoTo /D (macdef-songmark.3) >>
+endobj
+868 0 obj
+(\134songmark)
+endobj
+869 0 obj
+<< /S /GoTo /D (macdef-versemark.3) >>
+endobj
+872 0 obj
+(\134versemark)
+endobj
+873 0 obj
+<< /S /GoTo /D (macdef-chorusmark.3) >>
+endobj
+876 0 obj
+(\134chorusmark)
+endobj
+877 0 obj
+<< /S /GoTo /D (subsection.11.8) >>
+endobj
+880 0 obj
+(Defining New Beginsong Keyvals)
+endobj
+881 0 obj
+<< /S /GoTo /D (macdef-newsongkey.3) >>
+endobj
+884 0 obj
+(\134newsongkey)
+endobj
+885 0 obj
+<< /S /GoTo /D (subsection.11.9) >>
+endobj
+888 0 obj
+(Font Kerning Corrections)
+endobj
+889 0 obj
+<< /S /GoTo /D (macdef-chordlocals.3) >>
+endobj
+892 0 obj
+(\134chordlocals)
+endobj
+893 0 obj
+<< /S /GoTo /D (macdef-shiftdblquotes.3) >>
+endobj
+896 0 obj
+(\134shiftdblquotes)
+endobj
+897 0 obj
+<< /S /GoTo /D (section.12) >>
+endobj
+900 0 obj
+(Informational Macros)
+endobj
+901 0 obj
+<< /S /GoTo /D (macdef-songauthors.2) >>
+endobj
+904 0 obj
+(\134songauthors)
+endobj
+905 0 obj
+<< /S /GoTo /D (macdef-songrefs.2) >>
+endobj
+908 0 obj
+(\134songrefs)
+endobj
+909 0 obj
+<< /S /GoTo /D (macdef-songcopyright.2) >>
+endobj
+912 0 obj
+(\134songcopyright)
+endobj
+913 0 obj
+<< /S /GoTo /D (macdef-songlicense.2) >>
+endobj
+916 0 obj
+(\134songlicense)
+endobj
+917 0 obj
+<< /S /GoTo /D (macdef-songtitle.2) >>
+endobj
+920 0 obj
+(\134songtitle)
+endobj
+921 0 obj
+<< /S /GoTo /D (macdef-resettitles.2) >>
+endobj
+924 0 obj
+(\134resettitles)
+endobj
+925 0 obj
+<< /S /GoTo /D (macdef-nexttitle.2) >>
+endobj
+928 0 obj
+(\134nexttitle)
+endobj
+929 0 obj
+<< /S /GoTo /D (macdef-foreachtitle.2) >>
+endobj
+932 0 obj
+(\134foreachtitle)
+endobj
+933 0 obj
+<< /S /GoTo /D (macdef-songlist.2) >>
+endobj
+936 0 obj
+(\134songlist)
+endobj
+937 0 obj
+<< /S /GoTo /D (section.13) >>
+endobj
+940 0 obj
+(Other Resources)
+endobj
+941 0 obj
+<< /S /GoTo /D (section.14) >>
+endobj
+944 0 obj
+(GNU General Public License)
+endobj
+945 0 obj
+<< /S /GoTo /D (section.15) >>
+endobj
+948 0 obj
+(Implementation)
+endobj
+949 0 obj
+<< /S /GoTo /D (subsection.15.1) >>
+endobj
+952 0 obj
+(Initialization)
+endobj
+953 0 obj
+<< /S /GoTo /D (subsection.15.2) >>
+endobj
+956 0 obj
+(Default Parameters)
+endobj
+957 0 obj
+<< /S /GoTo /D (mimpl-lyricfont.3) >>
+endobj
+960 0 obj
+(\134lyricfont)
+endobj
+961 0 obj
+<< /S /GoTo /D (mimpl-stitlefont.3) >>
+endobj
+964 0 obj
+(\134stitlefont)
+endobj
+965 0 obj
+<< /S /GoTo /D (mimpl-versefont.3) >>
+endobj
+968 0 obj
+(\134versefont)
+endobj
+969 0 obj
+<< /S /GoTo /D (mimpl-chorusfont.3) >>
+endobj
+972 0 obj
+(\134chorusfont)
+endobj
+973 0 obj
+<< /S /GoTo /D (mimpl-notefont.3) >>
+endobj
+976 0 obj
+(\134notefont)
+endobj
+977 0 obj
+<< /S /GoTo /D (mimpl-meterfont.3) >>
+endobj
+980 0 obj
+(\134meterfont)
+endobj
+981 0 obj
+<< /S /GoTo /D (mimpl-echofont.3) >>
+endobj
+984 0 obj
+(\134echofont)
+endobj
+985 0 obj
+<< /S /GoTo /D (mimpl-scripturefont.3) >>
+endobj
+988 0 obj
+(\134scripturefont)
+endobj
+989 0 obj
+<< /S /GoTo /D (mimpl-printscrcite.3) >>
+endobj
+992 0 obj
+(\134printscrcite)
+endobj
+993 0 obj
+<< /S /GoTo /D (mimpl-snumbgcolor.3) >>
+endobj
+996 0 obj
+(\134snumbgcolor)
+endobj
+997 0 obj
+<< /S /GoTo /D (mimpl-notebgcolor.3) >>
+endobj
+1000 0 obj
+(\134notebgcolor)
+endobj
+1001 0 obj
+<< /S /GoTo /D (mimpl-idxbgcolor.3) >>
+endobj
+1004 0 obj
+(\134idxbgcolor)
+endobj
+1005 0 obj
+<< /S /GoTo /D (mimpl-versejustify.3) >>
+endobj
+1008 0 obj
+(\134versejustify)
+endobj
+1009 0 obj
+<< /S /GoTo /D (mimpl-chorusjustify.3) >>
+endobj
+1012 0 obj
+(\134chorusjustify)
+endobj
+1013 0 obj
+<< /S /GoTo /D (mimpl-notejustify.3) >>
+endobj
+1016 0 obj
+(\134notejustify)
+endobj
+1017 0 obj
+<< /S /GoTo /D (mimpl-placenote.3) >>
+endobj
+1020 0 obj
+(\134placenote)
+endobj
+1021 0 obj
+<< /S /GoTo /D (mimpl-thesongnum.3) >>
+endobj
+1024 0 obj
+(\134thesongnum)
+endobj
+1025 0 obj
+<< /S /GoTo /D (mimpl-theversenum.3) >>
+endobj
+1028 0 obj
+(\134theversenum)
+endobj
+1029 0 obj
+<< /S /GoTo /D (mimpl-printsongnum.3) >>
+endobj
+1032 0 obj
+(\134printsongnum)
+endobj
+1033 0 obj
+<< /S /GoTo /D (mimpl-printversenum.3) >>
+endobj
+1036 0 obj
+(\134printversenum)
+endobj
+1037 0 obj
+<< /S /GoTo /D (mimpl-placeversenum.3) >>
+endobj
+1040 0 obj
+(\134placeversenum)
+endobj
+1041 0 obj
+<< /S /GoTo /D (mimpl-everyverse.3) >>
+endobj
+1044 0 obj
+(\134everyverse)
+endobj
+1045 0 obj
+<< /S /GoTo /D (mimpl-everychorus.3) >>
+endobj
+1048 0 obj
+(\134everychorus)
+endobj
+1049 0 obj
+<< /S /GoTo /D (mimpl-printchord.3) >>
+endobj
+1052 0 obj
+(\134printchord)
+endobj
+1053 0 obj
+<< /S /GoTo /D (mimpl-chordlocals.3) >>
+endobj
+1056 0 obj
+(\134chordlocals)
+endobj
+1057 0 obj
+<< /S /GoTo /D (mimpl-versesep.3) >>
+endobj
+1060 0 obj
+(\134versesep)
+endobj
+1061 0 obj
+<< /S /GoTo /D (mimpl-afterpreludeskip.3) >>
+endobj
+1064 0 obj
+(\134afterpreludeskip)
+endobj
+1065 0 obj
+<< /S /GoTo /D (mimpl-beforepostludeskip.3) >>
+endobj
+1068 0 obj
+(\134beforepostludeskip)
+endobj
+1069 0 obj
+<< /S /GoTo /D (mimpl-baselineadj.3) >>
+endobj
+1072 0 obj
+(\134baselineadj)
+endobj
+1073 0 obj
+<< /S /GoTo /D (mimpl-clineparams.3) >>
+endobj
+1076 0 obj
+(\134clineparams)
+endobj
+1077 0 obj
+<< /S /GoTo /D (mimpl-idxheadwidth.3) >>
+endobj
+1080 0 obj
+(\134idxheadwidth)
+endobj
+1081 0 obj
+<< /S /GoTo /D (mimpl-songnumwidth.3) >>
+endobj
+1084 0 obj
+(\134songnumwidth)
+endobj
+1085 0 obj
+<< /S /GoTo /D (mimpl-versenumwidth.3) >>
+endobj
+1088 0 obj
+(\134versenumwidth)
+endobj
+1089 0 obj
+<< /S /GoTo /D (mimpl-vvpenalty.3) >>
+endobj
+1092 0 obj
+(\134vvpenalty)
+endobj
+1093 0 obj
+<< /S /GoTo /D (mimpl-ccpenalty.3) >>
+endobj
+1096 0 obj
+(\134ccpenalty)
+endobj
+1097 0 obj
+<< /S /GoTo /D (mimpl-vcpenalty.3) >>
+endobj
+1100 0 obj
+(\134vcpenalty)
+endobj
+1101 0 obj
+<< /S /GoTo /D (mimpl-cvpenalty.3) >>
+endobj
+1104 0 obj
+(\134cvpenalty)
+endobj
+1105 0 obj
+<< /S /GoTo /D (mimpl-brkpenalty.3) >>
+endobj
+1108 0 obj
+(\134brkpenalty)
+endobj
+1109 0 obj
+<< /S /GoTo /D (mimpl-spenalty.3) >>
+endobj
+1112 0 obj
+(\134spenalty)
+endobj
+1113 0 obj
+<< /S /GoTo /D (mimpl-songmark.3) >>
+endobj
+1116 0 obj
+(\134songmark)
+endobj
+1117 0 obj
+<< /S /GoTo /D (mimpl-versemark.3) >>
+endobj
+1120 0 obj
+(\134versemark)
+endobj
+1121 0 obj
+<< /S /GoTo /D (mimpl-chorusmark.3) >>
+endobj
+1124 0 obj
+(\134chorusmark)
+endobj
+1125 0 obj
+<< /S /GoTo /D (mimpl-extendprelude.3) >>
+endobj
+1128 0 obj
+(\134extendprelude)
+endobj
+1129 0 obj
+<< /S /GoTo /D (mimpl-extendpostlude.3) >>
+endobj
+1132 0 obj
+(\134extendpostlude)
+endobj
+1133 0 obj
+<< /S /GoTo /D (mimpl-idxheadfont.3) >>
+endobj
+1136 0 obj
+(\134idxheadfont)
+endobj
+1137 0 obj
+<< /S /GoTo /D (mimpl-idxtitlefont.3) >>
+endobj
+1140 0 obj
+(\134idxtitlefont)
+endobj
+1141 0 obj
+<< /S /GoTo /D (mimpl-idxlyricfont.3) >>
+endobj
+1144 0 obj
+(\134idxlyricfont)
+endobj
+1145 0 obj
+<< /S /GoTo /D (mimpl-idxscripfont.3) >>
+endobj
+1148 0 obj
+(\134idxscripfont)
+endobj
+1149 0 obj
+<< /S /GoTo /D (mimpl-idxauthfont.3) >>
+endobj
+1152 0 obj
+(\134idxauthfont)
+endobj
+1153 0 obj
+<< /S /GoTo /D (mimpl-idxrefsfont.3) >>
+endobj
+1156 0 obj
+(\134idxrefsfont)
+endobj
+1157 0 obj
+<< /S /GoTo /D (mimpl-idxbook.3) >>
+endobj
+1160 0 obj
+(\134idxbook)
+endobj
+1161 0 obj
+<< /S /GoTo /D (mimpl-idxcont.3) >>
+endobj
+1164 0 obj
+(\134idxcont)
+endobj
+1165 0 obj
+<< /S /GoTo /D (subsection.15.3) >>
+endobj
+1168 0 obj
+(Package Options)
+endobj
+1169 0 obj
+<< /S /GoTo /D (eimpl-slides.3) >>
+endobj
+1172 0 obj
+(slides)
+endobj
+1173 0 obj
+<< /S /GoTo /D (mimpl-slides.3) >>
+endobj
+1176 0 obj
+(\134slides)
+endobj
+1177 0 obj
+<< /S /GoTo /D (eimpl-unouter.3) >>
+endobj
+1180 0 obj
+(unouter)
+endobj
+1181 0 obj
+<< /S /GoTo /D (eimpl-rawtext.3) >>
+endobj
+1184 0 obj
+(rawtext)
+endobj
+1185 0 obj
+<< /S /GoTo /D (eimpl-noshading.3) >>
+endobj
+1188 0 obj
+(noshading)
+endobj
+1189 0 obj
+<< /S /GoTo /D (eimpl-noindexes.3) >>
+endobj
+1192 0 obj
+(noindexes)
+endobj
+1193 0 obj
+<< /S /GoTo /D (mimpl-indexeson.3) >>
+endobj
+1196 0 obj
+(\134indexeson)
+endobj
+1197 0 obj
+<< /S /GoTo /D (mimpl-indexesoff.3) >>
+endobj
+1200 0 obj
+(\134indexesoff)
+endobj
+1201 0 obj
+<< /S /GoTo /D (eimpl-nopdfindex.3) >>
+endobj
+1204 0 obj
+(nopdfindex)
+endobj
+1205 0 obj
+<< /S /GoTo /D (eimpl-chorded.3) >>
+endobj
+1208 0 obj
+(chorded)
+endobj
+1209 0 obj
+<< /S /GoTo /D (eimpl-lyric.3) >>
+endobj
+1212 0 obj
+(lyric)
+endobj
+1213 0 obj
+<< /S /GoTo /D (mimpl-chordson.3) >>
+endobj
+1216 0 obj
+(\134chordson)
+endobj
+1217 0 obj
+<< /S /GoTo /D (mimpl-chordsoff.3) >>
+endobj
+1220 0 obj
+(\134chordsoff)
+endobj
+1221 0 obj
+<< /S /GoTo /D (eimpl-showmeasures.3) >>
+endobj
+1224 0 obj
+(showmeasures)
+endobj
+1225 0 obj
+<< /S /GoTo /D (eimpl-nomeasures.3) >>
+endobj
+1228 0 obj
+(nomeasures)
+endobj
+1229 0 obj
+<< /S /GoTo /D (mimpl-measureson.3) >>
+endobj
+1232 0 obj
+(\134measureson)
+endobj
+1233 0 obj
+<< /S /GoTo /D (mimpl-measuresoff.3) >>
+endobj
+1236 0 obj
+(\134measuresoff)
+endobj
+1237 0 obj
+<< /S /GoTo /D (eimpl-transposecapos.3) >>
+endobj
+1240 0 obj
+(transposecapos)
+endobj
+1241 0 obj
+<< /S /GoTo /D (eimpl-noscripture.3) >>
+endobj
+1244 0 obj
+(noscripture)
+endobj
+1245 0 obj
+<< /S /GoTo /D (mimpl-scriptureon.3) >>
+endobj
+1248 0 obj
+(\134scriptureon)
+endobj
+1249 0 obj
+<< /S /GoTo /D (mimpl-scriptureoff.3) >>
+endobj
+1252 0 obj
+(\134scriptureoff)
+endobj
+1253 0 obj
+<< /S /GoTo /D (eimpl-onesongcolumn.3) >>
+endobj
+1256 0 obj
+(onesongcolumn)
+endobj
+1257 0 obj
+<< /S /GoTo /D (eimpl-twosongcolumns.3) >>
+endobj
+1260 0 obj
+(twosongcolumns)
+endobj
+1261 0 obj
+<< /S /GoTo /D (mimpl-onesongcolumn.3) >>
+endobj
+1264 0 obj
+(\134onesongcolumn)
+endobj
+1265 0 obj
+<< /S /GoTo /D (mimpl-twosongcolumns.3) >>
+endobj
+1268 0 obj
+(\134twosongcolumns)
+endobj
+1269 0 obj
+<< /S /GoTo /D (mimpl-songcolumns.3) >>
+endobj
+1272 0 obj
+(\134songcolumns)
+endobj
+1273 0 obj
+<< /S /GoTo /D (mimpl-includeonlysongs.3) >>
+endobj
+1276 0 obj
+(\134includeonlysongs)
+endobj
+1277 0 obj
+<< /S /GoTo /D (mimpl-nosongnumbers.3) >>
+endobj
+1280 0 obj
+(\134nosongnumbers)
+endobj
+1281 0 obj
+<< /S /GoTo /D (mimpl-noversenumbers.3) >>
+endobj
+1284 0 obj
+(\134noversenumbers)
+endobj
+1285 0 obj
+<< /S /GoTo /D (mimpl-repchoruses.3) >>
+endobj
+1288 0 obj
+(\134repchoruses)
+endobj
+1289 0 obj
+<< /S /GoTo /D (mimpl-norepchoruses.3) >>
+endobj
+1292 0 obj
+(\134norepchoruses)
+endobj
+1293 0 obj
+<< /S /GoTo /D (subsection.15.4) >>
+endobj
+1296 0 obj
+(Page-builder)
+endobj
+1297 0 obj
+<< /S /GoTo /D (mimpl-commitsongs.3) >>
+endobj
+1300 0 obj
+(\134commitsongs)
+endobj
+1301 0 obj
+<< /S /GoTo /D (mimpl-nextcol.3) >>
+endobj
+1304 0 obj
+(\134nextcol)
+endobj
+1305 0 obj
+<< /S /GoTo /D (mimpl-sclearpage.3) >>
+endobj
+1308 0 obj
+(\134sclearpage)
+endobj
+1309 0 obj
+<< /S /GoTo /D (mimpl-scleardpage.3) >>
+endobj
+1312 0 obj
+(\134scleardpage)
+endobj
+1313 0 obj
+<< /S /GoTo /D (subsection.15.5) >>
+endobj
+1316 0 obj
+(Songs)
+endobj
+1317 0 obj
+<< /S /GoTo /D (mimpl-resettitles.3) >>
+endobj
+1320 0 obj
+(\134resettitles)
+endobj
+1321 0 obj
+<< /S /GoTo /D (mimpl-nexttitle.3) >>
+endobj
+1324 0 obj
+(\134nexttitle)
+endobj
+1325 0 obj
+<< /S /GoTo /D (mimpl-foreachtitle.3) >>
+endobj
+1328 0 obj
+(\134foreachtitle)
+endobj
+1329 0 obj
+<< /S /GoTo /D (mimpl-songauthors.3) >>
+endobj
+1332 0 obj
+(\134songauthors)
+endobj
+1333 0 obj
+<< /S /GoTo /D (mimpl-songcopyright.3) >>
+endobj
+1336 0 obj
+(\134songcopyright)
+endobj
+1337 0 obj
+<< /S /GoTo /D (mimpl-songlicense.3) >>
+endobj
+1340 0 obj
+(\134songlicense)
+endobj
+1341 0 obj
+<< /S /GoTo /D (mimpl-songrefs.3) >>
+endobj
+1344 0 obj
+(\134songrefs)
+endobj
+1345 0 obj
+<< /S /GoTo /D (mimpl-setlicense.3) >>
+endobj
+1348 0 obj
+(\134setlicense)
+endobj
+1349 0 obj
+<< /S /GoTo /D (mimpl-newsongkey.3) >>
+endobj
+1352 0 obj
+(\134newsongkey)
+endobj
+1353 0 obj
+<< /S /GoTo /D (eimpl-song.3) >>
+endobj
+1356 0 obj
+(song)
+endobj
+1357 0 obj
+<< /S /GoTo /D (mimpl-makeprelude.3) >>
+endobj
+1360 0 obj
+(\134makeprelude)
+endobj
+1361 0 obj
+<< /S /GoTo /D (mimpl-makepostlude.3) >>
+endobj
+1364 0 obj
+(\134makepostlude)
+endobj
+1365 0 obj
+<< /S /GoTo /D (mimpl-showauthors.3) >>
+endobj
+1368 0 obj
+(\134showauthors)
+endobj
+1369 0 obj
+<< /S /GoTo /D (mimpl-showrefs.3) >>
+endobj
+1372 0 obj
+(\134showrefs)
+endobj
+1373 0 obj
+<< /S /GoTo /D (subsection.15.6) >>
+endobj
+1376 0 obj
+(Verses and Choruses)
+endobj
+1377 0 obj
+<< /S /GoTo /D (eimpl-verse.3) >>
+endobj
+1380 0 obj
+(verse)
+endobj
+1381 0 obj
+<< /S /GoTo /D (eimpl-chorus.3) >>
+endobj
+1384 0 obj
+(chorus)
+endobj
+1385 0 obj
+<< /S /GoTo /D (mimpl-brk.3) >>
+endobj
+1388 0 obj
+(\134brk)
+endobj
+1389 0 obj
+<< /S /GoTo /D (mimpl-textnote.3) >>
+endobj
+1392 0 obj
+(\134textnote)
+endobj
+1393 0 obj
+<< /S /GoTo /D (mimpl-musicnote.3) >>
+endobj
+1396 0 obj
+(\134musicnote)
+endobj
+1397 0 obj
+<< /S /GoTo /D (mimpl-echo.3) >>
+endobj
+1400 0 obj
+(\134echo)
+endobj
+1401 0 obj
+<< /S /GoTo /D (mimpl-rep.3) >>
+endobj
+1404 0 obj
+(\134rep)
+endobj
+1405 0 obj
+<< /S /GoTo /D (subsection.15.7) >>
+endobj
+1408 0 obj
+(Scripture Quotations)
+endobj
+1409 0 obj
+<< /S /GoTo /D (eimpl-songgroup.3) >>
+endobj
+1412 0 obj
+(songgroup)
+endobj
+1413 0 obj
+<< /S /GoTo /D (eimpl-intersong.3) >>
+endobj
+1416 0 obj
+(intersong)
+endobj
+1417 0 obj
+<< /S /GoTo /D (eimpl-scripture.3) >>
+endobj
+1420 0 obj
+(scripture)
+endobj
+1421 0 obj
+<< /S /GoTo /D (mimpl-scitehere.3) >>
+endobj
+1424 0 obj
+(\134scitehere)
+endobj
+1425 0 obj
+<< /S /GoTo /D (mimpl-Acolon.3) >>
+endobj
+1428 0 obj
+(\134Acolon)
+endobj
+1429 0 obj
+<< /S /GoTo /D (mimpl-Bcolon.3) >>
+endobj
+1432 0 obj
+(\134Bcolon)
+endobj
+1433 0 obj
+<< /S /GoTo /D (mimpl-strophe.3) >>
+endobj
+1436 0 obj
+(\134strophe)
+endobj
+1437 0 obj
+<< /S /GoTo /D (mimpl-scripindent.3) >>
+endobj
+1440 0 obj
+(\134scripindent)
+endobj
+1441 0 obj
+<< /S /GoTo /D (mimpl-scripoutdent.3) >>
+endobj
+1444 0 obj
+(\134scripoutdent)
+endobj
+1445 0 obj
+<< /S /GoTo /D (mimpl-shiftdblquotes.3) >>
+endobj
+1448 0 obj
+(\134shiftdblquotes)
+endobj
+1449 0 obj
+<< /S /GoTo /D (subsection.15.8) >>
+endobj
+1452 0 obj
+(Transposition)
+endobj
+1453 0 obj
+<< /S /GoTo /D (mimpl-notenamesin.3) >>
+endobj
+1456 0 obj
+(\134notenamesin)
+endobj
+1457 0 obj
+<< /S /GoTo /D (mimpl-notenamesout.3) >>
+endobj
+1460 0 obj
+(\134notenamesout)
+endobj
+1461 0 obj
+<< /S /GoTo /D (mimpl-notenames.3) >>
+endobj
+1464 0 obj
+(\134notenames)
+endobj
+1465 0 obj
+<< /S /GoTo /D (mimpl-alphascale.3) >>
+endobj
+1468 0 obj
+(\134alphascale)
+endobj
+1469 0 obj
+<< /S /GoTo /D (mimpl-solfedge.3) >>
+endobj
+1472 0 obj
+(\134solfedge)
+endobj
+1473 0 obj
+<< /S /GoTo /D (mimpl-transpose.3) >>
+endobj
+1476 0 obj
+(\134transpose)
+endobj
+1477 0 obj
+<< /S /GoTo /D (mimpl-capo.3) >>
+endobj
+1480 0 obj
+(\134capo)
+endobj
+1481 0 obj
+<< /S /GoTo /D (mimpl-prefersharps.3) >>
+endobj
+1484 0 obj
+(\134prefersharps)
+endobj
+1485 0 obj
+<< /S /GoTo /D (mimpl-preferflats.3) >>
+endobj
+1488 0 obj
+(\134preferflats)
+endobj
+1489 0 obj
+<< /S /GoTo /D (mimpl-transposehere.3) >>
+endobj
+1492 0 obj
+(\134transposehere)
+endobj
+1493 0 obj
+<< /S /GoTo /D (mimpl-notrans.3) >>
+endobj
+1496 0 obj
+(\134notrans)
+endobj
+1497 0 obj
+<< /S /GoTo /D (mimpl-trchordformat.3) >>
+endobj
+1500 0 obj
+(\134trchordformat)
+endobj
+1501 0 obj
+<< /S /GoTo /D (subsection.15.9) >>
+endobj
+1504 0 obj
+(Measure Bars)
+endobj
+1505 0 obj
+<< /S /GoTo /D (mimpl-meter.3) >>
+endobj
+1508 0 obj
+(\134meter)
+endobj
+1509 0 obj
+<< /S /GoTo /D (mimpl-mbar.3) >>
+endobj
+1512 0 obj
+(\134mbar)
+endobj
+1513 0 obj
+<< /S /GoTo /D (mimpl-measurebar.3) >>
+endobj
+1516 0 obj
+(\134measurebar)
+endobj
+1517 0 obj
+<< /S /GoTo /D (mimpl-lrep.3) >>
+endobj
+1520 0 obj
+(\134lrep)
+endobj
+1521 0 obj
+<< /S /GoTo /D (mimpl-rrep.3) >>
+endobj
+1524 0 obj
+(\134rrep)
+endobj
+1525 0 obj
+<< /S /GoTo /D (subsection.15.10) >>
+endobj
+1528 0 obj
+(Lyric Scanning)
+endobj
+1529 0 obj
+<< /S /GoTo /D (mimpl-DeclareLyricChar.3) >>
+endobj
+1532 0 obj
+(\134DeclareLyricChar)
+endobj
+1533 0 obj
+<< /S /GoTo /D (mimpl-DeclareNonLyric.3) >>
+endobj
+1536 0 obj
+(\134DeclareNonLyric)
+endobj
+1537 0 obj
+<< /S /GoTo /D (mimpl-DeclareNoHyphen.3) >>
+endobj
+1540 0 obj
+(\134DeclareNoHyphen)
+endobj
+1541 0 obj
+<< /S /GoTo /D (mimpl-MultiwordChords.3) >>
+endobj
+1544 0 obj
+(\134MultiwordChords)
+endobj
+1545 0 obj
+<< /S /GoTo /D (subsection.15.11) >>
+endobj
+1548 0 obj
+(Chords)
+endobj
+1549 0 obj
+<< /S /GoTo /D (mimpl-[.3) >>
+endobj
+1552 0 obj
+(\134[)
+endobj
+1553 0 obj
+<< /S /GoTo /D (mimpl-sharpsymbol.3) >>
+endobj
+1556 0 obj
+(\134sharpsymbol)
+endobj
+1557 0 obj
+<< /S /GoTo /D (mimpl-flatsymbol.3) >>
+endobj
+1560 0 obj
+(\134flatsymbol)
+endobj
+1561 0 obj
+<< /S /GoTo /D (mimpl-shrp.3) >>
+endobj
+1564 0 obj
+(\134shrp)
+endobj
+1565 0 obj
+<< /S /GoTo /D (mimpl-flt.3) >>
+endobj
+1568 0 obj
+(\134flt)
+endobj
+1569 0 obj
+<< /S /GoTo /D (mimpl-ch.3) >>
+endobj
+1572 0 obj
+(\134ch)
+endobj
+1573 0 obj
+<< /S /GoTo /D (mimpl-mch.3) >>
+endobj
+1576 0 obj
+(\134mch)
+endobj
+1577 0 obj
+<< /S /GoTo /D (subsection.15.12) >>
+endobj
+1580 0 obj
+(Chord Replaying)
+endobj
+1581 0 obj
+<< /S /GoTo /D (mimpl-newchords.3) >>
+endobj
+1584 0 obj
+(\134newchords)
+endobj
+1585 0 obj
+<< /S /GoTo /D (mimpl-memorize.3) >>
+endobj
+1588 0 obj
+(\134memorize)
+endobj
+1589 0 obj
+<< /S /GoTo /D (mimpl-replay.3) >>
+endobj
+1592 0 obj
+(\134replay)
+endobj
+1593 0 obj
+<< /S /GoTo /D (subsection.15.13) >>
+endobj
+1596 0 obj
+(Guitar Tablatures)
+endobj
+1597 0 obj
+<< /S /GoTo /D (mimpl-gtabtrans.3) >>
+endobj
+1600 0 obj
+(\134gtabtrans)
+endobj
+1601 0 obj
+<< /S /GoTo /D (mimpl-gtab.3) >>
+endobj
+1604 0 obj
+(\134gtab)
+endobj
+1605 0 obj
+<< /S /GoTo /D (subsection.15.14) >>
+endobj
+1608 0 obj
+(Book Sectioning)
+endobj
+1609 0 obj
+<< /S /GoTo /D (mimpl-songchapter.3) >>
+endobj
+1612 0 obj
+(\134songchapter)
+endobj
+1613 0 obj
+<< /S /GoTo /D (mimpl-songsection.3) >>
+endobj
+1616 0 obj
+(\134songsection)
+endobj
+1617 0 obj
+<< /S /GoTo /D (eimpl-songs.3) >>
+endobj
+1620 0 obj
+(songs)
+endobj
+1621 0 obj
+<< /S /GoTo /D (subsection.15.15) >>
+endobj
+1624 0 obj
+(Index Generation)
+endobj
+1625 0 obj
+<< /S /GoTo /D (mimpl-songtarget.3) >>
+endobj
+1628 0 obj
+(\134songtarget)
+endobj
+1629 0 obj
+<< /S /GoTo /D (mimpl-songlink.3) >>
+endobj
+1632 0 obj
+(\134songlink)
+endobj
+1633 0 obj
+<< /S /GoTo /D (mimpl-newindex.3) >>
+endobj
+1636 0 obj
+(\134newindex)
+endobj
+1637 0 obj
+<< /S /GoTo /D (mimpl-newscripindex.3) >>
+endobj
+1640 0 obj
+(\134newscripindex)
+endobj
+1641 0 obj
+<< /S /GoTo /D (mimpl-newauthorindex.3) >>
+endobj
+1644 0 obj
+(\134newauthorindex)
+endobj
+1645 0 obj
+<< /S /GoTo /D (mimpl-indexentry.3) >>
+endobj
+1648 0 obj
+(\134indexentry)
+endobj
+1649 0 obj
+<< /S /GoTo /D (mimpl-indextitleentry.3) >>
+endobj
+1652 0 obj
+(\134indextitleentry)
+endobj
+1653 0 obj
+<< /S /GoTo /D (mimpl-indexsongsas.3) >>
+endobj
+1656 0 obj
+(\134indexsongsas)
+endobj
+1657 0 obj
+<< /S /GoTo /D (mimpl-authsepword.3) >>
+endobj
+1660 0 obj
+(\134authsepword)
+endobj
+1661 0 obj
+<< /S /GoTo /D (mimpl-authbyword.3) >>
+endobj
+1664 0 obj
+(\134authbyword)
+endobj
+1665 0 obj
+<< /S /GoTo /D (mimpl-authignoreword.3) >>
+endobj
+1668 0 obj
+(\134authignoreword)
+endobj
+1669 0 obj
+<< /S /GoTo /D (mimpl-titleprefixword.3) >>
+endobj
+1672 0 obj
+(\134titleprefixword)
+endobj
+1673 0 obj
+<< /S /GoTo /D (mimpl-showindex.3) >>
+endobj
+1676 0 obj
+(\134showindex)
+endobj
+1677 0 obj
+<< /S /GoTo /D (subsection.15.16) >>
+endobj
+1680 0 obj
+(Error Messages)
+endobj
+1681 0 obj
+<< /S /GoTo /D (subsection.15.17) >>
+endobj
+1684 0 obj
+(Option Processing)
+endobj
+1685 0 obj
+<< /S /GoTo /D (subsection.15.18) >>
+endobj
+1688 0 obj
+(Rawtext Mode)
+endobj
+1689 0 obj
+<< /S /GoTo /D (subsection.15.19) >>
+endobj
+1692 0 obj
+(Codeline Index)
+endobj
+1693 0 obj
+<< /S /GoTo /D [1694 0 R /Fit] >>
+endobj
+1698 0 obj
+<<
+/Length 2512
+/Filter /FlateDecode
+>>
+stream
+xÚYQã6~Ÿ_áG°ÑX’eKèÓÐíõ®8\o§èm<‰2q׉SÛ™íܯ¿¢ìØÙd§Àb#ѤDŠäGJ“%ÏI–|w—ÝøýÛãÝÇÜ%²Jš<yÜ&ªÐÂi›ÒíTò¸I~Iwþþ·Ç<|0ÙœW+‘[‰•SYd¢œ(òÜK)dá-ʬ`®_3)¯­%¥Ðy²šqžãŠ
+–ªrÜôX­ïU‘~ªž£†ÊÒRÎEÌ&º€1B‘:¼¦™³Èæœ+)•pJC#¤vÌýOÿRîW[ü,è·Lÿ^í %H[ã\²RZè2J|ôÇÁïïÁøt¿Âÿ¾cq%ß±¼Êä½L--ð…?>”Eb…+
+6Õ‰ë®r“£þïŸú¡«ÖÃ-y=“—"S ÃÎD:ø
+Ö™LŠ¢,“ÇýÜ­ \•R8 «ÍRêìg„ˆË³p|r’
+ÿ*¬—D²˜ã8šYõ“>Õ„*.MʵPn‚RÿNT‡DYÚ8R,+¨-ëóŽÇÃŽÊÌ ô·Rz)©—[}çU™£©60ÂHý&ÎO;¡±Ê-wºó“˜+Ņв§Üš„-Á8¹ ë˜ÕHuʈ
+ÙYChà—[¾Ø™S„]õ‡¦Ûd ±Š¦”fCÅâ!@ö/A‡æ…:
+Íx^.nDtë::à8ãJAW­ ¾ Râ…Žã• €'â}oðÝKÍýfîkOÏ»qâypêã D4 ­»ú8ÐÑuñËä׿TY•Eª"¼Tó«‚®
+Ƹ*Œ÷„|l^ìØÞóa¢†`úø5:V¡“„­·‹þj{./µ4™0e¼ÿ¨Ø¦?Þ»Ù²ÇåŽ{±qúSïo䟼èÕ•²¸à–oõêrÖ«çîBìí^]–‰ÒX§”ob¸œõêù´Øé6®Èy¯žé¥ØÅ&¡¿Èeè:ïy­ˆ›Z‘o˜üÐõûÙ]9Imê«]ýtâ
+uìzü Ó}ì¢ëíkÜ{à'Ähw#龈P‰ËrÞ˜sÁñ4äT°çoßýë§8o Oþ}zjø]Ŧ? Ï}d¯â:GbèwœÈÔ§"î_/–þpou<5EÐsÑÀ]µ(+/-ÂÉæÑ?aÅrã~¼ñuìqpK=lÏ™‚Š<[þeÝ@Fï?ÿÒý"ÜHÀñúªSüB·êñRu7®ÿ>²2jÄÛ¸¢¥ /–ÖÉñú·Ê3z•;Æåiò5S¬? šÑ)—‚ñ–'[:(Öñû¯J—@ŽÅƒê·wÜ]b%UY–Éz÷ËoY²ÁGj?4êòçÀºI‘ä®&ùx÷#?°ëlþXTà-]xêt‹¼x”Ö Ú¨2“—§RXÜS ˆÎtDJÅÜdèŠÂýëD¡Jó WöóÅ,f~á®/¯ °g¹ü¬¹¥–²°Bڥ܋ôØã±á÷7R Øb-™{êݵeãšÚ°¥„EaÉu|ÜŸ«¿RB•¬2¡òéo æëújWà^èKš±Žñ¹Ÿ†? þåçþh¨«ëCÏ‹X) ¢7Ö›M="]|7fô
+ÃرÅä’ÓŒI‰9c &,ÂdÂ"ŒÏXDoÓñzÄ"”ºtÃK>OdF—z؈G˜<¢—dbð誛&KMqnÒ°š;c‘¸ñGŠeê—¡j'+\p³ÂiÙøNúˆ
+endstream
+endobj
+1694 0 obj
+<<
+/Type /Page
+/Contents 1698 0 R
+/Resources 1697 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+/Annots [ 1695 0 R ]
+>>
+endobj
+1695 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [332.38 189.958 344.535 200.751]
+/A << /S /GoTo /D (section.14) >>
+>>
+endobj
+1699 0 obj
+<<
+/D [1694 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1700 0 obj
+<<
+/D [1694 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2 0 obj
+<<
+/D [1694 0 R /XYZ 153.694 441.085 null]
+>>
+endobj
+6 0 obj
+<<
+/D [1694 0 R /XYZ 153.694 266.573 null]
+>>
+endobj
+1697 0 obj
+<<
+/Font << /F49 1701 0 R /F50 1702 0 R /F51 1703 0 R /F28 1704 0 R /F60 1705 0 R /F76 1706 0 R /F73 1707 0 R /F77 1708 0 R /F86 1709 0 R /F89 1710 0 R /F19 1711 0 R /F16 1712 0 R /F94 1713 0 R /F30 1714 0 R /F63 1715 0 R /F69 1716 0 R /F29 1717 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1725 0 obj
+<<
+/Length 2021
+/Filter /FlateDecode
+>>
+stream
+xÚXIs㶾ϯÐ-T•—Iå`ÏâIf^*+5¯j¬EAŸIBábGÏ5ÿ=Ý
+
+/)·Ç˜ø$Žƒ=°\ $a‘ã1Žb/©ª¤lºóñ‰ãÌg$ƒÓ?¢bO˜¨‡1ÚYÚ™ó”ð²b“gÖ¤‚ÏŒT¤mðgkÉôòœ<„¢+öô(T5fÌK×`Æ8
+
+åÔåB„¹`¾.‡btRcêYm`ž&¥¥HòZÛÑ^•ÅžžƒŒÒ&níX?VY“•+Ç_[r''ò>Ž#éUÊÍnõÒdè#þ$Õ÷÷¶ú1Ô¹BÛr‘4™.MÙûÞÏeJpÈbORû:êAUÜçÚiénaØ€6;'›µ£Îµ]¹k]7–=ìþçÊ.úŒRB¹OÝÆ·Wm8ÔÑQÆ’› Ð1¤^m\vu«ìªÝe}ÔªlµF‚昇ºì %‰bn… Ô€jÚ˜0áh%:š.€èΧò|æGÁ|Yu?«“¾ ñWb—>%E®J,ŽÐwAª:›JcJ’6ÎØò¼0ñ;æ< ¹ c"YØÉ„G]RE‘—'ª»ø€¼UUÛd¾ðj“mûôp#™èþO¥î”ñ¾šo’•#Iš·Î#”ó5\ÀH”ЮîÖM³y{yYërU“Z·UªÀ°•"¥rq‹â„‹€™8
+¼ß½™-sýøã Õù”N¡Œ÷3‚N\ÓVj_Æ»ÙZUj t®Ü¹g…¯}éî(1à•¸õ9$ôÅ`g«´H~(;ÁÛ¡àÖk†šD'Ýðqg*X6 Эi.ú…+G—Œ–Óåµ íå»Ù'}L››Ù jCNúåÝìÊØG SåâÙTƒ}§·Ï R ¡ÿSà©y
+)öO¶å5ý®4¨žYè= ËèÆK.`^ðß––à‹½\ð @âGƒ– Z
+ù¯5èΗþ3wÏ©öŸÀ?²Ü,–Øüõ q¸Ex$ /4„®P‘¾}õýxJó>5 ¦Ñâ¦:Ší\C±3ä¸Ð£æ :C/p NºûÑàÔë}N#µÃ† ÿ¡ì9µ‡îÀC.èu!Ó–à L
+3bæ¡>زï
+;îš[¬]s‹;Iק2ó"‚vÈ)<[§kÇü·ÿ˜è™Eîa8Døg¯MYHX¼—0,ŽÆ‹ãU¨Z>dé|
+YñRŸbWŸdK«Xß#C­ãƒÿBGÃeÀÿ%Õ¶§#ç!‘üÀyöß×Ö>XKÃùlñ½P@ѳ>‹=|9áˆãJ­Ì_f¯×ZD€6<Ê{ñ-+£hÈ€<‹u=XF*.Š ܃ƒ Î}˜¾ù<–´¬
+endstream
+endobj
+1724 0 obj
+<<
+/Type /Page
+/Contents 1725 0 R
+/Resources 1723 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+/Annots [ 1696 0 R 1719 0 R ]
+>>
+endobj
+1696 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [480.52 630.392 492.674 641.184]
+/A << /S /GoTo /D (section.14) >>
+>>
+endobj
+1719 0 obj
+<<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [256.309 557.927 404.752 569.052]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://songs.sourceforge.net)>>
+>>
+endobj
+1726 0 obj
+<<
+/D [1724 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+10 0 obj
+<<
+/D [1724 0 R /XYZ 153.694 543.911 null]
+>>
+endobj
+1723 0 obj
+<<
+/Font << /F19 1711 0 R /F105 1727 0 R /F28 1704 0 R /F113 1728 0 R /F89 1710 0 R /F114 1729 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1732 0 obj
+<<
+/Length 2688
+/Filter /FlateDecode
+>>
+stream
+xÚµZKsÛ8¾ûW°j¡ª"o‚™ÃV2vœd“ìÄU9ÌÌ–(‰><$e¯ÿý6P&e¼ÉE|ˆh6º?tÝ ¶.ÏðÑñíÕÙ«wD$B”\ma¤¸
+¤ÀˆF"¸Z„ߌ„Õ‚á°nvÙÍbÉd~­Êm³øëêãÙÅÕÙßg$â€D0$cHÎPD¢`UœýñÖðçÇ
+8ŠazÄ,“`©@û¾ßÓ[mÝ4_,I˜,HØfú¬‚³¬-D(^Ö SaV–D,Ž¬OÕ>kKA¢ðmµ¯·ie.e˜”ksÿjW‰½ù¯´ìå¼`BtóZrŠ$£ø&he_ÚGã F±¤²Ó XF(ŽÌ_ê$kRP™±ð²Z,©
+×/'å †UÁÃÐó9Ù›º*&Eç„Hº(æD}Û9D1ŠX4Ôêí¬¬$ϧµû©ØK­ë<mšia‰ØÇX™]œýJG8†£@XD'úõOÌÀZ…w¿8¤Â@*¬Tù ´¼ÏŠ—æÌeP©ˆ„VušLŠ‚õq/×´û:u¸F/Æ¡o~“µKëtZA’ õšµàu·Ä¦¥ˆ Ì 4ùÓ.†ˆN
+‚<p²jf§úÖ1&®° 9 ñѯH˃vrÈ­¨%¸™ÆV¹/ûë<[-–<¢áZfÆNókŽ!ä)zý#d $ûa¾ò²d*`*F¬Gו6#„8p~úí÷ss¦©¨>
+r÷µK&¦Cs^Ì’çaƒæAbDhš“2y¹n¾>ÞçwÚkIý}Z{Ý |ÀP¦¦Ð®]…¶ˆGMÁY o ƒ‚%w°Š>fåÖfX Hˆ±eÍ
+„â´ËK÷T†˜Ÿ
+Æcr*CŽÂ„}LA†íƒ]”¯ ÊÃ]¨æ÷Ó KDÅPw“1²Ó²´:)KSmù‡WM{lqD°èVÿÑï3»"Wu²ií…£Õ&1,N¿0xóÐ9¾{a×MâXû\Ï’ûDÄ-Ðû¶Oð‚4—G ¾tlÐÚ%óÛ «‹Ô†ô»LWxÆhût:ðD`‘>7¯œkž28´Ïí’öÐXÑ\>¢GáºN$’Øk“ *¥~®™ƒíD…W(+‹³K$”ã®õ,Πª””>Ám¸—Š¯q1L*Ä%:Òšÿ<›^ šc2/Òg6@À\÷ÜdÆ'sþŸCt~‚ĉ]Ê¥‹Ë *¼âƒno”ÛÃrªJ×v:£Ü“+ñõa‰€b,bªk3GÃ<x>›aÙ-0×ÑÙpðø›Y&zïspžÚÕ%)é{1OòJwB„š-NÖø7éJK’1 ø¦y“Þî¦s
+sç'tr<ª–‹ù
+| ÙJ™bÓ,å­åiάBFiÓ+m=âü| ¶&9lsÅŇBNJÓ>šÿ ɦéB7Û÷ ºÖ*ŒÇ^¡þ.+gšb0±HzÅ÷k„ºöø›§Ž¯H„T÷ÍEü°m7ü¬áÜõYC¿ïòŒ¡ñÖËPiH«%Þ¢ß}˶ûžf‘× °²‹ðbná{cÌìîp‡mó—Í•õˆvšfcÕu¶}dÝ¥Ôû ze÷;9l4,ò?Ñ’€
+endstream
+endobj
+1731 0 obj
+<<
+/Type /Page
+/Contents 1732 0 R
+/Resources 1730 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+>>
+endobj
+1733 0 obj
+<<
+/D [1731 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1734 0 obj
+<<
+/D [1731 0 R /XYZ 270.848 672.193 null]
+>>
+endobj
+1742 0 obj
+<<
+/D [1731 0 R /XYZ 282.987 138.113 null]
+>>
+endobj
+1730 0 obj
+<<
+/Font << /F18 1735 0 R /F115 1736 0 R /F117 1737 0 R /F118 1738 0 R /F19 1711 0 R /F116 1739 0 R /F121 1740 0 R /F77 1708 0 R /F23 1741 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1754 0 obj
+<<
+/Length 3677
+/Filter /FlateDecode
+>>
+stream
+xÚ­[K“㶾ï¯Ð‘Sµ‹„sŠS¶ã”cWÙS•¤l¸"5bV’ÚñÆåÿžntƒ"9zìÃ.h4€~|ÝÀ¤‹§EºøêMÊßÏßüéKé^x«ìâqµ"UðSº 餰Þ,læ„ÒÙâq»ø1ù¶é«‡wÚê¤_=•–Ív_oêÝU ú”ÍÃ;å’åa[í ÐχջåæPV]¬•Õ/±ÒVÿ=<ȤncCõKß2Ý®¯öxøùñïf3MÌšL¨œxý¡VqÉOJ;™
+MµUÓR¡¬ú¢Þœ ®µÐŠþ˜]{Xëó‰jÍŠ¾ý7ŤÉO©6ÀxÛõTßOÕ´kAŸ®Øî7üSׄ­ƒî]µ„Ñ}Ýì¨^wÜcÝà¬Ï;ªÖüý²~:´LD
+X”ÓÉ#°ë™k*|®ç[¥¤ÐŽVwä3L•¿˜Š J¸Äã´‘ÃUÛl' \"•uÓ–UI ±¡j;Z܋̓Â{˜<ièÿ¸žL'ÿ\WÜÿ©ÚUmÑ£œ\ Ÿ¯/õÂH>¾À•M6ŸÚzIÅ?o©…±ïpeGMEË¿5ۺ﫹3žD ›QÄ ƒ|a¡ÞAq[ðqâXþâûä™gmèËË;uz'ä<óNKk+k8]µ¨g9ꙑ—ç’*È"ÌßQ#n¹‘¼R,€ré}ÐÖãæ.r¿FhcU`c΃5Â*MLÀâ¥TYòõ®îëbSÿ×m2•»’
+ßíûÀÌÉ%¦nNß(‘§Lÿ‹‚N7K%ß <eáÎ'ìå ×°a™1"·2ªï•9óLXXîdÎÇSƒâ
+ žÍ€Fy™_´u㉬pÓd¢Ó¦n<*O… 75µt`@–ÅŽ
+{tÜhD|R–üëª9 ²HmòÐrGEÁ÷}èýw÷¡vÞáGtÕ½eé¶AÔ.²ö™Eë
+ⓧrJà휀Y)Ú1¡Sºp— Àwö°b÷ä3VN(ÖN¼Êú9+ñ´w°4HÄß¹fU»A[YA®ÊOi žƒNhÍÞ6¨Í8¿’Wå2¡27ç¦íXÕ)¶Ë«»ò W^hô'¤n“«#;`ÜÁ<LiD\¶o÷o¤Ïc“’c“æ©(ÜÆÚöEråQÚª‰&DÑh†LØ°îñ>ì0žœÎ“¯WÔ¾kè‹ÖºìÕw áxVÂ8Ö`f0¯Q•w©Pj…öv¶‚×i³ÆNHó‰ÑÃúÈoY­ŠÃ¦¿¡bË h)>Ão ¨\¾ôG؈™ *› †$:"å5ø d§›u¸@wÀ—ãœZ ³íxtQ–5U±9“à™ûbíFÿÆN²-:æat²Å9]½¬ a 0/K‘Ž>Š1'˜^«zx%šð„qÙgÞ5}uh «Ó>Ì(¥YÈð™,ù|Œ#Њ­ø‹Ë<¦}J +úr›"êÜB„Áx¸.™•¤«P¥òè‡sS—ÐÄ]Z®¤…RˆÓsÊ
+CuS´ñ—UCyat>O–*ƒt•gS²Ú‘ZÞ“ï‹œ<¼Ë0¯À–Ž;°ü©®6,jXEþݲ®çãP
+0%‹å]±}MügRr}ö®€¨œÖæÓAÿiÞãÜ@4@ÈdØ4
+–¿¦"¢4qK^WYÐט/þ ºÿ÷yÑvg‚¯‡„®ÒͨœMè‡eVdFN‡]ÎèZŸzøâ5[v-£{œÉ:aAÈ'3Mé‡åxÁ86»½²ãgÚÅ{èU±¬75 ÙäÖØ%û üFî×&Ûa¯5*6ÄHmw‡û æl'w ïnNÞšYúuÝ<¿†:"÷ÒE¯pgî¥ù¨\¶ø'2ºxs`µQ$&G³q`‹Õ# ò1›Q
+øeT«¿ÞÉ#pͨVóÍÑøÇòÔóƒ€'ØJå¤Õù½’i|Àk“E^°7™´"zÊûÒÍ`ý1ß2&ô
+‹2Æ0$D®cJ#yÍËJâ/<ÀA·Å®£KÓ¦«)W}QñÜÉ¥û” ½¯Î§¤úÀPÓUËþ¿YŸ´
+O›–=ÕèýRz¯ìåRÀÑL9 ±¬æß3÷®–r(·ïÎ /$‡-ó3$›©ä[Ìj"@ûö¨…¸[w+»uÓéâü:Û„ I-aåêâS‘ñí7ÀõL͹»ôÊÁç0ÀOüî$×o7ž‰–PµLfÇÌ ÙSFq.$V9S ;ØÌuÛì‚ýôÑ~ÒEg.:»ÉxÌ=(Û}R$À0¥12Èï”æC½ñ1÷®Óù
+DÏÖtMl …oÄ¥Ü(˜¥¦ýë[ÑŽ†Aó]ônòoü`0ßÔcôÚùŒÏSozŽ*³LÈ!­~—“.§©g¤^cuüè!Œ3¡4€01u”Ô¤À¿Ü~Çx!ˆ/ÂÖ ÕQD;*1fáç²ÜºãB0_]77Iið±›>
+×#÷ î{ 0’@Ÿ9žã^‹¨/ZÄÙK,À@ÓY/ZDØ
+“¹é€{-bv“E³ µ3ÙlöŽ¶D¯‰UHõbËê.D¦L{½<’AÖoX7 yÅéaFS›[OÏH4fúöÓ3Ò‹Ìé?æôÌkOÏ
+endstream
+endobj
+1753 0 obj
+<<
+/Type /Page
+/Contents 1754 0 R
+/Resources 1752 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+/Annots [ 1720 0 R 1721 0 R 1722 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R ]
+>>
+endobj
+1720 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [176.838 642.347 196.896 653.139]
+/A << /S /GoTo /D (subsection.10.3) >>
+>>
+endobj
+1721 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [476.159 630.392 483.232 641.184]
+/A << /S /GoTo /D (figure.1) >>
+>>
+endobj
+1722 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [346.955 606.481 353.879 617.274]
+/A << /S /GoTo /D (section.4) >>
+>>
+endobj
+1743 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [336.907 394.487 391.203 406.442]
+/A << /S /GoTo /D (macro.musicnote) >>
+>>
+endobj
+1744 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [242.564 249.149 257.032 261.104]
+/A << /S /GoTo /D (subsection.5.7) >>
+>>
+endobj
+1745 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [480.219 187.774 508.364 198.944]
+/A << /S /GoTo /D (macro.capo) >>
+>>
+endobj
+1746 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [350.938 139.676 405.235 151.631]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+1747 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [209.318 127.998 237.462 139.123]
+/A << /S /GoTo /D (macro.capo) >>
+>>
+endobj
+1755 0 obj
+<<
+/D [1753 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+14 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 582.556 null]
+>>
+endobj
+18 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 479.169 null]
+>>
+endobj
+1757 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 481.66 null]
+>>
+endobj
+1759 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+22 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+1760 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+26 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+1761 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+30 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+1762 0 obj
+<<
+/D [1753 0 R /XYZ 232.532 469.704 null]
+>>
+endobj
+34 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 348.216 null]
+>>
+endobj
+1763 0 obj
+<<
+/D [1753 0 R /XYZ 171.694 338.198 null]
+>>
+endobj
+38 0 obj
+<<
+/D [1753 0 R /XYZ 171.694 338.198 null]
+>>
+endobj
+1764 0 obj
+<<
+/D [1753 0 R /XYZ 171.694 338.198 null]
+>>
+endobj
+42 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 325.416 null]
+>>
+endobj
+1765 0 obj
+<<
+/D [1753 0 R /XYZ 171.694 314.287 null]
+>>
+endobj
+46 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 274.609 null]
+>>
+endobj
+1766 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 276.546 null]
+>>
+endobj
+1767 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+50 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+1768 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+54 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+1769 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+58 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+1770 0 obj
+<<
+/D [1753 0 R /XYZ 236.174 264.591 null]
+>>
+endobj
+62 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 202.112 null]
+>>
+endobj
+1771 0 obj
+<<
+/D [1753 0 R /XYZ 153.694 202.939 null]
+>>
+endobj
+1772 0 obj
+<<
+/D [1753 0 R /XYZ 234.871 190.984 null]
+>>
+endobj
+1752 0 obj
+<<
+/Font << /F19 1711 0 R /F89 1710 0 R /F94 1713 0 R /F16 1712 0 R /F51 1703 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F126 1758 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1792 0 obj
+<<
+/Length 3059
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZË’£ÊÝÏWhgähaê xyã>ÂÞø1½qx¼ %ÔÂ# húNܘ÷ÉÊ ZRÓÌ]tST’U•yòd–¢Åó"Züò!ò×?üég‘.Ò0µÒ.· F¢…X£B›ê…5q(•Y<ÿª2_®”N‚v—µÜZg%5âài¹’IóÍ©É7üüi)ãà+·^AÑ´ÍzŒ
+^v?ÚTå¼Ä]FC¾Ð?/­ÝùÏîO¿žj/¬Úv
+ñå8¨šp¹Òi|Ìý°ORÅ&L–ÿyüëÕ™iÊ„'–•¤®‘nLLMl«šûUs«(©Sš=&‚fUò£îJºâƒè[Qhõó¢kþóZo¡.Ü뤕•> ¥1·ÊKã-»½_
+C¶¯f5CkBªWÊ´uV6ǪÉ'j¤¥U,rÙº¦‚ Äןï·G¤¡J4ûK¹ÉÍû—_ŒÂ4µ~¬Œt˜Ò:^Ž}œµ#R'b ª¬
+VäÞ ‚ÆñPHul g-JÍéx¬!N þ».6vj,áO_ìVMÞ¶EùÌOœé+…ýu¯pgQ®6•{y}:äîIËj†¬ ÍÛ7ý¼õ"ÖV–?ŠBeÓ)ó¾.x±Òa%‹•aj
+{sŠâPË”çStæ´2‰ ~,šã>ë–2Žy}qí&ínèÐÈöMÅ­'<9ß´§ºt Gü«AbTŸ"¥¸ëÔð6ÆñL¨ÐÆ„‘Mèöú¾½2&…¿Çú{ CÄ:4Øó¨YÛ%• u2Rjˆ#_KzO'Q¡~]þþãÏXëHº­Jöêó!«?s¿w”ºpÛŒŽ‘
+vK èܯÞå熰!x™ñÐKž 7†3sèC×KÑîøÍù;­¤Ψ¬Ž›­[Ö n4vrD¨FCKæ<ꆰ 6ƒÅ6v
+r(Ú†›ÍŬ…þ×ÏzFDHádFOÓþhÞ yGPH3„¶7x‚Q*Œ±m Y‘‰ØæTâl. %úwlëê@­´‹Ñ€’S{<µD<AÿµL zøF ¼âÃZ!¸u±=t{±=,Õ¿æܲºð®Â?òˆòÚZD<öаØtü«ØlöôUé ´ìص$î♧xÀÏ{W8zÍà”‘ «†Êܳ€;S6ª“¡,,Õ ­0Ôè®Vo®^-­ÓP¦#µxÙ8IÉ×mñ…P0ß]&2˜„g±0±ÒãÙ.Û¸
+š‰eH
+h
+K>žÕmávZŠà#Ûµòö-V,æ$¶k òoÛU¡Rë¯ _1™íiÏmžŽ9ó\ºÉžöùð1¬°ÎÖ^NÆ—æô„Œ•Ûg\ôö_q‘ôýþh%Bõp*œd¬÷§ "Èþ+ã
+0^m)i¶sLš¡OÓs¥ö«¼úS$m>‡üØ-®ë:ÏZ?<ãËÎ
+ŽÀ7•k&’ÛrÛ-=£lƒ#C½Ë³ ÷6ûbCÆ%»rÔ…hQRDª¨Ñ^ßðÕËù*eZDa—M8W¯êfW½ßåõ—bJè(xt(AO"·ôœÙá º¼Cñ'<bX·˜•UâæRÏkÛüÛˆ2*EMºlP»³hpÚaŸõì:T7VJ#^‚\*@_ÜÇÃð>]³)Ø„ +†:NZ&±étýöF”9ë .+1üz·#Ÿùé³÷•&çzïë‚’«;aèÝž wïËUÄ‹0ø–nÂÖ-—O}ikwLCaÒ¡fdOùsQþ¶©œzí·‰n¯Rln:‡ô>'¢ï•Ùå]bsϬĀúÖ]衱àÂŽô˜bf z‡ÃŠ‰sשD7úfÑøjâ´¨Û—s×Õá­šü˜Õ@¾ ×Íþ®å2 ȯŸ7®`þÌ7΢^3¨\nwAT©$gE†êÙá¸Ïî˜Ô{«X"ÄŸK0”Žï ŠLô ¿ÝýôTb¨Ljá7ƒcHÃD,ã˵¼ Ýkä‹Xj¦LDð žomÏlÒ‹‚ÆÔ°ôæFO#¥ïphA´ÒsS…•võ˜:|u„âkmÕàDQ!ÊÝ•Dô4ÍýwÕ3t>çeÞ n]l&15Tà½\à2#CÄÉH1fÖ’s4.÷Ä×UVUÚÐD¾dÖ%û2r¸yQjp¹Œñ»ƒÇÅsÉø)EÐ%EíðŒÜ-‰Ã$2CMhÑJP¸uµŸ
+ 2 -RÀ˜‡YÞ¸Ì+}žêÏSu1ûõ;¨j „¥I³ÞçY}Ìžó©+R¤Šz¬6MϬ­#±mtS·Í[Ê]C¡]%щòØÛ’÷¾¸C×Ü^ô„0Nå>oîšåÞÌ&Ûj¿wÉ8 ØpïS¤b”áÒ´™?!³'
+=g·t$ÂÕp· ùºh øãÔsLDwaíèkpUw|¤Î$Ù-D½Îy™²‰°€¹˜Twñt:”+_Ÿ«ùJ¼zB\ # p*‡Î”¡ûª‡gÚkŸð>î  7å:^Êø~w<ç”Éèxäic¶Ùtõ_!ôéÂ,3¶|ò0˜ïû€ÇD`n£›c>ÝÒË/ªÎ îcÎ¥ÏOÌpø,=bàŸM†‚¦!ÎeqOÕc9VÇíପ¨ÔÀTÄ+j½l¨ÈxŠq¶‹dÑБ5Vu_­Ê¯ÿDï)ÎiGäÓ™èœFLâæ5VC5ne€½Ë[骜Ã%˜ÀÍ©P(F+¦âLŠ¸šÄÃÁ7©—a°‰úžZ®@6`”Šú% 5RÍÝz@c‚
+ ©‰ÓG˜ñ£ƒN­Á ý‘­òÌWÐ期&a4Öç=Ò L†lçR
+=šh·,Ý„áµî÷H,þâ'åOÂТšUVŽg{sA ì*öËïY–ú|WäAÿ=•k_UF‡?wGk^Áx²UrøÝ:{¡zûÔ%’@ÂÐKÝ9¹Ã$]€O ï’WC“a"}
+j–+!|ìöˆG»CP7:Z¬¤rÀãjF&~ÄT!)¨ê4¢ÈOW@¾R††Ì²®3ƒýܬ3_ú¾ ªŠ<ĤOf?z ’ÄT±û
+¥4wËÉTÄÕÝ?žIRpâ$îßûîù_­ßx¹­ØLúmEaY
+endstream
+endobj
+1791 0 obj
+<<
+/Type /Page
+/Contents 1792 0 R
+/Resources 1790 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+/Annots [ 1748 0 R 1749 0 R 1750 0 R 1751 0 R 1776 0 R 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R 1782 0 R 1783 0 R 1784 0 R 1785 0 R 1786 0 R 1787 0 R ]
+>>
+endobj
+1748 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [493.636 654.302 508.613 665.095]
+/A << /S /GoTo /D (subsection.5.8) >>
+>>
+endobj
+1749 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [177.562 642.07 184.635 653.195]
+/A << /S /GoTo /D (section.7) >>
+>>
+endobj
+1750 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [314.824 642.07 342.968 653.195]
+/A << /S /GoTo /D (macro.capo) >>
+>>
+endobj
+1751 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [364.496 642.07 418.793 653.195]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+1776 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [365.538 568.63 385.596 579.423]
+/A << /S /GoTo /D (subsection.11.6) >>
+>>
+endobj
+1777 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [176.036 530.226 190.58 542.181]
+/A << /S /GoTo /D (subsection.8.2) >>
+>>
+endobj
+1778 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [185.015 323.017 199.483 334.972]
+/A << /S /GoTo /D (subsection.8.2) >>
+>>
+endobj
+1779 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [286.809 323.017 330.645 334.972]
+/A << /S /GoTo /D (macro.nextcol) >>
+>>
+endobj
+1780 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [334.532 323.017 357.446 334.972]
+/A << /S /GoTo /D (macro.brk) >>
+>>
+endobj
+1781 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [361.333 323.017 420.86 334.972]
+/A << /S /GoTo /D (macro.sclearpage) >>
+>>
+endobj
+1782 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [443.607 323.017 508.364 334.972]
+/A << /S /GoTo /D (macro.scleardpage) >>
+>>
+endobj
+1783 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [401.097 311.062 444.932 323.017]
+/A << /S /GoTo /D (macro.nextcol) >>
+>>
+endobj
+1784 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [457.088 275.473 485.232 286.598]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+1785 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [219.01 263.241 226.084 275.197]
+/A << /S /GoTo /D (section.5) >>
+>>
+endobj
+1786 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [333.001 263.241 361.146 275.197]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+1787 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [286.635 251.84 325.241 262.632]
+/A << /S /GoTo /D (env.rawtext) >>
+>>
+endobj
+1793 0 obj
+<<
+/D [1791 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+66 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 629.126 null]
+>>
+endobj
+1794 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 631.34 null]
+>>
+endobj
+1795 0 obj
+<<
+/D [1791 0 R /XYZ 204.982 619.384 null]
+>>
+endobj
+70 0 obj
+<<
+/D [1791 0 R /XYZ 204.982 619.384 null]
+>>
+endobj
+1796 0 obj
+<<
+/D [1791 0 R /XYZ 204.982 619.384 null]
+>>
+endobj
+74 0 obj
+<<
+/D [1791 0 R /XYZ 204.982 619.384 null]
+>>
+endobj
+1797 0 obj
+<<
+/D [1791 0 R /XYZ 204.982 619.384 null]
+>>
+endobj
+78 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 594.647 null]
+>>
+endobj
+1798 0 obj
+<<
+/D [1791 0 R /XYZ 171.694 583.519 null]
+>>
+endobj
+82 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 555.686 null]
+>>
+endobj
+1799 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 557.623 null]
+>>
+endobj
+1800 0 obj
+<<
+/D [1791 0 R /XYZ 273.142 545.668 null]
+>>
+endobj
+86 0 obj
+<<
+/D [1791 0 R /XYZ 273.142 545.668 null]
+>>
+endobj
+1801 0 obj
+<<
+/D [1791 0 R /XYZ 273.142 545.668 null]
+>>
+endobj
+90 0 obj
+<<
+/D [1791 0 R /XYZ 273.142 545.668 null]
+>>
+endobj
+1802 0 obj
+<<
+/D [1791 0 R /XYZ 273.142 545.668 null]
+>>
+endobj
+94 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 505.603 null]
+>>
+endobj
+1803 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 507.817 null]
+>>
+endobj
+1804 0 obj
+<<
+/D [1791 0 R /XYZ 236.322 495.862 null]
+>>
+endobj
+98 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 446.056 null]
+>>
+endobj
+1805 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 446.056 null]
+>>
+endobj
+1806 0 obj
+<<
+/D [1791 0 R /XYZ 252.209 434.101 null]
+>>
+endobj
+102 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 237.823 null]
+>>
+endobj
+106 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 209.172 null]
+>>
+endobj
+110 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 189.255 null]
+>>
+endobj
+1807 0 obj
+<<
+/D [1791 0 R /XYZ 153.694 191.58 null]
+>>
+endobj
+1808 0 obj
+<<
+/D [1791 0 R /XYZ 216.094 179.625 null]
+>>
+endobj
+1790 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F126 1758 0 R /F114 1729 0 R /F28 1704 0 R /F123 1756 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1821 0 obj
+<<
+/Length 2929
+/Filter /FlateDecode
+>>
+stream
+xÚ½ZÝoÛ8Ï_á·³˜+~Šêaº‡k±}8à®YàöÚ>8¶’µ-Ÿd· ŠÞß~¿R²äØŽã´Eàˆ¤Èáp¾g¨dp;H¯/’æ)´¦&=^_üvuñË+å™Èœrƒ«›´Z¸Ì œM…Òvp5¼Þ>\½ùå•Tº;S$Rf2X•
+ëüvÕ«Šå,ÿ’×am“f™ÇX¢w–Ñ‚_ìšÚ4K…Lv7­Gc­åpBd8-‹É¸ÎW“j²Îgáݼ¨×áuyFÕ°o>ðÖx¨¼%’¶Fø,ÝÁwv„>Úi¬ðgÒG»T¤©ê¯þK¤ÏûÄ&už2¼W:•‰ÄO¹r™GºÌòåHùáºxŸh“Waôf$‡e»»»mE"
+’±‡ãÍóÉ” ÝŒÊ"ѹ¹¾ÈÉ:Ž×q°¤§Ç¼é|3ËÃ`].1õ¶n@4ëÃ"OïoãÌ×b46:þ–¯G*~¦íó¼]•GZâO¸Au;hšÿbÊJ½‡)ÆHaœíì½Ôæ:¿-–_iÿúÛ#,R»4ÒZh94YÎÎÀJ¦FØ]P„V¾œ= )¥pÖõ!Í‹%4ylŒe1Æ‘†Ñ£&a šs'Ÿ® p(L\Îïã0í[¹£ñëÑLÉç%ó†¤/®¬Â{°/Ö;9ƲÝl¿èíRUI¡Ó(y,ÆŸŠª\.ò
+K˜0ð[LRɘ˜ÌÁÍEÚüNûhufX§À0 —ÙyØfANYÇ2݃DÔåé†J vïÁ8”alwöJ nê¯:hV·¢
+/etUqêi5,E¦w0 Y˜ÆDBqDGÏEYÅ‘¨¿‚œZô25ÍBzFÏ›Xý›ô;õh&ƒ1”;RÆŸþ~sš®o¶QÒ‚Ôa3_«9QÁÊpö¶ÜTq|UÝEL5»¤¡”ÅšßQ*Vq‹NWrzsíXǷ˲ZLæ€ÏöŒ6 ¤
+à©—lAFfÐ
+‚`Т½gJy>>R•3&iqGƒ³¼”³<ôö –ÆÄ Op;š1Šë0XÆ—0„§ û ä/Ó»†ÁÁ¿$‘ìWg™)ˆëƒz·¸ tË£áAq2?!co·c!Ck) ܃Êú ‹¢Ã£Qчc:ÒÃÛ*d‹;Ûƒmœ
+¹h,.ó\Q~‘äÞžêŒk«3.VgÜð#gí÷ãO# HóM†W“¢ªÓB…0Ã#g§¬*Z8ìïÐ`£Nã–²a“hÐÌ6öIÈu÷;dµU—‚µºk>æ÷ÇXîRaÀ«îŠs9ÞF‰¿>M²
+v÷tQŒ5=\?1;$ƒ\äðùs\'©€óì­%“íìðŠ,šòÀã`“ʺ.®çq(ÊE+´³VŠ*ŒAd Ë`^‘Õ“ÃgÙP—4^+Ð3&‰×÷¿~=ˆ 3¥NÏ°&›õ]Yí‹€ƒõR¬³…éA­©6Ëvpb'ç‡Ó\O¹Xñ£æÂOó*z&¬bwúr]×›u<Ù© œ»7;ùõ´ú‘äØ®î«âön½‡ °ä‰ÌžË{”r›T÷QcÚ’ßAôÀõ¼g’u^üH²Î Æ>_ÖûŒŠò˜+Q5ÅD?D,¤Gß—¨õ•ÕŠ1¿Ù›7X‘úŸEQ“ é>VsŠ шö žVÅj”Ó*6íŠØçá¹ lx¶uà ‹§*éR?A’¡Ó½0ÞÛi?Ø<Ã2lÙË(šY31'!iînè Ìï}hÞ”Ñ.ÇY²G›}žÛžÅˆX*8mz
+'ŒýÄZä>ÙO¥ÿ, Šd+úÏbÄ]1›å@çh%¯Ú'Á¡É«‘y|=û2Y ‰½¤2yÊ»dmJŸQòÈ—y™êWÙéUpã‚«ì4DE¶g—<e'Äo 5ÞÙ=eœ¯WD
+endstream
+endobj
+1820 0 obj
+<<
+/Type /Page
+/Contents 1821 0 R
+/Resources 1819 0 R
+/MediaBox [0 0 612 792]
+/Parent 1718 0 R
+/Annots [ 1788 0 R 1789 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R ]
+>>
+endobj
+1788 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [401.926 653.748 421.825 665.704]
+/A << /S /GoTo /D (subsection.10.1) >>
+>>
+endobj
+1789 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [239.527 617.883 246.551 629.838]
+/A << /S /GoTo /D (section.8) >>
+>>
+endobj
+1813 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [300.007 516.794 328.152 528.749]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+1814 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [329.87 504.839 349.928 516.794]
+/A << /S /GoTo /D (subsection.11.5) >>
+>>
+endobj
+1815 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [200.341 492.884 254.637 504.839]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1816 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [422.597 189.767 442.655 200.559]
+/A << /S /GoTo /D (subsection.10.2) >>
+>>
+endobj
+1817 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [291.551 177.258 311.609 189.213]
+/A << /S /GoTo /D (subsection.11.8) >>
+>>
+endobj
+1818 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.697 127.998 180.842 139.067]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+1822 0 obj
+<<
+/D [1820 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+114 0 obj
+<<
+/D [1820 0 R /XYZ 153.694 595.743 null]
+>>
+endobj
+1823 0 obj
+<<
+/D [1820 0 R /XYZ 153.694 595.743 null]
+>>
+endobj
+1824 0 obj
+<<
+/D [1820 0 R /XYZ 195.545 583.788 null]
+>>
+endobj
+118 0 obj
+<<
+/D [1820 0 R /XYZ 195.545 583.788 null]
+>>
+endobj
+1825 0 obj
+<<
+/D [1820 0 R /XYZ 195.545 583.788 null]
+>>
+endobj
+122 0 obj
+<<
+/D [1820 0 R /XYZ 153.694 164.583 null]
+>>
+endobj
+1827 0 obj
+<<
+/D [1820 0 R /XYZ 153.694 167.073 null]
+>>
+endobj
+1828 0 obj
+<<
+/D [1820 0 R /XYZ 234.679 155.118 null]
+>>
+endobj
+1819 0 obj
+<<
+/Font << /F28 1704 0 R /F123 1756 0 R /F19 1711 0 R /F113 1728 0 R /F126 1758 0 R /F114 1729 0 R /F18 1735 0 R /F115 1736 0 R /F117 1737 0 R /F118 1738 0 R /F116 1739 0 R /F68 1826 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1840 0 obj
+<<
+/Length 3261
+/Filter /FlateDecode
+>>
+stream
+xÚ½ZÝoÛÈÏ_! 'öv?¹Ü÷pI›"‡CîŒÞCÓZ¢-6é’”_ûÛ;³³¤¸´%SÊ¥0`î÷ÎÎÎüæcÅg·3>ûû+Þá%³«TüùP뛫W~'„š9æ™Ì®nfÂ
+–8=KŒeR™ÙÕjö¯ùõã÷ŸßÕùjqi¤™ÿ²-Úõ•¬Ö%•þZå¡-+ÃÀ7ÅfóŠÕõ—Å¿¯~<HÔ¸!1ŒK?LÌ„QL¤É,QŽ)®fW[ ë×E*çU½j—J¥ó&¿Ëê¬E:±z½vþHåŒ>ÛlYW—Í]¶Ì©á7ü]O¸¨QÂ0‘ȘšBé\wë½t"% K¤­Á ʪš¾mñ•¤&§ãm~ŸJcâ˜æEÙ´yØ]ÝD¬®óÛÝ& ‡p<«sÜ||·^æ¤eJ[Ú¥­óp•:™g }›¢¼ÝäT~Àë —U¸íÔß6”ÛuS”«üS^³Å¥vzþŽÄ…ºòOÙön2{Kd&1½Wë/ÿŸE^––ÞTÍwXx»®Šz"Ã{V€€Á6´tGÔÖ†Ó¬¨’…Æ\Ò¨} ÔA”PùMåu¡Yˆùw‹K‘hœ&¨ïzמÃË™0.&4æAPâC¨œÂ Ã93*y‹CÒÃÓ*ÜÆžUÜ«÷¬ê¹õŽ+ßÑ°Ž‹Z : pH(;g¸# >åC·»±–-h÷·ÕÝBÉùc]Ü®±Ð‚Èè½/oªn±Ñ™y·žÔœ¥BÄëáž~E2L:/µ¬¿ÿñŸ3¥°ˆ\K¦ƒ¥$gN"£½XwŒP‡ˆOÆS7ÚqaļºóÌhi…h^¢d„M.bZ'_±ÔêŽæ//[O;`“Wêhû*ùãý€YÛ € À²Å%¶.‹\鼡V‚¸ë%Ü="‘¿{(´—ëj³Êkêôô
+›½yÇfsT*ä¨B¤uÙ]ÎSòA¥„
+·ãSY0Éú('{§ Ú…¥ªú6+‹ßº€ºÖ>©ÖÄηxrÀˆ%U;̹©}
+(¥ø 4ë—e]ܵ;Ð
+endstream
+endobj
+1839 0 obj
+<<
+/Type /Page
+/Contents 1840 0 R
+/Resources 1838 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R ]
+>>
+endobj
+1829 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [357.63 464.473 411.926 476.428]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1830 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [432.295 464.473 476.13 476.428]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+1831 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [338.374 452.517 392.671 464.473]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1832 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [326.438 369.108 380.734 380.233]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1833 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [423.227 295.391 451.371 306.461]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+1834 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [448.88 283.16 468.726 295.115]
+/A << /S /GoTo /D (subsection.10.3) >>
+>>
+endobj
+1835 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [482.144 211.429 489.217 223.384]
+/A << /S /GoTo /D (figure.2) >>
+>>
+endobj
+1841 0 obj
+<<
+/D [1839 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+126 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 587.559 null]
+>>
+endobj
+1842 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 589.497 null]
+>>
+endobj
+1843 0 obj
+<<
+/D [1839 0 R /XYZ 240.811 577.541 null]
+>>
+endobj
+130 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 513.843 null]
+>>
+endobj
+1844 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 515.78 null]
+>>
+endobj
+1845 0 obj
+<<
+/D [1839 0 R /XYZ 238.575 503.825 null]
+>>
+endobj
+134 0 obj
+<<
+/D [1839 0 R /XYZ 238.575 503.825 null]
+>>
+endobj
+1846 0 obj
+<<
+/D [1839 0 R /XYZ 238.575 503.825 null]
+>>
+endobj
+138 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 346.422 null]
+>>
+endobj
+1847 0 obj
+<<
+/D [1839 0 R /XYZ 153.694 346.422 null]
+>>
+endobj
+1848 0 obj
+<<
+/D [1839 0 R /XYZ 270.955 334.467 null]
+>>
+endobj
+1838 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F126 1758 0 R /F28 1704 0 R /F123 1756 0 R /F114 1729 0 R /F16 1712 0 R /F51 1703 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1858 0 obj
+<<
+/Length 2708
+/Filter /FlateDecode
+>>
+stream
+xÚÕZÝÛ6Ï_áCV.Ö,?E)yjI€ ¸®‹ÞI´¶v­Æ– IÞdÿû›!)YÔÊ^Yñö./+Š"g†3¿ù¢—Îîftööí?‰8ÄÇÛ¿\¿øé f1‰CήogœIBE< UL4N­f‚õüëw?½a\tV
+i 4ÍŠr®XÞVv¡G‘)¢#Þ,ÌpE+ÍìÂ…:øH)ãàoö«'£[3(ׄµ¤ó¢^gùÝ€‚“(ÒÇEÐ*øógø4ÈÕDEïøC§„*6Ìh²¾FU³ôÕG*é€P}ú”È°¥?ÚP´%ùÊSº³@.ZZ/çÆ‚æÂÃÊèdŒ„\L9û“GW_wô$,D„‚Ä2z^æõm’?,–ë]].nPšÂüù4 ’æ„19
+ãì†ào¶å:ÙÕi9ZDHäÁ /ç×íyŠ<§±PÍØÿ‰ÆîA[é¾8èë°ì4Î…dDkáp®Çò>dâ Ü÷õÈáÿ›æi• ¢$"Bµëþ"%‰:Xïõ—bµ$$À›Î ô>½Ïêl9HKF$búIZÍ‚ì·7G|
+æ öX|dBÞ¤wYn ÐêQ%8AIŸêð|™$ôð<eJóÕ9iMt¬|2›,Gs-‚âÖ9Vh6 lnèd“³膲+[ ”<¢®Ö±:átˆ8È+™èpºkP{¾Ñ$ 2C¬ã‰I–]cE‘ƒ¢ Ð8®l¦ !Èb!¤Ek~Pt;7ÆÑ2Éí Ùí`
+<În˜!áÔî÷yÄŸJ‰ÉÔ0
+,pÇÃÎ×$_·c“}2Ĝ݇OÜ=°„óŠêÈ•WžMµ )¹#VˆÌveQ]Ù ˆpxX÷f’î<Û™Fô*SĦPo½¦åsPT…e}Õ
+}a¨¤"¡Œý³ª~üàP…JÖ4„¢:Ûlì0ÍÝÜD_à
+rsú¼Ž«'‚+…,õdF[æE=¥oá‚hk¬.VòÐS÷åbäQÔvŽC‰+µ3à¿3t.ÐpÌM¨…‡#˜5NÓÝBßð½ØÛ—Öx°!5ñï=í~¦a Ø8ukgêôKmgn.ibù lð¼>ž ™WÌé`óPfKSAK¼>…ÞÛ‘ÂJOë^¦eß—K7^&,÷ÛÔz©Ý½Ã`c?­ö˦éO\£Ÿî’Ò¦ !:ŒŒŽŒ¤XÕ~S·ÿðö¤·H(ŠBg7#›ndÓF¶86€Ü ‹jR(L¾·ôDHbq¸ã\.8'!wÅáϧâ‚™µž@×'ìÃ0‰ì"‚nÍÙçõL@ qÝeòŸ&UY!ƒôû¤Ð׊›ôÁ6Ô#} ïþ #÷m“eY¸h*¼·ºˆÛ\&°Ådlë°Laß6ö‚ÈÍã–TÈΞ *4_$¤N‘ŸKÛ‚½Ñµ°¡Fê©üÎ^èhÄàÊ%©³"·“Æ`åçl5)¾
+…ÿ°àK„º70üꑺ•øC”Â!W`ø÷`¼ª Í\u¡ˆp÷axAµªÆ¹‹8ôÞ¹ ÒxAÙrYRë·ÇP9̧âºå„;hI´Ô>¥i×S<VdH¦s¢ ‰Ðʧc¼ jÉ™I¨:Wg5JÕRùD¥B<„ˆ#J}sÔ¿![À^ÛÑC»ùaÌ †j¿UýnÌ>êïùþ ½SÝ­†ªZ˯Ó€O¨å<R£¯ÏºB¡ÛFŒù”4ÁÚvoU¹wSüÃÀ5‹öeWëÊNí+Àk’'·1wÒÍ,™¾”C†þºÿŠé*FÊØ:n—%ê`ZåÉvè—ŒVÞXIcsÿ‡1
+ð~ùc¬Q ¡ž>{22¤*ÌõÎ;],6ÝJ‘c—†£6má%ª”ÔIø¡ÅŠ}½iR&þýT½‚Ù8D04t0¹ÒÛ¬®S·ë¶,¶vd*AË¡G
+R¶†x½ñ/tý´Ã þÉÐ)å ZÑP1Dþ&‹ú$
+ð8"„Pws66q0¼ëþæ­¹fÁfYAa_äUVÕöÅ”J‚No²ºLJ·+uP–bááJ¦î
+%§)›akµNÊýnÛW@Y£L-„ß:W%Ŧº:v½~Iu‰}_¥“戩ïƶ©`(Sþæ‰9—B5+#ŸÔ÷£Mm Ô¯Þæ2­œ÷,ë̶làW`r’jÛ~F„Bö‹‰•%yû^_¿ø/° T
+endstream
+endobj
+1857 0 obj
+<<
+/Type /Page
+/Contents 1858 0 R
+/Resources 1856 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1836 0 R 1837 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R ]
+>>
+endobj
+1836 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [358.915 472.802 413.211 483.973]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1837 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [432.286 472.802 476.122 483.973]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+1851 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [282.527 332.716 362.975 344.671]
+/A << /S /GoTo /D (macro.noversenumbers) >>
+>>
+endobj
+1852 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [212.125 179.119 271.651 190.244]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1853 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [294.214 179.119 343.28 190.244]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1854 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [443.607 179.119 508.364 190.244]
+/A << /S /GoTo /D (macro.beginchorus) >>
+>>
+endobj
+1855 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [172.186 166.887 226.482 178.842]
+/A << /S /GoTo /D (macro.endchorus) >>
+>>
+endobj
+1859 0 obj
+<<
+/D [1857 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1850 0 obj
+<<
+/D [1857 0 R /XYZ 246.457 538.182 null]
+>>
+endobj
+142 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 504.364 null]
+>>
+endobj
+146 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 487.967 null]
+>>
+endobj
+1861 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 487.967 null]
+>>
+endobj
+1862 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+150 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+1863 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+154 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+1864 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+158 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+1865 0 obj
+<<
+/D [1857 0 R /XYZ 305.36 476.012 null]
+>>
+endobj
+162 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 212.452 null]
+>>
+endobj
+166 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 194.284 null]
+>>
+endobj
+1866 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 182.329 null]
+>>
+endobj
+170 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 182.329 null]
+>>
+endobj
+1867 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 182.329 null]
+>>
+endobj
+174 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 182.329 null]
+>>
+endobj
+1868 0 obj
+<<
+/D [1857 0 R /XYZ 153.694 182.329 null]
+>>
+endobj
+1856 0 obj
+<<
+/Font << /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R /F57 1860 0 R /F19 1711 0 R /F89 1710 0 R /F126 1758 0 R /F114 1729 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1873 0 obj
+<<
+/Length 2321
+/Filter /FlateDecode
+>>
+stream
+xÚÍY[oÛØ~ϯ °@KËs%¹oNáíc×@QÄ~`¤c‹©Dª$µN°ØÿÞ¹‘"e9v°0¼6ÏeÎeæÌ|sQÝGitõ.•ï‡ëwû¨Š¨H
+¯}t}©$U0•F*R™J|a#ï²D]ï¢OñE½Ðyüm±4&û°Pñ×^:›[ºˆ«Ý.¬a¦*û°Ò;è7Ûm³ÐYüÐ1]¿ ‹Ûë¾ÃãÒÄGí}44ÿu…Sfz3¹–±&1E6¿Ö2öÓ­ìƼ=͘ñv(æ;ìÊUÛð½ª~íZFªïM춿b3ÔU}/Ô›ªK<úäÄ4)òA”ΰ(­KtÎvûrK]ø¸êø[vÝa‡‡¬¹ß7üýŒŸXˆQjÔxXÀ`Ó
+mÓò·û¶Ý–Ÿ·#1>ÊôŒéžù°gw@nø
+'§¬ð”ÍxÌ°M×·‡ªÂߟa„­OY7ðlZ„]Ö°ñ)mg©Bîš6ðpOJ¶ç+v(‘ž'ÖUV=)ôõšžDmdõ
+_hƒ
+×®“ÅÒ\äšD„óák¹ÛoÃÏßQ¾SÉÑRR—ÀßD%/ÿr»ôÎN;f4w±»ýÒ|ûî%FMÖÓcu
+òµxøõÚ· ¼â¿5¼ |B'o¢\¤TR8§qõ‰•Ì’"S¼ô’é\)ÐÖ´PH–'xЉwž©>yá%S-a×™\„ß‹Ø5Æ»OÜ#ó݃^ìΙO´<R|ivΪ¼É\×\ž%>3üÿ¸C;ÍÙNÅè°“º´ÄfOFAGèAcPúøÁ
+&(CcK ñ_šRú
+ÉÀQ1Á–W0 xð °øh·ôùÀŸË7ŒÚ­[BÀŽ/$vþC’Zj›%΄<‰ÂG^"bÿ?iO"}»ücéÅ©Ž"*~M~#Ë­ÑÚÔ@Šz“Cy)Z6žÄx9Çx83º9lÓ ˆèøŒ“Ïb9»’yF ÞT¦Ž.[ÅÏUõ@ž(ZøglAÌ`©±mG ”÷ãÎ
+^Íí--7'0“ƒHöÛ’eƒI…}ÙŽÅ"Nͺ Kn´ÜÀJªb0‘ m p0ù(>¾À5sâ”iÂËÂr¸K’§â»
+ ~sœ?ò˜<bàŽo$[Ð…aQÉŸ{ˆå÷É£˜B@Èh—äý‡B‚FU^wì·ÕªâZô!ŸéA„ÜÙp
++ÏS7펂¸YÖKuKºþPs¥p`òl–)‰é¡ L\r_V²„ &ˆM6g.¢™kU›Ýì„b¿È(LÉ‹IQ$š“ÈÔÚWŒLµ·‰²’ËüFÎ劽ÊÅmøýíãÒ+ö,ÏF~ üÂY$áã¤r,WÿÞèÄé<Òp¬Nó±F“þ{,}XÉcŒE;€MQçQwl1LرÜq÷&Õ)KZŠ×Užº¸1í±¬£{8àÐm‚7(G?U¦Ówm³{
+´XÛIÉ`Z¨eÕLݱR{½¡l fwÕ=%TRú=Þ +¿¾‘ U°˜ÌE¡†Ì†1†]1CoËâiNÓ`º!Û]­­T¥›'“> ;æS~ò‰oôÅðâž`
+ýžÍŒñÖ˜k†#¦ŸÑe7yj©ròK)QÑ à‡ñæ‰ÓÑi\"†$Ž$¬@3‹[÷ ÂÄxd‰Ú>À ü(Z0 Žq' ý  VË’atae£²fǨm¦ÎR;”xˆ±r‰±0êãpÕÍ2ˆödOÄû
+žc²ã°?¹|6åMLbSÆÇÉw~{Ð9èW¡…ñRï+fë.¯ßý Fuw
+endstream
+endobj
+1872 0 obj
+<<
+/Type /Page
+/Contents 1873 0 R
+/Resources 1871 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1870 0 R ]
+>>
+endobj
+1870 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [376.375 346.278 390.919 358.233]
+/A << /S /GoTo /D (subsection.5.4) >>
+>>
+endobj
+1874 0 obj
+<<
+/D [1872 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1871 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F123 1756 0 R /F115 1736 0 R /F57 1860 0 R /F28 1704 0 R /F23 1741 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1879 0 obj
+<<
+/Length 2790
+/Filter /FlateDecode
+>>
+stream
+xÚÝZKsÛ8¾çWèHUÙXâE‚ÙS6¯ÉÖL¶jÇ[“ª$F¢-&©á#Ojÿûv£¤¨È–b{.{±
+åhškØÆù¹‘qT:&áiJßVVÔVvTÏ;ªçëõ”´ŒÚTsÏ‘·ôý²n¸¡&‚¾]Óo
+ÚÂ|=|€á]SS5Œk¡{½®Åü<q6º˜;qMþG¨ó¾rÞ`4(©x“ºžƒ“»ûuåÃv/~Šâc-§||øǦšûó„*ú”·ÅÚkU„ۮȗÔÍ;46yÙÜ–šŸ£qáz_ñOØ¡Û¨o‹q:ÑØ›Z ÙJôîïl€Lå,QRèôÞF¢b#¬1“i6ù¢Á³H•^ù³ÀcR:*þÈ7ÛuñôqP‰TÒ)ÆZ˜°ü·‰ç¤xSÉ<¥2~}ÿúãNåÙnåÅÇÿÞ)Þ°!jW ÞË#϶™[8Vü³“Ÿ¢=€6&&saЛ`ÛO¹«´3)Ef­òK8áâ¡ók9I¢gôóâÀä±Èܾµ[g… íÓÛÚãB“7S פZ¬ë¶¬®¨ýS“/ê@®UÎ@¶,º¢ÙÑCu&ŠxGPV‡±<gv+£±ÖÅ‚Ç·
+Ð)hÑáÜlË
+eº,O&3«ÎÛ¸-`qÑ¥S¸Äe S沯—Ò"5šéÆÍf®ž
+ü­×è.Ó,úICE¢8G™Œ=ítê7—è{ÝHa¼£n
+jíü9oÉÚ¢ë<&à—nxKÅàîsª®óêªÏ¯
+j¼^Õ­ww?N`%2³'.Ë‹b± ={{¾¢ûô#ç:&2ùz»b[ Kº¨™k€o¦–¶ZøÆùíW#!~ÿ™öÈRív•Ðà’Ð#X©…3ìšžÝ}P:N…QéTÒ‹CcÂ
+_èvê+:ñQq_سúÛ˜³q)ìC¸Nèen9îùÀŸÏ‹j Д5ÉIA/æ‰ô‘¶”<5žùjhè ë°ï„”'ˆŠÊùp ÊËâ2þ@?÷-O».¿ê í`ª·é’Z‘ÁV èuIyñˆñ¨Ö›=ÄjYv»Õ»kEˆÒð>à®±Ú¸8(i’ÀWÁíÊø”ÚУ«¿õšÌXœ8z•ހɢ'2î#ønL,bË×맢)ÎØ÷ܱ=Ã98éùdŽƒ»µ»0øÕÔì-|ÛÊ!`‚{™©é Sù†ìV±ö·Õ›<„@#ƒ3:ñžÚѯ *ßéNÀg9ˆ6 ŸÈ¤:Í€>Ú¥S‘ÞÑZÞ¦ä\}t³f™Šß{7
+t* PÐEW†0%ŸÜ·³Óbð>à Yì5*!F†™›…6Ðt×6(MQ’Q€
+A¥—wË  ì 0€‰ ïh­¼mË+äXYäÝ¢öÁ² )‘"D‚?­Yä·K •)¬qˆÊ÷QÌ ]uÙ)fã8‰ÞWì¤PÆÈÐ' ."ìBf‡]Hi2ØEù<1jÌ`_Îø@G¨cõÏ=Ÿ ]7;ñøý«Mþ9ýØby™_Q¾ Â[ü¥É‚i€Óp7Sù
+/
+vègçcGØui¥Î
+¸´È‘(ÞƒfR¨toÎp§‚'\kÀøÉžxhâu5Å¢¾ªÊ?)Y ˆÙàoÅ¿À朞sL°}ç~"kú;¶ÚèSÏÓ–—ô;fŒ¡ò!Ö¦i¹Gç ›“°ÂÙ£“ ä¡ñ$¼ŸãŽA}ãÒ!³Zîsj×ç>±>ÆŸ€ú×åšÝÃUÑ=~šPK`ÔÿG—úÀe›ýwYeJÈ„Oóg¦Õ×eëa¨ýxŒ
+"Ð Oœ#–b)ÄÐ^†ég·EÄJ+¡39¦W}vyE÷À<0Shô.~ó%E홢½Ï8§€…¦h1½ï„ïWùV|·2ƒ´R@8u’_ü”#Ûów*9ýìœ9Uéw ‚ ²{æü¹ï¨p^…ýàU˜›ÁâžÂgÀ°]µ&ò“Ÿÿ‰‰ÍþÅNÇtON•ÏOôtª¢}›âëñmW•ÞN$8A»TX-§ƒÊ|ÀI9ˆ£ ²ÌOÓåé9!Åh‚ÿÊí‰Ý.¤ ƒl
+* (¡Jhn@ Št4£ÄÁ8í»(Xf‰°Š -¼Ç™ˆ$"Lb0¾xLßðÂg¦@[àšªŒ)Ð…Ÿ…šaÀÞ*gþk 4–,’ï“@V:#lP‰¯éÎ4!‡i"L鎃-rŽ½¿HëD’ò?¼ü£pC&Ã?”À}Žþõ_fü;ŒÄwX¨,?ç °\Ïå}Ÿß椞ð@ã#’½¥/î•FpÒí¦Sá•ö¯«× Ëó+9Êå‹…2r:euî „ óÉþƒN™exRà*|8Þ”ýSìõÜ'X–áE»_Š‰m`Zê÷¾(þ /ÅÁs‡ºâYøjˈï’S: ) ÿ–,£·u³ oÂÄS »¿“'%´`sDšðci¸Zü« íê-–è‰à§…ÏÃ1=Ì´Ü£ÿD‰7ŸŒÛéÚ†‰ïÓ€>ÐJTjçŸi| S{¸¡ª^Rê*Œ.ÁàéæLWYÿ¢ï2¡6OF¾¼xò?¦4
+endstream
+endobj
+1878 0 obj
+<<
+/Type /Page
+/Contents 1879 0 R
+/Resources 1877 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1875 0 R 1876 0 R ]
+>>
+endobj
+1875 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [454.067 558.661 508.364 569.509]
+/A << /S /GoTo /D (macro.ifchorded) >>
+>>
+endobj
+1876 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [220.34 546.152 240.399 558.107]
+/A << /S /GoTo /D (subsection.11.4) >>
+>>
+endobj
+1880 0 obj
+<<
+/D [1878 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+178 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1881 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 669.191 null]
+>>
+endobj
+1882 0 obj
+<<
+/D [1878 0 R /XYZ 283.595 657.235 null]
+>>
+endobj
+182 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 533.208 null]
+>>
+endobj
+1883 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 535.698 null]
+>>
+endobj
+1884 0 obj
+<<
+/D [1878 0 R /XYZ 285.625 523.743 null]
+>>
+endobj
+186 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 292.167 null]
+>>
+endobj
+1885 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 292.167 null]
+>>
+endobj
+190 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 230.454 null]
+>>
+endobj
+1886 0 obj
+<<
+/D [1878 0 R /XYZ 171.694 220.436 null]
+>>
+endobj
+194 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 168.693 null]
+>>
+endobj
+1887 0 obj
+<<
+/D [1878 0 R /XYZ 153.694 170.63 null]
+>>
+endobj
+1888 0 obj
+<<
+/D [1878 0 R /XYZ 371.84 158.675 null]
+>>
+endobj
+1877 0 obj
+<<
+/Font << /F126 1758 0 R /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R /F123 1756 0 R /F115 1736 0 R /F94 1713 0 R /F16 1712 0 R /F51 1703 0 R /F28 1704 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1898 0 obj
+<<
+/Length 2315
+/Filter /FlateDecode
+>>
+stream
+xÚÝYmoã6þ¾¿B@ž ¬y|—t߶A7@Ñö€ÖßvS@±äXWËrõ7(úßo†CÉ’ãÄŽ»‡‡
+•‹åòvXL¯ËªÎ‰´¬Ê]ºlÿõª#¼EùÁ9œw,Êÿ?x R„ž‰ð¤r–Äzäƒ
+¶7qÌŒögöÙt-~ƒ¼’°YWÝ&£qlÏëeÑäDX¦][T[šìý9'a×Û‡+¼RWÆBN%z£WŽ5ÔJ°Xñ»‡ ‰ÃDïµ(¶ËM—y‘O8y|´&²Ì$ŠØ•év°<÷ΩQD7í¶Y^ÃP&aJ´Ì&'ÒƒòÓtKkªUë, ´]]9q3°|·Ìýû®Ý¹T ÚuÚµhüF%²½/ºªó¤ª>­™<VÌbVˆ½bE³`E³Ìµàa[ÑÓ9œð²H· ›Íml³Xà.sÍÁK~OËÝ&ÿÅãÕ¨˜EÉ8^?RÞÒãCyWæ4\Õù߶ÑðSpʳÑë³^/÷ §G­‚¨•œÅÆŸÕbM§oáÔÖ3ô šzgïßNçx¢
+Œ59Q"¹
+KÒÍƯ]£dîÝ—¯½“ãšÚ¿(\$€ïfyFÚÄHB¿l·I)bœd`ÚÓÎ)žiÌc–pvûu±ñjaHtZ{êÞÕNŠ- ÅSò2g3¡" ðTeÃï oŸÄH7tX4‚D…ï½îët‰¢6D°ÎWT«€Rç¿uEgcƒáÓ_gWjTü?Љe‰Ž¯-Ôr¨û
+B‚e‘AŠD¼npkcÂwmƒu/ËiNva¯G“â†Eðr²ÅÏë´h¥„Ó-j/ ¢/ã2-›'1ä;•ÛVPú†×g‡ÉÀÁ¶žÕ¾h×Wx‚á’ûNEýjrîÈ#C?ô u
+@'°­‡NÀïä*ÃDléÃYÍU”óXL¥x5Üæ4CœiÚƒ("ZD“3òQÓá¼IòÓ*(DJ3•ä†¾0u$BÈ8:EËY 5Àµ˜ÕËvR‡¯¦› øØ)ììË^]a“Fw›ïáÆ °>û§7 Vƒ?ÿ¸éýðÏ‹peœŒñá6Ñ$N¥Xl-%NÃô 2) ¢ŸrÄDJ„O„¶µöÕ Ç†ŠPODL?¡gÒ¬DŸ$¾Îÿ0\Ud »jûÐ`ÊápÃÞ6†1Ò1 ‘P!€Œ-|óè[Ý ãàœ ׺ÐÇËŽ{ZzÒSŸ¯Å€º"
+‡Ú`xpÚÌa6žÔ¢÷¯¶ágBã~ˆ‰¦¬/+Ò‡/¿]¼û/šÖ:@
+endstream
+endobj
+1897 0 obj
+<<
+/Type /Page
+/Contents 1898 0 R
+/Resources 1896 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1890 0 R 1891 0 R 1892 0 R 1893 0 R ]
+>>
+endobj
+1890 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 297.585 229.701 308.71]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1891 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 275.061 219.24 284.799]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1892 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 261.719 229.701 272.844]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1893 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 239.196 219.24 248.934]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1899 0 obj
+<<
+/D [1897 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+198 0 obj
+<<
+/D [1897 0 R /XYZ 153.694 481.07 null]
+>>
+endobj
+1900 0 obj
+<<
+/D [1897 0 R /XYZ 153.694 483.007 null]
+>>
+endobj
+1901 0 obj
+<<
+/D [1897 0 R /XYZ 305.719 471.052 null]
+>>
+endobj
+202 0 obj
+<<
+/D [1897 0 R /XYZ 305.719 471.052 null]
+>>
+endobj
+1902 0 obj
+<<
+/D [1897 0 R /XYZ 305.719 471.052 null]
+>>
+endobj
+206 0 obj
+<<
+/D [1897 0 R /XYZ 153.694 395.121 null]
+>>
+endobj
+210 0 obj
+<<
+/D [1897 0 R /XYZ 153.694 374.629 null]
+>>
+endobj
+1905 0 obj
+<<
+/D [1897 0 R /XYZ 153.694 364.998 null]
+>>
+endobj
+1896 0 obj
+<<
+/Font << /F113 1728 0 R /F123 1756 0 R /F115 1736 0 R /F19 1711 0 R /F126 1758 0 R /F114 1729 0 R /F20 1903 0 R /F91 1904 0 R /F89 1710 0 R /F16 1712 0 R /F51 1703 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1918 0 obj
+<<
+/Length 2355
+/Filter /FlateDecode
+>>
+stream
+xÚÍY[oÛÈ~ϯà[( š’sç>nÐM[`Q 1ЇM Ð-±¡H•”ìºEÿ{Ïe(‘2mII¶(‡s=sΙsûFI´Š’èÛäð…ÂF-v¹ùñ¥ÑŸoÞüá—4UQ&2+mts¥.ðY›é²èfýN•¾+VeýP´]1ûró—«Ž¯´i4OS‘Ã$oÖÅln¤‰owë²]r›Éóð:︕óyøíýæK]<†‹uÓ.ÅõÜÌ'ØAêE½</+´– •&IËÒ(5JØLG6õB+˜Ý
+ .œ
+—¤,Êw;Ø]å;äU'dŽì ³¹µ&þT<óY*ç¸yß´Ü@Áu¢ãâŸùf BU©ttr¯D“€)%þüÆaL¼,îó}wï`ÀJ¼GWÓñ‚¼%¡vËšwññˆ†kt|ß‚Vi~· Ñ«öm[Ô¸nÇc]S¯Þv¼ås¢tÛ…‰ƒÀÄAßíÃÒì9 €ß£8Bó#¹ª#ú¶zèµi’Ö=C˦Ø4mù¯>´\DŒòÂeáÒÈØ”‘CuP?ˆ¯ŽæÝq¿¹ç9w—%ȯ
+ÐÑPCÃÀ»ZÞÕßȾãþÝàÈŽÏGGx9X>K-A:-aÌŸH÷ ZÒRÙ˜N¾;*åuïu É+ûïÈ«0ÓÕÁÉ5i¿ ~t~î t&3Ö÷7€:ÃñÇuÃKŽS þeÇCO8†FG¤Žgx¼ag×qEA£G„Û÷°Û›|U+Úßux±ÿØÂÙ  Af“já=‹~ôP`æÙ à;0pHšÌ@»¤g˜ÞÇÔ]KwåÄð¤Û×™“Þ‹DûÑ–‘ɘ†‚±K÷¨YŠÄ_Á 7Mm‹E°ú*éÍmù,rõêI$d?s¢иaõà÷xã}Nžë¡·6íœòù§¢*»òa¦$…:ŸÄ¿2O”#Î$)éµH¼“ü3J«\\vüÍ«®Á–ûlÒ•wUÁ“»&,®ÿ|p{_ÕB£ B‹ÑPaë$s™=Ø‘8œIèxtÂÈ—”€ÍÃÁƨU<q+o⺠s{6ž—èÚÆ73ÊKºývÛ]7âƒòEYTÃ7Mƒ®)¼êŒÃkrptpL)ÆR8qNx%›%4ÙŽ2 Ôù¦`2\ è² ß=mpm*Ï@þeæ%;+,¡t\AF»¶(~É{8 •²¯C¿LFû'&|ø2
+5WÓŽªéîPèF8¥~P6IK‹L]…ÂQ›±Yü$¾³BjuCWñyBtëƒï4} aã*ŒvÃ17ÏSeD¦uB914ÖIue"1WzLlð¨³Ý k!@QpÅeœäTuz;e7yP
+Ὤ©C( Ö–Æ‹0@…&‡ã ¾°…8«Ü„ y½| ”)ë„X3dæöŒ
+PSøÁ3¤a ”@iš„Çÿ>9 ¹P»Êvfð]þ[æ¥õ#ŠÊB}åûõåw+atü¾=9 R
+endstream
+endobj
+1917 0 obj
+<<
+/Type /Page
+/Contents 1918 0 R
+/Resources 1916 0 R
+/MediaBox [0 0 612 792]
+/Parent 1849 0 R
+/Annots [ 1894 0 R 1895 0 R 1906 0 R 1907 0 R 1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R 1914 0 R ]
+>>
+endobj
+1894 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 657.069 229.701 668.194]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1895 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 634.546 219.24 644.284]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1906 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.321 559.768 270.395 570.56]
+/A << /S /GoTo /D (section.7) >>
+>>
+endobj
+1907 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [277.774 511.947 284.997 522.74]
+/A << /S /GoTo /D (env.hat) >>
+>>
+endobj
+1908 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 434.079 229.701 445.204]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1909 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [227.708 434.079 276.774 445.204]
+/A << /S /GoTo /D (macro.memorize) >>
+>>
+endobj
+1910 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 411.556 219.24 421.294]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1911 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 398.214 229.701 409.339]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1912 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 375.69 219.24 385.428]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+1913 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [366.519 235.286 373.742 246.079]
+/A << /S /GoTo /D (env.hat) >>
+>>
+endobj
+1914 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [389.443 127.136 438.509 139.091]
+/A << /S /GoTo /D (macro.memorize) >>
+>>
+endobj
+1919 0 obj
+<<
+/D [1917 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+214 0 obj
+<<
+/D [1917 0 R /XYZ 153.694 560.764 null]
+>>
+endobj
+1920 0 obj
+<<
+/D [1917 0 R /XYZ 171.694 550.746 null]
+>>
+endobj
+1921 0 obj
+<<
+/D [1917 0 R /XYZ 153.694 488.985 null]
+>>
+endobj
+1922 0 obj
+<<
+/D [1917 0 R /XYZ 153.694 262.13 null]
+>>
+endobj
+218 0 obj
+<<
+/D [1917 0 R /XYZ 153.694 212.372 null]
+>>
+endobj
+1923 0 obj
+<<
+/D [1917 0 R /XYZ 171.694 202.354 null]
+>>
+endobj
+1916 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F115 1736 0 R /F114 1729 0 R /F126 1758 0 R /F16 1712 0 R /F51 1703 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1932 0 obj
+<<
+/Length 2567
+/Filter /FlateDecode
+>>
+stream
+xÚ­Ûnã¸õ}¾Âo+1+^DQ}뺋íË6EQìlÙf5²èê2Ùôë{)K'±g#’"Ïý¦tuX¥«?¤ãþ˜^µ8¥áO¯­~ÿá÷?p.W+´Ð«û‡Ï9ƒßJg92[ÝïW?'Ÿ¸TG{tmõ?»þåþ/7]ç~ë“QÇÇ€Ž0l2Ád*a³GãÁ
+’-æ£yD_‚¢Ün²KýÓ`®™XmxÎ
+)ÎæJ×|µá)ÎŒzßðÔ†g~[ÃSßfxKuÍò‚e"¨ë߇mgQ½…¬7Ï’¡CÂرdî<@¡4Kó9¼¿m2"Ó,;;BlWÁý°³tóT±qNŠ#o`8 ¼ã®w-ZÖ§ˆ_öúËhÖ¤Þo¨ÃÒEe:gY´ú¢vÌØ ›µ™…IQaÒWf¼³PLI>?^Í è Ñ|©žfD‘²¢Ð g“eÓ\Ó¡Ÿ&>0#Ï .;qžYR¶Þ·êäP»mYßѤsôö·º!À(z;†V‚@‹;Ô;rŽÉtVæ‚Cƒ‘kìe‚ÌRj
+žš=£b’²ÙÓ øÐCLRõáÙÐÓ†µoÉä_k“RL$Å ò<©K¢¸@“yÃ6_3 g O3Œ_ñž¯Ó- šcæPŽHàP÷Õ °¬-aÙWG
+ŽgbC4I7ªç[þC¡íJÎò4èËg5°ËRxq-…(Ö!Ä%ÉMúEü
+Qêlʸxt^»ŒÍM
+TÌdÙè®)_ðy“ˆ:+hlßuª©À°| ¯‚N„ö›äS
+Xu=­N5 ÝGàŽ- ÍNåÁÞÅËâí_àÃÉì¢Âæº,NÎ
+¢ÐÛ²÷
+­ dsvF¯S9bŸyùÅméÖͼ¶ãó1825¥&^;h8¡O€…Ƴa0c$Ì«n~É6$oxh¯ù}5!X‚ˆ•†÷*üœZºlªÁOÞîÚD
+ziôü’´pŠ°È3Ì3f újÊ¡wDzA¥¬B€"
+U®£÷ŒVè.šCGãºzY©À}ØÍ+ÛÅý¤¦*éÝPïi\Ö^Vä*ÃΉ «/ Ï[PÔgVÍ3›³„¡ò]'P •€àA 'Ò\« àaLA þE`拾-aÊ‹…±á‰ÈÓdhÔÁ'›ä–D•¢%Þ’Ãõ¨
+F!ú¼Ã-äص¹5\ï6¹žßŠáj‹ ?{‡ô~/ÎüîÊŠ 8´⋠ÉÇhÈXÿÑø¤Y›G"‰µ@ô’Tá`´d’#–lÏÝKyÌÕ¹·m«ýÁƒ52$ó
+’R¬«ƒ©˜Ñ `\Ü|ÆÁ {Ï•“6xyLö%%ûj¢Ú¯ö¿¤ Ò™vcÿ«­z̸¿2Ç>‰’mÜõ ñؾ0™¯¯gÀú¡mºà¨!HŠyÚó1kî
+¾xš“HšS$å>\‹nÌÿsÍŒßF1_J$K(‹ðÅǨ&!Cá°‰=ÙØ|m]¢Ü¤^¢•g¨·í¤ƒKq;*‘(f-t„O±ñLX:;ÊxÊ5ûjs¥Û”Æ×Ð$PO‰Ø¦*½]ëðÒ4€èÒê·”Møò“9çLÅÕ®§Z^QíÖÞ€(˜Ù³Ûèsƒ
+3æ¿®¡¼NeÒ˜SNïžÂ9ŠÆy;ëuãœvWçôTû(„1 %4Y¨çMíŸ+cW,f£@y
+ơ؇½c0~‹c²
+endstream
+endobj
+1931 0 obj
+<<
+/Type /Page
+/Contents 1932 0 R
+/Resources 1930 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1915 0 R 1924 0 R 1925 0 R 1926 0 R 1927 0 R 1928 0 R 1929 0 R ]
+>>
+endobj
+1915 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 653.748 219.24 665.704]
+/A << /S /GoTo /D (macro.memorize) >>
+>>
+endobj
+1924 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [245.073 576.593 252.296 587.386]
+/A << /S /GoTo /D (env.hat) >>
+>>
+endobj
+1925 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [256.88 382.772 316.406 394.727]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+1926 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.599 335.228 282.949 346.353]
+/A << /S /GoTo /D (subsection.11.4) >>
+>>
+endobj
+1927 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 296.321 219.24 306.059]
+/A << /S /GoTo /D (macro.ifslides) >>
+>>
+endobj
+1928 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 282.979 234.931 294.104]
+/A << /S /GoTo /D (macro.beginchorus) >>
+>>
+endobj
+1929 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 254.202 224.471 263.94]
+/A << /S /GoTo /D (macro.endchorus) >>
+>>
+endobj
+1933 0 obj
+<<
+/D [1931 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+222 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 625.41 null]
+>>
+endobj
+1934 0 obj
+<<
+/D [1931 0 R /XYZ 171.694 615.392 null]
+>>
+endobj
+226 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 515.828 null]
+>>
+endobj
+1935 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 517.766 null]
+>>
+endobj
+1936 0 obj
+<<
+/D [1931 0 R /XYZ 266.353 505.81 null]
+>>
+endobj
+230 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 372.366 null]
+>>
+endobj
+1937 0 obj
+<<
+/D [1931 0 R /XYZ 171.694 362.348 null]
+>>
+endobj
+234 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 210.259 null]
+>>
+endobj
+238 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 191.814 null]
+>>
+endobj
+1938 0 obj
+<<
+/D [1931 0 R /XYZ 153.694 191.814 null]
+>>
+endobj
+1810 0 obj
+<<
+/D [1931 0 R /XYZ 237.288 179.859 null]
+>>
+endobj
+1930 0 obj
+<<
+/Font << /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F19 1711 0 R /F114 1729 0 R /F126 1758 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1948 0 obj
+<<
+/Length 2867
+/Filter /FlateDecode
+>>
+stream
+xÚµZKÛ8¾çWxo6sÅ—(“ÅL0{ZÌ60‡djYn ­– IN§w1ÿ}«XE[rÛÛÉ"H‹’Èb=¾*V•œÌfÉìÓ»d…"uxKÃßÏ=ýx÷îï¿J©g^øT¥³»õL:)àÿ,M¡œŸÝ­fŸç_¤6÷åCÕ|-»¾\üy÷Ï3áªR9[J)¼µ´ønSõ‹¥Uv¯ù[>‡)aÇîñûûMÛ D¶®šRàŠÀ…šrñqdz†ì„Ë6ØÕyW¿0Á¶y8¦Q»æ'/]Uô?Qa“3‡ÏU]“Sš²\± -]ç.ßnË•xk—e"¬ÒSŠÈ\Ù¬¾gÕ-ÀŠCE$*L“3iµH½™Yo`xûÔ·°©Ü|µ+Ê ©ãõ¼X%©pÆά˄³Šj´Ösº4Þ²Áq82ø cãŒaWGjLejì@,;’¥Ehìðdoì™þýÉvd:œL–6 9ö´¾¾}dó’ç¢ÑèYÔ”úY:%¼s³¥–"s†öúG[ïž ™ùÇ®Ì{ÿQ¬°'¿ú7HÓ‹JO„Ï2V¼–©Zά‚ÒŒ¿€åßlÞï€âÃCÙtŸÓ¥ˆ<ÀøyÀ¡á…f2óëÅCt…Û¶{{ jˆI› €ÅwýA“
+5xˆŒ{÷>é&ÊeÒ¸ m&h>`í%}a°}Y¯ÅbiŒÿ¶f7eÇsó®<cÚ#]ïEbÙ²M{œ‘Rê„L(] õ˜/…²S
+(7šT²“"¨½Ma´
+Œ^ ¼€Þwíc˜Âúö©|f%)½rD™t £UK~Ç„š–'¢K­g
+X/@Å`Ü°†!4ØpÿÜÓKPÆá
+ªPªCDi`áÆC†›™eÀ+„•±F+—NE¸5å·Xš@î4i8–J½Îrú¢.ón›?”‘1Â%î•Õk2ùUšBê`fÇDO‰÷†'xÐèÏh'”w¤¥÷7x·J¤HµšºÌ»#/
+òk/ÊCÑq‚—3f{ƒ¥ rÉ$=fi©áìãJÖ4$§Iæα¶º‚7íP]zJŠ":•£ØAÎò(8¬q —·ðÔB6n^ó~%äb¨RVhÃŽù”˜Þk“@Xõ4âˆ*Þ£T/4•…@Êñ^ÖyóHÃ~›¼<Üz ‡žvÚ'<Ÿ]z«F¬Y:•ä:Ì› ŠK#O)㲌LB¾q…DšS™'IqPìº
+=^¢‹Z  ˆ1ãZUCÉ 29åûŠ“w¬ƒU:À˜V<¢ x>aiv38PÓØ;Õxî¦é iŒL#”!‘Màí„TñºåZžDt„·-½#ûÁ¶7<º Ùä(&GͲÁsy÷„9%éB
+#65nÕ0yÎV ¬.Ï O£¯’5ßÇ"×S)Žø¶ža}€Ž9”CÓ}9”@}“wy]sVÑ”‘ÚÐŽó…f&±ªàøÑåŽë¼(û·'^TšBÞÕ²guÜ«z¤R7(íeKÊ "…˜¢n¸{36Û„WmªPVi*«h"]Š¶YUCÕ6yÍšv tx×u‡ç(Ž¾@ …ÚÃpƒã×E&1%ïÊoùÓ¶.ß¿Ù¾Êø3‚VZ85êTë
+u4ÿµ[Å~uý^õk«u_ôúÙ›O¼¬+ú{}ëüÔ)å/~oAE…’œ]94¯ÒCFÊ59‚ SºàØ ã÷œjöålœ†‡;“>˜‹}°tžü<+vWVôòUÆøèN¿¼Èu”×"Óì:˜îá¹Ñâ®ÜqÙ”ù
+Ÿª9Ùï;-_ ›I‘q³èMÉÉsÎy/~@Ï u…!…óÞp†ü
+0N¼ûC¶ úÚ'ËU»¼0üàmHgo8é|AÞOø pmŠz·*Û¦~!^.Ì8$™»¥*BÊ×l]žûZ,žÍ3ÏU•úÐA¹1銭“ ™ÛZ'@Ug¯ù¹:aÁ°˜<â< `Ú¬naÍe"9ÇÙê
+Ö4V>ÞO)…Œ©?xú´H}ø4ú Ÿ°¸ÙõÃ8•ôjÝÖuË‹Á‘Vçªeðçã¹Ê-ñÄÄfe?äÂá/69‡Ú+ ]Üú’ƒ› ¶ùÉV¨™¶B—û.¨¡ÞÄ¡WÚsŸ¿ÀœÁ4gKQ°¢ÚŽ&VÍhÙ‡ŸsR›4`uŸMP¢ïñøXaÐq’ëb—pBÖÝ°¶ônºí•Å¡3²õ …›œ+K„>’ÿ‣ÀŽÿ \h¬Ö³)k½[›,´G˜ Ö»­ Å€>–îjÏ6
+¬lM¥æLE ƒóL8ñ.;Ë5.–Ý•’Ýà.øg?ðñë <È»‡ÝÓ!'÷ö¶0-R`gÂÀµ§è¸[k½°2›ÒãÄ#óÜÅW§>é`›«°ÂŠt±”RÙù/~ÀÙ`¨‘!å2úc”‡žÿ^néE>ô§¾á/2°>}7@Z*Ð2VÎÿ…7ONæEÇýú™„ºÚerÿ!ˆê‚Tºs<ëË~Ió/
+JªNZºÃð…•÷×~?ׂ߫ƒ¥SnBŽ õÁ>ÒhC¼ A•èi)t(6ƒ^6QuúŒQ!ÓrFOwå_w,M8)Љžc•²°É|ÅÖ˜l*G_7µ;Riuç!~àÁBüui+Ú¥£&›Ã¡–&⃌uÃg8éá(ÈNæÊ/ÒY‘í„Eô(þ.a+7ÙØÎ(ûê?¡Œ^ƒjÈëªÀA05ªZáíÿ¥j |Ì YöuŠ¾ÏŸþ¬wUþ·Åþw]ªû×èõ_—Uƒ„â·¸ÄÈ€- ¤Ä?«]—“¿Ÿ‚ømüþ—(ÈO’vžœ0ÚÌ ‹r4óÓ©êi¶<L 1i’ü”E !(þö%±ÉÙ]øeâ_X<EöM ‡~ò8[JkBO
+endstream
+endobj
+1947 0 obj
+<<
+/Type /Page
+/Contents 1948 0 R
+/Resources 1946 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1941 0 R 1942 0 R 1943 0 R 1944 0 R 1945 0 R ]
+>>
+endobj
+1941 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [415.671 338.722 435.729 349.515]
+/A << /S /GoTo /D (subsection.11.4) >>
+>>
+endobj
+1942 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 321.899 224.471 331.637]
+/A << /S /GoTo /D (macro.ifchorded) >>
+>>
+endobj
+1943 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [248.63 321.899 297.696 331.637]
+/A << /S /GoTo /D (macro.ifslides) >>
+>>
+endobj
+1944 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [389.573 278.669 480.482 289.794]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+1945 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [269.605 230.849 360.514 241.974]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+1949 0 obj
+<<
+/D [1947 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1950 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 534.923 null]
+>>
+endobj
+242 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 459.27 null]
+>>
+endobj
+1951 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 461.207 null]
+>>
+endobj
+1809 0 obj
+<<
+/D [1947 0 R /XYZ 321.903 449.252 null]
+>>
+endobj
+246 0 obj
+<<
+/D [1947 0 R /XYZ 321.903 449.252 null]
+>>
+endobj
+1811 0 obj
+<<
+/D [1947 0 R /XYZ 321.903 449.252 null]
+>>
+endobj
+250 0 obj
+<<
+/D [1947 0 R /XYZ 321.903 449.252 null]
+>>
+endobj
+1812 0 obj
+<<
+/D [1947 0 R /XYZ 321.903 449.252 null]
+>>
+endobj
+254 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 217.904 null]
+>>
+endobj
+258 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 197.412 null]
+>>
+endobj
+1952 0 obj
+<<
+/D [1947 0 R /XYZ 153.694 199.736 null]
+>>
+endobj
+1953 0 obj
+<<
+/D [1947 0 R /XYZ 222.5 187.781 null]
+>>
+endobj
+1946 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F126 1758 0 R /F114 1729 0 R /F89 1710 0 R /F28 1704 0 R /F123 1756 0 R /F115 1736 0 R /F159 1954 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1959 0 obj
+<<
+/Length 2928
+/Filter /FlateDecode
+>>
+stream
+xÚÅZKÛ8¾÷¯ÐÜÔ@Ìð-in`'ØÁî;éË"ÉAm«»…±-%'Lòßç+’’EÛqËždHÚE«ŠÅ¯Ož¼¾áá÷ÕÝÍËŸ…´IÁ
+‹Ÿ»‡DÅl¡k2&•IîÉÛô×js;S2­Ê®Z •«ôõºjÙíû»_@¡`\XPç‰H¤ÖLæÅžØ
+Äîns™6D/Oëõ¢žƒ¨êžÊŽZEZúŽ%ñ­ö©Ù-¾};“YZù‘ín}+ÒGÿ°ºÅëݲ«7Ëžd½ªZÿòž^~
+ô—Kbý†3ÏêúÍ__“N„Nrˆdµ)ˆ#¤b7±8ï„Ò[èÇ‘ z=V‰ìIôêÕšñÚzýXmÛ`-ËÒÍ® ´¸ã‰X ÍÀš“î5Í ¦
+Ñ œý±Æ™RÔ¤"‡Á{jÒ2aˆU·ëOaw¥:-‹TÓRDk®ýœˆêÀ#ÆY¯cæ&ɬXžéžÉ//MÎt­íŒÍ’Ù‘±X˜ÔzáÍÃÁ2Dv;3&Ovæ»õªÿ–+ØÚ‹3;vÙ>ŠLxûS:óŒþ´\VË]]þ
+ Ãéç*±øósž))^!F6\1£ˆÁñ:Oš§›eéÂq„¾ÔQ¤»õC¹ª—u¹õÚfýHp«"·®½[§Œ¡­¶ŸSú®Õ°Êmç ßݹ6Þ…û—Uˆn{w4œñâ@š3}Þ;iì‘ÉÃÞxW"ŽXÎyAñîƒ3Œm‡ fé{6õf0T<¶Ÿ\úãc–fé§ÓÉ}Ç%¿Bf…}W™9ý<QL%,³ü`2tð)’.2ò¢"ˆÎ¿ŸÕb»¤?çIàý  O ?¼FN{ŽÏ#?\ ¼ÈØÆM«Œ
+®°à J‚ŽXmŸš¥v¢1k•cËmL§ÙtuÄö8ŽŒ í‚˜á`’Ë?¥;gܧ¡Õº¼_V :\|“|“áiÙw5k—Å +Ò4¸ðÝ÷¾Ç ^TånÙùÎ#éØ{é¢Ç‹Þ{±ii|: ª¸s±ßqž­Cg3†e·ï¾áS)ã±Û:˜÷­§²õUÕ9‰AkWÏÁZµ ƒ ù¼‚Âþ±¼wY\s‹?(ÃjçzÝê!)¼¢ø#—A‘äÞtÕÅèÏ3fD0
+üÜu¡áî¹:<Bï(¨Î}P=)*PäŒU],ÜXÍ—Þ‡Y·Û<ÀuŒàŽ^@ Ïç,sÐ"su°ð³•ë‚
+ùy<éÜIT0T¸?šPŸ9GÉ[@—}–Š±­1Ýs'F 8¤vg9”#ùG4u°IO^éë€ØØŽbãiEö@ûÐ)„h@™¿!-úÃô2äÔˆŠËeÛ„®1Îáý}ëß­êŬ%ïáÌ!cs‡Èý»¶NÍEÐ/¨Ò£bŽ/õâZg,ƒ÷Žˆ¸ÀœùãDrÕ‹ÅòºHîIâñù4(sp ‰WÝç™ú¤B¦øþ–L éèuš–šÎEÌ@/Å%>ÉPþìÔ ·,«ÓI/{þhk&¹‰'\ëƒÌÕNv²€Šª¦â€ß³!s—N~'ß»íùÕËØÇ9²çƹ#¤ÎÁ"Kÿ3r?¼ODú±vhµÖ×Ç&8&e`ŽY㺯Ev™¿bó¢ˆé=ëo;È¢Ig¯JÔ’L˜
+óRƳ,žüòœÅ©‰¨4ÎŒ'3Kº=>Ôãd 5‡6•Ò!>ºŸÕâ;ÝÏ
+J£¹>Lì—?ò//vêÂË…†à«+È1Cô¨nûÆUZévˆÎžû%'@ÏOUù¡ZÓôø©Úß"9¬Ö_ð¯-ë5]‹šŽº‰ÍrñÃåìÍÆüÙ½ÈÕzñ¼ÀS3li+@º ò0“9˜ Õ9[$8“969úŠÂ£L"ADË0Ùö7ŠI.sòãêäp<6‡]–ê|õN(¤ÿ6ªÞQ‘¾æ-·æ›P+W=5…n"=QH”FŠÐb+'
+‰+TŒDÀ±ƒ¡ÐÀWZœá;¾ uB½F‚DB‘«êïNèT ¢„q…·o¡SªH#œ!«&®ý…¿ê=AÌ„±0/ûM´I´$¢„ˆ‰þÝ…I.ì‹Ã»°<Ü…ÝÝ×íèB€îÃþåBø“õ»ÂŒïe¨RL¤
+äOm½¨|¥ìaÛ¬üv† ‡ÖeT±ó?
+às* ÂøvxûÂ÷º ›0Àý ‚~êj¼žË¾þ×õŒÓ¸>÷ ~ÿ ZthÉȈµ+‚h*-`»#9 ehaZoÊ ØL#oÏÁyEwvGDN\Cæ¨ä¦¾‚ŒÔ¿ÛîæTFv—Y¸!ÌSJüGaþÙ«¢ CækÍãïé†ï0,|Cçʽ®¥ÏóÂjás»<­ÃúÇ%åI±•@¢’ _tQMœ÷ŸW4°ÑãòÓ¶žSSß—Ò{'"5Fåé™~0U)¥ÿäF„ÛóoéÖ…¦ëqsl-œ[ê\PEØÇÏ—£Ä<5YføpTÿeÁOÆò×{\ºé¥¯#ó¾ˆ7¥}tƒv’äáôã!X¤ËE¢U‡‚ÀÑ…ïn¨Äì/BÔy÷¸Æì-'–£LN–óãÙS;dM†]$9<± !L4^âOþ…ó
+endstream
+endobj
+1958 0 obj
+<<
+/Type /Page
+/Contents 1959 0 R
+/Resources 1957 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1955 0 R 1956 0 R ]
+>>
+endobj
+1955 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [369.856 440.45 434.613 451.243]
+/A << /S /GoTo /D (env.showmeasures) >>
+>>
+endobj
+1956 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [242.713 380.397 297.009 391.522]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+1960 0 obj
+<<
+/D [1958 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+262 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1961 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 669.191 null]
+>>
+endobj
+1962 0 obj
+<<
+/D [1958 0 R /XYZ 244.289 657.235 null]
+>>
+endobj
+266 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 618.879 null]
+>>
+endobj
+1964 0 obj
+<<
+/D [1958 0 R /XYZ 171.694 609.415 null]
+>>
+endobj
+270 0 obj
+<<
+/D [1958 0 R /XYZ 171.694 609.415 null]
+>>
+endobj
+1965 0 obj
+<<
+/D [1958 0 R /XYZ 171.694 609.415 null]
+>>
+endobj
+274 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 545.339 null]
+>>
+endobj
+278 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 527.447 null]
+>>
+endobj
+1967 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 515.492 null]
+>>
+endobj
+282 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 515.492 null]
+>>
+endobj
+1968 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 515.492 null]
+>>
+endobj
+286 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 429.491 null]
+>>
+endobj
+1969 0 obj
+<<
+/D [1958 0 R /XYZ 171.694 419.473 null]
+>>
+endobj
+290 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 369.162 null]
+>>
+endobj
+1970 0 obj
+<<
+/D [1958 0 R /XYZ 171.694 359.697 null]
+>>
+endobj
+294 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 214.038 null]
+>>
+endobj
+298 0 obj
+<<
+/D [1958 0 R /XYZ 153.694 195.594 null]
+>>
+endobj
+1971 0 obj
+<<
+/D [1958 0 R /XYZ 153.315 183.638 null]
+>>
+endobj
+302 0 obj
+<<
+/D [1958 0 R /XYZ 153.315 183.638 null]
+>>
+endobj
+1773 0 obj
+<<
+/D [1958 0 R /XYZ 153.315 183.638 null]
+>>
+endobj
+1957 0 obj
+<<
+/Font << /F126 1758 0 R /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F14 1963 0 R /F162 1966 0 R /F115 1736 0 R /F89 1710 0 R /F69 1716 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1981 0 obj
+<<
+/Length 3403
+/Filter /FlateDecode
+>>
+stream
+xÚÕZmÛ6þž_á2å‰o¢Ô~ºéâ½+z]à
+4=@+Ëk!¶äJr“ è¿ÎP–´¶×»I8´Y‘IÍgž:^<,âÅí«xxÂ"Y´Ø¥æ¿Î~s÷ê/ßI©™È•,îÖ é¤€‹Ä:¡´]Ü­¿Do¥6»CWuÓ—Ÿ–¿ÞýýÜg„ÖH>nao•Ž¶†­60Ùï¹Ámàëjüu-R7ÌèË=Mšl#aã4Lª.QsrtÎ1~Ó†íþ¸¸I6ÈÆôˆXùir!­If‰‰Uµ¸ÛÁ–ß4ýfy£­‰š5=ûMÙ•Ô,Ú2ï¹Ó£Ûä«¥ŒÊuï—7*š%üùÀkšz©\ÔçU]ÕDð%¹K¦NÛL˜$™RwR #–t¢…6rºèœfš42±Ó5AQOÉP§FÄ3Šå•.ún™Ê¨iI
+å‡|·ß– ©×ŸmðÁø°æ?ŽÆ {Ûÿ %~c•òŽŸôèß77û¼í©×6‡z%¾1ÅNHeˆ˜}Û€=¸hu(ÊÎo/RÜ
+ÿÞNÚoî^ýö*0¦âD8c6U"qjQì<YR:°·F8—.Úr±~õãd—@&yŠ1¥*΄ƒãlS8ÖYJLJģµöâÑšŒº=Úï{üÄ„/QL À•xÄÉuâÑà ,hæÏÝ2U`ý!ß.oL,#TZ‡MyMc÷^‚%uöÛ¼À£†íÜŸ«ï7eËoßWý¦âe9mÓ5õÃkhª8BムeKoÆ“_úOȨíÂ÷óz…lžR±µ
+%ñPàÒMÓ:\‹uâ­ÞhhïqÎ{ÿ²¦7@ÇN„Ãœœ2îð1•ˆÄ²=ݪ>ǽm}›ïA-*jº°ÏÑC\z¾Ó5º±TGÝÞ{¬²¨€|Ôœèè]U¯èµw‚0Ò5á ª‰†»ÃÃCÙõ÷ >™ n~E†3ÖmÙ³ L<yx̸É'Ý,Rà"1aÈLH°Ú xÒ‹|ß\òTÚ“%‹)Ef9<‚?öæü~Shâê‚F>R«Ê7Ía»¢îþÐ3ª–š
+ô‰Â¿1&‰þ‘msÁÌ}˜ŠÁaa1°òiÂËÅ0¡¥Ð©z2<¡²>.eš/á’SÁØ̃ñIE¤ÂÚáSÝHºÃñÆ"^7mzÕ°ïXdéü¤Ä
+¼f𼇖 »éJT‘Ž£¿U’‚õ¶»|»ýH½ º>l€v±‘E]¾+i¨|k]¼.ïž¡ß!¸j'’XN‰›
+¼eÕÑ3/úŠX >@S€šaRÏϺëK
+Ì_iÃ×ÛïÉÇØ 2) ¢ í7s¤zºàf¿àMgä>Äãs©H5ÛüO%úÍDFo•v›Š'Œíš–ßVõ]™Ð0Ρop¼ á
+„1¼8` <H33J¨<!,H7ÈùEÎ2Œ b²úŒ_ž8$1*¶"…$h²ÃÎÃ,
+Údas ÿg72Šðš·Yèx³Ì= üÔ…Ê ñ€wȽ 'ÅH>]0ú6Vq÷Û¡ê6å
+Ú’^÷ÍCÉÂÍE@#ùY^@Â&€ê`Æh$pŠ`€Çü1u!"mÅ~ˆtÃÜóoöWT"PÁ)cÀ#—e§sï….¸«Vådi°X_eôFû=Q„u9‘9Nü¦DjÀ]®þõ2:±Â*7åà¢/r°Zâ¬ËšËÎhX“Øjò‘Ÿ‰Ã5ÚSDгTP59"|?¸a¡ ÒxA½E¥"¸>!Á)6WÖ…s’Ú#yBØT Gª-…«®Ò*r•0ƒz„GÞ†J‚t5-Å’7ö ø `Eãrܱ|à¬b9Á”#žBé‹×K“"™Ð€%›êlQPÇRX²B¦FG»ªö1Íø¢ª£È=´ùÀˆ÷Hð®lÛÆG}ã¨ñ‚!/ É8Ø)AÏÒº³ò¦Éá.óÍÂPx¤Ú7u|õÅ+þÉúÄkÄÛ‹ï¹=%¯¿ç*€¥¥E{œ_*¡ÛüY—]/fQ‚E$×—
+÷ž¿òTþ¬…ƒu_”?ó…ø{†
+÷È_Ó¼sÂõÿ®ÁõüŠsÑö‡VÄÆüY:üì;4ÌóU’úcî7Ýï\}m*SÜÃL÷xêÚT¦™ÅétôøäAnê$¤¹±ž.¼öîTÉ d—Íû„žëw:Ó“ªLF1¯Ÿq‹+!³ìyâÐq"b7ãjï…Q^ºHVñãeW_$ ËÌSÂðWÙ4ÔÐ3ßs
+.`…䈩ü°'ž÷móΧ5÷ýW¨5¶› %ðYŸ?G˜=:õô¯
+‹¦‹»™
+FIoŒ'±ôí 77Ñ™] _§@ù”Nf„?¥@c¤P:›."§nO;õ°„uÙÉÂk5hX”éÙb–‹R"Û³ÚÑJ€ó •G™i½Jü³çgGϺáAêýëÛ3U
+)¹þÔK—¾¸"'4º²h¨颵 £à@ÕЕ xÅóšJbeLÎóÊxa+'; 6Î_7P+§G[‚ŠÈŇË3ã]èÖþ×ØzÛ¸+CGig…1ùúœ‘èÈÖÊ¡{Ñ5–SÂ
+J7Ý‚ ×
+endstream
+endobj
+1980 0 obj
+<<
+/Type /Page
+/Contents 1981 0 R
+/Resources 1979 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1972 0 R 1973 0 R 1974 0 R 1975 0 R 1976 0 R 1977 0 R 1978 0 R ]
+>>
+endobj
+1972 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [336.605 499.257 390.901 511.212]
+/A << /S /GoTo /D (macro.musicnote) >>
+>>
+endobj
+1973 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.697 487.302 227.915 499.257]
+/A << /S /GoTo /D (env.transposecapos) >>
+>>
+endobj
+1974 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [429.073 487.302 483.37 499.257]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+1975 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [175.967 475.9 183.04 486.693]
+/A << /S /GoTo /D (section.7) >>
+>>
+endobj
+1976 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [191.07 406.242 203.523 417.09]
+/A << /S /GoTo /D (macro.[) >>
+>>
+endobj
+1977 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [487.997 151.631 502.974 163.587]
+/A << /S /GoTo /D (subsection.5.4) >>
+>>
+endobj
+1978 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [332.515 128.275 350.198 139.123]
+/A << /S /GoTo /D (macro.ch) >>
+>>
+endobj
+1982 0 obj
+<<
+/D [1980 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+306 0 obj
+<<
+/D [1980 0 R /XYZ 153.694 538.61 null]
+>>
+endobj
+1983 0 obj
+<<
+/D [1980 0 R /XYZ 153.694 538.61 null]
+>>
+endobj
+1774 0 obj
+<<
+/D [1980 0 R /XYZ 235.394 526.654 null]
+>>
+endobj
+310 0 obj
+<<
+/D [1980 0 R /XYZ 153.694 463.485 null]
+>>
+endobj
+314 0 obj
+<<
+/D [1980 0 R /XYZ 153.694 335.507 null]
+>>
+endobj
+1984 0 obj
+<<
+/D [1980 0 R /XYZ 171.694 325.489 null]
+>>
+endobj
+318 0 obj
+<<
+/D [1980 0 R /XYZ 153.694 140.672 null]
+>>
+endobj
+1985 0 obj
+<<
+/D [1980 0 R /XYZ 171.694 131.208 null]
+>>
+endobj
+1979 0 obj
+<<
+/Font << /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F19 1711 0 R /F126 1758 0 R /F114 1729 0 R /F89 1710 0 R /F94 1713 0 R /F20 1903 0 R /F115 1736 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1993 0 obj
+<<
+/Length 3224
+/Filter /FlateDecode
+>>
+stream
+xÚÕZÝÛÆ¿¿‚@^t€½ÞoîºO©‘¸ÍKÑö Ä @K”DD/$ǽÞÿÞ™ý ¸:ž¤¢Eâ#¹Ü™¯ùÍR4[e4{Cû+üGtÖࣿýÇs£¾»yó=c"³Äj®³»eÆrF´•™–š›gw‹ìÇÙ¢úÈ„ÜÎ×ï–ðÿàÏ|¿énºûáÙE½H°®Á)#T2xç¸ß7·ŠÍjü³ØÏñR¶ÈÈì€
+’ÖD¢Eµt+wwóë s«²L
+J 7½ðóíÍ?Ñl/
+3Ï3­$:˜âýˆd4{“h«TÈh—ãyÄÉ’2%¼™¹!RËìn‹†ØsPý5—jö .vVwkÿXàE϶eÑî›2L)?Zìq–[”ÓñE¹¥„ƒnÉ¢ïO Ê­%L™”f~ËÍl]7qÙeWQºuÍдýH9]­Á;æǪ]œÈ)Ä­†ï_Á ­f_nÁ
+Ôóú¾Š륿: àÍ'·fíÔö áçu5Ç…×þѹõ–Í<ƒžmÇåÇzRI”
+n)^*1ÛÕÞHØ%-ªö—+Ù&ŒÂ~W–eƒÁþŠbt1Ò™ÉÌöí¾Øø7ó¢ ¯ºuÑù±Â_¶¥‹|çã¤Ø­ÂܪõSšò×}Õ” ÿô¹êÖÕnÀCöæ†P€} kTíÁƒ”l#ELô«¤*¿ô…·uUþ朼ð£¸lxï/óz×vÍ~ÞUu಩~qf{{2É>I«ÇæVœm¼Ô.¹¢ÕôãƒyüßͶo¾×6“@7TŠ!5èD”~¢vn‚„(‡¹nÌŒ%jH³àÊh†“‰š ¢˜>™¨a5®2¥!¥ {6Q³³™ú(΄
+¤Ns
+8RPÊs‘½ a#ˆ‹<œB<3¸<^+t~¦€0„áÀÄ,˜ #AL.ãŒ9$[ŠB5äÅ!VX?³šŒ“…¯V€Ô쬊*ÎX:ËnDC¦ Ø‰¯«a¿îÛkTä ÓyB”Cô·cþƒòsçÿJ»~D«ÐH¡Š#
+C„þƒ|¼¬é8“Ú…Ø`DŸÚ}‰ ³“‘‹Eð+Rf£¶"fè‘©2)îúÌ^葶%ÚÈ”®º¦sM,ÏSbq—ë
+-˜Öæ…º*J”ä)ÑéÐé×3 ®²Wª DØÐ%Ä÷Eãzð²n‚ÇSl½q¼¾ÇnÛã‚*ê.¼r»Þû‡m«L«·œ0<ÆqÃÏ4ÂH¢xè²çõÆ÷õ"œYH*£8Í¢DPïü ‚t‹tþ¬
+Q3ˆ6KzJÈo‹k ð\V“.CÏ…v><ÄB?¤Æúù¯Ò¢£šÂrusSBEÃÏ þñoXÉüoB6jBLc‰°Å"Vu0»W¡`7Iè0Ü /7˜¢Ð„Z›ªÌ.;ѩr"§[7õ~µ¾æ„Çr¡1NØÙ‹ë,”KCbçÅ£ ÔÀ*¸@(><àÞƒÂ× «w‘]é)W•¯¸;ÿè°Ì~{Û¨*›Hºl0HºkJ #O•„á¡[¬C¢ ¡*„@IH«KÊ8(ƒ (! ß×a‘Ôa1Z\mÆ3Gã*ƶ¯b¤ÄïkÀ jšüL9
+–S© ’Æ°û`8Ä€êªø_¹<]’ ¡S¥ ,̈$%¬¡ç7&B” h.\òÊuÿË„£ “’<–‘Wà×áLÓ‡†Ê¯Kô¿ãA‚OD¸4ÑsmØ”øúD/(ž¬è”¼PÁrÂ!ÿ¥²ÔÞ4ÕnQÍ‹®ŒÇµ>íGÔ7IÆÎgþüHÆÎû8®æp¥|Ï€£œx|*·³}ëðL:c]oÂÈÂÎÿbÛh‚ûÙ¯Zøm‚ê ÿ_Jl/ãù=Ä{½ CåïÅö~S¶~Ü gÕf³‡%ÀX_ÿK<³Ö>'GÛß>>| JÅ[J¡‚ÑÇ?ôÃ{ú9[ƒ³‰m"Ò~&ŠL£°§½’?h+èpÂ!åa¢È¡‰†r÷š’\ô¿QbøYÃRêoŸ~Ÿç9`Mé
+­QO~H%ßç%ÜàÑ£ÿ>ŸòàT¸S…§ŸøEò‰_Væ)eÞLbà¼4ƒT„ =…ƒ°Ç&™A3,›Â!º8HÃ&º“|’“ü9Ctè YøŸÈôW#Ú}勼âÎÈG¶C_aYÉ¡qË/Z¶¯±¬!ŒËË–ñv½Ÿú€cî
+
+‹XD§‹Ó=ÅyŸrH)pàÓ)‚O_ÊâDCy]Ð|•eCCpɲ1v&,ÆÎ1v€Å™þà‚ààù¤à™À!Ïõ,ú@¸žEïÔ²8ÑåE^tyS$ïŸë)Ž!B/¯ÂðôTpE”´™ØÒ¡.ñ#¨ñ›
+Ä¡
+endstream
+endobj
+1992 0 obj
+<<
+/Type /Page
+/Contents 1993 0 R
+/Resources 1991 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1986 0 R 1987 0 R 1988 0 R 1989 0 R 1990 0 R ]
+>>
+endobj
+1986 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [173.822 532.002 207.196 542.851]
+/A << /S /GoTo /D (macro.meter) >>
+>>
+endobj
+1987 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [356.559 508.092 363.782 518.94]
+/A << /S /GoTo /D (env.hat) >>
+>>
+endobj
+1988 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [378.233 508.092 385.456 518.94]
+/A << /S /GoTo /D (env.pipe) >>
+>>
+endobj
+1989 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [195.504 496.137 202.727 506.985]
+/A << /S /GoTo /D (env.pipe) >>
+>>
+endobj
+1990 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [200.735 496.137 207.958 506.985]
+/A << /S /GoTo /D (env.hat) >>
+>>
+endobj
+1994 0 obj
+<<
+/D [1992 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+322 0 obj
+<<
+/D [1992 0 R /XYZ 153.694 470.165 null]
+>>
+endobj
+326 0 obj
+<<
+/D [1992 0 R /XYZ 153.694 444.304 null]
+>>
+endobj
+1995 0 obj
+<<
+/D [1992 0 R /XYZ 153.694 432.349 null]
+>>
+endobj
+1991 0 obj
+<<
+/Font << /F113 1728 0 R /F123 1756 0 R /F19 1711 0 R /F115 1736 0 R /F20 1903 0 R /F69 1716 0 R /F89 1710 0 R /F114 1729 0 R /F28 1704 0 R /F13 1996 0 R /F14 1963 0 R /F23 1741 0 R /F16 1712 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2005 0 obj
+<<
+/Length 3407
+/Filter /FlateDecode
+>>
+stream
+xÚÕ[Ýoã¸Ï_¡§žÄ,¿?èC÷ºW @Ú Ð+öîA±eG8ÛÊIò¥Aÿ½3$%[ZÇ–­ @±Ø•D“ÃÎ3äÒd•Ðä¯7´{¢“
+?Ãë?ßký|ólj#NsÜ/fÑN&Zh"er¿H¾¦?3!WMöðúùo¯?1!{»ýåþoïÎ8Òü4§ŒPÉà7Oõ©ºU,-ñŸÅnŽ¼FªÈ‘J#N)Žã4#‚±„%æÂØÏ¡£2 £ÄQÇ°Ÿ%R«„ ;××HN$š8#,vš1èÆ9<)ašG)å^ /÷7¿Ý0/ K$7„RX
+iˆå*™on¾þB“üø7U8›<û®›DP­†×uòãÍ?48$,«´§hÐD—ö[Bf/§”+WRŸÌñŽVž™# G˜²“—Š0¡'‘PŒ }N"ZùõS’0:ný:ãaàGnšñE¸áSŒg
+…hH´†0DkSHDC˜@¢U* FLS*·Ä:=E©S(D¥^JâhPÑI]Gë”S´†ðÓJN˜4£¦mçC¦µ„q9nÚhpôÔÐÎL48NÔ¤ 2@knWSè,çj
+\O¡ÕçÕ:ur"øÚ †èÀÀ©vJÀBðëLòþÖ*
+Y¤×!Ú÷˜ä`âÜôi”U`ñ¡Ê`Mú+²™7Wñè
+a[Aªˆ¦|oŽe¡"5Kf†(ªrPˆŒNœIG
+€&PˆX`…ˆ¦PX`…V@AMÕ& °r’:'Phõy=‰N¡×“è4:D«ÒëIt:¥°ªršR¹ZfŠR/¥p¢bÔÒQ1šÂxkÁyÌÇpÞÏÎ[ãùÿÓZ7«¡¾Æ‰í\FeERåÉòcd=QQÃië\Àœ¥všs1C´`SÔ4…Bt” $ZG™@¢5ú)$¢!L Ñ*HÈ‹RâcJe}MQê
+­R/$q¢¢ÖÒQQ›ÂygÀy¬Žá¼3žë9ïŒÐúEʳŽ+ tkΈr°
+)·ç^ —Šðð_6•Çó"ªYŠ´`1/úü‚Èž§‹|™íÖÍ]ø‚¬e5»P„éË!ÙªÊ6uhÈÖϘ¿ùTð%¶A†Vc?ŸáÁw¹ ´²&<×yVÇWz,1kÌc÷*$‰uèÙÒ¦ óó´XÆ*@¥øs2™@Ö¢µìådÖòPZLÉ6ÅÓËúT®ŽIô0”Æ€ÅÜî¢Â3À.äT=
+G ½y$, 7ê|a áb0Y1VXÎ(‘| lW™°¾2!Ü>¿ÆA‹[Ô› <øýxvº¬œ¯ÎA¿æ1Û†7‰i1%”8(º4$²í*oGÄPc±‰ÓŒ*H­ù"ËÎFölÚòlÖ¶õhA³4`–è’§¾XvŒßo•·Øå¡Ë+i‚«ƒPpÀéXƒ=B{DpY Ç …?`З@@)ë<JÖ d/O`]Z¿>ô
+sD¢?±q3õ- 12"ýy¶ÃZëL0Ñ cL¦‹} ƒ/_]ƒN>Šýî  ¡¥Ü®_BŸ,öÝdÞÞcëA¨‚ÞYK¾ÊÛ¡„u@>›ÏËͦô^°ÀB÷8ce®Û›™°Ñu|…E±òÅ1Pj†š|
+–œa€=|ž—UQ)x>3}Þ«¢v6‡w
+X`ã×ï’a}kÑ|W‡´Î–!&‹xbOñx÷Ô:ŽØÎ×»E>¼×Ã,á³óM„- ü;þSqÒ̃ G«]Ñ¡ÔTeý¡œ¦Ê!¢ø}ÉŠ@ÞÊ´Ä=£)Êm¶ ”-jPÀMÕþŠ'(@âîÃá‚B„ÛÃ…mþŒ{(¬ý«G/Ñ‹Þ^’’ñŸÞ.fÞf!7Ü_#üf–ev‹³ˆ‰³è³Ìñpûíõrâû¦kƾ~íŒõcõtÍØ·×O=í}ê¯òÛåPp`÷B(ˆôEÌö¼–Õ¯èXš0§úF¨4oЀ`ßJèôó"t-7EÓ¥iÜBáÅ»ix œ/1G½éGŒà}v{«36ô üýP±ð½È}Æì=~Ü©1w
+LBAªcº¯ ÄÞaKD¯8>”vÇœÆÅj:ïÓ(¼-‡ܲÔØ5ׄmX]Äa\)œÿ­êÈ(®GC¤:Xðí²„²1`ìl¾ }¹Ô½1#Š¨z»ó#çNÀXÛ{¤,a]Â$ø…æÇÊ/rF-›[@‘\¥¾,Ý5å&kŠ9VJ5,dZeÛïi±´¬ßÛ߇ÎÃÀ)%†G˜ýoîw\:÷EYˆ© r–ú¢´6qBWþª# AÇ o>C€gæoŒéXS5iKº°ÿ×á‡X]ñ¶Ôôr©¿€¦±ŠŒ™Ôû(AÀ÷„<g+ë6ZömO˜‰¢‚ÀLý};wf¾€× y{« Ý-,3®ðH‡‹¦Ã¬%Æ´){¶^Îê&òÕ,„­xbÞ³Å"„
+•ƒ/ëb›xF‡O'õ>”t²Ì{N)Z¢„l×ë¨fCÍ&ö8¦Fí ±C1YjœOµäÞ>¤²Í †0kècÏ9–›¹VíÁJƒ ÆŸÆå`ü/^™°Qx?úî*ˆlA€Ü½ùQqùªØz÷ F£êÓñ&æõÕd´ãQnÙXPÁï.VDÉÊÐOmâà6YŒG‹wn‡R7\[ ÛœÝõPÏFh[ܸ‹7È—½»éqM»«æU¸ÑêâÑP¸©.ž_
+endstream
+endobj
+2004 0 obj
+<<
+/Type /Page
+/Contents 2005 0 R
+/Resources 2003 0 R
+/MediaBox [0 0 612 792]
+/Parent 1939 0 R
+/Annots [ 1997 0 R 1998 0 R 1999 0 R 2000 0 R 2001 0 R ]
+>>
+endobj
+1997 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [285.242 316.458 313.387 327.583]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+1998 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [321.855 316.458 349.999 327.583]
+/A << /S /GoTo /D (macro.shrp) >>
+>>
+endobj
+1999 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [247.477 287.398 275.621 299.354]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+2000 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [393.148 263.765 421.293 274.89]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+2001 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [282.857 151.908 337.153 163.033]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2006 0 obj
+<<
+/D [2004 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+330 0 obj
+<<
+/D [2004 0 R /XYZ 153.694 497.578 null]
+>>
+endobj
+2007 0 obj
+<<
+/D [2004 0 R /XYZ 171.694 489.11 null]
+>>
+endobj
+2008 0 obj
+<<
+/D [2004 0 R /XYZ 153.694 406.124 null]
+>>
+endobj
+334 0 obj
+<<
+/D [2004 0 R /XYZ 153.694 237.992 null]
+>>
+endobj
+338 0 obj
+<<
+/D [2004 0 R /XYZ 153.694 209.895 null]
+>>
+endobj
+1775 0 obj
+<<
+/D [2004 0 R /XYZ 153.315 200.729 null]
+>>
+endobj
+2003 0 obj
+<<
+/Font << /F113 1728 0 R /F123 1756 0 R /F115 1736 0 R /F57 1860 0 R /F13 1996 0 R /F14 1963 0 R /F19 1711 0 R /F28 1704 0 R /F69 1716 0 R /F114 1729 0 R /F126 1758 0 R /F89 1710 0 R /F20 1903 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2024 0 obj
+<<
+/Length 2754
+/Filter /FlateDecode
+>>
+stream
+xÚ­ÛnÛ8ö½_a ÀBj–WQ|l±íìû2›Ý}H;€"˶flÉ+ÉÍd‹üûžÃCÉ’£ÄŽ§/1I‘çÆsgøl=㳟ÞððûñæÍûÏÂÍs±Œg7«g.O|&fÂ
+;=‹eR™ÙÍnvÝlòù×›¿½Á-œÅ³z=ë†?ÿ„À„@('˜Vv ê‹Pº­Ó²ÙWM”Èzž&©cÇn h—fu5_(Σô W*ÏÚ&L·[dsé¢MU/»ûý|!“(Oë¢\‡µU›×4,Zú=”sØÔJ»™‹èþul˜‘ú)ÿy¹l* àîã²£Qt#Ú0™”mQæl¾ˆ‰þºš/´PQ;—6ºÇ?Õ´JÁ™²n„äâ«+ã˜%‰Áñ7Õ•t¯€Š5H9§…&Ýu#Ñ;*ƒ_‹p ?^¶X‡ÝÙa4NJN)¦d§7(¢Ã6m‹oxÍ ÆÓSH"¡CÿÙä@§‰=%׈W*fôf/Ú,…¿ÊWqÉŒ#@Õ¾-ª@^ÑÐošyþ@Ð ÁXê+éÖ\3nâ:T $ùBŠáú˜3#Átâmñ›§÷G÷ ·6‹¹cZ˜? ½Ü0mõÚ™QÑ?sP4å\ôE*kXB“U…j ^bWÕá{QÂâ.Å;ñºè
+Z(«–ŽŠè.mò%­¢“Å_ÒdMéºiiÒ«uؼ:ÙŒú
+ð0 ¡Á´4zR‡ýÕé~Ÿ*ÁH÷hÒ’ÔUògBŽ¿¡“1Ÿ^VqLÖ8XÍèÌ»ž”2`†ÔòEÔý¥AÔ‹]0Ë/£ÆëQ6Ÿé¥‚j˜`üNQÏ3N¡ð¦Pø4-ÑAb~¯Jø nDÞduqG90Ì–aSó2OÊIRŸ!}éL2ôÑ¢?
+üê=Pô…~»â‚IcÇ€>Á® ¨€Ôn|¨O |TX÷‡=Qr‡þ@㪠rÚ¤ÛÕ¢iQc÷@ªèVÚ—ÒÜŠIÛ ¾llÝuA`“ ÁÿcþeG±.ÓöPû j5‡ØÀÇvƒNGëCÞ„á³Yèòa0ó«ë:ÏÈÏá¼Î›Ã¶E…ÐÜEw‡°Œþ@ÈÁO‚ÿ(›-g–?[°†4]¢‚”tAè,¼Å\S¼'LZ;ûRÒõBùŽþŸ€ª®!JZÈ¡J}†¨ó)Ü€*ŽbñV× P×L*±L›
+_ÛóÐZÒž
+ƒ ÍÈ‹@~3G£¬C‹%v—ƒÁwÐÿ¸úÚt G0
+^ò¾/h`sµýV`>¸¾Ì 5eN†`“÷Y$ÆmÑe&d6j›‹j3 ‰/—¡lýŠE‚•ƒî{þ€ðÏ]æå“åÚPøà=wb ò†€®|
+ÂúÇâx)肤øí'‡àB9e¸¯*=”ÞïôgïÁ \(E•0nåIø]ÔùÞ'ÍÞ=SïL[7_ãÄ—Å*8h“ÁòŽ½cغë:AÂ) <¯¹ÓdØ0L“Ÿ1ÊWz8(f°k ¥`q2èyÝåë¢üæiy-®
+©5‘ë[P›Ë£e¾J¡ÂÂÊ%1{¤OÃFÎ}_Äƽk\zR â"6ØÜúëÎÛAÍ’(9&™B^†ÑcÁ¸}QpÑ%œ ¥—>z`kØryì|Å
+jp߃ -lœŠ‡òÅ9½ÊÁ`_Ա͗„ØXG©z¥ÍCÒù§@8ÓT»p:K›ü™Ö4׃X¤Q±…®c"ÿqøö]Š³ð2q_4›q•$zEÁª |é^*ªm(cOôäQ.O¶N´5äÉ1D¹ÎC ¦ªƒA÷>ÞJž0‹F{|ÈlŠ¬ Ö5ö}’îÕÕ¯K
+ßMå.thaPVåbb‹Àš¢iëÃ.4Ý_ˆà¹ÍVuµ›îT8}†ph᪂MxøÅѾȳ0ô]tøÝùB ˜ÅÒ
+®Ë„Χ›7ÿ5©Í
+endstream
+endobj
+2023 0 obj
+<<
+/Type /Page
+/Contents 2024 0 R
+/Resources 2022 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+/Annots [ 2002 0 R 2009 0 R 2010 0 R 2011 0 R 2012 0 R 2013 0 R 2014 0 R 2015 0 R 2016 0 R 2017 0 R 2018 0 R 2019 0 R 2020 0 R 2021 0 R ]
+>>
+endobj
+2002 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [464.528 654.025 508.364 665.15]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+2009 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [222.547 618.16 297.765 629.285]
+/A << /S /GoTo /D (env.transposecapos) >>
+>>
+endobj
+2010 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [403.06 618.16 431.204 629.285]
+/A << /S /GoTo /D (macro.capo) >>
+>>
+endobj
+2011 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [237.591 606.205 252.569 617.33]
+/A << /S /GoTo /D (subsection.5.8) >>
+>>
+endobj
+2012 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [285.924 580.309 340.221 591.48]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2013 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [386.463 496.623 440.759 507.748]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2014 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [250.318 434.585 265.295 446.54]
+/A << /S /GoTo /D (subsection.5.3) >>
+>>
+endobj
+2015 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 418.478 229.701 429.603]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+2016 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [227.708 418.478 276.774 429.603]
+/A << /S /GoTo /D (macro.memorize) >>
+>>
+endobj
+2017 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 395.955 219.24 405.693]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+2018 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 382.613 224.471 393.738]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2019 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 370.658 229.701 381.783]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+2020 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 348.134 219.24 357.872]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+2021 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 229.491 206.471 240.616]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2025 0 obj
+<<
+/D [2023 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+342 0 obj
+<<
+/D [2023 0 R /XYZ 153.694 593.26 null]
+>>
+endobj
+2026 0 obj
+<<
+/D [2023 0 R /XYZ 153.694 595.474 null]
+>>
+endobj
+2027 0 obj
+<<
+/D [2023 0 R /XYZ 231.818 583.519 null]
+>>
+endobj
+346 0 obj
+<<
+/D [2023 0 R /XYZ 231.818 583.519 null]
+>>
+endobj
+2028 0 obj
+<<
+/D [2023 0 R /XYZ 231.818 583.519 null]
+>>
+endobj
+2030 0 obj
+<<
+/D [2023 0 R /XYZ 153.694 461.982 null]
+>>
+endobj
+350 0 obj
+<<
+/D [2023 0 R /XYZ 153.694 254.675 null]
+>>
+endobj
+2031 0 obj
+<<
+/D [2023 0 R /XYZ 153.694 256.612 null]
+>>
+endobj
+2032 0 obj
+<<
+/D [2023 0 R /XYZ 222.996 244.657 null]
+>>
+endobj
+2022 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F126 1758 0 R /F114 1729 0 R /F16 1712 0 R /F51 1703 0 R /F20 1903 0 R /F84 2029 0 R /F91 1904 0 R /F115 1736 0 R /F23 1741 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2048 0 obj
+<<
+/Length 3414
+/Filter /FlateDecode
+>>
+stream
+xÚåZKsÛ8¾çW¨j/T•ƒ!Þälí!É$®lÍLª2>ìÖÌh ¶¸‘H­HÅñ¨üß· P¤,É–’Ù=ìÁ&
+vš/q÷\2àÛ(Ïw`š§)“&2ý—
+ÈöhFqî¥=z™3Åõè%ç,×A’H£˜/gE3)æC*‡E؉ÒLdÄL…¢ÇSPÉM½Â†›‡‘
+N¨¡±ú††ºßhaÿÛo©NéðDºe™Æ÷þÊ?¾º J¿¼¿ :?|#߆‘ŸÞ‡‘wãŒ'Ý„?×%-ˆ,,Lrš^VMëŠéã}ͽ⒒IÏ ýzü´Íµå•$ï„ͧe!dÆ*rŸ¬ßLžoÂó‡ðô‘Yò.ô/ @
+Á¬‘Ã5P,,sOÏ©»)Öó‰*•>Ã)ªfé7Y7e[’™äɼ¾[®«ùýA Τ¥E×ÕÔ­š¶¨¦( ‘ï ¼ öõº¥Æ=št½¦Î¤¨¨ÑºùœZexϯ@î€j–ÔŸ¨Kê ÎÖº¥À¢ýq¥É5ú‰ÃIÉôüNZïa–è¾ÈÜRo¥h¬¡ìŸI¤˜ið^C‚ýÀ'(ÓBéÀ™*Ðä+4…2Éʵë
+LYŒ=<üØ ^ Ü È‚ŽÝ±G•j–Kùx“';*e$SÆîns¯ÊóîÐ,÷‡¦s0~Csþ9ÎDP¡,ªP¼<ª
+h|P’Š‚ Fc†fžwxô w(iÐ}´L‚ÒMQ™~K¥ª\§µ@xÈÖØ» ëÆ5¢ÃàIPù Z}ÉŸfr͌უÜq=ZieöêóŽÚj¦9D"뺋DÝB›#j‘P" ø@Êà˜·„!>j©àeOsŽZô×–,³Ý¸Ú«àgûtdÊ2‘Ç·Êcì<kÃEÎÞìbøiÛ{½o{Qáÿ”íµymûÇh¦ÛÎ÷ã—ÜXzxœà9ÀbAÎùÊöDž'ÛËý²µ™üÈöyÀM|Ô†3 .Î[øø®
+²ÃAÊòlþh•3R÷Ô>Àq ½¢ç¢^¹}²ë)$€ŸBëår h/üŸà¿‚ðOÜq¾àW´±¹¹k[@˜š•Æ<Awº/Åb9w1Φ€a=Lˆ[C^7å¤ÜKCˆÃø3Ê(ˆ…;{»z|ʈœÙpRÌGöÎÌùî¡@nc² ñ$w™ÜÎ.sH6³~yÿÔZÀ¦BìÏ"<-cz( h•O£«)u¼‘!©¼‰/þó§ä”ö
+~*Öm½(
+¾R§
+ž"&ˆœ_H¤ÕÒl¸PuÛ<Qºx¡Òö–³>Þ%ð\¢ž4^7ÄcÝàèúpÚgT
+`6éÇ{!.–¨P+´Â¬X…ƒÎ±X:ŸR³ [ºÏH'ªÖ)C¹DùrIÐ^cK2õ¯U2PŠ@Wƒ³ªgè<ó<èÅ¢˜¬ê~‰WÅúQˆN½]oˆŒAÖ6 xÔ«by&D¨48 ÎzÕþ: øÇÁBû½ê
+ºk!™PMÖn¥Õ¯lat>
+:å)K³PAî%·Ú&"N¯Ãšª—Ôò
+OÒP,¶¤¢Ð&秅ñ`ª­
+<KðrÏSGÝ®”Üлóò“q‘²ùöpSqåïöùÀ `Ë×›7€86€7ß=l.Næ
+¬  ™©îfÀ„q6÷¤AÅtH8+§¹
+Åxšæéi¯Ô1ˆÝB40µ
+",§ŽdˆP™†ÐýÓ# J}–TñäP;¥âþþâò‘p•fàíô¡T§s튫„ðƒ7VfÜ—‰[¸À“oŹ«Ûµ¿×!14!/8gÇà´;<¼ã'mP$HYm@+$:¢+ã<Ë'Jƒ÷ßy—÷Ó¶+º¿òp)Š÷V,·2Þ?YÆ-i SŒéË«'VÎ!zez¸òÕ¾9½¤R@–:ƒ°vûö‰ÜlÍzÆz‹ü#ÊÇÇiÈ5¶Ç^†ó»[ïÀ%E`NQþQ‡2§±E¤sAõ/8Húá_¡¢Æ“˜ ¹Õ¤h\¤*K»·ƒ!G—*c?G¹àMÞ©¤ië%¶d/[EÒ­GË8¯áÆ1ˆúÔEoŽ¨Ät(V£NÕd›öÙ!£ç]ÈIÔäCJg~
+˜î<hn„äb ÉEr@XpsuPòi,öN¢nwH\øEň}`Пr÷mÍð]ÃAF1 »ç& u8ô¤!{Îdò&¦íÐößß@2ùæY{¿àAg˜õàpfò…È…Ûm±‡ºƒ"`÷ ‚Ý~ƒ
+dMâм/Ëy9)[ac<0÷5õ§x`âdžØØ÷±!ŒÇ@oðŠ‘ž½XƒÝˆ—pU#x+þp†nÚ­ïŸdYÏ%ƒÍl/(¢ZQ±pÄe,ɤˆ/ô/H`<^7ûébYš«8¾Z¹IëºßÂgË0Ÿb|ø4úSç¡Xñ·/6q«™°âéðùHãþ¯ê·¹ÌåÚ2Ù}"€¨lÊcÊç+ØùaH'19å˜;4¨68tW¶³2¼ ˜Ù­JÌ”ŒKþÂvó0Å_ Þ•¨bn¸È9ŸµkˆXf¸±,áÖN„˼“ŒŸ cœ7…<~¦ëÛñ"šçEoax-;\ötîeŠu"=$ã½ : È™:ü¬ö._ÁÉÞ­ÊöøEÇ™f-,SýOö‹Ó
+endstream
+endobj
+2047 0 obj
+<<
+/Type /Page
+/Contents 2048 0 R
+/Resources 2046 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+/Annots [ 2034 0 R 2035 0 R 2036 0 R 2037 0 R 2038 0 R 2039 0 R 2040 0 R 2041 0 R 2042 0 R 2043 0 R 2044 0 R ]
+>>
+endobj
+2034 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 368.928 206.471 380.883]
+/A << /S /GoTo /D (macro.notenames) >>
+>>
+endobj
+2035 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [377.901 345.294 437.428 356.419]
+/A << /S /GoTo /D (macro.alphascale) >>
+>>
+endobj
+2036 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [442.936 345.294 492.001 356.419]
+/A << /S /GoTo /D (macro.solfedge) >>
+>>
+endobj
+2037 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 333.616 206.471 344.464]
+/A << /S /GoTo /D (macro.notenames) >>
+>>
+endobj
+2038 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [290.473 267.703 318.617 278.828]
+/A << /S /GoTo /D (macro.shrp) >>
+>>
+endobj
+2039 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [353.237 267.703 381.382 278.828]
+/A << /S /GoTo /D (macro.shrp) >>
+>>
+endobj
+2040 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 255.748 224.471 266.873]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2041 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [194.304 225.86 248.6 236.985]
+/A << /S /GoTo /D (macro.transpose) >>
+>>
+endobj
+2042 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [368.928 172.062 397.073 183.187]
+/A << /S /GoTo /D (macro.shrp) >>
+>>
+endobj
+2043 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [431.693 172.062 459.837 183.187]
+/A << /S /GoTo /D (macro.shrp) >>
+>>
+endobj
+2044 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 124.241 245.392 135.366]
+/A << /S /GoTo /D (macro.transposehere) >>
+>>
+endobj
+2049 0 obj
+<<
+/D [2047 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+354 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2050 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 669.191 null]
+>>
+endobj
+2051 0 obj
+<<
+/D [2047 0 R /XYZ 280.458 657.235 null]
+>>
+endobj
+358 0 obj
+<<
+/D [2047 0 R /XYZ 280.458 657.235 null]
+>>
+endobj
+2052 0 obj
+<<
+/D [2047 0 R /XYZ 280.458 657.235 null]
+>>
+endobj
+362 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 607.201 null]
+>>
+endobj
+2053 0 obj
+<<
+/D [2047 0 R /XYZ 171.694 597.46 null]
+>>
+endobj
+366 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 512.943 null]
+>>
+endobj
+2054 0 obj
+<<
+/D [2047 0 R /XYZ 171.694 501.818 null]
+>>
+endobj
+370 0 obj
+<<
+/D [2047 0 R /XYZ 171.694 501.818 null]
+>>
+endobj
+2055 0 obj
+<<
+/D [2047 0 R /XYZ 171.694 501.818 null]
+>>
+endobj
+374 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 320.671 null]
+>>
+endobj
+2056 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 322.608 null]
+>>
+endobj
+2057 0 obj
+<<
+/D [2047 0 R /XYZ 321.869 310.653 null]
+>>
+endobj
+378 0 obj
+<<
+/D [2047 0 R /XYZ 153.694 167.08 null]
+>>
+endobj
+2058 0 obj
+<<
+/D [2047 0 R /XYZ 171.694 157.339 null]
+>>
+endobj
+2046 0 obj
+<<
+/Font << /F126 1758 0 R /F19 1711 0 R /F114 1729 0 R /F20 1903 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F57 1860 0 R /F16 1712 0 R /F51 1703 0 R /F94 1713 0 R /F91 1904 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2072 0 obj
+<<
+/Length 2400
+/Filter /FlateDecode
+>>
+stream
+xÚÅYKsã6¾Ï¯PÕ\¨) !^±9e*WR›=ìúªL´KŒ%RÅG¼.—ÿûv£Aš¤mYf’Úƒ- €F?¾þŒÛE¼¸ü‡ßÏW¾ùÂíÂ2›ˆdqu³ˆ™Ma(^ð×’I©‰6LÀïÕañkt·iT¶ûÍr%y5øx\®àÇÕ®Á^ea°ÊŠÇlTÖK¹Íò·«Ÿ¾ù"â—7F0­ÕxÃKšóš"Œ›‰7å~_¢d ­Åm½T×øp?ÐFEY¬z)á\õ["ªØ2nå»DT<e)ŸÌY£x»²Ú€^Ør¥”‰®vyMŠÛ”^i.<eóòV L•XÐœÒL¤´CÝ•«q ip ZÙ!´ÖeRüÿ\Uçðèû¿Æ:®Ã=?àú1KÕvÑ5ÿ}‰Nz’…9$¨'5|$ÇW.îŽûÖaMò¾’ šu| ‹£ª´ˆ®–©ŠJ’v|Îk2d³£Ç‘qóø\“œÅÏ)Á÷E°UV IÞ+‘÷J%š Ä ø½­jµu˜u]ekoTh£’Û²‹9jN,Óq2–òáòñ”v‡”iÊt¢ÇÓó¢n\ZÞÌJI͸žH¬f8_@eXa²·>&<ß¾7]l˜–f]-m
+ÆMPß¡ô­)È’¨á­fI2‘Õ½m²k¯ð7‚-•ÍiXQAÐù•Æ°ˆn€Þéˆ7y¶­²CMOjЃ&ìÎÁ,È\96ºÛ¹‚^îãkÃÍá©O¹þå¼>¶ýaRÉ4ji²[ox‘ê踇 „Å/píŒÊ÷ ÚkL›ý#4Õ¼¸\1™L$ê õ–º5”dÂêñ‡l]•5 ™UŽDÜä5œÐ§å.ùá8ZÇã˜?é8塾}E«S`Ô†vt>²sd¯¡'X’å!o·ymM mCúËŠmx³¡Ü‡K!Q¸ÉÚ}ü¤r÷5é_“™”P @;–ÿ]ÑÒƒ“~>YÉ›ââíÜ‚|JkË’8ØðnGÑ¥<—2_QGVmÛ t7u×Õ½¼{Ǭ¦œ•dRfL:÷·b¥U ØÒh Føûe™RV$ ûov8îCTJ­Pb?0ôfØò¥T­•a‰–´xYåÛ¼Èö8›#^Á’Ö©ë.oveÛ„ñ
+†‡&üØÎ¨åˆ a]ׂT:
+ò•‡­òæ”ǿϪ¼þšf’äɪ•+Üݺ<
+E&r¼îG~¦T¸Ÿ´“ÙyA2‘) ‘QÔ—ÁT0ä™}@x€—
+Êf¾X¯«rŸ®`h“WnÝìÁî©#÷ïú\/‡PúV©göóúîlN¶·œ ­Çg¨»ÃŸ*ÙuÏ°bf@§£ÇyUj7þ¶#‰¾/‘‘¿¬Øia"­aB%PtÊ»|ßë­®ÚcŽºS(ê®Õu›ï /h¬Å­õ—>V¥ÇáM»Î1›o©»FÝ–¡n¤•ËnëΖzÊ¢âö¼ºD¦šuÕ.\£>¤íóÖ$uvã|Umï8šà+HXöÔAW®yºèB§Å²‘©8¡ûªuºÆ ýRÉ3Ð6vl§š^Ù¸z]åa¯Íy·'Òx÷ð¨’8P|¥mTƒ—U
+u6F(gVkñR5/Ô¤ÊÐR)ã!V,0JA!xTâIßU„*4â<2.…a±NûMølEX %i¹oÅê.ßøäCƒ¨µ=Åëx8±=?B~ȾÏ' 蚣*†p3–ùÍÞ«HÀy•Ž R!˜ °¯|Æ©w÷ßLð8†$kÇûäEg®ó€÷
+šÿá­]
+‡2‘‹`ÁAÔýõ¼‡üZÎ_å=Ÿæõæ=ŸÎ!>¯Ù!L¸Ò†¬°q1¾»úáêÃÿ
+endstream
+endobj
+2071 0 obj
+<<
+/Type /Page
+/Contents 2072 0 R
+/Resources 2070 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+/Annots [ 2045 0 R 2059 0 R 2060 0 R 2061 0 R 2062 0 R 2063 0 R 2064 0 R 2065 0 R 2066 0 R 2067 0 R 2068 0 R ]
+>>
+endobj
+2045 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [308.875 641.793 363.171 653.748]
+/A << /S /GoTo /D (macro.notenames) >>
+>>
+endobj
+2059 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [305.643 591.987 312.532 603.942]
+/A << /S /GoTo /D (section.6) >>
+>>
+endobj
+2060 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [313.367 580.032 341.512 591.987]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+2061 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [367.782 556.398 395.927 567.523]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+2062 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [321.855 514.555 349.999 525.68]
+/A << /S /GoTo /D (macro.gtab) >>
+>>
+endobj
+2063 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [353.237 514.555 397.073 525.68]
+/A << /S /GoTo /D (macro.notrans) >>
+>>
+endobj
+2064 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [445.699 496.899 489.534 507.748]
+/A << /S /GoTo /D (macro.notrans) >>
+>>
+endobj
+2065 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [321.855 466.735 397.073 477.86]
+/A << /S /GoTo /D (macro.transposehere) >>
+>>
+endobj
+2066 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [390.259 405.991 418.403 417.06]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2067 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [400.02 323.848 428.165 334.917]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2068 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [275.21 235.457 294.56 247.412]
+/A << /S /GoTo /D (subsection.11.5) >>
+>>
+endobj
+2073 0 obj
+<<
+/D [2071 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+382 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 616.894 null]
+>>
+endobj
+2074 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 619.384 null]
+>>
+endobj
+2075 0 obj
+<<
+/D [2071 0 R /XYZ 323.491 607.429 null]
+>>
+endobj
+386 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 446.74 null]
+>>
+endobj
+390 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 359.395 null]
+>>
+endobj
+394 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 336.688 null]
+>>
+endobj
+2076 0 obj
+<<
+/D [2071 0 R /XYZ 153.335 327.058 null]
+>>
+endobj
+398 0 obj
+<<
+/D [2071 0 R /XYZ 153.694 212.819 null]
+>>
+endobj
+2077 0 obj
+<<
+/D [2071 0 R /XYZ 171.694 203.078 null]
+>>
+endobj
+2070 0 obj
+<<
+/Font << /F19 1711 0 R /F20 1903 0 R /F113 1728 0 R /F126 1758 0 R /F114 1729 0 R /F89 1710 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2086 0 obj
+<<
+/Length 2325
+/Filter /FlateDecode
+>>
+stream
+xÚÅYÝãÆ ß¿Br±žh¾¤Qúܹ´‡¾¤·@äò µÇk!²ä“äóAÿ÷’ÃYòz½^§Ev5ŸÉ!¤“è)J¢Ÿîÿ}ÿp÷ÝžG9ËS‘F«(a¹©$â×’I©£TgLÀ÷aý?¬Ën6—RÅ]_´½k˸ ¡Ú-ž,µÊ}ûõŒÇ~l±k[[Ï„‰{Ú~\^T­-–ê¬ Ô¢©v›ÌgsïKh- ›Û½mË¢òÇÕþÛ³ÙoŸ_îx»Œ³4WQª4†.÷þ@ü,íªØUý½¿\UQ£$žmÛMýä—ݶ*pæ¤ÑZj4›²ïí’:ûµủøÉÖ¶-ú2P(‚ÚÞ_DƳ¹Èâþ›¸ùïr—°ÔñÞ‚î|óŸ?¡þ¸Š Ü1UxGî—$L¦ùä~0ýÔ6»-ÑóFp…Hø
+oûDOûÇò㛞9"7ð“)f$ŸÒúÌ¥*ëEµ[Ú¦®È_w%o"•,SÙ”›Í•Hã_fFÇÍ„§³xQÔÔX5íÂR³_Ûo¡ˆµqò6±Ÿö,-©‡Š³_QÁ¶¥‘‚>Na‹]U´gl³DŒÄèLMp&³£*@ÓFÄî=áw8{3PÿÚ»® ‹‹$/2üÙñ¯ZÂè
+R&Ìdù„>á,þZ¶M½±ð"\·ÿþ‡oµÎà/J°`4î`1ö©¬ÿ®ðïË2™Ú2šó„  ·t›aý\‚iéWÆ®¼À<ÃY®ý~äÛÖË븾îe¢IiðÍ<MI6? ´ÒÛ^gÆ4¼¦ ½·º !2¦R>%BŽþ+úlg(Áï‹œƒïvn;I°š)êaÆVï68âŸiKÍꆫªìšë)—enßäuWUʰĘ)‘û[¸Ef2}›¿\ÉŽNR–¨3ܜ٢NMç´©ÉJ•ÄÝõUnû‹e0òe×ô³šÚ¹<þœè¤³~ò³™aÆø=<îzZçÔ¶ëzvJÆðí7ÚoÅ¢¯ÔijK{ðêèʵŠÿEQfÉ Þ`ÚpOt#…Ðéí'f®è>›tXÁl¤Þìû’ @Ó;rS †(ƒÒ'DÈÚ@‹VÏNZTMg=
+H½yâUOqèüþ
+
+N8ÖΓyÝ
+;5×Û1fG2($ ì%ÅdOçSgõ<>Ø@ÄÖrº T/^P}ØË“4›n+¯Åv
+ éç ½MŽRBôÖfJÆW(ß͉8’ã€{DÖÓäk¥‰Ô»ÎKÚ˯}ñ³²«þü;âé©Z3xP™ ЮCÅ:$·_—•¥æ{⯣1|•
+ñóˆ`òÁÜ_ÄYCµO;K69“©yBLv‚Ÿý·Cu¶
+endstream
+endobj
+2085 0 obj
+<<
+/Type /Page
+/Contents 2086 0 R
+/Resources 2084 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+/Annots [ 2069 0 R 2078 0 R 2079 0 R 2080 0 R 2081 0 R 2082 0 R 2083 0 R ]
+>>
+endobj
+2069 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [173.835 630.115 264.743 641.24]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+2078 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [400.018 553.956 449.084 565.025]
+/A << /S /GoTo /D (env.intersong) >>
+>>
+endobj
+2079 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [452.74 553.956 507.036 565.025]
+/A << /S /GoTo /D (env.intersong*) >>
+>>
+endobj
+2080 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [278.57 541.724 293.089 553.679]
+/A << /S /GoTo /D (subsection.8.2) >>
+>>
+endobj
+2081 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 530.046 243.083 541.171]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+2082 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [198.964 370.914 253.26 382.869]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2083 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [316.807 370.914 323.88 382.869]
+/A << /S /GoTo /D (section.5) >>
+>>
+endobj
+2087 0 obj
+<<
+/D [2085 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+402 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 655.298 null]
+>>
+endobj
+2088 0 obj
+<<
+/D [2085 0 R /XYZ 171.694 645.28 null]
+>>
+endobj
+406 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 505.423 null]
+>>
+endobj
+410 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 484.654 null]
+>>
+endobj
+2089 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 486.978 null]
+>>
+endobj
+2090 0 obj
+<<
+/D [2085 0 R /XYZ 321.045 475.023 null]
+>>
+endobj
+414 0 obj
+<<
+/D [2085 0 R /XYZ 321.045 475.023 null]
+>>
+endobj
+2091 0 obj
+<<
+/D [2085 0 R /XYZ 321.045 475.023 null]
+>>
+endobj
+418 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 209.844 null]
+>>
+endobj
+2092 0 obj
+<<
+/D [2085 0 R /XYZ 153.694 209.844 null]
+>>
+endobj
+2093 0 obj
+<<
+/D [2085 0 R /XYZ 203.993 197.888 null]
+>>
+endobj
+422 0 obj
+<<
+/D [2085 0 R /XYZ 203.993 197.888 null]
+>>
+endobj
+2094 0 obj
+<<
+/D [2085 0 R /XYZ 203.993 197.888 null]
+>>
+endobj
+2084 0 obj
+<<
+/Font << /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R /F89 1710 0 R /F126 1758 0 R /F28 1704 0 R /F123 1756 0 R /F121 1740 0 R /F77 1708 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2097 0 obj
+<<
+/Length 1424
+/Filter /FlateDecode
+>>
+stream
+xÚÅWßoÛ6~Ï_¡G¨Yñ‡(ª{Z€eX[›—¡íƒbÓ±YrE¹n6ôß’-ÇNã í:QäÝñîûÈÏIt%ÑïÉð„?¦£_É|{jôòúâåç2ÊY®…Ž®Ï8ƒÿH넉,®çÑûø—êÆÞ–µ›µåºÛ´öß?]Q­&ÓT¤1Å¿N>^¿>+4XSÎYž¦»¿Îšª©q½÷/+ëœSôÒѳ[Z2VÅ£.ŽÄ½|bÜí²¡óƆ¨uÓ‘±-ª»P}ЬÙÔÎVôÒ,¾nËÙì弌ŸZ©¦¥ ®+êù‰ô¶Åý85WÖµmÝ*âRÙHÈÙ¢g´j F­cg¦dëù
+ŸÍ¢³5™·m³¡É>?©žÀ[×Л›ð˜’
+K[z~HD⺶Y/­›¿€á<m1ÃÕË>Q•iŸ9R5˜o=E¹ÚkI_fž¤,Éôxwx„pýOá¹v©Ü)An¶ËrÈO*ª<]mÑù
+Àë¢mVdy ¡QÛ/Y7ab¬§Lã",_UEægüjÛ.t?®‹™e“©JMü÷Ĉ¸ÙЇYQ£Û>
+Ïu[ÜÛ¶—«p™ÞØEÓû¾Ùüòƒnu¨H= IØ"]3ÎtÖÞŸ{•±ós*|ÕK•>o×lª±è\lªC]gãMeŸ²=}~™קT•‹ÐÜy[l{Qº«|¯©nÛâ³ýßõ“”“<;K?IÇ}¢¾“~’\3!BåßôÂh ÷xéy„6ñ­žGh÷<z >ˆaJpá{áHs$XOðƒ¾3&$wÕ+™Ñ|‚à¾Þ#îËA1ÃYJkä„"(l1  Íz·ƒ^BíÐt ‘Œd†‡hæBÂcîýTžî¶ÐØZñt’
+(•1P½KDð;)áò,‘ó°I€Oá\qkŠ%b·Ù‰‡<öŠHa%–úÛÛ®Ê/4ÌpÁ›ï•#q6}†82
+Š{…ã^A‘?ÔPXg?}iÃ]Ù„¹•%éT“Y(½º¿ ·e·ôIK‰bO¡žNQ?úiÓ ÞIfÈBü´qÏ]xJb{öy¬Éè®<e&ËGž<
+1Õ9({;Ô ÕpGyïö ž½,&ê.ž –¥éÁ&΃˜ á
+endstream
+endobj
+2096 0 obj
+<<
+/Type /Page
+/Contents 2097 0 R
+/Resources 2095 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+>>
+endobj
+2098 0 obj
+<<
+/D [2096 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+426 0 obj
+<<
+/D [2096 0 R /XYZ 153.694 478.952 null]
+>>
+endobj
+2099 0 obj
+<<
+/D [2096 0 R /XYZ 153.694 478.952 null]
+>>
+endobj
+2100 0 obj
+<<
+/D [2096 0 R /XYZ 204.774 466.997 null]
+>>
+endobj
+430 0 obj
+<<
+/D [2096 0 R /XYZ 153.694 240.575 null]
+>>
+endobj
+2101 0 obj
+<<
+/D [2096 0 R /XYZ 153.694 240.575 null]
+>>
+endobj
+2102 0 obj
+<<
+/D [2096 0 R /XYZ 247.97 228.62 null]
+>>
+endobj
+434 0 obj
+<<
+/D [2096 0 R /XYZ 247.97 228.62 null]
+>>
+endobj
+2103 0 obj
+<<
+/D [2096 0 R /XYZ 247.97 228.62 null]
+>>
+endobj
+2095 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F121 1740 0 R /F77 1708 0 R /F126 1758 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2106 0 obj
+<<
+/Length 2184
+/Filter /FlateDecode
+>>
+stream
+xÚíZÝÛ6ß¿Bo‘,ÃoIyKé5Ž\ã‡Ý•ez-¬,ù$9Î"ÈÿÞ’ÒJ¶Wöº) ‡`W”Hçó73ÜÐà> Á¿ohÿ„D5¾ºá/Ï}ýa~óæGÆDDsÌW‹Ÿ@kJx”óeð[xÇ„\˜û¼l²:߶»Ú|ùÉ,j³of·Š«Ñ·,ºeñ×ÙïóŸŸ9 ž\³à–1’(åèÎצtÖÆ=Óå²y;EåödÏr–—KS¶ÛŸcí˜Þ»¬**ÏÜLqdÅÈk·´yIÊ¥é¾0M÷5k›I%sòƒãdŠKúƒ;aŸ…Õfc6 ã9++÷ÜTµ!Óò¼zõMThMRíÚ369†vÛßuÊÛ¯Mí]£]›Æ×é'?Z˜ÎƒVU}Ÿ2åë~u·1oÆ
+—»Ì8{?¿ùß ó{¸”DS(žð ÛÜüö; –0‰Â'‰övéÆ"@ † A|¼ù¯ ÎÌ€®5®H¤=HÌá|Úˆævàžér&iè£:`š$T‚ràL{åp.ºÍG¸ËÅ‘Ý®€ƒ>ŽìWGKæAÏÉ·ÆEŽž"ßÐðé"%9–Ú­8 eQRî=ƒèT’ÊÎqÊy#Žœ7â4zã (…Î%­‹){EFòfÌ:¨ÝÜqœ–öôG¯pLGûŽRžy"Ö?½ê¬¾ù1Š‚l¦%Ú,$ŠÙ˜
+äw”+?ïCR ¢àùRŠ“€I"$:´÷bÉ%¡1w % ƒû×:ݶ¦®¤–ΤVáG“µyU6N¼Ãø`‡")·Ðbä£Uª
+àq|`‘P"¨~‚)Ð[¯U ú†÷GGáœaaÀD$â¡|WÆÈq"Pt$÷î„' yààpq$Æ<ÌO¹O·ÃBÀ:Ç„uj|î€AôöÑ)¿:‘†Ü“×Tƒut5ÔbI4¦‹Öx¡%„â~E°eÇüœò¯)~¼‰#†¬¾L›Ðƒ€WøX¸t3CG©=Ýc¦rÃ-,Nm\>¤÷¦!§aâ%Dá³èP†æ(Ñk÷Š±êhéÓ´8×DGcZ¥œ‘ˆ±±i˜V*ð3¨:o¾£Œ9GD$†ç@xO Ê•‚ȉG›¶¨§Èêɉ8ÌÆ öø Õ‹`gŠíjWx˜ÜåE{›—#ÄË;ˆ£€-êj²–™óu‰€ Ht48_¦N#B kâOáñà jW ðÖ^Ÿ|ȇ
+P":âç´Õg­„h9ö†¬Úl€§ÆYÝ|ÎÌÖûC»Ní;Q€Bóè^2h[.HNP0îóƒOCÓaù„—Pÿ€ÂÉ(iHÉÁ±Ïn·)˜tmʧ´:LNP¯J¨Æ'šÏ-Vü¶æ¶Ï&-?2Е»á
+léÉ/õ]”Ï›4Þº[fã´Íwà€8eê7ííœ%³Ûàï…m LMf·1T§óµ¹ÂáÐz6WQ¬"““¹êÒ(€ZÔ1©¾æ‘aUÖµ°CÅ®¦v °šÃËÊ64Ùnc\ÿ⦳"mÓŒU„Ín»uíQÝ^!¸”`MàýHð— -㈨#2ÃJú|äð"v9/,9@èVG¤Uõp¡o³$&~´ß*+\_žtŇR@¯ÍµGF}{ü¡\šÏ¦y"`Ó»%@ƒ[áòØMnO ½®MÚ!ßùôÇ9Ȥ»æéd)<ÜA³¡vMÖÂ,ŠˆˆìÀ4Y
+ω!}ªx|ÎéZxN”’Hòñ®íSÓ
+endstream
+endobj
+2105 0 obj
+<<
+/Type /Page
+/Contents 2106 0 R
+/Resources 2104 0 R
+/MediaBox [0 0 612 792]
+/Parent 2033 0 R
+>>
+endobj
+2107 0 obj
+<<
+/D [2105 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+438 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 442.014 null]
+>>
+endobj
+442 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 411.426 null]
+>>
+endobj
+2108 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 402.261 null]
+>>
+endobj
+446 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 402.261 null]
+>>
+endobj
+2109 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 402.261 null]
+>>
+endobj
+450 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 278.71 null]
+>>
+endobj
+454 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 253.403 null]
+>>
+endobj
+458 0 obj
+<<
+/D [2105 0 R /XYZ 153.694 233.021 null]
+>>
+endobj
+2110 0 obj
+<<
+/D [2105 0 R /XYZ 153.335 221.066 null]
+>>
+endobj
+462 0 obj
+<<
+/D [2105 0 R /XYZ 153.335 221.066 null]
+>>
+endobj
+2111 0 obj
+<<
+/D [2105 0 R /XYZ 153.335 221.066 null]
+>>
+endobj
+466 0 obj
+<<
+/D [2105 0 R /XYZ 153.335 221.066 null]
+>>
+endobj
+2112 0 obj
+<<
+/D [2105 0 R /XYZ 153.335 221.066 null]
+>>
+endobj
+2104 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F121 1740 0 R /F77 1708 0 R /F89 1710 0 R /F114 1729 0 R /F94 1713 0 R /F16 1712 0 R /F51 1703 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2130 0 obj
+<<
+/Length 2907
+/Filter /FlateDecode
+>>
+stream
+xÚÅZ[oãº~ß_á·# +^DQ-úТ{¶-úP´Šbw´– G– IÞ$òß;ádQñEvvчDÅËÌp.ß .áâÓ‡Ð=ÿ|÷áw¿òd‘°D ½¸»_„,I4| |Á#ɤŒ:Š™€çÝfñ9¸[ç˯wÿÂ'\Ÿ`aF«ð~…X²X …5·m…<¶o3ÍcV‘Ñ´ÃûÍT2¡´ :«§øL$ÓÆø³Ûu½+³å­”*ø¶¼&Èé%­ði¹]§ø%ò®XQg‘åÕÆvÅ—Pª¼¡)Ý:í¨õX”%ôÖܵ¹Ûª«û…–<è׺¦ÎníÆU–?91Ž¹â,£ÃÓ‰Zh1IIW<¨a!$M…Á&]5uKÝŽLh5¸ù}ÞäÕ*§ž¢cË[Ç—¿1ã£áàéè–ƧeYæUºÉOè€Ô† èò>¥ãMãˆEZzs
+ŽF{ësf˜³ä
+ü™0=ÏÄDÂt¬~´´¾=Í”–-}ºÓ&'{È«¼I;´|Ívdض:Žt×Õ›õ<×&Lñ>šX—{«BÓoU  áû¶©­Xåm Ö£Müº4àfúž?¥›m™ÿÞqyHBó䶫œÁß"J8SF¸äRUù£¥óe“•m½¾ÙÓ}Qæ¯'w?ç {‘DÐ#•ÐŽ«&O­ÛQ*A·ƒ®èÊœš½Ä IÀ6¿„"<AÊ1–…1pæ.çºy1¥b ˆiëºu´giç*mW7=G‰çäö<^ÎÙ ZÍYO‡vì¡ó$#Þ‡†¼—\Ée²–pPr„¢os¥n&Ž¥¿ ÃÉžf.[öøéÎäniD€H(‘AV´Û2ÅhôL²Ñ+öYd]îÌr&¹Û8uƒ¶˜ ÒrvÈþ¡H\Ó‰D- °£ÕX$IÄLûD¢ÁHx|«ï±q@"ôü–C<Ço]¤·ÓçS†|*d€óŒäàv Ï1¯–
+93Üx䵫¦ØΡÞ.
+ÁBåüiYTý݃uü2 J+Kê#Œ‘й'½­?dYAÅTì¥ °dt1¬¹H'M{A!‚ÿ.MD
+
+0Ò¤ûõ\£ê7rj™XÉÂ2Çn4’)ˆ’àýÂÄ…C§ÂÃ=\þöÝ»Û×3 wyÃð6_!£ÄÚo46ÞÞrñŠÐ½ð¶„Dsi6…GðÇã„Nýe>ä‚À¤¹<‰¹Æâ£dQ<ŸSŠãpKÍ8 ;ŸÔ÷­×s×ÀÑ $‘ö·‡3œå¤Læ²Ï’lÊ^w¯(Á† Ÿö—EDð-(ªÞwΩ5€ó 'ë Áâ=…Ö{Ï¥BEž ׆6€Jqœ‘ù[Á/©Ÿê²~x~½|v„Õ XÇâÒ‘ÏÎ þÙ¤&[ˆ¨>Õ5î›zC­ÿ¬ûVŠ×øØ
+9wï‹UE-œˆÄöë\\è­}‹3
+ö£t¼£Ë#öm'âüÁ‹Mª©«G°ÎØâ+ 0†ý=×SYrÍDlÆÙA‡¿·q`/ Ðï‰%6ôc+¤ŒÕJÃý]Fø÷@2þ JÓ³á_BöóhBê{^ðz.yÓ£ªWI¥CÁÕ¦®¤Òæ]éû-=wÛ¦xXÛ#íû
+endstream
+endobj
+2129 0 obj
+<<
+/Type /Page
+/Contents 2130 0 R
+/Resources 2128 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2113 0 R 2114 0 R 2115 0 R 2116 0 R 2117 0 R 2118 0 R 2119 0 R 2120 0 R ]
+>>
+endobj
+2113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [357.528 510.286 406.594 522.242]
+/A << /S /GoTo /D (macro.newindex) >>
+>>
+endobj
+2114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [411.827 510.286 492.276 522.242]
+/A << /S /GoTo /D (macro.newauthorindex) >>
+>>
+endobj
+2115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 498.331 227.392 510.286]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [386.649 380.599 414.794 391.669]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [242 368.368 249.008 380.323]
+/A << /S /GoTo /D (section.5) >>
+>>
+endobj
+2118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [201.659 294.928 255.956 306.053]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 278.822 224.471 289.947]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [201.059 225.023 255.355 236.148]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2131 0 obj
+<<
+/D [2129 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+470 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 561.594 null]
+>>
+endobj
+2132 0 obj
+<<
+/D [2129 0 R /XYZ 171.694 549.639 null]
+>>
+endobj
+474 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 413.933 null]
+>>
+endobj
+478 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 344.022 null]
+>>
+endobj
+2133 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 345.959 null]
+>>
+endobj
+2134 0 obj
+<<
+/D [2129 0 R /XYZ 244.761 334.004 null]
+>>
+endobj
+482 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 188.445 null]
+>>
+endobj
+2135 0 obj
+<<
+/D [2129 0 R /XYZ 153.694 190.383 null]
+>>
+endobj
+2136 0 obj
+<<
+/D [2129 0 R /XYZ 303.016 178.427 null]
+>>
+endobj
+2128 0 obj
+<<
+/Font << /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R /F114 1729 0 R /F89 1710 0 R /F126 1758 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2152 0 obj
+<<
+/Length 3192
+/Filter /FlateDecode
+>>
+stream
+xÚµZÝ㶿¿ÂoÕ·¬øMèC\‚´ûpE’­­½ζ\I¾ÝEÿ½3Jµþµw†)JÎ g†¿2]|Z¤‹ߥáÿwïþúÏËŒ0‹»‡EÊ2¯Ò_p-™ÉÔÂhË„Ô‹»ÍâפÜÞÜ
+Ë“ö±¸ùýî_ïðÓ”™EýiÑ5ÿý#år@•w$|ñ˜äo\ªûâS¹mªí§@”Ø;Í fFé˜ÐºÜÄÐj‹|Ånn•äÉOåç‘%s–œ3º±VÅóß'r*•fZD~\R¼|¹Ñ6É×Íû9œ9ÎÆ
+(Û²]S9S"ehG$–yXà{øCù‡}S¬¨µAÎ÷ë¶Ü­½>Gä9KÅØ|@Âõ¶ÜÍÍ­t:i+ü7É®®r²Ú/ zSØ~
+ß“¯V ZµÍ×4Œ'°ôTlq@[C_Y4ìW(´éزœØ’’I¤þï ÌRížÌHØ€•©BW]ämAm¿úÔÄ™Ì\z¡ ãíì…ÚMŽ/_ÊÞ¦¯Z]ð—è(~öbÛÖ/¿FËœ2)±‰H4~ j³FÃww+ ó4$ä )¡e<9MÜÐ؈zdzҎY°®xXÌå$%Hæ¬ê¸ýýérò”)çËi-KS3¼~©Ëå91u
+“ký•Åüs$%ñˆB3P ŒB·ŠK–ö$bó˜@oq+$ÓÒ,n!Êe RLƓ״Îy¼`tfgÒ›MuúôX.ÑE!œ©¡ô5üï\é„r
+‘3\G8Í êG\\ŽØ1$7Ìa\ŒÅàÄhUÏqg™AˆÍb’¯õ|…K;0nÏšú@$%Kåk•œ÷g£`™žkçz¶;OÑ ætÌ­×ìWþ
+žðä Þ’fLq}Ô]¤w‘’Ü;»=ï…ºßâ.Ö1LElL
+!õ)ëj» ¼…Ëe Ž"Êñ;­>¶i!°•Ë€™B'ßW›]¹iÑÎt`gYhØ]
+©' ™fßLÊûy(d%ì¤2ÓþpÉ{z_š›VQáÄ ÀûˆÆ¥B/w-¹ˆUdgà@5b¹œ
+"a921 ׈”¬<iÓä¤z†_'¿L!l?I~<…ÈŒ›'¿Ô©Ñ`¸¼|}5oH TÄn¼.€=€¢ø¬ò4*:mFÒNDRö1]ÌDÓ™¤Ðîa—ÀþÄçà¨È¨¸¯Ù‰a2lÒy(Jà™‚3ǘ›†¢† .zrÑòÕz
+?Z>¬pé;PíßÎÕ½æc8­æIwP=ÈrcjïÃ)…·Öm÷0ïXE@®©bò=ĸÌÀu,àFë^‚iOŸŽt¹”¤"·Å"÷C8¢ÂjȘdòÅÕMOË×,»•ôç/åý©Û)eRXßÆrÕ8“‚iË&Ìر¶ïŽòî8‹þîó¦“'dy FU·¡ %;ºÝ+\l¬íë@ϯ<|¥<ÀŸ•/RŽ¤8ÓÃ( n:ê'ª˜ðxà¥
+:Æo:`{]ÉžaÿXòN¢Éøóò/¼”dâñ}U ù£ àöKéã‹/É»®z9›m@4Ìf<ž6ä,S/|Y<As1‰UÙ´uy¿GövšÑ¡0zð\:,E—Ãaß O”ãuÞ±Œì'ü¥®Ú¢iiEÛ×¾ÏaƒZ—ËðعÚuQ|&Ïÿ¹†/è„Ík÷9 |¬A€2!‘âCpò¿»Sÿ«2³LðªV¾éίË@áÃöv¢±¤†U'¡>­!¤ óœ*[<Ar©žm£àÆé†sxÙ®1TD¬Œ‰,} ð¬¡ÍâñPAýé´Ÿ°„_ÕŸû'tDøtí-D$?ø[i5½®ðD ›ŠXl‚^<‘}Dý¨f3=V-,µ]øêo¸é(ÚÂÄøô´£_Øb×ñDTÛs*
+WïÏsî$h/"~®(ÜcÂb¹‰Ç÷ëoðô‚â[^nê ¯”.-|ÕºbOá ÃÏÔÉ4dúL0þ6 ;ËŸ¾õP®‹?¯§“¾¾¾w4¹Ž5ï9ÃÆWåìT¿Ž1ŽœAkw™³)u ô<óPšwy­Gÿý¿žPÀSw2AXÄy°ÚÝ
+ȗ˪^…ÝÛ. Ðãp'…Þ[¿§Ñ;×߇ÛÏÅrß~ƒó)!¬?L;[™õMú‚بçþy¾92‡³swVw˜ûÐó–¹õ„¹!Kóÿ$@ßs;°tèyk--¬ Öì!ÿç­¿âd졈¸6c:¨h¦‰88œ
+endstream
+endobj
+2151 0 obj
+<<
+/Type /Page
+/Contents 2152 0 R
+/Resources 2150 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2121 0 R 2122 0 R 2123 0 R 2124 0 R 2125 0 R 2126 0 R 2127 0 R 2138 0 R 2139 0 R 2140 0 R 2141 0 R 2142 0 R 2143 0 R 2144 0 R 2145 0 R 2146 0 R 2147 0 R ]
+>>
+endobj
+2121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [179.694 654.025 233.991 665.15]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [310.512 654.025 343.887 665.15]
+/A << /S /GoTo /D (env.index=) >>
+>>
+endobj
+2123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [284.435 617.883 317.81 629.838]
+/A << /S /GoTo /D (env.index=) >>
+>>
+endobj
+2124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [277.806 605.928 316.411 617.883]
+/A << /S /GoTo /D (env.ititle=) >>
+>>
+endobj
+2125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [241.698 594.249 295.994 605.374]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [318.63 594.249 362.465 605.374]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+2127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [420.805 558.384 448.949 569.453]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [232.227 440.375 281.293 451.5]
+/A << /S /GoTo /D (macro.newindex) >>
+>>
+endobj
+2139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [285.355 440.375 365.803 451.5]
+/A << /S /GoTo /D (macro.newauthorindex) >>
+>>
+endobj
+2140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [381.944 440.375 457.161 451.5]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [457.86 392.278 506.926 404.233]
+/A << /S /GoTo /D (macro.newindex) >>
+>>
+endobj
+2142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 380.599 232.622 391.724]
+/A << /S /GoTo /D (macro.newauthorindex) >>
+>>
+endobj
+2143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [251.59 380.599 326.808 391.724]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 368.644 227.392 379.769]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 282.467 219.24 292.209]
+/A << /S /GoTo /D (macro.newindex) >>
+>>
+endobj
+2146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 270.512 250.622 280.254]
+/A << /S /GoTo /D (macro.newauthorindex) >>
+>>
+endobj
+2147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 257.173 245.392 268.298]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2153 0 obj
+<<
+/D [2151 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+486 0 obj
+<<
+/D [2151 0 R /XYZ 153.694 643.343 null]
+>>
+endobj
+2154 0 obj
+<<
+/D [2151 0 R /XYZ 171.694 633.325 null]
+>>
+endobj
+490 0 obj
+<<
+/D [2151 0 R /XYZ 171.694 633.325 null]
+>>
+endobj
+2155 0 obj
+<<
+/D [2151 0 R /XYZ 171.694 633.325 null]
+>>
+endobj
+494 0 obj
+<<
+/D [2151 0 R /XYZ 153.694 545.44 null]
+>>
+endobj
+2150 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F114 1729 0 R /F89 1710 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2164 0 obj
+<<
+/Length 2551
+/Filter /FlateDecode
+>>
+stream
+xÚµËnãFò>_A`+/ìûÍ>NÉ ‹Åf
+e)ç.é"ßÝã»›2oS27ÐGá$ó·¬VÅ=ú9¿¸ÕlòÞúú¼ ¦€¸á‰Ë²ã~ÔF¬žõòÆxázÍ‹YO\;î)ë‚Å„·°ü“ãêëÔ´ô$o`|r˶7|Ð;7ËòÞîá3P &„¢ÜBêŽ3
+Ö=5d°z(‹Í
+ à°Á†9¡Hôüå«èåOIc^» °7y·-¥2‘` (j«B‹âE]mh•77»˜ÌƒƒºöáXM±âh}Ù(˜Q™£|o8Ê?g8ˆBu¤óÀú10þe—oÊ%ºNÞÕ·ˆhº¯â¾þ Uëïf ¬«ïlu€òÊ©‚íX“Ÿ~“ÄòÃßüü駿ÉÂ-äwÙÌçioEPá[Š} ›Šõ
+: äïaËÚˆ4s“B˜töq.ø§GµÜ¾OI j-¤eøåú¤xxël
+é-ª:Nˆ!v:ØM`Å”ÐJnbÁ"j ÔKØÚ‰áÕf½BÃóg|><Éc¯Ô «]×xû®â |œo6Ϧw:5B†lšßlî°1PѦMÑC<¸¡Õ³e;Æ
+}elWAPÌä‚#ȱÛsÒ¸™Ù)â(¡ªf]!‡Ž‘4ÇÈ),0to¸ý˜ c_­Ë+Œñow|Þ‰L«÷ÁµWr”P†û©äÌ Ø_•-ÔM”&ÁAFž,ôþ> *Öñô€r
+K;êb)=4Ê↓ø²ø‚ÿ„Œ%¨ÉÔ\-ð‚Š£œpdêTÇäR¡Õ ­ØüSýP- UæX%Œæ–Ó¯gÁñ˜FC€<rÎ’B`O1ω °·%Z*Ü
+õ3g&øä+<û
+à3¬`ñZK°žueßæAU igeûqœ #,|J\{
+endstream
+endobj
+2163 0 obj
+<<
+/Type /Page
+/Contents 2164 0 R
+/Resources 2162 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2148 0 R 2149 0 R 2156 0 R 2157 0 R 2158 0 R 2159 0 R 2160 0 R ]
+>>
+endobj
+2148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [282.903 599.867 311.047 610.937]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 587.912 196.01 599.037]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+2156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [166.739 420.54 226.266 431.665]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [187.004 265.123 256.991 276.248]
+/A << /S /GoTo /D (macro.songnumwidth) >>
+>>
+endobj
+2158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [244.5 227.272 298.796 238.397]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [459.298 227.272 508.364 238.397]
+/A << /S /GoTo /D (macro.endverse) >>
+>>
+endobj
+2160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [297.152 215.04 356.679 226.995]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+2165 0 obj
+<<
+/D [2163 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+498 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+502 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 644.58 null]
+>>
+endobj
+506 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 624.663 null]
+>>
+endobj
+2166 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 626.988 null]
+>>
+endobj
+2167 0 obj
+<<
+/D [2163 0 R /XYZ 251.329 615.033 null]
+>>
+endobj
+510 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 553.32 null]
+>>
+endobj
+2168 0 obj
+<<
+/D [2163 0 R /XYZ 171.694 543.302 null]
+>>
+endobj
+514 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 457.678 null]
+>>
+endobj
+2169 0 obj
+<<
+/D [2163 0 R /XYZ 171.694 447.66 null]
+>>
+endobj
+518 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 385.671 null]
+>>
+endobj
+2170 0 obj
+<<
+/D [2163 0 R /XYZ 171.694 375.929 null]
+>>
+endobj
+522 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 313.94 null]
+>>
+endobj
+2171 0 obj
+<<
+/D [2163 0 R /XYZ 171.694 304.198 null]
+>>
+endobj
+526 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 252.178 null]
+>>
+endobj
+2172 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 254.392 null]
+>>
+endobj
+2173 0 obj
+<<
+/D [2163 0 R /XYZ 254.602 242.437 null]
+>>
+endobj
+530 0 obj
+<<
+/D [2163 0 R /XYZ 153.694 170.706 null]
+>>
+endobj
+2174 0 obj
+<<
+/D [2163 0 R /XYZ 171.694 158.751 null]
+>>
+endobj
+2162 0 obj
+<<
+/Font << /F89 1710 0 R /F126 1758 0 R /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2182 0 obj
+<<
+/Length 2753
+/Filter /FlateDecode
+>>
+stream
+xÚµZËŽÛÆÝû+Ü ðtØïæ" H \ÜU2ÄYp$jDD"’²=1æßo=š©ÇXñ¶ºÙd±ªºêԩ椳‡Y:{ÿ&¿?ݽùá™Í2‘9åfwËY*²
+É*¯
+žw+¨dY7›¼ëÊêF&|©^ò=ñ™¢iã#Nw›•%÷7·ð?,ñJÞî…>²ˆ|»…[à鼉·t¼ß+I¬?”UUV‡ÿu÷ß7©pdV†Çá¯ïÑxif¬w­—ÑtïDÐjlù©Í¶)«î#ª_Ò$7zòÈR¤ªw£ÕìFc…
+,«ÈÁw>YŠvà“·8÷IS,Š©6UÁëh¿+%åц8Œ6èá«ã{•%äø½SmÐÚ‹º‘¬M>oê¨ñ§U94¨€}ÿ7kÞáFÚ4îšS|îxôXëE±@%ÎzLk¡Utÿ=Êœàé‚HM6–†Ž
+kL„¶Ii&3-R­Ç¢PÏÞ”Oå¢[]`>)
+ÅP¡í*´Æ»¤Ath‹¸µ|ç*_/y”óÏ<"P¹)º"Š«ã-}˜ÀpÙ¿jè%˜žÛ‚¨Æwà k´ðJ"ª-:N†/'ñõô%v¾™ ÒゲPïb¡ûw —p)áâ§UÝßD:ÑeXÿ</¸È½ÐÊÂÌjóÒÌÚÛfd*¼÷cieµ(2XoÎ#à–6m¼º.«x™ÙÔ™·œä¯Ô"XÍo‰R÷µ âµWò*þ.eWÖ!Î÷IÃsŠuøÝäTñ¬©©>Ö›·<¿ßÅÛ±`îîÛâŸ]1”‚†Ä]¡ØÇÖÍ þº$M¥YtcÞ€#%~xó#O¢sáˆàÿé$FYI©0zëÔ*£•™qcaç°éL3
+.P¾¿î™öåEBˆZ>½üÉtv+¥È,ÐþÅUõhÛM¨FçRN+¡å£ZÉS¶׶k(ãÔid x2¢%b¶¯aÛnXùTq©xÜõ/¹/½pÉô*0½wø0-Ûé”rh9í=xMÏ6ôbý*ÚÆžm=‡•¨^¯‰ÎIâoñ7OlºcÔømSU×)tÛP±G¨í&ôqÉOQ×E±ÌwXx:ªƒz¸#2ŒQx@`(Ì aÇH[œ¯„©;vmDÏûSmwíêhxOªßÑë:ØH¢Kö}ÉžHSÈÁïþH‰ëñhd·<>x8¦øCaz¹chWõn½¸’ÅèÌ cAÓîÖ‘I|PÚKØž=-’ Ÿ”HÓû¦?GbyI1ï'Ð}ÝÄC
+•Á±VÄZÇ ¦†Ùú±)ç-‰]¾p& »6Æ‹î;AÇÜp¾ëæ6¾——õäêœYáœ[9N:ƒÜîjhRª
+žAÁã)HÇW© Ào A€!gyÕÆ´Kx®€l8¡†µ9 ~·cEFgÏî·ê‰¦ír™oÊõ#Á¾õ·á™ÊCq_¹@(_ÉmyLHLGHŒNÇ«ètå59á½}‹Ž† X¾Å{]Ò®óXþ|yŸà
+5k’-Xød±›sÁ²<R.¨˜!ØÐG
+Ü=B˜Gþ
+Vc!oY-î,4ŽÛQŒÃ½32%CSàÝ&kðÔcŠAÆ@7¬Í©E¨
+ãHf:¤¤Þ¤t<æyUM÷VÈpªñù$âu¢ñ´fΩS. Æ3*A¸ÊÌ}•²LèãݸŒ?—52Ð:^¯‘¬;Õè,š]VÈBœe@rO:Gƒ¤É„T¯Ëo„qz,êZ&ˆ‚ª®ýX&ˆÅ¤h#Ù›w%ÄOR
+¦·†i´ôºø(}UÑúL{dt_y¹ìò}ôG8°2ø#›í™Ü%7j/¤sý¡$=ãì÷kP¥Ì ñ×Ï°¼Cn=Å¿Ú¹†!]Ú&`õ¢ÐJNàZ©Âhg¾{óóÍC
+endstream
+endobj
+2181 0 obj
+<<
+/Type /Page
+/Contents 2182 0 R
+/Resources 2180 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2161 0 R 2175 0 R 2176 0 R 2177 0 R 2178 0 R 2179 0 R ]
+>>
+endobj
+2161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [167.053 630.392 231.81 641.24]
+/A << /S /GoTo /D (macro.theversenum) >>
+>>
+endobj
+2175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [243.4 458.968 318.617 470.093]
+/A << /S /GoTo /D (macro.printversenum) >>
+>>
+endobj
+2176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [192.536 393.511 212.559 404.304]
+/A << /S /GoTo /D (subsection.15.2) >>
+>>
+endobj
+2177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [264.884 170.098 293.028 180.946]
+/A << /S /GoTo /D (macro.echo) >>
+>>
+endobj
+2178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [440.237 170.098 489.303 180.946]
+/A << /S /GoTo /D (macro.textnote) >>
+>>
+endobj
+2179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 158.143 206.471 168.991]
+/A << /S /GoTo /D (macro.musicnote) >>
+>>
+endobj
+2183 0 obj
+<<
+/D [2181 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+534 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2184 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 657.235 null]
+>>
+endobj
+538 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 595.286 null]
+>>
+endobj
+2185 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 585.544 null]
+>>
+endobj
+542 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 499.961 null]
+>>
+endobj
+1869 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 489.943 null]
+>>
+endobj
+546 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 442.051 null]
+>>
+endobj
+2186 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 432.31 null]
+>>
+endobj
+550 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 380.575 null]
+>>
+endobj
+554 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 359.806 null]
+>>
+endobj
+2187 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 362.131 null]
+>>
+endobj
+2188 0 obj
+<<
+/D [2181 0 R /XYZ 238.02 350.176 null]
+>>
+endobj
+558 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 288.226 null]
+>>
+endobj
+2189 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 278.485 null]
+>>
+endobj
+562 0 obj
+<<
+/D [2181 0 R /XYZ 153.694 196.111 null]
+>>
+endobj
+2190 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+566 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+2191 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+570 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+2192 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+574 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+2193 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+578 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+2194 0 obj
+<<
+/D [2181 0 R /XYZ 171.694 184.986 null]
+>>
+endobj
+2180 0 obj
+<<
+/Font << /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R /F89 1710 0 R /F126 1758 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2202 0 obj
+<<
+/Length 2967
+/Filter /FlateDecode
+>>
+stream
+xÚµZÝãÆ ¿¿ÂÀ=Dv§ó)iÜCR$ŠšmÑàî
+Èöx­D–\}ÜÝæ°ÿ{ÉáH¶¼^Û«lv=‡ä¿!9â³ûŸýô†‡ßïïÞüåGag–ÙXƳ»õŒ3›˜ã31‰`±Õ³Ø$L*3»ÛÎÞGw7¿U*–UQÕ µ«5ý6›låVÔ^Ìo%ÌÌáß×ôï”si£6Ë˼¼§±Ö}i»¬ NYµý³Y5Uÿh‰Äº-þ'ê®g`™•‡«ºùÇ»¿½á,ö’Ô lhþó'XèY
+Ç%AÚ4f:•ca?¥‘¥Å½—–¨ö:<Iþß
+Á¬
+«@¡)»í)
+'TßkÞ(Ò¼6L¦ÄËÅÞ€œ"º÷:(-hóÚµƒ™•ûÀeR. ¶ Ú@ÚÀ(òšAꀉ^2Ž™Hâç´ñ¼,JIÆ•Q½}9OÊp–ÆOyz¹~µˆY"Ç<m³e]5l~«uý8OMä@‰Iä¾dÛ]á¾=ÃòËAÇ‚¿Y,«d/IíJ÷yYm·  ¯Gê~üZ»ÕãYNŠ-—ÇÍa~ýºß£ý˜LguE{½Ø µ%ѦªW Ífµ£F‹fø° n&¢Æµ4‘—ôÛdex§qu¾¦fµ(àÙü] òÞ`Ì°JëVÐ4±®¼“·°lû—y*¢ª£9tò—ûµ…}7G2£jwu^¶Kñ‚ÑX{ä•Æ¦Þ¢É-»¦­¶ùïuðR$
+]e;Ô˜PVgåÒÑà«ž‡=Ý»ì—P– ‘ŽYš&²1‹“º!Ž?orŒ˜Î–K·kê´› Ö^tXñ2¶
+¡¾üÑä¡•s†ßºÚfåá U±S^gKwBÎCgëåL42èÓ›7˜<p«F
+¶Z-Fýóhx;WUÿ«pù¬²ñ¸’jf¤±dlZ)6 °MÇ¢ì×;šöq6@å&k±-£æa‹[³ðΠˇGqºÅɇàÚqºk'~iä!u2fÞŸk`8YTÅ5‘‡f OžFë"kO¹Âp…b<‘ÄÏßIÿxx0›¨td\hT@H&” ¾»à1œåÚŒ¹;õÎðBÌ n±
+Îy;^}¢$J
+Ù嘖ßV5ÚVèùmUý¶*;dx"‚=’„óÒÛ^ú>}í.å¨[Ï‘
+Ž AQðª8a\ÛQ}ð·6_RùÛF«¼iû:Ñ`¾-égÿ¬+i&”ÄÁ†?á$úlðw˜è«æ‡†íëuÐMpÎÄÓ#1p‡<´5n÷Ò
+š€àV:s_ô
+
+š!¸VQ³»ºê¤4d*¤É†<*xDñ†¤¹ @J°·Ëò[Ò¯ˆ¿Ã‘ÐPŸŠ%ð軂ž–<À—ŠžÁ‚Šû’/ò"oû¼i  «] ZÕ4²ÍK‚QêÊçâP~)Ò lB¹Š^m=3qzPYSûÜâO«¬)È5~jHï„ܵXÌ6A`l C ñáØk÷¥5,µÉ!ÖÈøk`ä
+n^C>â1ÏÆC…çýªd¿ à¬b‰‰Ç\\ÔÑ™|*Y2¦6-6ÔX{ÊÖduHôð¬Qd—¯ 0‚“à26\…’ MF×ÊR ×ʾ³ÍV¡Õ´µk)ˆÌE\{ÈǷíì¼?‹¥ð±(
+xf¨*_KÑ؆CÉa5ü&íÊþ<Ø8¶žt;`X’šñZM‘â\Ë®Vœéc»A—M؉®®©¾x8½§üÉžB‰tP„µì#d”¿øŒ²£l0|óéÖê×® ydH“%$ÇMWP©B)ÃE–=¯2 EÚí¥¤©}Ö­Æw\žÄ“ôÞ¬ÿÀõ—ÀD5VS jHÂ¥0ÌB<7¢µOÂuHÂõ( WCBvTsQû2V‚³¶«©4£G¥uœ. ¥N
+½þ€—¬ðš¹*Â2iz¬ pËçìþk˜4äìñ³+sœ³ŸöÑ¡\l ·³Ô2‡â¬´£7¸{óÜ€=m
+endstream
+endobj
+2201 0 obj
+<<
+/Type /Page
+/Contents 2202 0 R
+/Resources 2200 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2195 0 R 2196 0 R 2197 0 R 2198 0 R 2199 0 R ]
+>>
+endobj
+2195 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [316.625 395.297 365.691 406.422]
+/A << /S /GoTo /D (macro.textnote) >>
+>>
+endobj
+2196 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 241.282 234.931 252.407]
+/A << /S /GoTo /D (macro.songcolumns) >>
+>>
+endobj
+2197 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 229.327 219.24 240.452]
+/A << /S /GoTo /D (macro.spenalty) >>
+>>
+endobj
+2198 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [262.581 163.587 301.186 175.542]
+/A << /S /GoTo /D (env.chorded) >>
+>>
+endobj
+2199 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [394.789 163.587 428.164 175.542]
+/A << /S /GoTo /D (env.slides) >>
+>>
+endobj
+2203 0 obj
+<<
+/D [2201 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+582 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2204 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 657.235 null]
+>>
+endobj
+586 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 657.235 null]
+>>
+endobj
+2205 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 657.235 null]
+>>
+endobj
+590 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 619.736 null]
+>>
+endobj
+2206 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 609.994 null]
+>>
+endobj
+594 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 534.769 null]
+>>
+endobj
+2207 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 536.983 null]
+>>
+endobj
+2208 0 obj
+<<
+/D [2201 0 R /XYZ 266.23 525.027 null]
+>>
+endobj
+598 0 obj
+<<
+/D [2201 0 R /XYZ 266.23 525.027 null]
+>>
+endobj
+2209 0 obj
+<<
+/D [2201 0 R /XYZ 266.23 525.027 null]
+>>
+endobj
+602 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 449.802 null]
+>>
+endobj
+2211 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 452.016 null]
+>>
+endobj
+2212 0 obj
+<<
+/D [2201 0 R /XYZ 288.57 440.06 null]
+>>
+endobj
+606 0 obj
+<<
+/D [2201 0 R /XYZ 288.57 440.06 null]
+>>
+endobj
+2213 0 obj
+<<
+/D [2201 0 R /XYZ 288.57 440.06 null]
+>>
+endobj
+610 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 376.79 null]
+>>
+endobj
+2214 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 379.004 null]
+>>
+endobj
+2215 0 obj
+<<
+/D [2201 0 R /XYZ 248.543 367.049 null]
+>>
+endobj
+614 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 305.639 null]
+>>
+endobj
+2216 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 295.897 null]
+>>
+endobj
+618 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 295.897 null]
+>>
+endobj
+2217 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 295.897 null]
+>>
+endobj
+622 0 obj
+<<
+/D [2201 0 R /XYZ 153.694 200.725 null]
+>>
+endobj
+2218 0 obj
+<<
+/D [2201 0 R /XYZ 171.694 190.984 null]
+>>
+endobj
+2200 0 obj
+<<
+/Font << /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R /F126 1758 0 R /F94 1713 0 R /F53 2210 0 R /F57 1860 0 R /F16 1712 0 R /F51 1703 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2237 0 obj
+<<
+/Length 2190
+/Filter /FlateDecode
+>>
+stream
+xÚÅZ_oã6ßOá·S€5Ë¿yÀ>ÜÝŠÞKÏz¸½­¬$êÉ’!ÉMs‹|÷Îp(ÙtìÄÖæPHJÎ g~3š/î|ñ÷w|zÂKv©ùӹѫwß}B-s©L«Û…ȃÿEj2&•Y¬Ö‹'Ÿ…Ò_ò¾¬«¦Ì׿~XŠíp³4Ò$Ûz×SkÚTÍ8Æaì?«ÎòD îÆ¥ÿLxfR§©rLqµXm€™Õ•I{³TV'ÅÌ’û¼¹+©?܇Æo7Ò&e7TE^ÓȺꇼ)Âû/7K˜Y8ÿÁ[6‡$ÛnÝS?oÖm•Ô]Uôº%B㇛÷$7Š’ Ü¡ù“—Wè…SíÒÚ”IÅ¢æ Tû6ïòM´yRoœ9;êÍ(қ̘’žTW®ËÏ\éÅÎËs~sžÙE -yÊŒs1éy\ÊL2‘ÚäE׃ÕpO­œÿj¨Úf”!Â'ë_wýÐïEó‘•ï>¡*˜Ë”=”DkËŒK—ŽižÒò£ çXÖF2'³˜åÕ‰9Ó"Æ2%p‚arÜÔï_Y$UÌ/ò ä\.‘ÀÉ †)'iÊPvýŒ°-e<¤uˆ
+Š‹A! AÞ Hj‡¡ÝЀ×Ðô4&UQ—4uHbh·4O…7^ƒïið×owô¢hwu óÐUCù×£êuÎNáÞd†¥æÀp»²)Šv³¾áûÓ׫×_´rµX
+Áœ9‘V “|ò•„á$iþœj„
+ÄSGɈ3Ù§ëó#Rdœ ¨LñˆLèÚ{’
+Ž¬ÆÈ}‚t#Ÿ#Á
+8~ç}Zù–|­Ì»>¼k‰æD«.oÃÇã2à
+ÔfGh ]ÆœÖÿP-{ùf„O«™ŠÈÎbPB"è\SªËæn¸Ç`8¦Â: »Q¢­7ùà÷$7ÇN{
+_XV]Y?ÒGŸ¹á ì~"bÕÜQ'ï
+þ<æñ›À.šs6‚¦…ÃSWåÚgf0
+\¦¨wÓø\B¯oÉ‹<èdt`tª)¡]o—ÐGhs›]þ>”ÍøD~®DMe$Ó.¹yÇy‘if²4&uÀWÛW0&1®dLíŒ A?ŽŸ
++(ZФtÒ]—·ù®fR$~Ó½Vå—Š£œ&¦¶®úm{+é§*5Њþ2žøwDùã‚B_tÕvØuaBWÞ–ÝrF0׳¨óËÅ<M‡„õùY°¿oF . "ÀÐ¥<Md쯵qi™±Á”ʦð>kL²ë)Ø™€&ØðÕ9…@ ñ's2^ì%Ù_@Dˆ­îÔÜR2§™ºB“Ê)¾Óaxm!BšjRÀÜÀ6÷ƒfÓd c‡•èsP,R–ª`zû‹Š>òzâaŸyֶ݇›ªZØ- "¡+uûŒÙÏonÛ·ÁŠsf¹x¡ ùÏŒBЛŽöú
+Šç x~aÈkåËm‘¶œÏà"l´ßäa.‘mÞ=ýye©g?©3ÆÇKŒ]Ú_â|C컧#º³Ã²âxÏ–ÅÔÈù¨,­ýM:;µÇà…íØ+ƒ³º­ ¬¤eC`ŒÝª™Ã$ óâŠô—¤2͇<û¶í K¤û4 Ãc8¦º3
+P“°‹Õß».߆ê<›.Ët3rÎ ^KdÉc±æ…Ø)æP᧣½XÛÚJ–ZÓbT
+[»›áîx¯@UÜ©q¯j Ev EJ߈ÂHhp 
+•ªÚŠh|dhj/’îÃÃ]Œæ’ÿÜû’ôÂå N§²p·©ÀBú8€/EXd¸¬\(t„
+Ú¡ósó^Ä¥¯Ìøß|!§{¤áÉá•?ex,êè%Æ`Óo…3€öõø|óO oOfÌó¿ú8í1W/¿k.N¿íâ†~BFŒ-2bÿû´_o¼ì[Cgzyè<‡Fû²ö2ãŒgÑS<‚œïWïþ
+zl
+endstream
+endobj
+2236 0 obj
+<<
+/Type /Page
+/Contents 2237 0 R
+/Resources 2235 0 R
+/MediaBox [0 0 612 792]
+/Parent 2137 0 R
+/Annots [ 2221 0 R 2222 0 R 2223 0 R 2224 0 R 2225 0 R 2226 0 R 2227 0 R ]
+>>
+endobj
+2221 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.158 287.023 230.224 296.761]
+/A << /S /GoTo /D (macro.showrefs) >>
+>>
+endobj
+2222 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [228.231 287.023 292.988 296.761]
+/A << /S /GoTo /D (macro.showauthors) >>
+>>
+endobj
+2223 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [233.462 273.681 308.68 284.806]
+/A << /S /GoTo /D (macro.songcopyright) >>
+>>
+endobj
+2224 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [322.75 231.838 397.968 242.963]
+/A << /S /GoTo /D (macro.songcopyright) >>
+>>
+endobj
+2225 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [418.929 231.838 483.686 242.963]
+/A << /S /GoTo /D (macro.songlicense) >>
+>>
+endobj
+2226 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.158 180.143 256.376 191.268]
+/A << /S /GoTo /D (macro.songcopyright) >>
+>>
+endobj
+2227 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [264.844 180.143 329.601 191.268]
+/A << /S /GoTo /D (macro.songlicense) >>
+>>
+endobj
+2238 0 obj
+<<
+/D [2236 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+626 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 649.044 null]
+>>
+endobj
+2239 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 639.303 null]
+>>
+endobj
+630 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 521.024 null]
+>>
+endobj
+2240 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 509.899 null]
+>>
+endobj
+634 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 459.864 null]
+>>
+endobj
+2241 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 450.123 null]
+>>
+endobj
+2242 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 388.362 null]
+>>
+endobj
+638 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 350.282 null]
+>>
+endobj
+2243 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 340.541 null]
+>>
+endobj
+642 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 340.541 null]
+>>
+endobj
+2244 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 340.541 null]
+>>
+endobj
+646 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 340.541 null]
+>>
+endobj
+2245 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 340.541 null]
+>>
+endobj
+650 0 obj
+<<
+/D [2236 0 R /XYZ 153.694 258.128 null]
+>>
+endobj
+2246 0 obj
+<<
+/D [2236 0 R /XYZ 171.694 247.003 null]
+>>
+endobj
+2235 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F114 1729 0 R /F94 1713 0 R /F126 1758 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2265 0 obj
+<<
+/Length 3493
+/Filter /FlateDecode
+>>
+stream
+xÚµZ[oë6~?¿Â/‹U€cVâM"ú´]´EûPlì{öA±™X8ŠeHrr‚¢ÿ}g8CYrìÄVÐ'Q¼ ‡Ãá72]<,ÒÅÏŸRþþpû黟2·pÂYi·÷‹T¸šÒE¶ÈòLX§ÖäB*³¸}\ü7ùe{³T™KüÖ·eýþ¤JÊítÉ 5=–«¶¡â¾²HVûG=Š¤÷kl(’ŠÉ|‘*Ï$•W%WÞ…Až~öÝhÌÿnÿñ ™K…]´‹Xü×ϸŒLÖ‘ñ"tf„tnºˆ/™Òþ[ï·ë]ëëýÚ3aÊy‰hQÅ”X¹]Ïà+3J€€VÅ+¶š®¯L¤’‰/"KÕ„X[ e²kAn2Ozúíší•ªí}Ó>–}ÕlqµMºýM–¬°ó†º”ÝŒ•©Â‰Ü¨W+ÙË}¿iÚîÂei#…ÉŠ ¥ÏstÀ¢0ö$G­¿¿”“á¤û0;ÃÖ+%”4S~VÍ6ý¥[/­PÎN‰Á~jåfj¦4–gN³WW+¿í.ÕK•å"ÕnJJÜ,óÔ$?Ý2iZà4Ë“Utô 1Âo+¿]y^C¿ñsv\*áàؾ^æy¾R 
+=”©™.&dævpj ¬«nW—(Ϫ sy»¦B·j«]¿o=ýÂü¾¹„ƒø
+ϨóPQõô-w;0 yâË™P9Ùñص¿/÷uO­ tP½ñåÚ·T{W³EÂi¾vâ÷lóŒË…¶Äüoè›\“±ÊD
+×DÕ›Ù}¦„]l]û/©Ò[¹õÏsTIapÆÌ ¾Üù‡jÖwá1ÎítQ_‘gÿòtc`WëŽØ Ê0º´ í#UͲ¾QãMa„Iõ ë{ê&ľïÃÀZ„$
+c
+œ‹,p½(`É°¯#VHO—‹ò~,¿úSÒ>M}±Ô"O‹Å´Ý8Ãë1™ |“ñ0› ãx×€••_ûp#&)ƒÒ_!i®÷e8¦j…9> ¯¢, ´4{<G…(v8wØÀР#>α$FØÔLÙK¢ï{R³$°Ç@òxŸ/sAâ¹ÊDfÍ”˜@ó[$ÿÞxmð“ƒ;ß÷UÀ×€Ö¡Ògªa£ sÚ3s*A^¸éœ 2xl í -¨6˜;c
+fi»¾‚!)aSLÉÔÕÖw°:°Æ&àŠ­‚쵂Ù…åÖwà¬tø“&ÏU¿AžX[Pöß< èÐeÖyr» …úºOÇœSîüX’™yÎg©lY©‘ãà©I›”}³£Zi(°~ÔÑëÁn¤Jrðº$»ôñSôð$O~x¡Ö`ƒ·6+ K r3åÿ
+PËBçR(€œ ­èBÉKwá‘M–²{qäiÇ_ñ Z8¿U_û²È’ƒdI¬âÅ!è—ã!&×j¢kî#¡†ê‡Y0^Œ!>´À€ê’ nÀýe⃖É·3:b¦!œ/,Ë…ã´¾¬Ð³pqûÝa½0Aè¹¼9¨Lû=õšwf`='ü\kòì£
+Ý_ö·¾•øó™þØ<ðTë:¨Ì3Û Dç¼4îÔkP™Ë¶§?:j¯úŽªÂbPQŠ˜ùk/©¡(ÿ R¥ùœ¡-Œ(¬ ÄY1 ÁAZsU¡IŸºl<7ñ1©×÷%WB Üã09H&¥)ðB|jÒì± ˆÝÓ€p:µùHï8ÎZK‘j98ÎAÏ!t(ƃsÁü{ñ Ã4Ÿ v¦Àú1ô p¨‚…Î{L½Cø1Ý ã<;a¬.anòÕ¤Rä.;"«opv­[·þbìVƒ ý3DŠ Å#;óû_®žþšÚE†"PŠÙC(Ö’Ž6åj ô*´õEmzsŸ/£ö;’û'§àåÝw@v“ĺ½€)[
+É)?p@ÿÞÔûÇíò6þ+ €xÛ+à-ËÌBI)4€r@Ê_ÑB"i&‚épYœe
+«É,‡ÿ\Ÿðr€Ô.Ÿò{ðô´óÛ²î_.Iw¥¯áuµš1~¤O¿º†ÿs麻öë)*ïû
+¬Ž‰œxÑ¥I»X¢h1-‚›‡yLª^Ô¡«ÐuåAÁåJÉå‚zÁ÷„2^<À
+
+(švßaĘ꣠N‘䇤Žð!³éZÎÃÇòÖ…È€À„м»j%re_stÞr—-¸Ég(¦še®…]Z>]ÂÏäÖÒë L‘éÙ÷ÔJF¯[=]ɘK,rB'œ-õè¬Ð_ˆúóe|+øbé@ÍG Tlã.œh9Á«‘ð5à°´ûÄËÔáÔ„d’21€;>¿t¡ÒáÑæÃIj°~8`‘òžÒÆX¤ÏètNÓ
+;ç¿­ü®'fñ1٬䇵٥ûqÙ^›\˜ìÒ|È `qƒ®"w ,6€á˧çM5¼/†Ïg-ú‚HfZ°Ó±SüÂa¹ß×\7çQšÊ¥° Ï g]]­ßÕßaq:ÍC´>!ñ8~ ’¯Ø3º-c†y¡áÈ^xµœÆœ£øCСrQ&PÏU¼DÖ#`¡º2B®<zÑC]‚+…´èT©lËž‡)…kÔ·ãqá9d˜;¼Ó§ƒœc#Ÿiˆ2‡[æãèD³â ·Œ­,«m¼g|ð=ùo¡£çzòÜ›®«îê`u.³X£ Çè½(>Ãì„ã´x): åò ”ñª—Ïš,š.(Q8ŽÉLvl 'd^vÕ
+
+endstream
+endobj
+2264 0 obj
+<<
+/Type /Page
+/Contents 2265 0 R
+/Resources 2263 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2228 0 R 2229 0 R 2230 0 R 2231 0 R 2232 0 R 2233 0 R 2234 0 R 2249 0 R 2250 0 R 2251 0 R 2252 0 R 2253 0 R 2254 0 R 2255 0 R 2256 0 R 2257 0 R 2258 0 R 2259 0 R 2260 0 R 2261 0 R 2262 0 R ]
+>>
+endobj
+2228 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [337.115 654.025 348.871 665.15]
+/A << /S /GoTo /D (section.12) >>
+>>
+endobj
+2229 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [388.757 642.07 453.514 653.195]
+/A << /S /GoTo /D (macro.songauthors) >>
+>>
+endobj
+2230 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [457.86 642.07 506.926 653.195]
+/A << /S /GoTo /D (macro.songrefs) >>
+>>
+endobj
+2231 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 630.115 227.392 641.24]
+/A << /S /GoTo /D (macro.songcopyright) >>
+>>
+endobj
+2232 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [253.289 630.115 318.046 641.24]
+/A << /S /GoTo /D (macro.songlicense) >>
+>>
+endobj
+2233 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [423.002 630.115 487.759 641.24]
+/A << /S /GoTo /D (macro.showauthors) >>
+>>
+endobj
+2234 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 618.436 201.24 629.285]
+/A << /S /GoTo /D (macro.showrefs) >>
+>>
+endobj
+2249 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [196.125 594.249 216.183 605.374]
+/A << /S /GoTo /D (subsection.11.8) >>
+>>
+endobj
+2250 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [331.633 594.249 385.929 605.374]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2251 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [454.067 534.197 508.364 546.152]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2252 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [173.444 522.242 217.279 534.197]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+2253 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [428.57 438.555 503.787 450.511]
+/A << /S /GoTo /D (macro.extendprelude) >>
+>>
+endobj
+2254 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.158 412.06 245.915 421.798]
+/A << /S /GoTo /D (macro.resettitles) >>
+>>
+endobj
+2255 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [264.844 386.763 324.371 397.888]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2256 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [332.839 386.763 387.135 397.888]
+/A << /S /GoTo /D (macro.songtitle) >>
+>>
+endobj
+2257 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [186.388 374.808 240.685 385.933]
+/A << /S /GoTo /D (macro.nexttitle) >>
+>>
+endobj
+2258 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [238.692 374.808 308.68 385.933]
+/A << /S /GoTo /D (macro.foreachtitle) >>
+>>
+endobj
+2259 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [317.148 374.808 371.444 385.933]
+/A << /S /GoTo /D (macro.songtitle) >>
+>>
+endobj
+2260 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.158 362.853 256.376 373.978]
+/A << /S /GoTo /D (macro.extendprelude) >>
+>>
+endobj
+2261 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [235.115 235.871 258.029 246.719]
+/A << /S /GoTo /D (macro.brk) >>
+>>
+endobj
+2262 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [371.618 163.863 404.993 174.988]
+/A << /S /GoTo /D (env.slides) >>
+>>
+endobj
+2266 0 obj
+<<
+/D [2264 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+654 0 obj
+<<
+/D [2264 0 R /XYZ 153.694 583.29 null]
+>>
+endobj
+2267 0 obj
+<<
+/D [2264 0 R /XYZ 171.694 573.549 null]
+>>
+endobj
+658 0 obj
+<<
+/D [2264 0 R /XYZ 171.694 573.549 null]
+>>
+endobj
+2268 0 obj
+<<
+/D [2264 0 R /XYZ 171.694 573.549 null]
+>>
+endobj
+662 0 obj
+<<
+/D [2264 0 R /XYZ 153.694 333.616 null]
+>>
+endobj
+2269 0 obj
+<<
+/D [2264 0 R /XYZ 153.694 334.446 null]
+>>
+endobj
+2270 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+666 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+2271 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+670 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+2272 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+674 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+2273 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+678 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+2274 0 obj
+<<
+/D [2264 0 R /XYZ 311.115 322.491 null]
+>>
+endobj
+682 0 obj
+<<
+/D [2264 0 R /XYZ 153.694 189.047 null]
+>>
+endobj
+2275 0 obj
+<<
+/D [2264 0 R /XYZ 171.694 179.029 null]
+>>
+endobj
+2263 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R /F16 1712 0 R /F51 1703 0 R /F126 1758 0 R /F28 1704 0 R /F53 2210 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2301 0 obj
+<<
+/Length 2884
+/Filter /FlateDecode
+>>
+stream
+xÚµZÝÛ¸Ï_a •,+~‰T>$‡æ€{l÷¥½»E¦×ºÈ’+ÉIÓÃýï7Ã!eIk{½n.@VÒÎ3C9]=­ÒÕ÷oÒp}ÿøæ/x¾ÊYž‰lõ¸]¥,·0”®øŠβ\­2m˜zõ¸_ý˜<î\ïÖBëdã¶Å±zz*‹†n>ÂÅ&aN¹y²+š'·‰£0øu´Énͯš'"»ðjçj÷y­3E&QĽ)êa©sOU?¸.Vu®ê¯k«¶þùñ‡3:š¨¤–¤¤ÒLXÒñÃÚª¤fRf‰ûo±?Ôî->™dh‰ºm»Ò© Ê¡xrD‰¯–m}Ü7;W|¢‘`/úüã¨ßÐ`Ù6½+CõyMô<¼ÚîØ»þ-‘Hñ`Tï ª’²lÕ=­âí?¾¿@[p91Ÿxþ¯2a˜T†,ñ—ª,ÞÜ_ÿöÀSøwuE
++X˜ŸÖxà†)cV’3käêqƒ‘´ÎѺàW-óä‡c?T?¥°\1TmsÎmœ¥"+tƸ+k`¬Bh®­HÀ?*K“Úm‡‡_çBDéÜ;GJáŽÄ`Aº7ÿJÕ¸>ÌÝé3Ît]?Ò#¤Nñö
+f¹¾(Ô«L§KÑðö:æŒ1 @©3c²G ”(=nà æyÇ#ÅI>賩ç±wáö„+z"Æyc^•RMPÌm¿¶‰\Úc½ ïNSÅ_¿y®ÐhÉO®è\ã¾”í~_4›__½Ü•Ø“ß~}¿Ý–µ^¨„´Ôp UÂ"cÁ9e¼ØŽEMM;`ñôÖû¢¥§ºÅª'Ò¥Hä®è)r-èÒC‘T»ðjÕ„»*°†òÁ×I][×Xm!-V[~‰»'UeLa¢jŽÖEÎ&˜›)ËXfóç¹â×+XÌ×ô„dFIp_”]‹;PÙä=ª/$V«XiBÁŠûöN5Ð@ï°„•B$ÇQ°’Å+î1›|®º¶Ù»X„âÀ°+ÂÝöX×a_b<Ľë'ºóõg®—¨¦06Í@ûü§T§sì-í碮‰þñ8„¾ 3뢤@óшÀS„RÛSEW<uÅaQipͦ§±°À„¯/S‹G0²íÚ= …9:‰ùàŒžÙBO•ç>Ää4] êø
+l÷´óÐFkì‹z0÷þ4É;å8
+í ”Ñ' q ñzËv–y9qˆÜ2.ƒŸÈrøå¢Ó4†“§Š4M „Iˆ9`«Áˉ»ðS‚ˆj𙈯 %19[Ô:›óÂý–AÛº«({ÝËÒ|¶Ð&fø³–ÃŒgƒ[&v°TiÓ]á³X€ÒV"OcZ?ê|ß8ÑÃ7ö8þì/'<ÆãỤ̀àÄI¡Q%âÁ·È¡±ØÐöKê@‚ñ³ôíO
+/Bi
+¹¸á³ÁrfãW‘ë+˜= ‚ß~ä?{b·Ÿ¢öŸøm¸=¯lO_ $dÚŒNœ`\…Šö»¶ÙTh~l¥”•ÉûÚŸÑA >õç÷—K{§
+•½‚3–ØŠùº;´eE üÁè_B—溡ˆ=!ò€†ñ-:#á“(ðícY7Ô/OšÉv煉 )ÛO} ‡±M¼ GxxoƒÃZØ6]õšT“ð†:}R¤tX Ä=ªwÄ´U•UÑü¹'r<âÞÐã\Ððfu:ÊEÔ5.5ta:mÇ>ÏŸC’/â/lnSÆE¨±ŠLÜxš¡t:~dÝ
+endstream
+endobj
+2300 0 obj
+<<
+/Type /Page
+/Contents 2301 0 R
+/Resources 2299 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2283 0 R 2284 0 R 2285 0 R 2286 0 R ]
+>>
+endobj
+2283 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [243.4 550.421 318.617 561.546]
+/A << /S /GoTo /D (macro.chorusjustify) >>
+>>
+endobj
+2284 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [157.616 484.944 177.674 495.737]
+/A << /S /GoTo /D (subsection.15.2) >>
+>>
+endobj
+2285 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [489.263 448.802 508.613 459.927]
+/A << /S /GoTo /D (subsection.15.2) >>
+>>
+endobj
+2286 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [355.606 153.286 362.535 164.078]
+/A << /S /GoTo /D (table.1) >>
+>>
+endobj
+2302 0 obj
+<<
+/D [2300 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+686 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 605.215 null]
+>>
+endobj
+2303 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 607.429 null]
+>>
+endobj
+2304 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+690 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+2305 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+694 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+2306 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+698 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+2307 0 obj
+<<
+/D [2300 0 R /XYZ 256.182 595.474 null]
+>>
+endobj
+702 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 545.44 null]
+>>
+endobj
+2308 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 535.698 null]
+>>
+endobj
+706 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 485.94 null]
+>>
+endobj
+2309 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 475.922 null]
+>>
+endobj
+710 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 424.179 null]
+>>
+endobj
+714 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 403.41 null]
+>>
+endobj
+2310 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 393.779 null]
+>>
+endobj
+718 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 331.79 null]
+>>
+endobj
+2311 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 322.048 null]
+>>
+endobj
+722 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 234.163 null]
+>>
+endobj
+726 0 obj
+<<
+/D [2300 0 R /XYZ 153.694 178.192 null]
+>>
+endobj
+1889 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2312 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+1940 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2313 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2314 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2315 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2316 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2317 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2318 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2319 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2320 0 obj
+<<
+/D [2300 0 R /XYZ 171.694 168.174 null]
+>>
+endobj
+2299 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F126 1758 0 R /F114 1729 0 R /F89 1710 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2330 0 obj
+<<
+/Length 2502
+/Filter /FlateDecode
+>>
+stream
+xÚÅZ[oÛ8~ϯÐÛÊ‹šCñ&ªoí¢-0è³Ó
+áÝ®¼Ïþ팅þã~6‡&ž}½ýõæÝm—^‚ΑB6øí™Å—qžÇ«Ùœ3ågéö{¡Ÿ¬‘§_Þ3Y'¤C"¤‚ …׳y BÛ(h΄¨ 1Zˆ\ ¥&ÂRh"ÀS`y9‰J—“¨ndÀŸ!aìæhàCP w¸÷Êîï,V ‘H1eÀ
+›†Jä’’ÀÚy¹É+€Ú·tÝ`Í–e ª­ÏDHÁëë›Ø­Ý%Ù
+Rº¸¿V]6^ŒOM¨¸†pÊ®
+‰ŸrDû4_.öÙw2š·”4˜˜€#
+¢¨¶Jû–wwñaÈ òhÎ:ËzÖªê+nʪ~.8õ—ÇÃ!N1"ö‡ÜýŽÆÖ¼rÜáWb£(æ§/TÒ„Ää ¥òC(ð0c]ävP7—’bsᙂbžˆQ’ŸŽîb(.¿–{ ¬ðö¥Ê·“4/âŪ*Þ‡s#Àãa}=±~79˜ó÷^6!W› Úàé­4'ç;IhM´•Ñ•Œw¸(¥ ×$ ’
+eyç!ë¸ÛÆVÕÁk€€þ?²t•`zR¥Ÿ’·اÈaÖšG
+‰ '\öñ3Lb58C‘ãm¿ˆ´j¨´o;¥•Z¿¬´xaz&íºŸöSçÆõ ÂC¼¤àåycðôÏîUXI&â„Ñ I¦SsŵôؘՅÊ5‚o—nNHž9[­–c ¼Â{s¶‰ì¬¼ ‡ž;º…jså¬m{Ù1Pa:ÒXuÀETs¹,m[éT÷°JŠÓÊ+÷ uBŒ·©Ðˆ¹±6…ýn´eÓ·=6
+ÍÞ’~wÜ ˜¢: Á¨íEg„q‡
+¹nlm
+endstream
+endobj
+2329 0 obj
+<<
+/Type /Page
+/Contents 2330 0 R
+/Resources 2328 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2287 0 R 2288 0 R 2289 0 R 2290 0 R 2291 0 R 2292 0 R 2293 0 R 2294 0 R 2295 0 R 2296 0 R 2297 0 R 2298 0 R 2322 0 R 2323 0 R 2324 0 R 2325 0 R 2326 0 R ]
+>>
+endobj
+2287 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 635.517 301.91 649.465]
+/A << /S /GoTo /D (env.chorded) >>
+>>
+endobj
+2288 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 623.163 301.91 637.111]
+/A << /S /GoTo /D (env.chorded) >>
+>>
+endobj
+2289 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 610.809 296.679 624.757]
+/A << /S /GoTo /D (env.slides) >>
+>>
+endobj
+2290 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.495 599.828 354.404 612.404]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+2291 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 574.147 312.371 588.095]
+/A << /S /GoTo /D (env.noindexes) >>
+>>
+endobj
+2292 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 561.793 317.601 575.741]
+/A << /S /GoTo /D (env.nomeasures) >>
+>>
+endobj
+2293 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 549.44 301.91 563.387]
+/A << /S /GoTo /D (env.rawtext) >>
+>>
+endobj
+2294 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 537.086 338.522 551.034]
+/A << /S /GoTo /D (env.transposecapos) >>
+>>
+endobj
+2295 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 524.732 312.371 538.68]
+/A << /S /GoTo /D (macro.nolyrics) >>
+>>
+endobj
+2296 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.305 512.379 333.292 526.326]
+/A << /S /GoTo /D (macro.pagepreludes) >>
+>>
+endobj
+2297 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.624 488.07 323.15 501.121]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+2298 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [370.196 488.07 429.723 501.121]
+/A << /S /GoTo /D (macro.beginverse) >>
+>>
+endobj
+2322 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [309.162 370.666 347.767 382.621]
+/A << /S /GoTo /D (env.chorded) >>
+>>
+endobj
+2323 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [244.687 359.264 283.292 370.057]
+/A << /S /GoTo /D (env.chorded) >>
+>>
+endobj
+2324 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [415.044 264.889 443.189 275.958]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2325 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [206.787 165.373 234.931 176.498]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2326 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [196.326 135.209 224.471 146.334]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2331 0 obj
+<<
+/D [2329 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2321 0 obj
+<<
+/D [2329 0 R /XYZ 307.935 478.705 null]
+>>
+endobj
+730 0 obj
+<<
+/D [2329 0 R /XYZ 153.694 346.32 null]
+>>
+endobj
+734 0 obj
+<<
+/D [2329 0 R /XYZ 153.694 325.55 null]
+>>
+endobj
+2219 0 obj
+<<
+/D [2329 0 R /XYZ 153.335 315.92 null]
+>>
+endobj
+2328 0 obj
+<<
+/Font << /F60 1705 0 R /F25 2332 0 R /F113 1728 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F89 1710 0 R /F114 1729 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2344 0 obj
+<<
+/Length 2996
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZKoãȾï¯Ð‘ƽì› ‡,0$ØCØ 29Ð-#‘Z’Ïd°ÿ=U]Õ|Y–míÀ€Õï®®®ÇWÕLWÛUºúëéâ÷§»~ü ò•>SÙêîa%³\d:_eÖ ¥íên³úOò1•îæ¿wæýøAúɤTx¯¡#]É•t°À8ý
+¼³Ïø\74æP†C튺B™8 ì§Â¡ I"ð‚x_thï«x_H•€/ݿͽ0¹§Ó°ª
+vrz¾U`Ñ®y¬pËWR —%”só…Ø€ #ß¾Ù—=·6ƒ˜ÓÝ>V›~GmÍìv½o:”ã³'íœuà ²”%eÝ´MBÕ^Rßí¶S÷¶KùûšU€ §ý†Ê(.(vcR8ü¶|,(þLz³Ê„wàl'ìÖÞ› Ïƒ€°;øË GÒà*AÛfgº» ¤&…M´‚ V˜xï_ØÄÈT¤™›ïò+Ÿ çüÈMÍ< #yÑj8aÀ/[ЪÌF)Eþ\oQäT¨`YEÆÍŸ“R«„NGýåÙ[0•,~ _ëSÏ"öJšXѧÆå5š3§I¼ `'«4èjFìûW0Øʃ7jËýiƒ¦kÈÖJ”â]%µ
+- Âò¡8íƒÊøá_&45Uƒ=
+vÂ'¿Üä6i«7ŠÇ ÷
+ 0—D³?éJ—`"&ü= )‚›«Ž{ž>Àp˜³äçNänß`ÈkÀÄŸTÈ-,цûÎrôèî
+ õËÝU°Ñ}ÕSCW‹¶è«¦¦:‘î#¢3ih¼ò®¬Ú¸1Ù¡psj.ö]ó,ùÎ
+/=†Ë½"Þrýl©Wb¡ EJI!Õb™€Mž¤"˜…å!Øz™LÊcÈHÚ&èUÿkÈ!r·É¦êú¢^ó¶ÒA¾q\‰1ö¬!
+
+ûó yfjäh+UøÍpdþ¶Ùc´Ú¢-0í½ÝZypf ÒÓs!C™ˆ¼¦,}ÝeïµP£ÞÚÑ¥œ_òÂ-¥ ­y VA,·´©
+L¶`Ï*.ŠuÛLóV6áðË^Çu¬ràGfD¤Çþµ‡Pà‰]nçó»&Ò€;•*;‘*;Hž­í©ã!„*&©»è9š¾oÔ@–è °²Kçi83Ëoø
+Çé5F ›.è-ŽGŽ`6%ë#Ù`.â®kân„îP,Ÿh`
+.5Â@
+gä_BÈ}(?±ªe ¬|&lÎì©ñq)Ø8—%AÁbRÑ暎Ó“ÑÁZ\çw!
+…)èW~î¹±!ÄÖÓ˜Pøþ6We™p,îD‚Éý>æS€T™›=¦Â¬ì™Y^ †ù,–`‹‹
+'åâ¥ÚÜJY„:Ñ¡¤R^ÞGaÙ,¨cS{)? Dîì|ÖäÝ s&AT±RÐÚñ[²l èÝGì· „„»UI×MJ[ŽñC7.ÓQoÔ³7™B™Z‘ºl~€·çI›¡3ÔÔ Iºá¥l¢IÐJÏdnx&sì,±'€î'kïðñŒÏgÙø\¹\/¾VÒ£÷ðþ˜¿Ä³ŠªŒÈ­›zv´œã} ×ÙlQšS˾ŸQáž{è5¼þvÛ–]x»fÔµwÔÜð)d÷Ø–´%¿½P ¥“'¨jÒþr'†•Eý\ÆAI%|Ê×ßM£TrÎÑD*#‰Èú.È”¥ƒáK U‡$”9{9?|]’Þ@Ÿ"Œß.íˆbŠ?O( à §ãóÃŽuZMiРÇÃŽFÍ?'ñ"S.ŽªþðÁg›^g]e¾a||Ju6“á|>&·:b<Ñïb˜S‘¬PóLïx(+iO#½ ™ö±1|C0ôöh Ûº;—z¿<
+~çMø¨ÅfüŠÀ„oXø8-µÄ¬ÃïE‚Âd!»ýDT´5Ïæ[³4ÐóÐÇùíysÐ2ªlÓ´ísÃx¹PEü•ñEáHŸdLm^Løå·]ÅÁ}xCû¯O®“ Þ@ªÃÏ9F#8Û!Ã÷K\ùùe) Ñ~šü<‘«ž ¬—‰iH ¸Á.Ë–K6+ü>ƒ¾ÓÁWþÙåÈäþÄçô‘
+°‡'ͤÆ.¾1Á
+endstream
+endobj
+2343 0 obj
+<<
+/Type /Page
+/Contents 2344 0 R
+/Resources 2342 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2327 0 R 2334 0 R 2335 0 R 2336 0 R 2337 0 R 2338 0 R ]
+>>
+endobj
+2327 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [197.969 654.025 262.726 665.15]
+/A << /S /GoTo /D (macro.repchoruses) >>
+>>
+endobj
+2334 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [404.144 586.002 447.98 597.958]
+/A << /S /GoTo /D (macro.songpos) >>
+>>
+endobj
+2335 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [277.733 566.631 332.03 577.479]
+/A << /S /GoTo /D (macro.showindex) >>
+>>
+endobj
+2336 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [330.611 542.167 384.907 554.122]
+/A << /S /GoTo /D (macro.showindex) >>
+>>
+endobj
+2337 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [173.733 472.428 217.569 484.384]
+/A << /S /GoTo /D (macro.songpos) >>
+>>
+endobj
+2338 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [266.548 317.288 294.693 328.413]
+/A << /S /GoTo /D (env.songs) >>
+>>
+endobj
+2345 0 obj
+<<
+/D [2343 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+738 0 obj
+<<
+/D [2343 0 R /XYZ 153.694 533.2 null]
+>>
+endobj
+2333 0 obj
+<<
+/D [2343 0 R /XYZ 171.694 523.736 null]
+>>
+endobj
+742 0 obj
+<<
+/D [2343 0 R /XYZ 153.694 473.425 null]
+>>
+endobj
+2346 0 obj
+<<
+/D [2343 0 R /XYZ 171.694 463.96 null]
+>>
+endobj
+746 0 obj
+<<
+/D [2343 0 R /XYZ 153.694 413.926 null]
+>>
+endobj
+2347 0 obj
+<<
+/D [2343 0 R /XYZ 171.694 404.184 null]
+>>
+endobj
+750 0 obj
+<<
+/D [2343 0 R /XYZ 153.694 330.239 null]
+>>
+endobj
+2348 0 obj
+<<
+/D [2343 0 R /XYZ 171.694 320.498 null]
+>>
+endobj
+754 0 obj
+<<
+/D [2343 0 R /XYZ 153.694 258.508 null]
+>>
+endobj
+2349 0 obj
+<<
+/D [2343 0 R /XYZ 171.694 248.767 null]
+>>
+endobj
+2342 0 obj
+<<
+/Font << /F28 1704 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R /F16 1712 0 R /F51 1703 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2357 0 obj
+<<
+/Length 2782
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZK“Û¸¾ûWèªÊÂâEÌm·j½•Ôž’Ie«â8$±L‰
+I=qù¿o7º!‘ÍŒ†öeD€xt7_Ý9ÛÌäì·w’¹{÷ÓUÌ
+Q8ífwë™E¯äLÍTj„+ìÌ¥™Ð&ÝífÿIÊzÓ´U¿ÝÍƉßÏužôUëç*©çyšˆù¦6¹ÛVY–ÇÞzlZ™tÍZnõ ºŸ/`!O4Š¤ÁYU_5{¿¢þÏ[ßúÜÑ·Ôs7ÿïÝß/TP,¿5äÖ *d¡Hþ_¯LèlM!2çÆ:ÿA{õÛjÿ‰uŠºÝI}×_“CH}iJ›
+Óª÷eôrY ¿¨w6-ë~ÔÛù¾¯öÁ`Ðú(SÙyû½ÃÅ¥p³v3‹ÿø OT™+öÐ…E–„ø¨Œ}x8„-yMrç•16RéÑ:å~5A"ãr¡”}"Q÷6¬J…Êóñ22Uâú¡È4žJ¦èTŒFóaßmƒêäaž¦àîGn6ë)&×…HÑTÃÞ áITA¿Rã…– ݾ¶©;²Â÷+ßUmy_ÕUƒÐ—ŒA-ÂûeSw{z¾o}ù‰({ú…Kº!Ù@AõåGÖ×ÎrÕÙ¡¾J i'ëûä¾h%LÆ÷%\Ž4+ÛÊw
+_µnžŠnwØ«õÿ;BØ_á>9üf:zTñ¾\â[j@ #Ê:x@"\G}ì›jßÑð’ú×­G°¥»B^Ì\§4Õ#
+D²Ì^~…½æZ€ç%~‘"ç,ŽœÈ¢ç½F‘ #`£ñ&ü¥» ¡mšêÒUÝ/ªýÿ+$Ü3^/œóë¾7ºz
+™=‚óáåüµ…RU—ßõ´ÁB–ÈÁîx˜‡K×ÅxÊfw—¦¾î“O4F4–œŸ«÷Xº×„_3Ãà ‡ „oPr! Àä*áxpòIFÁñÛ¦ã·\¿x†<-§htŒHÕ.”e|ûž^Ÿ.
+ ÷6˜±J˜”÷äÜ?š ‘–¯}O·êë¥{~ûª–»ïçq†HLJyá0`c<ƒÚŒiœ¥ZIÓ¾ZxH%`¥ _R›Ž Vª0g¡ÂL„ÕR'ë¦Ý•ìÁø|0À$u 'ýøm(úýÏWA¶gM
+ñKŸñ Þ^0…éÃõFb¦.Îò”èÊ D"ÞSî»Åm৊Tñk BÇšÊuKà!˜‰G—;‚æ戌’Í®äþ5#êaŸRrgNå?7"ó?¾¨r)df_ÆÏ“{rk½.wUýx;˜N*Õ]:!mÞîΛïV“‘|øï1Œä
+H”Ê݉<¥Hžt!)I
+¥[…>{6œà/8 ¼ØÙáWj„ XÄ/±Œy(’ÌÇ¢¼¨ýÉŠ)0òb–2lͤ£™¿Þ½û²íUN
+endstream
+endobj
+2356 0 obj
+<<
+/Type /Page
+/Contents 2357 0 R
+/Resources 2355 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2339 0 R 2340 0 R 2341 0 R 2350 0 R 2351 0 R 2352 0 R 2353 0 R 2354 0 R ]
+>>
+endobj
+2339 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [290.981 641.793 345.277 653.748]
+/A << /S /GoTo /D (macro.vvpenalty) >>
+>>
+endobj
+2340 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [367.118 641.793 416.184 653.748]
+/A << /S /GoTo /D (macro.spenalty) >>
+>>
+endobj
+2341 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [440.948 618.16 495.245 629.285]
+/A << /S /GoTo /D (macro.vvpenalty) >>
+>>
+endobj
+2350 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 505.395 216.931 517.351]
+/A << /S /GoTo /D (macro.songsection) >>
+>>
+endobj
+2351 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [250.246 505.395 315.003 517.351]
+/A << /S /GoTo /D (macro.songchapter) >>
+>>
+endobj
+2352 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [376.46 505.395 383.334 517.351]
+/A << /S /GoTo /D (section.9) >>
+>>
+endobj
+2353 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [243.4 477.611 308.157 488.736]
+/A << /S /GoTo /D (macro.songchapter) >>
+>>
+endobj
+2354 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [243.4 465.655 308.157 476.781]
+/A << /S /GoTo /D (macro.songsection) >>
+>>
+endobj
+2358 0 obj
+<<
+/D [2356 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+758 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 642.79 null]
+>>
+endobj
+2220 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 633.325 null]
+>>
+endobj
+762 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 569.627 null]
+>>
+endobj
+766 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 551.182 null]
+>>
+endobj
+2359 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 532.793 null]
+>>
+endobj
+770 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 446.734 null]
+>>
+endobj
+2360 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 448.948 null]
+>>
+endobj
+2361 0 obj
+<<
+/D [2356 0 R /XYZ 297 436.992 null]
+>>
+endobj
+774 0 obj
+<<
+/D [2356 0 R /XYZ 297 436.992 null]
+>>
+endobj
+2362 0 obj
+<<
+/D [2356 0 R /XYZ 297 436.992 null]
+>>
+endobj
+778 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 386.958 null]
+>>
+endobj
+2363 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 377.217 null]
+>>
+endobj
+782 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 301.286 null]
+>>
+endobj
+2364 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 303.5 null]
+>>
+endobj
+2365 0 obj
+<<
+/D [2356 0 R /XYZ 250.526 291.545 null]
+>>
+endobj
+786 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 242.894 null]
+>>
+endobj
+2366 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 231.769 null]
+>>
+endobj
+790 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 231.769 null]
+>>
+endobj
+2367 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 231.769 null]
+>>
+endobj
+794 0 obj
+<<
+/D [2356 0 R /XYZ 153.694 159.927 null]
+>>
+endobj
+2368 0 obj
+<<
+/D [2356 0 R /XYZ 171.694 150.186 null]
+>>
+endobj
+2355 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R /F28 1704 0 R /F53 2210 0 R /F89 1710 0 R /F126 1758 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2377 0 obj
+<<
+/Length 2481
+/Filter /FlateDecode
+>>
+stream
+xÚµZIoÛH¾÷¯0hW³6.s›ÒÁ æø2èô¡$•$Â)Tì ÈŸ·‘eÙ–Õ 1‹ÅZÞö½MÌ6³döñ—d|Â*µøÊÃO/Íþ~÷Ëohmg…*R“ÎîÖ3iÿf©Ï”±~v·šý9ÿ¬­kc–ÍnêÕ7œ(WÛVë¦î¿ÓD·^‡]Y}¥=þýï¿>}üðý毻ÿ¼H TÇD¨$Ñ´NAiáf©-”MììnÝÝävÞÜÜZkçË“Í·¡¾ÑóMÄ)7ï·2XøšÏï7ms¨W²¾©š–?7kž×wÛ°Š²nqs [Üÿ»áàЧÔxoÊúäŒeØ—}¨˜k`Ù@®eø‰¸Õn–»©#v…ÕDŸSNEÒ‹ “Í¢<+´Dù 3oYf&SÖe|Rû>¶Àˆq#8ê@n}hå-²À¶üªý6°b_.eC\öeÝà‹% ÒJ~T¡EÐ e_É°¬WññW§vÞÆUüœXWÇWÌâ™Q
+_Î*ñ'|]%!Ÿ¤Êçùô$…›Ÿ›¢9•ªöʆ÷üq“›9Ú“KAza·¯â?_µø÷0< Ñ™ré¿çÀ(øþ D|æÌ ä|V(oD8whß©õó5Z~>ïùíÐ!^pÔ7òD\|݃º³y좬‹ —¶Œ`oÏ¡ñà°ËÏC¿EQâ˜lF†²|)·MU —.è²+°–§Ê€Þ',Š ‘ ôjSºLoiª
+ãf·Z«Â9Ï—N}YŒ¬
+4÷áÓ
+'ËNvci¸âñçÄ$"k‘n| é&?c67`ŔmƾàS ×Ǫq²iqã6ôçžFgœ½Ô™›l//´ƒ„TŸ\ý9ñÉ–•Îq“d¡ÙeÍY­eP¼ä¢üU\‡C…. j™ùÿÈ%ÀÔ2ìD g^Z$ ©PS‹¦ú-jG|
+rüÙ­Õ*Ï—V`k€(·Àû}¨oPCíW.Ï?Åu„û–`ûç±ãOTar§t.ÍÊß¿²*É¥`.ÔÀùd™ƒ:n·²hX+Ê9é…ójsÔˆ|² 6-©ga‹Ü6Ôª-ž ü¨ÊNll8Uò$3ê®iãõ…ð„yR0ÒÙ5õ¦ Ý;C1æÏÆH)†Gp7™¸=ìAiÄãm‡ ó9–F†K#÷TkâËÀº›ïÃÐ~T‹Í_RQŠ-‰§æùûÝ»-´Êt>eãJ‘¸Ô*dÓ³ÈÇÿøΪñN™ÂŸ§÷Ûk×½ 2 „#TpgÝ¿%@ÊŠruƹçTO +þ6ç“ ¹”U£yü;°µ~f Z²©€êöQ@¤<\09ã­¼N癲ˆœãMg%9^S¤f³“—¶–§¼9¡‘SZ3$¾ą̀jÃQ¹’
+QÂ&bºj2(UýþÀ²Â×¾ág8<–U0ßÁW„fiK6ü(Š«°I€ƒ*>6›6`cg[.![“}$g¨S/P 2OúÅé÷v©Ö†¾l¨)xŽ Å¡w¢’}‹÷íËZŸ í<ܤ¼ƒ’Yº•o¿Øj¤Ù?NóˆºÓ\€Z!–ò€kÐH槼HˆÁ[k¸ë2l¹ 0eÌô$ê€Ùû
+[ëÕ:Ã_xÅ,¸õþ^—‘‚ï/““ŽÂæÅ¿äð°ÓSÈ÷CÒÅaáèÿ6ø‚x‰êÕã‡(`À{»b–à%%‰±éd燻_þî¥6Û
+endstream
+endobj
+2376 0 obj
+<<
+/Type /Page
+/Contents 2377 0 R
+/Resources 2375 0 R
+/MediaBox [0 0 612 792]
+/Parent 2276 0 R
+/Annots [ 2369 0 R 2370 0 R 2371 0 R 2372 0 R ]
+>>
+endobj
+2369 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [357.528 232.876 406.594 244.831]
+/A << /S /GoTo /D (macro.newindex) >>
+>>
+endobj
+2370 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [411.827 232.876 492.276 244.831]
+/A << /S /GoTo /D (macro.newauthorindex) >>
+>>
+endobj
+2371 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 221.197 227.392 232.322]
+/A << /S /GoTo /D (macro.newscripindex) >>
+>>
+endobj
+2372 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [412.779 185.332 472.305 196.457]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2378 0 obj
+<<
+/D [2376 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+798 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 649.044 null]
+>>
+endobj
+2379 0 obj
+<<
+/D [2376 0 R /XYZ 171.694 639.303 null]
+>>
+endobj
+802 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 589.268 null]
+>>
+endobj
+2380 0 obj
+<<
+/D [2376 0 R /XYZ 171.694 579.527 null]
+>>
+endobj
+806 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 530.876 null]
+>>
+endobj
+2381 0 obj
+<<
+/D [2376 0 R /XYZ 171.694 519.751 null]
+>>
+endobj
+810 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 469.716 null]
+>>
+endobj
+2382 0 obj
+<<
+/D [2376 0 R /XYZ 171.694 459.975 null]
+>>
+endobj
+814 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 411.324 null]
+>>
+endobj
+2383 0 obj
+<<
+/D [2376 0 R /XYZ 171.694 400.199 null]
+>>
+endobj
+818 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 312.314 null]
+>>
+endobj
+822 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 294.201 null]
+>>
+endobj
+2384 0 obj
+<<
+/D [2376 0 R /XYZ 153.694 284.183 null]
+>>
+endobj
+2375 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F114 1729 0 R /F28 1704 0 R /F123 1756 0 R /F126 1758 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2391 0 obj
+<<
+/Length 2795
+/Filter /FlateDecode
+>>
+stream
+xÚÍÙnÛHò=_! KV›}‘Í
+8g“ã ç: ~{ýf<QqüR'RÕ×UZm––-.ó`_®ÿ$}ü,pw8⻫¤aFÁÓ\u‘ÎÆ"–xô¾²hT/FÝòã[$™Ë>ÊŸ ™”Éßg.ÕÔ.ò²©Ê…GJÌßO˜1Sa4DdK¤ë&¯«r…k´Ài”i–5~…Æ öÓñŽTôë¤DðÏ¡ó9­¶´uÚæ@œ;œpÀ[œ¶‘0”‚_z)¨‘ú#Õ—B²D«Ÿ…€ü·i½°í@
+‡‘ƒ\"=}.oŽ{¤·
+3 'Zœ…H£@Å –»µ“Ž­Z÷Dºu')\o'$÷ÊÒž`2LX¨â!9Ë»µ­k;?’%©‹9ı&›ýš.¬Sš£q^Õ;bÝÂY [MÑ|îp­ƒ|Ì2­±3“|k¦O²}5ù(âŠ%òqµÿÌa‡I
+áüÿšÍba›Öf´un‚‹›˜­›HXÖ‰ÄgMéO"zѹÇæ
+–˜Îü
+ô³r×ëÚ6ÍOhØdš3:å Ûz÷‰ît¬5ã>`!Ç º²Šƒ7c³Ž !{›®Ö¢tQ%"²H²L§…¥—¦D żí¶O=ð‰ìa¨%
+¬ä&üùu¥™´u¯žÕA‘–‹ t£Í#Õ^§h.B÷ûsn‚Ú.òªlhã‹$É$ë]œ¸‹Ø€)“™Áêq|ßr].ôˆˆóŒªl ðÅÛy#˜æfH=:lžÝ>Ty÷ (zÜŠËMê™™ÕùÚ3–ÙÂ.ÀºiI1z…fv–7^”Ðü§>¾nüŒÃù¦T4¸CIU›švU7#ñc"7KpÎÁ°£2Á»ùÞ¤aWvvø·×uµ67é—
+JG/¼L3ûï p!?tä!ý€0 ƒYŠ¾i’`E9>ËçwÈ[zc
+ðmäl æIÄ#«éŒãÕôyM<¯éD/äaÙ«H¸rw@{Q5Þ
+?iaVžJB&ã=æ]×iÆ/…a,ˆ'^Ñ=V„Þ‘íÚŒ‚òé "´Û/m±¦¶V¨Â5x{/ ˆƒ%¼§¸›mÇâ­ƒ6$~XØÛu‘Ï pßù¾]®ð·æa*ƹP4dò;dPPØŠnš6¸¨S í&ö!ݸÛœ,È'b¬3pQ’@Uú7\:3Èdm=ÈÍ R7ek^ì‘
+éà@áI៳X&Û°ïó9°¾Aç †Çÿ i²úF÷߃„À9›½ÈœóÈSG"±‡rˆÔš-›¦í‘RBÑI¹/4X"*}jå¾Ð®¨=?2~‡† µ§µyUP@•4?¦¢ÅE­Ä{'ì¾¹]Ý[Ü¡‡šտ·ï2éÆ£g”ˆ÷Ž6ë"%ù$Ý€VTK$Ñ Ý”-ØAþ‘¯hѽò¾jí:ͺРeðÞ¦î™ññ±Wë³£T4!yÀ'‰¡(fFx™&ˆÆPìúU»L}ünRÀ›“ìêyP×ಫ‹ë±k³‹
+Ýü¯ÇŽÞ¹%‹!.Ì€ß^ΩlttŸj‰\îIåhÊ@ 2Ú;|FíoÛÿÊA¦e/!ÞŒ5”EžyùÂ
+üÔÐx3¤
+endstream
+endobj
+2390 0 obj
+<<
+/Type /Page
+/Contents 2391 0 R
+/Resources 2389 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2373 0 R 2374 0 R 2385 0 R 2386 0 R 2387 0 R ]
+>>
+endobj
+2373 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [179.343 635.359 233.639 647.314]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2374 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [211.366 575.583 270.893 587.538]
+/A << /S /GoTo /D (macro.songtarget) >>
+>>
+endobj
+2385 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [275.305 524.98 334.831 536.105]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2386 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [343.3 524.98 397.596 536.105]
+/A << /S /GoTo /D (macro.songtitle) >>
+>>
+endobj
+2387 0 obj
+<<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [200.649 213.497 485.58 224.622]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://msdn.microsoft.com/en-us/goglobal/bb896001.aspx)>>
+>>
+endobj
+2392 0 obj
+<<
+/D [2390 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+826 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+830 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 650.801 null]
+>>
+endobj
+2393 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 638.846 null]
+>>
+endobj
+834 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 638.846 null]
+>>
+endobj
+2394 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 638.846 null]
+>>
+endobj
+838 0 obj
+<<
+/D [2390 0 R /XYZ 153.694 410.098 null]
+>>
+endobj
+2389 0 obj
+<<
+/Font << /F126 1758 0 R /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R /F16 1712 0 R /F51 1703 0 R /F123 1756 0 R /F28 1704 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2398 0 obj
+<<
+/Length 2817
+/Filter /FlateDecode
+>>
+stream
+xÚµYKsÛ8¾çWèHWÅX
+‡ùÉYRxïà"r¥Â¹)œ—¥¹È LïáÜ›] g¥i²m뺽Òyr_ážHÚë®í©¿nœº¶&ÂŽólÙ EÕÐàN”÷ØЕ‘Zt|Ð
+D%ðæ³»:Ew•:H&ÜõsàÛ%?7wuÕï˜í(g—Ô ÕP‡Ì›ÎÜUMO„ûjØѪ¯RK4Šmwšø€ä÷4®ny‹¡+6rXÔ|^Kí¾Å7ùÿ•ÈÏ;)²ÀN&ËÝþ‚f«Ì* e&HˆYÎœ0ÊÍ9þªRØ9tå¶z¸µ§Ù œÑâ…°­ÇWµ´ȸǗ=šZ*pËíŽçËfCv»˜‰Ï Ý",J%Zj &{m<ýG‹Ý–îarµ`Oà´Ú¸²;¯ßê ÏÎ éˆåò¡Øêe©³(t“ÃÞ ²Äš
+“àÙñB?DJ?‰”9EÊ|)a¢æå·GžÝ³ƒûÑy{„q`XÕ!~>T{ÊfrÆÂp<7d'/ ÇÆ8a³”X&…'cñÖè h£ zë‹™ƒI­ÈdN;þr“©S.h2Ça‡ñ '8ö!ùi<€$™Ì/›Æ2\‹Æ
+JÊæŠûô4Ñ•ëö®©þ[nˆ~K
+æp¯×'y&´qsÆP©‘‹¾<<q©/³L;`×k¥„·\4èÌV›‡:hå x½2diY†ýº«¨U¹$ì’à€!xÊÿ›õPQt§9NƒaX):Hã{þ˜e„ý¦Ø‡4ÛzwÂÑ@Ÿ8×
+ˆðñ%ŽuÏx‚ÏÆqNž!ؚРÉÂýabS…l¾+G
+ÄSi
+¤8=Jüu0;×Ây;¿íD~YHÆ@N”/¶ŠÊD¸cB|áÍ
+Ôœ6ÂL,V¡9–D¥Y3š8]!–§š–%Ï‹-­>ã¤`rR0IÀGÊ+ŸÛ)@}©¢@Y*ùÿ KÈÞw¶ñÒ Š“<«94s=ßo ÛÎ y (0‘ÖM–'Åew
+Viv*SŽÂenÂè¡l¸ã"e¬wÊ·…E1rA
+榘é—$¹ð¹(¿bx`Ü.X¯ûø’ò㲈žJ
+=:wÇê% (Jþ(ÑB;&$Á$cAîð‘‹bï1ÇÈéle¢ÛÑyž
+ª¯BçmõU hMÆŸþrCœUO¤HÁ—ÍvªørŒÓüyœæ“ÖVæP ²—OXÿ"¨F¿G´Q÷Å*¶è‹Y‘&4’‚×æØ‘rp2% D8ÒBX¦í–I+sØ}>â¼ Žé4©ÉÏ à;Þw÷<6µ1Ž-ZKabÝ›c‹ô“؃1¶HÖbò”’ê?“Ø¢mÈ`Ø°—“ìåB/à
+P‚~“Q¤Ÿú+é^kZ\~ßÆ¿>´8pšÚÎ9
+aÒ‰Whõ¨R2sOlRÍL†^Ïm8`C.´©q¶iã‡äAÏU\ÈA:ä+É8¸ÒˆÇð‚ºú6–ö¨&ðS»§ü±íË‹•ò™°±HÏoìøa«<K¶]»§WÇ ÀænTÀŒ ຘ#{eÆçO•y4ÎãZ B©Ú“q^ºxnDLRè9­§Gæ#lÐ=lžød$ÆJ¨­¨‰U[vÆæœ~XÿÖä9³r…éU߬oÆ€HÝl3Nžç|ãó–ýòÁ¬çÎy_hY²„wÊ’éM~Úä,¨ÄÑF—ýˆ¬ðÓ¿ BÌ1Àð¯°?àe™Kª ‘úå/MFÓ=ÇøS+ð·¢!&9t“Nä¯åèÕ•ÿ{3m
+endstream
+endobj
+2397 0 obj
+<<
+/Type /Page
+/Contents 2398 0 R
+/Resources 2396 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2388 0 R ]
+>>
+endobj
+2388 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [436.902 611.449 456.96 623.404]
+/A << /S /GoTo /D (subsection.10.1) >>
+>>
+endobj
+2399 0 obj
+<<
+/D [2397 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+842 0 obj
+<<
+/D [2397 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+846 0 obj
+<<
+/D [2397 0 R /XYZ 153.694 612.445 null]
+>>
+endobj
+2400 0 obj
+<<
+/D [2397 0 R /XYZ 171.694 602.981 null]
+>>
+endobj
+850 0 obj
+<<
+/D [2397 0 R /XYZ 153.694 445.626 null]
+>>
+endobj
+2401 0 obj
+<<
+/D [2397 0 R /XYZ 171.694 435.608 null]
+>>
+endobj
+854 0 obj
+<<
+/D [2397 0 R /XYZ 153.694 325.798 null]
+>>
+endobj
+2402 0 obj
+<<
+/D [2397 0 R /XYZ 171.694 316.057 null]
+>>
+endobj
+858 0 obj
+<<
+/D [2397 0 R /XYZ 153.694 230.156 null]
+>>
+endobj
+2403 0 obj
+<<
+/D [2397 0 R /XYZ 171.694 220.415 null]
+>>
+endobj
+2396 0 obj
+<<
+/Font << /F126 1758 0 R /F19 1711 0 R /F114 1729 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2424 0 obj
+<<
+/Length 3563
+/Filter /FlateDecode
+>>
+stream
+xÚÅ[Ýoä¸ ß¿b€{8Øè¬/Kjч;ô>z-Š¢HnïÁ™q2ÆNìÀöl6Xä/)ÊË™Ïìmû’±d“¢HŠü‰RÒÅý"]üü& ¿?ܼùî'ëœ3§µXÜÜ-¸–,sj‘iÄԋ›Õâ·Þ›«kÎ…Nþu%y’ßW×J»ä—"_M ,MòjE½?]9•ÔW×ðeÝáëßo~ýî'Ld~–r2¤ ¾RZf¼~€!ÿV½pÉ?ˆ_3g¤õÄ=af¡^d*e.ÕDøý©ÑŒdRóx´›}DŒbd̤œ~<5ŠUL§&åÝ[šÓ£×Ÿ6Y÷úÃn¯?|¸Ý tG¯š@°*Þ§RUEørÛ–Õ=½É©§}n»âžë;zUVWÀîcÙ–·›".äÉ•eê‰äyóá€_YQd̺ ¦nw ƒRÉ}á4ÓMç'
+ͽ¢ÎÁ@{,ÉIa˜6(…cܨ£In¬—ñXòc9ˤˆuæhŠÆPä‘ñ8Ö~âOã¨Ñ·-†Xñ€¡ÏBÄ««v»ézr\QÏí¡5ã!…:cJƒk!”iÌÑÏRÈz:ã(8È2¦!—j-íµpBsÜ–z¹vc¼C䔢jzzÈ}pÜæöJ†“À"¬‹ÎúÓGV+zÀ\COc7‡MÆ€! Âæ”—ñð&„wI¥iÑX™×öŽLH¥{ƒ‚¥,[4÷‹þñß?¶ä\îQ…YÅxÏ¥By} žR+R§š9áb>o‰$ÀP ðR ™Š¬˜ÂG©š)Ð~Þ‹kðÐ,® LpF1ßÅÄ&ÙŽÉÒ£×\fé=fV,¦<÷ 6Q7€Á>É‚f˜ÂHÑE Ú¦Ú\àB@è‡53æwd®G°*1òþ°Ø¯Djë
+ lj„¡ÀñýC¾lê–ØãWŸ‰`ÙÑûªÒ4÷„¤\ÒµÆêã^=ºWá>50ã¾ó%àî
+â}q’†+ûïÊ/ž}4ìËÅä)SŸ?Á²*»å•æà¬ðgµw¦ R÷µfúÛWž©î¿Xw9–_O2§ñÇ<_c‚¿ÿÏLÙ'- Ãjõµ,9 ¶Œ¹Hþ¥À-‰cŠÄ!$ŒˆÇúÀaôø¾h¯úq]Qi“•³kÜ—úbâv8#¥/òÈ»WxhúD=!+QƒpؘEœ´ÎФš q¦&¬£Ô¹É´(¾`&Öé~¯Í@§N_¦SÜâråöëôX@á-
+?U 8œÏ:ÁQ
+R ccj,W–w¤„ö‘*ÌËQ~±Âª%¾Éȃw/fÕ¿¥ë ›mAÍm[„sŠ”nÿ%«‰Á„3Ì
+3ìì.¬Òµ <9Ã:Û³ÌÄlZg ‚ ¢øD–Ó©J ˜‚ÉNg và.&΃Ar*p¬Ù^²‰±°Mœð>kY ›ÅÔD™Oe·¦ ¸ñ#)ƒÁ¶tŠïv·³R¢¶Lgü<“)Øo(©c¢N;•dDÈ™Nûg9!>tËÉMÞj
++ŸË|ƒ/Hëxù=Ó± yÓÌ­H:ä&&§2$Ý«¶#€èÛ
+¼ÀšNAaÕŽ‡úürÁP°Åµ£ñö2ÿž@«Üìö™~¿átfÞ¼|y Ï ±Nåújû ݉×Á¶øП˜kù…'怋¡'gR|êŠjõØþ6ÇÌe© a&²ÓO »ÔrøOݧxß·Â=¡Íp_w÷©JêÎ_îh­VnR{t ‡ç·þŸ<oŽÎ÷þøÕÀñ.-·GÎï#Å^p~~–Ss,„È׋¨]×OMq×^zzôùvOMûÅ‹Úkåö`EY´QÄ8Ÿ52Ö¢æ,ÈCέs°[º°Åµ–øI­‡oÞüSÿ¾D
+endstream
+endobj
+2423 0 obj
+<<
+/Type /Page
+/Contents 2424 0 R
+/Resources 2422 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2404 0 R 2405 0 R 2406 0 R 2407 0 R 2408 0 R 2409 0 R 2410 0 R 2411 0 R 2412 0 R 2413 0 R 2414 0 R 2415 0 R 2416 0 R 2417 0 R 2418 0 R 2419 0 R 2420 0 R ]
+>>
+endobj
+2404 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [171.021 492.451 183.176 503.243]
+/A << /S /GoTo /D (section.12) >>
+>>
+endobj
+2405 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [171.839 479.942 231.365 491.897]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2406 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [248.376 479.942 313.133 491.897]
+/A << /S /GoTo /D (macro.theversenum) >>
+>>
+endobj
+2407 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [342.994 479.942 363.052 491.897]
+/A << /S /GoTo /D (subsection.11.1) >>
+>>
+endobj
+2408 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [353.237 439.309 412.764 450.434]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2409 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [421.232 439.309 480.759 450.434]
+/A << /S /GoTo /D (macro.thesongnum) >>
+>>
+endobj
+2410 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [172.758 388.39 227.055 399.515]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2411 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [270.122 376.435 287.806 387.505]
+/A << /S /GoTo /D (env.by=) >>
+>>
+endobj
+2412 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [290.99 376.435 308.673 387.505]
+/A << /S /GoTo /D (env.sr=) >>
+>>
+endobj
+2413 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [329.837 376.435 347.52 387.505]
+/A << /S /GoTo /D (env.cr=) >>
+>>
+endobj
+2414 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [333.335 318.527 387.631 329.652]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2415 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [454.067 318.527 508.364 329.652]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2416 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [307.843 294.34 362.139 306.295]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2417 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [454.067 282.385 508.364 294.34]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2418 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [263.263 178.759 338.481 189.884]
+/A << /S /GoTo /D (macro.extendprelude) >>
+>>
+endobj
+2419 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.158 141.34 230.224 151.078]
+/A << /S /GoTo /D (macro.showrefs) >>
+>>
+endobj
+2420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [228.231 141.34 292.988 151.078]
+/A << /S /GoTo /D (macro.showauthors) >>
+>>
+endobj
+2425 0 obj
+<<
+/D [2423 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+862 0 obj
+<<
+/D [2423 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+866 0 obj
+<<
+/D [2423 0 R /XYZ 153.694 553.015 null]
+>>
+endobj
+2426 0 obj
+<<
+/D [2423 0 R /XYZ 171.694 543.205 null]
+>>
+endobj
+870 0 obj
+<<
+/D [2423 0 R /XYZ 171.694 543.205 null]
+>>
+endobj
+2427 0 obj
+<<
+/D [2423 0 R /XYZ 171.694 543.205 null]
+>>
+endobj
+874 0 obj
+<<
+/D [2423 0 R /XYZ 171.694 543.205 null]
+>>
+endobj
+2428 0 obj
+<<
+/D [2423 0 R /XYZ 171.694 543.205 null]
+>>
+endobj
+878 0 obj
+<<
+/D [2423 0 R /XYZ 153.694 421.723 null]
+>>
+endobj
+882 0 obj
+<<
+/D [2423 0 R /XYZ 153.694 401.231 null]
+>>
+endobj
+2429 0 obj
+<<
+/D [2423 0 R /XYZ 153.335 391.6 null]
+>>
+endobj
+2422 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F94 1713 0 R /F123 1756 0 R /F16 1712 0 R /F51 1703 0 R /F113 1728 0 R /F114 1729 0 R /F28 1704 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2435 0 obj
+<<
+/Length 2369
+/Filter /FlateDecode
+>>
+stream
+xÚµYYoÛÊ~÷¯ Ú‡KÍÙ¸´èCš›]Р‰
+\À PZ[„)Q%)ûªÿ{¿3g(‘Š¼¥¹6g=söóÍ(®ƒ8xûïŸggçïDäQžÈ$˜]"Š%¦â@¨H $&¤2Ál\„¯'_f=£q”ÍuÐ7?¾'RB iõ„é\ }J_ÚërÝÖëkO”™z˜#)ãH™#Žªrm'Seâp^o«7»¥]s«ÝL¦2 í¼¼ÚíçüNþ©åvÑ4ÅúÚ6¾çG¯êªª'2 ïÚ?<"ø Õ‘ŠA¢ñ•ùÃêxþQ ðuFbiÂYÙUöþýéëLjÇ>:áî¿<n½¡ÚãÈHLE MƒÇŽˆh76LU”g扱g*eÚŸ#¢Ü$¼Ÿta׋'5ñ”»8†›˜\E±’¬èÙ²„qu"ÂMS;×Xlç¶u½ýç¬7“Ô:Jb˜LE‰”Á|uvñ%˜„ÀQž'Á[ºrÍÀ}TÁ§³žE1GÿßÚ'ˆ©”ˆÓ„Ê£D«@ß×WGÔÆ›áäH
+£Ip©ÓÈä20‰ŠDîM&œ\§(!L t¤t"i¿?vÈov¥dÂE”hSh˜FdëÉ,˜&‘–)ïyÍq„04" /'Z„;n;W¤/ÇÙÃúVY¤’ü%ú>™Æn€Õ Ò˜W»Á»I¦ÂšÂ]‰pU7–[ ÛeEìS¯\_ÕͪèÊš’‰’aqé<¦ÞvÜ¿¡Ü`w·“„EÕúEk¿}É©ƒ;È:;ž¿£Ñº¹yÅÝùD„õºÝVž&¥'Võ‘@0×Á¯@q
+K(hÁÎ<ß®ùÐèz¶eŽ4Öpã炦nËwßMU¶•ý©ýŽ¬®²Bgc.n Œ¢z"ïQÚD¼oDbSÌIA7ŵuŠÃ»e9'¾—Ìõ¼^Ù–›meͯ+»åiÕÉ#Íé<Á w…UÝv§¶íÝ!ÄxÏßyµ(OÉ©€ˆü‹½×'ˆ"ܲ$˜VÍ\5‘A¢Â¸Ð>‰¾ÝÑýð/“©@a’LÛ¤C†‘‚a©@±õ«÷¸:¤‘Œ“±h(A]QUÎ}Úˆ dyà´‘#ÍôÚL20È»iX¨9ï&¹†gOÈù)ãÊðo¶Y—Hê.ý¾©›ÆÎÝ)žKð7¨?‰ÀkéͲvVÎtøáv‚(±MÛ5å ¨E§eŒ÷yè>¦u¥2üÅ…³¦ø§o¸×Õüõi›[r:—`D1÷MßÚG¿ÝpÊUË+[,ŠËŠýW":yÂ-U¥¹gÒkÅF©c§4Pyb U Q{  ñÄAÐEŽ"¶šLBuj¼Ë…iê”°’
+7ÛŠ[ºÐD—#Vó}ä' Ü­¹wëT×ìüÚªn=gú.ý@µkʹ§áœ[.%dár¿Ú“*š²g|œ=µDòѽ0ec(PZËð_”õ!J·]­vT)^õI¼l¹5/ÖœtZd£®äŒ„î¼Ø¶¾–xä8]¢à9¯wóN-ESÌ;¸0•kOÓIDŽþ¼$†€Ï²Þˆ³d¬B|ÂÙ‡9XœÎi.÷êÅ¢½zi#k­¶ì¸Ñ¼)ªâILõSrýÄ*ûk±Ú»ÿHˆL"ª,rKùâslâ÷í¶Õç?£)¾|¸õÂÙçAE9<NÆP«¦C]’Ù4ƒÐ§À„ô±}dT:$@ À“gŠ–G=G\°ÒÙaùïþ«œØÈ“™\¥q$bï´ÿ¨;Û'˜¢ãÌÃvÅа&Òim{”¹Úªh—>±íVdWogÆ0Ú»¤îé©oºqr7n- š¹í}‹ö"vÖì0‹Œ¦ÔÃÀæر%7í“šsP¦Š½˜‘ÿlyŒù¶k[PjÐ ´VÑi}fÇîCŠ\÷ð/µr$! @º^mJÑ$—û.!%%êà&l¿â‰ßŽ»”@´
+î_ÐK×÷nÌiuL]Ò´%§ÁU¹.Wåý……ü›D"w÷MU:È y¢‡Q•%. c©)¨ætfUÏ Á>ï"¾·”Ò|=t–â ?ÈwPã±{ý‘Û¥CÐh”W¼n7q¸š;•¯-äA¡Û!
+endstream
+endobj
+2434 0 obj
+<<
+/Type /Page
+/Contents 2435 0 R
+/Resources 2433 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2421 0 R 2430 0 R 2431 0 R 2432 0 R ]
+>>
+endobj
+2421 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [163.497 654.025 217.794 665.15]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 637.919 224.471 649.044]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2431 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 607.754 214.01 618.879]
+/A << /S /GoTo /D (macro.endsong) >>
+>>
+endobj
+2432 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [245.348 141.365 265.406 153.32]
+/A << /S /GoTo /D (subsection.15.2) >>
+>>
+endobj
+2436 0 obj
+<<
+/D [2434 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+886 0 obj
+<<
+/D [2434 0 R /XYZ 153.694 479.943 null]
+>>
+endobj
+2437 0 obj
+<<
+/D [2434 0 R /XYZ 153.694 461.705 null]
+>>
+endobj
+890 0 obj
+<<
+/D [2434 0 R /XYZ 153.694 356.212 null]
+>>
+endobj
+2438 0 obj
+<<
+/D [2434 0 R /XYZ 171.694 346.194 null]
+>>
+endobj
+2433 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F18 1735 0 R /F115 1736 0 R /F118 1738 0 R /F94 1713 0 R /F57 1860 0 R /F89 1710 0 R /F126 1758 0 R /F16 1712 0 R /F51 1703 0 R /F123 1756 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2463 0 obj
+<<
+/Length 3170
+/Filter /FlateDecode
+>>
+stream
+xÚ­]oã6ò½¿Âo«
+
+3‹þÌ"ç,WÚÂœ»æJó¬ÆŸå~ß"Vfõ¬€aFá0e˜rá‰Ô!±'×3ΙÓZ`WÉt!gs
+ðõVóËç+Qdq«Cñjî´ «ü”KÕÛð¶œÁ¾àÆó×’I ÜHÁ¤p³ë `þ[{5—RdˆµÞSeQn©Ð^ÁŽûXQY·ò]×Øùa¾‚n<»«¶w±÷ãn®æˆk1¯J~ŽT#„:x'ñkÿùJÛ¬ìü2"ªéÛ­Ê.•ücl«"¨ŒóDì°¿\>p“è-?0µÈ™´Š–Okr2»)[¿®¶¸V•»lQ7_t´4h>ôƒé,NgG§m»¦¾Yû ‹t
+×í°Ç㎤°õµ¶G&ÄꟉåÚšåÑÒ6gÚÄí¹ÁCAª
+•5~éQOÅÕ¤LN›‡)N$©õh¢?þøÚ¾÷Ȫ€S.·Ë)t˜‚Ig‡¨>|8—8÷ÀÅýÑ]}´Ê–ö§õî=œk·«¦ï ñ5VtV‚‚:èU¨/°¼*€ƒrJûT(´>V~ÖúêÉi°u<Jï²ÞçÍ#OÏ¥-²všX=°Ô9ãT A«?áÓÅÞ¸©¡ Nv²ÙÚßvhYöh£ÀÒŠ °~¼*DÛë[ÂÓ!¾j¨¶­›M¹>¹"𠌶QE`;¡hQÐñ?#Vp)qÂ`ú ÒB…’>Ë
+øVúÆí Bv¨µÕ_>Á›êÉT²„ SÜç¬ûvú¡Ý}Ý„ãÕIÚ=žÑ,íD¡âhu1Ây±r;(ŒgÌÑmÊES‘´v(%­
+‹}sôÐÖÛ;ÐíEaa¥Huè…„b!.*D(–ÈJbià;_n"Dû6
+Ìéüv¹küz¿ôgz®:×Ì 7DöqŠÏªÈb¼ .°/¨ªÛî²„ä ¡l'ÅúYý’¬Myï/Û*™sf¥{?M2w,åuš.Û(ð»—ü?U€üÊWΙ}S6÷g8ÀÚé÷¤àä
+-_„ J EŒÄ #ŠæJiôÊÞÁê@¡¶=\¬êfß^@š
+JšhÌ¢·ÒS… )ã©„¾fëÀ#0Æô³¤Ö³ˆ®Òz«—»©ÉQ0•ËáT7ßͱÌ)7NáÕ#‘3_P
+ÎP‘O$T
+;9ÚÜÞWmqÏV¿`:1D„YgöÂåH“ ̸„G ð PÞ‘t¦Ì4~’ð`÷5Šl:v蹆P…¨ ó”s‚z’¨¤VŠ$Q˜&QJ;8òѲ£ÂüíÙ~ˆaà ñ° ‚ÃóäÒ½› ä×
+¬¢Mòkƒâ4El8€e¬Ò™¼·Ð:ÉTÃÁ˜©yQä,—ņ¶9[žœ 0å`øQžLòN‘Ð O&%ä&%nÀ;²£É¦ˆ”–|„(^ä`’ðýs$~¬åó†LË3nËðD-8yä ¬
+…j?óÐäc<—ä§SåGIppä` ‰C‰¡ïÕÇĦÇ,ï'(Yjî4×9}ßËGÑqIÁ¹b :Ž"JOu¼8+À™°®¾» SdøpôQr€ª}x†³¤
+åu§’*AL¹‘:Ix$g
+B™Ñšé ×”
+òà) [rÒáRƒ©tCjð`Ç‹×ŦèßdñQÂèæC¼¿Ý5զćga ‰ƒÿ€í*=¥¦(U£!!¦ànQÅ7!IÙ‡`'’6ÙͬœÞ;„(4ìeŸQN0Œ@ŽƒýÄ×¹_⵼⃡ÿ¸þæ°š×ç
+endstream
+endobj
+2462 0 obj
+<<
+/Type /Page
+/Contents 2463 0 R
+/Resources 2461 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2439 0 R 2440 0 R 2441 0 R 2442 0 R 2443 0 R 2444 0 R 2445 0 R 2446 0 R 2447 0 R 2448 0 R 2449 0 R 2450 0 R 2451 0 R 2452 0 R 2453 0 R 2454 0 R 2455 0 R 2456 0 R 2457 0 R 2458 0 R 2459 0 R ]
+>>
+endobj
+2439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [369.28 531.492 444.498 542.617]
+/A << /S /GoTo /D (macro.scripturefont) >>
+>>
+endobj
+2440 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [243.4 503.707 318.617 514.832]
+/A << /S /GoTo /D (macro.scripturefont) >>
+>>
+endobj
+2441 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [431.708 359.277 506.926 370.402]
+/A << /S /GoTo /D (macro.extendprelude) >>
+>>
+endobj
+2442 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 347.322 232.622 358.447]
+/A << /S /GoTo /D (macro.extendpostlude) >>
+>>
+endobj
+2443 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [237.979 347.322 302.735 358.447]
+/A << /S /GoTo /D (macro.makeprelude) >>
+>>
+endobj
+2444 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [308.092 347.322 378.079 358.447]
+/A << /S /GoTo /D (macro.makepostlude) >>
+>>
+endobj
+2445 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [383.435 347.322 432.501 358.447]
+/A << /S /GoTo /D (macro.songmark) >>
+>>
+endobj
+2446 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [437.857 347.322 492.153 358.447]
+/A << /S /GoTo /D (macro.versemark) >>
+>>
+endobj
+2447 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [152.174 335.643 211.701 346.491]
+/A << /S /GoTo /D (macro.chorusmark) >>
+>>
+endobj
+2448 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [227.407 311.456 245.09 322.581]
+/A << /S /GoTo /D (env.by=) >>
+>>
+endobj
+2449 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [319.737 311.456 374.034 322.581]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2450 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [279.042 287.546 296.725 298.671]
+/A << /S /GoTo /D (env.sr=) >>
+>>
+endobj
+2451 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [370.78 287.546 425.076 298.671]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [255.54 215.815 273.223 226.94]
+/A << /S /GoTo /D (env.cr=) >>
+>>
+endobj
+2453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [347.228 215.815 401.524 226.94]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [280.88 191.904 298.563 203.029]
+/A << /S /GoTo /D (env.li=) >>
+>>
+endobj
+2455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [374.149 191.904 428.446 203.029]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [259.93 181.336 319.457 191.074]
+/A << /S /GoTo /D (macro.setlicense) >>
+>>
+endobj
+2457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [264.406 156.039 318.702 167.164]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [363.329 156.039 417.625 167.164]
+/A << /S /GoTo /D (macro.nexttitle) >>
+>>
+endobj
+2459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [438.376 156.039 508.364 167.164]
+/A << /S /GoTo /D (macro.foreachtitle) >>
+>>
+endobj
+2464 0 obj
+<<
+/D [2462 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+894 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 604.496 null]
+>>
+endobj
+2466 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 606.433 null]
+>>
+endobj
+2467 0 obj
+<<
+/D [2462 0 R /XYZ 333.701 594.478 null]
+>>
+endobj
+898 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 412.259 null]
+>>
+endobj
+902 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 336.64 null]
+>>
+endobj
+2277 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 326.621 null]
+>>
+endobj
+906 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 312.452 null]
+>>
+endobj
+2278 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 302.711 null]
+>>
+endobj
+910 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 242.935 null]
+>>
+endobj
+2247 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 230.98 null]
+>>
+endobj
+914 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 216.811 null]
+>>
+endobj
+2248 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 207.07 null]
+>>
+endobj
+918 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 182.333 null]
+>>
+endobj
+2280 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 171.204 null]
+>>
+endobj
+922 0 obj
+<<
+/D [2462 0 R /XYZ 153.694 144.803 null]
+>>
+endobj
+2279 0 obj
+<<
+/D [2462 0 R /XYZ 171.694 135.339 null]
+>>
+endobj
+2461 0 obj
+<<
+/Font << /F113 1728 0 R /F123 1756 0 R /F175 2465 0 R /F115 1736 0 R /F19 1711 0 R /F126 1758 0 R /F16 1712 0 R /F51 1703 0 R /F114 1729 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2476 0 obj
+<<
+/Length 3574
+/Filter /FlateDecode
+>>
+stream
+xÚ­ËŽã6ò>_á[l ÍáK”˜=Í`ìbÒ@˜ä –Õ¶0¶äHrfAþ}«X¤lªÛòcr±hJ,ÖûEòÙjÆg?¾áþùχ7ovf™5ÒÌžfœÙ ^ñ™˜‰D1cõÌ$)“*™=lgç]S¯¾é¿=üû ~Å™™µ«Y¾ÿá uPh™d 1´_…Ò媪¬J˜FKªŒq1´©êòWžˆowJ‰yù¥\ˆy±ïË0•6eYª_bÚ–]Ù÷U¿)» qUöRY Š-îtÂçëªle6¨~Ô¯oAXË„¥6y‰0rÕá{!º:Lñ m^´ ­ŒË±¦è„ÉŒ–õ )Óùãâ~KüCô¹Y¯Fn¼k«mÞ>Ó‡.Ãí¢ RA(Å”ôˆ=,29oPàé|Uö8ð;àLØÇuù¥§‘ï”Ä¢’ܨ!Jif­‰ÑA†ãFg~D—Ê€ÑÖÆ€=ÍçŸ×U±
+ÔvU½Ú„—íj¿-kt½Ÿ©—7øˆg Øß · —I†òÓËGô‰JèÙÔ˜{”ôçÉùÀ† MÿÐ{´å6¯ê
+¿^¡Ó— ¹‘…w‰Hç¿TýÚ9+œ_{Ø;Ð
+/|~»Ózúƒ|Ä/Iªe÷4Yuôô9tEUù‰ü 8Em "OLˆ‰N¢åÒ9l=_.¡2;®†
+ÿfZ,ŒàõU\L@¨YV}1SÉÔ|IYHq”^àôÜÂÿ?Ri Ák÷eÛÑ[¿Z%D.^0tb˜àâÐ<q•¾õáÊcœœäûÂåðÌŸ
+¼¢P¥wÑ>`9…þŒ?eYÓoðJyÉ‚àK,+½‹wJ¤|ùVÒØy|]Q°ð1£jê|óúdˆ,/ªMz‰»\(tì¾$ÞÙtû-uE±mI (
+BñF>‘žêÑXÈŸM¼*v
+ë¯+…¼U›Ëé °#ÍÙ<·U1E"vyõßD£h<wðPN¸qÝÍh{vYu#!/Í´ŒÎ(NG‘BÕ%ÒxÕdiÆÒ,Üø¡R?Â6»Š7:°¥$GØRX‰î=“VÎÁĦìüDá<‡b•¤.çºÅR! -btÐR?^©»bRyC¸Qà?G å“6ª ÒHS/üjþír:¡äU—R © 8”_Ïš¨„Ec}¯.=~–ÙÑŽÝ3©‡óé FtÞZÔa&ν%­y-ß–I², ­"xG§ îô¤‡šÙuÐôPƒnÜËç“G* «<j?Tm׋×4"wÐE‡Îø¤ž 0SÖ|º+¡Tlø§!µ—ú pKVƨMæER:ó…b$ Ì9×” >"ÿƒ'îH@ø¿Åƒ—ß÷Uë‰÷G¹0úä¬ýùnׂ+p îZ“õ‰œLÅ ·MÏT;ºIAM@{¢68%T®zjÒ³JÞ>Åš ;éX£¤Ç½îY£eÀà„-;Ê+éê‚%¦»LÇeà:\6f¹çÆ£KNKçm·%½ôUt1Lxzö Ì¿P鮧”õee­„Š‹‡º©w­‹I!/ÝÑ3§Ç&oWþpŒL.´M°E”éù÷TY¸o›§ÞÕ#¸zç` &oý±›ÿì©-ßûÂzK‡wM]Ò`7ô
+ñ_÷¼qݲ“Í/<ÑäáØ ìüê¢Ê7n¨›+_Z¯½Ûºó·zº†æIÙKψÃÅ¥,öhXŠû’ü±­Ê§xŠömº®òmëÌ‚™+ïÛüøá¯S½”d±÷Ö0Ê­ŸA ê%b-É%ÞÛ\NOV xܨR
+¥ðòPùºyì€úÐ]äx âzæijrï4›é똧ÎÙÛ˜§5Á©x1¤ŤH]à`:?Õy}¡‘)æÞNʺØ4]h.¹¾ Û¼ {Xôßu*ónª)w¼¶¢-ÄÃh³éÀ Õž‚¬‹¡á¢ØéÈ;ì„í!4Úédä=,ƒÌ¢o¼ìEä5G‘—®¼-›¨3S7½;ÛËæ÷ä#†®Œk@¿ýÓ±D \Âݸ¢ØãQïÆÇhß³ßé8.çŽà× 6Å~Óû{°]Uþ]È”¶yMm_’Š5•]i:œã]°ÝS•ÿ@$$}NžÑªóu…b©-ªÎÝz¶Tðê®h5c†;RìúÀ"̘ðjÄeU–)ÃAξ.ú}Žµ,
+{¨@€4~¸7‘ìÞ“Åís:Õ$j\Ë?bßÁ܈à|ß7[w‡ë²Ø
+áI…kíþÀÇ_2špWØÑÑ8R(_ªU£Ñ®0pv=rR„wŸhÊuÈÍQ+öÎ÷1 —Î$õ…NúõÁç$®HÀ£^ãÑÖ2Zyÿðæÿ@¹b
+endstream
+endobj
+2475 0 obj
+<<
+/Type /Page
+/Contents 2476 0 R
+/Resources 2474 0 R
+/MediaBox [0 0 612 792]
+/Parent 2395 0 R
+/Annots [ 2460 0 R 2468 0 R 2469 0 R 2470 0 R 2471 0 R 2472 0 R 2473 0 R ]
+>>
+endobj
+2460 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [181.505 653.748 235.801 665.704]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2468 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 543.941 234.931 553.679]
+/A << /S /GoTo /D (macro.resettitles) >>
+>>
+endobj
+2469 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 530.599 224.471 541.724]
+/A << /S /GoTo /D (macro.songtitle) >>
+>>
+endobj
+2470 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [170.174 520.031 224.471 529.769]
+/A << /S /GoTo /D (macro.nexttitle) >>
+>>
+endobj
+2471 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [253.86 506.689 308.157 517.814]
+/A << /S /GoTo /D (macro.songtitle) >>
+>>
+endobj
+2472 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [202.04 488.756 292.949 499.881]
+/A << /S /GoTo /D (macro.includeonlysongs) >>
+>>
+endobj
+2473 0 obj
+<<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [291.222 361.982 444.895 373.937]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://rath.ca/Misc/Songbook/)>>
+>>
+endobj
+2477 0 obj
+<<
+/D [2475 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+926 0 obj
+<<
+/D [2475 0 R /XYZ 153.694 643.343 null]
+>>
+endobj
+2281 0 obj
+<<
+/D [2475 0 R /XYZ 171.694 633.325 null]
+>>
+endobj
+930 0 obj
+<<
+/D [2475 0 R /XYZ 153.694 606.924 null]
+>>
+endobj
+2282 0 obj
+<<
+/D [2475 0 R /XYZ 171.694 597.46 null]
+>>
+endobj
+934 0 obj
+<<
+/D [2475 0 R /XYZ 153.694 501.707 null]
+>>
+endobj
+2478 0 obj
+<<
+/D [2475 0 R /XYZ 171.694 491.966 null]
+>>
+endobj
+938 0 obj
+<<
+/D [2475 0 R /XYZ 153.694 429.133 null]
+>>
+endobj
+2479 0 obj
+<<
+/D [2475 0 R /XYZ 153.694 315.663 null]
+>>
+endobj
+2474 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R /F94 1713 0 R /F89 1710 0 R /F16 1712 0 R /F57 1860 0 R /F126 1758 0 R /F51 1703 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2482 0 obj
+<<
+/Length 3728
+/Filter /FlateDecode
+>>
+stream
+xÚZYÛÈ~÷¯˜§ ˜éí“M>nïbƒâ b ›JâHŒ)RËÃöäקŽnŠ”g$Æ/R_ÕWU}u4åÝþNÞýòN†ÿ?>½ûñg•ßå"Ouz÷ô|§„ÔÐ%ïÔòJ¤¹½KÚ¸»§ãÝ¿’§CÕíîM“±©«O÷Ú'%Öu2¨`’~(š]Ñí¸ù/÷ÿ~úó?ãL"÷&£eÂ:O…I3X#FÐ?1Á[û2R
+ïÜž^£™Ra'd®˜àýE”‚æl¹ÈG>ÐÏ|hù|pÚ—æ^gÉP|¥{ñt<yúúäVZ¡•_NÞ3Ë^©Å¬ÌDšñ=Y›3ÅoR© )'lj– 5ûþúÙá®ÄåîNúS±/ÿÐó5й=žûõé¤‚ä ’uBg<ß$¤.q&£“¢®¹pÀ _Np*iŠ¡jl7IûÌý[¼h¼ùrÇ õKWm{ô Dc]¿p­‡öSl lÊL"î-pëýס+.V K]½”ép9F‡[9â c?À|.K6÷A R±Pt-4fÉn„Ími×ÜGÿsAšè[þýÔsã—CÙ•ŸIË:nÁÝ;I\ÅñÕ.à’c©d¢þ¥®‹MMòùêé´Æóá*<–QI_ =—Š ¦Å“ñ–èRóäŸÕpà;å•êŒP»†FÂÚôYau¾2!S½ØïUPFxX\ÌDæÝD
+‡¨x鎥f7²ŒAñXPÏX°F@qCá2³‰ö@Ò ýM:9ö(§‘˜\<¬àzân«¢æŽoOGko»æSaåqX§\.÷€W|²›(Šö)ËòÑUU ŒÏAÞÌZ U ¡Yîí&„j©
+›¡9cgïÿÅ ¼.ï—'þ |“æýºVÃ"ƒ‡€ÒFW !ߤi²mƒ+ Â-ÿ¯P c)çlò§¶éKuØOAxwÛ{3N+óåF®á;H™ÉE–gkÝ7cÁKtn¹ÎMÿÍ@œAmAµpàðRлwŸ+ *P€°64µär®Ú±?ßâ÷0>Ç°å‚i?¬ä88º bâä1 Ó`xcF>€¡)è…Õ–À‚šfa÷D÷Ë3÷IûèÁêô
+ðàQ3¬þ‡,×#0<ù0tãv»RÜð»­*ÓËižnÉ¢N!0pfIuUµ—"CŽH-¤õk…Q{@JÀùÅB·ƒ‰<70]R-£ ǨFÒ¶£€ÂªÙT‚ûRÑ<b`‡mý‘r.8ŠÃÄ—¾p Ä«ÎÓIJ̋Ì…$Ì xËfKËPæ iL9 è”Pç¡Úk4ÓÐYs[0¤’0 ¼à^5ÛzÜ1=¬Âëú²ý1I4ž›†òë
+Ž#JZǬ‡ùìa˜+<Ÿ+ 0I¥ÎOÉtŸÄÿ]Û¤!8õ°@9r‰TŽÝ(7tÀpzþúp·[Ø…!þ–Û£#ÅàJÂŽ‹ÉEšÍ=˜1a¾ùÝbT¯\©D:JêY&ѹ'Â-ùáPç<¨Kö®
+<í¸ŽV¤üZmª(ƒÃ îß>ô?—_Xé¹:évÁDmhÇÜVϤä²AS]]³Î²kR7…=W§%Ü¢Þ×ã±éo™"gE–]LtÛùT(€ØÕuS”÷æô¨`õjK míÅîn»EÒ {y¦¥[¾ß¬²æ¹¬QµoX[= Ãä RaßµcºÇSè|ðL.!Ìo8þ‡2h8ö\Š©ê3êAãÊScé8…R‘, 9m ²p¶=šk@úº®hö„iÐ8Ùp‘¼œ³€@ êßLF.Ïa”»3>`×C²ïŠó
+øÇ©˜ñÓ¤>×£á#eDdª‹€Ð[ÌØŒ§v†õ= ùàŒT ›Ë"ê5ÔÈ
+9â’³½”$í&Ÿ²°ø
+êø2#ãç|ŸrzŒÂž³PWW>—]Ù ˆ–b]¢s-R®ôÃy:»ó&°B.+6! C0ø€kL“¢ N¨. '
+¡ñüFùü.ðæÄ,\˜¡ûuÑ2—<ITTWÎŽ??ÀŒ X‘€î’qÊʙ둅wüYçô^¶©@θ1yñÕ5Ð5ŽK÷‰Vð+Wª¾9µNOàê½ W>e"aŸfzÔ¥èêâtbi‡Ž)¾æ*)1½ƒØðšd¾yMB›Ê=eÑ¿<ícöö!¨ ì¿ØT Æ)¾pü_?Ò–»7ÃóËY𲥉0¨zxöø[´/K¯(>O¨Àr¬âÓ8'Ñ‘°í(!¼ã×ïMt Ð½%Ñ{xåe½˜­8¨Ù-¬Ã
+?Ò°H©®Ëg›™Vƒ@­•ƒã”‡TÁ8Co<¤›Öß mp0ËWP\–ìˆìP1Âìü!“|,9ÒTX:uÕä ¸ðñˆ‚(ªæÊ'8Ó±2#d T—±“0ëSÜü ]¯£ïRJ±Üß·Ü’h˜ñß©*šªmœ£ƒèr¬†‚²ZÜ…Y6™(·Å)žŸ« «5Þ ØíK”uÌóИæqÔ‹zLxô d§˜ Þ=~5ómоíPÖ åýÊT‚B§È¨%ÕõdrOIes°Ðjµ È`ÅB·Ý
+endstream
+endobj
+2481 0 obj
+<<
+/Type /Page
+/Contents 2482 0 R
+/Resources 2480 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+>>
+endobj
+2483 0 obj
+<<
+/D [2481 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2484 0 obj
+<<
+/D [2481 0 R /XYZ 153.694 511.788 null]
+>>
+endobj
+2485 0 obj
+<<
+/D [2481 0 R /XYZ 153.694 414.161 null]
+>>
+endobj
+2486 0 obj
+<<
+/D [2481 0 R /XYZ 153.694 328.49 null]
+>>
+endobj
+2487 0 obj
+<<
+/D [2481 0 R /XYZ 153.694 218.908 null]
+>>
+endobj
+2480 0 obj
+<<
+/Font << /F19 1711 0 R /F94 1713 0 R /F16 1712 0 R /F51 1703 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F126 1758 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2491 0 obj
+<<
+/Length 3041
+/Filter /FlateDecode
+>>
+stream
+xÚ•YYsä¶~ß_1oUI\â
+ío¹i|Îhý.ß(mäRx·™L²,'n…¾¹BfÛOÿøžÜÕ§ª©:p­¡óóøÐÛ?”7}Ъ)¦ˆ_xä4Û€íæ°;šg 9³¹“*q`J÷%ZfÕ‘}½Å¡)=*5|¼Q)B²¹Ó
+²k3=[è§Sí+ rFb£è€Y?vÅ‘:9ñËêÍ'œÛv_¸w
+¼¦„(4ðÂxû=,J¦g£éDé
+1{1EˆzFqêlÇï|.-Š"]ÅA± ×–4伫 $U'1â7 BÑu#î÷ýu¦.ÔN@>­ÙŠ¾q y 
+p@pY‹t[`mXg_±§a’C ÍSÛ8èY±¦+lIúçM[ÃÈC_5;>‡”ULÑøÛž×ä•ê$sœ-ß_sD't_ÊÎŽôÑj“Cž5pí¨A}ýÉ3$F?¾Nœ=ÓÚ¯‘–ÈXZ„Öœ€âšzªð¼ˆƒÈ¨ÌUbb‰,F‘Ï!,y!¿Ê."éR
+»B)v$í)ÿЕ[ ÁØW\ZÜU',ïâJ9áYõ Œ³dè‹h&<ÞÏ’ v,\›‘ÿŸc‘™N¬U—ò䜞äé…
+Ã%'j
+0…O±¿y|Wí·Æ+ÎÃ[ÂY(ÿÄŠµIjô%pYC¿lI8Ћ±Ër]•_­‰iíB­Y[®å2.|9¼C{póbC`Ž›Úz^‚éò5ŒI°ØNå \iÄöTt¸—‘”ö¹© cátÃõ#¸þ†AYINBMtï@šaÖðŸA#ÄSnk˜ÖuU»GÆ «(Ì<^&¾2°Áø—‡+)l
+endstream
+endobj
+2490 0 obj
+<<
+/Type /Page
+/Contents 2491 0 R
+/Resources 2489 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+>>
+endobj
+2492 0 obj
+<<
+/D [2490 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+942 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 568.554 null]
+>>
+endobj
+2493 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 507.492 null]
+>>
+endobj
+2494 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 359.63 null]
+>>
+endobj
+2495 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 265.981 null]
+>>
+endobj
+2496 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 215.918 null]
+>>
+endobj
+2497 0 obj
+<<
+/D [2490 0 R /XYZ 153.694 188.272 null]
+>>
+endobj
+2489 0 obj
+<<
+/Font << /F19 1711 0 R /F16 1712 0 R /F57 1860 0 R /F94 1713 0 R /F89 1710 0 R /F105 1727 0 R /F73 1707 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2500 0 obj
+<<
+/Length 3189
+/Filter /FlateDecode
+>>
+stream
+xÚÅZÉr丽÷WÔ‘Š(Ñn3'OÄŒ=1º8Ü>P,”D7—2Èêný½s¸Tu·n¾¨°33‘ùr’ÃË!9üåC²ûýåéß~+ô¡Œ«<7‡§óA•&N sȳ"Nuvx:þ}L²¤?êáßO ›÷;ã$…ñä i’Ä™*—Cz8ä÷óãÎt4¿Zl¤Q?><¦etj?&ÚØÏ^Üø ¢W÷ÜF××]÷Æ=gëÓÄ»›±ïë{:j‡8j¶®nfØß~~H‹Èò¶4úòj9à:‘‰íI\UÙŠø´
+´gnËmPi„9Ô?=¿Ö³oY'ƒíä×âo"r®fu L+2–ˆ½›ì‘›SMd »p6|?tŸEµWA¥c°TÑåáQEŽqôs{"rSæ,E*«=•d½¼ˆåŽSÔ+7q³_n2sƒË]û|­ß# ¸-1RÜ?œ¬»ÏÓ $$ilŒb¦à4Ôh“j¸ÀáÔÎí8L 9CZtâ™ÙvÉ:¯²IæÖ+ á‹Ì“P¨ù¹µ2XûO°Žpo<ûñ’±õwÐ…a²12²&]U|È*›2eÊñºýÚØ ’üìÏò¨=ýamùÇ"£€a²ÝYÚ¢Vµ€hoëe$ª2çÅ'†I;qÕVQ%œvÿ”ÙÝCVÂoª™‚Ÿ’àGçl’ºØÚoI¢=òŒ(£ã©Ûè>q﹞ëà QbÀÀ"%!À 3 gÿ{mo.uîp²ç"¯â,Ùà“dÑ70{Gv+½”TQÆi^²,‰sïÀžX[ Å™Tä$Xv¹ðuxÌ
+QÛÅÞ¾¸Ñ›F;Ç?–%ú Àç¸*”÷ÌÏÑ£‚à6}Ðû»uðîÃ
+1?s° î¸X(ÞH)˜{ÅâÀ¯|µ®i'»Û¸“qY .‡FÝØýX¹À}&™ qëk1“ÅÍyb—™­³8-ƒl×ÙMÔ—Š1ü„ƒè¨.Ü<lqíÑ(~—ѧy¬¹¬ßñ¤
+ÐöÄ7ÆÝ
+€‰“œxyAc¥ƒb 'U¹¾sè±rCÓŒÛd;“ % Äý-Øÿýt¨Ú¯²X½¹]Œ’0¸\:—FëUî&N²ø‚JDšÜœéS¦$¬“è2ÇîÚËúñ¼™žæÑÕ/~ν˿$&V¥h×Α@ ÑCví)¨$ð‡Æ³“$³òŒ” p—›ø®¢„ •l·~Â)Äh)âÙ¯iå‹ë4雵 Ï]žÇ&S]Vq*ìéïî¼Ízë?Êb©Â,™jƹôr‘e»X(@î:Ñ%w—À;ßEåÁþ$§Yê<¹ä¾ÔüÃ6+ È£ô™Æ]jÓRùhÓI°ôgòÊÿÁCaÀ Sú`eÞñ/`^s9À>¸íž7iÆݨÁ±NS C„¨{Š'9ý†~Ê?5SìA¦Î‹X{Œu=égDµ–”ïäÃSŸ‚l¢Øº›ÄŸF|vë±C-â̹•ŠºŽk` ?m”ì
+Ñ_:;‡žs(Œ ìN#ÐHe,ÅJ ¶í`±î)™lšÀm7á
+zŒt­Ôÿû¾ ØAJ>ûðÂY’K¸‘ÚMrŠÏK_VA V™¸w5þÁ•·Ž"…œ£t:¦4Å#J¨„Éšä29Ø*çÒ,üö£“@”[«wŽÄ´8ïQTø6µÒª"äB£h‹÷C“=(¤à¥r% ì‚‹µ3?.aEŸ ×Kº¬@AJ;ÉÆ»I¸¡«%¼%™˜pAïÆh„é,ÛM)¢Ñ‰³J^çë4µØA‚^<áºâRWŸÃçkH€QåkŽ’˜§ÒçO‰Ïð]JŠï„üO^ýÿ !‡¸ÅÜBBóŸTïxÉҸȾ F ÁHÈøµ!$™¨Ñ>š‡e›'-g»­ïÕÓöõ'TùSdt¼ ´Þ§zFÅE¥ýã×ß*x@`8¨dJÏ}âç°J¥ Iò‰bRœ­;¸“ò,…\&;Ò£/ž=¼|lÑ•cc|TÄ ²îöE»@¸NâRßÔÓDô8Mä|lѳ€ªVò†Á¼SŸ}@cyYQ—&ñ8¶q ÈCæÿ®‚Áwˆªâ²ûç°‘*!Á¥¬Þâ9Û8•Ö—ÙA!Ýië” ¶¼>¯ê)"-¾1ïø}±2–üÊä¡(ïE*(‹1É&R6âB ¿üáÏ’ ââÞÖûú—C¯)öl½EÈ=/¦˜y½r}ÖêK}ýI`ø6ÚWà+ªR*¿›Gð¦ȸÔ4°!xý†^ѧ·õ*!ú§´Wè9zϱ8™Ë (/þi%*rC, úB×-~æ>#ECÕÖ˜d#]UŸ;îб¸Ès~í0—Å0ÞÎu™ºå×@•E—î*‹äQgšø”ŽOrŒÿ_€sÝ'‹â¨Îñž|\åeœþ©O›ŽŸ²DÑ™ZêœSãÚË,åKq%¡©èÿFöXhâ1¸–¶ÃÛ¦Ú…z(p=ƒ”<Tgâñ—ÒªZߺŠÞUúQY+%)æ_åɸњMÁ¨oLΖRDTXBDš°þÑS6ˆ!ä+û+˜å• î‚\>ØÐÂ
+†¡güÏ€oéšÉcå è
+L£ÿhE¼¶]
+Ü! Âò‡Ô¿ŸÃ¿HTRÂz¶
+endstream
+endobj
+2499 0 obj
+<<
+/Type /Page
+/Contents 2500 0 R
+/Resources 2498 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+>>
+endobj
+2501 0 obj
+<<
+/D [2499 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2502 0 obj
+<<
+/D [2499 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2503 0 obj
+<<
+/D [2499 0 R /XYZ 153.694 400.448 null]
+>>
+endobj
+2504 0 obj
+<<
+/D [2499 0 R /XYZ 153.694 359.601 null]
+>>
+endobj
+2505 0 obj
+<<
+/D [2499 0 R /XYZ 153.694 322.74 null]
+>>
+endobj
+2506 0 obj
+<<
+/D [2499 0 R /XYZ 153.694 263.96 null]
+>>
+endobj
+2498 0 obj
+<<
+/Font << /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2509 0 obj
+<<
+/Length 3065
+/Filter /FlateDecode
+>>
+stream
+xÚ•ZIs춾¿_1·PUMàV9%UvüRNUº¸ì(f~rÌåIú÷éFwƒàh) ˆ½·¯(ÙwÉî_þýûã—~*Õ®Šë¢Ð»ÇÃ.‰ë*ƒ±d—îÒ²Š‹]‘—q¦òÝãy÷[ôõp÷ ò$ÚÛiíÓ2Û¡§žGÌ‹i—¹yê ÷üût÷ÕѦ©£\ÇžçÙ‰~Ïô<ÝÁð+¯þ=QÊŒ¶?ÒwÓ¶fâó ^‚‡q8ßýçñŸWô¥qrEž.â¬,ˆ¼×fp§Éûæ.f³§®K×´æÛy4ŸLO½Ûk¥‘ùs±ßïò"j:˜’UÑLóÖë¦|ÝŒ®[ÑuSÜ“º§a[CŽE³({¤"Sy¬ÒŠhâ“hjÎØÒ5#L[zäÚÌÌl&šò¾€i?˜²Þ4æ=kÁwÜÔ± fΧa9žd¹÷Ô¼4ãlÍtKJ[r2«¼fîxõ2W##Ïwºé:'.èsL†INÀ_=`2t6ÝàÄÝÏv>]Íܪ­;)ñÞÞ’vi§º†_רØÃeõvÒ Ám MêX§lj¿ÞUe4,xZïRÐN• )YõØðÂld~¢¢3_ÑÂÞiyêlkúÉÉ(ÑÎ2qo/jC;:Ú±ñïq8ŽÍ™>ÌKk.|&* õ]FÐëîõ­,7Ôåuëœ-í2xíïvO"«¢¥ß›‘š #µ~ƒÂ¥ã»]äÑßz1]FÍ<›óe¦©Ü{|¶“á=ú½ætÝàô®üáýÆw¨*¶TUe¬ë’¨
+Y‰d5*VVb/WFÎF»¿gjú=5žm×Ѳf™‡s3Û¶é:¦y6ãÙöœðêöXFš?Z03±f%žÞ$£ÞRQq®<bÈ !†8Þ«èçyÿì,›ì{ä«‹%ÓõOÝæÔà|šIC£i¥¦ÄcQÂKa€öÈ“=1|Ê
+ã@#Ñ2Њ„cùcÇF'oB‘Öv HÞD×Zpø>7‚Þë§.|˜
+’#jíih5‡€úåÂBç†(ûL誳"NEJìZÁ¶9›&#q©Ç¹"ãl çÞk /ú+ÒA”,p äþB£æÅŒ­Z –‚`ù:Š=Žt…ù& ¾Õ½4óc{…»Û#§`£_QàŽS*g ¢\i$‡ü7c©€ÃI0lzh¶/*"/úöîFiŸäB÷Ù)†Xõ®ã»ÂDÇi¥¯œÞÇHSþH£ª:δ”wl!ÔwQjNv—cgÿ¹"ú©PÑ8¨õü±ìç øQr¨BïaŽ®¨Â5…Š·Áüa–T€ï,ª˜7ݶU½%þf+;”b«Åƒè0bM3‰ÓEhôvÐÙ3=ÞD ¹h‰±LÓb&+‡&Z¶5«ýÖV$æý(‡.ã<Ëvª(c%Þ/ü|2+5O‘"Q{Ÿ«5ÇÑc=Â#ŸB#AbÈÍì)sKÆ"Žycæ×d;›þ„¥ª¼ˆU¡7ùX¡Ãì t•±WêwI! æ¥]ŠaÔ ì
+ ã ±¹!|;Õ+ò·Çb\¬2ªtûޖΖÇ:áòMÛôtÏt[aÁo—¦\lK¹$ˆýà'ç=ðÞ‘ßKœ–©ãþ ãO±¬ÚÙc#tÁ°”Qp[" ZçÝ&"ßR¡t¬µD¥&˜OšWÞ
+ õqª¸°³)ãUœIDó”«Z0OáþÏXR’Æyá 5#—•×þ{ö§¤SJêçÐzw4´×½ö¬kñ '$š|Pp6Ì|ž ü’!¨LŒJ¥Aò$‡­[Ò.æCŸÕI,q¥Ô¬!‰ËÉ;@ëbçŽëØ oкqÆ"*Ø,âøÚÖh3ð2…”Ú¿ÖD×gÒìÅF9‘‘TkŸVêh2í:,¹æÉþk¬b¹ºÆÝo󲥧8 éåW$×ËÅáMÚMÑæƒíÒ5ãm—sås²¢ˆZ;¶Ëyrò½/ìaØt’8 OƒÑ€À,’2¢å µßo_!€ŽË…D—  ¾·—T›4'ãÈò<.¥n
+ÒíkCZ•V8|Y“ë’r%UºX.°¦…ЇP†5P+“ª”Ë@‹.ƒÖ¡*véü ¿Ë…§²Œm~ÆöCO%
+endstream
+endobj
+2508 0 obj
+<<
+/Type /Page
+/Contents 2509 0 R
+/Resources 2507 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+>>
+endobj
+2510 0 obj
+<<
+/D [2508 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2511 0 obj
+<<
+/D [2508 0 R /XYZ 153.694 620.623 null]
+>>
+endobj
+2512 0 obj
+<<
+/D [2508 0 R /XYZ 153.694 550.884 null]
+>>
+endobj
+2513 0 obj
+<<
+/D [2508 0 R /XYZ 153.694 471.93 null]
+>>
+endobj
+2514 0 obj
+<<
+/D [2508 0 R /XYZ 153.694 402.192 null]
+>>
+endobj
+2507 0 obj
+<<
+/Font << /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2517 0 obj
+<<
+/Length 2873
+/Filter /FlateDecode
+>>
+stream
+xÚ•YKÛ8¾çWøhD‘z`od³Xìö°ÙƒZ¢ÛDdÉCIÝé¿õ¢n;É^,²ø*Öã«*:Þ=ïâÝïâ«ï¯~ù-OwETf™Þ=wI–EÚ$»Ìä‘JÍî±Ùýg_D‡ÿ>þ}^uµ$ŽÊèñ.Ù%yeËÚ3¬ýãxø˜ÆÉ~<Yn4nÉÞ»§it}ÇĪk~é=·§Afö´4^–þéûg_¹ãþz;ŒÞÕ£mx¶“-këÇjîôSwPåžO¶²Ô:ØÚãÝ®¥ʼnÞÞIg‘Ê3¾ÓÓAû7Ø#-ö—j´öÇ t ø®'Õý…zÞ=Ÿh.1 Ž—Z¬j;<0‘ïK[¹g×UíM˜|êÛÆÊ™¯§^¸jq¿Û7SÛ‹¥&J“‚/F'ëT/’ÆÎÔÑØO(vlýÃÕ¶dú¹’Ëb§jitüµß.­«ÝȽg‹[_N®Æ‹!-b6`ù“JG©)™ÉÖÝX‰íhܾn§ÆuÏØMÅž FXë )T9
+W›ýÐóØxªF^°9žÆÈ´`ärø«­‡óXc0Öwí›ÌêxVïï0¤‘f–«sOìjË“º9)u™„Ì÷²MtøhŠ|ÿGÇäaªqÖI¶«‹7+ƒn8ë7u]Ý£Õóezö:„ãì- Ù^"V‘ÖÉ-ɧûŠä¤öîÈýW‚ê„Ø}X&<å¾'6š7‘Ý1Lr²—ð¾EœÝÇDE‰.á«£Rk†¥ò»°ôN ÄH—9_呸*Ëýo‡B†P¯Øî#J÷*¿žzkÂÝ6›<v.ÓSë†ïáí‹È\`d6hwö•g¼ȬØlà!’|E%7˜Ï³È¤â¦¿ÛÎz‚…\íÿijkl'+ÅÃÀÑ÷g&î,´±_(hWÆì?/ö˜Gh\ñk^]+G>±_0y
+9W_WƒPØˬýbÑB‰¨æ_“‹
+x÷¹%¹R &§ÊÏÔy•·ü¤¡Õ¼Áísž9¯‡¬n‹ƒ &à_ €ž1Š.£T”¦XÁUÉ(úOJó‹ý¿Irò¾êÆ·ïáêÇm4½ÙŽ¹Z„‡o}+Ì4/#•K™ò«­!z)yÐÉCT†ÆÅ#= *ÈåáÛr$l¸'6‘‹jRƒ€qé3KÞÒÛí]Ïß×CQ¬ï~ƒû$ÛrŸAššH~$©® q Oל?ÈP5Å~ƒx”é«Çè>½ñ—rÔº‚ê‚ûm…¼¾¢ —ñþÓ7<]ýÛ˜z­‹¥ô.5yLøõDå
+½¸ð&X?l”“…í~Bìd%JGºdi% ’;>Ä¡4t
+I§%ƒ³£~ž\ëÆð¼×5<ëèÆŽŠf¤IcòJXñ„ ju ¹®«'z$ÀáËä/½<ñÜrÊuTU:Ý¥I¥×79”7À¸—7ï(qj%ì•š¡ñ×Tñp”¡¨àŸâçç
+êu&2Ø$ËÚ+¸R5·=³0×2Ud2‰ hŒüôöÖOøü«ýg0϶Y䨦óÅ ;H}‘9=Ú" !aYoÂN1ñx5 ÓÙ^m\÷ƒ¼5Â%o‰]°«t§Ê$ÊbAŽÀàë­Añ¨Ùœ’
+¶L¦**T>3™2“˜ XÅS€Ä!v(Ú©¼dõ¹M²ÆQÊÅ”ð£È.gtWb®›yóÊ &!áKlâE:w°|{•DE&Ù¡;‚Y;©Ö‘Ø“SæR“…õDõümP}œàÌ£LE2|ëÇ¿³øƒ×§PWOž·´óv?¥›Hqøc
+X ÿé ¦Zà^®c$P#ŠM“\Qüª7ß¼wÉùÿ¡0¯âÏñP ];Qô+$^!Öê:|гÿÛlŸ¡“²ŒB¹×ƒ÷I¢(Ø Ñë˜,N é—IÄ`Å)ŽóÿW§5XI8ò÷á)ßßIà·¼0RJZyª$E}²!®ÈuÂ_3ŽŽüS]HJœa=CX†ÌkÁr¿w±¨Ü
+endstream
+endobj
+2516 0 obj
+<<
+/Type /Page
+/Contents 2517 0 R
+/Resources 2515 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+>>
+endobj
+2518 0 obj
+<<
+/D [2516 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2519 0 obj
+<<
+/D [2516 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2520 0 obj
+<<
+/D [2516 0 R /XYZ 153.694 598.705 null]
+>>
+endobj
+2521 0 obj
+<<
+/D [2516 0 R /XYZ 153.694 483.138 null]
+>>
+endobj
+2522 0 obj
+<<
+/D [2516 0 R /XYZ 153.694 392.229 null]
+>>
+endobj
+2523 0 obj
+<<
+/D [2516 0 R /XYZ 153.694 287.87 null]
+>>
+endobj
+2515 0 obj
+<<
+/Font << /F73 1707 0 R /F105 1727 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2530 0 obj
+<<
+/Length 2427
+/Filter /FlateDecode
+>>
+stream
+xÚµ]Û¸ñ=¿Â¸'-óDñCâõ%w@rHчË] éƒ,Ѷ°²´ÕG²{Aþ{g8¤líÊk_>™r>8ßCÇ«Ý*^ýú&ö¿¿Ü¾ùñCfV\2!u²ºÝ®¸L¹Ò*e‰P«Ûrõ¯ˆ«›5牊>j{°ÍàÑUÛÜüûö¯?~àfe˜Ñ‰v$Xs ¯¸#'€ŒŠIä@îvooÖB$Ѷ­ëö&É¢¯U³#ÐCç
+âÀ†ÇÁÛí•äÓgä“põ$Kçòõ„¤@ü”¥œÖ„‘1áR¦“Œ0>Çœ_â”
+]r‰Àt;î«?üÊé÷ãèÆ;…SØLE¾_RIÊ2ž¨(Iu@m ¶¡ïM ÷qk‘ú#T2ºî£¸=¸´ï{èiç
+ô]ÐëH£˜Ǿ+½ºæþû·qªX
+tgH#¥Ï#¹/„3W‡Ÿú©«
+\ž²\Š9¨=€M‹|uö?#”@v3Vu9q IÊg8öZž"Ñ3~’èNŠ5$Ž>”£¬–šC­YëUÂbì˜Ê3! ™^­ON¹ð[)¦À#Î¥$øû .W'à;Ÿ.c÷Ö'BŸ;y PÎ^3ôÚ
+.{ƒž¸–ú)\L¾En[†¯´v—
+çšj*÷… .M›ÈÕ&z `ÔéÞRWG*ëSãò8|=LÉŽôÕ#-\#»‡¶ó œÓç´žNE¼õ5–ý™ú%RíòìÿV¿fØŸüÔ«Ÿ9Á\ÃHé
+
+rj2§Ò ŒaŠõ32d¾> µ)§-È„akÎu¯EôÉ^.gµÞÞ¡J¨Ùˆ†Nwðù+4ÎS?\VÐ{k蚇ÊöÇ . M9Cé[R|äâÌ(å¹Ö‰d&ÆZ]VfÂ#ãᙫ,Ÿ×Õ瞸pÚLžµl‚gpYW+|g65]d— iØr¾ =DZ^'JHùÅàw(á<ÑÎký0ò3”C³8Î^í‡'áE}Y2—ýŽû綞â¯
+®\¡pI çŸÝØMÞÄÅUœèÚaEÄšq“ëFF.=Õ–²ïé@âÂÏÈãXã‡Fãg¬Ó-?=èEœ
+‘ðó® ÓòÿßUû7¨ⳃ¿O?ä²ÜLéADîuoé-µ
+O¢áùiêÁ Üèº`v(/<• Çú‡Åûh©Ã2*ÄC¦ÎÝE-L]u€ KVñϧ“ߺ!ŠV…/…Ø ²寓Ø@â•ÐªÂ`$SŸÅ½È³(ÕL«If ËÆ~­¶/âó9B[spº`»ä*òÕöì­½ûB^‡Ÿ#ämÕØÒíÕ½½’§Xâ‰I>½Ì³³uþø?¢3ã'—øá¿P\NzŠݸHØ#Ì(«ë(‡«¼ƒYº-pùnÒݵ¬ô+eÿ”ÑÇ퇪¶ï«~è¿áeX?<}ÿ†[¿Ó÷[^`çç6¿ÿö}‰½£:cž^wÏmuím²«\`™Þ‚…Í9/^ïlkª9LGpñ,(ôÑ'³ÊûÛ7ÿãLÿ_
+endstream
+endobj
+2529 0 obj
+<<
+/Type /Page
+/Contents 2530 0 R
+/Resources 2528 0 R
+/MediaBox [0 0 612 792]
+/Parent 2488 0 R
+/Annots [ 2524 0 R 2525 0 R 2526 0 R 2527 0 R ]
+>>
+endobj
+2524 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [197.102 560.75 216.806 571.543]
+/A << /S /GoTo /D (subsection.15.2) >>
+>>
+endobj
+2525 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [295.361 480.495 320.046 492.451]
+/A << /S /GoTo /D (subsection.15.10) >>
+>>
+endobj
+2526 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [429.388 448.615 449.092 460.57]
+/A << /S /GoTo /D (subsection.15.4) >>
+>>
+endobj
+2527 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [182.426 361.497 207.111 372.29]
+/A << /S /GoTo /D (subsection.15.15) >>
+>>
+endobj
+2531 0 obj
+<<
+/D [2529 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+946 0 obj
+<<
+/D [2529 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+950 0 obj
+<<
+/D [2529 0 R /XYZ 153.694 348.553 null]
+>>
+endobj
+2528 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F16 1712 0 R /F51 1703 0 R /F94 1713 0 R /F113 1728 0 R /F28 1704 0 R /F114 1729 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2534 0 obj
+<<
+/Length 1849
+/Filter /FlateDecode
+>>
+stream
+xÚ­YKsÛ6¾ûW°“C©™ˆ%|Íô¦M2éôÐI|èL’-Æ|¸$%Ûõø¿w ÚMËå‹€à÷íâñíò•ã;ŸÎü—ž^Oß©¡j‹_>½??ûå#cÒ‰½$ ¥sž9ÌžÏ' "‹À9_:ßÜïLH}}ÿîj™Í~œÿùP'€0ÌaðÂD>â€÷‡jÕ¢Í%Üëµj×jÆÜÚÖg<rÕϵ¢êJ•ªN[]®°.Ý”š¯fsèÖ˜Úw_È\½…ŠLÜF— ûq»Ö •Rè"€³é^
+>“ ãcãø>gu®>Üè¦mît4^ÓÞÞßá»/êß®Õßéâ2])z{O¶íÖÖ…µLßß½h_bíãCöqßó%ÛµOg7ø
+E®ØxÒX<)kêDà82ƒžÆQßÕ8‚íCž6­Îs‚!gÃÎÙ½qTDÃÀw?[»Vªm¨·.Áô4×ÿ‘S0V•}¢˜.6ðEnž¶Í Ä]§8ë«þ—šL±2ñ»³êå@,£ÀK˜M-g%ÂYiÚ`®ty0ÎF´ƒø´8»³ÝÆD/>2ºî@wR{´N„¡çûÂêïéD«šv*ˆ'CgàT0
+Óö¢ø"Ës´È@`“,~*Ü
+endstream
+endobj
+2533 0 obj
+<<
+/Type /Page
+/Contents 2534 0 R
+/Resources 2532 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2535 0 obj
+<<
+/D [2533 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2532 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2539 0 obj
+<<
+/Length 2005
+/Filter /FlateDecode
+>>
+stream
+xÚ½XÝo䶿¿bCÐ5pfÄ/Q*Ðâr½$m‘ÁÕ}ÊåAÖrwYk¥(ùìþß;áöËk[»)ú"’#r¾8üÍÉd1I&ß¿IbûáêÍ×ßåj’²ÜÈlr5Ÿp-YŠm˜zr5›ü2Uüâ׫~ýçj’±<MU˜š°Tàæ|æRýëÃûÚ~éšGØ¥¥{B.ãRlsG!â!eÓ×]–u÷ª,
+‘@ˆs£mQãÄ€ŒÊÖ‹n…ø·Æ•› zÒ²ÚdÒÂ0v?}ÿfr™¦,IääR€BìÙaëÛëæî(WP0Ÿä ŸHQ?X›–|‰dJšÉÕ
+~SùæâR¤rÚZoÛÛ ‘M-
+j|åK$wÕ=Q*ë=õÂô¦*:WÅE×Ð
+è/¹˜º[9]6Õ,’º¥¥NÄ„aé:0³©Q¥‚>¸ÒÕ3´áÎú8îhúSŽÛ¹4ê\WEÞ½ëØ‘8䇆ôTd˜Ò§„=„Ë“Øy!T ':e)—$ð‡¦˜áîŠéÇ‚|‡+ÚÊùÊþÉLjLB c<ÇÀh+m°M¤š •î‹º±÷·EµßÏ++òœÉLîsX%êxS,,)IuÛ„-!Š]½ !LJ”ƒ ŠÙMež2“hºŒŽò¸r*ûÕëhÕQ1Š+–Ë|‰é Å3–ñ_üe¼J¤L%æDeÂÀ³û‹`ÿzû’™Z0©ô™fjˆxsàVßáŽßWqÃWE ;ý4Ì9KÄá¹RŠ¥˜NMÑ.ú
+ctõ‚–þ%4¤“sÐ|ㄇðÕ¨p¸y8]g]ÄLÈï”PùV*ø±ŽOË¡Hýÿ;>h9ÊñüÇo½0>j1.úù¼X¹êûnÑ™ ¯ï6dÑʇÖW~Y¬C÷(ßBgîF§T-G¦Ô?v…ß [HªÏGÎk\3 z4äö-ÓrÙ´½?—kÎàâñ”)ÔcÿEÓ-ÏPTŒ=7à¹ü°â&g"‰ü!C¨+BýòŽR =d€—ý;úMЊ¤,–ðKÕ¾ˆI-öDÿOï;êAŠÉm“ŸO¿ê*ž³Lè}õŸGð¡Œf*åûœöà \Œª
+`©¨ý¥·­›GB¿nÃó¥NX4Ézúm‰£eC?×EÛEi]³XTG‹œCû å‰|ðQU†Ò0\8âÅ¥ÇW¥]]vàxzªsÐs£ÁSŸ#h 'HJÏ‘4 Æ rκ¿mP$d|ˆµûÔѯCZ8ºáœ§O¡Û‚'ÇbבÓÆ3ôJ)·Á­‚[‰Mpr¼×tÛÚÚÖô§¹®Üo}œ;‡Œ4ôVO„ÊÝVç ˜PLŠlß’à™Õzù€íxCé„)“ïóxGO
+×=^IM²7ÚåÏÑýÎ ¾hj¦ó­²±dxí½is=Äâ[‰=6®ö-f›«×oŸ
+‚"ÑO”sÝIʉ,cƘ=61jÊÝFwÌx[ìl^¦w®ŸÝ2››˜]IO0p®[\I+¬°âï @ŽÀažB;Ü4鲇ëâ Uwñá‡ô™Ù?:;<†S|BÍš«YÝ|æV¡
+endstream
+endobj
+2538 0 obj
+<<
+/Type /Page
+/Contents 2539 0 R
+/Resources 2537 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2540 0 obj
+<<
+/D [2538 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+954 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 459.235 null]
+>>
+endobj
+958 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 380.323 null]
+>>
+endobj
+962 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 345.952 null]
+>>
+endobj
+966 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 290.41 null]
+>>
+endobj
+970 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 290.41 null]
+>>
+endobj
+974 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 290.41 null]
+>>
+endobj
+978 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 290.41 null]
+>>
+endobj
+982 0 obj
+<<
+/D [2538 0 R /XYZ 153.694 197.508 null]
+>>
+endobj
+2537 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2543 0 obj
+<<
+/Length 1996
+/Filter /FlateDecode
+>>
+stream
+xÚµYKÛF¾ûW 
+|Æ:vÆÄ%cÂg¾â§Æ`S­âÿÜó—ÃþkúrØ-_YórÑ’?´$§Yª·ÙºY-s<Sœqïï^ðñõî°ƒ÷éP¯ïëËE
+$¾££ÿ![àdU ‰’Tx)2 X›[b­I˜`´ÅnKË@e³%ynÖÍf› ¹Û8-uÑd™K6ø’Ùh ‹ü(4 £ÚaÎNçŠS*â!Ÿ)ÈcEJlàN*k°¹æuÇ—W½ô†ÑÈçâ[0xŠ›F¸6nãdø‡þ-¦
+²6~ظéÀ.ç[·9„>Û´†:äa¶ø¸Åú© H!žGc±b²ξåe—®6N‚º\*š'‰'„g€q—ÍæYa&M!¿•"»“š\2…K¦dõ€u6—Imp!õ—lOÅ þV&Ož&—/áÄú aÖÙùz×µªl³‰§[VÓ, ¬³<ï¬Ü­ó¶ÞnòÖ (âU[¨ÿ®ª-˜|t^µåIj7æÙR„LÃ2,;‚—飗qÑ{ï<dÖ⊄à¶mLj\)§ÒÞýÖuí]ÃŽß´;csè†$Öµ W³Íœ Ì»œ°?e_K65Á–\3 ù™]Ó.iL•Ù…>زeˆ¹þ*8Êèƒ!9.Ö¡ƒÐûo a:dnÜcfóeÔ0Ç ±Îj÷ŤÐóa®!m®²²uº·Ú\ˆÄæå6º¾žKCb¤ÕÔ.‹NaEuWw5òãÜ%®ŽÞÃô*bµUK'&1Ç\ü-áTFL
+0%ñÆÖØkLéƒ[µ”ÉANC’ÕÉÍVïîÚi[U¦¿&•]­ƒ¬Ža­M¨F†¾öÚé²j†,qœÜ³›[RL#!“)’ãb¢ tdoa»­Hæ\ʶ-(à/H’+j¡w⧤8í—í.&
+cßXýuÛ½%Åk 8‚î(Tt“³Èˆ¿Ù„Í^;¯ßà¿–=ú rö³0ûê–rSôŒ!%Õçw_NeÝàuäÄ?ÆXá!ì“pÁæ" BÕÊ
+endstream
+endobj
+2542 0 obj
+<<
+/Type /Page
+/Contents 2543 0 R
+/Resources 2541 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2544 0 obj
+<<
+/D [2542 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+986 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+990 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 589.154 null]
+>>
+endobj
+994 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 553.452 null]
+>>
+endobj
+998 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 553.452 null]
+>>
+endobj
+1002 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 553.452 null]
+>>
+endobj
+1006 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 473.167 null]
+>>
+endobj
+1010 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 473.167 null]
+>>
+endobj
+1014 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 415.796 null]
+>>
+endobj
+1018 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 338.749 null]
+>>
+endobj
+1022 0 obj
+<<
+/D [2542 0 R /XYZ 153.694 190.134 null]
+>>
+endobj
+2541 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2547 0 obj
+<<
+/Length 1979
+/Filter /FlateDecode
+>>
+stream
+xÚ­YQÛ6~ϯ0•š%Rq(Ð+®àpO¹½¾´}-ÚR#K‚(7» òßoÈÚ²ìÝUty±HŠœrf¾ù(‡«Ã*\½{¾öd <ÃU]j¾÷槇7ßÿ“s±Ê˜J±zد2h†ñ*‘)‹b¹z(V¿¿ñX ¥þS÷F7§ãú÷‡}¡¢ÕF1z6œ3%Gb½L3<Õú®`0P­Ø%Ö>ÎÂP8±|ÅeÌ%.ÆAêOOëMÇA¡÷ù©¾Ã˜?×QX¥Øml¶¿Ûõƽªš¾3ƒ¶v¹îǪ®éEuìjRcW¥MÉzöù¶ÚM4¤~nÏÖ!’à½.ôš¿…±hüÞCwjöð¨ùÞ
+ƒÜÓ‡ÖÛy_àè®=vùPm«ºÂXZgqÀàà8ª´‚™Jã̪ !;b¦D†Ù‘I2ë*=9m”ÂÜsõºÑAÑ65ñþ§›Cýä{Ÿ?ß±`CÒíSIEv$ó츶âZë|eé<eàÊ-v€o @e!ãààMæDü¢ª@LÛžC¾Iä$€t*óÆþCSz_£jb °S°9-A÷ýÝt² µ+5Åš5ñYÄ1^IÞâ\´j¶YP^D°‘™-‰ˆñ9þÊw±iöûüXÕO¶½ÝÀ^mlûßÿîç·üó2G
+–ÅÑ3Ž|±†M<™
+…òë{òõdhE‹ ÎÊj½°Õîñ©wÊIq›ãEµØ‹þ½맾ÚíÛfxË™íC}ˆdð¼¼Wç;ý%Þ³D!™ ¸ –*…(þ‹cï†ðY7„
+vë(£q—²4¨5O‚ÖæÔÓHì
+<lÀFޜ٠]=ìðì
+ÇÓà=d\¾UCÕ6ô–vm–íÉ2ÔâŽúe‚£g U¤2&ÇŸ02<4—4ö^LŠ”’"]’£°\( g‘Jn+ŸÃC£»¹Ñ>½ADI HEáþŸxWí÷23™'XCµCî¬ ¦›½·ÎQD
+míî
+x¹<Š…LÒL™îL¦—ý=
+Üi€ÔAYtr¤ªy®âM÷×Ч¸Ä8:$ÄŘ?sìûöˆã¸)h ºQ{Â1·1./“ÈJ7RÚyñÇÉ9»ˆ”þ ü%À¾³Ëx¶Þ.¸'ßÍ¥s® ÅÒ(^ñ$c!m‡÷ﱂÉËwܛ̺˜7†"®2Œ‡|ž¶©‚"G´¿?võÉìÏW-Øæý™§/ž§ïVÅK[}6-mÅÀ!YfÊèjÉÏoþïêMz
+endstream
+endobj
+2546 0 obj
+<<
+/Type /Page
+/Contents 2547 0 R
+/Resources 2545 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2548 0 obj
+<<
+/D [2546 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1026 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1030 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 586.501 null]
+>>
+endobj
+1034 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 551.631 null]
+>>
+endobj
+1038 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 516.762 null]
+>>
+endobj
+1042 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 426.351 null]
+>>
+endobj
+1046 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 426.351 null]
+>>
+endobj
+1050 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 367.323 null]
+>>
+endobj
+1054 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 332.453 null]
+>>
+endobj
+1058 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 274.919 null]
+>>
+endobj
+1062 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 203.935 null]
+>>
+endobj
+1066 0 obj
+<<
+/D [2546 0 R /XYZ 153.694 203.935 null]
+>>
+endobj
+2545 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2551 0 obj
+<<
+/Length 1912
+/Filter /FlateDecode
+>>
+stream
+xÚÅYKÛ6¾çWøR@jV|ŠºE@Í¢=4=he®­FC’³Ù,òß;ä²%{³² 'ó¥™!ç›á7t¼Ú­âÕ¯oâ×~‰‚ßxÕB×7ÿõÍwo~ø…R±Ò$UJ¬îVš1_)™Æåên»ú+zO¹¸Ï:SµÉ¶ÿ¬ÿ¾ûíBÈIW)ˆaÊŠ¡$fN ]QɉJÅId"2ïc.j³Þð$²Úþê„»¾2õš%Qskeyß´¾ýÞüqÍtdھȳG¶E×gunPèýzcôvÙ£lLëò¦îLò}ñÑÍàxùÔ¹Ýåå¦ètSB¦qOáˆ:²ÞžFïLßõd2knÑA‹ÇQßàÈgÓúV–çæÐwa¡ÁÆÖ<dDzÇNí§NdvÕáØ›­_i÷ùtÍú©éœμ?P+çQ×Ô»›‡,·‡ò!Û8#‚"í‡$M¸¶"7štµ¡ð+4‚…ÆÂ+áŠ
+"S  ˆªÍciê]¿¿¯©ÿõ†Æ$•iP$ç):“m»ŸßvŠÃU=ZV›DAÁ f0zÒ[ñ‡¬ÍªnNpÀ×zâ ©"ÒqgÁtuÖ4r ²ý ”5B™i嶷oÚm‡+³z‹}å@Ýä”Í
+mÃUp4òcÛžn^xËØe hPzhpÁ÷áÞ^‚<–
+¢4›sS`œí' Dê±°…‘R’hö²]3M‚'“ZÌÛh‚2·Ù«ã)Q‰Bî6ö9žë$*Ðíqkp ëñ·j:×Ò`0p°s` @$Àrä?®®
+ 4¹áŸ¿›ÏP’kº˜€„Á®1 2ÛxÛŸmÞ^ÕæE ¶agzž¶lûÑ’Ç©â ›«pØ^:Oá(®oWCãÛÔ,Ð@_ÇÄ—EŒQ)C9…Œ‘l(õÖÔýÌb*“X<#Œ·ç;š€éŒD½lÜWŒb,%:™HBroc”ÙJ sUSBŽð½G2€‡¬Å¥÷móÁQÛú,¼qÊ9G1˜3ÔåW
+¤“
+²c‡/Ü2¿pý ¦ÅhB´æþ°¹…µ2BܾNNÓóâÀØ£ö'w!„»‘¢­)ŸÖZ¼ðà- \N²{º F™,^ÀL5X-{öŽ‰%d¤D»'¨¹E 14aP/ȯàÜ=wo._¼FØ<=‰5­}×øìë èaÁ9è}>îña#<§ÛUæŒÀ7YÑŽãËýKBfà*`tà åƒÅ&ê o ©€ÐÈÿ;¨¸ž„
+endstream
+endobj
+2550 0 obj
+<<
+/Type /Page
+/Contents 2551 0 R
+/Resources 2549 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2552 0 obj
+<<
+/D [2550 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1070 0 obj
+<<
+/D [2550 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1074 0 obj
+<<
+/D [2550 0 R /XYZ 153.694 597.46 null]
+>>
+endobj
+1078 0 obj
+<<
+/D [2550 0 R /XYZ 153.694 401.196 null]
+>>
+endobj
+1082 0 obj
+<<
+/D [2550 0 R /XYZ 153.694 355.367 null]
+>>
+endobj
+1086 0 obj
+<<
+/D [2550 0 R /XYZ 153.694 297.584 null]
+>>
+endobj
+2549 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2555 0 obj
+<<
+/Length 2791
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZKÛ8¾çWø¨bŽHŠµÀ3d³»˜Ó¤`³Y¦mmd©!Rý@0ÿ}ªX”,¹Ýn·“K›¢¨b½XõU±ãÅv/>½‹Ãï‡Ûw?ýƒç‹œå©H·›EÌò\ûxÁ<ã,Í“Eª2&¤ZÜîÿ~më~ß,o–RʨhÖ8H¢»bk–«Î_-½±»¶¯ÃKw#tôtW•E]?Ñë¦uô®½YÂËò†GeßÑÔCåvU6 ©{¤`:kh¶ +KœÞµ]ooþwûï#I8‹Å ˆ’$H¢˜Ð$GßÔƳ‰Ì#·3O4*:Cƒ¾)nD†gQ[­‹Um€Gv³Ì2Ýîpº·ïamšEø¾³Æ4‘©wÈAÌÒE·] Ãß?¡Ö¹œ28• òL‰§_¸LªÆ™®®sgš¢vO4YñeÁ“T1.çä\D¥Ÿ]µÝ!µ“ú’’I ßx™÷¨ò•7š+$*¾Ä*æqÃ/gdü–å™ÔSÙx’³LÈEÊs&³Œ¨r!ƒíx²Ð Cšøo¦¼Þ®_Ð
+Ö\¿î½^Ê–£åP#˜Æ_Ÿý¹>dSªçàd•æúfmºM.éï"ðç‘? 3]¼ZšiZZ¼/y#G$6íÂV t–”¯\”Ô, y 
+öë̦íÂ# 1{I
+Ùf¾‘OŽm½jÝÏæeØKÆš/Î!´%î¶tÈaô°kíÀ²ëŒ##«ª®Ÿè]eéwWÔµ›Qî+äD…B`Z¨X0 ØkÔ™G<>Û»PPÁcHýjN ¬©²,ú|ðë,A¡CFÊæû㣉Ø4Q8úÝ·Ödä(p•áÛÊÙçŸòhª4-"<¤:¥¸Cii¿äYI3=„çU±n|y€Ÿ ¢e¦"aØoßÐÁ”Å— |—†½ò€W`í…ú+Ê‚T2­åœGF/¬ÐS1§Åê±®èH¹
+\Îöøâ|.ǘ’d
+­qÌx>E¾xú ÕC'Õä|{˜DÙ×n 1cR‚ÁP¸@óu¬C¸bÀ%iôyŒpHÀѧÉ*7`ë® _G€ÅÓ€ÅýgBH©5!"m%€—½yØù(OkSW% <zZuÑ”Ä<¥ÃÌÁEô¯°|ÄÒ0&•P' 4„ÊQò€ª†½°è)kTø°¡ãÓ"=—)K™ÐÁ~¡CTÓÔ柟Gi‹iGÌGe+H¯wŽ8ßóêgÉX|¨’1¾î-,£Û-£0ëS =dÖ™…w‰
+S™&Ô‚Ûy#rÓ¡¬vúÿt‡ÐcK%‡¬U¹y2š¥0SIùJžÉX–äÓ„uÊbNŒa‚ÔxœOæ®êj~œoò«b‘D¢aÌDš4äЀûâ¨~¿¦?5m¢a‹á‡vÒ|käEª'Bfrì„"gIªf!3zKÑ)¥’
+„BÀÔ¾±V¹aù³›††FX×Òo±^ÓàöÌéYÎR¨c¤È˜Ä×ÇÓý‚Q©œÏ…ùc`¤ûj6ƒPÓãšúãúþèÅÉxÅ“£öšäSq>¶×|P‡cë(ö):jàM*j 1ôSÀvŒº'Ÿá±Ÿ.Øá®
+`çLºó&ƒ] K®˜Ôÿñµ]
+/¨賓
+Fù«›CˆQtO³§‘¡~d囎Ø}çØæÁN æFK‹|rœÒAÈk®ÒÌÅjÎýù#qFi¹†ˆš©¢ûŽÞpbUöŒ­ Œ9ië ÉÎΨ…ÊéÃ5Ôþ~O÷D0`zP€Ø¡û?¾¶eWݹ¾ ÙŸ›Ò„¦þ¡`¿ß§Q˜ ·A§/#Ô±gq6
+ê вOï ÒÍj–üðžj”AQ~ŠøŸ.*¡$DN:¼#‹o7-¦ì‡+5©'—Yƒ.€(ÖkUi öõ76.¹2çà:ù%¹”פ‡™Ë~ó9p×>€Mì0:{CžJ¾ƒ‘ ûoC6e{Eûj¯1ígð±oì×êîºü–)–pý<¿UëGD.›¶qWæ Ð,Î$Ùç?ˆdÆJÏÄ4 ]q%!5Ói:ßåãç.%@ñ)ë€É8”¦tÄ{hnce>Þªg"ô¾9ÞZö³J;à Ÿ»Êùû+XYa÷:äJ1·S¡~ T²(¢Uá/`‡ÊÜwç‡w›*W-›fmC-n‡+\¼yÄ˦WÐe6¸¸ºÆÅ'†!ÿÞlŠ}US›nþQê~ûå÷Oÿ<k;¬…¡º_*ÎtêV•Ì>ùxûî/qéO
+endstream
+endobj
+2554 0 obj
+<<
+/Type /Page
+/Contents 2555 0 R
+/Resources 2553 0 R
+/MediaBox [0 0 612 792]
+/Parent 2536 0 R
+>>
+endobj
+2556 0 obj
+<<
+/D [2554 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1090 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 608.418 null]
+>>
+endobj
+1094 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 608.418 null]
+>>
+endobj
+1098 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 608.418 null]
+>>
+endobj
+1102 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 608.418 null]
+>>
+endobj
+1106 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 608.418 null]
+>>
+endobj
+1110 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 410.162 null]
+>>
+endobj
+1114 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 339.427 null]
+>>
+endobj
+1118 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 339.427 null]
+>>
+endobj
+1122 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 339.427 null]
+>>
+endobj
+1126 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 259.975 null]
+>>
+endobj
+1130 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 259.975 null]
+>>
+endobj
+1134 0 obj
+<<
+/D [2554 0 R /XYZ 153.694 177.036 null]
+>>
+endobj
+2553 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R /F53 2210 0 R /F28 1704 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2560 0 obj
+<<
+/Length 1903
+/Filter /FlateDecode
+>>
+stream
+xÚµ™MÛ6†ïùz¨ Ô¬ø)émô˜nÑCÒƒlÓ¶}l%ª›MÐÿÞ!9²EíÚÑÚÛËjHKœ!ùpø’/ö‹xñîMü­'QðŒ-Ñ|ÿîÍOwo~ü•R±HI¦”XÜí© 4S %¸\Üm¢”‹bûÙ¦Ô»¦6Ë¿î~{âʴÔm‡’˜97tA%'*§6+hóN·Ýr%6ym µz«?Æ\Ô=Ä.X3šïÊÇŽÐ 1áYèäbàç攥&m™Æ™C„\oŒÝ´¯†æ—,Œ/Ø£‡Ã’FÅfÉ’èàkº¦Þã§6ªáõ­þlƒ›Æ4A! K}<Úûk ÃÈ9òV[CÀ0‚Sh†“øFí§$Kxj]q0ébEá)R?Ô+tÀ@‘Y
+!1¨õ橪¼ÞNÇö«­èv»¼*ÊGg—Ý!¿×ÿ>KËe.«4&”ÉÅŠÅ$c4À°|l‹Í\ áót:ˆ4&‚Ò
+›¤ñžQ0vPwÂ*/ÐÁ1¦¶¿Í°ù®{Ó´¾²Î+ãaé›,ä÷4ÆÕs†S\&yo£=8WP|aæÌ®uô¯›ëL<¨ŽW€3Ì °Ú»ä¥Pð3OCy™`þ´Æò’B]z¹øygDŠIÀN^&ãì)Ìž¶ÚeÏÄÉËÄãaŸK¯-¡ˆo ØÓ;|Ónéöédç·‘ x³”H³¯ƒ±A()½-öÕÊÊ\àfÕ[¡NK ÆÜêÍA¹>"Ìؼ±µ÷Ë<t§Íl¾E|%ßü9¾ë¦ÂmñTêŠ/Wæ`©`c|>¯›æÓÜü˧óÃ8±| XĘ€Á°„F·ä`ágàè\àf ”bø5hÇ%`r[lLn´/xšÀX»™oüßO¾ÎæTotùÑÛvÖíâY°‹»_ç¦@R*‡åwÈQ™ø0ô¾¨‘KŸŠp?'ã(9GÖGZg]€¼žÏ/½’_;!è_ϧçïè+&èÍõÉ™'
+N®YnŠgžÆ·*‡ŒPf—sAŸ–¥
+[qÌB 'fS»ÛE†=hʾª½}„ì;–ûâR÷ë<H¹ÐBQ»3®õ“€µ"fðoáluŽLî
+O»\ƒ5ü%gaëâ½@v ‡ ¹}‚ƒD§[ã”'”\„§§
+;åò¢Ó¶„Ë€Fd¹R,Žþ\¦,Â&úü9âIüt8iBdŒ+°Ê7m3ˆˆÎÀóŠHóhïGÝùö †•Ò5ƒj2<¬†áhídK÷§Gí‰ ‡f«.ôÿÏR*Pü…»R™±¢cI¤ÄýwŸ{1T˜ã=^×÷›¼{8°é*wH?’m×ÑAƒN»˜AõIH2øݳKÖ7a0Q“EϯYô'|¿þû¼/÷ý
+ðÏäÑ•˜çªÔ&ôaK_ÞvŸŠûW=M—ygÀÉܤy<Éèè»#¬E/LR8 û}&ži
+>TÇÃBå
+endstream
+endobj
+2559 0 obj
+<<
+/Type /Page
+/Contents 2560 0 R
+/Resources 2558 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+>>
+endobj
+2561 0 obj
+<<
+/D [2559 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1138 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1142 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 620.374 null]
+>>
+endobj
+1146 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 573.549 null]
+>>
+endobj
+1150 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 526.725 null]
+>>
+endobj
+1154 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 481.146 null]
+>>
+endobj
+1158 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 434.321 null]
+>>
+endobj
+1162 0 obj
+<<
+/D [2559 0 R /XYZ 153.694 387.497 null]
+>>
+endobj
+2558 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2565 0 obj
+<<
+/Length 2262
+/Filter /FlateDecode
+>>
+stream
+xÚµYK㸾ϯ0°X@Æ\‘Ô3¹Lû@,ì6rIç –)[;²ä¥ntóßSÅ*É–ÛÝ-9ÈÅ&‹T½X¬¯Hú«ÝÊ_ýüÁçÿïï>|÷S’®¤iªÕ]±’¡Q¬¢0J‡«»íê_ž …^o¤T¡÷µ–^–¯µò>g;³Þ©ôþ~ìʦ¶ëßýí»ŸdºJE©È±¾QþJ:Î8F:I
+Ò´¶† /®Á™µ¥>y Y…ë‚­r
+ÊYWý&°X))m
+-oªþP/`ŸÎc_¿}ÿÉá%`åHÀåÜš­=ši
+!üF,XŠý¢¤ßùjEþLŸMUÝó;Ÿ~Y @.‹Û¦zhº]Õ;û>Uo÷Ø›ŸŠ¢™©¢2õ®Û;±YûTn©óŸO ÌÓ7H³ moÊݾ[,.x*¾Þt¸ŠC(#
+ϧ“~zöpw‡l© HB9¹Á=ú‘§ßx稩…ãhØöï¬íå£
+= ¸hÔœ•ti´Œ> wZ$èºy=]ìÑ{B;~dŠˆo‰ÎÃê]䉇œ"ÿä¡}·
+endstream
+endobj
+2564 0 obj
+<<
+/Type /Page
+/Contents 2565 0 R
+/Resources 2563 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+/Annots [ 2557 0 R ]
+>>
+endobj
+2557 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [388.931 600.047 414.07 610.84]
+/A << /S /GoTo /D (subsection.15.17) >>
+>>
+endobj
+2566 0 obj
+<<
+/D [2564 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1166 0 obj
+<<
+/D [2564 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1170 0 obj
+<<
+/D [2564 0 R /XYZ 153.694 580.122 null]
+>>
+endobj
+1174 0 obj
+<<
+/D [2564 0 R /XYZ 153.694 580.122 null]
+>>
+endobj
+2563 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F113 1728 0 R /F114 1729 0 R /F123 1756 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2569 0 obj
+<<
+/Length 2641
+/Filter /FlateDecode
+>>
+stream
+xÚµYKo举ϯh`DÆ\Q$õÈi°˜ÌfrØ;Î)›ƒ,±»wK Im1˜ÿž*VQ-ɲÝîÝ=‰¤Èªb±øÕƒáj³
+W?¿ ùûÓÍ»?ez‹,Qéêf½’:I¤V±ID¤Ìê¦\ý7‰ºúßÍ?ü$¥^¥"‹cs#-B!7é7©ti×ø9ìòÂÞÛ¶³õqÿÃòÛ_hù„Ó5/¿–¡ÈLæ9é%NJ %cNÛî®:\ckg×=v¦£‡¼­êÒÖ=vZ»Ë¿.ÊÀ„I†ÔË`Δ!¯7Äı|(a«~<_÷¶ÅÎþCm_g=l?>õmóÕ3[W»7ÐO^?Èïo8­t‰œÔÂdé@§ ÷ä+bø†«ºÜüõçw«k#EšJ`—‰,b3<ÖÍ´z½Lhi€œéã“¿üôáyš°/¸ @Ån_"ŒE¹’F‰dÒH ÷H04áG»Î»þoW×Ú$Aó[¨ÔÕµ ñŸd]eË$#%…
+Ó)É/öþ*JÛæ»+8Ñ0ØçE{%ƒ¦£î¡mðÿ}UÚ’Fn±ÿHí~k™g¼ÌS%ZH0’ ÏŽÖØe")iÑ°"u‡kR-å÷-å+|R#LŸð©7ÝËÑa§5[uÈ Üá]¾±´É¼µïŸn½¤sx¿ÌAÆósLBa˜Ci‹-Ù&BgHhOÜüÕY†œX†'—)aÒdBÍ쩽 S¥"J£ ‘¾mÁîò
+9Jƒª¦ÒÞ7€B§’à`iðàŒ†Mç=Í<ÖØ=vGgJ¸h§8î­ûÕw4¾Ï½áS[gXø»yù´UšTÄ¡!¹ž’N)ÊÀ÷Њ Cû¡ê·n7: @ïP”/šºëÛcÑw¸µ, n®R0|šX64©kpwFM½ýàtZÆ3áësÎm°Ö8m|L¢9ôUS³d‹
+œkOÇ"æŇ0 ðx`9¶r×qV®‚fM_Ü´û;tÇÃaW¡æK¸-µó´L˜^+¬ÛfO­[0lŒúÜ%c‘ÆöªjÓÁ)‰Eg"¡OÝÉØû¤ìuŸ„Ôö¡höû¼.ÇŽàÛ Û÷%ŽLf/¤áy?’âþålâ[×÷oÄôc)† åpž¬—6èí×þbGX,Í’Ÿ3‰|£ŸS"̲ ÅÏpÕmŽ6šEdÔðÝØü^Ovýœ>O` @‡©7gœqܺɷs×bLD,‹ ’.íVg¡™¿Ã(‰ø’A£kœHкu¢4î‚4w<­¡oNÐ œ.@˜‘Qp³­3AÖ€ 0«È¹ÑÔ»Ç1mÏÒöÔ¨ê“0Àœ
+…Öéthl
+éhUMEFêG­Ð=²]ýמFò¢‡h…ö‘aPƒ:¸–^ß;|têXŽóæûÑ¡ÞÒÁ›í«Ívä^O
+G_[rX­èÞÁ7gïx„ð¬Où¾B<'ø›y*hJvT>©Nå%nƒqœÜw L²Øe7ëõe~#–"ÊâiÒU7Ý6/ñ€ÏñàŸÜ”0©Ò‹)R®#zÎuŒHbdœÅ3’Ÿëmu[ñi‚µP…¶åéLÝíÉ2@CA¬Øˆ÷Ô­Öôc•þô‹f×´DÍ%é(:¢È ÂÎ:Ç÷Wcó]~»³¸ ñz¨¬”Y© ¢$¥}ÜÐíÍÉ1Äš‘
+`Š‡Ì‰Aß$“I¿y÷oAU
+endstream
+endobj
+2568 0 obj
+<<
+/Type /Page
+/Contents 2569 0 R
+/Resources 2567 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+>>
+endobj
+2570 0 obj
+<<
+/D [2568 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1178 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 593.724 null]
+>>
+endobj
+1182 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 512.113 null]
+>>
+endobj
+1186 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 418.796 null]
+>>
+endobj
+1190 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 349.39 null]
+>>
+endobj
+1194 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 349.39 null]
+>>
+endobj
+1198 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 349.39 null]
+>>
+endobj
+1202 0 obj
+<<
+/D [2568 0 R /XYZ 153.694 258.066 null]
+>>
+endobj
+2567 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F123 1756 0 R /F19 1711 0 R /F16 1712 0 R /F51 1703 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2573 0 obj
+<<
+/Length 1529
+/Filter /FlateDecode
+>>
+stream
+xÚµXMÛ6½ï¯0P˜á§$ö´HÓí%@º·6­LÙjdÉd8ébÿ{‡²-­¼¡”ÍÅ"EqÞ›ápH?¼Ø,ðâà vÏ·w7oÞK¾‘ŒX¼¸Ë„KQ¶E„(‹»õâï€H¼ü|÷ç›÷„ðEŒdrû-2Cæ£ã¥:æ™näÙ_oow*iµjö*µÓ{H+7}E0’BvHdRº­êµZwH'ÿž<QO¼¨¡ëšŸ>Ü,V‚ 8&‹*”XgsŽ=‰8àÇ\‹ou>‰QÌúƴ߆^S•³lráÈÙ ŸØ̲YFG¼ÖF»åy ®£f¯Ð…‚<–C449„0ÐÓfÉ‚†BT ¦­î´U,ð;•%‡¢ýu¹â‚šX
+¬•ù…ºì”W SA £¾áwªUõ./U³\1Ç­j·jI‚ÚöÓ%ü_l¿ÙV‡bmÛ÷ËüªÓÀ’ÆÁ±DÀÅÁÝ67S ڷ¹ïSr˜ ½& qK-MJ0À¨Á‰ tÕÚFîF5]clG¯‘k~2‘&½HwÁ ÅQx‰§WîШ}’~I6ª·nϧۢt6T@8-·ªv«Í¦P:lŒª€ð6
+"]»ÏŽy»µcóœájáCgFSûW¸$ˆAïÂLR®gðÑ‹I"0„ â\<a4ØJàKÜLjC¯gh—¤uÕè4ã,ø­ËM‚u”ÚªµÝsÚ@§=Ô¥Y
+߇‹;8:®VÂõºîÙTÄt{jÜVå$î‡4ü«5a´BpŠb>Ø%yçI×­Ê.‡™ùo–å£d€Lè箚–‘Ÿ‹=§&ö,W1NYNXwsm€+ƒ~±V&èp|ßWí¦8(SÂÿ»Õ¿·ûâÐ ¡›ºÜmU¾Ù¶S©ì]ûà/Ä}Ò(}Mo¾äû į^áÝ+€]™ 7öcœ­¯üÁ¸_8\í6åúT¼u%÷?&ˆðƒryv®Ý¿üB>›\Ë7e¥‹P’ªæqpè<ZÅkU$_'`ES±zõ;Ë&@ž—>Žà]*^¶€n\ŠÆÝ…ï’sÁÝÿAéË•›g6aá/+¸Kºs·\ÐÉ<ë†g©Çžeu²æ ÄIäôXj-5ÛêØ-ñ\Q–÷uIJúƒ×”Éóæú)V_\}A¾áµ é¥ÐjQj¨Ð’XK5dT¡ ¥KŠ¥ †ÒO#²†<È3û´.5.ü¾¶oõÊͪàjTs¨‡ãZï%EN b2êSìi½L:­·Wf‡ %Âa脽åJÜ'uc[Z-4F²Í²j•î´c3©çÜ€–—ŽZ½CË•”8ø¸‡¶•ã¡V îæE§yZ ÖÜΓO;¹’ˆBæ¨Á]´àNdâÝ3õ¬ ë[ŒŠÁs•mHÄêÍ•½ôŒ7œ
+ÿõú¦æIÂœsbö «çEá•ÖÙ%–ý*ÑIÁßQûNj8Gx»,îV;GÒÿfN£9ØçS`€ìÔ­««D)p`Å1·æEÜ›òûÝÍÿ´L>G
+endstream
+endobj
+2572 0 obj
+<<
+/Type /Page
+/Contents 2573 0 R
+/Resources 2571 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+>>
+endobj
+2574 0 obj
+<<
+/D [2572 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1206 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 635.318 null]
+>>
+endobj
+1210 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 635.318 null]
+>>
+endobj
+1214 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 635.318 null]
+>>
+endobj
+1218 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 635.318 null]
+>>
+endobj
+1222 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 192.229 null]
+>>
+endobj
+1226 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 192.229 null]
+>>
+endobj
+1230 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 192.229 null]
+>>
+endobj
+1234 0 obj
+<<
+/D [2572 0 R /XYZ 153.694 192.229 null]
+>>
+endobj
+2571 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F123 1756 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2578 0 obj
+<<
+/Length 1872
+/Filter /FlateDecode
+>>
+stream
+xÚ½YKsÛ6¾çWèÒ)5S1ă¯öâɤɴ—vR÷”ä
+
+ê ‹¼3Vè{Ó¯Á9^G0pà 7c wíM
+p1ˆF>’j¨žaW×öXt´ˆn@tý¶E&J\)‹Æ¾Ó¤KufB'Ã7¢…CÛÙ7Æ$X„æk‹#¨_ìû>%(¤DVö ±r_ÔªZœq‡ÝIBã$Ö‘/Ì3G‡%`¬jUJg‚å‘?zä8²îàºÖÔyèýY«¥X–Ÿ§F> Å%EÕmÑ^¨{ Ôn`¾¾³j¹Ãßtdó(‡‚§@þàfÈ2ùvºxB@¸ú‰õÞ„¢¾3?|„Rfû,KînɺÂ<á#(…(À6¸Ü»«~-mWøQ¹P5p8ïýf8,¹6¿Ó þ®²7²º Ý Ä)µYvE¹ê{s}ò:ê誎zÀlz2]u[XjûÜL ³ñ5F xÛ)nª)„úªÒEá=ùˆÿ,8›Ùpf”‚^BKcÙ\˜¶üzû⟙ž;
+endstream
+endobj
+2577 0 obj
+<<
+/Type /Page
+/Contents 2578 0 R
+/Resources 2576 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+/Annots [ 2575 0 R ]
+>>
+endobj
+2575 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [332.639 229.893 371.244 240.686]
+/A << /S /GoTo /D (env.rawtext) >>
+>>
+endobj
+2579 0 obj
+<<
+/D [2577 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1238 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 395.467 null]
+>>
+endobj
+1242 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 335.442 null]
+>>
+endobj
+1246 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 335.442 null]
+>>
+endobj
+1250 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 335.442 null]
+>>
+endobj
+1254 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 266.7 null]
+>>
+endobj
+1258 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 266.7 null]
+>>
+endobj
+1262 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 266.7 null]
+>>
+endobj
+1266 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 266.7 null]
+>>
+endobj
+1270 0 obj
+<<
+/D [2577 0 R /XYZ 153.694 266.7 null]
+>>
+endobj
+2576 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F123 1756 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2582 0 obj
+<<
+/Length 1259
+/Filter /FlateDecode
+>>
+stream
+xÚµXKoÛ8¾çW[fDñ)`wÛØcëh{Pd:V–\‰Š›þï;)Ûrܘrš“†5ß<8‡Š‚Û
+>\DîùnvqyЀ£D̦ 1 8(&,˜ÍƒÏaÌ’É×Ùß—×Ó@¢„sjÖÆE8EÝ¢/˜ÐO﮲R¿ÁF®U‘~k¿@LÝwS¡„%‚G~ù¢l—;¬?œ“YU4f¤ŠFÆ•=.>†K¢±âʪVéò¦P=ÌcoH¡Òz•Þª™XäGáηc?·¢óx(‰w¶öÂfã9…ŽO˜ƒûÓ \Àb~I2>TÅ:Ÿë»©à]–ZH÷ƒZ¶…ÎWÅÃìÐÑ°Â6ߧe¦Ž žã«|)¨Vßu7šøÎóû|®~Qx…'»Œãá͵ZewUÝö•¶Në²ÎÆ’…x²GÉSÄÙëÜÓæ–h£§µ KµÎªå2-çfT•ª©Ê[»ƒ;NÝ »ˆ]•j„ ìôºÚ=f„^_uFlOÏ'OÄá5 øñÃE0MÀ
+F!þ`eïm‹2+Ú¹ªÊâÁ@5ç('qð|Š1`°n£°È}T'Ä& MÌMh(ä2ØWñWÞ¬ŠtËða{‘„ÆH#Ñ0µ*T¦­ÜÙe »ÈúÓMA|­ß–U­¬¬ï”]XOp¨ŽÖ
+¼ß„¾4Û»K‰Ùf#Üñ¼»/rgøy­Ë¡;Ûñ"…Xnž;E0Ç(ŽÁCƒï ±?¸·Ÿ¼Ÿ]ü-ƒã
+endstream
+endobj
+2581 0 obj
+<<
+/Type /Page
+/Contents 2582 0 R
+/Resources 2580 0 R
+/MediaBox [0 0 612 792]
+/Parent 2562 0 R
+>>
+endobj
+2583 0 obj
+<<
+/D [2581 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1274 0 obj
+<<
+/D [2581 0 R /XYZ 153.694 470.934 null]
+>>
+endobj
+1278 0 obj
+<<
+/D [2581 0 R /XYZ 153.694 371.557 null]
+>>
+endobj
+1282 0 obj
+<<
+/D [2581 0 R /XYZ 153.694 335.442 null]
+>>
+endobj
+1286 0 obj
+<<
+/D [2581 0 R /XYZ 153.694 268.941 null]
+>>
+endobj
+1290 0 obj
+<<
+/D [2581 0 R /XYZ 153.694 268.941 null]
+>>
+endobj
+2580 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2586 0 obj
+<<
+/Length 1806
+/Filter /FlateDecode
+>>
+stream
+xÚ½XKÛ6¾çWøRTbV$EJº¥AÛ ÉÞš´2- Ñ«µ»iÑÿÞi¯½Î®v[ôbó53œ×7CÅ«j¯Þ½ŠŸúgþãÕS?üðîÕÛ«WßýÄy²ÊX®u²ºÚ­òŒIž­´J™juµ]ý}â2™ÌpcÆÉLë߯~yÀ¸ä«˜L8‹…“ÁW\I¦óäÈ°†W{³Þ$1v}Óôk‘F·uWÑÒ°Þˆ,2ÝšGEcqï nˆh2Ö©‰Ž•Å<y&7xˆîææE·%Šr œöý8¶lO;× hc5ca'ì;¤„àëEeÅDFºlëO±”f4D ’,ššzëd& Ú¶ÜjÝÑÊq7‹ÚÞ]ek^Ã<…;Ý•fð\ì¾°DQöÝdÊÙÖ¤«_ÄñQ=XM[€¸õ¹CÎ’Iá½aûÊؽ×)¥¿.Ž`í Ž’4L,#¾HÍòTfÈw#aÈW.Yš¥-"Oý N‹'LåÜâR¹-û¶wØ_ß\äÉ7<f¹Êƒ¤ì’$‘°˜‹û’nnÓA4}ÙàìÍû‹<Ù™„|™„²ôx¯7J¨h± Ë´2NTz†¾P—›)G,“ÓëÄõÍuo«f6Î9»fžö8{†@ùtÀý})+îevÊ]b(LŒ$¡ÄøØ·€Gý`ë¾£qÀ¡×8Q[ŒUÝM
+„®­§ yÅ£Æt•ÝO4)FÏ3 Ì[ÿi<f<þÛ½?aºÀk÷58R‚3™å>›¶ò,FS´ˆI×aëM瀻P`³ °CÓ„§=&_Êø’$9K…\©X±T{Ù2N–¥þ÷ö­«ýЗsk:û×2ç$YθòÎùyfÑÒ
+
+ðen»É+ØÍ-,L •“ÂqtBßåØcþj…±¶¥Q±³v
+|UûíÁ¥Q¥þ,­Q•åìOƒ¦zk©œ&í³ðŒ ‘³¤‹í]ÑLæI¤ÍÒf‹‘ðˆs U‚ê7d™HmÊRÅé$W,Yo8‡jù뱯2›ë¹n¶`ÑÇýÀ'¡™”š3.ôý¦º ûM%äLE«­wŽ÷Ðs4þ´ dN2µ¡0´uÿÂS8¹&|ö™snqhê Ô&ÄÙ\ãU¾| ¬%xâ‹î ýÏ0[ô½r—+ êПN–vÀÿÐ¥?l
+êni†Âiô)V±aC`Q9òô%èAxK¨…;²÷ü!N-íC_@Läé¹b:|®ƒb˜tTû‘ºHhuÝ þZq’A*,tæÎÒÒ‘AâHç Ð3´¸&‡;³fKgG˜Ô™hgdW¦Ã.z|ôð“ÁåôÐäk鶴‚Ñ0"ÀáDGMMþ¡`Á´IMáD`J|-$ÆwH:nÉ=p´™z". O}x§àd×Ï®€)ìâKì?û¿ø`|ùÞf9˜ŒC‰‹–‰c…Ä‚&¹îï–¼¡’ÄPI<Œ¼Ûö“‰Ñ”>$ÿ0ÆÞ=K0¨™”a„RâÓãEÅ!‚¦r¬;žõso ìì0ªhÉA8²°ýÜÓúð&ª}h];Á.¤ï–>dœ/ë°P™[°Û+>î±4~ ï!b–$üTı>—kÂÒÐœþ„)p¾ ¿Äú,éÜVå>„>@2ñBDîsÀíÚÙÝ-”þÙÓšÊ êñäûSû¾Ùú•}àŽohèp|W·8ð7ÒžKl'Çõ4)ºsnƒåùã[¨Œi™>JÇa¦òO_AÆ×!ò'ÿ]¤tß
+Â`zÒã¡WãâeXóˆmž48g"×— >,-
+Âsò´7=RN­¦‹/°ö!¿äˬ=¼×O¢ûØÛñóBs_è{x’@w§N!˜š0:@äç€{€}ç
+endstream
+endobj
+2585 0 obj
+<<
+/Type /Page
+/Contents 2586 0 R
+/Resources 2584 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2587 0 obj
+<<
+/D [2585 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1294 0 obj
+<<
+/D [2585 0 R /XYZ 153.694 392.716 null]
+>>
+endobj
+2584 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2591 0 obj
+<<
+/Length 3345
+/Filter /FlateDecode
+>>
+stream
+xÚ¥ZYã6~Ÿ_a @ Œµâ¥#Ç"° ’—’y›Éƒº-»…±%¯$Ïô$˜ÿ¾_±(YTËWçÅ&)‘¬*ÖñUQÑb³ˆ¿¼‰.ý‡1þ£Eƒ®kþþË›ŸÞ½ù×ÏBèEfq¬ïÖ‹, •H±IB©ÌâÝjñ>ø ”þã§wùó®¬îÿ|÷Û‹å±J¶È°ˆŒi‘(ÌR»‡X£Â8ÓÇwXðÝSq¿”™ Öõv[ßË,ø\Vz*¶{´Ò hx`—?657»üã==i]·_”q£îç€NX»Wí&4Ù-µ*wEÕ–uÕÞ‹ ¼_j•¿®™¹P)â‹þˆ5™ŽXŽ/mâ0•¾žh>d!Õ¼0t ág™?)oî 6’çÎo–F¡ÆŸWz'qútªÂlºé"¹"«¤®ù»]N¨9J²8”‘ðûþJJL$B­¤?„ˆ·Nn“y™š*‘6!Äìw÷K¥â -ºöúc©=Â[éÔ©·OqÖ&ö&¹SgNMFqhdæS}ATÞR¨0¡#MîjfÙê½R†ô¾Ü‘Rvü¤¾AƒU„穼M*Ò¡œ…8/
+%¡ƒ¯…R‚µ¼gµºSCœš95àtöÌÕ9F0ªä+M’0o2¹&}›kR™³HÝÈ.’$süžõL" µy»ZÊPIߪ_í—”ã4õÖú÷Õ„(Œ _;Ù-Y£< "ÅMÎF'ÓñmAîzb•W˜‰T¨3uýA,•ÎÂaa)D˜éÙèÞÃhHE@N&qNF]ådRc=|ÄËÎ2 6Ý¿qŽÅ F1,u–©$Y<,y•‹ÈB•ˆ‹tš êŸÑé±òZÞÂ,Q©='aÅhÀŸè”ßTÂ8=È&thlŒÀZU|~¬w;HÀƒnïÕŸÓ@¹ú¹wòNáWÑкü: ìÎãÇÅ2ŽA¦Z,%TX
+.~Üç›â•p Á¯Ä#¸ˆ(0…‹4äÐ!5Ë–ÿòF€’yÓñáÀÑ3mˇC¹…z¯†ÕŠjSVù\¿º¹í~[vídþc]!]QQüe¯0aK„‘œ²$ÄlM:ÖAÎ
+ÈνJÖ•Öy<³8M2²Š%ܽGâÃ|z2$XQœ?a«}ªÛòÀù,wÖVÐTìö]YØ(5#$…‰8¢]ÌÀ«—8¥® ÞŠ|?ÈÛþ…ÞpŸ„X®¹í 3
+aÑK4Ë, ØëaôC„˜’oyt =ÂËî)¯–¼ßòœ‚27À‰‰éÓä¢Ü<Y›`%kŠ]ŽÃ³Û¢;ˆNõNÑXA°†ÝÇÊih¯©ÿ—Õ¿iˆJ;àDbWÄñ^y¾óõ{ O”Óï˜õ[úú½x¿4QÔÇåη&ŽætK#T§ªÏsÊýÉ’þ…ƒÙ°3%ÎÀ£¦¾ñ©ðJ/Æ'¡ñ›EÚ)üADž÷ÀVÏݦؔm‡ã8m'nGƒoµò|”1”<žÌ)þwÈ·ÖdigŽÑÓl›Tã™›t~tnÜ#¥Õ0)6ôÞ³ag ÙøRî]ð¡,`™L;jcQ:„wÖŽCÓÓÃ$ή>ÝÒieW{
+ØñóÕµjÿØ f§«Ï+åªh˦7’£ ¨ÞúpÚáu EKÚÝ%?9€rZ5‚d¢ÚÃ…­R¸ÎLús¬¨bɆÀM‡éO)¥ŠC‘ŠÉ*”R«PžÚ¹¬•wN¬,1èLÈñ4%J8ïô&JÂG*3@Á#m÷4€¯›0[gÆ_Òa ê°ƒV\ é(EN¢ Cõ9¡ µ¾M ¨>ª#1.ZZ¥USaB¡Oúu}NCcŠØŸpIAÀ¤{Þ¦L qÜv8VÇΗÑEϦíÜcÀ¬cñH¿JD¡8Qþ<ŽºñÈ‚)/hçòTï´`À©µUÝ]¾ÑÈ`'‚ìAyS>,2_}w ǧýVˆ'¹sF¥s§½+Üë~¤:kÝ
+5Yø4“°© hÕ›sÁ‰ÄcbBÿ…mb3™ò‚;ê|ï?xkã\yÅ60
+¨0ÓåÎÓ %¼ÃtÒkHæÀ:ƒî`ùHË’m䶟[&ÓI, ªâ¹ãÖ#Þqki
+¨t[:´™ ˆwÖ4„™Ê,ÉŒëñ$5kò”½X(×:4Í:àÉp†Ânî5‹ºñ$´õnúÈÒOkþw{ LÒn½R©fŠ\ÔÑã,¯ õ
+@CIwÿ%¹|.Ûâ­ÓÑóZ ÂÇë­pÁ©J)ì‰7‡WŽœªΩ*y¬¿*F'Nu¨I›ó$CÎÃE‡QSŒœ¬’#KCì·IÔU®N‚9ö‡Á,Ä—¼U€½¥.y%`xr2§®ÅÜe‘»4ª«‚hú«$Λ†K¥$°_ççâÁñÄNHÖ¥ägc­Ž1¦ÄMŒé$c„/o#!X¡úö„Ÿ†ØnC€&©1GœoÝåºnŠæ%Ý'˜›s§òo'5x«ê¤Ý±R³%&jX ÜT hÚ4螬ºÐ!m’«±}†ä‘ΛvÉÊ£(LtìÏq(ɸԓ9A÷šÔ35¶“õ.¡|¢{Ê.ð°éf[?¸âÐÕ®¶>cU’ÜmÔ1T ~M ©'ð·¿«Ó¸Ã~+|Q!?ƒÎ"i)&l·ÌÁIl'^xx¤&’½M­
+9M
+€çÕGó|ÛÖwY¡`²V§00Ñ)'ë¼-p¨«+J¼ŠêŒÚü€›¢=lûrí ìhsçðBs¾@f^IŽ?Ñ1»ý–s`à‰œ±…4)‹“ñ·8†â.±þ ´î+žÇ’¢«¾÷o»—Ž µ.W<´oŠ¥-sº¶¥aTÓ›KpdŠ÷1¸/¬ ®äU\èdÉ=èôup¼0x×Ìú$Œ”n¡¾`ø-ÑEðsÙP9²³–ù 3¢Àܾv!èŽAøyšX'n¢xÊP*ÆHýdµQŒ2Ö4ͦs/l˜"Ï„?©ÇRt5¨V
+‰É\bHÁ0‚ëæ ÷ÈØ ôþÞà”ÑMÝ-ÕRá”e¤VŸ+—v[œÚûêã²uRºÙd ¢A«A#¨§FŽËæ:}®Ï!†ÝÁ!û¶u“Ŭú¿`G"A‹{?pp+
+Ù“”|ŠíçŽb=Cñ6o»Q¨™V)zdÊ~cöS…¦˜~è¿öCûÑÁ{ýçßßÌ~VÁ+,œÝ–òfÉÜfR»À?lV®?!JÝIjÛ¶ ÿªÜošú°ŸÝÏ-2Ù/ÛOÑ…J2ÞàlíØ"ßà>Ý@ªr'pãÀ.ÇVYŽ);>]—_g‰s;NˆË^E\Yž ¯dªNSè^¸‰HþDì2‘V%wùóªØwO40nÛ‡]½o?–{êÿõ#µn B\GËDüÀ{Ð/ÃCKCÑA¬RŸÐ²B<TŸŽƒð±_Y>7P&¯£l[×û#…ê{?¾a?5·]ghy^Ì¿§GÔ.øÂüŸ`Û­ÍdôNCêëÈx±©´U‡;ÙÕwš¿zÙæÏßœ oŠ>%Ö vH^?–Þ”ÿ¼{óÉ–hþ
+endstream
+endobj
+2590 0 obj
+<<
+/Type /Page
+/Contents 2591 0 R
+/Resources 2589 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2592 0 obj
+<<
+/D [2590 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2593 0 obj
+<<
+/D [2590 0 R /XYZ 153.694 556.668 null]
+>>
+endobj
+2594 0 obj
+<<
+/D [2590 0 R /XYZ 153.694 512.279 null]
+>>
+endobj
+2595 0 obj
+<<
+/D [2590 0 R /XYZ 153.694 492.907 null]
+>>
+endobj
+2596 0 obj
+<<
+/D [2590 0 R /XYZ 153.694 461.027 null]
+>>
+endobj
+2589 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R /F94 1713 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2599 0 obj
+<<
+/Length 1381
+/Filter /FlateDecode
+>>
+stream
+xÚµXYoÛF~÷¯ ` jýx<04
+ô%už’<PâJÚšxÈvü÷ΔD†¶–nóbŽ–ËoŽ™ýÆ·óïãU`Ÿïï®Þ}H˜¢$¢±w·õ0KPD¨òʽ»ÌûâSÂo¾ÝýñîÆÌ‹Q†LíeÅŒ
+ð¸HËl×T}ý
+¾ýh‚?Û0C<‰üïjËñŽýá‰Tª^?­øéã•·Š¤ó-F8 GÙZÈ]…?‹
+–$^†P&c‰=Ì)
+Á%Æ0Š"p 
+endstream
+endobj
+2598 0 obj
+<<
+/Type /Page
+/Contents 2599 0 R
+/Resources 2597 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2600 0 obj
+<<
+/D [2598 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2597 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2603 0 obj
+<<
+/Length 1677
+/Filter /FlateDecode
+>>
+stream
+xÚ­XKÛ6¾ï¯Ð±BŠ%E±M‘)zJ}(ä Û´M¬^Ðc³IÐÿÞ’²%¯v—Zôb’#rf¾CrÆÄ;xÄûpElûv}õæ}Ê=¤1K¼õÞ£< ây"ŠƒEÞzç}ö™ˆ®¿®ÿ|óžRî%A*7sƒ(M@‘žô…2^ÊoÛª(²r‡£¿ßÞ욪®³ƒü‰ãVv›êÞ~édQc×Jî*µÛÜÜÿ‹vNî=h-ñÚî§WÞJˆ€æ­B¤!=»fª¾«ûnV+ÀI½ЄÑÀÚD«¤X &×(\U{½
+Yâmw”؉ý"S¥YsºßÀ@•Ò öU3,º¦¾"3«M¯òl‚맩ÿqX,k褾Ì: vùw#ßfyÞZ8D³€dØî' Š²*j!q€31…d9*nÑ‘ Gs û‚š×6:ÆKh@ÂK:C°(5kd¡: çp½ŠÃDkº™mÝïVÒHìÄ>ÄVËNî^_¯DÄü¾¼c¿Sùi…é4wä¤|[Á<ø,Ít#¬ö¦Ý
+ ˆÓhª#óÈ/«Ît0ʪ?Í°«Lû…0žç¦Ÿ™Œ÷E Ó!°â”ø÷v ’„"Û6vyÖúB’Œd0L€isX¥tÔÍn+!牅ž”Y˘ ¾*WuSÙ‚>;f½Ò}¥eÜÏåÜìÌ /µÕå¤Zõk½I²Ü)Dt0S÷}×cd½foµCW•­Q¡ãþ0LgN=DEÀS»'jRí!'ÆmhÑ'£Vuê?Ë×F® f,¨0ÒÎq£ô> :ð²„c
+4)³æ¬Ž s‘{5þ]
+8gÿ@€¬(­Ë_p“ô"K ¡šÔfÜè„S¨2ÓÜa.-›Nmuq
+ÿš ™Ó4†
+\L‚·]üýiX<¤A
+Û?µ~¢p‡˜‹`ÄÞ°·ïž1Ç„†éÔÈ?–¶F¦ŒŒÎ4YçP…PÅ$6
+ÛcÕç;SùØ:È úVZ1þgÀ?ý+¢Kf;Kf[”Ç
+*”Ü›5ºœƒ/mmuC=§°Î5ÊaBi­FüØèx†Áø†gK²x8õé K²áä.+ÊRâvq‹˜§ ´c÷à6Ýúfé˜ÒçÝ»(1(] R€>&á©|}Þs{À€NHêJ•šÆ¶–e–wßÝ_¢Ôù· ÚMÖ˜’ô)Xó¶ë[­¦ÆN–{r’:¾éØ<„ÿñáÒÒ4Y´ø,‹ÚtiZpy£
+„!\ "Ì
+Á'KÞ­¯þÉ'J
+endstream
+endobj
+2602 0 obj
+<<
+/Type /Page
+/Contents 2603 0 R
+/Resources 2601 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2604 0 obj
+<<
+/D [2602 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2601 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2607 0 obj
+<<
+/Length 1988
+/Filter /FlateDecode
+>>
+stream
+xڽˎãÆñ¾_!`a„¬6ûIò`a ë$@.ö
+ÙœÙYÃÿžª®¦$j©J1|êb?ê]Õ]Åx±[Ä‹ÞÅoÌÀ/Zø à?¼ûþáÝw9W‹”eƨÅÃv‘If8_0!õâa³ø9ú…KõÓ÷jûÙ­›rùëÿ¾Âh²EX„A,œÅ1Qá ®e¦N(+@ùq™Ê¨i×±}÷Q'燇ƒiÌt’Ötà:µ4cišŒ×}U/WRŠè±µù§î[úxÞÛö5Dš–ä6D–0­..:¢¸+ž–"ìÀÍR$Ñ Áno ø%–ªí}äí®_ò¨‚°Õ±åJ)=ŒöÂú°} â9»™`1fYzi¥™HÇ:`dGD^ÝðùïçÂí ò¼"°+û
+UÎtvÝÔ°mCó(¡/#ñ¤Žþ³·õ!ÈË5)‰”LŠ ës„ •X£@äµ±wŒ‚
+êÞÒYˆD<ë¾mÑßSïï81‘P0㜭·¼,S
+ºÝbJfLÄÉX®ùñp¦!Cf—fŒ‰bôòÐ…N5äVeB˜—^?¹ÊÛWE}‡YGJÈ !n
+ð^¼nõplLÇó(ø¼Z>m¾yÊëµ=¹.Bä™H‰yÖØóõÎå<œeÓ.S q³¹š§®º)jgÛ²¨íU—V’žI /Ë°š™î¹-nÁšü¡.9D-Oÿ<—Ìæ¹OkPÍw¿}ûü>ÿR|Þejhzwè¿÷ÌKÙ–ýŠ™×ï1˼s[ç¥{ùëÊ?
+«Ój2ó^\WpN¾²Dòö›ñ÷ɆËëÅ*‡Js%€œà#·ëli×7tr.ëa uÖƒ/^ñÃèkB¿¢}Á¶@AŽõßaWƒ£>1wM½[…Í]ኦ.êmÏË]Ón_Au”ÅiôÏ€fg] »±¾Wü ÕÖí5ÊÈ!õ­X¢ÎjäîÐtoÔ¤ÙQWYÊ fãq ’D±í=5³L™{|ÅXõŠY_áQrÍb},Ö1¶
+ ì,,’ža†ÛÍ=,K#X6ŲRÍfÊ>§_óúÚæä>éÈ}|`Ne) ‘$Y0TßÖCÙ€cI51»éÕàÑŒ¿ÝøŠ¥R„À£Àÿÿ#?N
+!a' ˆˆŸ!>†Í
+Â&£*_· ô
+J>¸gèSÁš³UHomÞe˜í¬sèZ÷_uÜÀSad­þ°É"iF~2f Ôg¨À
+w8RŒk5ÁÒ¦m70$9g"ɬ%|²© ZçeIo š¾§'
+11ÉÇÕ§øU"GŽ?¾y¦³Y&/ÝV¥ŒCôùÃ}½ñ®'ä&m"p˜¦ï†w½ñ÷ch™Ò«Þ_Ö°§„E«p3{¥Cs¼ÿ´Åwaà @ø}'š‚’¶áw5´=—·nÆÅÌ¥a<ÍÎ㻶£–·¤$ÝÐ~À.^£ð¸ÖyGOÌîÍ =.ôìÎ ýìFÿæUw€ªWˆ¨CE“²FŽüýáÝÿ
+endstream
+endobj
+2606 0 obj
+<<
+/Type /Page
+/Contents 2607 0 R
+/Resources 2605 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2608 0 obj
+<<
+/D [2606 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2605 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F57 1860 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2611 0 obj
+<<
+/Length 1521
+/Filter /FlateDecode
+>>
+stream
+xÚÅXKÛ6¾ï¯Ð¥€ ÔŒHêA=,¶H‚(
+¤{kz-Ú"‹Žû
+òß3CR²¬ÕÖTÚE.Ö"çÁ™ïÓо·ó|ïý•oŸ7·WoÞ%‘$æ»Ýz4HH̸…1a<ôn3ïïEÀýå?·¿¿yGià ’DQ€kY@|Ê@‘^ô‘ò`-wy¹«T{üÉl8Ó½²VÔ'I˜tºé”nÎIÀâ¡î¿n®7eƒÒÓõ¤v»Åhvæ¦ýnf¥¬k”¯ÿÐ3Ûöé …CúåY^6Ú‡ÄÝŒ²±‘µÇ,mä1ÝI;‘UêˆÃFçsÔá Üȇf/óݾ™a't³“o󲔊²¨u\iv—–9ôb… ´QMZà`›Ïð%ró¥–ÍZ=X» å¹É¹zøb'-®:ÿmy·QÇǯ3üˆçÔ°±Ž²*Êö0ÃŒp6sø„‡êC90·®gûõQÕîŠßMñ®PkS%'60Ò [ÔËd™92YÇ5sÓ —
+F0%¨¶ÎµI2Y­ RH/îìÓ\N/&’±Q‡CZf£}™,%«`T¾¡[ù>'ÓÜTïñ±3'/fTq䌜ž¾^è¦õÇÎú'ˆós^ølN» ^¨Â5<UEæTJ|6®^? g¦|o—‚-`€•´ÉïPÅ#uH`øef “€0u¬ä]®Ú%Ì™ ‘dÇÙf‹FêPG‡êX£ÞÈ;„¸´ë,~a¡Æ¯Ý9Kâû|Oä,2Ñ!!#>ÙBi²É23ê‚Y‚`A°Åý^6{IVflˆ‚ˆ‚Yæaûl‘©v]à–•að÷â·­5°·ŠGL”[¬|‘×'?cðs5.ž®ª³pf˜ÚpQ{{Àßµ!×Jf?™2ÏR!Éí̠Ρq3¢Éuÿƺ`ºÁÏ4êì-ï˜÷GÊ÷˜WÕâ‰df[n®l°b6Ògy”?Šžíªi«Òm“ïf[ƒ3¶íl…ŽWª|«2mfsÝ]°vïJB:¿7u¹aõ°ÿ³)ýžIÈÝŽò…›Å$]‡Á¢kǾj‚®™ð ÇbF¼í™E„ìÔYá܈mg£ºI«FÚ­ØéXw|†cÅÚ)Ê'pɹ 1àñÌ¥ë_Ž?B"HÎUiza¦£/k¹Q&Øx@–,î×ÕY÷‘pz,HÙXÑ oè}Àd]_ ˜ž[¦çùô=f€¤Æ×EGú“dé
+Ä<ö¸ ÿ ¹µ~}µ¿rÿþøþ+|½þË'ø%™Äs¶.Ž;G8ÓxŒgŸê§®Å_ÕáØ6º¬Å к3Âïx¬¿ã±iF`…¾Áî”í¡4sëJ¦Ÿj#WˆÏm^  ‹±¨÷ù¶±àÙ[sçMë¯VƒmÓm^þÆQQ‘©aÛ%Lk„N­–+:ìx„½‰uQst¾n‹fx¼,ÒÚªldmUmi¦NˆÝ%ΘènvÇÞêG?ôS»4‡~g“")N·–ÏbŒc Ë"k}‡EEÐ̨Öt8§ù¬Ê|NBø°Ÿ©‚ã¥ö~²,q:Rä‡T·¤tñ'ÒÞ}^Kãu!StÚ´ü8åwÇM!Ÿ[8g]F0ß䩱4/Lžè© A¶y¹½£QH³5c. ÈÈÊì“nÂÕÅ6¯gÖïoó4žgkäÜå•ía˜É_º?ŠÚœXíÎsÑì¿Ó/X™l¹"Ǧïü_0¸zþ×ç‹0ýÁ_±„a“Eg[ÞÞ^}üT 
+endstream
+endobj
+2610 0 obj
+<<
+/Type /Page
+/Contents 2611 0 R
+/Resources 2609 0 R
+/MediaBox [0 0 612 792]
+/Parent 2588 0 R
+>>
+endobj
+2612 0 obj
+<<
+/D [2610 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2609 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2615 0 obj
+<<
+/Length 1103
+/Filter /FlateDecode
+>>
+stream
+xÚÅX[£6~Ÿ_ÁK%"-^|·¥ª­´»ê>¶ykûÀ’AK Êe§«ªÿ½l ÎŽ™É¨3¶ |çÂñù>“F›(>ߥvü°¼{ÿI³H -©Š–ë3$¡‘àÊ£eý3A-¿¼ÿ„1‹ÒB°ö^J#€º›þÄ”•ëûãSs(ó¬š<o'«û]¶é.Õ¡øÉ`Ì&+Á)Ò\;³Ìg–¤šÍòoY½ê üþá~Uí¬>mWMuð´(Æ ryXœëÒüŸŠð!†RLÆÈ^L{ãSú01C\+‡ùo{Kÿ¾/F$`L£=,íô·ÏwQ"0"Z€Y0GÈÙ;Èéaï×
+ŽèHƒD´~p@Úù±|, H ‹Ýx|,Ú «bão "ã¢J°ùñÐÔ3Û-¢b°y,›ºtW³jÓìËãã-ÆdüëÑ\ß6-€©¸8œ¡œÉfbº.þ¶æÍé¡*›ÐaÅ»ÔàsŠ¼®RÄa—,·Z[Û-ˆŽ›ºúnfåF–¬uYƒf|jkNUn–Y»ìnÊþR7´¸Éñ´¯ Ôñ1;zgÿT¬ÙΤ¬ÈöövÈSY{"ÃÓ¨„Bðg¢²9¢]þ·ÎaŠ¡$adýRÏ—d[Huñ´j¶Û¬Î‡eõ·öíÓ“Ú×aû©\C87†²üyÜ\Sw¯ð=(Ó°ŽÑ…ÕÖTyxÓ8´i„¶÷ž$¹múf$ŒÎHØC±J™‘0ÊS7«
+¿<Œ¸\U\ rDR=¸x+’’rƻɪÝf¶º=Jýf(PšRK€ø’
+Ñ Ù á„ñÜHŸÎ¨2’ ÇI€”Áœ#ŒíAþŒA­ãt¬ŸX¯ŸèX?Ññ§ú#YÄ^(‹´|•,š£‹´z¡.úåy¢õok,‡Îúa`ä깚լj¤”å1ó1°äãòî?b'
+endstream
+endobj
+2614 0 obj
+<<
+/Type /Page
+/Contents 2615 0 R
+/Resources 2613 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2616 0 obj
+<<
+/D [2614 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2613 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2620 0 obj
+<<
+/Length 1368
+/Filter /FlateDecode
+>>
+stream
+xÚÅXKoÜ6¾ûW(Šj,Çž@[š ½Höç •¸k½ qm'Aþ{‡"µ¶Ö²M­Ýæ²¾f†gf?;¹ƒ÷gØ|/6goßÅž 8d‘³Ù9Ä‹QH™ø!¢Ìw6™óÉõ1^}Þüõö!ž¡8<5—1äÑ “. ó’ì:©S®Äçi-•t^óŸõò‰¥µY¾&Å~<Z"v–Ä®ÞWwv~5"t¦MÙ?o/íÑ9{E‘GïÛë¹Ü6·Æ
+HBÕH›ö‹éì›:‡YÓFßÑV™iÐ]]µIÎñów ƒ”‰Š× Ì{vægÏ´zìPçMùv‡º %8)P~Ŧ„þæBëÃ2}=_
+ùq4êü®¦*îƒ/
+à‹šFüðþÌYûò£Ì‚9JïÕ!¨2³:Á؉Á  n€Ãá ‘8Äg(€ y1¸aGèÛ¢_­\ý ]YpÝQ%i×hq»‚Ÿ/Z¾)Dªš…n¦ï{Þi IöϾ—ýÑx’ç_·ïÅõ
+fñš÷fN Ý\w–º§Ù9£ö¼6@O6x¼¹ˆ (fzsíj­tõBŠ¦5XÉAóܤ̛NÈ¢B«µçyîG®Ì0fìÁ µy˜ßôfÁV«R¿V?fþ®é´pS$ROåÉè/¹ž^êÁ
+Ãÿ7K1geÃR`e|üGNC‚‚ˆŒ,…=x0®|0â‡Aasœ $p<Uõ˜kO¸DIŒHàOõŒìˆùnβ÷ã¿ÄêϸC¦û wZî>£>¢$zèþÿ{Â}bÄB6Õ3Oh|7ãš4ñ:u®wÐÔzÌ#ßM÷]ÇkµJZP2ê«ç„@ÛxÜ„—RÆ’§9¢&ˆÑ ÞgQ†¯]|1tŠï’})õ$1~Í"¸®ëY²™ábÌeÖŒ‘S8˜‰²oß­ £vvL
+endstream
+endobj
+2619 0 obj
+<<
+/Type /Page
+/Contents 2620 0 R
+/Resources 2618 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2621 0 obj
+<<
+/D [2619 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2618 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2624 0 obj
+<<
+/Length 1740
+/Filter /FlateDecode
+>>
+stream
+xÚµXKÛ6¾çWøRT ÄŒøÒ£‡b›" P¤Eì¡@Óƒ,Ñ6±²dˆÒ>ä¿w†¤¼–W»+m“‹4¤Èožœ*\láâ݋п__¼xõ6‹ˆ¤1Oë)‰_D2&ŒËÅE±ø'<9û÷âWo)‹„¤Q$p-çD°€ì¢Ï”‹µvÏŸÜòòÒ/_Ò¤2í‘Ó1d&HHÙyÓ/t˜‰Çá4L½þôú¼U¦}ºWÐi†
+!ZCΖ’ò௺E>’í6CkH”6Ž*ôçsÕ·dÝÔ;÷áýH(÷þã,ÃÁ2<%\x}~{Üœ1"av ìÅ؞Æ„°µ“„zožàÇ7¶rñøûgóŒå’’8–C(ŒQw†ênUªa*@ Ñ!ÜK´t\ouŽÛ:Ø õÞ¨U8”§!À$‹á’E±„8H ð¹²sª±1ÅC| B°àS]mp–ÚU±ß__¿´Qkˆt»À´YÓj·<Ä(ª6Æ}©+÷Vg4¸²y¡z’ÿ#Î?èE9á±·—ɳÎ`DóCµËnôNQ¦ÿàWd†²æF;º<Y…uÈQ(ز횊Œ– )dr3qÈäñÓ™§R×y½ÛeUq/­â¤n$ÓjÑq*Ñì¤S›óöºÆåFua•Êϧ±ë•‘á3;ßáè|]vf;¯YôÇ5 ’Mmæ¶ ’ÿ¨–!¢„¥ÑhË`ÚÛý¤n$MN¯€s"ñœØT¿…Ó8²žh15\ã£vƦ"¤òÚf‹Y
+ a2 L·Úic ÅhÌ78ÕâçÛ= Ò@™_ £a©¬ËnW-=·ªp„=ÚöÛôÇ£à"à§ñTKïiR°¸/HGp?XätãÌs»ÖE»uc+›Ú¯lë½›qÍÈa—GêªRã¦]¢Bͺ¦õ}‰¿Ûã¨m6–SG<Ó”DÜ{¦®Ê[´_2Ç»¬UÎJ¥à7»Îkº4øÝÙy`\á [rÕ­9 ¦Þ!°ÌV¿Ãö6c’ÆØ9ykC
+EW†^e§½ð0w½U•£¬µ@ö`0åBét+–œYweiâ¤ýä.˛ڑÕúIƒÕÍã´õ ³BmëbÛȶa™¸y$°Nk$Ü–½SÖuÓYåˆÜkâüwf©|-ÿ³6-¿ë~]›á®[_Ïòó¶%>æP¨uÖ•þk~êÛ ÕZhš|20Á“Õ´¯@R<³šÚDõõh
+</Æ!A±H†
+7ô88)=MŒÆ}®×ÏêqÁÂLåêU…L¼ªokoU‘²!” 0Èˤoíô6œAÁÃÙœ\p‡ŠEä ]tº–Í”C7'Žº¹±e˜
+W£>`esw,åGežJw  QPh[s×µÁ„-š°ÀU3$ì5¨ñÃ/Üï]5‚A‰
+endstream
+endobj
+2623 0 obj
+<<
+/Type /Page
+/Contents 2624 0 R
+/Resources 2622 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2625 0 obj
+<<
+/D [2623 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2622 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2628 0 obj
+<<
+/Length 2229
+/Filter /FlateDecode
+>>
+stream
+xÚ½YK㸾ϯ0#cE$%‘Ê!˜ 0Yl.²`gj™¶…‘%G¢ú‘Áü÷T±HÛҨݲͥ›â«ŠÅª¯¾¢£Ån-~z¹ÿŸÖïþô7–-²0KyºXoQ˜)cÑ‚-˜dašÅ‹4‘!Éb}Xüü|8Vú ë%Ï“›²©—+!² nŒîþ¼\Å Ö{½ümý÷w¸M¦‹v·ðÍþ„™¸éÅñŒ…JûÂD\÷Uå¶#­¯¨,8 …mRvNE­—,Øè }>,W\ºÈûNSÙÛ†
+ŽùÎu=ôeµÑ-uMÝõ•éî8KDö\¤qru>J2ɯž…÷FŠ’0–ñ`Ÿhu<íËbÉe°‡O8XÙÕï 5û#U›ÜàÙ±ç'¾P{¢ÇOöTa”Jê{{~žZpVQ¦ðu©â¿"5Ê5eEŸ¹WµkpèÙëNÿÁàvA[>ô'Ý¿DItÇ ÄàÍK¸¾~|hžgš¯Ñ†œQpgMc Éà"Ë@owRЕ…ËU
+Añ©1û{¢$&™J´aÑ”µÑmUÖºûZg@ ™ ·ëHë¼ÕÔ€@¡(ÉÔE”@ìt÷Äu,’PÊøÇÜdùX¦a<Úd›—•ÓÝ4N Èeã›C„´ÞÆ…²qqOH+ 1‘ v´!ÝêÇ>žnû5Ð:©ÆEGƒ> ∠¯-Xñ 4Ôa}M| Fù×%öÐx§kB3Ž&±]e½×­__šŽF—I
+…º­4ÙbÅD([¬7 S’fî,^(8FÛcÄ
+ɪÊÕT¡‹¤Añ¡ž_¢ÈùW"¦ ÀAÁ†ËØu“Ä"…$†kœ©×{=>1T}ºÚάE
+éÓÐ>wõ¢E¸³­ä C"+6¶7,á†Ádþ’eà«M{Évº…˃+™ò­sF~.£¼ÖÜß“¬¿LÝÔŵ½'º¤·‘\Ä*ä>ל ^6»ðRlX` „ÈÔ×fNT¿* áF&°‚ª  Þº› jÌh/¤Â… 6/u~( ËÛl¾~š¶/Œ/ì´c¨Fçë}}Z@xsYÀF
+ÏìK0?=668ðL=è.ø •ñŠ gàE-u8uß´@çí÷ܦµ\gmý´*·8c7ìͱ74þd %ö[zWÛôEée8<{~\x’B”º<Ë‹\©q[óPrõ{ºœ
+endstream
+endobj
+2627 0 obj
+<<
+/Type /Page
+/Contents 2628 0 R
+/Resources 2626 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2629 0 obj
+<<
+/D [2627 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2626 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R /F28 1704 0 R /F53 2210 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2632 0 obj
+<<
+/Length 1771
+/Filter /FlateDecode
+>>
+stream
+xÚµX[oë6~?¿Â/Å‘‹šåE¥¢ ¶Åîc›>m÷A–èXˆ-y%9— Îï ‡r$E9–œ‡„Ã!5—3áùânÁ¿}â~üåöÓ¿&á"b‰Qñâv³aÂŒT‹H&•^Üæ‹ÿ:ËÿÞþûÇ_…1K¢(ĽJ±Pä6ý%Tx³©jÿø妵ûÃOÿÀIS•w»¢i‘ΫŠÍSo›'›»º:Nü¦më£Åé¦øò阺òúW‚³D'©rž©ÅÆk9/:îD«)Ñ¡dq(û¢mn7=÷Šâeàár¥¥n×n­_r+YÙN{êuŒ< gšótHË<Ý´¶;›CZ·ëêi¾&=¥IK&uÔ×”5eº·äž:è¸
+ÔIP'Å«ˆØq½/ZÄmR2X“,0FFÎÆ¥+B+W¡æΗÛ=ýÃI[®Tăv»%z_5ž[ÛÌ–Kíî™8q–E³µ9Íø Íñ‹šW5Ñë]µ\IdKøwO¼j£N‚
+.t¿í—mÝ 'KwÞ€ªbyǵ 4Lèñ¤K*f\r©:¶‡cË–+#Lð/PJ<:ŸkKÓ;[Ú:m ´ç)"Àò[ ÈÃFŒØ•‚ 7?
+ÈZÃSÝOÎg-æZi³j¿‡úMæ½LÖ/bX#Ä̺Øøàëúÿ“Bä÷Ë}×]ZŸ…øfÕŠ3!õWª•-æ«(aá«-§ÒçŒgO¸Sxòw'F¨žh•¸tZ` Øà;«÷ÔkÍ"©»Ï(*L™'2"m(SšÒ;»z,r(›nžUT&ëb}tA9#B€9
+I!?’àÚ%©æEäÚÞA}Áöã‚ çõTð®xÛ
+€¡‚\P•u]Ž þlŠS#| 4ÒH&T2V‘Î|™èYôðûC]9ócfûwþijñ^œ\ ]‡¶+î©…¼Ü…'LÅñÐW¸ç»*ÎÁà[n d+EnùÙ{±³½†rºí÷èð ÔMÅLìcçq ·VsH]äE§mº߶mµ'†ëêí¨«{×Ô—´à£Î­ž·{®‹l þß7>Ú\>¡áÌè‘S¥}jÁŠ¯a?ñv‘JÀ[oAæAaä"†mZçDuä#Hš„Åbhµ—8¢$´4ZÄP >†€Ú»'Ó3MàO>¢)–øþr_U‡ôÖìdÙé²Aà™Ñd E •¸MWÕ S9í o2È…‹39Ÿ@W,ŽÕPʾòé”xî2!܈ž
+QN›£ŠÍhSv¬kÿ\³× .+Àî-n{^Æ:`çSØ¡Ê ´dñµ™#b(¼bOa˜Ÿ±gæ´¯üƒÜ8•ôA$=:
+BdåÕq½³+Bˆä`ï
+ØÜg«ˆ/}#|ÿ¶ó{¿/g_
+'•ÉGU–Ù‹/&_f¿O$ÿ¨Öìðòš–(Vœwšó“êw£9LJ°A'̘ˆÄ1ø䟷Ÿþ‹mj
+endstream
+endobj
+2631 0 obj
+<<
+/Type /Page
+/Contents 2632 0 R
+/Resources 2630 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2633 0 obj
+<<
+/D [2631 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2630 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2636 0 obj
+<<
+/Length 1225
+/Filter /FlateDecode
+>>
+stream
+xÚÅX]£6}Ÿ_ÁKU"5üTj­Ô®ÚÇíH}èö€IИÙÕü÷½Æ&gâ¤éö%ñ¾çÜks}¡·ñBïí]xî?`ðzº¦ùîíÝ›û»‹"â%AÊñîK/fˆ=Fã
+Â7JAîˆÄ1ÓœrÁ‰cF©JQèÊe5F­éëÚT6ãЉ—ÞŽì˜ZÜ6gL%ó¤LÈ7NÊ„þ—Iù€Ânš”Iì–”OP´¦d’¸Ù<”kbàû©[½}‚³µÈ¦¡›Íã2éëÑy5òlÕ¤¯‹_o‡:ˆÐP4¡iί£ÒE39ˆR0уük[ÕJ›QâçB‹QY­{#q©V|±R| J‘_èÑ]Öq©….U2/¯û‚›¹µ²òdÈ…ƒOÊ5Ó|7PŒ°E¯bF‚<!8¤Bm_©í—ÿ´ÃŽQ:µ§9‹@‘VJ£R ®äRXT4„‚5 ].#¥'ñÒŠ—ú<ËÕàVõ”X—•ž1Jžx©“™?d)-‡ ýT'6T³Ôó™yN‰L=¯­ÁÌq&8§Þ¨Àj¯÷8&$†è¦tj…!y¨¤h–_&Kàéµ;½¸;û! _½«>|}¾ÞrÇï
+endstream
+endobj
+2635 0 obj
+<<
+/Type /Page
+/Contents 2636 0 R
+/Resources 2634 0 R
+/MediaBox [0 0 612 792]
+/Parent 2617 0 R
+>>
+endobj
+2637 0 obj
+<<
+/D [2635 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1298 0 obj
+<<
+/D [2635 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2634 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2640 0 obj
+<<
+/Length 1853
+/Filter /FlateDecode
+>>
+stream
+xÚ­YKoÛ8¾÷W(XI=¨ÅbQè¾€½tì¡í‘hGˆEz8I‹þ÷r(YR˜D6öbjø˜of83$ÇÁj·
+V¿¿ lûáúÍ»ßÒpûiÂøêz»"aê'”­â(ñ)‹V×ùê³ÇÑúëõ_ï~#$\q?ãPÏeÌiŒÌ¤/„…Y£D)×›ˆF^Ó>ä{Ýûχ÷­,E¡ ©rœõ²œ o,Ë ü4J{ôxºÈBeÒBîêª;dªÕd±U]9ëÿEÓߌ€å{eVÉ}cZKn‹×e佌‰KFú¡cky¢uòµ“gºs_úQÊ{¾?ô”aOŸ´~ m°ª´ŸŸ~³Ú¤¡OCPƒ¥' ÁD…jdÝf·UÝ5NÞ OºJAq@päLV$b~¬ ÀL,Y]—À÷OÃp½a”{›l ?ˆ`èB­iâµRííšx¿¿`¶Æ®.E}§'Êéæ°Þ
+|Øv•ÙFÆzÍÙÄ8þz†l„c {pgBo·¯nú­a^Y™‰y¡u’à¹ï
+Ü$„Ò ùi8$„ôõÀÕª*yŸUe)Tî¾Ïäë÷ïÎdaM“E,KBÇ‘+Ù4&×ýmz¶Ý·o&Š‡¼
+^‚„{ÅV·Ô>/áãô°& ‹¦Û¼#¡g<û×4åpíäl*’Ý85ÛW_Ä#õXDü0áS^½.-ÊXJ¡TÀ”[DÛ½“ ÐÍmÕísüÞUZ§I 44˜¶–@c‚¶ÓZü²Fnì€~ÄOf6•ÚéÇ;Môã½î§5تªç2Ô54é¬kX¶µ¼Ò¡8Û>Ûî¤$°©îö£t¦5IL@%V#4¬.f1]ZºŒ­VXíÒ÷Fü¾š8Žzúõ¹m6µÐö!^d·Ãr…æ`¤¾û,ïß5{V‡n¿ï…±]¶Ò¶U‰¥€­*„W‡3WíÇè\uûA`«]È? N•·ÄY ç¾
+ž#'vi™N|]#g`·Åîv³·‡€Ehà˜ÌÚ®¶Sª­[/ò$<bêé$<à€™†tŒÔjHµ¬$‰„©L‹¶ÈŒ‚÷eT8jÎ)X>À€j5Õ¦€)õÁ¥dsw…Lg¸dªÖîä¡jÚ}—ËW\l0NDÀŒN™]-;³ „2éÿZ@MƒØSò^$½ŽE[T
+‡ ¹78†n]¦^ ɦP»½e¤ÍêÄ•šÄ$}‡±LØuÖ}(…* ÃÂæ8íÂLÆ¡Ÿ„ÑTÁ…ñ;²SÄ~Äù”ÿÜqM÷Iÿ_…ûDS¼Q~:²(O†)8’éU·Bí$ÒxŠs>
+¦Ô“î‚ɲ³URÛÑ°¨°­e)˵št@ÄáÄfƒüúŸ„ÆÝïÁôÀ¼ÌÖúí_"˪:×^ñ¸æ ­7˜R\«¢hµa1\¯ìŸgX&}¼~óìÂMÑ
+endstream
+endobj
+2639 0 obj
+<<
+/Type /Page
+/Contents 2640 0 R
+/Resources 2638 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2641 0 obj
+<<
+/D [2639 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2638 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2645 0 obj
+<<
+/Length 1267
+/Filter /FlateDecode
+>>
+stream
+xÚ½WMÛ6½ï¯Pš+’ú¼F€l€½$¾e{ %ÊVŠöî&Øÿ^~I±\eMm/ÖhDÎÇ·÷ïÓ]`Ÿ¶w÷YèÅ KpêmK†Höâ(GÞ¶ð¾úI¬þÚþqÿ
+%Š¼P’×vözgÀìñ‘¦’ù G¦ãëL7t|ÎÙá@Ú⌜ó¸|qJC·Sº©KÙOðñz7@úKk4´”J]í›#}»~žGt‡N÷»¹Ž:"+Lš¦îÅùߟ+¹ys—l;(ÌûóAI Ð,G´§yC ïÈžºHJ€ ÅC"2E=Ã?ÅÅÐÌ°Ô(Š4TqÌ'E[…¢_êòbÜTyÔp;ûZ,T(ÖJò sRì»s9¹…Ë?
+³„Îé":7ûˆtkãÈ÷ˆ5Oõì?#VB˜þŒY…3µBdð&jQI-sµkÍ¡ãAýîŒÌr£ÿøœRSú…Š~2†f`bˆgh…Ù†cÜÌò2tç%nçe±˜ÞLÌ™ÅMÔÄÈ‘š÷iæ™; ™¥J"ªÆ% MmYa¢•¼ùPäaí¾Ÿi($xzÖS`yPÒ/ÆÈô[E ”~ÉšFñY·<Êu 9g½±+¹%*†9²D½ ÕÕ ýÂØòÿÚ1FbåÅLù•òZuRj¸P}æÅRy/û¯¹éŸ”Í{œÄf=D5za(´E¯¬Ì§dèH”¿—…ïu6C †‘¬n˜yip™èI8™ùq{÷7tå
+endstream
+endobj
+2644 0 obj
+<<
+/Type /Page
+/Contents 2645 0 R
+/Resources 2643 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2646 0 obj
+<<
+/D [2644 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1302 0 obj
+<<
+/D [2644 0 R /XYZ 153.694 406.426 null]
+>>
+endobj
+1306 0 obj
+<<
+/D [2644 0 R /XYZ 153.694 314.77 null]
+>>
+endobj
+1310 0 obj
+<<
+/D [2644 0 R /XYZ 153.694 257.983 null]
+>>
+endobj
+1314 0 obj
+<<
+/D [2644 0 R /XYZ 153.694 196.221 null]
+>>
+endobj
+2643 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2649 0 obj
+<<
+/Length 1674
+/Filter /FlateDecode
+>>
+stream
+xÚ½YIÛ6¾Ï¯00b1+îÒ­ šmR
+¤9(6="K®$Ïcþ{É’,GKšfLÒä[Èï½÷‘öfw3oööÆëûD>½Y]×|÷öæõêæÇ_1f3B°Ùj;Ø Æf‚KD(Ÿ­6³÷ó0e½þ)N‹«ßGê˜-’žœ-1FoJœ,’PÄi·Lµ?Oq”SˆaÞ)6ÚÁBaX"ôz(ðD<Ãœ"Ô¶sW;µXRJæÛ4ŽÓñçQrg‡öá:Ksݦó‡ æ*s“ÃMx(ÔÆ~µÍÒ½þ%MÂxcÛ$Zرؽ̵`¡Ýv1 Ê;íâþ|Õµ—K‰DÂã°”#/Àvé›>}”Â䦺¿?.8™§æß'·þÊ62î#æúWÚi›˜•[—D‡e‡ Ü> Æñ­cnóé\£Æí}ºµÒ {VT«Ù»Ã÷ d4r\ó
+É÷Tˆ¡.@Xð¯tïÏ1î Ä=ܧ0¸îE¢Æ
+$õõŒ%aIB ÃP0ßΔ”:Ô631CÜD@e@¢Öép¾9gä÷øÃI÷ÔãÆÃm¡²ZrÕM€ð-®Ýâç.Óœº%xðÊ26Ñ2­èÔ¯'(õðaz6jÛòNÿY÷L‹Ô¥·ÌìÍ]œ~ ã[z:O{®³lÉ[ÅØ=ù¡]š*CFh•O®÷ôÃéÅpm~—6ˆx“º6u>¯Ã©ÂÛó‹nø-]Á0]Ñö±¦ª½¥öäUœ«[ª[Ûh¸ÌëßÛçI<Å÷&@(¨#¸A(Š¨ˆÕTžâ9Ž".Eaa)y¤U9ÕŸAÅrWû2uvªÌÕÆ];âª#ácŸkh«„j«xž7ê5=—Öõ1ËP9w+ó´¬È
+è3
+´f„ t˜ÊòtNÚîTÓú<B-°s#NŸ—Ë PS¯U™
+ú\§øZ©ƒ^d:ÍH”tW'%ýù°‹ÌðÎvíëÆ}”¥ÉÞÝØr+ýÁHé/3§mT×-(Ø…›<@Øsî±òÙ~¯6x`n™úA%ºK¸|RqùQûåæ»Tª½L÷*MÊ4˜EÕ#IZÝ™ùüTãZ™Qnfÿã faæ~“É×Yt(Ž™[ÿï1-Â"J“WÎðb=˜Ñ <8!GÛ
+{Ú©\%÷®~—ÝmçjðÓ¹ STÛø/©ŸéTj¯Â_`Dè§ù²ªE%oV7ÿ"üUG
+endstream
+endobj
+2648 0 obj
+<<
+/Type /Page
+/Contents 2649 0 R
+/Resources 2647 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2650 0 obj
+<<
+/D [2648 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1318 0 obj
+<<
+/D [2648 0 R /XYZ 153.694 439.054 null]
+>>
+endobj
+1322 0 obj
+<<
+/D [2648 0 R /XYZ 153.694 372.553 null]
+>>
+endobj
+1326 0 obj
+<<
+/D [2648 0 R /XYZ 153.694 260.971 null]
+>>
+endobj
+2647 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F123 1756 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2653 0 obj
+<<
+/Length 1961
+/Filter /FlateDecode
+>>
+stream
+xÚ­YKoã6¾ï¯0Pë
+´zèö È´ÍF–\RŽ›ùïáP²­(]YÛKL©™Ãy2Ñb³ˆ?¼‹Âï7wï¾ú>W‹„å©ÌwëW9K…\$qÊ„Œw«ÅïË4‘7ÜýôÕ÷œ«EÆò$Q´—ÅyŒü¦\ªZÍfýë7_›ºÕÖ5õ)çóuQ9M/„ߎ·<byœwÂÕ<á L÷¢ýlšà¬Ï\n{p½dšö¢{å¿úe üF Ó0üå‡w‹Û4fŠ6Ø„8‰æeÕ8]TÕ(_
+èyJ°ÎuÓíGò²qkv¾u‚(øM‚#w
+ñæŽì®hMS¡°aŵõî ÎaÂ"xo÷¡î“Þ‘vÞ‘ÎôŽ`ÄäÓ2^6GÔ™e_#+Ÿ+«7÷+¤¥Ñ\iáÎg†˜„3‰îUŒAÎoF˜IÆÀ1É;”¿mõɤhp
+‘sdÂN«á”5í,ˆ´Zktøü¿†*–MØ}Üš׶4uûÔóa¼F? E1rU¸-~ ÕGLáH&É2d纨
+Á
+1Ú+¦Åêσƒ:ˆÝÜƱ ¸ê™Ž3*w0ІSÍ}tBš_‹ß¸»a,T*bÝ‘Bé”u¥ÓYþ·ME±/T9X¼M®R>×QO±î³
+~椺½"& œLvïzçì=عP1u‹Än/7]¾X7ãî ù ¶ì)wv.M££i·Ý&"Ág«é f]@¯ªgœnVz= ÿk‰‘õƒ~šÅ•g nêUÍã+J]Ø{Œ'…æ‘è&²ä¡`øVCe¯jr¸4ß $K€OsŠwO4Á '™‘‡‹¨Ãð/™Ëç 7J’K¹xš{½1µ7óƒ¼}
+MÁãM ™¼:è®R³Ín Ÿ?šæàNQžÁ9ùä(.g·Ô}
+CåŒçùÿ
+ ¼)|2EGÂVòA覑rê¦;àÝ›ÕhóÉAFJ²´{w½|¶
+Ī{á:o#6§—©–*øªì¨x~:k°Eta+õ¥ø‚PA®‹6t¨',*:©\2ÏejS,$‡Â;¨Ïj:à²5Ô°VP‚ˆåX«Ò§ìðo"ÁS–A ï9¥éôw«pž}yÑzø\6l`ˆzE2}ÙÊb&¢Í²!Kʾ°N»Ž8*<p¼žEW«âþéBÏyo®¼jT#¿Ti_‰>{÷ûµë€‰«U†„Ÿu¼/¯(×Wƒð^øòLrýD×­}ºR®º^®š‚=åRú› ¾†
+€‘–¢4z¾øä»»wÿáJ˜
+endstream
+endobj
+2652 0 obj
+<<
+/Type /Page
+/Contents 2653 0 R
+/Resources 2651 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2654 0 obj
+<<
+/D [2652 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1330 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 566.824 null]
+>>
+endobj
+1334 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 566.824 null]
+>>
+endobj
+1338 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 566.824 null]
+>>
+endobj
+1342 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 485.878 null]
+>>
+endobj
+1346 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 415.143 null]
+>>
+endobj
+1350 0 obj
+<<
+/D [2652 0 R /XYZ 153.694 380.274 null]
+>>
+endobj
+2651 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2657 0 obj
+<<
+/Length 1527
+/Filter /FlateDecode
+>>
+stream
+xÚ­XÛŽÛ6}߯0Pµ*^$QZ¸Ú
+Þð %Pj‹CÌ¡› ø|>ïß…ƒåçÀ0„ß‚55¸â
+‡a¬Z±(mF
+¯(ÅUåˆúˆ’Rä£gÏÁJŠ~{"]WÅýÔWÆpp垌¨Ë,I‚O·?m÷Jþn^ãÛÅ\ñËmeæäåspí` ú‰c ¾:bÖ¡ý(õZe‡ ý‚Fe%°&@¹3ÅfÿF Œ)°,Iƒ³Í«Á’,0Ñ£Û\VÄ)6F—˜†ô`€ÈBBiLß›¼7ÆŒ´Ä¦MÝgt/‹8Ä^7¶ŸÀ¦c„ ± †Ü4wÛºs¸…ÆÊãÝ«hwSkñ{(Nø‚Ý€݉¢Öö‚vÑ TxLÀsÒö(ç|#8¦)q¾Ízëäk¹\:P¸Fº‘–¥ Zø«SÞ6.ù£m±ìöôU+Chà ó~{²Õ4íA@ßóàcéO\ˆ@q è œZ°£ »5'd¯‡$WÍ’‡Êu–ä×~ØF}Ùpl¬î1jG—ÝsY—­â#^Ð"¸Ð¼êªÊ†Òϯ”U …xVB;È‘Î!t…s&UƒOƒ‹Å`“ig#Xœý<Sœ·]¿ñ$`T‰Výa¦Ïsó­šg>Ä_´ÍR¯¿Ñ‚xó'LH“–×Z}i¶}™v÷dy4 ƒ†V¡nÚv€™×m¯Ö«¶çþæÕøi>DW–«_ZoGØÏÂì½±Z–ÚBV—•v æó|f~f%ç¶á3/#°X`þ¤Ð¼Ò|9ç^Í«^JÞé¶\p×kní;æ;|ü,€ÍPQÆ^ìJô¦›ßïÌÄ ìÑ·q|l¶’ï,Èžý<
+CØpð‚҆ˎtÃ4ç#Œ“฀®ÐÂÉÛ†ÛŸ6ìïvÃëö y}¸åsA%°²˜Ðâ¾ûæÜǤ
+endstream
+endobj
+2656 0 obj
+<<
+/Type /Page
+/Contents 2657 0 R
+/Resources 2655 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2658 0 obj
+<<
+/D [2656 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1354 0 obj
+<<
+/D [2656 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2655 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2661 0 obj
+<<
+/Length 1585
+/Filter /FlateDecode
+>>
+stream
+xÚµXIoÜ6¾ûWèRt t‰")éÐÂè1 š´pF¬5Ò@ËØŽáÿÞÇMɲM%èÁ—ÑûÞûø6Ñ÷žï}ºòÍóýîêÝÇ„x %Q{»½E8ô©·+¼¿71¦×ÿì~÷1ˆ£„1"†ˆà©} B²oZžæe/úŠ?Ê~Jë"Ý÷¼•Ó?ÞߤEÑ7êÝìê…®©j÷éé'9Qok0·šXõ˜›z-ïx¯±ß[á‘›ðê¡ù¾©{T¥÷+ ˆÝ0€?° K;^‰šw·â´#Y¢Il1žäOFïxöD ž¾×ÂÔ ?ºò¶‘¢ÀÛb@Ãx¢,¯ y ‹RA“ÄK@Ì”"ÈÇJdà4D ,¢ F$“Ž ñC]´%oRù7J´Zõ5Ž6gù¯©àox§“ƒCö°lz¡/¹~ǾnJž¼Õ«_|ê߉¾4*ûÊRi°~VŠá¥æFmâ'( xª¶$â˜ÞòxÄPð /3@¢
+[ä-ö…Vo)Ò„iÃå 2»ºo®·’µ^ ~€
+:µî¯Ÿ.2Hú-œÓ˨#=PD#z¬‘h±Èên
+ž¸Áª&K+›(¡”CepÇO+à¨ÜP¿Øn.Ëe®,¶üô)±?7Âz¥^†¨­:¾~±k‡ØÆ”=;DhÎΣ«€õpÌxË‹E8#c·ØÀ³
+Ú–G³ã^­.ûq3äÄÍнxÅm"¾Û ¾*yr86wÀísbèÐ6ƒòl®FîŸ;»adü
+3ÓEÅ÷½Mv_Ǵ׊C9[^¹AŸÒv/ªÊÂÜì«¡+ÕÀÍæsµ`QÔ×W«=^[䵀ΓªšŸÍD>Wà:&YÍežr÷ê»IFÕÍÐt@/\×L€ln¡k⟇‰ ±/„ŠÚ.KÛ’K×z-j—ÍÅnõ l‡JÞh )¬ÚCTE¸{a ¡›
+u“µÐZ+o‘ŽK•çÞ¼~‹µŒHþ¯RD©›ä·.ø–…37áoTŠeÙ‘Û!¨kÏ´=ðþqR8ò›¾þDSÿª=0°ŽŠ5…+º˜Sà›Á'ÕåQ*¢jFÉM
+¾üå}¥lã(Ô£xòʇÝÕµþl­
+endstream
+endobj
+2660 0 obj
+<<
+/Type /Page
+/Contents 2661 0 R
+/Resources 2659 0 R
+/MediaBox [0 0 612 792]
+/Parent 2642 0 R
+>>
+endobj
+2662 0 obj
+<<
+/D [2660 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2659 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2665 0 obj
+<<
+/Length 1163
+/Filter /FlateDecode
+>>
+stream
+xÚµXKsê6ÞçWxÓXD±$Û’íд7™éò^vm ð±=¶àæ1ü÷É6`®
+wCÉ‹Y%ã'-n맴ìð@à’pÛ#Ì䢨dYÔÊD¸…xÇÏî¨Ìwu1Í•¬²4—ÃÜbØÑ-ÈÌ›ÖñÓÞ©Ý
+?tÓyÁÅn'ßàFŸÅ
+¸@!=K
+¶ÀËd-ØË^ìá¢ÜÂŒv°u} b EÀNÎPp¢Ò<’m&ž7P†8Ìöô4ôA4ô!ð }
+²ûÒ fã[Ø#eÞ ås™¥óTeíŸ!Æmf…Íç.ŽQˆB&cgš¹¼Ø–!7›ZVV2CAÄ=*#|ö~*ÓEÛÆðŽ£1˜Ð Œu9à€8ÞG/n²î½}Œ¿sGÅþ»PÓô· iƒ{®„qˆ¨&/œFwóŒý–/Ó›ÿ
+endstream
+endobj
+2664 0 obj
+<<
+/Type /Page
+/Contents 2665 0 R
+/Resources 2663 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2666 0 obj
+<<
+/D [2664 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2663 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2670 0 obj
+<<
+/Length 1944
+/Filter /FlateDecode
+>>
+stream
+xÚµÉrã¸õÞ_¡ËTQU›X¸ÝœN¦»&‡¤jâ[:ZEŒ¹¨@ÊKºüïó ‰¶Mõ$éÞ¾"ZíVÑêˇÈýºûðñs.WI˜§"[ÝU+&ó0åb•ÄiÈE¼º+WÿrÆÖÿ¹ûûÇÏŒÉUæI"ñ,—aÄ8 ²‡¾2!uõŒÿút;ªvjýa˜Û8 …yœ{b|Ž˜¡äé9±{µÓÝÎô‡ý,nwpg·˜Ã-y˜É‰ Í‹ÑÛªïF\Õϳ4ÜÅ þå2 šR·ªC¸ºôBûÛ+(ÅË(éj[÷¦T娓9Ô1yœœ£Ôxß{£;¨†ÿo߬0Fw£¥ýí/Ÿþú·Ÿ?±wjc}£jÆ¿¥¯¯¯³l9Zl¥ËØ*ÊÇ¢ÛªK5×ã‰Ó+ˆfËÔ\é+ô›/5ÝÐèR Ë1óh™ŠvM_4=*3¨AíYÈ/v»oC(η—ë³eœÜ¶ºûTø2MªfPïkÑ'
+.~T‹aÏk‘Ç?( ¼JìGõÿ|'ËR¹êÊ…‰üˆ9]V‘ª+
+Ÿs&Ã8Ï<ÎW<r¬ŸøÑ"ÑÊÀÒ¿~ù°Ú¤q(ˆÀ£0J²wmñ öP^¥šÅ ¼ä«Xá ²’È0Í='_T§L1ª5(Hc퀶Œ.¿]Œݯ7< °d´¡Šívj\ÅÁ°fAßíÂõFÊ,¸«a©úÔ[ÓÓíîê¯>âOÿ°æi Jú
+TˆW-0Ù:ûE,0÷xscÆxqu´Ã™,Ï¡Äzƒ+Úػ綠I,A†¬†Yž“lÎIÁÐ]?-a2°~°ùÌåã"éŸqwÖ/`
+[­.ËÆÁqô“»QÑÿñjí)s0U·u» z™•“ζS*tÿÝÒdM©;ϼ‰êÞrIJ²…žti n1ŒF[LUµU,|uÄ©l2›¤ÑzŸñÌE‚R~*l5<a³‰ÀcšDfŒ>–
+endstream
+endobj
+2669 0 obj
+<<
+/Type /Page
+/Contents 2670 0 R
+/Resources 2668 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2671 0 obj
+<<
+/D [2669 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1358 0 obj
+<<
+/D [2669 0 R /XYZ 153.694 462.074 null]
+>>
+endobj
+2668 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2674 0 obj
+<<
+/Length 1955
+/Filter /FlateDecode
+>>
+stream
+xÚ½]oã6ò}…_
+ÈÀš'~‰ä·X,ÐíÃ=\óÖ½ŦmvÉ•ädÓ ÿ½3$%KŠË»‡C€˜ ç‹3ÙQºØ-ÒÅÏïÒøûéæÝ?~¢faˆÉX¶¸Ù.(Iá9…?º ’“̈E&a\.nî¿'ë²X2•4¹+êåŠãroâ.‹]XŠNNwˆx»\Á[…{ ÏÅ&îrþ÷aïÖˆ¿.¾Þ»ÝÞVÿ\®ÏÎœŠ¼9Uù!¢XÀñ2EŠÛ³\ÿ½ùõ¥‚©+($a:è•à4ñz¢Ú+¡»¤Iõ_²¤¬’½_zõ›=¼ua/K졶¡ÙçMXíÊ@¥Ž/Ê€”@åÕÐ^ ä° `×Ð^°äf©€ŸS.ŠMX—§È oBÜXO©?VsÂY<Û`l¯!O–^eX‹¤nòª à[?†õñÔ4Qe‘x´øшüì «ðÂÕ5u
+9Œ„‘SÂHF˜Ìú ÛåJ2 Þ?¶À4»HcÄ.›b—Q’)Úgw¬\ÑD^YˆµøøìÅÙºÃ$×HjÄU]Vòù²º%§/àóóó‡`æùßÖý0‘€’åÉ Ñ*憇ø„¸4惱ΌJ¾%>Å7>›y<ÓÀGª‰Ĥ&BdC&o Æ2M7Ã=˜'œCòÁU—|ŒO(Æ'|ÑO/˜îR »:Õt)5¸óñ¶B (¦|R¾k9…|+ÈkÓ:Œ3¯dŠtÈA‘Ž³@®Ìz-ˆLù€Ç9¼•
+ïk÷—]õy_Á.›ç9¯¨0íj®7ŽíñˆÑZìð/ô¨T•ïvvƒÝYsµ0zž0åvëùÁ¶þâŽë¯×ˆ¹ÌÓÃu㚃ݖ…W ‘Ï%›Ì/Ð>IaùbÝó —R5Í!lq ó8ökã9\AšÍ#½-+›¯÷žú^ÑC /G­^+Ó'™ó+Ó%øèýÆ›ý¿B®Äÿ_lUǘë’mžÉfö ÕÙû:ñyÅW8ŠœÇNÑ›WŸ™BZƒ]sÕdêòú<³—ò•CgL¿`Ë¢MÛ²¤mË é–^`!†¿êÚ Øãú©@?uÄ’÷ßPMr†ó=”v|eÏ,'¹QD3¤Õjzª²v Ý“ïÄÒ$/¢&~4„æñ“¥n:6=Óã#ƒÃ>’Ò~Îy²ƒxnÚ ”XåEû`Ãboûc8Çp=„V‘–w8„
+ï}‡UŒÇg<ùãT7ÝÄì[Š|‘™¡NsGZ}ã¨y¡‰B{C‹ v¦
+«yMR(°¯è1A"ÖR1MfH¥v»ºÅIæã
+×`bh“$g>p¸Œƒ ðKx» ÝÀv0u–!v¸Ô-4Œ,e;*ÄŽGð£T]wèH™ä`ëÚGØ@›Ö÷²ŒÐ4š·u ‘ ÷°®ìªñÆy¸Ÿ.`W蚀Çç³ï‡7€ìŸ'ßR
+BÅèÜt<7?·6ÉO®È‡Ç¥¾ýæ*q>¦Úy>ï¾põÚ¼8~€=EÙ@|íÚƒDˆ€0wÏ`ùžcRu1 Sœ¹ÅÙËw„Ü$ôº‘ tð†óöB)ƒåË¡ú½—¾jÜ:œ>O®n&çÓ‚®ép<éÿçx:3óîåý«½æ䕬ҹ]RT"Ôìmžü0ÍïU7s Ûç—›Ç
+F3ÛXì¯æ7ÇJÎÿí`£ÿù¡ï OOW(9Yt*êçßõ¹#Ò±›¬CuJäÿäc‡'4â¨/+è‰Þ·D_½ëSA”X@G´ŽÇ©é`Ç7ïþÞ2wŠ
+endstream
+endobj
+2673 0 obj
+<<
+/Type /Page
+/Contents 2674 0 R
+/Resources 2672 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2675 0 obj
+<<
+/D [2673 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2672 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R /F57 1860 0 R /F28 1704 0 R /F53 2210 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2678 0 obj
+<<
+/Length 1851
+/Filter /FlateDecode
+>>
+stream
+xÚÅYßoã6 ~ï_‘—a.Ðè,ɲ- ŠÃv‡íq×·Ý€¹±ÒxulÏrÚëŠþï#%:S§ùÑ;ÜS$…úDR$?* '7“pòñ,¤Ï÷Wgï>èh3Ètr5ŸðH³DÈI¬&¤š\å“?èó¿®~÷óh’2ÇÊƜŠ 'ôôôôƒ—
+Ôu¶n™Ýš¦¶]¹Êͨb`Œžh°EÄÎ
+‡Ê'\IƒS”LXœ‚¥KÀüh*Óf9ŸFºÅ9h¼„Õ¶ÈÊþ›¬ó#Så di’ÍÎE,üÌÖ|uÃΧI’W BÊÍ<[•n{˦4KSá¶.ë
+Øâ„þYYØÛ¡M£J õL{¥›¶ðûA ©4(gü`uƒ_=´ÅÍÂÉøo2ÐÚ Êbf*[T7~Z Æóº]’*¸ö9Ta1ï÷94Xâ´@gfþ‘Js“8 J3ï¦`HW|!)ó Š®Á…lÆ%Ké «êjZT9z' :ð´A­¥ š¬ÍnÚ¬YøiQùO<¦BÛeDNml4¥`ˆ>£¤~½?ú1æ*s?«—Kpáv>Ž¦! SM‡‡¥/”0õÆäx+ï™5eQ{[48ÿï²WF ;¿|x1Ðü0 »¢zpE÷ ÞPïŠ#Îo.:;ŠF¢XÄS*âYc»¨ï³U·¨[{b͈¢¥¿¶)3—»ŠûüÂ)ØúiQmd–_ØÚд# ±bÖ¯/³Y[ÓZª«’Ž›ee‰‰ãk¯†·*tî@¯Ððg—;òCJDî(Þ²kõŠ ÜõÒM¡&4!b&u<Dê Ãà~QÌ01~ŠöH¡É\éíÁÕ“í‘RÁMÉ—ö¸|=ΩS©dˆõ“WÖÖ^QW aþ€¦Õ+?iMnÖ5 „L7ÝŽUÁ‘‚qN!V;tR[W]¡Àmœ$ä ºú±ó³Ê˜S­ì ŠF‡€€ò|æv Á´¤=DD°2à"<uÀ/N ã}¹ ȼ4 2/Ý6 ²ŸÇäÅëó)ZQæólæœ5 @š¶{Ö/ûCa`›læù
+d²y‡*·~Ö84 éÚ rK@u¤+žØü$'ÇD‰!oiZÜ¢“é`HÒ®c?“aÔˆ.Ю9lfì^Fê;~-Oa¤òv !E‡•{kºAŒ£|>:nš[ð¾±Np>«só7ÃñåÒ­ÔÕ )öt?¨Ã+æyᎹϟµûÙ³žoß/r<¶GÖñ·¢+x• ¨™/z\¼ÏÖÌOå*(D,ŠùWE=õD"°³¶hºUKS8д­}s+<[EâyË3[%)ïÙ*zf+ÜC{‰­`´f+_cN¼…­$O™
+ã¯ÄV´ïÂV/ìy[ °¾5[É0fJm<xÖd¥ùÆAðE_paL•÷ÒŽ¦”ýKÉ bôÑc çc%\”Ã"
+ëë²øweè]ì<¯|}èäÔZµá˜BŸ~…BoK»ÈÓWuTÇwÍ"«ºzyqL}×ß­¾'ÐÈ¡:< G_f˜L±~[W#éÈ{ô­ p„©á‰£À&¨$dÙ‰ á<LÑCHÌÓñvjAM#úÁ⓹s}U‹?§`¶8Æ°~¼²æ„
+*dʸÌÁ9îîW˜ü¥é^«Ÿ›cˆÂ-»Ú+WúÎÒ5ˆÚÏ…Érÿ/}ŸêšUçÅÜO9­É–´­Ê×Âý¶ŒZÍѨáÙ‘T©júÑêî\Å<óë•%üÖFògn¨-®rß6ƒ€ïì°h–‘–í¶ÆTø`ˆ’à7’=­Ù¼ª‹®(â± Öî»âÿ@3ÃÔÏN¯|fmqSùçÏAÏ
+¦eÍxy"Ñpßþ:*?E—œb²àš)
+endstream
+endobj
+2677 0 obj
+<<
+/Type /Page
+/Contents 2678 0 R
+/Resources 2676 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2679 0 obj
+<<
+/D [2677 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1362 0 obj
+<<
+/D [2677 0 R /XYZ 153.694 548.892 null]
+>>
+endobj
+1366 0 obj
+<<
+/D [2677 0 R /XYZ 153.694 457.235 null]
+>>
+endobj
+1370 0 obj
+<<
+/D [2677 0 R /XYZ 153.694 341.669 null]
+>>
+endobj
+2676 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2682 0 obj
+<<
+/Length 1931
+/Filter /FlateDecode
+>>
+stream
+xÚÅY[oÛ6~ϯ0P U€™#EQ¢ è
+tÅö²¡5Ðm›¶µÈ’'ÉM² ÿ}‡<‡Š¬:±ìbØC ’&Ïß¹1|²šðÉÛ ~ìËbøòI S¾{{ñzvñÃ/BDÍÒ8Ž&³åDÃËI¬J5™-&ƒOBFï_¿*Ím[fsùyöÛW €N:IL[2œ¥Úq¡$‹Óè‘äH¾¯6¦Í7¦¹œJÁƒ›µ)qÔ̳òRe^®p![›lA».CxöÜ)bõ¡á;'„=)‰ yÊb=ÁjÕ´µeÔWèiEd³0Mö©äË;®]8¹Qµþd@µÛ–V«k§OÉ.§Q$ƒÖ É@
+~]â®;+MµÃÉM·ä[änà3`àª(*»ï•…{WW;rÜ›¼]ã’gîb€gW¥ÅJ[Wc¯-‰XÒµ5æï)çδ Y 0qñ&ŸN¥a$OL^ˆçbhOÄDT€¨½Ó6`ÅÂZ°DÁЖ0°Nã%ßlÌ"ÏZƒ¸°±ÉY{#÷ÏQȃÑM^8Z™Ö
+yÐ`qaŒì)Á;5Ø)€ “;;‘ƒÙ3H ¥d¡
+.gÚkùæùË ¥f‰Nödùyn³ºq¾§<xm‘cWÑ/œóU×¹Mš+”ŒDÞB†v‰|ÅnCäÙÅ ?gI‡³ƒ†R°(¾F–Çlèë`¬ ¬vƒñ—'j}M?qõ]²ÒÃX!cÊKq—ã J€Š™ÿ™Ü-Æ@K¾w€‘68
+
+%SÆô¬¨Á?îP‡+L©†TrA7… ›ÿƒÙSùÂÅù?ÆZõ˜?•U9%Ë(§pÝ´8YÔáÑÐAU¾$ß·¤šiÐð„ QÁB¥õáø›Å Y]™Õ}îý(>ß¿vÑ8æÙ²×½ÃÅÂ<âç%~2QÞ÷ò¾s£6o ÓŒ,aÓaêÒÅÿØ«²4 ðhÏ"÷WìÊ?{m&
+h }¼ÖTÒh¹wäÍìâ_õâ¨
+endstream
+endobj
+2681 0 obj
+<<
+/Type /Page
+/Contents 2682 0 R
+/Resources 2680 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2683 0 obj
+<<
+/D [2681 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2680 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2686 0 obj
+<<
+/Length 1729
+/Filter /FlateDecode
+>>
+stream
+xÚ­Yß›8~ß¿©:+m(þäᤪ§¶ê=v#õ¡í N‚J0‡I·U´ÿûíÊn!ׇ-ö`Æ3ão¾§¡·óBïÝMˆÏ׫›—o—Ü‹‚eÌoµõA,¨‰8 Lx«Ìûä“.o¿¬þyù–î%Á2Š¸YLã`™0ÐdW}&ŒËBKóÌ·›´1ƒRÉïUZff|ÿúU)¿[ñzW«cõ‡SÚ3`J$ –bÙÀÂ1X°eri@!Ü*Síf0©šõnt7ÔàvKºÝÈ\w¿„¡,³*­µœã%æå®Pë´À}š¼)d‘k»¯‹vºmd}2óf/Ç–™¿Ç_äl»>ü¯vj½.äœÝøÿ ¿ù›w1Í=FõUŸf….š¦;“Û^èNtu#«n²—i6kûxz,çD,ù­^JU³¼šÈGÛüçgxÉÃiÛtî=šõ½þô "x†^ S~xwã-bpƒ°9%=µ.N£ZÁ¬¥·«hd¬‚o“Øê$,ˆÀAA€Í#x}
+Îa¥bqЄôÀI:p’38Ã>8 ‚3tà$Žþ-.‰ÿñ6¡>ªz0 R埨ïk©Œà_î%][)T\nà‹c†ò¦•ãºÖJgÛVÈâ›ÛŒb:òÔð¥±0¶ÖB ÔR¶Âñ÷¦7îÍV…2+´ä x+Bîß75`¥j‹Š*WÄõðk»Yæ6Y›É·ÂxåÎ0´o·ìI6’ŽœÑ@Àµ±ç_Ûˆ÷0ñtŒ8hEq_‡í"ƒzpÈ¡DŒG9äÃ0 °ÑÔu.wŽhT{ÎûOxhs>çt€8Ô; )GKw³ŽêÈ%ÕÁ 8…ªr’Ìâú÷ˆ¨:½@Ù>E†u‹ ÉŽq
+b™=æƒEüHj„ˆäp€Ô;'ìàãZäÁ¸‡®ÔNì"â»뵂à•!ºÔëÖµ­ÂïMb_i¯Ûä-Ò'Nqè* á ææxt®Êì_ß™U§=Y2¹ÇH«J–™®.ZŽ9 ÇÄí¤Rù®È6=ÞŸ±˜xó9_ø WÿLD…]eIx°ñ¶ÇâVO¿ ÀD#ÄD80}ÜçŒ4&¾ùyÆ–w3Ѫ¹ÝîL*W7p}#.³UÖyñÃH¡+²Á¾‚4™€š¢žySHóÂE`¹€±ŽÔ™knrÀFßò´@ûUW»oÖ#ÙöÛ¤Ö³9 äNŠn“h&"d¢ËpY‹ù°ç;Ô Æ«Htv½—c$‘ö©Ý¬mÃ2 #8×c®÷¸[°m­øaËÄÌ?¤›ZéqjaÀ·bÈ-âé[_ò,·´Ÿ.Æ¿áƒ~Öþì8±v(”ˆ Yžû°ù°&Ö¸¨§é9Ûž¶‰šz³KM%Ž¯þªÝÐV9ØÞeNbš óL|ð©–ÿe¹‘n¶¶µJZ:0‹ÁN
+¥"{<­öæ’a$3lÇŒKÕ¸ÚÀÍ/˜ðCÂ92üבy|6_"U$±?Äø6I¿|¼YÝü·Xuý
+endstream
+endobj
+2685 0 obj
+<<
+/Type /Page
+/Contents 2686 0 R
+/Resources 2684 0 R
+/MediaBox [0 0 612 792]
+/Parent 2667 0 R
+>>
+endobj
+2687 0 obj
+<<
+/D [2685 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2684 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2690 0 obj
+<<
+/Length 2652
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YKÛF¾ûWYá
+m®B· ô'ïËu}37± º‘©‡ZJó«¡d›Di¨Ó|,uõM½~¦æ×ÕKL¦§êm‹EÛ°v?vØOÒ`á¼wK3Áß70àZ_6bI³Ì1_´å®Û·ŽGA)׺záømY£†§žR ‚Õ&L2ÖäqS.p™ÍÍ\Gì+j¬šªjðÅcY¯y¨Xþwï»­«q¸ó<¸)°ÇšòÈ=Ùáà3ên‹¥{ å&ø™(†ŸߤÁû]±¸‰ç¹[7Ïصná–èҞΙB›®À¤D¼ZðŒE³ÝJ³iùéݶ\4U#:­ë•C ¸S7õü¾uÅXÞÌmª‚_n²¸â>Û]ån¯
+óüD^Q/¯P­÷d‡*eIïÜsT‰Ï÷à¼ms±ž ‚>ÉxÀ&]u*sê|$0ù‚ü2])eÐyj$ä:ß©4†m5Ï|÷¥Y}] —NA/Œ¤Ýô”£íwâ·9J;ó²Ó팀jcAFWÂÍW=Ýd6
+3ƒ5Š­Q‰
+Þî·7hÁÓVñ<@«cc¸:öqu|ÂêËÂoœ|²¯A2¿ÍGjÎç/a`£0$I~jcŒ›§3RIÍý×€ºnq<¹
+ °Ï)ùkhˆLev,“ˆŒtÃD£nhK±‰›I¾š¬³¨$y:–n6*%ð‚w’g<á*k{,?öªæ1÷qW•‹²;‡¤SOY Æ\ܾn›=àG)”žŸ•[!T”öõ1²)êµ[ÞòۂГIê#”–Ðç
+ïZîá­ßï gð¾ŸÍ Œ]ôO†7Ìk$› QÆ=¸DÈù²uËð•Ó¼Ofê<´Jœ{w“%HxZG@[dTéúÄHåx"=ò¹¥sÑo± ‰÷8CopŸ¬¡tÐh~6¤4‘Hü‹KûAV]ÜD^ÜM 
+KC]’g¼[4¹è?–—`w—B·æGÄžµ+†ÉÄ„i"›EØVö€ h¸„H#œÕʸw7îyO¸÷¸q5ÞKXíx¾A OßH5e¬*ýP>CÎËrí|G ½Ãh!Ú-¸i½§”<#š6Wfy€Ú™‰U˜¦êXÍÜ»5PKÃ^|!.õ8I"u‘Kºåä~>ö‡KàØ`û÷5vœô
+DÂ’Û-áÖu£c«Ç@ øgƒßkyÙÜÓi.›½?èPí;ª˜°Wúž*¦¡?ŠÃ,–Úhï¯ =1Dn ëŒDQá¸(ê®yÀ4dZ¨bÿ‰R«¶Ù²-&=—  êf|÷²éX &údÎüî–Olf9V!@¼{eˆC*•Ñ*ÿÁÍÉ…Çó`)O!JôuØwÜî6Ewüæëd¤Üe0%K„@z?È¢ºïYbÉ(ÐYÙƒÖºù
+†›a.óz⤭ s#vûmŸË wÔœ÷@UCÈ(Î&)ÈÔ'I
+èOôÍI
+ë–¦ŒË¢zðÜí6€ÞõæБ‡‰EG¸š»÷½ÛŽ¯Àòú–‡Z·«Š…
+Rþ=KxÐ8U]i«c(¥xæ¥r DrÝAf{ˆqrø)í$š-÷íñ "5þš™#cæ˜T•i…Q6¸ª DªnøÙ›ï¹Ï·[h| ©2%šÜBœ¹(8‡æO<^ÃP s+ÍùÌáå©àm  ÀÒ’»®ɘÝ〔D‚ô³†ÄY«äP^Jj÷‰JÊe2Iª®œ3¸:Çãûº\ð=éRFF)¦LÆËUÏí¶@üƼ~¬¹5ЕúPÜàu¸_S>²ÀM² K ËE‡™kr¨^ï®»gŽÓ06f,½¬wûí©×l6á|,ë
+— §ÂÓs¡TDºÃ¿h€ü§ñBòƷįÎ>»²H;]9›¼ò®­šf÷XºÀ<äÌK˧-öqéVÃy>ñõ‹¸
+Mžs§ ¥ùЪ8#hvÜ¥§Xî0°1¸?Áîàþ„ßr0è”KÉC8‰ð<:È–p^Òýn2¸’ù ãöM2È
+µ\ïÈ?eÈ’Cý ľ“T¡,$ýì î¶}¢4•*mr-U´èì­öè¿Êuòª†4t˜ÏÓ‰Ôª«õÁ•.ál«§örA‹o{!9®XS¶wÕ?]@æÖLc9^ªXA\ï-\ìž.!³‰1ÉU_¡é¯Yz­²G—˜M3aU^²ùD&ž£4º±W@6¿²ØüÑïèšë¯¥É´m?ÒÀ²2ã{Ÿªéðe›?¬œ_bšþFÓ6Dò—Øf¾Å¶Ûï_,: ^ßiXÚ„™•P›™Ñ”wwoþÑßâ€
+endstream
+endobj
+2689 0 obj
+<<
+/Type /Page
+/Contents 2690 0 R
+/Resources 2688 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2691 0 obj
+<<
+/D [2689 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2688 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2695 0 obj
+<<
+/Length 1571
+/Filter /FlateDecode
+>>
+stream
+xÚµX[œ6~ß_Ee¤ÇÆ`@U¤4U©É¾e#•aÌ *3ÙÝFûß{|c–ÝV}_ÏÍç|çØØÙ;Øù|…ÍÿãõÕ»O±ï0‡4r®3‡ø
+ÏaAˆ<8×;ç›KpÈV߯ÿ|÷‰߉P̘/ÓÑ8JjÕ ¡~Á[ùûúñî*ùíÔMZÉ[M¤ÇpcˆlFqw Ã1†^ˆâˆž3ä…àòŸgw†×[^îê¤|”¯¡¥ùFßh¹¢öÕv[ð9ZÆsµLŪ¬ø]”»ÎÛ}SêËêvDø•çºof¨‘éêÎQÂ{­sÖ÷s´ Ó´Èòç¾stó§1딚C;£M"°ØÒ~K:¼xòG þØi kš_>_9F3à ü<Ò“RY{ Q…Xž‚É}3JT‹4ó˜Ò aO‘# (b`£
+Ãx($Ylyíˆ3M{3M¿YdzºÀôZŸ¹¶ßŒÙ~>ŒÈ'á3iYÔ€‹q$48ÂzT_$û4;?IÏ4Æp uêú*)YTi
+ܲ)Åéh™&?óc]äinSx’6•µÏVÏFÈØ_§êœç†i01L«-¿úø§ŸX“ô¢S1™š7ØÇxÙؼsiAÒ“V —‘ïK8ö¶ý«OËõûÕŠÂKµýÄè0"^0ZœˆFCª˜ÿ°= PØê\i'Ý›=z:ƒÀ“k™Ë‚Uè¡ÖLõ္Ê~B@(Ë‘X—#vD;˜é˜²… ´§ÆR¾•Õ‹æqò§7 /¦(ˆMõÝ]$‘È-rÑêÖž—p~­ŽïB_^DŒÕ°²·4»i~Q¶#t^<ðÿGë òD4<ëÅóâS ÆhŸX.´x'aÕ¦ŽÝV l®?‚­ýi“×`E®» oø4˜ˆDÌ7 Í5ýN/­ö:¯e¯(öž)DúÀ÷v²,ãÙÈ÷¨ó>«:
+7KNE«ûpí… sqRÖ bý,ãi¢´Ó›ïuë<>0飷›äü!)÷|'‹LQÌ°UZIQèF%“¸F°®¢¿€Ý$`ˆsTgÞelb<Ð öº‰žYàL{x-«2“Nw0<ä˜È–Ëæ¯ïI€ñ`pý] 6¼Hî¦?ÙÌæ¢ÏðäÓ¬9ŠQ™*T?ßu[þ¸¾úrÀž¡
+endstream
+endobj
+2694 0 obj
+<<
+/Type /Page
+/Contents 2695 0 R
+/Resources 2693 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2696 0 obj
+<<
+/D [2694 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2693 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2699 0 obj
+<<
+/Length 1615
+/Filter /FlateDecode
+>>
+stream
+xÚÅYKÛF ¾ï¯Ð%€ DSÍK(ÒmŠ
+endstream
+endobj
+2698 0 obj
+<<
+/Type /Page
+/Contents 2699 0 R
+/Resources 2697 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2700 0 obj
+<<
+/D [2698 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2697 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2703 0 obj
+<<
+/Length 1334
+/Filter /FlateDecode
+>>
+stream
+xÚµXKoã6¾çW(ŠÊ@ÌŠ/=°=,¶Ø.R`/­ÑËv´LÇjô0HÉI6ØÿÞáC~Ê ‡À䈜™C~™(¸¢àÓMä?,n~þ gA†²˜ÄÁb`ø8Àœ¢8cAÌD(Uð%¼«gsJiØn¤i°pݨ+©\7ZÞš&g$ ý(½iºrå¦þÓéÖµ:-]C¸QJÞw¥PΦ·"—ïL;—]ëF§áiXŠ¶ÝdžD„ö!zÑ¿.~¿Dx ‘qDR‡ð* —³¹õb;.ê{ŸoíL²žÛ4}ȢݜàY ³;“I£Ä²ô9/•[p†
+ƒ1mUs¯DUy3Œ˜„Ï[§#Z¶ÚÓM?¨Ï*
+ ¾ÝÕn½íË5ãƒâËb”âËô‹zgXrнŸrî~P„yŒ(˹û­’;ÀXv;«è¥ßüæÇÆ+eòÎÏIÆá¼zɸ‚/}3¾|_þf|Ù8|Wœ£‹£×wß÷ 7½ÛÍ;sƒ´ +Êr;aCÇ丞Åtä%j:Ó3”R2Hõ‡=Šé"«µ<am
+—ÎCQ««/e/Ù®Óœ½ÓvVŠU[äNóáµWhÿ¯àë­ùWEÑ?ãYtšÎÆìqX*óÀ› ñÈ·ÇRÞ4ÕtÛ)»fä ¤X×]õþÅ´ßž²×G’šQ¢ò¦\6í}ÙY¾'°xšB餀ó£ö”(Ù¸u»ÊÕë•D“WëÛÔÔ“‘ w…}®$NÆ9«¨sy†¡ºÝ£¸ú`¼Áñ 1bØóPšžLù¸¸ùØ"€
+endstream
+endobj
+2702 0 obj
+<<
+/Type /Page
+/Contents 2703 0 R
+/Resources 2701 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2704 0 obj
+<<
+/D [2702 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1374 0 obj
+<<
+/D [2702 0 R /XYZ 153.694 505.063 null]
+>>
+endobj
+2701 0 obj
+<<
+/Font << /F19 1711 0 R /F94 1713 0 R /F114 1729 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2707 0 obj
+<<
+/Length 2206
+/Filter /FlateDecode
+>>
+stream
+xڵɎãÆõ>_!``€¬2k!YøÐ1` œœÀã%•ZÄP¤Â¥»ƒù÷¼W¯H‰lN7)`.R­o«·3\=¬ÂÕ¯ïBÿÿÓý»~1j3“H½º?¬¸ŠX‰U%LÈhu¿_ýpžÈõŸ÷ÿáÎÕJ3Ç
+Ë„I£’;õKÕõÇìü
+Å)ˆÏ!xGzä¡@9 [EI+{[ïÀ€q ˆMY‚`þ“ÞÄÛ†à<´}Ú•§s Ìˆ??Oš‡06;9Ï¢·ö!+ÛôÌ`Äﳓ-p¼?¿K<ÒŒ¨óž/Ï£º¶(oO¿áÿóg埪lw(‹¦=ëM$¢àüåËZ’¹Ax-ÊI–ê– Õó"_ºL‹½F»™…v:(j³ ¾o®±.@bÂoy ¿]cüßc™í·wÏ ò-#¾Y,6ò[Åb2."‹ÅÀ”[û Ýi=7œ´Œ “<"'ýðÆáB§éÃèâ. v¸q ?0y¢( cMã²Íýá<ûèàЬ)é®zrCÇ(ò뇿;¢A_Æ ¦D2$Å0-ƒ¯ó®8… ÚÓÖ]
+ÿ]Í@ÛÄΈ)­^}7Ÿn ƒi^ƒ
+¬?3ŠÎݱ»™—‰Cxÿæ>Ù hU.#†Á>«û¯Ë`÷˜_p¨Z²ÂUDp[–xö h;»¬Ø-c|ƒ÷­˜¦uéÞǘKèÆñ9-h?¥bÅ­”ÕWºÊã¾:8ØïE˜·§bãXs ê0ø›sÁ 5™©í›
+seHaF6Œ¹õÃFZ-HD8ó#ev8žÊ½bEÈgÏØQã?+:çC_‰¿{5ÿU ?S@Ið¨+Þ_ùùþÝÿàgÃM
+endstream
+endobj
+2706 0 obj
+<<
+/Type /Page
+/Contents 2707 0 R
+/Resources 2705 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2708 0 obj
+<<
+/D [2706 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2705 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2711 0 obj
+<<
+/Length 1518
+/Filter /FlateDecode
+>>
+stream
+xÚµXKÛ6¾ï¯Ð¥¨]ÄŒø¦-š
+Û½5=Øm‘)W’w³ úß;)Û’e¯dt/-rÞ3ß Gë(Ž>ÝÅáùáñîýÇ„E%’ªèqaÆ‘ä$\"Byô˜FM0‰ÉôïÇßÞĘE
+%B0w˜JDœêSŸ1eÆVºÈŒÕ;mçYõâÞÝÿþƒ'n šâŽQ“ƒ :L¶éº˜¯^笜Ùí&üùá~i«1fðÂVÀÚØå&/öåþ¢?HaÚ柚­[,óâÙ¤Õæ÷ïÛ½ûµù¢Ðó/µ;³RCMvbøÊô*u•’cÂÆت†Ùzªû­“aZ_pE¿Î8îcJ$JÀ4ì2Å}L±B\$ ÓÝ‘C}Ÿ=‘€gð7,>ÝE3#L8Èy÷»´—1(“D èBD­ ŠIÍG˜S$À*
+4ÝÏ/Ó¥b’NñD¯æû¬zç^¨IˆÆ®Ý?>™ûSOS"'º¨ÌržùÌ”•ß[Lgn³rGž§DM´¶~g7/æ
+Å`_Ë¢>
+” ‰C'ÕFûÅ1uÀ¥>{Ø!{ R¦ÚøU¹®/>Ç”ïó}àìTð«°ï\at‰úʪ•¨V
+Oy¨VòzµÖ(¬Ÿ—ùv;·i·â¾÷bCàÐÅ: pÌÊî·}QþùØ.âóXØXOÚJWødåo¬â­• Ä•êEÖ{@ª z†ªŒr ÕÀPS#…C]6_ê-À¤mÈ÷TCv3k*“[ÿ&¿2ˆ’î][z=âuM¹bŃ6“B—U^ÔxFI]Æãµ£#ªØ¹vàëú1 l°j³é:Üæ@&$ŠYÇè—`Dºfz
+ÆîM¹iÚD[ÕŽð0LhcFkÞŠ…^ûT»àŠÅHñŠ…‘r¨ÐQIúeþtU(AR瘘ã~ˆ’ ’0ït!Š_L~Õ(³ò÷ßëÙ;¤_Ñä|ž¬?äî
+ýtîåA ëÊDRçɱØk“¥Yu‡yPË
+endstream
+endobj
+2710 0 obj
+<<
+/Type /Page
+/Contents 2711 0 R
+/Resources 2709 0 R
+/MediaBox [0 0 612 792]
+/Parent 2692 0 R
+>>
+endobj
+2712 0 obj
+<<
+/D [2710 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2709 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2715 0 obj
+<<
+/Length 2213
+/Filter /FlateDecode
+>>
+stream
+xÚµYKoã8¾÷¯ðeeÐáˆ/=n½=˜ìbOÛÞ°½F¢m!²dHr2™ ÿ}«X”l9J"y°C|ˆõb±ø}r¸Ú®ÂÕ¯ŸBÿüºþôã/<]¥,D´ZoVœ…¦Â_ñ˜³(U«HÇLH½ZïWÿ ¾ÚMÝØ›[%Ac¥ÉŠj‹Ý8èv~¼,º®´·ÇÖæ7ÿ]ÿõŠ Y´j¶«¾ù÷_Q1—çš½ZÉ%“Ñ…ÚÛ´Ö #Ó߶[*É„Öc¶ºqðP4uµÇvtdìcÑí¨eèQÙGjÔ•ý ­8 Š¶=Úþ%0b% æ‚–Hi&RöˆºLS¹Ð¨PÅŸBtÃKíìØ4ƒ%8Ûï¡TUÑuEËêÍUñÓŒëhdÐw.Õ¢jP‹Ïe-UÕ]‘¿¡ÔÁTai,“skTÈA†'†0¥$êÏ´à-í*Ô,ŠÅHûzjIÿ>çÌí€d¼ßïŸ?PÁ#–$ã]û÷mn7æXv>ø•e7·Q$ƒõ|ŸØvw8$l¿ðJ÷7þ ÖîU^d¦³Ô3ô8˜ _¹7[?ž•¦Ý±wÈÁÂXC0xÊd“".Dìäj•€‡p`pQÂt”ºuîwý§Íîª÷{SåC<ÿiBá­_|ËC–ê”D€¢dJ‘ˆYšÈsE¥íðÑÿ¾d¶êl“5“ªürR• ªÒ™ªŠ¶{~yþXòà„ §$KHÉ49—\tvßÚ6ÿ2)߯¹”Ïçˇ¼€ÐÜr¦í~‰
+1Oç`Ò2Ö¹D›œ§­)¶»nošmQQl|o‰.5O—ÉL•Ù±žÅaÔçØË’ÌŠæå,î‚ ˜-ÍoKäÏ8ç/£ªþá®,-x›ø&Ü&+¨FLEØú'ɯïŒÙÒXÆà gô™°®’&$Ó²¢zg!Þ6ò¢þƒcÉEùVIÂ’(î± H»¹‰Är‡°ñ€÷´Óø”Ôt+¸ÉÌøUwøÀû;9\ ý0Œ>^E„HÙ·|¬allÿ‡7üY
+à†œÄ£}
+Õ¾{—)‚zŽQ2µZŸ/J„§|Á ӶŶ²9õòÈŠ´ ñ*¿ànV»5¹mID]ežò@‡¼x–¦Øm¬)Ë'jŸ
+$¬kÙ[tK‰”…©ß­õÎårû™–£_îƒJ»?8‹ê@*ÁÑ‚
+¾çqE~‹DôOǦ`~ûú¥¬Mn²®x°í\ÊELª±0_Q|à°‘!*!ŠˆWQD¥°Ÿ×†Ï;˜‡J&â 1mýQR‘ÇÀÔúTt©'¥ ¬¿eŸà¤¹²)U°µ]K³h4§£€o`~ù¼K 隸Ô-@+%
+%gðšgGΪãþËp׭ϤÓíö25ªp¦FP`«|±x>/rSqûaAà”X¸)Û?9ùÿˆÜsJÍŽ\v"í'O–0w¥çQ'}ÛÔÇÃ^¢¢y¤m\ 5ÏSàk–ÛØçÇœ”XbÊd¡
+.°DŠ1å{eê•ÌJDœÅÜðû;äÊu•Iî/z_¶Ÿhn37g¨;°.ĤÚaRí.vžã/ÀÒµ‹Êµ¦ó×È poš{jWÝ›aÄ"%ǾÑqÈvu®Ë¿bÁ"y!Ê¡x0ÎçûÐU_[¥,Ž$I¢bZ ÎIØ5-uÍlŽ¸ßÂmC/8¬ôŠ(¸©s¹°à{¨Ã½¹÷Q?7Àt±e±-îJoþ}à—vspƒ€ó™„ý÷hØäÆ#CÇÆp::
+endstream
+endobj
+2714 0 obj
+<<
+/Type /Page
+/Contents 2715 0 R
+/Resources 2713 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2716 0 obj
+<<
+/D [2714 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1378 0 obj
+<<
+/D [2714 0 R /XYZ 153.694 500.075 null]
+>>
+endobj
+2713 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2720 0 obj
+<<
+/Length 1182
+/Filter /FlateDecode
+>>
+stream
+xÚÕXËŽÛ6ÝÏWhSÀjFõ .Œ
+fÃ¥E’b˜†pŸ]›ˆý X­@v‚î÷TôÔYÙ Û´
+À+â)¼¬
+äŸ5Ýîäñ6±4UE·\°Gj¢§8«%Ço߃B†ýP™è(O»ÑÞ=WÁ‡Ñ ëÌ,@…2öe¬Ÿá§2ñã§à’®%­–ÔÇr=A;Ù’µå±[šÄRZè™lèiÂ\eê§ÐK‰j˜ãŽˆ§”I¦É ¦å{qmÔóÉ,X'OF>]ý<m¶¹V(óSˆÕ3î=T/Zý1µÂ=°J6!È“¬Tä ÈÒ·\1 á>»†(ü ´gç‹<Íg’¿2Éøwèš×ñ¨Yû¢Méçê[×…G¦*‘oüô±¥¢&z{1´f3Y6”mi8‚ô´eí˜áŒ¥1^ ¥-+º;Ÿûhùb:öÓRåšžó!ŸFB±Òf¢ŽCêyðWý Ômožl§iÁ_Áj(û?$!ÊQjÿqj”¾gêÄðlyF\yäâÝçyd,äÙ ¨y'íª%'úÕÂUž˜µÿ¨¦ŒÕÇ
+õŒ#¡¦nøõË]´(s%ºH1ÈT±žûüÔWMÊUºà+UÒ¨âÄJM¢$‡ PV¥i ¹U"?uÕ|S4#úgûyZδp0_dÏîÖÛ¬Ó¯Ì{ÞªšÑÞ~3tz¶š/Ô/×ÃêØn_©Þ(¹vº%’
+FZ+úÀd㌉´3Üð«1IÑË™MΞ,…
+"¨X·ý úé£]Õ«/5å:
+0•§ª)2g8²ñö çïg©éméaÍ·[ÒUW™6½«:×%QøÞŠ™{ }+ÐÞá2àBÊÝz„Ô³ç¹tè9l°ûj”ÓǘÞn/vÝÓ6cÏ ´±F¬5û÷{•É]Ɖ7ž‹FMno w¸×—P/O7É
+endstream
+endobj
+2719 0 obj
+<<
+/Type /Page
+/Contents 2720 0 R
+/Resources 2718 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2721 0 obj
+<<
+/D [2719 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2718 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2724 0 obj
+<<
+/Length 2289
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YÝoã6ß¿ÂX XHXñ›¼{é-wèS/@hïA¶éX[J%9Éb±ÿû 9”b)²%û^,Š¤æ‹¿ÎŒ“ÙÃ,™ýò!‰ÏÏ÷~üÙŠ™"Vs3»ß̨DK6SRÆåì~=ûcNyÂÿ¹ÿ×?S*f†X¥„ß,1”¥°ëOÊE¶yÎû¥+ÝÚ¿Vµ{Z‡¼vå·gWV¿û…Möì0¿oiB¬´-s1ù¿?ÿôTºçÀ¨.nœ…iYÈ!\nÍ1 ·«ê ̲|µ-ÊCy»˜¯Â®|+ƒDª}%Õe4 4磞েø1M¬á}~ƒdãÖ>Y3MFüú‘í4‘OØaX`š ¥†He¢ßý–ÖiÞ=‰‚g2+á5ûåÃìÖX"°vŒ»èŽð¨‹§AÊ Y†© IX KgTr¢@-)-Q PÝÕß·._€ÍÄ<õ>_-˜ž8U8¿,‹G¿ÔlÏrœ¯ |¯ÜsX.Ó.<enå"‘¥_ú»Ã>¿]–.}ŒË&2yÎÒ¨OLá-‡¿­ÀñŽÔŠ: E‰ê©ä µ,;Ö9maí‘H$½ÙŒš×Û»xÎÇ4àh¬ê›VhG!‘M±Û fæ/Yþ
+ažQVþÞ‹DøFÏ S^qSé2ÈÊ 0ɦað°°LÏÿÖŠ‰_Ö<-\|Á¬÷Á|R7æÓù`ª„`"! ëB‚ù·ä_Btÿ˜À8ßÐÚ?í\N^Á]Ë–¡4nðe=‚‘DD/Av€ºG<kD(íÁStà9
+Ý‚_ ÎØ(1œE,°n€Ú§åãj—V×Q¶DPˆ|”Bª"»H.FHO@Y¢ Õü eW„>­H’Ø.©ú\ZO‰~G‚1¸·™îQÛ
++ÁS!º„÷ZCBîáí—½ñp„&„øX AÔëßÜJÂhôΧ2D´çlaùÉ@‚hI=`4–ø iºt>Ž0g
+Ì…
+“£4IöŠªÛ(ÑMýB^`>ŽQo î+nñœ˜ ÇBðPÅ|<äêû ’-1-Ù
+9Vs‚}Êq{¿#§5y~Ê6¸Õ7YîÖßš€øýÛŸ‰ ·!FÃ|†»VTOë^îÓz»Ú¦%°z—C>½[J͵üŽSK#.àhÇ-y‰ÅX2Mƒxƒ÷4ɽ†S?ŸÈ‹M°Ò¨‘Úâ—ñq?¹Ä˜˜æ«M²ú‰ó•W±3û fj‚.0“žù6ÙUuŸ¢„Yyº¢¼Š(Hy_L‚)ë«éŽÖ¨W–§¾­–Pݤ/=û+Ñâ]—I¹ÏBf^Bc·Œo½¾–Õój[vk7ÝÙð’å¸bËÆ&É5ý?‘0ÂŒì
+|Aÿï8ÇõI•Q]RYÔ"]… Üõ7Ã=lÓ· NH¢XÓ÷-hÍäY¾®pè“P¦ôëˆ0•–qÛ›qðmùMx«
+Ÿ1ø‘·§õ<;uÕß®É÷”¥]qO¢ý´Ú
+C[K4÷ Ά€3H…ÜZBסQäEN'B.IÚ¦ÂþàóD·v…¡·k¼Ú¶v…i´+þw’èÃøÉ‘]=M:ŸIÓÇ„WG­mñ5TeMië'<ÒCÿƒÍ?¡.Hx
+jOÙS½‘ºõøsÑ«Á“à=vf|—@"Ë;_ÞÝøìªd}
+endstream
+endobj
+2723 0 obj
+<<
+/Type /Page
+/Contents 2724 0 R
+/Resources 2722 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2725 0 obj
+<<
+/D [2723 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2722 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2728 0 obj
+<<
+/Length 1707
+/Filter /FlateDecode
+>>
+stream
+xÚµXK¤6¾Ï¯ ‡•è(M0¶yÜV+%«ä);Q»{ w˜ž´æ¿§Êå¦i–™‘rÁïú\åògª|gïøÎÇß–no~þ•%Nâ%a:·;Ç÷’†|‡9Lrsé„2ò(oÎg÷!×w«uH÷6÷TÛiÛ®¾Þþ~ƒ }/tš½s®þù!`0 '“èà ãâÓ‡÷eµE€¡hÚòóûå~â±p´ßºVÓ.Ó ”±[­àsÄ¢þÜŽñ¥Ÿ–™l:CWßÙYºª©Rí¨Té…Xc¤Y–ë¼*Ó7;¶b˜'Ò bÚTîA,Že[§e ;`Þj-¤ïÞÞå­QÞå›\ÛÖ®Ó]c×~ÕtýÌV5ç‰]‰£:/¨iôÀJZ4*Í×4Ye#Q+æs¬Ì<?ëÃÁ;kå»a¹ï¢#W©’š»®(©º­‡\÷ˆº¢nÚTªNצúŸ‹B¡)„tÿ€)ÍCÞÚymu°5Øtög.š@µg˜®È¨ºWzB8šd¬JÀ<‘&i§«¡qxäÐ8]¡óº
+¬,€ÌK4L™k5uDc¥à6fϧ¨¸þV⸗D<Æ•ëÈKDà¬÷¤ 2XÀx[&œPBaPbO†h?3 ïj©ðháæüh¯®¹¸§såi
+ÑŠY38 ™ôÉ[!%tÛ7@sÿ­Ð–¨N—êÓ_}W'âI!EÚ*P¤³‘Ç"ûJ€9!név¿E\{@q Ô”6jŸ—/È}ýâK)<wÈ8Ö'6ÆýC7ÅBº`!jÓõD ¼Èaàþ¶{Ë!¥'ø5(êѨš´P/>ƒýs¸å¡^‹2,‹›ßêüü(˜v™QEƒbç©u¯1>8b/~hx«ií(s/3'™hüHHxŽÍìm[ m;³±ÄlŒ‰!éµÔ™—TÒF ‚ƒU¹GÖa†üËóÄmÑev’y{·ºš+¯nÔwo©zÈ6ηiA«©VMNïÝ+T$¹ï‰Ø¾}f¯œ›½Îwpç(fÛˆübì°©¾½äp;Р]¹«‚2±¢®5¢jÖÕ¨Š/:u¨¢UðÁ£4Å)~ìùP'
+=©°Ù¤¢ÊcÞTåA•úDj=Fו:@mUf¶g¿Kùm„~z·
+Zõªz©†Á<ˆcÙ6@Ù.]æu‚ÏÖ¡ÕiùoºØå~ €˜@·%Âå\–ëÿU–H;Òg*ˆ×̼äÇžéž%…é‹)&IA„^Ì®ÜÕ&-°Ö* ¯ñøu6>åôbå±'IA†^DCì®<N NÙÅc dÐ œþ<€W|ðáìõ#zzÝì=«È`ž×íòÅ/—äÿÍË™üâ¢ý9.$C9ó¶Ã]/ÒÇÏ_—ˆgÓàûÁÙ„hæ_PÅã…IU¤ß–ÀÌH¼-8ND³Ñup<a’9íDÔø̳‰’( ~ùýs0ås“ÓJ\Ê d4hB?K©y‰ÊLÈ…))‡Žòp¦è¬D+Z¸ç”$hnE‹è¤Ïòa÷£”å´€kéÃÈ@Yó×ÜÏL¯ŠÃå”ôƒ-Õ)„áÙ¼´!‹á…•ëëDåÝlÒ‹ŠãJJ7-r›‹3ì[›$c…6…µ&»¹¯âàœœ»’c“gêPk<›v3‰åõ[숱^<Rd˜ùz5e=°Šˆ…ñ‘0“XŸ•.`QäI›ÉÀàý(v[ãOöS;¶I ìz¶ò¢ 9e¥©‹|RQƒásS“Å®>¦u!ÚÞd?± ÓܘU7‰m¤…¯§ X(½‹¡›p8Ö\ç©Í(ÃÝ«)ˆWiÓz³óš2yK$<"šÑpÿ¦†þâÿDl¢´ßùÕéiñÎŒ®~Þ¿m†%öMÕÕ}ÐgZK¶Ìý™Eý3•½{ñþˆÀ$ðÀ¡¼8¶vNÄÕ’_noþN¹7
+endstream
+endobj
+2727 0 obj
+<<
+/Type /Page
+/Contents 2728 0 R
+/Resources 2726 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2729 0 obj
+<<
+/D [2727 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1382 0 obj
+<<
+/D [2727 0 R /XYZ 153.694 565.607 null]
+>>
+endobj
+2726 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2732 0 obj
+<<
+/Length 1299
+/Filter /FlateDecode
+>>
+stream
+xÚÅXKÛ6¾ï¯Ð¥€ ÄŒ$>D^ŠEŠ$h©oiZ‰²ÕÊ’¡‡7n°ÿ½Ã‡d[+¯©Ú‹I™Ãùf†CÎ#ð¶^à}~ìøaóðþ“ C"ÆÜÛä^H(Šiä1£So“y_ý3¼úsóÛûOaH<ŽcD†xˆ“¦ú#Ä$“¹~ÿð(²9’æûOfçÊÚî\‡TŒ(d…2Eñ%ʱéK©&;Ylwš>%­,‹J¶½ô\dÝNÍþyÔß™< ß³"Y#E¢n"mg4¹sVÝ7ðËSÆn6
+;þjíe2ŸCÆ1‚_"çÅ,SK8e*ܘ¦»ºéÛ¼®´O4²L¾YÅZÙM]ÄÿÕ·]‘ŸnÂ
+ýF&]Qm i·“f¢©eÓiRšÔAZ¢Úìîv°]šy)ažwæ£Î'ÜŒp@¡Õ7bƒüæ .Õ§*‡qÊŒÊÀ®R›±ßkžVk¥’š~³ ¡È…M̶}Òɦ0
+a L:C÷¬èKth䱨û¶<™ï$Mû½"èKØž¡9/‹‘ :F”a)&÷L¹F%ŸÓz¿ƒLe><YS—žà1‚_½©EEÕÖÕv–»Ý1åÎÜn¥ånÄ_r!c·HÖWöÞ/ˆ^1wŒ6U¶mê^¿¾RÏ–X¸\˜'OÊVÞ‡£=–¦9iY·2)ËïV=uèK¢%ÝUøª‡XfgG—¤W<ró
+b{»`bªò±Ü†š¥Ñe*̶ærêâ]-Ô&êäÌLà0&fH÷so
+endstream
+endobj
+2731 0 obj
+<<
+/Type /Page
+/Contents 2732 0 R
+/Resources 2730 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2733 0 obj
+<<
+/D [2731 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2730 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2736 0 obj
+<<
+/Length 1730
+/Filter /FlateDecode
+>>
+stream
+xÚµYKÚH¾Ï¯@­d¤ÐÛo»¥L4Š´íJ{Ù[&¬Ù†™L”ÿ¾ÕÀ6Úd÷‚ûýUUW]]àÑr„GŸî°û~|ºûõw¢F
+)Iåèi1"SèÂ#2"‚!©øHŠQ&FOëÑç ÍÇ4 êb<aBõ*±…nMÊ:Å™mÉÒª¶¥bÑ,q°ŽaÓTùÒ–¦ã ¬Pèe^Ñx" žVie;ã,3=/®žÖv¡½U]&õLX¹ ùÜõ¬Ê4ÿ:þòôgWφ’ ”“\ Y_V‰–Dˆõ‡³1 Šl»ÎmÕˆ½õ˜FÁ· HI•Ô¶ujZíH«24nâe2™nÓlž”ÈŠ£-‹TÈ"-Î$D"b£ aHqh™ƒ„cá$'|è’Ñ#$¤éͨgÂxž¼ÌŠõ´Öµ>>ÎVE¹­¦qù™|ùþKž[dB0Râ(û
+ÃÎVë8å²}y(PØžHä€Rªd®ç÷ž`BŽ–ìÉ¥ª~Ì#†3løEi>Ñ^ Ê6îÕÓÔ•Õm#¿°TQÃç­yÞ‡ƒ"’u&WV÷xÑ„5‡~tꦃíÌn™.ÍíÖH9l
+?µ“ ÐDÞ¬ÉävUB?Uƒ ò[ôÿa¿–LNbê6§|88åéù~{lîý'û{îˆø{Y^Ü$q=€8¹ø}¶yt.jFúÓƒÿ¿PgD`¾‰ú×ç~aR’ÏAÒÙ°XœF<ÜÌl%[S~{ºû[J©ä
+endstream
+endobj
+2735 0 obj
+<<
+/Type /Page
+/Contents 2736 0 R
+/Resources 2734 0 R
+/MediaBox [0 0 612 792]
+/Parent 2717 0 R
+>>
+endobj
+2737 0 obj
+<<
+/D [2735 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2734 0 obj
+<<
+/Font << /F19 1711 0 R /F94 1713 0 R /F114 1729 0 R /F28 1704 0 R /F123 1756 0 R /F53 2210 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2740 0 obj
+<<
+/Length 1736
+/Filter /FlateDecode
+>>
+stream
+xÚ½XÝ›FÏ_TUÁÒ™°ìðP)Š”DíS•ZJ¥\0^cr,À÷Ñèþ÷Îì,¶ñA_Ô>íì²û›™vÆw2Çw>¾òíønñê͇X8Ê‹C9‹µÃ„ôB8J†^À¥³X9_\&„œ}]üñæc‰¼X)a6GžT1 ™]¸å
+üÈ‹¤ìÃMð­‰°¢/y¢åDÀÐ}p
+f<rü l@&Lù`ÓíL‚‹|eÏ ó¡Ÿ„ä'¡ÛÚó ž_ÑY¼¤ýµnÚÄbZÅ ¤5°JÁÞ í*«á@‰Î|WBÖ€p1ÚYŸÕÉ%ºËœÃ 5»$Õ–¬h4Ña(ãÛÝesc;Š0T2&%c·ÛÜ”¯-¹oôê
+I£UmßåEÑÁt“Ò²½Í›|YØE}ísŽ§­7!Re¿‰HöÃá$,¹ñHn4ír'ˆò@;wÄõczäÝ!ë%=ùmßXð¼´¾q²ùà Ǥ1Û,< n©$f럎íЋü¨‡6-´<€ØV=ˆ¥ñoÝâ]Ü™ 1™ ôkª2kˆ\Wuª-ÐVÅ~[ÎqÓwI¦ç榮ha¹o‰¨Êâö’Fn¦áôðªsw€‘‡Öt´ÖÝC&Ÿ+ç;½<)h¡È-1r×4m< ßÐý¼AW,éÈ1ùîê6"ôDÀû
+L4Zw ½rzã©Õ0!—SBK0‰P: £ËwcVVµ^Y×î½áæ¡ÃÉ9C øð„SÏ?áPãRߥÕv ©Üêÿý×!öàœA”G&á“
+åE¬§Ò¾´¼±íþ3léOöוšßíóøÑŸ áKåAØÇ_å[$RøýÞå«vóÎþy;ÈËž?×%â L‰ Ï«Ö;Ò§Û¤¾1h˜â$-’¦ùþˆKë|¿Å<çϧñ>ô‹€¿Ck]üG–á&¦Ý쨳\¢œ¦„.WY]íw†6Ô%²«YÊ8aVµÇ•QåFø&‡P¯®wgYQ-“©F·Ëê¾óÃ×ÎoaNLïœ÷`ꈄY»Å·ÙÃçŒâiŒŽððàµny#åOÖ(­v/ãÁ&+sQLõ¸²•
+ž÷Ç l®&f„u~q²Qbr²™jåFBÏo/d¡þÏÄ©Â oJÏurY¢QÑdo—:ûáu„C<-ý8Õpò'¾FÓîð##œø¸Ô¾=%AÓ”¹™ø´‡ßèðÃ.ÓÞª£×=üH åÔGª­\°féøX;”ú¾…º g@›‡YU,«6+öúr=Õ4=G@G´ ÿ«†°b^˧ aÊkûÝ”®0”eþymÊ”åí“-Lóº^XSùÔA`n%Ú&YéM©„«°x»§}iE}…$·ýœãÙ,·7Õ(¬•U«‰¢Ž$@Ã~]7´HÝ\ßÝ"ô¹æiž”¦øûyqמ¿ö¹¨›ö™e§©”^¤l‡­­±åǸkJÐê’¡ÊTH &º·òâ’é#2Ný6bƒtYa¿b„T±r_ÓƼ}ÝX´ÊÞ—Y_æ™iÅÉCûMtu0IEâ 7É’Ü2ͧ”ÇLp/¶Ö„@J²:Ùm¨4ÞVÆ®+}l(µÞ›Fî·=öÛï5MÚ¼*Ÿ-¤.zI!ݹïöõ’‚:Œ§oï¥l© ¾‘¿QÀ°ëŠ²z­‹äþöH/©Ñ’ ±€0Œ½(²ºÇaïÈûÅ«‚œk]
+endstream
+endobj
+2739 0 obj
+<<
+/Type /Page
+/Contents 2740 0 R
+/Resources 2738 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2741 0 obj
+<<
+/D [2739 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1386 0 obj
+<<
+/D [2739 0 R /XYZ 153.694 648.269 null]
+>>
+endobj
+2738 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2745 0 obj
+<<
+/Length 1353
+/Filter /FlateDecode
+>>
+stream
+xÚ½XKÛ6¾ï¯P•µ"Š¢$Z)š =¦FsHs %ÊfW– =¼ñûß3|XÖzµkÊ)r‡¯ùf†3á|gåø·ß´ï7oÞÓЉ<ãÄYä
+‰“À‰Hì˜8‹Ìùì¢0ñg_½yPè$¢P.b&8©Uÿ"þýîm&6¼”ô}fF–Õןõö'Ps³}Ž|ÚC!;(–íX™ò!j$;Û·—Á’,¸LÒÏÛæNl§¨‡¿ ±«õdÈÐRä
+r‘’ÃóÅ9ˆ`/ÂøÅÈYl€ßï5gÀiúÄe²‰\ɾc…S8ŠÊ«ZÏ7¢\ñº1{ÊL›Y»]#RÁÊƛͣ¹æ†ãšŸs[ÎæAâò•(›8qw’ p7Ë
+föšfå ÓlY*ÊrW jHûÏ, •ÜÍqµaq’å8uR]÷ïE»×2y¦%øµ™£SVÅ¡ï6D£n+J^è‘­†(YÑöBS8$·fO¥ÛûÙQwjDå©dvgœËW.)=Ó•‹Aîø˜‘¡£à©”ê‚aM»UÒìŸøì+cê{1Ï46B‹ì¨q¾×#íZ4šJYÇÂÕ±`÷ÓV>·-DŠÏmùƃZé†{iFðƆ·`Ûð‡ž¶z ü‡ßjò^9­¦M€ Ò½À KÍDÏ6]m(¥‹lùFÃT5«E±×£iÁY}Å„ˆxP ?UFeè¯÷ÛžçK¹¢·JEž’3«™E¹Kˆ©q§=·+Â"æA„d¬'&ÖeWMuy°Òf¦˜Q`xÖê…¨äÚVO â)χ}Ä<Fç§YBŽ+X¡|6BêËd­ ÇåÁ^apL=ã§Zª+‹5¼€ˆ”uÎkFÙáÈb
+‚kÅ<`˜ÊعlÃA˜bC×¼ü¥ÕY¥½Ö³M¦3–É:5ûÊJ·§5zÏÊŒ3mÈJNïxL/ë¯Í«…¹#አÐC{ªKâËW¤*Þø}Zm6;‡×Ügôe¼ê6 ÎïãÄöñ°ÞT7%ÜôkŸÚ”Ýæ, þª2ñô‰ø¾]á$r(•D¹“Áe_ß²8ÝI§ô#Eô¼`_í‹`âvjHë ÔIÕ5:Eüƒô ¯Ð§iYùÀ.k“ô(Äö ´„Ìv×+¦Ušðí¥";¥r1üN9øÿ¯Æ‰oýKY­êªÛNaN-ÏÙ\¶‡ ‚¬c[Æ”¨²cȜϒ~ÅÛáÝ3XÕÖŸ|JÙ‰µ-XÊeº>9Òª¨jó\“ãË•9œrÝöðz|œd$Ëß_P
+endstream
+endobj
+2744 0 obj
+<<
+/Type /Page
+/Contents 2745 0 R
+/Resources 2743 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2746 0 obj
+<<
+/D [2744 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1390 0 obj
+<<
+/D [2744 0 R /XYZ 153.694 472.179 null]
+>>
+endobj
+2743 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2749 0 obj
+<<
+/Length 2961
+/Filter /FlateDecode
+>>
+stream
+xÚµ]Û6ò=¿ÂÈâ.°fù%QìS®Å¶èá€z 4@Ó­-¯…Ø’O’³›ûßo†CÊ’ªµµîåÅ¢)rf83œOñÙýŒÏ~~ÅÏ=Y O>«à¯þúó«n_}÷“z–0Çzv»žÙ„)‘ÌâÈ0©¢ÙíjöûüƒPzw¨óeQ6ÙÛ?nÿù'ð
+Í„Df£Àÿüðîb˜šžŒ‚|æ@üœÙD;ˆb&"Åb”›”Ì¢Bí
+Z²V^¥ºgÃó <50ga“Õù—lÅF
+NG¤@'ÀOóžz€OZ¦¤9ôœíš~e™Ô–¤ñËšL!Ù„7UÜ•s÷12#•
+b PٸקI
+¬d,û{·'THê¢; Üßû›3XPÝô
+¤žWmPàuÚxž»ÔÀ±ý´µ ²„ÀE%áŠAz‡¡qfFš¯AÝäÍÁ¥©+šÏ!)¢Å=n¡8Ñ_ªÏ4W®‹‚Ø¥åa.)¡ûmºÌŽ*ƒ‹9àÞs hp²OšZ–DFJŽlìl2
+B¿9ƒ$ba$ïé@pà©ÉhL%–å}WÊͧÎ|¦wã*2ÔÖ+¤Xßð
+¤’ô÷œ-ãEnú*yº†wêxØtì¡yÝkbP­ƒšDþÄ«Ò÷IJ°öKÁ¢2ð†:;Ø¥Y¹ÊŸÿö6ј/âçö¡‡“MKõ%øȈûÃ¥{ˆE÷UîúÑÒØN«ÿù
+1ÄA&œÚRX´Ä(§âÒ+çªpîS™×›#‹
+( “qÒ§upsW>N-BrãŠa=uItQÜ‚ôú„°nQùâq[éøe=Ƕç’HHVLH:vîŸX¤õQ¨—æDt¬Áà¢rýÌ"øyt
+&æ?úbJUn}Næ!¶åy•ù†^ºn¨òiŽµÔ.¼Á¥¾”}¤iVÙçÐ’ÂM iÁÊõ!aB-,U©®+RhÎÛT ÇÙQ¬Äá#ÍS©ó‘WTŽàØÃu:6ê5m_-·¥c‹ûãã†ãÔæ¡8ë8ôÁX ÄŒ[Ÿ_E¤—ÕGÿÊ}Oâ›Ì&TpäÚ«&Ôc`°Mëv™!\Ux þ‰Ÿ ˜9Í–Ñó=–̪
+ž‰—“kÛQlÜ”ûÞç25ÀôA¯ûàáºoiÐ2ÙGÔ¯|XÝij´WQ™z€å¡ ¸\G±×†UóuUîzØ4’
+endstream
+endobj
+2748 0 obj
+<<
+/Type /Page
+/Contents 2749 0 R
+/Resources 2747 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2750 0 obj
+<<
+/D [2748 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1394 0 obj
+<<
+/D [2748 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1398 0 obj
+<<
+/D [2748 0 R /XYZ 153.694 634.143 null]
+>>
+endobj
+2747 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F57 1860 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2753 0 obj
+<<
+/Length 1635
+/Filter /FlateDecode
+>>
+stream
+xÚ­W[œ6~ϯ@ª*±RÆÁcxh´MÕD­TµMVêCš<ƒ.S`ö’Õþ÷_`€ewLÒ—ÁöŸËgŸs>{ÎÞñœw/<ó}sõâÕÛ8pB3?r®v(b”8!eˆøԹʜ.¦¹øtõë«·N„â0 ”p„hƒ&%õ7öƒrƒþ³_Â×s˜šáûw/œÏÀ‰ØÙù^|Rßðâ~p,vbð‹„Ò/ÂöIï×E’r³ÍSv¤93|¯6c¼;DÌ£ã¨ÀìýÔ.ò}9”©€DÓý˜Ös›ðQÄ‚^¢Ò G½ÀS› &&
+f`ÁRÜK&ÝÅÆ÷}·Ë¹.¯2½Rïô7ÑŸBTF¢«õŠ¨2‘&ïôªD§åÚ¼>ØÍôt{±!‘k¤Ûcµ×>> ¬¢ `g‘¥çeËÈ΀Kª:Qòi}“„ÿCQgƒ}Ä‚`Hß.a*~“Öe™T™¹hñ§ûï—옽졘ƃ`É$@ùƒzJ{"ZŽå·r–oëÛeKf÷Ü]²™êÇѤÔUÇ«´ÎDµ¿ÿý·ýâ.)EqwŸ–íZkyÁÓNþ#giž4òÛÝ\.:e Í
+"(Œ‡;ýðð²V-9×ÊÎÞƒ‰bcØ ¯ Ò‘0!ƒ|4ú»Ø`L¨û!mÄ¡;6píÆÜ?u—t¢®Zco|ý0ò¼X¥8v0õ!#¨C}yÉJÐ{¥sÔsË$mêVE¥¿].ÌJ ƒ ³|A˜{w€Üc.oygDNnÉé¿'·Ô<Ñ5Àsk( b•¾ ôEîTÊyµiëjÿD(dIg@ FÀS‘ðJj¸M]•J„šv:ÝVöŽG‡ÖÛõ|pôङ±+ýÝ7õѪ©À¾˜Í£kûqEÜ
+(i±[ϸCp€"2Ó"AzPÕØä¤mkU|SXCÅnÍzQèdoQ·<ëg#=§Ã‘÷Ftù¤cŒv?¾à]4C0ˆb8—à8‚Ô¨ûWÎå•Å¡»çoà:JÓ{½”èÏ!i:‘H§1…†Ôv/aH° Ö´O 9Š–çÈÄ:©X¥
+≃
+,šéš{Fé·P®Œ üæ‹- ÞM.¢‚’—‡îÎö OÙ”Õ//FQ
+endstream
+endobj
+2752 0 obj
+<<
+/Type /Page
+/Contents 2753 0 R
+/Resources 2751 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2754 0 obj
+<<
+/D [2752 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1402 0 obj
+<<
+/D [2752 0 R /XYZ 153.694 648.137 null]
+>>
+endobj
+1406 0 obj
+<<
+/D [2752 0 R /XYZ 153.694 564.834 null]
+>>
+endobj
+1410 0 obj
+<<
+/D [2752 0 R /XYZ 153.694 512.934 null]
+>>
+endobj
+1414 0 obj
+<<
+/D [2752 0 R /XYZ 153.694 320.294 null]
+>>
+endobj
+2751 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2757 0 obj
+<<
+/Length 1270
+/Filter /FlateDecode
+>>
+stream
+xÚÍXßã&~ß¿ÂRUÉ©Îã·ÕJ½“úÖk¤{¸»'! :Ǥgwåï`°óc“]¼wÛö‰ÃÌ7Ã
+–A|¸‰\{7¹y÷>OŠòŒ°`²p’¢,šf(&i0™ŸCœfÉèëä÷wï1N†rJ39¥(Ž3ÐÔÎú‚I"«µœs#n
+eš…øÙ.=13vKÇ8Byš÷fR?3ÞÝÖßÄƈeQk#¿l…õV¨Ÿ•¦êŒTrªxñ͈ÛnÌaâ]ægw5•»Ö–jÊ6–·+.–+mÄzZ¨Cïö^Ìõª]T‹¿ù~v MBÃäÍ• tÏ•æ—”’ ‘œ+åÕ|©dÓ’·ÒE#ná™ù Ø#¹ºž)1È
+èÔO)€•æÊ`^^éovñ&ˆ3”3âo7õz6 AEe;O¸R\I×™•²æEYvŽçèáñd~¾^QzÅÓ‹ç3”Ò¼SºwSò ‡153@‰‰Dà
+%«5¯ô®?¿ìw7×i8ÛÜûeÌÅ4ž^LãAɕǃì;!¨ï†@ü œ¼³•TMíÿ\1ø™>ö]«Æãžê¯¿<õ31狳@îÜ#~œZû!ÎÑWÄõè…ÝvÑíYÄ”/á¼_eW`d×× #Ã^“²Cÿ ‹FoL°hô,½ Á¢‘'Á:¤Z?nøî¨c‚ýO’7át¬×Ÿ~·K3YòˆþxI£ìÍXäÁ{ I£üÿÇ")Ž~<‹¤{²ÈþÇÅ‹-¢--SÐuâÇ7Á˜bç)àˆP«¹½¼t£øó®hŒŠ“<ÂàQz@û=¯úyNl¸da”e™å’wF#°Æ8 Û8õ@u·#5RZÈ
+ÆI’‡ŸF, Ý·/ITKAÍR-»5–£‚ øÂ0mÅ«™9³7»¡4lúÁŽ
+ýÏÎ|Å,G,Æ=o6¦
+A¾7ꤚ·% Œˆ…mKaŠ>n5ÙÚF…(kLÆÂÚT&Y‚†^<‘.¹¢61M~:ñc›bpÑ>-VH£˜å§8ÛbÍÕà±ÖŠëÙê$q¯û$)tÈ©¾¶ˆ…E­8$‰Ø¶Ø/Çñ<ˆ4E9v±KW2mGieã*«ÂU}©% Ay±¨Âýí¿ª¨êÏö~÷ô¼ï»wxØaЛGRL¼1Íäz §ì)†Ïøë
+endstream
+endobj
+2756 0 obj
+<<
+/Type /Page
+/Contents 2757 0 R
+/Resources 2755 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2758 0 obj
+<<
+/D [2756 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1418 0 obj
+<<
+/D [2756 0 R /XYZ 153.694 212.985 null]
+>>
+endobj
+2755 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2761 0 obj
+<<
+/Length 1934
+/Filter /FlateDecode
+>>
+stream
+xÚµYIoä6¾÷¯Ð%ˆ t1â¢-'O€NfrL<˜’h‰²4ÖR#JåvýßóÈGÉUe•-˜K‰ëÛß÷HVàÝy÷ˇÀ}ºùðÃÏ©ð"’Æ<ñn
+ŠÄ!ó¢0&Œ‡ÞMîýáÓˆFWÝüúÃÏ”
+/!i ³˜Ç„§ P²«þ¤\h5Üv_Lë÷Ÿ®U{p¾OO¦µï«vÐYŸUƒ²ºö®W…þöí;äp"ÍÎqØÑ€¤a:K¯“&W…%«;­d][T›ƒÕ~{µ‚m2³MÖ±m»Û^É{Ó<èûjZů·(˜®ãší%X4Wí`™\ì|ÝžëØ£ÒŸZ0XTu=u¯‹zÔå]=ª-ÐuÔª&Fç¶è«»òò¤ªå—-±•ñ?ÅUѽ“_ÇèVjUW­š,®uõUa Y³ïÁìÏÝÍbˆubÈü ÛL-IôNÆá:ƪQýj³G=ôjÈJÂU³…Í"žÑ„„Q:±ùf–ÌPùâK"ø^]×üí—Þ.„‰ØÛ1àÇèIªãÎ"m'õR‡EFœ„“ˆMÒ|jó«çÜ—æ#|}Eý™˜ùßCÝ ‡ªkÉ’)b’
+–àðAÅo[‚šzȺ¦‘m¾ ÍÓ¢é‘sÓ/¢(á~Ì°*€  Õ›±Dßí9§¿ˆ"" 姩
+%¨Tý2.¹õg´y°ŽvU”M—+‡6?«-lè:6¶ºìø+åå„þìs¾ÍÀÅO³¶hÎ×ùø‚U–ËÅÿ+g£ˆw9ËBdM¶ÂÞiR†º “ !¡‚{7 Pü·áòh’5ñ‡Òfmìëã$N|àh{º4)=Ö9vÿ;êÁ-ë·AHÇD)«œÑÑ5³²B< K <I Ô‰œçG¤å_QZ„) ?%f*ÂG”ôvt¢‚ÈèÈsJìÜ|'4IÒP5J8ãAcÔª7-ê7Pí¯XêØ}0mÙ^±G`O‡3Uk¦f¦»7¿j¢Y9êÌz·X}Ù׸Äz ¦¤#&Ó®w»õ~»­]oµ3ä+äO–µMã#m9 =žR8r;»ýÁþ®CRö×
+Îk¦¸H¾…-—˜"—0$À ¹XÛ˜x·Iã’ÀØåãŤ\(±€eŽÝ›jý=ör•)KlÎ)ˆ\0OÊ1m€Â©B0ܹe'^]Ö늹àDP†zM†±1rÔ“§ FLŸ×b·®
+×ÂÔ9@R©DR¦À à5Ì Ø‘{„—}é”u©·¨1pŒvãÝÉ<€ýØ÷ÊaÙB˜à79§D„·³N±Ó)2JØB­QƒÉ©o‚(ž€†³Zj#{•áDfêг`EÑw ¶ö¿4ˆ°aa¾7µ×²_Àq4†äg)€ »œüGj
+
+YŸœ©ùÙ$Sl…„ß{)Œ¸ÿÏÎèý`~”Å|Õ›ÐM Ò
+ÃäÜz¸€|8Qpë÷“Øo=è$¬0x°kfŒ™ÅÈMž@sv…¥û¾ƒ*Ѹý%vëj,¬C»”}®zP"¢‰ÿŸ«„ùn"ïð;SDµ•õ'Œ£¼KªÙÀb
+g± ²¤ƒÂlö<š6ÆÃÝ; Š> è){E—Ú< ½vˆ8”EÈ°S2&!Œl½É´Æz
+endstream
+endobj
+2760 0 obj
+<<
+/Type /Page
+/Contents 2761 0 R
+/Resources 2759 0 R
+/MediaBox [0 0 612 792]
+/Parent 2742 0 R
+>>
+endobj
+2762 0 obj
+<<
+/D [2760 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1422 0 obj
+<<
+/D [2760 0 R /XYZ 153.694 426.351 null]
+>>
+endobj
+2759 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2765 0 obj
+<<
+/Length 1511
+/Filter /FlateDecode
+>>
+stream
+xÚ½XKoÛ8¾çW(Š•fEŠ/ݺ)¶Åî±ë½l[`e‰Ž…Ê’#ÉI‹ ÿ}‡Y±-7’êôb><œ‡úæ#ïÆ ¼Wk¯WoÞGÔã(¡ô+S†#g‘y‹ÔûäcNåìËâ¯7ï1¦žDçT ‡…‘MFê3éß×oUUÕI•mõ°N²F­U¥^Ûå¦ænù(bÑÞTÔgŠÉð©©UÖ«Ô Z¥²UÊ‚>¥X"Æ£Vé£ÙoÍI‹8´WÁÐu?~¸òæ #)1Ø…Yvîýž”yYLQ€óœg²ëóÊ ¦È‹ $ÂuH#¨÷TÁbF¤ÿ};›C£jÕÌæaú±mò¬PºGýreg¬` ¿ÂWMõÝþ›ËL†›]¥ìðvW6q“•êK d„*D’vÁÏgD‡^¨û¤Ülâ"ívõÁ53 ÝücŸu§òè”12Åüõ©yÜÍO;@2ñÓÔ’uŒb4b³q؈G`ú®ÕI &Œû7U¹ÛÚ“xhµÙš¬—UlÒs©ú„t†ý"Óé­ä:nlï>Ës«P©3дBÊv
+X®¾56†:Ýè(ˆ|… RŽ0?Œ`íÒ;Ô6eOU3ÀÞU…]ÝoM$ៃ•ÙÁ®Ÿßm*10:XŒfsF¸¿€ ó>m€»!þAÌð ÚžPŸ ÐýaþaDስ’.§ðYÛœÂ×߬umWñMo׬Lè'yY;8°©ÙÜÂHçv\' §tPÔ‹zpé+Â)kû}"_^@:¬þd+0ªê²¸Ñ3*¯Õó5©3ÄF×ÔWdD!e|˜þ¥‡= ?üS|-ÊûâqŒ%q¹’Ý)•Có°Þ”€SÐ…£9ž ¤f— jŽˆÃRPe7ë¦þjIäÉŠT¿Ý滚ªÍˆ„p<ÌnœÞÅEbö.W+ã9vaŒY2ÚìÞÌüþËá0Ë©Z9«¦ˆÀ”­ö]Èî˜sÏé0«åR}×D«£›½cåˆIé鼬›ªÜ¶5ë–É ‹[7þ,jU9Z¹Ìãâ«ãˆÛ8qu Ó "Íàˆw3Í+­DK9[Ré0KRX’Ýe5°ŽË2Ðn‡ù”ªâœPQöÃÅ/ª(|â-͆t™ZÀ£¨"¦ôN#ŠÔ·=n"ÊÜh“0äÒ+•ÇßÆx€_ês Q,Nù¿É‚ÂIz)Syz•4jË]3UoÏ펓ÑzVåz
+endstream
+endobj
+2764 0 obj
+<<
+/Type /Page
+/Contents 2765 0 R
+/Resources 2763 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2766 0 obj
+<<
+/D [2764 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1426 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 625.903 null]
+>>
+endobj
+1430 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 625.903 null]
+>>
+endobj
+1434 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 402.54 null]
+>>
+endobj
+1438 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 313.275 null]
+>>
+endobj
+1442 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 313.275 null]
+>>
+endobj
+1446 0 obj
+<<
+/D [2764 0 R /XYZ 153.694 189.888 null]
+>>
+endobj
+2763 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2770 0 obj
+<<
+/Length 645
+/Filter /FlateDecode
+>>
+stream
+xÚŘMÚ0†ïü
+K¨¢=`âÏØ·j¥n¥^Ëm»)qX¶Š  ñß›lh$<.h/‰,ÙóÌ8ï¼q 
+Ð×^PÝƽѣæHb2…Æ "\àPP$Eˆ)h£§D*öéyümôHG
+k)y1™†X+–G:ÍúAŸFÙt›É¤DÓl¾3Ê•g”aµrH¬…®)¼‹BR¿QŽ]áª)e8U‡×Ãy.ÍŸéj±ˆ–q1ڼ̓,þ™®·«Ìlžøóá:²©@ú ¿?|Nãuj’ Ä
+ýYv>{Á”'Ìz¦ýYàÂtà ÛL£eº¡È , E=Qñ
+Xó+rð†ƒ»7háfhy¦¥”fæîeZºf±Iþµ>éÓ>ëóÀ=u§°3­ÚÄ
+Ø2bøËØeŸ;yUŒKžòà•ýY)¨¡@{Y ð ðà]ÈA@â¼%„@KšœŠH¶ÙÖšÔdwiöÙ™‚êcÎô ÝÂèüzG¯¶›ªÃ Xƒ7¯ ÷žé¶códßÚ¢ dW:]ƒK¬ÈYfÿ;7ï(ÉŒm½*:AÕâK£]˜tR´öÊ”:q4‚dHœ[ȱ G½ähAr$ÌGŽÈ®p9ZÐ3·”cí
+DzåK=¼‡Õmå¨Ár,üdQ# \Õ¸[䥧¶7ÑÎÔ£âÙ÷x·¨ã›zůÛMþA‰MOÕ®4´æÚ:jA¸ìŽ5ñ›ª‹
+uÙõÀA]u'Sù~ê
+ïø$”³ºl£.»n®­s.„«ïW nª.FCÕÿÑò¹é|*•§©Bá1ä+Ϊ¸åù³^óeÜû ¸1ÍZ
+endstream
+endobj
+2769 0 obj
+<<
+/Type /Page
+/Contents 2770 0 R
+/Resources 2768 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2771 0 obj
+<<
+/D [2769 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2768 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2774 0 obj
+<<
+/Length 1667
+/Filter /FlateDecode
+>>
+stream
+xÚ­XKoÛ8¾÷W± ˧Dݶy‹=µ>,Ðô Øt,¬-eõ¨Ñ5òßwHŽËvÉöIEÍ73œÇGÒÑÓˆŽî?P|^M>|ºÓñˆ1+ÅG“ùˆ)AÂXŽB.Ôh2} ˜"z|ÉWÁdË H²òy|)X—0¤Ušgãï“??ݱx“8ä¡F( :bN®
+N co!jc¯! ]°Àj/dð@ùÊ çzKxÌgä»Ð} ”úEJl-ŠH$ãf c‡t„ëVLcFGã„EQ³ä÷Ãb
+‚Ä2B½"ÁQd7ô4Qa«=[fÖ6"ª±÷vÀƒ.¶'ä£KN!
+Ÿ»>øŸ û(ò¥Ÿ/m5ʦ¸jÞäŠI¦vÝÂÿ…ioshŽýn³4©òÌ'XXB±µÍe~h3¿Äuët‰ˆ¾éêÖ»„Ì™G)!Ö+WrbTÀŒ§éü§Ÿ\/ÒVyx­òìwW§6—þÕbEeÏuåç,-Yâtm+µ_¬V@`¼Gìœ`ÿèà8W,Å{µXjM$îÜÌ<Ɣ΃Êz0m¶¤i<vÿê½93VÛÌÕЦnrñ <A¡hváVuY½£¥ªïüqT¦%V݆ÎÆ5­0©ŸŸq·YPL“&–¦6X~ÄÐÌf=
+¾ŒB"U³ÿ ƒHŽÖ^¹Õá%)Ëô)Û"cuiûŽO/êòѦ%‘:wySH˜ÐÛÅ~fæüÜQ‹6þ€ö=Ö¨ÝkŸšæ¾{Z_$àŠ_p-­€íõ%Ù»/Ì
+¼Ûi›—ƒXþw RP•âJuÕêÕªð¨ëAVE§@Ý ‚Ò§@Ý‚ŠOº%é)P÷j01Š(œPö9þs‘fŽn}>S#n^[àõ¹Þœ[àí¹Þ‰­¶ûÒ£Ý+"E´àí}ŽmE<Þ!D¼Ëì«» °ƒµ+Þ¼éøvêÐiÍÎãiÍ®…CmíÏTöC^W@2P²%v‰§0–OôâA"DÃiÞâhš¿Üˆ"¤nèY¥µ5÷§Ÿö‡ÇHÛ™.ë.NÂ%¨M/’©cÐA‘XàåØç·õ2}îޓ7¾Pœ(e eaxê~DiBb[ £Í¹Û¡ÆXlÂÖ¥ŸYš'Ǧ`˜¢{y‘þ×\Ô-{°¡˜/KŽS5ˆý›’SR_kß òÍOÂÔÖ¥8 kP_—ò$¬A]ª“°uvž„5¬µG'aÝÛœ,ô~so8÷>u?”$Š[úýÕT;‡Õæ+Ûë«æŠ'ÓæêØru[–ý¸9Â4|7¯Û‹Qy³¿Eß7¿ Ø¿ƒ,ƒn¯wÄxŽéž
+.ØËAüuFÑ£`®6| ;
+æzs!Áð£`n6rŒ8
+ævs¡ÁÈ£`î6á uÌýæ"öƒÙ¹z­ŠÚ¼Ò¶)գ콼uðg@@,Ä¥Œ‰PMúSÕùçvòáçâé
+endstream
+endobj
+2773 0 obj
+<<
+/Type /Page
+/Contents 2774 0 R
+/Resources 2772 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2775 0 obj
+<<
+/D [2773 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1450 0 obj
+<<
+/D [2773 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1454 0 obj
+<<
+/D [2773 0 R /XYZ 153.694 261.262 null]
+>>
+endobj
+2772 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F114 1729 0 R /F28 1704 0 R /F53 2210 0 R /F94 1713 0 R /F123 1756 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2778 0 obj
+<<
+/Length 1876
+/Filter /FlateDecode
+>>
+stream
+xÚµXÝoÛ6Ï_aÀ&c±*Š’ž¶¤ùÀ†Ú
+½òqV¬Vqž´wå6ø¼ý© Ï(™Ïx´Œº
+G‘Áy#ÿݤÎUfÄü‹rL§ª¥"ŠyÌYÀ< )-]JƒÃ¡s-ì‹;‚;Ÿ<î]©Õ*ÑP_âÕ:“°xæûNµ,6Y‚#o;¢< ¬o­…‡®`6Ò›—}8”7®CÂù…à·AB¯+Á¦Aåô+¨~È¡¢Ž_1Õ—üð',H„saƒ6£X ÎéàÇÛWШO\Ò²ðWØxX90¼s†°KÅz›2­¶A’VøÝTv37¹³ØÈÊ ¢™ú w®‹;\Ž W„Æå4 U¡¬Š×k°§, œŽk(Á¦Ü#ÎŽ˜7/²¬PŽø˜æ A¶Oô-VW… (å üÌ(~\JpÆ;R
+S3ø˜fŽóÚ"¢ù=p’b•æpƒ!ó³¥­jƒ4gœvSaíE¡ë)çÅE6ŃC²'µT(Eƒ@R™œBª«Fé#
+&§•\)ûŒO–fîžÐ cl#Hh;6S‚F @×"™ü¦ûøPš5:T^'@Ÿ3ˆosliÞz_T~jØÍÞÅm>7\
+K™µ¸M9ÔÐ Sl{Y‡íAì–"·Î[£z½køà†üûd‚U‹ªãú‘£ÇÛ')ìžQ§á•¦ùAk#´ëæú â@Õ×û†Q¾¹!\4­âYY`@Á%¯B¿ÛÅX÷Û4Ä^ò”¼+¹' uS›!5«qt4EÙàY«†ÚÞìÁ)D]ucªoœhÃ÷ñö³ûîò˜ÃLùÅ<7ð1µZ–q™ ë–ã6Â’Ú°¤&ÄÓtYÝ ƒ:üý¨×ªÝñß’A¯UAÏת8yˆó™4o8;4{Êêb|÷4&j¼”YüeÀ£Nèõ;Êën †Àõ}ØO Gí‰ËÕómµÉêt=îÀè8ÉéÞ„!ëd½OÐðòÀçñ}÷k³
+ܲÄT‘^h÷Ìÿ\Þœühá
+endstream
+endobj
+2777 0 obj
+<<
+/Type /Page
+/Contents 2778 0 R
+/Resources 2776 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2779 0 obj
+<<
+/D [2777 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1458 0 obj
+<<
+/D [2777 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1462 0 obj
+<<
+/D [2777 0 R /XYZ 153.694 537.031 null]
+>>
+endobj
+1466 0 obj
+<<
+/D [2777 0 R /XYZ 153.694 460.414 null]
+>>
+endobj
+1470 0 obj
+<<
+/D [2777 0 R /XYZ 153.694 460.414 null]
+>>
+endobj
+1474 0 obj
+<<
+/D [2777 0 R /XYZ 153.694 231.309 null]
+>>
+endobj
+2776 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F53 2210 0 R /F57 1860 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2782 0 obj
+<<
+/Length 1794
+/Filter /FlateDecode
+>>
+stream
+xÚµ]Û6콿"@1Ì.š%Y–ü0 (°ÛKö€=´}ð%Jâ5±3Ù¾kÜ))Žíó]œ }²DIüI‘t8YMÂÉ»Wá¹/‰áN LýðûWoo_ýö'¥ÑD‘$Ž£ÉírB%JˆI,$a\Ln“OÁgÊ£yº+¦_nÿ~‚0$“°„$Q *8‰“è„l È>î¦3¦=Ï–û,_Mgœ« õ¨CËré‡,Ê[¨Ç΄P–t±²ú‹Œ+ ÒA‘f›n6{ÇÙ¿uY¹Ñ<­K]ùµŸJ«êtã&yQi%AU8Èv
+‚Öe6¥Á<Kó²»zçôà1áÖ½WM©«`€ï¾f#A˜r|ßÕÈh(ƒl‰_À¹ÖW¨•&1j¤…¸2Àû®(5*¶<§Ù£b%#
+0´»*+rÏdé˜LçUv?eI o
+ÁkÐzŒDܽԦ\§fW^ƒ8"2” 1Dír“Vå˜ðEIÈz>&”"Qâmã}Žö…ˆÇC4¸Òƒ¶éÜ¥[ó†å9DlôÂMÓe¥Ûá,ŸCdB4[eÍÖMשLJÁBZçŽÖßLl@=F¯²²…?­‚mIÇ!ä Á½ƒ> uý«±A‰Ÿü ü«ô±šûø¹ȃ¯öÌÞM²jÝYµ÷é¢ÚÂA
+ã¾ ¶H«ê4²ASf«<­j£‡|w&‰°ËI©Æ`“k\¶mt||ûaå
+ÔæE~¯M…od9HßëÓˆ†hD1Q´#PXçyˆ?Ø'"Æ£9ê®øZ^B §)L'Î+çdgò<߯é%|ªq|>“Ó<s…É8Û|VøAëSaøÓ­O…ô¼‚Ãîô‚7 ê^…ƒ.,(ì
+Cwçú$ø(ßzyJow÷‡§¶ÿx ÕèGÿ íH§í sQhPaüã<B5Hå8¤#ïúýŒôeýmÍÝ+4Çço‰ÕxÕ[?´ù8d—ð72,\R?)þ¬úI@¾®ÔÓú)wte‘ä qûM½ƒ„³,›LD6™HtÊŸ$&mÇŒM@ê ܺ°]˜— ‚]é šIäéV;DDÌmîmþoJÀ‡I“H‚Ö 4ƒìÆ’KŸ]^Ó<¢ˆ
+7µKñc©4P¯Æ}gá ‰²ƒ[Ò]ŒKçb3$m×ù¶³´ýŠ »–i˜5 i1ÁeÞ¸ÙÃÔË ß÷´(± ‰ÒC[¿nô ̃y®ƒÐÐ×ùdwU·;”Gí¸˜ÄTlŠÖš8<‚¬RqšU½!±Urƒ5hâ:¨¸–ùÍ©ÿj¢2Sä¶ žÙâέ=ع‹{€ dCbPATâ¤pùvA¥¯©ìÔ¿0ÅÏá5©Él“ ¥®ürá¾ßµ)lí·k{§4>5°aƒÄ8r‘F§HœøHÜEZXÂóymFô•X•è±¥ŽÁ? »õ±¿þ´Çt¶ã#›'öªâÖGƒËÊZEG–µwz2`@¸$Wࣳ°ñ¹ýp®CG¦ÀÀ…ù#ˬ|q±¦âK³ª¾•
+E$öï„ÃëÒàæÌ·¯þ‚¾ÌW
+endstream
+endobj
+2781 0 obj
+<<
+/Type /Page
+/Contents 2782 0 R
+/Resources 2780 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2783 0 obj
+<<
+/D [2781 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1478 0 obj
+<<
+/D [2781 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1482 0 obj
+<<
+/D [2781 0 R /XYZ 153.694 599.701 null]
+>>
+endobj
+1486 0 obj
+<<
+/D [2781 0 R /XYZ 153.694 599.701 null]
+>>
+endobj
+1490 0 obj
+<<
+/D [2781 0 R /XYZ 153.694 540.672 null]
+>>
+endobj
+1494 0 obj
+<<
+/D [2781 0 R /XYZ 153.694 286.874 null]
+>>
+endobj
+2780 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2786 0 obj
+<<
+/Length 1889
+/Filter /FlateDecode
+>>
+stream
+xÚ½YKÛ6¾çWX•XI=ÑKš¢IÑCQ${Kr %z-DUQn²Xä¿w†Cɶâd%§íÅâs†3œÇ7t°º[«WO‚Ǿ~ ß`ÕA×5_¿zòâöɳ—Œ…«ÔÏâ8\ÝîVIè')[ÅQâs­n‹Õ[ïá›Ï Ýw²1­6jýþö÷/x
+'ì¦Nµ°¢’¹›äž®
+Z•£àQ õ?–ýž–€Õ^^b]P €·’{äSÀê~Fžó¤i
+Ò6ôÇxm¨oï´²S$õ„st¦Eý^ö4RãöšN™—d*Èv¯©agÔI/Yª|ˆÊVÎ\’^µAƒp6BàŒIÎŽY&Ø(tócOMðoj´Õp‰ØÛuº¦–½n$ddíè´¥Ê]Sïè[¯íÙËÜ_oB‘zoëÁ‚™ÉÝ÷xᗥ̦bBÄH"wŸ¥µÂؤ5å¶R4´0×+Ô»
+3êºíJƒ±v
+ +î)^uA¯Ñ½r-ˆ-nPºoéâåv1ÃF–Ä{ÓËÎM†g¢­ÔrY$´'ÀfOÇ!µØ`þ©¿$áTº0Eäo…3÷6ÆméÒ*B瘶õ¡§N®s¨]È ÀEŸ
+pbe¦ŒÌLtÌgYLâuX™¬žqI0G“UB
+ö5ˆDð êôOÅGêŠdR|
+“¤Ëu[ÒÙáÛʾ¬r ýVn«û±‚°¨L–î||˜T¦Pί*Dz5貚™÷H~ )Ù¢GòÇ‘Âà û¼ä%=\ú²½„öâ·ì©IE©,6"óS÷o Ò³-¿Þ>ùÙj¸Í
+endstream
+endobj
+2785 0 obj
+<<
+/Type /Page
+/Contents 2786 0 R
+/Resources 2784 0 R
+/MediaBox [0 0 612 792]
+/Parent 2767 0 R
+>>
+endobj
+2787 0 obj
+<<
+/D [2785 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1498 0 obj
+<<
+/D [2785 0 R /XYZ 153.694 577.783 null]
+>>
+endobj
+2784 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2790 0 obj
+<<
+/Length 1305
+/Filter /FlateDecode
+>>
+stream
+xÚÅX]oÛ6}ϯP •šE‘¢0h;lE÷¸ØC[`¬DÛZ,Rå%mÐÿ¾ËÙ±«4R‚tI‰¼‡çòÞË#'Ñ:J¢7gÉ}-bÐ&QÃÐýýÍÙ닳Å8‹8*Ë¢‹UTpD0ÍQJhtQEïâ÷˜d¼~Ùwæ²n.~ûÊ<X)¢Œ¤ÌÁ(I¨Á¦±";XlÀâ«Å’46­(¥ïêζ$– «jù± oH¼…'µ4~ äuïÔÊ·ýFÚ]xgúNŠ-–Y–ÅoÃÃ6Ķ“RTŸüøãb™æ±”Á ¨*YÛÚ²=%wJ,£(åžWØ •—‹”ÇÞfokÓ¿ðoŒ­õ¥ëéÀÿë¦'Ô=òÀÖ<*rÂ-ð2GE–FKL åþh0ÏÒ°Ç£cÄQVÀ>÷¨äU©›F¨êè8o~C
+Ë—8A=@‘1¨¶ÅÉm(±êe'Œ©×ª‘ª?à•B®ØÃeÓà¶r€°Ñq¾XÒ”Æ_FãôÛé
+|RÄ?kev {?Ù'A ÆÝæ(‚ýX°£$=å’3DÉðÍYb³°6¾×ˆÒ¦—†pÏR 8Õ0Ãòr= …Í êІŒ”¾sµ‘°¤³Èÿþy0/|£tæÁé÷Ã4Ý#º oµ³¼F™° QN¥“¥^«ú³Ï}Ò9’ÑøíÊ?2Úåp·v5£”Æ ³‚N
+TŒe q|D¯’«Áƒ²iožá/£ aá M¦Ü>3[8ögf³ú~¼}DR<Í{rkä _Ñt »e}évïCÁÝ{7v ‰|kÆL/’i¬VõNïRë*p×·{@r(?S‚›ÒiDÆR¸“[q=‡›ÎoF~Ò|…G‡Â¬ø4V«úq³bšéý©Ì°Í’ûoŠ‡é3ÆàË‚}†Oô™Óô¬å'&–äáãäϧ±|ÞÁM™2ì>4lë.gÛiêÊ^Ƕ«W¾õ‚€;Aàäœ}(lbÄJvR•òxÑÎÉT)‚^°ó agü¸ßÀ@ô~ÐÔëÍÖ|¸hÛ®6rDX–_ÑÌ0‚‹Ý±^Px!eŇtŸL 7²´báòXž¸M†Ù{yæ& ºeª¹W0EP0 tÌ _B[–u%½0[ÿì}B³]ë—ènxL(\¹ Å/&Hд4›ç8|T~r²º÷ßbBéaç$¨Çé"ˆá‹ ëé9
+ˆ¥ÿ‡"aäáE{OÓê½eŽÍ¾œ‚r€B™V¹e¯»sûøóË9„éä_úoÙ;ÌßÁ=ÒŸŽàÀü±7ýj;«Øó¹þk
+endstream
+endobj
+2789 0 obj
+<<
+/Type /Page
+/Contents 2790 0 R
+/Resources 2788 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2791 0 obj
+<<
+/D [2789 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2788 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2795 0 obj
+<<
+/Length 1845
+/Filter /FlateDecode
+>>
+stream
+xÚµYß›F~Ï_a©ªŠ¥x˲ìªM•&M¢ô¥UzR’H%°>“ØàÎååïÌî`Œ/`]îöÌ|3»ûÍ ög×3öâÿ­–IhýYCê¾zñàÉÕƒŸs.fŠi)Åìj9‹5JÏd³ ŒfWÙìµ÷†‡â¯'›ª(S7f;{õû‰
+¤gùLkmñB&µ8HÝ€Ô«•™/Â0ô
+ó©q½¦ü0”g
+7Ìkl/qõiS±ùBˆÈ{ZõnCò9÷HDRd$ ¶R][züfeš•©œð¼9V†\»Ûnç S¥ =© ݳ‘3?è›("(gápy/—„¢|ˆÈK2Bšwp
+¯Ù;ÜM½¤5õ€Š=“×·®ÍfSïÖ&û ç¤W¢u7yM¯Tðtmª¦«-/ð-Ð9`Vߦ0da@Û¶G—Ûɪ›Ê$‡~¿ïw›­ëeyeÒf}ÛÝöVIQo­]e7yY¸ù5ø½¼ÎSæ "¦ãP!ÄEÌ´f B«Ü1å*ÖdMçHsÅ"‰Gq˜ s“–› @=9Ú¯ùÛ/ß)$) ;Ò­Fåi
+5æËb·ÁÎ.MËÌüóƒŠèå¾">¤(ŒY¨Õ±"0&Ùn±—™ekÙl¿|Ç¿ª#NÝÞ“*§Î|Ú‚“%œó½+ë4)¾­ê`Y8Î…f]›)£– ö>?ž‚:ºÜAöÀ÷φ3Êå8—-ó)‹¿}y¾2ÿÝAf¶œZ‚^Ðð^LIÒtL8 ÚðÇŠhéï¹
+<óÃG$5àBS¤å®À€þ5™›Dz·mšæ™q˜¬ÝÜ?òk URmÝLYµ+a”4°ÎÝ8ßlL–'ARÉe¹^—(ìx•{פÄ5–ÇOi#¤ìÙ$´b*ÐÎ&d}î¤÷§‹æqìÊ$u›NÐûh*ºÑT
+RW
+j“9áýÑ­Ï‘évm¥Ÿ´YÜ UÉm:£¦ÚäLPn8:Î^^[
+endstream
+endobj
+2794 0 obj
+<<
+/Type /Page
+/Contents 2795 0 R
+/Resources 2793 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2796 0 obj
+<<
+/D [2794 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2793 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F28 1704 0 R /F53 2210 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2799 0 obj
+<<
+/Length 1279
+/Filter /FlateDecode
+>>
+stream
+xÚ½XIsÛ6¾ûWp&Ó 5c!ÄÆåVË‘4í±õ­é’@‹c‘T (¶'“ÿž‡…ZhÊ!kÅx
+Ý3ù
+írèû ˆÇÈ¿µ©
+ ²ôÜG™›4é‡ÕþH
+endstream
+endobj
+2798 0 obj
+<<
+/Type /Page
+/Contents 2799 0 R
+/Resources 2797 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2800 0 obj
+<<
+/D [2798 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2797 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2803 0 obj
+<<
+/Length 2170
+/Filter /FlateDecode
+>>
+stream
+xÚµYKoã8¾÷¯00h@b¶Ä‡Híi·éA/°{Ø1°‡é9È2 ‘%C’ó@Ðÿ}ªX%¿¢$Ž{‰(Š¬w}UÇ“ÛI<ùíSÌϯóO_¾ez’ŠÌ*7™¯&‰6Â9IR™É|9ù#J2£¦Îÿùå[’è‰Yšj<¬¬P™JáÔDéÛªYä®~ÿú÷mëWݺÝv«¼ê<nzx~žÎŒ4Ñ?Dñ„ûŒ)Î’Xd&Ûs×Wp¯½_Þù§¾Ý ,릞ë¦]¾ËÙí9›1ÎÒŠÌ©cΫòóQ>x®N:F4q¤Ù@ô'ÙûéÅS¤ðŒ'-¼òò?¿}šÌÒDÈ,¾±pÆÄsô­¯—£DAl’2E9@T(&“Ä(‘¢F±&–“ùèÍ×~:S‰‹VÓ$jªª™J=”õ-ínò¢mpiaÙÞu´ÛÓ%¡a§Yѳ˜Ê,
+N¡ƒþ±§“}C;‹é 0Ï-Ò†×Âw_ŠéLë4úÞÓÇní*&•W(ZŽ ž:T}L7“%ÂhKºxÅYT4uw¿¤<È»hYvEÞ.=¿.Í­IÑ8èå‚^38[×dدšÛ² eŽì²¨Aïñ¸¿AÉMÔ5tàÖ×¾Í{¦˜×$†¡Ú¶i9ˆŽ}—œ+g3
+’r%Z\©¨Ds)•½{âÝòÛãôDÛŽÄ3„³–ÎJdÈÃپ΄µ(šÍ¨‡äóhâðíóÄq—e#Ðþ-ôü½î}[çåØû­çm^wÛ¦+û²©ik•—•_þüH"gcòØX(½×üy¾FC#¼–Ýšâ”`©§ES»VŒ ÀDÏà)/D’/ß\6I¸ Ø ¸!mPÌ1P$FdÓY’€$ÿòy·k!ît–E_ó¶‹5ˆp7ÅB»Tu ©=‚ ;Àì˜Ç6Zò!Ì\ŒÊwôNi”¦Qמ¶á°ï|ßï)
+è|aBÖÌÁV¬&:5"µ¬GØÆClõÍö ŽÁèŒô$fÅDÃ(ja!±©€Å;OI@˜Ó»õ¿Á gpã<'  @̵`}_£¥{úXãy
+AW •»ý=Ô:xHFs4LC_òpl]rÛI›p»»–¾å]á˜yÏ·vCRcb#¢pš“춠\ú¸¦Ñ‚çvW!Ði _ÃÆýqºÑVó#VŠÎêÎR¹„ªìxEURc•Úh‚Uc²ü ½~-™@hÊ4ž…/ÒP¡ìà]Š•b¬†ÊƒqÇê83&<b‹^31·pp¤kªõÉx†æÎD|‡$h™KN["ÃÆØÄ –qÀY„[^rߥF-S!¡ß=Qæ~Ã6&†v)6gäb“Œ£@r>G)¨f:` ßê›Û㤀 æ§Ý“*Š!àg¾½w]ô2%Žþ;ujo‚á[„k€ž¿=`Ç<'ÐëìÞŸUœ“âfÞ0 '¨÷«ýœßQ'c`7Ì>t
+û R‡6a?ÉÎ҈엃”Rúôþ}·­Êþ-¯+X*=Üý@ì)áTz̮ʻ~Ñ<¾ÅO'Âéýð9ÚAù„2/Z"}uºÿgxýÞñ´v]»c D¶ïwò;¿áð¹¢Ù‘i
+C7;ó³9û àG½Äè\06‰¾¯hÛU¸v_B-ýò†ä GQðÒH7Ý
+´²ñ™(k¶»Tãò+©…Ã'—À
+€ˆ· ãÌ4€LªNï•oÏ1S#ƒN/wd
+àôf;s-1¾à„÷ÿ¦éeÿ,WÀ£¬ï}{üãÃÅÿÜKíe?:0üaa× |XC߶¨à¿Œÿà‘ºÿÃÏiv©ÝÖ›fùSÙø2SEº»r;”Öa½«qõóØä2~Pg |3g^qMÿ|ùo@V^Æ­h¶O^QG]i÷'ê|„Åh³¡Sá’ß/ü-ä~ÛìÆÝÁΉ€^Ú·ÜQ–¯˜íÕâ î±WÉ„sƒyrå×ù§¿
+endstream
+endobj
+2802 0 obj
+<<
+/Type /Page
+/Contents 2803 0 R
+/Resources 2801 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2804 0 obj
+<<
+/D [2802 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1502 0 obj
+<<
+/D [2802 0 R /XYZ 153.694 518.119 null]
+>>
+endobj
+1506 0 obj
+<<
+/D [2802 0 R /XYZ 153.694 431.139 null]
+>>
+endobj
+1510 0 obj
+<<
+/D [2802 0 R /XYZ 153.694 277.886 null]
+>>
+endobj
+2801 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F89 1710 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2807 0 obj
+<<
+/Length 790
+/Filter /FlateDecode
+>>
+stream
+xÚ½˜Ýo›0ÀßûW M“Ú‡Pll°¥jŠ*­“&íiyÛö@‡I¬òɲFùßgJFÚ»4醘ûÝï‹xÎÔñœ/^{½\\ßIæ® }áL‡0:]êsg;?.‰ ƒ«_“¯×w„0G¸2X³™.¥¡‘dwý$>[ÞGq®ªªY¿Ù'Éâñ±YdÑ*Ö™Ê?n%íQG­¤ñ\ÉeG aÔJÕ÷ŪY}¿›•Ö¯CDC€»£{¦UóT×»«§ü².^µ®Ö·NYà
+âï‚UOËb1Ýnï‰LtZäS‹ˆUÒZV«l¾¶NmÌMtYÕYT>l0t£ëdµm—™ŠªE©&Ia‘2Wy”Ö‰ç5w³êAωÊ!)|à¡¥•ÂèÏŽÖ¿õ[³ÄØÁav$cÅ`•ðC×—äœvk_lÓõçìÙÑ•!`vpÎ+Ó†®‰)€ÐvcO¨ô`Bu²ÌŠXÙœWÑRuw8Ñúõ؇¹®maÉT­Ê¤Èm--U­>Í£=N ­_U„âñaŠ¼mÍúO¼=óàùv«ß§þƒ­ÂÏ>lò¦ÿ+î
+k9Ãþ4#û é2Ô Ñ‡FÃUærƒa²“÷@#”ƒ‹š™Ò3ï:ïfí¾hÇdð¤Ö7øð
+endstream
+endobj
+2806 0 obj
+<<
+/Type /Page
+/Contents 2807 0 R
+/Resources 2805 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2808 0 obj
+<<
+/D [2806 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2805 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2811 0 obj
+<<
+/Length 1075
+/Filter /FlateDecode
+>>
+stream
+xÚÍW]›8}Ÿ_ÁËJD*.þïSÔÕ¶ÒJU¥nÞ¶û@‚Ѐ‰0™´ŠòßkcÃ&ê@Úõ%þäÜs¯Ï½vBoç…Þ‡»ÐµïVwoßsâ1À#{«­ E£@˜z«ÔûÏG!b‹ÿWÿ¼}!ñbÀ#f3Ž
+ŒŸ^Ešg-ö›ªÐ•eBú1";*Õ"i„+]™ëX¬ boRI¤]«m»­Š¢2B8:M%v^3Z&‰»ÏU¾“3dBn‘É §YB¡Ó„rPb[ÉæôiϧM©ÔùTžOòlÖ”(Ħ1ËsĦ盬ªS‘ÎÁŽžìu¢©çR¨û|¨ cš—BÎx,âxš±‡uõµ½†2Óùó<êÞ‹ZZû圷*æÓâ(
+%f„„Ó¼ª“\‰Ž÷À¥8̓m>‡?šP‹~Á»xð(LâO¨B‚ókU(q÷.úɹËep[-éLßRKŒ#sj!Ó°K®qêÍ9Ö‰å*I¹C«²"cmbz¨EkkyÌÓ&ƒÃ|Xf"ßeÍØÿe*öM6•ÑãFÓ™jÒÓ˜ãq|“Ç¿ÜáGB|²¶ºûo: _ûÏsýóEÂý‰2 ~ò©Aoz‘Ö3ËE¯V(~Íò@É‹j“þf©HÙËÖý&Õö‘Q<·<ŒÿDÒƒ b®Šk´‹oþ^Ý}n Ý
+endstream
+endobj
+2810 0 obj
+<<
+/Type /Page
+/Contents 2811 0 R
+/Resources 2809 0 R
+/MediaBox [0 0 612 792]
+/Parent 2792 0 R
+>>
+endobj
+2812 0 obj
+<<
+/D [2810 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1514 0 obj
+<<
+/D [2810 0 R /XYZ 153.694 567.821 null]
+>>
+endobj
+1518 0 obj
+<<
+/D [2810 0 R /XYZ 153.694 364.583 null]
+>>
+endobj
+1522 0 obj
+<<
+/D [2810 0 R /XYZ 153.694 253.001 null]
+>>
+endobj
+2809 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2815 0 obj
+<<
+/Length 2750
+/Filter /FlateDecode
+>>
+stream
+xÚ­ÉŽë¸ñþ¾Â·ØÀ3G©…·Á 2K0¹dÈ!/Y¦máiq´¼îÆ ÿž*VQ‹ÛÝv÷ä"’E²XÅÚ©`u\«Ÿ?Üþðð黟R³’R˜(
+W‡•Œ”ˆ^ÅQ"B­ö«­e$d°ÙJFëßžÛ"ßlµ ׿çY]õqó}÷“4+#LÆB8"XI‡Q¦X¥"Õ0[Ƈ“:^7»M˜¬¿Í°‘ëŽ`ÊðóL€¾¡6omֻ̗švOÃ*Ë[^\0¶¬[l¨›¶ÊÊ«‹þć!F !]óTÖn‘ÃKžÜ-…±H$žŽCekÜÜwŸ7[¥€¹Úb'Zš–:ý‰!3ºqXg•›Ðë¬fЛK”AÇÀ†Ú#·xõÞ¾zÞ— Œ¯,&½dNja ÌŠ£ÀmŸpM âU{\ùî?~5’RÍåïq%H“t‰ë‹T:GZþ`Œ¬• &ØÅ1†é ¡ŠE '¤'æ T×YA£U-Å#7Q¸Þ»ËvGxšCPýD_l.–¤Þu
+X<Éÿ}³2`(÷òšDh½Kr†¼Å£“Näÿ‡G=ò¸@𺆩@ {yº
+0èÚ8XŸÛ,ï‹ÜÒ¨r\{¢QF 6vÑ `kŸúÖV¶|v¶|M݃€lËùPáÙ;Ø‹t3Oè“yBg_| TœeOcg‡ÐEN¢€|‚Îm³+mE¤Ç­?e¼ù ™íˆÌ8cî,õ'FFa ðú
+S‘A¯S@Ç™‚kH£µsS’ÑÎ8î‡p÷tÞ]…çã•€hÚpOCã&®9P›7Õ¹´O4èz\ñ\òYíPÚWqtÂÿæ„ßÖtò#ÎÞŒ0ŽÙĈ a^³¶'î1#—Ð!Û hõjk÷jÜ:ù0§ßoš®Wq%¦hAÓUKžñ~ZDÉbË-;Vl‰–¬oYáü¸8‰Q—×α§ð!}0’$×›.¶;5C¹-4Fq"¤dÍC¥IÖ¹Ô(ÔÖDа=³ƒ;V‰
+ayÙ bŽáÆ;0}4¯8Š×›Tº”,|ÃOSì ÔYä¥ç­Î3 —[Pº
+Ƴ( €.z-B7Œ)Á†ý£p'bÛìÈ@ŒŽâ…»K$q$`݆«›M¾áš ÒTžO€1-S¢ÜÒÌÞ™ºæÑ(_Þ7tK×`Á°ÍZ¬B°p…Mø2º_‚(`¯tM.ÒB•²\—G¤’„îZº'èÌ•†˜Xà ¥d¶i€SqåV4ÔÚ§sYäÏ'¥tRº>
+>8ãý‹j”§‹½ySïïs:2ÜÁK•ëŽ@V”EÇÚÓŽÚäÜ€òÆù‰=¯ØÓÐ¥•0ìÉ/@¯¤‰æëÖ‹€¿^ˆ‹ªç¢±#« îr¤W)ðëyl…LJ§f¥U*"“LÕnqøý‡ï1Á¯Á~ßÞj ˆ!™ÚÒK U[#â]Û|µ5¢¿ŠúÌéý‘í«
+ùL‰Ï)qVœTàc˜›Þ@”têÂ$*Å#¶‰0 î­TЦd¦fi¢ â±ñ/h;µ},W­óòÞ»•à«#ãωƒœsÃXoùrA¯¶!†Ó!€yLüoy€0N$þ6>&Bä;sY–µädvàÜ^¹j¤²H5gmŠBhmZP8oh §¡Êaê½8€ú†T®¦aYPñ ÀÚŽÐç¤ë-Ñ'£Hä}"Û©ÀÁÝÍ»»%$‰¼*z¨NÏçîƒ>Y…¡€ôÌå*Nð…Ì°’QHC¯«U0¾ k÷dóŸ¡@Ùà`YáÒ3)›õ³x›@JC/ó°coaå‘våÍ@‚xÅ)0“ áˆNëñMœ3qŸb;èò•m^K…óF³§ëýXŒH}úƒ%ÃsYf»ÒúÙ˜ì{¶fÝö^¡Áê\û×Á¶ÒUÐÔÑ"î÷RqøUÅkìïЫ[Úšj‘‚&u•/ÝGÝ
+†3Õz¤Zêï#ý”â²Õh§¼?Ûñƒ =÷Ãì;<§~šƒª\ÑÅ;3¼èc'½©£ïI(ä…êï:tEwjþ…È(…â(™¹çüÎMÁ å.¤îïCÙ˜ÔþHOTw>'ÇXw¦KtN¡‚d?ùH5@oPC¥O#aòÒ`ÔbAuÌ·é½"ôƒÂtÛ”è )B=¬së·U¶ÚÞaCRCqiÂ釆û1xa0øb×úüÛ\5‰ob“•Èõ"šðƒ·‚2¡l þÑÙý!À”O«éÏÂ]â U(¦Ÿço¹æ‹;ˆc¤ãŸè™Í>]5WÄdùÂ`ã» ¥¼©*pCK…ÿãÍÿʨ<H
+endstream
+endobj
+2814 0 obj
+<<
+/Type /Page
+/Contents 2815 0 R
+/Resources 2813 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2816 0 obj
+<<
+/D [2814 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1526 0 obj
+<<
+/D [2814 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2813 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F114 1729 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2820 0 obj
+<<
+/Length 2023
+/Filter /FlateDecode
+>>
+stream
+xÚ­YÛŽã¸}Ÿ¯00¢Ö\ñ&‘yJØ, °é‡v2ˆ,Ѷ0²¤Hôötýï©")·äQ·¥N ^DVÕ)‹äq¼9lâÍOâ[%I Œ74CõçŸ>üpÿáû?S*6Šè$›ûýFA5æ›D¦„q¹¹/6¿FŸ(ÿøá½±ù±éŠ»Þÿõ Go4ˆa Š¡$fN ÝPÉI¢Å‹Èˆ¼?š»-×i´oªª¹ciôPÖßuÊò®ÁªŠìSÑc{·…Âôw42¶÷_J_I£¬;œO¦F6ô _üÈ?Ý0»ð=Y]ø½m:F[o‘Š ç c+Õˆw„)g&¦‘ò5ø'vžF‡‡êÏÎK”Ý4ˆL9ai2¼î\¾k¾N¼þº·×Dr6‘´ð[.DTeÖ¸*Ú*ËÍÈoÐUúFãÇz@wÑ8lùÅËän+T–F3¦4_p½`˜k~Šeü_••L|^ˆ^hNb= fPoPÙ¿º”œÎBlv¦0Ÿb.jƒa¢dÔ£K
+¶VU¾(S·•=ݧ/âôœ88Ûžg6o
+ó¯ÏØp©ÃÌ) ¯”¤ñ2%‡Âì¯\ó‘>ýn…":§ˆ§„»}=¾_ŒµÙ®¬ ÛMè«8s°=«2ˆ¹VÉ–©@|®r6P>­QÈ犄(:qæ¹>~«pVO˜{­G,Ó³ƒ´]ºæÜ®.ç„Ë„0–Ž…—{0ÞvYþ%?ΊS®Å'sâIÁÆâ+cƒƒ|HÃò‡6Ô@ï¬Ê æZeº ‘©zsÉe»§êÿÒõ*,z–}¹bMT¼L( ù| eºLMÛ•uȾk¤³eËáâv_v½W1,<–_LW*Íé Î/‹âË”ÿÖÂeÁ6§ï×ÈËdÃ^¬û¶é ÜLÌÓGú¼F‡\¦Ãyˆ™ÓÑÉíU^³Îé²ä··…©ï²£•º}`<¯8”^æí³×²Ð¼/Ó1N×—¶;U×(£Ë|¨š]V ¼Ü‚|má~•íáñäâõhF#>RlàïyÅa¥ñûò-ý
+V¾LôKz¯÷
+µDÎܸYnSd4e$–C”®ŠFŸ\Îo† $/‰rï)5OvCep™ãÞŽÑçYb$ ]àìðO ¶êO ¸¡P©×™ ©D½ Œ˜LçöpŒMDÏw}à?ó¦jêYªQNU×d¡NÞI^®<óïÕyzO§Ë˜·Ñµyrùpÿ„ËÀ&cVðsZ-¼+.D§ßëKgøÓó›éN*‚êáè†#1\)M&s~¼ÿð_ 9Uã
+endstream
+endobj
+2819 0 obj
+<<
+/Type /Page
+/Contents 2820 0 R
+/Resources 2818 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2821 0 obj
+<<
+/D [2819 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2818 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2824 0 obj
+<<
+/Length 1760
+/Filter /FlateDecode
+>>
+stream
+xÚ½YYoÛF~÷¯  €rÃ=x( ¤MRAR-ä&WQŠxÄvŒü÷Îì.)J¦m’Mú´'çÞÙù–Îâjá,Þ^8¦}µ¹xþ& „>›í‚
+—ø.[x®Ow›dñÑbÔqVŸ7¿?C©X$ô<¡6ÄõB ¤v}¢\ÈDn±ýãÕº¨eUGKúbÉNfîžiR'lmCʦ Ý°cK‡Ø2Ÿ„ï³Í ysˆò¤ÏèrùVó :>ìi>KŠÔ«ºLó+ìM-˧yuá?T—#ñ´«¾Mp;Î󹼎‹ýþ\ð»)¬¼‘A¦ìmÁþ84!w6û¸éÀŸ,Àòl<$§àrÒÆÍñØÕr¸[²oS"&Ç$ÝÞô˜`w m}ÛMVõ6Ê*©LbZ3_—nÓ rQgd$wùì^K<hE CÓýðöbaûñ)°vŒaÿܼAyçP ‰
+Þ Ár¡Ç<å\â0E“.¨Ë‰aâ2ø Hîäf0«XÙ‚Vµ¢Vs8¬lèe“¾¼ì@weÃNè$2Ñ3ïbv,p‰ë"»€øÐì^š
+7è
+Qäkiö¸¹ÉêôrÄok Ç=׊q´‹Ê(†X鹤)Sp[~¥‡õNíVv[¦±žC·ÆQž§í¦C©Ý˪"+Ûõ2‹PSî EB–£ãÒt?¨ð¢|ÀB$àÞ‰M½ $Ò“8}Ø1"„CÒê“ÐNxÐf#5¡…ZR_ÀØhέ¼ÐmœÉ(Ç®ÐnŒ”UõD±Õ{ú.Ò†‚ImMصâ²0TÓZ·‰DárÍLXÛ¢l?JÍÔÏSiÎS%aD0˜<k³{P%:$ÀŒ*™°ª£ð :³¦N‹ÜŒ ÜWz„¡†m‰ýÉLû»øGµ¨Ð‰”Êh ¡Ëêëµ<ÚC”ÏÇ!Žï*‚‰ É—4M×gÑàú="‡o»+òÅʦž¯š ÂPⱎκ€SW£Ã"9 OHóG’Pç;.UÇ„£‰ˆ‡â`gò ÆœÌt`¨ò¼Wigö°ûJEºÚáf îmWoS:³¨4WÉ”ª’²ÉÐÅpYÒ¥ÚQ§õ}¯pœR‰YH¢Uk
+'w:§=d/HIK:…7ŽÏ±°nçWYæÀLáçÿo ¾+£á܃ƒ%讲â2ÊÌtœ×Ø«¯×„`Î|!°f}XŒ]¹ž$Èì4¢êÜA9vK™E7Sa3™ÐºDÃøÓÌ”j²Š£ƒŒ¡SçrË  çN˜ïõ5º9Cž§§ÔœÌoƒÚbçŒÝÉéZCÞó÷™6C,;øû¦8õ;?G´¾îI³äçq0ám€LbÇóõu=!s±OÊÝq…Åæ̵ÔÙÒ—y¢W¦<E°ðGA~(“B€w÷0ÿ¯2΢R¾C
+¨½{¤ß¹¢>‡²sQwT»=ìd>‡*œ<—¿
+N9XyCå\—‘}½R?B2
+(Ñu®w :ÐÚé©jW4™¡v©˜léÅY£0p)Íu[ïLé~“'²´5ؤD­äñ…N7hÔ3åë
+”\R=Ú–Å{!*‰LK=êô=G}¥,wúô_pphª4 ESëN¤¼l°®Fx=Ö‰˜žldrî.¦Ç8 q«-íE’
+B!˜’ÔApµôM¥^,pE=ŠÀT{0Ô j×: Š³z+ë=¯À¤²¬®«¦iß@pwQŽÀjÔ¤¯£³lȯ ÍxÌÅçVmFóüó”Û‰üu£nȨªÒ«|/õ5•n»gäL¶×e®ÿY_2úÖT5Úä7eÎF_š§×5òŸÂ‡}S£î¥®é ?­ø`‰Æ}ÂU;aQ÷ÑLÏ~ƒì ‰s 3Hø=·\”$ï{¦S¹ÇÕ’.Ù’25„Ιzãtl7 èJž=ú’ÂC•0l’ 0¶5ø°ûæõæâ_òª9&
+endstream
+endobj
+2823 0 obj
+<<
+/Type /Page
+/Contents 2824 0 R
+/Resources 2822 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2825 0 obj
+<<
+/D [2823 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1530 0 obj
+<<
+/D [2823 0 R /XYZ 153.694 257.983 null]
+>>
+endobj
+1534 0 obj
+<<
+/D [2823 0 R /XYZ 153.694 257.983 null]
+>>
+endobj
+1538 0 obj
+<<
+/D [2823 0 R /XYZ 153.694 257.983 null]
+>>
+endobj
+2822 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2828 0 obj
+<<
+/Length 1879
+/Filter /FlateDecode
+>>
+stream
+xÚµY[“›6~ϯpg'3xf­èŽèS’¦IÛióî[’ä5SRÀMvvòß{tk{ݼ!¤sÓ¹|:Æ‹›^¼{†ýóõÕ³o#¾(
+™Z\­„ 
+º"D”‰ÅUºøPÂÂåç«?^¼%„/Š¤äf1—H”ìªO„ñ¿_¿ŒÓôM­«Ú¿õF—潺 ô¹#Óc¹òdV£HD-KuŒ% ‹T—¥ÞVÚ<³u[¦y¡¿}‰óô‚½:ÊΓpìTË.š«áV×õ<9¯âêÈ’Yª”zÃÓ ãXgÝß)ª°c hˆ"ÕS¥(õ ‡Dù8©}ÞwŽz'eÑžô›¢‰§Éɳ>¡‹œ¢Ë_]]öÛ:ëèÒºÀýÁ5Ãqjžð‚JMD!!£†è÷cäü’A¨óèar6‘è¯I±ÛA*1oot²Kýçm™%¿lâòÎÛ1uóþÍ´.÷?,O«žÀç}‘[‘N‹³Ž}†ì¾O<J¼ßn¿lt>^<c=+][¥î=‘„'^”ðê‡Þ=[¬T„ñ)F‚²žïwrôÒ…8»°‹è>d„9t±§)û4ÛÈ| ;œ‡2|”&œn´ˆàp©´‡‹0vÉ‚†$ø W QŽ²ªo—ŠE¹\1F‚êËrEU uº$Á¥™£A]ü³4s¹[â8Ûa–›uYØMfË>öÛõ’†Á­—[µŒv~øÁÊ U¨#¨’‰B®'䱨íiFkŽ#„)é×vr®ËLç©WÈ{éKPÆè½]ÌDG„m-¶r´‹}m¨°Æ>…yãA¥¿Äe\k÷Íz[åÆ×qåÌ‘»Å ð‡µ7Eyë'Œ‘à Õ:ïl9waPÛyîtN¸÷cìnJza3ùBo;>—]•“؉™ìÛ°ú*mÜ ÜȺæˆïªWã2ÖÅv[úšå7nªõ"(€ŠÚ…9ë{æiiøoƒ­0›êOØžzJ×Ö×
+ãþÿÙ@Ë•¤<ø=w tœ96—.ÁõMš‡‰DªÎD
+‹("’9Õ6Þ”°\]„TýMù7¾”g†põaý}Ù £eª‚ 6[KÉƲ1$Œ¬!ý¤}†Á×Mñ›ÓmNî«6Å~›ºñµK»îR§LËjQ5ͲœtÔ²ôŒe¹0‰.šgY."—ÁSÈÄãU #ÄÙD/2‰Ÿáã^ÄÎè*0C<šëE¿+Œ(V/b7À Íê~¾pσ;À‹þ¦“=” ØB]pª$Îó¥)Ã7«:Ûiÿ5¿¿rc¢Õ‚·¸ÎŠ¼]-ƒl=Èúçý$™Pñ¡jR!*|Ñ«öI°¡rŒ?a¦P0¦Ãq¯Ž£
+òÂ=ãĈä¿ùíµÿÖ±ƒ
+<4)×E¹Ó)p —žÂ‚
+Cx3€f§™2aß‹ú.ÍWÁ¥&„mÍ\ýŸ—+Î¥/ñ
+SØ&倞ɲiÕtá34…)BƒÞÅ~é±ä«ÙšcdHû*Ø?ö¦Žœ‡W8LGÙ#Ò\æ@Ê¿€êŠÍ $5´+\>}ÕlÊ›iæø
+G©ï=Á k[xS”§ÜJõøÕ«ºôÕü´lhH¨Y‘ìÒÈ 4Ñ^2Œ’.örŸÌ1ÏèêI€Ý€.#4‡û!#d¶hÄ‹j \0
+y7 ÅüaüAàÃÕ°I(Å|üaÓÏG> Hùƒñ‡ Ÿø¢c>ÌR=5ðpsÁ‚'o+ ÆØüµYOù
+NˆêíùõêÙÿ‹ê,
+endstream
+endobj
+2827 0 obj
+<<
+/Type /Page
+/Contents 2828 0 R
+/Resources 2826 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2829 0 obj
+<<
+/D [2827 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2826 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2832 0 obj
+<<
+/Length 1138
+/Filter /FlateDecode
+>>
+stream
+xÚµ˜[oÛ6Çßó)ÔÃä±âM$ hº%-† Z(Ðv˜"щQ[ÊdåRÙgï¡H_£Å¢”¼„Ežß9yÎ߉ƒó ÞÅ®}=9zyªX %¨ &Ó
+Ãw‹iV•¨íªàX"Æt(Rl“"Øá»b<)ôMV.&öÎû'ñå®õn:ûw“w»ðÚ%! Õzqyçsý“nYo•É|Ò•èf2¶i*=OoG|•¹· ü‘¤¶ƒÞ|(Ù´ “®èMÔªZ´ …7Zv(‘÷gCb’Kº—Ü €tÛ+8Þ#|w×Rg_¸corµy±Shï}Š«¤OXþ_lÝÆÿ­ýÄË=ö µ_òçÑT@òôšêжzI*)žn[×ÙGÊŽ’ê¡PjU8n
+'1@³…s²RÓr>/M ½q"ƒ‡km`s[ ¶YËS–Ê•v)Œ…ºJ£Ó)«ÜŽ7eÑ-¼¬ÌõÌjŽFà`û“G*?S &àcK„‰²œˆšÇ­Ä»Ql£l‹BrI$Åô9æqjbHT8Ÿ-ëÆ{è7±C{‰lˉŸÚÖî°é< ¢±b‚ðÊ˓ǽ„¨dt×ËV-–öïWp]ÄVNMº8Œ
+²Ò~6óõ@ðÂ÷oS0kýå~¡QÎØbᄪnBÆIª? ùWP”fìŸîúEÅý1?y`pÌßÒóƒ†öÇüw³NRŠõÇüâ ïA˜¤?æÊ#úc®=0²?æ­f@¨;cH< d˜Y ÷À Èg˜Y ÔÓ
+Ž=8rAÙƒä‚wýgs‰ :‚²!ÇÃXí¬9™}Ôÿš
+endstream
+endobj
+2831 0 obj
+<<
+/Type /Page
+/Contents 2832 0 R
+/Resources 2830 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2833 0 obj
+<<
+/D [2831 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2830 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2836 0 obj
+<<
+/Length 2634
+/Filter /FlateDecode
+>>
+stream
+xÚÛnãÆõ}¿BÀ¢
+XÍrn$§Oí¦Ù´Eš‡Ö@
+dtL%v)Ò ©8F|{Ï™9¤Dš¶%¾ˆä\ÎmÎ}¯v«xõ훘žoÞ|ødÔ*a&•ÙêænÅ•f©«D§LH½ºÙ®~Œ„à|ýŸ›¿øĹZeÌ$‰ò‹3¦üªÏ\ª¿¸¼´ûî±)ò¯÷¶Á±2l¡ÙÐÖ ™Ñf@#–£ùîU4Ù€F.GÓ¶W°£–ã)®@£—£ùßh’åh>\&]Žfsšl9šmÑæ늺²Í#1+PDâ¡°X
+U ÃóMÏ¢L·Áè_S?³>·@—HzrÎ=t#·Ý íX™Nšyf,8¤öŠjI£®‹¥>‹2I¯%o_²vÐ'Íû• D׸Ãd:ì}÷ѯâc ¹ç=±Š¨½4À˜´íP)fmE$³·5X _h-^©íM3Ç 0½Ì’2Å2)æ£Ë€g dÃp¹á¦µÁ…\öy¨¯‡-ňה*õvÆco¤Áȸ÷ð8v®´ð‰XÑšxå®é¬·ïa™—ί cí1Œ†/»(Ý1è¦ø˜â·—F5‚–ãÍWª~Ÿ3†I®Ç Þ]H‡ Ói6¡£!¡wî€îÄ€³Máó/”]pO³§+&9%wás
+‡ÞG{¯ƒÏàuD– ³| cÞ˪ŽL¿\Î6¼Ù6ì°·`”·û¹ðezkö(Èšý–Šö’5û¨ŸD7k"Jl†Ée»Ž!iÉ¥ƒ,êý’ú*Õ,6r ìe3|þÄ„æŒót ì€b>¶$V[>à·õ) ‰¨/•à7õùž/¨ŒÏ÷²ïÁ­y:Uõ`–YŒ?ìë–€ ÁÌDog²0 a2‹8^R,Ù¼µšÞ¨Õɨ¥YhB&>ázÉW½@·„ò$Sz ë${$r3?+gÏJP f¢¶³ Õwý¨:
+PkoÛÇ°¥_g½èŸ¹šŠ<o‘¦“=özÂwž lEK3Ã)egÙ š˜Vhb*ª‰ÓõR+ÊiƒHüsën;PýîÃú$6[¶´û‰šgrÊ£N˜T*´}'†'Œ<d‘ÍY*H'z aOX…|m*@G[šµ‘Ãt?ìG1@Ær‹KÝ@œ06Ÿ"¼v‚ò.F¶Ÿþø…>³,›ˆÉ7HŽ€õÒé¸HÒ1Ô ¥¨^EŠ²ì‰‡Àº<ðuóB†¬g @†h”’‹üæeÝQ
+¨“ÃøwÀå;wðÜÛ² 6éæ”ü‰SŠ©$=ù8¨<›cåÛ,½›NCåxfwi°»ŠÚ&¤ª1•ˆ¼w`„uÓ¸¼ £h½õ±É]øÄ6UXUÜ…'mãC¿'ƸŠ_?_xïñï?†d½ÒŒíY•‚iÞëbYSÂAíkB>?Ç:¶á3áÀX‚˜Ó€9ÅÚhC¢¢¯ë²_ò$—ƒ±®à ùĽ©êjCyuÑdôõêJBʬõplÁƒ .¨D°}©_azQ„S½û÷2 .ÍU§v[@›œ£dC™ôÑ€r†DHÕL&û¥ŸÖ™ŒW y,ืþë‹Ý¹IEseóœKÊùyѲ뀴 [@EÄQ±<W;L4õ“ÚI,í4 ùSh6\vS%.¸©ò™/ž·î¿øþÓOÿÀ‡W'wùˆ˜½­\S2’ðÖÝ=eê³B ›§ˆfï«À&3:J}×ÔÇûYà´a
+|ö–J Æc}¼ØÛ·'Y¿; Ïb'ˆSìéuØÿÈ~6®´¿\ƒ&»Í­ óóaÐßh¹;˜ÿõ·kh0—Ñ0Aã[ªW!’ñ…ÌbÂPÖ9x×%2•³]‘žû²YË¥%Sp8Š+” ýN_:\àuN´_xo]ºn‚?áÝí¢Fd5ŠÅÐ2#-ªnÛû…Í®5Ô¢”`}¡*sû%D}Qâ‘o#Šò—To*cq*Ƙ~¿¸T–`O6c^Aäíëc¹ ïCÛ?:à¢s4cÛ§Ì Í~‘PZ/á*·ÍmUùüJ$á"À„‹
+endstream
+endobj
+2835 0 obj
+<<
+/Type /Page
+/Contents 2836 0 R
+/Resources 2834 0 R
+/MediaBox [0 0 612 792]
+/Parent 2817 0 R
+>>
+endobj
+2837 0 obj
+<<
+/D [2835 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2834 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R /F16 1712 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2840 0 obj
+<<
+/Length 1590
+/Filter /FlateDecode
+>>
+stream
+xÚµX[oÛ6~ϯP p†˜Å‹¨· ÃZ`À€aóÛÚZ¦m"2åIrã4Hû/²#EM${ER:òã9ßam¢8úx‡öýâê—8‹2”ñ„G‹u„QŒ ÌÅŽ0#ˆg4â,E aÑbý3kÊë9IÄ,¯”l”—¾Ùɼ
+³÷Û²“+õ)&ÔèF—ÆèÚ·Í6|bJ3_VêÏä6?Xïeþ]¦¬v²(®?/~ï{зž2”o¼¬k½1jB±®ÀïWöóñ¨ÚDíë_íºÀBœÅ2Œ˜ 0¿X oáO¿Œ= @i?DÞBkÊR"ìüœS”2Í1AþÃV8xƒi$@§ÎÏZqŸ0¬ƒºÏËÝNšÕ϶û÷û[³¬÷nª„e”wn韞:F¾hÁOë¯u;¼‚ÛÑ\P$HÍ“e >«=k]ÕM¾-«Õ ä—PJú{cD1ö›±pÛÏùl]Ey¤³{¿ù0”—få¶[~Àa†§³¦:„¿î·Êø7#˜Ì
+ÿÏ!jd,;éãt­Ôº£ãþüøÓ5ÙšÜ乯Ì*·Ð”þèI§ñ8齃:EÒ@RD2ñ\C­šey ž84„îZ—UîTeÂ|#—Ú¬”iž- Òû–$ã,ÙåR}M¶ÿõvŠ:2N]ëîã$_èháæ°Û>ìëéö³Ñ*ê}¡°y[ø)SP~*ôB74_J½ZÞ§¸•ŽCüZO¹}HÁ#jÞá§)Ƈó1]Ë¢ž ØÈhP¨&èZ• ä‚ÓþÔ¬š)
+ñh¯@8$‡)²“·ãóeÔ4£`ô’\üq(}ëþ«]üúÙ Ð ¢1WøÐ!C\À.!ziŸ°‘4;sÞñ5ljA¤lÓž¨W¬{Ū„XzÏ»¢Ú„Ú̶Ž4|±òÎ>}ѵ^ãÛ@ „£MÂÑ&O–ì˜g¼Ï>rÖ¿ži•íyú&}CC$
+è$ë¯(…*J,gûû+(¶²–
+lVšVl’üí\¸Ž`çÌBgŸbÏ‚'&aJ3$zîu8òÌè´P ²9¦}I1Ã7#2( Šq¸žrwKv‡Ü­µ»¦vÝMù;˜v‹)섽¯d¸é¾`Y˜@"M{Þ†³ã«ÑÒÁøt½mÝLÐ ÎNH?EóäÂíOÿ”„ÉÉÔRɺnogl·R…<N ‰tdÑzh »£³¦èd#ÃðÈãï5üq¨àôxzz•Ø­as[pð` NpçŸßWÿ!‹^
+endstream
+endobj
+2839 0 obj
+<<
+/Type /Page
+/Contents 2840 0 R
+/Resources 2838 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2841 0 obj
+<<
+/D [2839 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1542 0 obj
+<<
+/D [2839 0 R /XYZ 153.694 363.587 null]
+>>
+endobj
+2838 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2845 0 obj
+<<
+/Length 2002
+/Filter /FlateDecode
+>>
+stream
+xÚµYÝ£F߿ŠKkÝ44÷t‰”DÉc2Ò”=) ´Çhøp
+Óßø8Ü ‹¾Eôû³¢ØM¸ã}qâ£8ñ-â ï·ÅÁׯ3¾BèÞÝ"ßF‘ÒÚ bIþöŸµVNÒTyõð¯õ&Pžó«uuF›6Mª
+}º¡å!Š‚×Q¤§ãžÅ„þn#Ý—3!uèjߟJÈ*¢¶Ø8¯h z|=%Sæ;ëèìà£ö%©4¯¯‘HE¡«$ÇlfÒ"iLv…Æ~,Ý(Sz¨q}è
+w¡?*á†}ùuKÈž³¯g5uûqÙRèùä$„
+jšèO"Í“‚fÒ¤Åci!7ÊX;Ÿ<åùðãÓ*š%´cþÓu“+6®
+ÛgYš J5(2^ñ©²^äFqHÊùÕ Ã×P"øÔX±rx ò ήÐ)X”« ¨LC Gf·îòδû$5ŒYSïi.L{(r ZÞ.BX« V®Ø„ÇB];Ó2C÷­Æp
+-R ëcèëÚ€Ž8@‡¦×£æÚZŸ2L“J@šäï&'ÆÜ d>ˆ[³þ¢Ÿ–®Öܪ<N\ S
+¶¯à/ëS,’½0åQRœv¢W ýIÙ¹„©­Kk³>ù© ?Å 6!ŒÉ¤¸›µd?=mVµ®º(çPOöÕÕØ­-¨ŒÚ©ÞQÕÈQ^+¬šÑµ¬m¯£¿ugNá /ôQ‡Š–èú};S2ÀÙÜbÑ:;bòTë |zèŽî\ΕDc"ßš'Dî×àT šïlñ`›µÂ¾ími`»x9!Ä­ÇD<“[KuCšZÊsjæ žç¢§ÍY¹„ÐÒÂÉÐÊŽ$iwH
+úŠ`²ÉÞigíi…ü¢‚>)ɦé}è, žN·Ású“=™ñ„+ØÑm²úp_˜MïØb¿ØJ(>ö@>UØîR0=¶CÉžÔÄiic0ãIKyW÷m6Ã}ùvyùs¼È¥å˜W¾}5E8üóU=Ë–I²ËØš¢5óìa¾’6
+endstream
+endobj
+2844 0 obj
+<<
+/Type /Page
+/Contents 2845 0 R
+/Resources 2843 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2846 0 obj
+<<
+/D [2844 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2843 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2849 0 obj
+<<
+/Length 1558
+/Filter /FlateDecode
+>>
+stream
+xÚ½XKÛ6¾ï¯Ð¥ˆ ¬¾$‘è%Ðí¡’rh{ÐÊ´%D– IÎî"ÈïCÉ•7Òv“‹EÒÔ<Éï› 6 Þ_Qÿ|{sõú–ALt"Tp³˜ŒHñ ŽÂEܬ‚¿CÎu¼ø÷æ×ï“":Ž¥ÝÌ¢•
+–J%8è¥Drq0ïãÛ7YÞ5Û4kêQÉ`4Ãcg ¡Ü‰e‹‰­[<"*¡[ú§¹ï®KÁã0[ð$Ì{|Æ¥®¶Ï$lÁ…»Üt¹ipRt¯Z¥¸ ­r+uƒKiÖ_\…ç™çië¦!‹¥qøi¡xÿÿÊ¿ZZ3bWë#~æãc'™ J+t²'A–àáíbimÉÒý‚…N,öº`˜6‡5ÔUù€£,mM‹CCu¶¯«?;7ýú¶ØäÖà#½ øˆ£.Ù6ç~øÁå‰c§¼CR0¢™:uÈ…z<9O„EÆ‚ÊN¥ØðKþUeÞ‡;LÔãéWç¦`—ô§È”Ŷ¨ÒÎɱÉK;í7½8ܹÈ×m[ÜeÑ-¸*
+íáI¯ÚmÍRÄ(¼kŠƒH?hLëe×볿²ÚéXùé]Ñå$œä©U𥨠ïÿ^=v–ŽÜ‚HÁÊÌY7sI„)ž&¯C‚‹,Üw]QmfäYsÂÙ1Áwçõ‰ÌÄ1ÀÿRQ¡9»2Íð€
+{@›9§-ÖDšñÝã%$Iè€Ãñ÷ø‹$â,Í&-É(ªJM¤b
+‹!çÆ‚›¤ /XâøER-.Wu‡ƒ¥éàÞ¨JN-$5µŸZNv[‘“-9YH°NŽ#uЋüçFÈüvè©Ð­®ÇùBGçn%ŠÐD¢[€Y€ Î£¹<
+*á}O¾ƒHÿßÎG” ÃF“þ°s"é˜Æùã È…–öy`§õÌOê;Ì";"wÖ“;J"7±)Þ7~Ò—lˆŽ.€µ h«WÝsê) .ñSϦ–Sƒ 8Ê
+n艃ÍEûÂÂ…VñS_XøâÈߊQ®p“Ü3%À-z6Sº9ƒ&_†&ß´;H¥©æ`x2ƒu@©ƒ9Ä£¦“åo7M½ßÍqPÏqйg§
+endstream
+endobj
+2848 0 obj
+<<
+/Type /Page
+/Contents 2849 0 R
+/Resources 2847 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2850 0 obj
+<<
+/D [2848 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2847 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2853 0 obj
+<<
+/Length 1645
+/Filter /FlateDecode
+>>
+stream
+xÚµYKoÛ8¾çW(•šå›ÔmQ`St]{h{e:jK^‰nZýï;|È–§‘’æb>$ç¿ÑŒqr“àäíŽí›ÅÕëëŒ'eŠéd±NH šH¡e"Y¬’)eŒÌ>/þ~}MO4ʤäîe¦Ë4Hòo}"ŒÿóæÏbS}³«º2„%gâçqÉœ`”‰ì(ž^OÊ4ë‹7Ûö²Øøj«bÙ8­·ÆFåÞßìɱU¾›„„C².Æq*. % ™uBºWŽ{§EZœ40ŒÝ÷o¯’¹ÆˆPûÂ~”Î1¢¿(”É’ t¡Òë‚0^,Iˆ`H,‘QÄàÚÐgš¦æå×Õ©™ÍÍRSõ¡šQ•ZÓ˜IWa>MUWó¸5öJ;Ýc÷½W€°¾qw*Á„4;ßÝAª°Í–_``˜"ÉÔ¹”]^4uP®n¢®…-û˜
+gXò™Íæœeé‡Ö<
+çe˜Þ…ÒÚ¦¬nÆbᚠͱœqô­þrð=<MpAYX]Ú–3zÿ é+7ÊÒåÁºŽJ˪5 ¯Ø “¶þâ-U…á2/ÜðKx«GÈ‚Vý5eµ?D9
+RˆÉ°+³Ž[9&t;ý8¹Ü òs
+méq{Â^€Ëß®3~A¦l–=G*8Ñ‘#ÉEµGR$Þ)Œ‘v´ë¼má}^Ètû½)‹y[äUåODFiC¿£Míis&ó°ô‘œ '…„`çúŒåÌS „ès!e‚nuÄ)S¥n Ì_
+ÊÓwÀ/Óa8³åO#-ÕD¾<ŽÎÿ:“R~Âîn€ÆœÒƒµÛ0µœÍ"Ïm0ßZ@KÒ°€;r{Ä¡PŽ0|‰ÝAÓ»šcFK¤‰:åB“–éÂæÖžå
+¤Ùù£Á7 ¼´çMYUîäü\½/å¡Ù9¿9lm¹tB¿[3w7ï[yÃÃ’²»'Un˺ʷa©<=—ã€èÝúrH’ïÈF71¬ëfgEº*Û}nÃ.áq[‡!êy»
+¦ØLHöž
+$ñ²Z¶û)˜ä3cR¿³®v;ž5>,®-|]ö,5EýlÜ>åºÈá8CU§;\»oWýïy¤9’Fêæô;–RZköö¶ž`I¦h3IMc¦¸’¤Ï¥Éº>4¿(‰Þ£ÿ;áHþlYŽ4£÷Td;Sop5¼aÑý‚Sý‚ƒû”oºJZ:w L†$Lr8s8u^…ñ)Ùᶓnáã8–øâ6UmS#UI&Ï‘*]ôí#°DVŸIyuOŽ› Ê"2VF
+€ƒƒpÈyUÌyñÉ^øhœ6F•iÃ蔆tÞlLnw&ÏíH—iá;öS5Õ¥j¸Ÿ Ï/ã"ÃD—0‚(îêÅ]ú Rî¤ÏL§×eÓzÝÂsps,ïÒ®  o
+endstream
+endobj
+2852 0 obj
+<<
+/Type /Page
+/Contents 2853 0 R
+/Resources 2851 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2854 0 obj
+<<
+/D [2852 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2851 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2857 0 obj
+<<
+/Length 1508
+/Filter /FlateDecode
+>>
+stream
+xÚµYÛnã6}ÏW•5+^$‘(
+,vÛ.Pt_Ú
+tÙÄ5òï!iEvœDr²/Öh(ž¹ž±oéÞç³À]?^œýøUž"*b‘w±ð( ‚Æz4ä$R‹˜0zkïÒ¯êÙœsêßteÚvI[T%*˜ŸÎ˜ôó¤NÒV»gÖI¦­Êâیž»¿Fycå6׳«‹ßÏÐh@"¯^z;ñÏÏèåCs<dDѾsEyÓµºLž ò™¹’$ˆG8ÝAÂÅÒur­Wc}\ÉØ>ÂMbÒú5Yê†ÌæBpÿKÕ´ˆy
+¯;S(;S˜Apâ"wv îT”Ò¤´B…³¾á Q¿.,,Æ
+·N6pp»j«èH õ—'mIbÙ èÊÅ/:]%µþSû –ê¹}4gQHPÍ)%*” P’Ò¬÷u¡Ë 6I-f¨˜K33&J0˜ÇIŒX8ñ(t«@…'ÁJ$ŒË’„‘ûæ)ô±Ô·iµ^ƒ!¼ûëã‡47ë¸NÒí»cÖÄÞªÞ\tÌ×$š­nÚE²jôQx7å>Ÿ,àMHš¦X–k]¶¨*“Éѱ¤Ö†¾»ãÿº‘Rßµe²†í²Ð¿Cí¢˜â„çD±(»5
+°hxI“6­2ýàßÏ(þ÷Á¸ y,B[wz²_q0:9°…ê
+ 5Sðéظ]S°Ù1lnŠÓÞÂæºÊÝç1/ïÚ¦Õ7G­9„Ck|\$zÚîŒÅ„ Àë¬*õË^Ë>çõ´M½\Œî÷ªã£+”`¬¶X‘Ù›Gœ¿`„í‚è£Ç; •
+BÛ/Å{¨ímu°"‚†ÏáæµÖ§ òàEÕÕ§à>›‰5ÈÅ)¨Œ›¶:¾bY; ¶‚äŽ*ý=“Ì×?ô|/x¼§UW¢
+µaB ÂëBdi1(ÖUí4mõÕ
+dßH}PªJËpP^ëÄø â­!C˜ µ†mR!ûTˆÀOÜLTãÒ^ã„M;˜beV”Kgoa¯;û,Ì
+endstream
+endobj
+2856 0 obj
+<<
+/Type /Page
+/Contents 2857 0 R
+/Resources 2855 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2858 0 obj
+<<
+/D [2856 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2855 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2861 0 obj
+<<
+/Length 2494
+/Filter /FlateDecode
+>>
+stream
+xÚµYKãƾï¯ÐÅ0Œhöƒl2¹ĆÄœöàõC¶FÌJ¤BR;31ö¿§ª«š"9Ò¬$'‘ý`u×ëëúZÑâq-~|ñóýý»ï~Èô" 3£ÒÅýz!tšX.’Ø„RÅ‹ûrñk u$—¿Ýÿí»„Ћ4Ì’DãdeB•¥ ÉÍú(”ÎËÏy]X|ýçûïëÃnó²ï°õ}í:[»ÍŸ¿!Y“uW,k%¢0‹³a]uÙº°X±©Ÿû®·û¯‹Oñú”xiÂ,UcñvÛÙ“byê|×ñu».›Ú^c”ä²]¯«kölN i'™ú§ Áóê&ðŒ-4ùõ—ß-V©S%a]XOÊ™öÕnßíóÂÞ"9èÏdÚç7d‚†Ù"e‚
+ž2á$Š…ˆU˜€­âT„1̺ßÔËTöÛÏK™v¹R* l]4‡;zÛÚ;M×4
+m«¢ê©·iù“çq¯Û]¸\i?7í.ßn_h¤ßT}ñ¯Cdzm]r_¿±Ôµ}i«âŽ6S'k“dàCMÚ<zÞæš­9“¢eùõg#¡FR¥QgñT$šýï‡m_=5mù— ütßߡL ˆ‘Sq^ÿ¼è+6ºî¼ulÇ>ØåEÛðÔ‡å
+æ5ý†š–ußØ‘Ò5ùì×Ðsß6î“Âv#˾¶æ«À
+»ï=Xåüõ>oÝGqЬy„—8Ô¥mW®Š°K“ÜÑ€gK¢&g ìˆ×.ZÔÁôIµ’⎽Q®VõãŸáÛLÁ:hî'§èg÷Û"6§ò¶Eê
+9]ñÊe¤€R*Lµ™ŠsŠ£Å︧
+2|;à©’úœ§àYò¡‚^ÖgíÏ,óa±i­û"œ!»?-W±RÁÇ(Žüû©®úŠ}MÚ[Ì›O ’DàŽ5x·ÿ>ä[–ØÜ`t¥ÓÐ@i?ÙæÛðrÞäZ_03»Æ+œ{=Ö´wÊPèàày9h‘ž›TË0‚C•ö
+.j©:Ó´ÁºÙnìxÄ
+
+;ô<L©¦Ÿðåš$×od¸08·?᪘,‘uÍ2éÿërBÖÅŒU?üoÈz2‹Üâu(Õÿ0Y7Ð5õ–Úo³ueSQC y"%Gl= åJxÂÃþÊCi<_ùö‹G­ Å̼„¿P—bU?Ü=RWÍÛ?sM{KæžÃÿQ ó!WÕï"lr¦'.“qc%ôšæ0³‚·'üÔ WÊ®cßÚ˜‹}@/~‰ÓŠÄsESËá2àXK#òG˜+ÉUðžoTplà)XÜw•ãc5pxŒ U`YòËv;¢ZeÉ’k¬óÖïæ¸Â yú
+A.E˜&SVì6ðÐ<_š'" E2•D!±D Ôºúð{ Ž=øT•ýÍGÁOkú„¬ó­K'ŽHoAµpsxÜPÓÓÒ· Íßå=-LM*a¢À>@/Î18zBù{ w·–ÂñrÄ]¶CËUGðäasdØèZ¡](Gfe˜Úõ;£ÞAè(C(R`pÌt9À°À¿§¿H".žác8Íè‚­í‰ ÷ç4™¡2ÆýBÌ«Èí¾*ßUuµ«þc»áoþßúøçšôÈ]U:/ùQ<Àv>ßÑ Ôq±*‘‚RFøäEŽàøù õnÝý°ÄË©üÓždVDä» JN‘&ÔžÁq©É悬|pœº(PÔ±ÞçmþØæ{TpµÆ‹Ä
+endstream
+endobj
+2860 0 obj
+<<
+/Type /Page
+/Contents 2861 0 R
+/Resources 2859 0 R
+/MediaBox [0 0 612 792]
+/Parent 2842 0 R
+>>
+endobj
+2862 0 obj
+<<
+/D [2860 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2859 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2865 0 obj
+<<
+/Length 1543
+/Filter /FlateDecode
+>>
+stream
+xÚÅX[œ6~ß_TEe¤ß
+1
+ÃA!>§ˆŠp¬p_¦OžÕc¿=uŒÌÓÓ¥r¬d‰z9t—#s”ÇæEoêÃ"á|žðl—d…’“Øÿ6YÓªIž;‘gLðçH.»QBwÕ×ß7[Nxï{)ï»%§ÌÓšÈÝ UÞצ¦æ$•Ò=캓Þõ¸Äšpy ²ÂX3,”÷]ÛÉz‰Z±\­œ*•e¢h¥Þr­*Æä­c5¿¬r@Šç¥¹Ì[¹ u)ù1Ç6Ï›£ZºâØî¿_íL ÚeKBÈ/wµÇù}‹ú«›d_·KÚ$ fcsT׺V.v•gâÎÓt<sJeTèod-Ád*æi‹vl¢¶ÍîÊB–Çlkã¨\ Žykœ³ø¯³c SOžÈ‡§ç40µÃﯜmÀ뙜Tœ·QsV*˜(_YN„Z$v0§È_™ç#¦Þ ðïMÈ]ùë?ºr³¥Øwe¹Án\íKµÁ“‰YÌ£Q»oì^°m¶Œq÷m|¤1«ëªß‘uæY5½t+¶›Î3»1»†!Án"ëÍVU&Yygƒ?ö Ÿ¸EC,ÀÆ­ª)”º‡TZ³`r´&`y«F̆%£P©Óó$kë<RQø¦Ã“ sù)À¤ E¡?0a†W¹:Ù%ÎÈ\~dýo—¤ýL_‰×Œý”¦Çø«åJŠ2tnæÿ„¦Ã‚™Mg¬„VèI0nïšj_ÏAOJ@ ‚èXØX¨*ýST¡Uàakï.+·Æ³ÚÀÑh€îŸUÙî™
+--°ø¡Åj‘Ycç£ï»4êÌ(ëNõ´×3@…„ÂK‘†.
+×_ÒµêOøË"|Ë.‡ºÞïkЫ[÷Ù«îÃ/øñqÁÍ{³MXL 8þ_
+U>_¨—ä
+ËÀ nð§bk€U‚
+¼ðÁE7ÕÉÞ B«=$É¡cký3‚1ýÑƪö8\1ò€ù@f(Äx@WbÐ5ÐèJʶÀÂzTöï“ZazÛÀv@W3;¤Uk‡EÔÅJDj°Im i*`øºP ´Ä{
+¨ªMœPârK@SM°Žm‚‚Å”í ™¤äˆ¯±Ú¯~äXf§3ËBr+ó%¥7iÖš/AFœÝæßÌ&uÍ9ElËB•`¡VÀ£ü¬_§na‹ž= ¶«ê"x­bÇÜÃF
+߀"ߣÏúö¤0gM
+7fè^†ÝÅ=»µŒAz^O uU~”QÞƒX7ÕV6=Mák9PÅíˆ%öH=–¥ðé"gdÉ!«9£!*K#§ÿå$ξï?RϘ^½TD˜ D ."PZ^ŠÍþá›·7Wÿ/=Ã
+endstream
+endobj
+2864 0 obj
+<<
+/Type /Page
+/Contents 2865 0 R
+/Resources 2863 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+>>
+endobj
+2866 0 obj
+<<
+/D [2864 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2863 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2870 0 obj
+<<
+/Length 1343
+/Filter /FlateDecode
+>>
+stream
+xÚ½XËnã6Ýç+ƒÊ@Íßä¢@1Eg€.Šbj ‹L‰~ –dHò$áï%)Ë–ã$’ítEŠï¹ç—:tÌ‚(ør5í§ÉÍÇÏšiIU0™˜q$9 —ˆPLÒà.$ŒóÑýäŸ1fBZf_&iE!’{ë¦lijÛüýé×Ü<Ö¿ŒÆœðpëçvpÆÍÜ1ŽæºÅ§p°B\èCœÜ<$E–ÅyÚÀ%s3+WU盧àšNµp²­éº^—¦K®œÅIY|ÀS½Ísû&}8}‘l.ûºµx"ê§ÛbšÄN¨¼0«=ìN?Ð4~ ›À§p©DT«C\OkSvˆk9‰×Ä8Æ#ýxšee†Ð —ÑH‹Ü aÁzîòÅüª;X\Vøna‡T¾èYù€àbצª‡¨£ú
+,ùõô9ÿˆ¹/yû%
+endstream
+endobj
+2869 0 obj
+<<
+/Type /Page
+/Contents 2870 0 R
+/Resources 2868 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+>>
+endobj
+2871 0 obj
+<<
+/D [2869 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2868 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2875 0 obj
+<<
+/Length 1756
+/Filter /FlateDecode
+>>
+stream
+xÚ­XKoã6¾çWøR@bU|èÁË]´[è¥ ÐÃÔX’KI›Åþ÷ÎphÅv”DR L Éyq8óq‚Õn¬>]Ã?üühe𓆿ºúpsõãÏŒ‰•òUÄ£ÕÍvÅB᳘­¢0ö¹W7ùê³÷… ùLJ÷Y±4ySëõ×›_ÖÀA0|•XlÅ9óY>ñª€×õzÃUâÝe¶æÊ+à3‰½4Ï[7ª×<ñ飯³¦Æe)oûNçD5`·Vi§M™îé«kÜqÔqÌìg6;}¥”~És}íVämó0Ñttc¤€• }ž§´õ¼¿úêÐâF*l UZÖDÊÐEcÖÌËinÛ0·+ë­¨ÒÌ4þz#¥ò~ipù=úJá6׸Jyåv‰+˜ð•`gú£'~ë÷]yߘü#hG6ÍaøIpîÒnÙÃ/](„/¸;4ëJ2ŒÊùTh¥%#aàbçtcä õ¾ì
+"¦Dhõß½®3·©ÙÒ$Æ8 ªÆ8J{Híj vÍõwÝ^;B¡k'‡t·0¼´[ê¶Ó©Õ6ñŒ†Omº3Ó’A¤¡
+ ª@S¥½=6ªNw Ëœ ÑiES葦w"ìmƒåtxá(ÔˆS5b »´$P¾dî¬H 1ó2rå !aþ4óL¹}÷ã(<nôI[ÔÉW±HpņA’Á
+,‚C›àˆ–C ù¤€Ö×9Æ%M—náiݺv“ ýçªWUÚî'ÙBW3Ò±(†L7Ñé:o‰f#++ýÝ£Z®”
+wb `CX¾]Oã!]/}„ ™hNAå|Z *· ¡¬¿:ÐÇ†Ñ åöíé*dÌðÆÝ–¯tkÆË#“»+n»múRëörªåYjß uCïø“L`û~íÂ^×'ªt¦×'澈ۥ‚Ž\AÒò¥p qu¶ç§›«vx§´
+endstream
+endobj
+2874 0 obj
+<<
+/Type /Page
+/Contents 2875 0 R
+/Resources 2873 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+/Annots [ 2872 0 R ]
+>>
+endobj
+2872 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [454.643 188.597 479.17 199.445]
+/A << /S /GoTo /D (subsection.15.10) >>
+>>
+endobj
+2876 0 obj
+<<
+/D [2874 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1546 0 obj
+<<
+/D [2874 0 R /XYZ 153.694 247.031 null]
+>>
+endobj
+1550 0 obj
+<<
+/D [2874 0 R /XYZ 153.694 227.396 null]
+>>
+endobj
+2873 0 obj
+<<
+/Font << /F113 1728 0 R /F19 1711 0 R /F94 1713 0 R /F114 1729 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2879 0 obj
+<<
+/Length 1811
+/Filter /FlateDecode
+>>
+stream
+xÚµËnã6ðž¯ð¥€ ¬µ’Hꢋ`îv{è¡õ­ÛcÑ–= IÞ$-öß;Ã:¶£l¤´½Xäœ÷ gè`±[‹W߯¯Þ~Èä"ö³D¤‹õvJå'*ZÄ*ñ#¡ë|ñ»©H-ÿXÿüöCÊEêgq,qs”øY*
+?SÙ‘‰x*÷'dy¸×Ý+é§GúÉké›]×öÿZþôÕô›ü¿á {™ƒ¿ë¦otmf`Áfùa fàü§õõS ‘N;Si ¯nÊfw©„ª7#§žQ
+¾Ž"ç—È£©öe²4wm—ÁÞ™ôDP·´Õ ;Jf‹ hD1Ò
+àülnÓÕeã0Nt#B…~]
+…ßH’PÅ2J¼‡}ašeèé¡l›åJÄ¡W—;»4à4ðnŽgh­1Ó÷º{X¦‘ç/WJ$Þº0´³íÊ]Ù芶²Ø¸0€ún u‚>ô
+½ŒRïËò‘ØËät°lè«ÇÅ ãKùdèÇ1 ü‚
+Àgî5*i¨h}C#ë¸8°–_õÝ4d
+hÐ63.U–\Š&pŧ$–ÎÑŽB€‹ÁG‚ƒßÑàœq¤/½ÏP­z‚·[?¾ÃM.a¡Û®­C »Ç†µPà ÜPðà #Npœ¤o+™pÙGG .”ŸÔ
+^µÍ]D*r D£c
+Œ¿óßœ‰"
+2­oP‡‚=ÄH,2ォÓ¬kúÜuz¿'T9A*{1#Æ»oö“Í$Æ󔺔@Æ VBœåeß„j_vú¦bÃR®0}è oè[ë[ëÃý9¸¢øloiªyy(ÚîpcFåÄMI\q÷„#Î|¿\AltXV¬&†¬~DîªÉŸ‘%Å6ÃäCëLø-`êýÀ‡S®=pˆaº×ÞÇêÈaXŸã9ÚS˜> ù40&PI•?½ŽhB¸FPM‡lÊâ¨Äc"­8RuvUº
+endstream
+endobj
+2878 0 obj
+<<
+/Type /Page
+/Contents 2879 0 R
+/Resources 2877 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+>>
+endobj
+2880 0 obj
+<<
+/D [2878 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2877 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2883 0 obj
+<<
+/Length 1723
+/Filter /FlateDecode
+>>
+stream
+xÚµYKÛ6¾ï¯Ð¥¨ ÄŒ¨7¢ØH‚-
+´>hz %j%D¯JòzÝ ÿ½C%ËZy-5éÅ"¥á çÉohËx0,ãÃ¥Ÿoww¯ßSf0Â|Û7v‰A=‡øÌ5|/ ¶ã»ØøÃü¥KEsÌZñj³uÇì6vhžêÍ¢~›
+D;0Óª‰qÊ÷Š°’‹帠wÍ|CÍS“E8«J½ quØçb›Šì!•‹;½&+a• ›?w?¾~/7LXà„R…m@˜k[êÀ3@ lÏ ”R×A]ß•´N@‚-ÕGê¸ûêé³D BÔ¼áE+§ÈùÓ7sâ4-µóØ /œ“çú$¤ÎX^–üöö~ßTŸDy“ÍJЫ¦ØœÏ'¶Œ%<äÕžçr®íädæÒäzšJ¥gEkvѾ5'Ú÷ˆ†‰>”és³rôÚ©ºLŽäž=ÔXÃÛ¾m¾ÖØÄYæØkÁŸŠ¬Ô“8+Dù
+¹c<1Õ*ùî2ù<~äe$ÆÒ‰'Š5’¼e’¤ï7[ÏöÌ®‹ûü,4"Y-úXL²|Þá°ÿ w³Fó`qÜGU}šË4ÐnEŒ†ËäeIy(ûSŠ2Jy#gIUvßËAq_*‡÷ž“õ{SólM±¯›Fµ¶ªÉøAî×Dq@
+ŠE¢Åt¢¨UðŠ§š—1O:Ñô;Èo ªQÕv«·—"oÅŠS"XX–ž'ãš½»ËspM¾Þ—äÛí(ŠHà/4umÍ#‘𨫚y,,%2)×° ¿r:²ÿ7K’Cž¯ÙOh-Ë’+5l>GBzö›¼@ËÀ%¤@at@Î8ÆqŒ]‹~H$Ze=Ô %4hšY‹ßUÄæ¢m_á<+Ólø6ëpÎ5 Ò}#ø'½º(DœñNä'üžTy0›™Ç¬|Ðœ:²ÙºžcîRš
+ÉV"0ªócÃëß饙æ%M>ë0æM5s)DRŠYçØæ¸æx£Žg‚iUó©ÅÏhÄ愳CÙö
+ºÃ3¹R¾à1Õ*á¶V Eœ}´?£ò_u›cé:7ÐQ䞦sͺÎ
+§ÚŒ¸¾ö]ÊÕ6(ÅØ“CÛ”!wèpŒ¡G¡ÿBó¶å·ú‹WŒclÖ^GénÝT;«:@
+•RâöîxwKŠçêú—R~G•0+(ÔÇ-Ŷ;”:LtNØÊäºêaäWT䨘ò² Dʨ‚ø‹]v¾Œ ºPA·ÁiÕ¾ Zï›9ÄcZµ¬œ\ŒA¾æúŽd«äI휓úæÆ€ZB{Ù†ºc· P`Ûw¡³ô:©ÙVuß÷¸U>ËJ¥ÝúCÚ]¦ìU||¡ãÙ†Þ2kUŠNk6¼°1š7°Œ 7kÇf{Âfí%ùW R°L~ï˜ÉMÔ¹Oü¢Ãu¢ïÆpx!(®b˼7*Ègð¾Â—ÌZ|W6?Ÿ^lvÚêá<–½…Ѩï+°&½ÏÀk
+Ù%<g‡†…iV5á›*™Œì§^sÝ´´
+endstream
+endobj
+2882 0 obj
+<<
+/Type /Page
+/Contents 2883 0 R
+/Resources 2881 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+>>
+endobj
+2884 0 obj
+<<
+/D [2882 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2881 0 obj
+<<
+/Font << /F19 1711 0 R /F94 1713 0 R /F114 1729 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2887 0 obj
+<<
+/Length 2433
+/Filter /FlateDecode
+>>
+stream
+xÚµÙŽãÆñ}¿BÀØ1XqØ›äabdÇN¿xØÀzP5bV65‡ûï©êjJ$‡#QZä©v×Õu3Ý¢ÑOï"?þ8ywsgä(Éh²1©B­ø(V:äB&óѧ€+ï?Oþusǘ%¡‰c‰‡¹M"
+·›¬Þ;o2 o:HÁ±7I£$a’ãÖöö”fÊ|hšÿ†‹?Ï@GQ*¡Á2“&ª/àxðn-8¨&Î^d@Æ×"?‡> ï9‘ø¼‘¨hJ–¼NT\,„4aZ¬.+C¡l°¡\¯ÒêÐã¡Ý¡T"ï[b"ÀMä“Œtsï'î8wÇ ƒ .ÊÅu\%}®Ãº;©qQÕ@j€‘=j€Ìö
+èÔ¹yfóû ÕvqMpØ*‹´ØUêk_áz´]eOÕ.õ½žѱoÉ@)3jáPaŽG±žžy ²EÙÏ—Q]¾ ð+æßÈ—¡ª¯åBún5§9}ñ§Ó-¼ žÊá•3zˆè{¢4û¾Î (£™¿Þ©yU·¹UïwïO÷8S˜2Ä|ŸR$†È‰‚bAž€Èä´UWÛ´²Þoî”î1¦¢!gja›§kF±nßq=‡(øÙÉðÓÝì3˜î
+Fݯëॶ»Êç­@™x£¹é0–qQt„L”ïPö×H@y8¨TëŽ9†üÓñY"Æà¬[wæ…ï©z».ü“9{,Ê/U¶Z ëgB‰B¼¨‰rÎd–îœnÄ<X®Ç3§%¾ãK¤G"& Ís§ï0§¤sb°r=QÓršWeZ>Ó Ý’’,˜\',ðm±z¨{˜°$…… ˜Ût……Íú}?kÌtº~¨w±bû®Á„Á¹bêÞq×—,ëÖ%ˆÎ;"ßØò7œýâˆV¿-s°x:íÝ|Ê7óü!ŸƒCsZ ;ä ñ5Rßsv«º¿ióéÊßuÆØËÔë‹A3Œ°†é
+~Êt™$n¶ LO¡5:Z—\0û‰õ轋{DÌãk§?/¶E HñAçJ™YχóUàþÝ“ñÔÌ£À§ Ë„ºþóð÷̱Yu$09RkÈ°D(tµ&}8EB2¦„icùXóñ´Û«„ø6îP²2¸»NDÐÎúLX©PKO\ö”b}¨âG%È@%¨t˜•ß!Å„ ëÂcâã‘Cp¼X-‰'0&qÒFòûö‚´Ž &²# Fâù dg˜xÚ)žààù“<Wm`S_C*)ÜàŸ K;ÎmÈ®Ûõ¯,}ˆöƒB<‡2Z'q;«ýŒÀÔ„W_¶ÔAÚ»¡ë¸ï®œ‡và\Læu¢•ìyºÎ}V>\Ó´2†,Mk0ëdK‹ý}Àâš^Õ€ºžC]ŸV'guMæ…›ùÂ.õ?@²Ø/8ö¨”÷äsb/5QKM4½3\îzgØš"éÖ/šR^j'ªÃd_—éKê²N™ô‰>ãwC ì¤gO[Àç~×áòiž-pœYÌÄ!Js4:
+·WŒšs:ðrÅ¿žÓ>6›ã‘EÃäÚ‘¤û=ñ°­êñ „ìæ5Æü,”ü[P^ˆS|ÎÒ!X÷VÂäåXó§ÎóXU—#­q"ò30Æ߀±­ÇøfðRIˆT@“ÄK˜ Þºóaòî1V¡¡
+endstream
+endobj
+2886 0 obj
+<<
+/Type /Page
+/Contents 2887 0 R
+/Resources 2885 0 R
+/MediaBox [0 0 612 792]
+/Parent 2867 0 R
+>>
+endobj
+2888 0 obj
+<<
+/D [2886 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1554 0 obj
+<<
+/D [2886 0 R /XYZ 153.694 466.202 null]
+>>
+endobj
+1558 0 obj
+<<
+/D [2886 0 R /XYZ 153.694 466.202 null]
+>>
+endobj
+1562 0 obj
+<<
+/D [2886 0 R /XYZ 153.694 395.218 null]
+>>
+endobj
+1566 0 obj
+<<
+/D [2886 0 R /XYZ 153.694 395.218 null]
+>>
+endobj
+2885 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R /F53 2210 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2891 0 obj
+<<
+/Length 2182
+/Filter /FlateDecode
+>>
+stream
+xÚµYKs㸾ϯP•k+tÊâä͵•Ì&9ä°ãÛÌlEAc>’²­¸ôßÓ)Q¦m‘ž½ˆ tÝè'äÍÖ3oöÛ'Ï>½ûôùK$g)ÎîV3&}Wù|øÊåŸÝ-gß0uýãî_Ÿ¿0&g¡4‹C×" dV}gBþM'Y\é/YÜ|Mÿ§qêö)M·m¢Óã9·tæÌs#?êx†áùÐñ¼„iØ1>ÀôáDÒ‡1¢rï\ŸZžé(ýrö¦~ŸˆggS/žn
+ý˜”yË3]=ÿ2âäÅ3ÀBqÊì6]튥^¥…^>ŸðºÅ«[žÃœ-µsÎrˆ³P®ˆÂSÎúi "Æ«FW†WYƃœìîsNþ'¸!ëɘÔEœÃ¡úÜw†E4xŠ%-¤i´Œ ´RߧÛAL–Ï9¦à2ékcÅ(ôÕû‡zsT„߃]rêÌõ¸ñr6cŠ¹ð’sC¾æ°çŸèJªu%åƒçdY‰¾ó˜kšJJpIå,õ ¼‡YK±À3Ac‰þn"èúeÏ#ÏUAØgoÎ|Ó‹,¯ ¼À• ’…› Px;÷ ä—cÒÚ‡"=7TÑK(ß.â3WÈs æœÀg§ R¡ËÕ§øÇ¥hBðïL/yœTeMv©‹ŒJÇ ZÙ†Þ–2„Ó¥µÆùõŒ×d¼
+øÙ…±J 'yäÄø!ÒëLÓØ°¥¯Í“ N‚í4¢ VÛe÷™&
+,!ˆ„¯ÌòcÎT_¤ÿÝélOé“»rš¾¬ì$ÀÈoh¸Çºéæӊ觴KWEœÑÇ%뙪JU½ ‚px.•”®'ú‡GuF¥Oí&Îe_Xßš¤©bv5t~ O¡¦uèÄÌù\Vôšë¸ÞU–ß"®ìƶ"ÂÕ48تô¹óut#² ‹mzø=u.®à.ÄJ#íQÀzBda‘s`=Š¶nz7îv°8\¡DÈ”ÀËa¿TrL>MÁnõq4P³0B³¨âä^7—"v?×q‡‰ùÀ!¤žÔñ°ÔK¡I¹L†=Jäóžƒf%l[àa4G¿$wˆ‹µ¦itoW8­ÉBøõм­^€FÄ ¬i6审—¦Ü
+I³‘Ñ|²¡WQè¼~èu'´Y/Ê··`r£™ˆ"¨KÄ«¥Ñ¥ÍƒÚ„cSà„ô{ÍÜŸAñ¢Ï¢tœ¾%ôHNE Í'ÛÈÉ$OA¾”{µº¤)È!½“¾›TO3ÅM£ðžÑ¼Š4®GÀMÜÎv×Ô8’èŽ8A®‚o^cp‘Þ÷,]ÇIN8IŽ¹«¡÷E¥ã{ãg¸ÖøN·›0Wqéü»¬r¨7L5¨8(0¹lƒ‡)„ÿØB'ÄYØÉm'¶ÖÛ’'r()ÌútùˆrÅ8½§%%Ž©êªz»¡ 2÷
+‹ª¼7Ÿ±R¡=GáqÙwÏ÷ÒuQV=þÃåÅ !ðHt"R¥óz—ŸÜr(Håù6Ó ÔIÀ™lï9ÿ°µˆ`+Çê† <be¡ z‰‰Ä¶Òi¹«-Áã ã«5ê")Iv(§ìê´y?CÍ2> ô¸I±@X¬c1HGx/ihÊѶ „Óbk¢6îkÀ”rû½¤Ï[(…,Ùͦä¼9ÒïcRnôÕ²b “žRhÕJXuöJVcçiÍ´z!'"dùžS”mÎLšñʧ¦»Áó^ÚÏí²,CC‘ Zÿº}ÛâÀZ¸‡6 :ð,P©lšÆ#³ŒÍaÙÍõ–.횺%†œ§5•)¬b ðò)Ç°È¢ OÁhÜZº\,2]·ú7³‘-œ»‘ÌLÇY}fS§NXÛ½ÇÈvb±áiD0×)Í浦 jQ{°Ôÿ~‹0 µ-§ ¤ êè«œ| `ÙôYŽR0™È3
+­IKN† ϲ0¶(!Q uÆ }ㄉGRºl[_tÚ{¿›Ìw}fº†¤“-‹¿Ø¾÷¤?Ç°]¼{ÜýÁ£)WÁÉæ¹+—_ oâ½3ðÆMfµ^+ÙB¯Ó"i¯a©lbôû_|¾±- ¼ >º¸b‡1HÄd$E”ov’¾†Êco&7[h_š2¾â‡Ãûq%—ÿû%äT\T›"2ËptÝ+”«@C/þÊ~‘ÿôÒ(Þæ?¹ƒÈÿŒ>'ÿ@£¾Òè¼Fó,ˆú@ÌÈ\¥,ªq}X†T½?JÞ¹7á*÷îÏ®¶¶”ÁþáÞ´Û#@ø!$ûˆwòXdë*³^?%zÛý?ÛQjïå ù—ÝÝ(&öÊÞàímÇöªõx)‡ÿSVƒÙ…ñÈ •8Ï/Ÿ‹óc‚ÉÇEÝ`bèÏG¦55vç5¡‹II· Õ+1&v†Óå|3ÇTw49µäog¹|tš“Þô4—Sž;?“÷0­‰Ã›^nŠØædi£ £´Ûíùûݧÿkƒ;
+endstream
+endobj
+2890 0 obj
+<<
+/Type /Page
+/Contents 2891 0 R
+/Resources 2889 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2892 0 obj
+<<
+/D [2890 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1570 0 obj
+<<
+/D [2890 0 R /XYZ 153.694 409.221 null]
+>>
+endobj
+1574 0 obj
+<<
+/D [2890 0 R /XYZ 153.694 237.061 null]
+>>
+endobj
+2889 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2896 0 obj
+<<
+/Length 1735
+/Filter /FlateDecode
+>>
+stream
+xÚµYKsœF¾ëWl•+[¥ó
+bgµD<6ÀZVdý÷tÏ4ì‚ëòEÌú5ó}ݽr× wñáÌ}éÉ<ÝES~üpöþâìÍïž'!‹”‹‹Í"Ì‹ÔBÉ€ù\..Ö‹OÎg‹¿Þ¿“&ýª·q³ürñç# (ZD ÇW(ÇeQhÔx Or¦"q™ƒÌ‹mZ/WœN'U‰ÃÐÉ—~èìëÆnÄÙ-ÎcüsG/'eÓ&N »Ðlµý6ÙW•†ÍÈiìÂZv¹(Ò&-éÝrcwðë‚k¢A¡áGãˆÇ<ñÈ áL}/.{¡x:ÂWÖÁÇ z²-«õÒsV•ÞeÖSk£ 6zcLHö˜ë©at…d~ØIœm\`£«s”é:&f ¢í9¸¹Ö®DΦ¤ ' ²»*Mì°Nâ¢hßlJûÜUån¹5ºÊîìRºÖöpÒM»ÒØg\¬i¡¨uÕ<’0æâÐ=Î÷)r[¨ÝVq{ºÜ¹…©:ÑuWwË;Ì
+G,
+xˆÂW‹„¿Xyž¡½ä¾ÙÑ„2©"°¥ƒB¡o“2ÏÁ©!0îSFV\uÚü1m>Xòcmé&Ï˵¾Ä±Îjmžßv =ÞÀÑ’ •Nð&ál“ŽZA’‡Vð—}~Åûó̲X)Å\ôù Ï÷zD‘zÛTY$ò7AŠIN7ýsäÒùŠ7BWµ®ß´°Ú×®¸á —ƺÒöíyµÇíÆ\H“×vžë¼¬ÒÿôúüÂà‘Ç\³žÁÏré3Þ å³@D}a׺!jÝØàóe0I%˜„Ë`„4Äļǘç-¨R,œ
+àêê†^&âåñ†–x9±òš™ÆôAš[z/è;Ã$(ÓÆØ yXʼn`µ—oRåéH½ÎÊ«8#ÕE Ê71mÍéúY8 $^ø$N‹r2RÃGHu@1q@ªp›Ôž@*ì[4F}˜ÂVÜnô`
+”<#Hž¸~Zƒ
+ TŒ䃊H²¬47e–•èñ-Dâ¼ ß°‡ÈPEª`à9â·ÆN:ž³/*÷‚õÞFþâ/Sò©u%.Ú"6+ýïÔ¤~™•DÈYRŠoª¸¨wF[Y#›èšóÆÔ+˜ê˦¥![~]ÚŠîÓ> :€?À'’YŒžÆ(s#SÁÆMQz ó¬ÜÑ(ºº%«¦¼©Gõ‘Œ>éNÓ7(]ì1—µFÔöïÍ [}dÐ˼iAžÅÃÒÿY<FLŠQÎÊxm¨žÂÄØ [/ æû>1qó+‚p’ìMJ&:­ê27Õ¿¢*{„“Å”]iw[‚Ûþºu]脼¾eèp½­vÏÑì±{`*ãpH=!'‘?÷™ô‚ÇÖl²f²1k—g`Œ‰2è)))Iác«ò«¸šj–pC¸²/DMÞÑa"½ætÂw¸Uîíävi¬o«;œ<‘©†7.ô™¯(óÕЋî0®p Ä”qC¤q?Â:;®÷˜Ýqr…mkEoÔ¥]¼M¡N-ìøPìÛ¹ÉO8H°°m™_Hnœ`J˜vÅ$ClãzK
+ã|GpX{ECW—qrr ÆœwyÊv)‰´ÓúîueVÛÕ¶nµcK‡BUý–¾m¶À•v¸ÁÔZ$X6‰@‘l¹Bµ8GK²ºl;ÏAÐF}Ђ~üHåÐQ2.éL­½‘¡ˆŽdPÕ˜Šìà:  ÏñÚ¾™¥7ö»ùØðÀ)àåžMˆ Óß¿ËîÍO/•lòl‘«ÆÜU6´ë}BžèØ^¶®`2o¡—ÂyWwÕÐËuŠ —î
+(ýýà8~z—y.`~ÄDÐeOŽt¹€ŠÛã6j16^ùPÌ>jí$?±;J”÷Ó«19¡•¼Ÿ!nb»˜ÄMÅÝ߯qbÍ~±9ÄHÍSòj†’ƒ'Á<%ßORÎSry’’hš’C»žéæõQ0MrOPóê¸ê™¨Ç;A9J´T?LÔ柠ír¬už¨OÔ·Ö›äϨ敘ִôî^º1)F¯±íÏ¢åJúò¹®b¼UQržß©9´‡Yÿ°!­(5ÍŠü§{ŠÿU'7º™Óž© äò0ã(ùÙ0+CÞG+üÈ¥ÿ|w½o~»8ûQà±r
+endstream
+endobj
+2895 0 obj
+<<
+/Type /Page
+/Contents 2896 0 R
+/Resources 2894 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2897 0 obj
+<<
+/D [2895 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2894 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2900 0 obj
+<<
+/Length 1358
+/Filter /FlateDecode
+>>
+stream
+xÚÍXß›8~ï_TU"ÒÅŃý¶×ÓµÒ=nWº‡½} Ä ¨ö év/Úÿýf°!d³@÷~<DÁØžÏ73ßÏÙ8žóégÿ?ܼyÿQH‡R"9÷›µC9#¡ œGÄgܹY9·.å„ú‹%¥>wIK½Z,ÁÝkuŸÇ FÝǬØ,în~ëŸü“þ=GÃÐ>^Ý”Ž 2 Ô½ =â æ,© ÌjtÿAYðùÃU­ãäk’žÕr¤#AŒ¢HѨ ‡Ó0AD
+^YëRÛ‡¼®wZu¦4^ªê'{t¯ñ :Ò>ZG²#УãÓˆ:ðšIÍñ/8tàH€Cp3 ÍÉsk½S·½ÿˆž%2b 'ˆ€#à&? ¥YÛ‡æ¡lE£I…zÈÖø­_€ûrP9KN‰ÔYúh~Ø‹¢D_‰ €Ÿ­uתRÚ`a=P~]øQƒao€rA€PÙæ_«ÄD <Çf¥ ØùhÆåÚnI­ðE§°
+ËEÔÖC)uöWS:`1L›xñ>—σæ8, õÍqtSÂÁâÇ&¾W&àðlºÜN)t’'åv«#\öO³ÐCÀŠ¦9êH›ä7ç„Eakâψ'Öí$®U/Ó@¨qM‚~BñKp¸ ½™df=èU -së×<Ø·ˆ«&8›Íqvç–[z·7!ƒsÚ|° ˜úHÛU¶Þ+µÎ
+µÚ›bñ–>×dw5ñsšXDXÃç&õýίÁѧ$©Šx ØqhUZ+šMÅÊL5È*Ž3h“—_â|”ö=Žð÷4ÅŽèežöÖJëÕî~¾šâ{ñrLÍLSàRž¦i— s„Ò
+ŽÚ£ÖÊpl׉¶_Ç º_XwS
+«œSX[ŸN)ªÂ]T õ½NÒXßâ{?ßÞMÉwAGæûÈóÌåÿî4S”ä? £¡ÞŽâ>Ñiú1î;Tdìr°"O¡C1’·%¼™M 1™ÞÌ›«ú<cW7ųü]· =7Ïãv+g¨SL=|Û­Îap!G0ø„ØÞ?E×Ï]ž›‹Âãk“õH HäEVhÿ’Iêéüàä Pj„Ì¢|æêùÇqsƆn¬C¿ªËûê„Á»+C\ge1 dû‰i“U{ýh/sáß|\ÀoÔ}†Áª(2£¤sê»ñÁþ"3³}Ì&°€œK9Öª)ª&ŽÑ1’nzþKº‘“éfçÕ¾‘ÿ¾‘ÿßt­„œÅ7ø)læ_—q"Ï{͆1òèÌìmÓ÷ÝÅËõ/} lf1 Œ÷öüzóæo-¡
+endstream
+endobj
+2899 0 obj
+<<
+/Type /Page
+/Contents 2900 0 R
+/Resources 2898 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2901 0 obj
+<<
+/D [2899 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1578 0 obj
+<<
+/D [2899 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1582 0 obj
+<<
+/D [2899 0 R /XYZ 153.694 509.593 null]
+>>
+endobj
+1586 0 obj
+<<
+/D [2899 0 R /XYZ 153.694 421.261 null]
+>>
+endobj
+1590 0 obj
+<<
+/D [2899 0 R /XYZ 153.694 253.976 null]
+>>
+endobj
+2898 0 obj
+<<
+/Font << /F89 1710 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2904 0 obj
+<<
+/Length 1555
+/Filter /FlateDecode
+>>
+stream
+xÚ½]oÛ6ð=¿BÀP@VüD½Ö{lì¡ë
+»#T.FõïÅS¡¡£ð,…18ÊÆì™ÃÈÕéçQr>ƒŒóP6¢t”姆õL™ð–¿œAâÅÐ AËe;\ÙÅkV€±éÐÂàŸ&oˆXÿŠ/‘ä$Ïès¾JÓõ¶-¡˜¬7È}¹aRáj-xE÷FÀsÆú̃ÎOï¤hqfw3ØçœVŠ%Óˆ½PŽ…ûá“,BÃÊ<MPË]a%e`¦P@^¦,?ï ¤ˆ’Å׋Ò›JÙØÂÛ1Ý…IFhA•ä
+­Ïo4bë¿·~¯oK‹‘È7Ä]€iZëCá@cŸ÷(fÓ­îlïŽl€SµTbxïš ®î¸j†¿>‰ÒØQ¿G¼EŒv" AÓFÏ<ë ,–Aa3
+C¯ŒZwªîFV ç„¿|ÀñPà~sÛÁÉÖÝ`µ[ºhê°n4–[8Ýctç˜<†:,NÁüóÀÌúÌÖÏJ„"‹˜(§bxËNÛ;³‚BfÊ»IAÄ¡­ùê‚Êá­„Ç‘+6ÚÒoiµ´°úùNwËÆ¥K&øÂb»P5^Oö(´gì
+endstream
+endobj
+2903 0 obj
+<<
+/Type /Page
+/Contents 2904 0 R
+/Resources 2902 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2905 0 obj
+<<
+/D [2903 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1594 0 obj
+<<
+/D [2903 0 R /XYZ 153.694 312.535 null]
+>>
+endobj
+2902 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2908 0 obj
+<<
+/Length 1253
+/Filter /FlateDecode
+>>
+stream
+xÚÅXKÛ6¾ï¯P˜å›Òm  P X ñ!@’×¢m!²dÈÚ§±ÿ½CQK«]KN¶9‘¢ÈùfF3ß …½µ‡½øÔˆ$ŒØËᱚ~üpñ~qñÇß„p/@¡”Ü[¬¼0@Œž
+Q&¼Eä}ñ¿Æ?½¿ÌÒUnŠÙ·Å?Ïă”Ð A•VA˜”Ä#‚!òVà.f4ðv³9 f2çŒa?K_äqºvólÕ{YêP.ÝÅÅÆiƒ³ŠØÁêBƒc]*EÁˆ«°«Hy”§lX{F8b¢§½Îg‚økâ΃18Ç{`qÇu/»Œq‚„ ÝÃÅ°ËfTù·ö•É‹lwì2âÇÕ¦¯Xà›ýN’÷B»!Êj)yå†pÀ”ærÀÖR™4+6Õb¾.ª1I
+šìí»ÉS$*$‹sGŦ~3GÔNw—ƒÈ•4‡6ÈÁ8äÛü&1vr¹1ñzSÈéHáxKÚ…gVO€fxôæ:»ŸÍ~‘õáå†UœüFêÙÓÈéxz¤¯×YÂW ¤8§€Gi‡5¤ÝZ¤½¬B IdC‹Ê帪sœc« “Ç:qO6™×ñ­ÝiR·t]Ï„T)Ä©èb¿Ä„µÂ4 ˆuXÄ'xăž™§x6‡oØ=l)Æ™]dµù%'º‡]¢—&rs}]z²æHUïÑnhª ÌãʕŦÜCüB_'3`Êâ&7#ÈQp%q*F±^çz{’U¸ôL"¬ƒo¶‰Â~}®ò7ËUŒLU«ûµÎÇdªÄ·¾jW˜«¢Ìßdyü˜¥vKQ&)ãMÂ|‹WN\QæдDWuãbÕå­ Õôc© éd¡ñN$€5Q¼x%“¸BXñúÔ`4R
+q(ųxgÆcåáI±(ÇÅbšÅ)ð`§fÿ=ÞM 5uv´—>>LÁ,õL!ÇX:ºÕéÒÃÌGßJT6<ñWºŒa4ŽÇ¡YN˜"–ŒÛ¶IMgVsÔ<Õv•K‘Ù¹“ì¤ocçöB¥œ¿Q5­3oÚX©A¶†Òf¶»âá¹ Z@-Õ0CôÅ~>G$~IÚÕ˜zw§ÚK·Ä øÓµ-™­îwTUøј¹æ¤}e[èK ŠäÆ­T ‡Û-L^ÉZêêdÛ"ÁCuy{çÎêt }£*DRµÑƒ1h‚RmUzW•¹ü±Œ"BÛ
+‚‰Ê!é«U‹®Dÿ:ÉϽNÖ‘vèuUö17‰¾_θ:_‰Ï}¦ÔQŒ¯r‡)¹?²´œ¾³¡YLVWºÌ"ÝÃÕ¿ŸžêÅ•ÞÆÉÃa¹Ý?<MÁ%ãq÷pÿ2ûöÁÜoôÎÒIxt^üè
+ÜmïŠîlo³,ì.û´ÜèÜŽÅÝ$Ÿ³7þ¦üçV81¦þLHRñLqõ#I*ÔÔ?AM‹óxyÔÜp¸ß3ÖopPÐ,NqîHâH²;“ã·¨S©D„¿&Õ%þS]’3Rý¾Jôû—Òœð)*П›’ÍÀÿëˆ
+endstream
+endobj
+2907 0 obj
+<<
+/Type /Page
+/Contents 2908 0 R
+/Resources 2906 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2909 0 obj
+<<
+/D [2907 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2906 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F94 1713 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2912 0 obj
+<<
+/Length 1543
+/Filter /FlateDecode
+>>
+stream
+xÚµXKoã6¾çW
+È@Íò%‰l/í¢íb{Èa›KÍA±éXXYJ)¹ÙÀÈïð!ÅRäDR¶‹¤Éypf¾™!î|<Ão}Q _h˜úáçg.Ï~ú“$㘗›€`†0‚8JeQp¹®Ã/„ñ¿?üº.³Íãâæò¯‰l‚%G N‚%!HF]šó‰•ƒD×å AÐUT¥±UaÌ-9ˆ¡Xògµw@íwõ3^¨Å’1Ö[;Àá.]éÒ­Ýeÿ.hªÂý“­$4çuU»Iªïö;ØJEèWjOFý³Oóæèæn¼Ùçù£ßñí>-Öjíf«ÒQiˆ²}ÝúzñQáÔ*7†
+k¤da¥€ %ͽ Ca«t;n÷µ<d  »[l­aŒâ‡Ÿí v,7ž%`Ã+æé‰ÎŒ³°æHVTJ×Nqc±…Õ¦Ô^t•®Ìl½Få×gs°°Ôî{§Ëý=r·dîÉ„ ÃjI$A1H¼$ I.KšÄÜ_i74Šby¬K¡Vån–i5»&7‡§AVîô’`p×gNÑlN6×ôæðÛÌdË,bF$ë™n²:< Òöûû´“q´ÕZmÎÉáœN".F·Q’nj¥;ðrN:Ó)œå$µÌÂê觨™à·ái¼¹2Ó·¼s‘IΕÐq7•m¾õÌaï/¯Ô”›bCÌX‚˜žÜó3µQu8'OÃ6óÔû’ðq’œrÍ·YµX‘Dãnx“M¹Éx¤ÏMÎù#…Ä’?J;6Ióü6ÕZUsKÄIt"í[ªcr?È$z)’' ?6G~Vv ·K›‹ äEóa.óÊ°Öeî*ÈݪX)7³ ¾ZíÔÎ$&Ÿ°´[½ý¾­?PÕ.}­L¦%Â,èúˆ—âEB·]†àSFÝA}b0>—Neó;%=`¡!Z¹iZU@Ô€M«,u™Ömâ‡ÝÛŵʳ]V[õ`zŸfºúÅŒ+˜#èNu•9â;¢xáGRz˸š‰…÷þf¡ع•Ô§ýTßfµNõ£¯hVuV6AÑ–>»Á‚
+endstream
+endobj
+2911 0 obj
+<<
+/Type /Page
+/Contents 2912 0 R
+/Resources 2910 0 R
+/MediaBox [0 0 612 792]
+/Parent 2893 0 R
+>>
+endobj
+2913 0 obj
+<<
+/D [2911 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2910 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2916 0 obj
+<<
+/Length 1152
+/Filter /FlateDecode
+>>
+stream
+xÚ½X[ã&}Ÿ_a)ª6‘¯_à¡Òh¥ÝU+µ+uòRÍî±q‚êØ‘Mvfjå¿/ìÆifžQŸ ŸÃßåàÀÛx÷ù&¸öôcù ¼ZvMóÏÏ7V7ï?zØ'qz«Ü#ØG
+ï>Ü®×´®ÙâÛê·ÿÀKâ cE>JK÷ù µàåf±DÍ©~h,٠盺:ìõèþÐlY£Û\ègU. ž‹JOæ¼nMÕ‹¿ÍìR¿[ÖpÁi1LÌWKÿ‰„^ì“aµÒeâ“zK€ä3Ñë… ‰ôÔñÖ
+Î3p¼Ho Ïé“ëÆ/žúËÎå-ãØÉ%„#_bÏûÒ5ÔÐO‚D¤c}-*¾Œúì™ãdž
+ êù
+€¬h˜‹aÐÎ0ö¸—‡DsÁêq|è =í»…ìŒzf§ž1)´LAVÎ…ƒ©éÛlHëÂÛqÉÜ}¾ë½SŒ…­Cá ±;‹*a;Ceàؼ`bT‘ºøÙTëuáäÔdÛÓØ@0‰í¯ÓŽ E"…}. Ð"f¦Õí$òC©/ÕíÎôFJ²·­Ü6ÏmŠ¬\î@"äÇr·B
+é\ÖY;D¿Ÿ.èoR
+endstream
+endobj
+2915 0 obj
+<<
+/Type /Page
+/Contents 2916 0 R
+/Resources 2914 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2917 0 obj
+<<
+/D [2915 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2914 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2921 0 obj
+<<
+/Length 1724
+/Filter /FlateDecode
+>>
+stream
+xÚµY[oÛ6~ϯ0` µ‡šoõÖ[‹ÃtyèzyP,Ê&ª‹!ÑI3#ÿ}‡9¶£$’Ò¾D¤tx>žCòûxœ`²š“wgÁSOÂ3˜ÔÐõÍïÎÞ\œ½z‹1›‡!›\dP> y„å“‹tòyöSöÏ›×—I]Ëù׋?ï¹/ñ$'$4N8`„1|±£¯“9³ëù‚R:K̃ͬ/dœ½z³Iˆâˆ
+3v¡˜‘Ésì<A™3=™¬@üÇ̲”×˪(’2=œógüu·û¥ Ì{Xà
+YúvVK}­R½î„òÃO¡Â~PÅ6×j“ßtÀ.K­ÔȨd’^%åR".¦ø9±Š~Àßd].a‡`Ľ—ÎÆVz€w ˆ
+Fã´J¯íZ×ƽ„©áYùB; “ß7¹Z*ß8›e^56Th_šéÞ´^¤°mdÝ_òX8RòüjR<ÖSr©…õ½=Ø«êò2—C…ö÷H´xÚ¿‡p¼§F¤2kÉ°²Ó)žNÉtJwS'³+0æîöÖ&yî¶çéàŸF8aˆ‚€v3Ž*W²ã•PÄiN1Dq|ÿü8Æ_ÐéêÓsuÞ“Vƒè”v0,‚¥÷†9)ñ<÷Â’ tU¹Ì·)$Óu-éAb•á¡Uk’UmË==áKª-£B÷€Q•·¿œ/ »åÕþšNf2YÊ[»^xº6ÓxšMi"›Í† Î
+¸
+²d”¢ú溕†4u=•yks5¿ñjRËý%=ÉÕª”ÞúZéõÉ<—™.ªFw ÛýRˆ0Š"ºx§ˆ Ê}áÃÛ’ˆïc@ó'Áìb.°™¹1I–@£P9À|mõbG©Æ¨rØj7¼Ëª<wõ’ ]ùd’álŠdYWk×rYÕ©7\ËŽx`Äi<#Aýú$Eµ-[…j˜
+(q{郄rþÊìQسN]S¾eÏ¥k–Ia~M œÚë¹yåÎ’0gÉtuå>7ºªýxK®QKé>o”\:O̲͑]#—p+ó3ŒéB”ÛBú³ ¡vÆbª·(ò×ts¸°h‰ã̘š”šÌúæ› L»Žš Ÿx´õ+ì¹£L?œa‹…ñ›F`PÆÂÙ…åE˜¢)jËб,ƒ# Ëú.
+endstream
+endobj
+2920 0 obj
+<<
+/Type /Page
+/Contents 2921 0 R
+/Resources 2919 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2922 0 obj
+<<
+/D [2920 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2919 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2925 0 obj
+<<
+/Length 2219
+/Filter /FlateDecode
+>>
+stream
+xÚ­ÉŽã¸õÞ_a¤DŒqÉœ:Y0¹ ªK¦m¡eÉ‘äöÔ4úßó¸H–ÔvYræbs{ ß®Çx±]Ä‹ßÄáÿÝ㛿ü€ÕB!•dñ¸YÄH)
+{ñ/°À(Ql‘på‹Çýâ)ú©X®(M¢­)L¥óå‡Ç¼±Çc”,ªí¢þóG‹ÓjÐ,Á#´ï1eÛF?|ž½Wx#L Dª!’½N«²öü•›ÆVõá°\™%Žtåײ¢ÎÖÆÓ%lîÊjí§Ë·~rÚe~ÛNy´7ºšn,·#&1ŠI+?N½üGDz›É, ²²=îGÀÞÔ~i§—DDŸì ‡ò
+¸6zýâçÏpØtWƒiê¢0ëv¶Â¹fgÁÂ8Û·£¹CaŒpDÉðSôÕã
+ñû4d‚ÄÆ/ Œ¾ºp!b…Èÿ½”ÄÉ’ kp•Ù”•›‚'®ËCÓíøÎSºÉ>-ºÅº©tc¶/~Vn<xZgÿðpëF§vi0—¦ÂO³âLÐ+¢ÔÚ«ý³& æxAjA“\‚¯]¡Ã˜$;x"0pà²ö—)¬IÂPÙ(ØQTIž `Á)¦_“`ÐpLg]“`Ž°˜÷1eÅÖTÁ'®Qã Iîº*á
+lqÈi@•  D(g)DÈHßæ Ä!ÎñðbÓÒRË%³a°ÙGÂœå*óÁ¾lytΨaµ*s¿P›ÿM‘?³ÑçXÁμ‘µbpÑ—ñ˜¯”Ö…Þ›‰±Kj£#,.¬˜=Ç6¨ÚAl½­ðKÙ\x-+]eù‹_Õ5ä'eýÔmç(¸  »²6~)¸¾—’Ý«m6÷‚ª¯Åa.(âLcE¥ ߇\·©RÒ‰`0NÈ’yNì–/2ÓåfXü´„Äw*µ_0àÔ¤M¢ýê´fµJ àD¶ „õ•¨$¢¢
+8OÒϾÿz÷v !0kî µ`HÄb±÷W?×CœéE”¯Ä¡VÞ}¿Ëœ4ªà  ¡Xõõ 3íòB ®pN¸°ì„ÿël …Á·÷¸2…‹ÉC¿Lub*\}:
+ eÇàÒ…9¥å~ˆàó/Ñ à+ &ÇUGJ]"EÈ—öI­Í&ÐX—øó9»ÀÌNL±öó/©Œ#ê"žF=7ýûÙþÄsðãYø©ý!½6^àã…Ä-Ìa‰ÌbIŒ Êñ‚šÍ½m]_¦[`ÿ‡±¦slUði¢ÓëOÊ…@&-œ˜Þ涌dG*™¥%Õi¦¯%1Öc26>6-6Gb¬³ðkÖîƸ·€ƒóò´©L3‡79ÑÆæ4+Á¡ò–@èr¾å;]Uæ;“gûúÞBI†B‰büóú:ÒÛ¥U‰+2üçø95S´ëAÑë¿{ãèÙÞÁÑ òm(•+ã
+áÊ<‡EíÿêÆâUÑÇ°ê
+`;8nûe®¯Öý
+zóŪ®
+IA=fx
+endstream
+endobj
+2924 0 obj
+<<
+/Type /Page
+/Contents 2925 0 R
+/Resources 2923 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2926 0 obj
+<<
+/D [2924 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2923 0 obj
+<<
+/Font << /F19 1711 0 R /F113 1728 0 R /F57 1860 0 R /F28 1704 0 R /F123 1756 0 R /F114 1729 0 R /F94 1713 0 R /F16 1712 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2929 0 obj
+<<
+/Length 2104
+/Filter /FlateDecode
+>>
+stream
+xÚµYã¶ù}…‹E¹X3¼D‘[,íK€t
+,äAcÓ¶Yrtìlv0ÿ½ɦ"Û’Ó¾Ø<¿û¤ðb·À‹ïÞà[ÿHÀ?^T0õþ{óáñÍ7ÿ „/$RBðÅãvA0C˜Æ 'ˆ²xñ¸YüýDÿ÷‡‡‡]“>-~ü×ÀµP
+#%c‹„,HÌPüð
+LT¤,~*•ðNF f¬z*¹B?¯ËÃ!-6=2?ÒŸ_¾Ãæ!¬ĘXõØ’1l48Äαéb³«Êö8
+Ú‚–Ó@gÛ¢=x\X+k½M×MYýÝ,y¸ô$=5†”%ˆ)yŽ´7—·äõå-}Åáï…Œ)Œ'Ê,¯õty)L¦‘þ¤wl.*ãÍt 8H’€æ\7»bEå¯Q±i¨úrUpði²ºj¶$OÓî6›£Û Ný:Z \¯C ˆº€>JF¤;¥ì€ÀM†9™K /qÑôƒÏ8Ú€cšŠ oÞ¹…¾I Ñ·¸k³&­üô)O›¶‚KºvK¿@õàÁep A½D…+&èY‰# h8桯Íá}Ymܱ"=è‘2ÃTRCŽÐ¡Ž#ˆ›æ>Ž Ž1ÔPÒa6ˆ Ÿ§»*=Ø ŸDKGʫعө¿í…ªã`84•þ­…TW»-Û¦ØjÓÜÍi7»ƒ¶kÍXÍ4äDp°.á8YCéV»Œ³-+78”NÄ<ª›
+(Õ›.‡Á¼=ø²°~çVëÒý?Éú¬·N‹¯7Üøí̃L[(þÒ&[/-óÄfBÈà’E£y<‚SŸæ’Þ#’¹i.°j“æÌBŸ0 ekHþ^DGÒÄT/CMAq†¥÷¢GkæÎ[t­­Ù%Î~’hÛæ¹u.£Ýts2EfM‘FúsãBŒZÌŸ!
+­‘’Ž‚#'qHÊÞKŸ² 0FÑðøt ÞíóÔ8²˜" q/¸—Ý(OH¶%Qx»ä¸âÜߎ\$Yk¿‘ºf¤´­HgØFº{=ޕСêÀ óáâ¤ñJ ”B@R!ÐKJ ý%a{Žà’W½¢Êã
+ÑËÙ>O•…§'¼Ãc€bÉ’4¹!øŽ.Šb‰/7{èMvû{žµ8¤(ªpj*-ÖçHxùdêdÊ…:e_àò¼/ÂU´ÎªuÞI³ðo’û´q#§.¡évíqéb|§†ó-í2¯}Ó’4K@лtY dc2&ˆ+á+þ„[V™æ‰ßå³L«gÁ=ñQ;a.¸']p—>¸'6¸Ã¶;ÆÏ‚»Ú
+¶uf^–îP7—À­`!·xbBçŠ"¥GpÙÈ °m£R%bqoP…ï´×(WÐD@Ÿa
+|vÅbuGœò;݉%B†4’‰²
+‰Em±é†ó3ÝÝìèdßÑÉ{:º¾Ãš÷p©°šöLã´ÌÛbZíLì1Ó}86¿ÏxÀ!øt Æ9ØzQrsFew1G§¡³xž _oéû÷ïÃ¥9øØÔ—áÏ÷ ó„mâ[áFoClö_ü™ódLþŠDLã§C¹ÑÎ`ÒOºŸÍÃ6ñKÁ§§òó˸ršz
+“sòmY4§Y}Ñs´0ñã@­`ƒí/²5Ž‹âi¯àæ;]}„@o­ía·Y›×ñ×-K]SµÍëkpùöÓy[è„Ï sL›Òû„še½Xý¢ ÎE{xÄë×YÔ°{©9‘3KÍ|Öw•oåñãÙ2>-?ã+g!'',6†žmQ»?µ˜†Ð횬Ț9°“YlŠM )¨Ò:͸.·]8OóÜ-}uµ2cÐWyPf!)<1„Óàηoþ L!4u
+endstream
+endobj
+2928 0 obj
+<<
+/Type /Page
+/Contents 2929 0 R
+/Resources 2927 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2930 0 obj
+<<
+/D [2928 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1598 0 obj
+<<
+/D [2928 0 R /XYZ 153.694 500.075 null]
+>>
+endobj
+1602 0 obj
+<<
+/D [2928 0 R /XYZ 153.694 440.05 null]
+>>
+endobj
+2927 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2933 0 obj
+<<
+/Length 1018
+/Filter /FlateDecode
+>>
+stream
+xÚµXM›:Ýϯ`ó¤dR£‘ÚJ]öeñ¤÷º Ád¬ILÎLÛQþû³Á Øv 1çœ{}ïÁ» >Ý…öø°¾{÷1!I„ã`PQ0„i°Î‚(Añòëúó»’  cÄL& Äk¤zÖ“¿îUZî*UþÕÜ0
+G
+åƒyÅnêIGS–­‹×ãªö4Ýï›+>bçð¶ÍÓâ^rüÄ1Ä¢8zÀ²Ia0‚ÆïlzÑóTï\&áí-# cÐÞT›Îzkȯ—d5Ïõ÷ÃwÇ~‘Êì|[Ô%fä&Jäòt¸È¨7ž! c5j„+æ ŽfTï K¯5¶f\ò#O}z„çµKáN]ÃùÖ_Å\È]Ý
+Íð¹úšáenKiž…ðêÛÝÌ2Enø]Åö¦Í¦’—½°Í¯zu´–ÜçQÅö,>{„(ü#{ Èáë‰Ï&4Bî›P|¥\fÐ'»E ‰o$ÕÎã‘Ûx­1´o‘ó=Ã1Ùº0”%f3¥û øÓ0} ƒRŸÚá—OwÁ*
+A5­¦ChôùocÚÿ—P ˆBSÍPA¨oM
++‡„ZÐ@B½“Ói„3ÆT—ù(ŒCº-­.ш-Ú JÞ†uÚ¬ºpâ…ªÀR—C´X븯Q·¼ƒP—hœ
+endstream
+endobj
+2932 0 obj
+<<
+/Type /Page
+/Contents 2933 0 R
+/Resources 2931 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2934 0 obj
+<<
+/D [2932 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2931 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2937 0 obj
+<<
+/Length 1785
+/Filter /FlateDecode
+>>
+stream
+xÚÕYKoã6¾çW0ŠÊÀšåS"ÓK`wÑ¢@]ßš™²Õµ¥@’›Mü÷~HÉ{ÙQÉo¾™!9_‚ƒe€ƒ7Ø?ïç7?} *PHE4
+æY@Æ
+¾á€D0)D"F”‰`¾ þ Ÿ¦3‡e]çk=1†Ã¬¬6µk&•¾Î8Çá8_dú×ü·Œ3˜æñ0©<ÅôxT¤bÖÆ[™ù`$eg¬¤B!Ée{VÝTy±¬ÝÜ~0©“°Üë½sÁ5T1DEÜžýÎùÀ0Çœ‘ÁÚãˆ3bú;áɪ© ¡n.0gL Nù%æf FQP-ƒ}ó“õ95†!sø<_À·í.±
+yÝäÅ”„Ëm^¯\ßþŠ‡æñzƒW&ÅâØoE³…¤ Ÿ§P'h÷-…ÕÊmaz×Ó¬´±¹½§|¹Á˜%hí³s¶›)•á#T2Ô,
+xË
+Š¦îcÖe…âÄÇ1±neÌǧlVÈTŒ"üÄ }Îk;–'ÊÐÏ;ú…HócÒ!g55¤4Í à4˜Oéö%Uqäm'<`<TPÆx‰D¤ö»÷ÀNÔÏi¹Ù€CÌÛçû»®‹Ý+d vÈBgío·¯}føµg#%ÔÁŽøJ;šä"XïÆ`ÉaXGBdBn'ôvÂn'¼ƒþÃtÕ‡N!:’A×›§Ý„¿ö‚ø‰‰‡äÙ×Ó¼ƒgó2ŠôA±.Xy
+‹2Ï^ž¿5ÕnBúyùØ!]%ÆK¯kÝÏïžc(²Á©Òéx›äŽƒ¼3P¢ŠG¶Ü?³ªeÇçÙÀùÉ] hй,¡£Àâa4Y2ÆYòjÜcI¨oóبð(<ÌcY>Â_Š ߬oïÆàè0[GäìûÙÕ'›‹7…Æ¿í¥£ÀÄ°Ðdù…¨÷–j@E1â²V××Tjtep<ï'´ Üw‹ÓWoŽT!€-¨³ä­O¥ô©N"|:#
+¬{#G èþÕ!ȉÏ:mò²8h£Vé ”äIõÉ@Í3,Øêsn
+‚•xd’ËpHWÉS£«^´Ž;]òƒU¿Õ&Zœx½È ]¤Žýâ\ìÚYY¹Q‰{OÇVàÃxfd¿ù!Î÷¦å¾Ï#P@¤Æý‹û[(Ù®ð)g̯{ ÛË&bˆF´•΀²8±‘ `'ÄnÁ×r“7î«÷
+ãìÌ=ÓÒ%²7¦6"”I8)œÖ~ç'îQNƒ`;VIí‰{ôl¦Ÿ½IÍ~èßNÛÑe3@AS¦Ä†såi”+‹^7N ;K¡£†û±qMËõôÛI4ßÌñáŠP×ÜG'[t¸Vd”qkÝt•
+endstream
+endobj
+2936 0 obj
+<<
+/Type /Page
+/Contents 2937 0 R
+/Resources 2935 0 R
+/MediaBox [0 0 612 792]
+/Parent 2918 0 R
+>>
+endobj
+2938 0 obj
+<<
+/D [2936 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1606 0 obj
+<<
+/D [2936 0 R /XYZ 153.694 338.438 null]
+>>
+endobj
+1610 0 obj
+<<
+/D [2936 0 R /XYZ 153.694 285.235 null]
+>>
+endobj
+1614 0 obj
+<<
+/D [2936 0 R /XYZ 153.694 138.978 null]
+>>
+endobj
+2935 0 obj
+<<
+/Font << /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R /F94 1713 0 R /F114 1729 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2941 0 obj
+<<
+/Length 1613
+/Filter /FlateDecode
+>>
+stream
+xÚXKoã6¾ï¯°( 5+>ôê¡HØ-zÚ涻F¦m"z¸zäQ#ÿ½3ʉ7‘öb i’ßÌpøq†Q° ¢àêCôÞ—%ð‚š^ürõáÓõ‡_~ç\Ë“D×ë 1’A§LÈ8¸^_Ão\ª®©7)zÛÔ‹ï×¾€uò ‡eD‚Ëp ‡ÂK–äêyÉ
+–ü}‘‰°i+Ý/–R%a¿5(Äáˆáz·F¯Ì‚‡-5×ô«±qhëÿ%!è 7Ô¸Y,E6ô{ËK•Ëðz lG#èzÀ|]yt÷Œ–Ÿzj¥Š™ÈÈÈb!²p«w½A½¥${ÚŽæ¡0;4_ªÐ¹ú„gÓ Qš;\É”Œ@–§2C–)Ë•–ð…¢ “Q”z]6—g,NrÐ÷°­µ¹/šªÒõêd“÷?Ãò ,yÄò8?€eçÀ(–É—`¥éñó÷§‹ÞT;/
+KÛù?šµP¯Ìƒñ£î-i¿õ­-p%ßì› œ É"éISwj……ÕýȆÎsN´õÈ”NIàÎÐGæÒ#'Ó£©ïlÛÔà ~ïôxúÊ¿ÏaGžL㻆D \ßùódÚ¶î 6Öv}¤Ó 7žÉí(nôþ#ŸÅT¹ Ší­]=”ݢ牾ëÍ®hä€ýèÆz¨æX"&ò|gú ae?Ëe‚Ͻ.»MÛ taÁösÀÄÔè³umZMI!g×+[¡°ÓÓ7½.£›ì}øÃÅ"&¼;hCYºocѳ¥­Mwkw3¸\¨i†®íìã$≑áP4åPÕß8èèæ`%“ÏÓÈ};˜9Rç9'&R
+ª™“ò.ƒT‚Ci\– úã|@]•.Ú¦CY„
+‹‡jy_É°©ËG’´/1\èmJCMRèg¯:ˆ¶•ïò>‘ãŠ*¬›£gS[¢c3ä›a.ËŽ¼|ǔ⇨YJÆ­ÝõCë#»}dˆ,#Ý°¯ß¶Æè=M gŽtñc<`·7·}¤¦_&CWÑU¥—c˜½<Ž˜ÊRÞš¸kr\‹¡¶ßÖ…™ŠM¼0<:ð€ˆ<_B
+endstream
+endobj
+2940 0 obj
+<<
+/Type /Page
+/Contents 2941 0 R
+/Resources 2939 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+>>
+endobj
+2942 0 obj
+<<
+/D [2940 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1618 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 546.201 null]
+>>
+endobj
+1622 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 273.883 null]
+>>
+endobj
+2943 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 226.632 null]
+>>
+endobj
+2944 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 197.336 null]
+>>
+endobj
+2945 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 176.121 null]
+>>
+endobj
+2946 0 obj
+<<
+/D [2940 0 R /XYZ 153.694 146.825 null]
+>>
+endobj
+2939 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F94 1713 0 R /F113 1728 0 R /F89 1710 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2953 0 obj
+<<
+/Length 3104
+/Filter /FlateDecode
+>>
+stream
+xÚ­YYãÆ~ß_!ÀÀvÚì‹G€
+'ôcïÏ2:¥ÅŸGå°e?¾ê*lÎfðŸè/;Å„¥¥È•žórÕ)t*´DæA É—}bz†Q"3ÙüŒ7!Þ ÝM’! ø=ïºöÈ"ÁÈÎŒì&,‡µÞþŒ•ûó;x½«¶mÃ’Eó£½`ÞÏD® £T k8À¬9>_œ};ðë}™/ã‹¥ÃY:úó‘bvÛõÞp;úsJ!2’«ø¼âpÇTóp“ÏÛD
+›³¼+™FeíN‡"zé‰iT7ã ¯ÉÒ›X7€‹Ås
+÷Æ"ÙtûMþó'„kR¯96HGªù¢C¤î}™E,Æðr¶Ÿ ž™l‰GdöåÜéÎÊä‚=w.od° ¤Ùv%ùJÄUbA‰Y
+1zDÊ#ˆhZgš! ¥½›Î¨ëÒ'^˜#d„Ñ@×wÃv WÉeKd$
+Õ·Ý:fœß(†¬`9åxF´&HkF ?gzA8YGMÛÜ×ÇcUÖèiê©«{ö–§GŽ\ÝÓsCQ§\êis/•H5üå¡L ,¨—)Äd™P1³Ï`[þtGO ¥%ˆuOÀÄO·COrû ~?qâ%»ÅçQÓžÞù ߢ²Ïá\*@ L»fÐN!ZÖ¿ß “&BF EÿŸSB¦)¼÷¢|+µ©šÒ[à™ 9^‡MK %‰HíLCZÜè¹|(!ã< .ƒ2&T#Æ°ƒàÔÜÜp¥ç×<Ö'Î¥%½ñÊótZZÂôü›SxÉQLb~2©½
+Œ¶pE ü‘[uµf74‘eó;¾¡³«ó R´»pw]í
+âƒIÕhî¼½¦~eüMxu1œëC]t‰RÇÒÂ|E˜%lc’všgÃÀÂÊ0Kä2 g„'xfþ'“–‚ê*ÉçTÙ>•­‡Oýç[9Tø³Ösj‡º©^ÿ/,jµÎTŸSÏ”- Eu²d‹âU>G0óèˆb}}òi9¯•{«¤m¶<µk»çœ‡¤"¤øH&âñ0R Ö
+Øü7d’?¾Ož¨ív±
+ˆ<g‘§Ñ²’g׋oHÍPHëâJœÜ”\”Ì
+àÎ9ÁØJoeqôsOÜÇMÞÑAÝ´Õ¼.Ï¥8M*Bé3×®bE=Ô-ö&­(…vù8v*G%ã+&€w§QYmë’:yT°B‚ùšïÅÀÏruðy=aáS/ \QdKÐ_»ù£æ;ßγ:ømêë~j¦c5Ÿ²xsohµèt<¸?£SÆîL±Àâ
+{A‡Ú=R¶KÇÎdÊ’H£cëxÔ6ÕóÃÇv¥EÎÕI(ìýîk`½Ãö«Mži B脉Êàëýr5m$³Ã¯7µÈàT­À¦3{[pÒP{¶.g¼¡Ë!t
+4a“Ssõ;]îû&&B|C°öýax…Æ¿s‡®¶ë™»hì;šdcI0—yþȧP{of1V!³ºxÈ¡Ël2vb¦ÚÉá>vT®„’“È…áªÇ¯qýœøzìJbÀØ#žyà>v·çü0E€ÊC¦ö½NeÀÔcÄñˆÚ^‹ÁÑ•–Óêô‹çêS ðè²â߇ºk›ÐÃä¦û«Y~_lÔídž§û+èÄç‰û Æ,ìIe±Pœ¸ Ã~_9î'؈Bd¹£§Ðí!39Ýû –¡á¡"\zàî)Ü°ž7åyãö(áR6!§âXM{–ˆ›ê Ž¶ð7ù¤ØA±ñþƳJ2¡cZ¬]èSzëÈÇÏœ0çÓø¥‡‰%6uÏôÄŸ{aäQ„ºDôt‚áá>GÿP1PØ’LÇÖc<–#x
+æ9.øêA=_{y˜«7^DZÁ@‡¯½3鮀J‰–”•ïþÔœ„Í%}Nß0…øæ帯)Súªª§¸æTîÞµ|™Ûúi
+ËoÎIÕ¾û˜…ozá¹ ¿|ÿãkž
+Œ¡ô‚€éè¡oÿ \K•°P(ýáZOU·õ¾|-£ñÓA² ®æKKô’3dÇ^‡–Ð?’U­`¥͇/
+U÷T»Êã¾”-@)ÿ‘FÛ‚Û»]Å–0o«Ñ÷"qÓàúöXÿÎ+ÇÚ(N(ßn¤Ï–5/1'²»V‹‡Ë¨J“ËW%2r¨ï(jPC¸ Ÿqº
+;¾ k±ZîS‘C|Õ³M¸[f&æé Õ’O“AS=qi7Oo¿ªß>ýeí0&q/AC6³kÇ)àì’ÿ<òß5Ãß4Õßbšù×w߀ãÐø¼p#| xïê¦òVW­òÅg-ùJVÅ À^霱µ£»êPœÃ±»zùë׬‹ŠYò”®ñ„߉½É,Mxùõ+ùÛ'œËC1ø){%øùþó§¯ÔçUV˜ú’“ì6­áí'BšÄƒ™~^¢—üÿqòL=ÏŸž…ÓM|›&Ç¡d?g¾DÈFÞvÕ¹e½@–F=ïêWÛ¦Òf€â ŠB–’4Élϯþ Œ¹
+endstream
+endobj
+2952 0 obj
+<<
+/Type /Page
+/Contents 2953 0 R
+/Resources 2951 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+/Annots [ 2948 0 R ]
+>>
+endobj
+2948 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [287.928 287.632 342.225 301.58]
+/A << /S /GoTo /D (macro.beginsong) >>
+>>
+endobj
+2954 0 obj
+<<
+/D [2952 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2955 0 obj
+<<
+/D [2952 0 R /XYZ 153.694 534.861 null]
+>>
+endobj
+2956 0 obj
+<<
+/D [2952 0 R /XYZ 153.694 503.755 null]
+>>
+endobj
+2957 0 obj
+<<
+/D [2952 0 R /XYZ 153.694 470.436 null]
+>>
+endobj
+2958 0 obj
+<<
+/D [2952 0 R /XYZ 153.694 439.607 null]
+>>
+endobj
+1626 0 obj
+<<
+/D [2952 0 R /XYZ 153.694 302.233 null]
+>>
+endobj
+2951 0 obj
+<<
+/Font << /F19 1711 0 R /F94 1713 0 R /F123 1756 0 R /F113 1728 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2961 0 obj
+<<
+/Length 1602
+/Filter /FlateDecode
+>>
+stream
+xÚµYKoÛF¾ûW
+P@´å¾øhÀÐé1õ-Î"WcŠT—T-×ðïÌîR%Ê&ä"îsæ›çÎØþäaâO>ßøï}I
+?7"g~¤2—ÉZÙm<]»Pi9®Üv­ÒªìS-<Õ,ç„3çL{ˆ.hŒ¶¯hF¦]ÚÃ5}„’…>‰Â¸Ké@ÜK@DƒµÁ¬î dTƒ`¾×¨]+Å*iìF†“ËÌàÌ¡§ì¢qaœf`Ì
+.·“©e²- ê^%2
+žeÑåëM¡Z;CP¯É!®ª ͼm­êkT*}Â(ípB®ž7JŸå’Ë
+å~H(Ì:ˆ—ÖuóÆBT»¼nêßgs *¨@ð?åµ²Ûöõ~lkw¡P‰Ë3 »Ú®Y+À1c…W<U¡A…·¥5EdLa.ã‡<ÂËóÄ‚Mæàg±ˆlbå¾àŽO7 GD1ðÚ§ßR=¥Õz þsœŒ_~écänÏ)„¿Œ÷œD'¨"~Ì)_–Û5nKõÑ·+»ŽÙp²-Á½òR8ª¨U/Gý‰ìC "BÚErÎW«"Ùµ<)–ùá×ìö"qÔO‘}H8¤\ó€í‘¨Ý4Ÿ,¥;ˆzY¹ë§¬Âaê«Ëè* nªÅ¢Pïã?8j< ÿ2^úï{ÿkoÅñvaöö …Ü;gÀ±¼¿?ÝæົÒÅ•¥ŒˆCq~\Ê°X¶¥ ‹O«³§Îj;7yϘž×j“hSH˜EÅŒªåÉù<s99¿÷Á†º>>Û(‰r‹I]Û*'Í6VEïd0嘈$¼U®xÊ›>Ƽ}•…‡rlµv(ìÚÂÔX•y„ªG»¯·{1.¤>iŒßI}ðö]‘úŽ ør¥o°s¾A;¾‘E«Ô+CÂÃåÇ:—î‡àÖ3p’Øq—õ^p˜<·­‡à-oî…XKQç nh¼&>ö\^VúäNë\øVªïà1ñ¥°Âe¶ÖN÷õáðGO²+-05ý°—O|c Õœñ1ÉR­7ÍóU®ÞE´7 UÛA ¨§rã1'Œí{)uM[
+"ÃR€½QéR „]*PÆ›Z\W袜Anøg«JÓyAj1«ZÕJÛê+³+Ö?Ù‡yO:oÜ5­ ”¶`›R$pb´ží~³âÎ<¢„¹zr“¤èÄɃc¸o%?8ÜK›éª²#÷J¥2S| !LYÿÅåÉö€°&/›í¤éHË= V]·—}-Ì2•˜ò
+—Éý>w^¶pïýâÊ`?erl”ƒ}ÑvUt…Êï¨7º@›„X Hï+Ï/eÞäI‘ÿçÌ’´f~²¶hò¦h"Ù6«J»Ië¾uªóM³Õ­Ÿ Œ¹1¸Ò\­ÄßÄ÷1mZ—v È.û´¶}¾dÒÃ:Û-óBáÚí”›ÛefϼLÅëûâAÑOAW«âØ7þýe:Ò×1åküSÐiµ<SÎ S`ãíÙ? äºógv #:¬qmÝ…g¶íÎŽ|°ÝÅ”hºö¾ì£tɇöз
+endstream
+endobj
+2960 0 obj
+<<
+/Type /Page
+/Contents 2961 0 R
+/Resources 2959 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+/Annots [ 2949 0 R 2950 0 R ]
+>>
+endobj
+2949 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [166.377 641.793 225.904 653.748]
+/A << /S /GoTo /D (macro.songtarget) >>
+>>
+endobj
+2950 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 1]/H/I/C[.6 0 0]
+/Rect [212.348 629.838 271.875 641.793]
+/A << /S /GoTo /D (macro.songtarget) >>
+>>
+endobj
+2962 0 obj
+<<
+/D [2960 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1630 0 obj
+<<
+/D [2960 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+2959 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2965 0 obj
+<<
+/Length 2043
+/Filter /FlateDecode
+>>
+stream
+xÚÅY[Û6~ϯ00( 5W¼H¢°û¤I»Y»ÅÄA ´ª‘h›ˆ-y%9™`0ûÛ{ÈCÉ’¬ËÞ
+UZêýäP
+ûåð ƒ( œÄ0–ò‘7±Ô÷€8˜ÞׇRá p6.g£jÀ!® cÅ.nú°”¤õö NnõGZ¾'!¥…^ÁÒ>iØgÔ4"’ ©ûTík²Þ$ndmku=‡ ä$¥Z©ÒDß
+áXs™A–)•º0OÑàÖHÈ›HhÇ2Jz˜Øª  Å¯„ÖÑņøbï¿»}÷ÓòÃíWظcgàph1ø„Ãë™$9Ô›¢¼hCÇ‹yŠ³q:œ™wË ÇÚdPW·¬EXè5ÏÂÂÿ aPS…"êËy €ùíÓ9,l6ÔsŠS æDú¼›üþdE­ÃW"«ãTChñ‡W–ÿüÏí×ÄUx=®Î¹ÿ9`…!ø?Ehœ~.u­®lD
+iø»¢¸×qé
+
+&¥¨Lq¨÷‡ÚE4W‚ƒœÍ Ù¦ýÄ>fªG¼ž}3s¯ÚèýMýTPíòlor)]0ÛXñ+ûýá› âžãÆ@2É»ÜôêÞ±Ý̨TÛÄN©m¥F:"C†ñCn“d˺¤Z¥µÊ^ZµúÌaôQ©=ävýI=t>w‹Úîy¸¡7ìñqT<Çr žô§Ùc¥/ÐYNhÜ¿jóÓ3ÐÄš,Ž(â" Âw1áµõþ
+ÇÂÀFˆ‰\)ãMÂ1Ú
+IÉ6þk'[œhü,²~f¾MÍQuüÌÌÙ*À|^em+¬5œ|(…·4µZñ„§ Ô‡¾ŒÇ®$A‡ÖêÓÜy‚)>Œ#Qï[wüØáŠÚá…iQ&¥¶ fK•;0xß•KÇ6žtöŸÀælgq'‰ƒ¡e@£¹ò̳ 9œÅ ¤3;º)Ç›f@å!·7+ÛÉö+º Ê6“£ e¥‹¼g€W©-®_pI Ù•™¹“«.hIä„; ›ûÒ¤N‹LýaÆÿ3ÿŽaÿYNGÅF/',
+»ŠuÊF nªLc
+endstream
+endobj
+2964 0 obj
+<<
+/Type /Page
+/Contents 2965 0 R
+/Resources 2963 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+>>
+endobj
+2966 0 obj
+<<
+/D [2964 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1634 0 obj
+<<
+/D [2964 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+1638 0 obj
+<<
+/D [2964 0 R /XYZ 153.694 585.504 null]
+>>
+endobj
+1642 0 obj
+<<
+/D [2964 0 R /XYZ 153.694 527.721 null]
+>>
+endobj
+2963 0 obj
+<<
+/Font << /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2969 0 obj
+<<
+/Length 1684
+/Filter /FlateDecode
+>>
+stream
+xÚµXÛŠÛ8¾Ÿ§0”‚;ªu²­…´l[Ø»íÎ]·°Ž­d¼u¬`+s äÝûËRÜØ£iì,½‘uøχOŠ‚uŸ®"÷ÿþöêÍGÁ‚‰„¦Áí*ÀŒ£„“ æ "”·Eð%¤‘H_oÿ|óc¤HÄ13›)A±À@©Ûõ¦¬‘[™i»w@÷Úí½Æ\ôt….¡ˆ$ñ‘îÁGÎm±äRGGÑyrFÌ¿ßßh¹ÙîñaŸž'/zòx&y ¿ ÈLì°³Ðy =ì çs80œ"‹Gû |öŒ(QÐÀ§~þt\Ç1Š"
+|#”#ÓÉZ>4¥–^ª ‰Bb#Èšv$q€9…dO€ K‚Û ¼½“ ˆÕ8¬Êº%a®êICÝ,pX.wZv~¹ "|rL£NV#²~îXczÂ;Ær+ñ±Ó$®ÉËPLå# ´²âé;yl”aððH6Ô>æSE2^JǺE”UΚekí›ÕHÇ"†„ ^Ë•s,Çâ±” m²¼éw¬b
+x:<E‰ öx#¯ÕNowÚhHiç€nPd:3#f}3 ¼ýßnµmÊLÏòU ñÃè1›À;ÅÏÔ& Fúìî|¼ E(" d4EiÊûŒæç3Úø –¹Úl²ºxä ùºícç(ŒëGì­P øŽžr+äê¤P•åþ>xÙ¸£c6É46åêñ„Í€ãnþö™ ÚEä ìªoíþñëâNŒ©‹iÔËÍF&ÖÌGçÇÂvo†±'RÌGÓ̹šc5ŒU+I#„ ÷¶’] A¼4ÅB7Á/£’À $0œÚ’ðnajÉâšalËÃ$”ÐGêÂŽÕj´XÀ" è7ùn#mãù –\=¹  G ˜5”ë\A?Ñ‹p#ð58,èFôÜ3#úÄNB7»5•Ô4OÙ¶Ò)»1Úì*]n+§­.AÝlÝ—ò”\ˆÁÇ6f1b1µ²XNiXìò®Þò0«*3ˆ/´!ÑxÈä\=•’ÀAèîƒóÖ`­ë¡ÔwrVØF¶ªÑe½v"+û?´•ÙhÛ[·ØÈuÙjÙ´ ÇDø!ËÍö;»ºÍÚvBïb”!9‡f¹.ïÚ²¶R²í«Ý-[©íØÄ+‹8VlTéÎ7lÎQLøñ˜k.}wÍtßD«§aUµ“½¬ ùˆüÝ‚<Áãf‡É…Í®¯sš¦s»ĽgUY7%«VÎ)©ì‚V‘Wª•Ž±aNgà9®ZU¯;Év}/^€ÜKñÀ„7+Õœ´ïßߺ(Ži‡*”ß}ŽÞ˜·Dð@Q/YSme=0æ[/GGeÌÑ $bÈ“„g\ÖÖÙr€šT+We%ÍÜÍÎȺ°›M‰ëCË+’c3IL3ŠV½nÔ®c»É¾ÉLWRCëÎt®
+ù¯¿Æäç‚ømC¼°\‡¡VoàùO-êùÁ£“ПŽÒèÍà ‚`bJ½ (9ò‡aLè´}¼ùó’°_€ Ÿˆ§•_O+öïô‡ºøCuˆÌÎiÁ¿‚2”Râ… ¦v½±ú¢‘Œz;9ÅöIƒ¦áJU•2@áÁÁ Ña¶4ì&í¦#¶°ë­V©í¥vúx£ˆb!jY¹=ÚnÈí ÷ÈÀ °)×MfßO`É6ëô4ÌÄÖÎ
+­¬¯.»Á`!@CgØ¿vrgLË™uzGQj¨™?C¤> Õ2Mâ!µ;g,Bý"LP‡g²fÁ£píjžŸÜQ+'^p‹‹’Ó¶u÷—Ò,Ààv;²áÆ!e'\üÁð†È{s 4»à.¸Ë*G œ_÷v©àèž|œB(R—Ý}VÒðᚊý…“ª47â̾½Áê°¾ÉÊú˜)ðñ4Áµ ø⾩y É‘ôˆÝ¸‡kìs;ê7þÔW’/`y
+wSær3îs3½ËÿH¡™WDLkzpgÕ2‡Àº‘Ï߱Ȅw¬}Ðè’w¬²ì 1ŒôÓ·Š§†u¥–YeFpôÕ>3q ûÀ‚’i€WßûXÎÀE”NãÔ?Û›7ÈÞ/–
+õØ_Wo ÌÄà̇۫ïˆÑ²1
+endstream
+endobj
+2968 0 obj
+<<
+/Type /Page
+/Contents 2969 0 R
+/Resources 2967 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+>>
+endobj
+2970 0 obj
+<<
+/D [2968 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2967 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2973 0 obj
+<<
+/Length 1600
+/Filter /FlateDecode
+>>
+stream
+xÚÅXßoÛ6~Ï_!À 5+þ&ð:¬öØeOiTKŠ…ÚR!ÉM2ÃÿûŽ"%[ŠKn‹!ˆ%ŠäïãÝwGÞ½xÜîùööæõ;Í<´¤Ê»M<Ì8’œx‚KD(÷n#ïΧ˜²ùÇÛ¿^¿Ã˜y
+i!˜ÌR˜‚¤zÔõ÷Ûåê¡H«x?ǽù²*³pÏœpzÓ豈“å ›¾8‹l÷á'+¾³”…¿ÀÒ\·Ká×,¥Ì³{óµZÇÐaZe¶Û.Ü'Ó†&º¼ Õ.C -c‰é¬#M@rIJŒWUšgoLëߥ…`SÆļ$é0Ä>
+rH=•ˆjÕhèÆôå©!yD"­:Ö$é P7°/Tb¤º]¤Ò:ä³'𠼚îõý7ÞB3D˜½ Î¦‡QTåiÅq9(Ö£= Ë!¢^
+H-{˜S$À0®0â0èv béG‘…(5RÌÃ"êTP#EB.)k‡ìä°j©‘
+‹9ü{lç+ÓIÝS–vì>o/ $
+îN®òù‚Rᇛ9ö7ö½J«Ml^¹ï}5¢)Ò˜†ÑÉþÒä<(„‹ü:<(áàVzx80ÊU‘~©vEhI?Ì&x
+ã)>Æ¸× 0ô`˜„pÅWÃCàiç±KÖCÚÄ”ÐöÌ­wW­óÂL§ ~hˆV`/Vb-ó²à2«.Èâ‡U¾ÝÂŽ 0Ãý¸æ[+§Çö £Çe’N[o¿üòÆ5j­›´¬L;Ê÷H”‘ËLÿÌÀ“5LHŒ^N­g’zo–'J;Ù½NÀ3ÿô0%Ó3vôÃ$ùJG
+|›ÏF5}ŽJFÖuÄR•z„¥âÍ´A¡HÉv„á |&±h¤‚và‹!Ú‘– hC“ì˜3h‡"©ÿiWÙ—M¿šëFæPŒuyÁ6vYø! ê§8d
+ 4T!ÛßBvÛîð¦8:™üÿ˜BcŠiÑ;…?ôHþ8ÇU†){ø›À<ø¾,Áñc‰
+;l°íÕÓ}ü*.JÓ–ƒ§ãˆh™&;00IÁIöƒL”¦‡†0Àù²Fôz'ЗãnÒäq"üÃW|¡|'Dö*·*ÿ\Ö¬ûøœ:Lª¸Øw ÔëdõíÔãì4wˆVßbÎËÍýóÄ A Ž#óºÚúÛyÒýjÔN~-dÔg®MÎ
+óv
+We[á²ÂÖà *ãF¨]«ñ)8#]¾×JB”ÖГãë6ÞæEø©9åËÍ¡í³žœ;wØmÐr.Z:fA ?¾XO·ç_!¯©§>¼wUZ?V«uXÜí{ìõs[ž|:Œ/Á…º²ào´í§(Ó㔤U§e†ïfäãŒî§/d0®úÊâ3b³âÙ»Y¦%æÊI#¥\ÅéŽÂíœßooþ[³Û
+endstream
+endobj
+2972 0 obj
+<<
+/Type /Page
+/Contents 2973 0 R
+/Resources 2971 0 R
+/MediaBox [0 0 612 792]
+/Parent 2947 0 R
+>>
+endobj
+2974 0 obj
+<<
+/D [2972 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1646 0 obj
+<<
+/D [2972 0 R /XYZ 153.694 213.151 null]
+>>
+endobj
+2971 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2977 0 obj
+<<
+/Length 1693
+/Filter /FlateDecode
+>>
+stream
+xÚµY[oÛ6~ϯ³†/ºp@ ÀZ`«ßÒc,Úæ&K†D7É ÿ÷^dKŠ²Hn‡"¶H‘ß¹ðœïºa°ÂàóUè¿?.®Þâ,ˆOh,VfJ"ÄQ‚‚EÜÏ(NðüÛâ÷÷Ÿ0fAŠx3³˜$ˆ§쪯˜²/ï–›¿Uö”×úÆméÀßú-·8D<â'x2^d™.U‘É'Y®ñ5=üßÛòÒ“<:$§(Šy#ïxÂókúú³·ñŒþ…|\–Û­(2o͸Jºz¾'ßm µÒ¹38ENgöâÅð ý㟯‚[Îa x
+QI÷ ´ÈÕRýcƒËŒ‹f£_
+šOå–ÖMO$†ê†©‹¤ï3⊮ÕS
+WÅ\ ÊÔR»
+Ó÷y”@íRå¾v¢Þ¹"à:_SÃVîM§ò5Åæ›âv*Ù T'*[U³wn\—•> |gTªw¹¿y>;›~7Ò¾™aŠ0ð5óËþl&54‚ïC¸wlÊ}ž¹gÛþ?ïÔZ‚g7%vÞ|Qù Ý)
+Ú 3x¬”{pd2%y2.‹Ò݃Æ·"-»¯zw8qyú“³…Í–ñ§AÂðgæ ñ%yÒºó˜D™"\*Ï݆¦Š£—Š;_“ƉLO"/úŠÞýiª™#~Ç´™±zYfòOó|ó“ "†{ ŠH·ÍZ{Šk…È5>tº²ÃþÝÀKW|M팇Ý×#™®‡ a5|»ÜVäÕ†<‚&œbÐŒ£4õŽÝÏͧ=¿-®þP!ù<
+endstream
+endobj
+2976 0 obj
+<<
+/Type /Page
+/Contents 2977 0 R
+/Resources 2975 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2978 0 obj
+<<
+/D [2976 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1650 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 613.4 null]
+>>
+endobj
+1654 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 533.948 null]
+>>
+endobj
+1658 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 443.288 null]
+>>
+endobj
+1662 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 443.288 null]
+>>
+endobj
+1666 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 443.288 null]
+>>
+endobj
+1670 0 obj
+<<
+/D [2976 0 R /XYZ 153.694 443.288 null]
+>>
+endobj
+2975 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F113 1728 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2982 0 obj
+<<
+/Length 2537
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YÛnÜ8}ÏW4+1#’º»À"`g6ó¸c`$ó KlK±ZÒJêØŽáß"«¤nÉr_<臦(’u;U<¤üÕÍÊ_ýöƧÿ_®Þ|øU«ˆéXªÕÕzŃšXEaÌ„ WWÙê«'…¯.þ¼úýïœ+Åtv°LĬäF}ã2¸ÉÌÚþ'Û>/nªº5wu›½å¶ó_>Ù}ºÉŸà÷ß_\†"ôÞò§'”0Ñæ’$\rŸéPÚèó´é‹¾4MkÖÅý¢:ïðݨŠÕï}Ô ÷—ôኅ‘Þ×çc]• +Ù\—fpSg«Ô’4Zaf=çAÚõÙÂÄ_¶CÀå+΂lWqþìŸYœø«©ùŸßÞ¬.•fa
+àRú±‹”m)Š¢ƒ1ôWuݨ éjš…i=” ÐWЄ4©hò.}ÔWy®Á ÜX ÛŽh»q ³Ánç
+§^w8
+¤2õ È“$X›»A
+5èã»}ÚŒüæ¸c~ؾbŽze?±0à1ãA8dýit•“Bëº,‘Óbå´¶R”Ìi%Y*Éâˆ0B¤©]þÙá™o¬øj¡/­7ͶOlZ£†-«‡ž‚ÞAa.~Ö!8É‚ÓÁ_—¶umCQ&U:ž¥]ìl ‘ìW:ÏÎýdm°XÙ=P2í<o;`«.šÎÞ,e§ÜôØÚ£ç>Ü_öêùñg¼$ˆ—/ ¦¦çtÚ¶A8X ™
+ÅýÁh ìEÊt=·÷ùÞ§j¦›½0ª©3M:w¬ßO¶íÞ³Þ]ˆÌAù•Pt(v®ž¶h*†;‰}VàW@Æò}ß·{X8•Úø¯&´¸¡­·X±‡%i³Sr8í|Zï/"‘Æ;f(v—)rYñ÷KîØs«l›Àâ(ÿw¶^겧$Ðú. l6P“²Aî--ÓRì_Äþ¯]š¶¾ë&øŸ©¥8‹w·í€M¢Ú¨ KÅê2¿/R*–¸Cnõ‚Äâý%‚ `ªxƒÉÇ»¼ø•7˜{9ýUœwƒ©N»Á¼¶½›¶Þ6çÜM.~ÇÀËÝéz?*Y³íŸË—Ÿ4i&@ø§  ï$ §7›æñ-:G?ÙŠxïã[qÖêâ´Õ!…¯ëûÃØÊáÿñña‹‚ˆ).禀£W¦Ñó•ƒÓVb’™¶´ÇOR}ÍB³q­ò®côÿ„ÿ·E#Ìf¼4çë¢<G¯ð¸^N0T½ >#":Á§ 1~nñi(Ö5¶q—ípñOôZñÓœƒ u2.öÊç9>:±˜²;Go韦÷>ÔFÿ¸°o«|’VtMÒža›<±>¬‹s,§ÕeSeçVe)OübôªÏ‹R/~_|i×=À:g‰ÃWøêEÒɉtòéäjˆ¹7ŽtrE¼‡Ÿ@:#M…¿†tŽœÖSûd=:L€6ŽQi˨€ë8RÅÕHª8}¡rÿß96Ƚ÷ôñ 7­9t.S
+ÎÇsc*ú>SþÌûEw„ǹx
+D8~—#º”ÒÁÈ ç#˦ð( á0œÂ™ût~§%SXظ» d O“ìØ‚Ãìý¸ðâ%.gàÿaDÑÍ®l-W­ñjaÏR9ZÚOof[`W]oÚ3lç2bÑý8h:åczÞ„¬PÞ
+endstream
+endobj
+2981 0 obj
+<<
+/Type /Page
+/Contents 2982 0 R
+/Resources 2980 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2983 0 obj
+<<
+/D [2981 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2980 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F57 1860 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2986 0 obj
+<<
+/Length 2236
+/Filter /FlateDecode
+>>
+stream
+xÚ½YK㸾ϯðesÅ·x0Ø`g
+&Ô°Ä,‚‘A@$Wý5i5²( Ƙæì%wg/$a¡[ToX¸~;m¶ð‰«š‹uTáW®#×Íâ‡zûp„íÜè)*£Ç2:%]¿ª‹2ÍÝÊÔï”ZÕ? 
+pJ¨Wàçò1-q¼/ß]¾Æ«mÏ]·çNý}ÁñœË
+/µëû+ƒªL^™€’Äì!¹!® œPfú‹"/QU=ð%N
+0-]çN*àIÒiŠQÂõ,Ò‘ŽtØôý£
+Ü æv7Æ[ 5òghùSÒ.Ê
+3Ì^Žƒ:ðì3Á<ðèðŒ®ÜEÞ—@ÑyPøÆP=¥'"÷‹¶g···ÆJî£Cå=¶?ýÕŽ<œ¿}ÃÆ1zµª-åc°‚È®V ª´E°WÆYôÚ¹»Ø<ç8ÅIaÚ¨~ç¡bÝC|'œœW¦‰=K[µ?²sEÒ ;˜~]‚©f_“ÿa'Ž–«~?Zr• ¯`ò€j…öx÷œ'=¬qã¹eJf.Dã ÝÖ)†`[¿ÝÆkU’Á\<¿÷
+hîÇKWŸÎ{|°ôê½}u}GÊv¦ËC½'ñã9«Ó¦ê¿–wwÞÍC{òþ^/©;ƒ…rc‚áFŲ6W$ƒg‘þ4éŒH®:L¿bŠy¯ŠøV#;'ö" ËNüêõ±(c7‚†¯Ü -0¢ÜuÞiP!Ñ*üÝF:8¬gÕÅLk¢¤éœFûÒ.კ{Y8º1ÿÌ‚ÕsšE÷™ŸÚþcÐöì[Ko+Ì°Ž­·‰­âp¬J±-Zÿ ÆXâEÚש{ÍÉÞÜ/IQ¦ßŠÜîeÛ+
+ª¡†XÂ6o.¾`³•bØ\óF¸°Dá\Ë>Úw§·¬öY!´¬ðÑ5íƒE¸Ž\­«[r»N¼2)(PY_ö/7Z(mú‹Êâü˜do/–­à«Eؾ4Õwêß×w{¯“â\·¿[ ´$èµÆjÝþÇÑ?Ö½Öeó?Fk„ºnƒßÌ‚¹›ô&Uú-^`gÇã…Ò•Jæ
+”þÿÕár~­ÛF—¹UÔ¢lËü±ù
+–¹Dš¦Dv–`Ñ…XÏä%XlVV§ÛÛ¶õâ³ÝÀ«Ð·Vú¼à¬•x_må’Ôç…Õ•’óJ‘.9Ü:›ñ
+D©ÙHï¼KWÃ=lZq„¡?UêjŒvÍÏ»¿ò¿˜
+endstream
+endobj
+2985 0 obj
+<<
+/Type /Page
+/Contents 2986 0 R
+/Resources 2984 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2987 0 obj
+<<
+/D [2985 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2984 0 obj
+<<
+/Font << /F19 1711 0 R /F57 1860 0 R /F91 1904 0 R /F113 1728 0 R /F28 1704 0 R /F94 1713 0 R /F114 1729 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2990 0 obj
+<<
+/Length 2179
+/Filter /FlateDecode
+>>
+stream
+xÚ¥K£Fú>¿Â«(–ÆêÅ*ŠZÙ݉i÷ô!£$lÊvíØ@
+c<¤â&‘ F¤«ÚŠÂYwØÉDæÚpûµØ:„F•Z£nû³Ñ DÍ·D²ˆ!&>>§éFKOÉWèæ! Îû+Òé¬Q
+!öAÄcTiž]3"Â
+é,LÆ¥t‰ƒ¦Rà
+»>©¬ÙßcB€36*%“'
+‰ ÄZNÈÃõ©a¥Éíž1Q€ÇõS“K´Çð .í4·GýA‡±ò mÞÐñ¬¶ÁR\*I»3‚B0A±8ø§aÊ|ªäNÕ¬îM"DcáÓì×C××gŸ™žh
+Å—3ÂtA‰Ç8PÖ‘]7iÕô©½[(xDD¬Ù·ž{L7ÚwÍV‡-úinÓ˺“:öZŸ dú·éí½Ý–hiåò z®#T8ÃÞá7üÇëhä€ û 6­ßZC:ÎwUq*ç4Y'!­î½AÎŒq‚ˆ¦á˜a_­þ7g#âyl 'Ts&%BÜÍš?ô™1@Émœ¯_a+ºOª\!¾9vMx/aèí)×GŒÍkhI?Í`>œ@nÁ!Òç£L ¿}ňËãøÚAbÄÓ0ä¶Ñ|uœ«ÝÞ¼ Ò<?”‡S·ê07™†[åPïhW/%”|ÍË•ùDt*“i&«Úèy]</Wœpèi´L_­òkäÖ¿:cxk,f ƒM£ÑÕ«W¦è‡O²ÊWd¦öù4¤Puêew(ÖéáüS…‰“iýN= k4-C 17
+O¥×Ìtd­«â“™tceá×ATqÑh|œø&lPí¥ÀLÍ
+endstream
+endobj
+2989 0 obj
+<<
+/Type /Page
+/Contents 2990 0 R
+/Resources 2988 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2991 0 obj
+<<
+/D [2989 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2988 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F57 1860 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2994 0 obj
+<<
+/Length 2269
+/Filter /FlateDecode
+>>
+stream
+xÚ­YKoã8¾çWø2ˆÙ"©…ÁÙff±À^¦ì
+L«d(5àNä;‹Öër›-ŠŸ-³‘W”UÞ²&Ùln§ÀN+ê0ý£Ú¡[ƒ
+@2äLBwop•+X‰$ D8`¥ž-F³¢`ဓˆ¼…©ô¼ŪÀcà»Aâý«D[?ã*ñÉ6ª;Rì {hkNH'Qè|œ- ¼"Í­K%¡—ÖÔ¥whMˆÏªi‡ÚÅáo~èå5ÊãAŸûw „’©þÒú%GX˜¯Y |qâ°6Å\ãè€ÜÆ
+ Þè+·Mm®ÛÄQåIüwÛ¤s¤ü˜®p!j^Z&ì>*$Ã~"¨ìΕtr
+à©l¨]7•™Û@R…4°)dÒ4c=Õ¼û]#‹¨z×tªï!y+†³XÊIÈ‹ã˜Ä€z`–•óÇ£tFøÓá^_Ê×—„@¼:4~\Ccaž !µ/ZAK6¬I­5MA?ÓlÅÀÑ!¼²pûÈÃMfXSw¦ÐØÌâK‚ËD¶Y§ä)}NÙØ÷™¢ƒ‹—–,Âè²íÙ“Ånç~þÊGêCòkX›Y¦Ñ?1¢ÃÈûµ·E½Ý]¸|[à·R8^ŠyVZhí66åâ†äy]âƒÄ> ”b*r6Æc¦W¦xm=çíõÏ·sÈçvaÈ„Hú;b \ÎœˆÁ^2yÏT{ÖFò%ÈÌAÔß,3…®ïЦ E ]Ôjèý‰¤5}ZóbGcšÌMAÓÛ®µë s*4§òÙ1¨>й„2?ˆ¡lãâ ’Rxé¼Ù¦µSFaSÔC'/-s
+Y™ áö6…3Üé}”½@ ¤Ï|åbê¿D{»]ü~Á÷÷ã¹ü‰0`1Ôè½=NørD¹›š{Ž¼ÙÞÏ 
+§Ò%ÖHÕÀ_ì¢3¶BÞÝ1#¢8·e³òþ¹JMq7˜ w
+THë3ÐlÚ@NŸ˜[;¸éÊd@£g8’SïÓmˆ§Ö—£ZÙ =©”ÕgÁiK^s7Ô:×WñýõmôÍô£+‰µNÓÑ»³Âˆ…J9 äDêËçûl»_³¡ß‡?تÎOmõ¾2öÕÀOdä3(,Kc)9˜ðÁw NÐÜ[§}nÛÒŽ“ Ø®¤Ž¸êA⯩×åBþW0U*‡RÕg{ ¦ÊŽÐ¥àˆÑÛäÈ-Î7_DäÇï †Š ƒ“mfE±¢ÛÛÚ¬ ®¦­Òb:p`ßR?SCåvµ¦Qí„ÓveIl œ«A˹ih,¥¿¯:\Ì’x/™#a-Š…bâÓ©Ï®*J:vV'„Œ†Rʈj”R&$%6(k&”d”—¥ÕÊÔ„Y7Ñ¡_(±pl×ïQ)éP)9Ì_‰Wi{h³ÞE7L ^êTå¦2i£ÉK“¶Š;”R,P’$rà+‡õžíû°´ëŽHçJ» 2¾ª|kÁå°|û%÷Õµ-ý¥z1dÚ÷õ"=@q¾ÝŒ¸Ë%Þ2û…jz›×ðNÅ”[WíoÒ*Í5œÂë1SJ}sLéÙ6wו­Ó÷ù°ÂjãÑAÇVN®#±j¹à…DòÑOæ‡vtæeölÍú‚»z>ò5¬Ð>ü¸o[ЉoGPïECݼÈð‘ϳ´Öö@í(.ï[=lƒOû<Dß—hGŽã¦å$3€ò$óa÷ßÎV0Ò7^6Ëܳ™¥÷{£±;2p ùpäûÎÅÐ’ÀvapZòôQCÍ)ÔGà‹‚$/â–ŸÏø|æ0’loº<lÇϲ¤&Wa/«2¿¤î |&ÂCõ׳òÃ÷ MÙ]|4¥Ë^ÀkÓ&¤Â]ÊÍ;Œ“½‹™3銃8Ü7ðèJ(ë™á"<‹Çù¬Y.Œ}Ñ]7{þc,ŽìÉM2†ÂO}þìpôôk§[=¤”ŒLgµ¾@
+-U
+endstream
+endobj
+2993 0 obj
+<<
+/Type /Page
+/Contents 2994 0 R
+/Resources 2992 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2995 0 obj
+<<
+/D [2993 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2992 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+2998 0 obj
+<<
+/Length 1684
+/Filter /FlateDecode
+>>
+stream
+xÚ¥XIoÛ8¾çW
+È@ÌŠ›DÞŠÒ¢sìøP íA¶h›¨Ã’gŒü÷yiÙRe[ÊpHQäûÞÆ·(ðV^à}½ Üøyv÷ñ‹d^ˆdD…7[z˜qqâ…<B„ro–xO>¥O~Íþþøcæ $ÙÍ4BT
+ Tïú‰){.7©®ÌìŸÏŸæÅ~2å„ûUáV©üƒ%Õ‚:RS ÉeK†Á®Òb§fVª
+`O ÔLÁx¸*TÚ‡ÊB$0=Gìq·é¥îNtebèךœUo!χ‘ßåÏ-Eo[åmŒ•£>z$BR´X^ê^¢nc—¨è#Šâ¡l˜4[šËðLjBo núýë7 J
+>G¤_6¡‘Sÿ[¾ÙUæÊÂòZÙIsá¥9UŸPõ…¯J»ºÜ™©=0”Gõ“ ®RÆx®ÑŒ¹ë-^{mx.!•õ¢óSƈÄ_Ñ+Fd)°J뜾¨Isš"…íÓVô—µ^­
+Ë£~\H]T6ú‚.‹±œIŒBZˆùyTŽí03DL¥@e…
+Gd½)TÎ÷7J­/R 
+[fJ߈ÝËØe›æ¿>ç¬XóÔŸ,“¨ÔWDØûkÅtÕ­ÚªäÁÖI¶3³¼°¯IT%„îÁêãzgÛ|@d3á·åÐõc­ÏCTKhá•ýŽh?¸-aƒYûtOë›'v¹oc¾ó±phR¬ï
+¬11%[ßûñòBðÃ2H¾KÓ1‰B#û ÖA–Ìw»üyQl^[uË<ûò·Þ ®sóð)Óù®DÔ>Õ} $¹î|%¯+êàÞÄqð–›­/YÆmí’eÃÈ^öÏ t{`ˆExÌÇuw¢s¥y8ŒúVA«n¤·Ež©¼:
+endstream
+endobj
+2997 0 obj
+<<
+/Type /Page
+/Contents 2998 0 R
+/Resources 2996 0 R
+/MediaBox [0 0 612 792]
+/Parent 2979 0 R
+>>
+endobj
+2999 0 obj
+<<
+/D [2997 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+2996 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R /F28 1704 0 R /F123 1756 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3002 0 obj
+<<
+/Length 1303
+/Filter /FlateDecode
+>>
+stream
+xÚ½XKoã6¾çWX•šË§DÝ‚º‹-ÐKk ‡l²EÛÄÊ’!ɉÃÿ½C‘¶bUŽ)»‡DÃ×ÌÇáp¾¡q°
+pðå»ï§ÙÝÇÏ "”ÄL³e@¸@± A$bD™fYð2áÉãìŸ áDIq39‹4µ³Ž¿Ø9ú¦nΔ`”ˆä¬ÜÖ÷0¾^êü¶ZyVK‡ÔFEœ¾ÓÍéÃd·õ˜Oõw½5Âë½ù¿Íw5è¦Q©<ݱɇlŠQúW“$H`
+ÌÐ" ÌÀ ˆ`ˆÁñ‰D".`x«f)BU7“)ã8|^«f­*Û
+Ût¥ÐdÊ…¿.mWQ6¿½14LIØLh¾l'S*jœ!3­¶úv›8UÈ Lì6SXÈX˜§ÕÊ
+ Ó^jä° G.5¶i8¦mº‡Õwf*FQP­‚“ø×—;c˜ e[I=•¨žï.[S\‡D1ìÖ]¬7,’+ ++ ˜|ý«!€˜…j¯ë–4$7¸ ;Uu£ÒÌN‘ƒÀZåÖ¦öcˆÈ.3<õfˆ†ÈÝçѲ°cÀ=ÃôÚ÷-ˆ`Ç®Az‘:ÞdÆÇis’”Üþ;`Czn|càïjךÛmØÆ¢Ülu®2ÛJí§V‹²p] 0Œ•Zú…oYe-«›ÁÒ~WÊ8TUi£<È”áŽÇag–øý 4Žo‡ðaðJ¸9ý+!ýî™^ÖjÛbUõ˜—ø劧«4v‘4$ö,+¯U¿ÃÄ"=`W<uì¥ÚÆ+tDMLÔfD |ŽéYw¯{DZ®õ«:œ_m±jÆ¡ð´Â‹r\ŠöFdèñ´`ÌÓ@òŸÿ4Âÿià‡Ñ!^û]&ß8¼Þ³ü)1rbòŠƒû>™5!·õõ3«i/r•V†YßÙÁ‹ƒ„ÈË°+²UUî¶ïp‹zé#LD"%g]-ÿû •“aQSH9
+)àFŒb0¥C%ç ŠAÃ[wž™];m¥ÃØÅ£w
+¥×ü’º§œóðŸ‰d¡ëw•ÆÊV¦m4Û'sWRÅ­•S]ûŠÀÔ0
+ê­™“h
+endstream
+endobj
+3001 0 obj
+<<
+/Type /Page
+/Contents 3002 0 R
+/Resources 3000 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3003 0 obj
+<<
+/D [3001 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3000 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3007 0 obj
+<<
+/Length 1597
+/Filter /FlateDecode
+>>
+stream
+xÚÍYKÛ6¾ï¯0P˜áK¯K°HÑ(ÐH÷Öô [´M¬,©’ìuä¿gÈ¡òÊ»Ô)zâCÃù83äÌG›NV:yC]ûöîæõ»TN"’Æ"™Ü-'L†$ù$
+cÂE8¹Ë'BR6ýçî·×ï““„¤Q$°ˆ‰HÐd¥>2!·e{¯ëŸQ¸§xæ„gŒ’4LŠùb“4Å_>–NRá‘ÕÇ)¡’>IR)Qòµï^MgBˆàaÊ“@™¾ ÚºÐNwk…ùt•‘ÚãŒ.§<º
+G‹ªØnÊY™c§ÎVªE¥Û) p…..tYÛäQ\;UÊt­r2ä&°\r°J@½$ž÷’qÿ_oo»ê¾ýâú›ì^é|¦|ŒŠÓqé·(»Ÿ˜é7ªÈöc0B?Œ¢ªjÓêe¹Ýœ@ߘîm©Æ F~‡ØyÑtÕ¾†ØgËN5Ö©â3‰1ç<–IXÏÚ{Õ”¦uÇOÕþ¡tÊ.?£³|—• ur°ém®9øŠ‘©_HU«¬9Fý«\-Uiüeîß@à<îBrÄf~ØÛr7¯öDÙÁ ¹ÊÎäWÂuù’+Ç<ÓHYéN|¡Ku5_AðLå¶(ƨ øÆ£1ÏFbžå
+:p¸Tæ·~f^^"!R04o¹µ[ô ˪(€ð§îmãìÜ >a¿­6ÊõÖ°ùªépT5تM݉÷´gNf„K`ø3Êànš„AåÄýkµ3;Q‡5º}uÅÒè2<"2v<½rbxYÌpsµ}Ú(¸ÒøÁ…0Æhc¨cêWN ù¤Ë•é'AvkªQ¥Qç” ­Øwñ„o-NlQR;Õ绲˜9ö!ƒvÞ8·—A…·]È]PÙ¶UíÅKk“A¹×h’<¾ÝZ 퇇¶ÊœC2Þ‰Õ,œyÇž=q8¿g(gçÄÊ‹¯Æ‘Ï>åNµáEÿ<)^IVÃå˜{Vù\ït®úÀ/{×ñÔÛ@`-d²Ð7ýŒ€ô‡ÐñÝ¥üq!×zDAÿŸR.þ“R~¼)³”ð7KßnGÔ\þ —«ð,æ^|ä
+„gFyŽmº©]¥óùí˜/<sÌù+éìuxüìÚf–0J¿‘ãož£[‚¸¡ë~x3™E‘eYæwÈÔÔ¨ƒ•@Ž+ ¡ø‹¢ÇdB˜ùAÓ½_€;v¦ÎÐk´"F“àAO CÃA§»B!(ƒgÉ“"ËÁ€ˆÇ}¼µó&Ûä1%!åýEY3 y°r‰j,9øÒ[§{ºîžÂ½g­ep4ÆŠL<<‘g]æ|Ö¶•eC ~tò]Ös¥6ÄÇQäjü}yŒˆKÒ'| ÔüD]c8¥I‘ñ% Vâ _²8&q(úëžôå9hÇ6ê¯ýHCú°Ö ÃÐÁ1³ ƒ3ÎÃA ^4\>7Cû 9bQ{!̽pÝ™‰Á
+endstream
+endobj
+3006 0 obj
+<<
+/Type /Page
+/Contents 3007 0 R
+/Resources 3005 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3008 0 obj
+<<
+/D [3006 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1674 0 obj
+<<
+/D [3006 0 R /XYZ 153.694 159.352 null]
+>>
+endobj
+3005 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3011 0 obj
+<<
+/Length 1618
+/Filter /FlateDecode
+>>
+stream
+xÚ½Y[o£F~ϯ°­Š¥˜27`¤ªJ·jWíã6oIŒm< ÀqRËÿ½g.ØÀ’¼Ù¾˜a˜™ï\fÎùÎØ›­fÞìË…gŸŸo.~þñw¹ýÙÍr†q}Ng> \LØì&™Ý:‰(æ :B&sä¤r5_B\ª'qêµ°9 z±cMW¾4cS™ˆçfxTÏïoþ¾ð\B” êñÁa[¹žO@L-ÂZÍ
+¢³p}ªE ]æóø*Å.Î7›H&ê­Zç;mÃ[rëÝï? šEÈs9ãG@4ˆ—‡¤ x.·€°L¥Höÿ|¾N“çJd×—ä°WŸ¡G”¥Ì¡{}‡aì²}ð$p Û"ˆçô–µ(Õk&ê^¤›B5ãJFØi 3§-±ž%óyPN‹Ý—“Œ“°bY_"Õ.E=OÁ ã0Ò¥ÜnN`¿hIqêiÙ|E5–éØYαÐS€üs6Ñ£¨Ó:úL ¾²ŠË´˜ ~d´­×y93<bòɘúLCä>í§Ã%™÷>àþT¤˜²ìˆPu˜w~?Ö:éà›§«ò†7+Už2ͯ_.äI0
+ªLÁɦ Ê4yÃL™‚“ ¦XÊÝ€+ºƒàÌ[ªšV=Nz$žÀAa6DzçA,,Í€;y»u«/kÓÕâ}Ô)¢ª2¬(Ög$òt4PAÁ6¿jùé°Nd²Ïé¾ =½hàz'V Ò¡Ar‰©ïbÄ,»<fFÎa—ß­)ü’ÑqüòHh€¦­E”ìÒ¤^ÿª:þ½~?¦Ÿ4IWJ:
+ù”–¹ÜY+J›­
+!£¬~Y0ï("ë‰Èú"RÓ1…)ù#‹:‘UbaòñG®Ã~’*dœ*¯5¯(22( )RmÞSd82ùlf+ú —/·ø~JQíû£‹U‘eiQpp’&èX߉úÃJ楨Š(Õ¥©o·RíáI YÈ ]Ï;U ¥XV½˜„_‰Í}¼ðc«ŸŸíG8úç¸2ð¾Ç•ÙK™Æ?Æ•ú]àue02¶€a“´*²èåõÒûú£J̺!Á¶ÂDYÁÖÀ(T6Y]ò~u‰6†àoͳÿÒ3E”ï¨k9rŠz[
+Ó£reÕkñ™³‰â27ÍRlÄF±f{ZVfb½†…ì"ñ¶,-7“ÌØÜü>š>s_Ìþî;éƒ)n™¡åâ§Ò¾¦ÒZžÔG==((1zVyëZ“{©ÄÛ™¶©mýG²sÁk^”Å›Z`—Ök3ñÎÃÞg¥F
+endstream
+endobj
+3010 0 obj
+<<
+/Type /Page
+/Contents 3011 0 R
+/Resources 3009 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3012 0 obj
+<<
+/D [3010 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3009 0 obj
+<<
+/Font << /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F94 1713 0 R /F114 1729 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3015 0 obj
+<<
+/Length 1488
+/Filter /FlateDecode
+>>
+stream
+xÚ½Y[Ú8~Ÿ_©Z ¤âúšØÒjUuµ­´]ÞÚJ›Ï J2™"þû_$ ¦Ó}Šãó>×€£ûGŸn°~˜Þ¼û¨x#•0Mï"ÂJb‘ ÊD4G_FŒ'jümú÷»„ðH"ÇܼL¤$Iö­¯„ñ>¼_§Oë,÷“y¶ÖùïfòãýoND nâELFJ¨=œÄƒá,B–Ï.ɈüĹ²ì3ÝŒü^-³Í1˜¿ß¬*i§ ›4
+Q…õ©B$±Ú«²Û™w{yñD1<qTÂÔ?º‰& F <KU‹Ålþ4+òºW*¨¢"šÐØhÊJie’ˆ†b8”Pq=]ƒÈé˜ÊÑóf<‡®t=ž0ê…vƒ¯˜â…]-–yº¶?'ð³À Â˜ªQåFăžÃÞ'nç*ËýËõ"õbíé¶(ØR¹R·ZÍÊlS?”:ËçúɯèYÁ^GõñùÈÑÙ¸š »³=.tn°Qfà£jLF›4¯Ü,u‹³bõ°ö/Þ–:]¢¾ûO°×Ï•¼¹~~ùúÍ¥åúqV¬×i>o_áòmÛkm^D×ÚÄ0Ã_ÜÀœ bTv^e?ôvk†xû†ìvvé.[íB >¦B^X*C$'ƒÃb¡Óy¥7*Ëk]ƒ3)xïUÎK0øZL{Ýw.µµugáüX±®ãñ8q–þ'p][¿ΪyÛ›„õ&0þ'äðÀY ”y4*{|ŠÆƸh#-<c”ÐÆ
+Å }kWZŽÝûDÑ&¢Š¶÷e-vΰBìJ’ÎîªÅÈÁÏŒ\(z;œ–(Ä0 äƒI†H¿äƒœçƒcŠ$WWòÁÁÐ1ãý|øèÎ!×+ýÖ“”χSµ R<¤²%’´— z† ¾ÄAÈp&&Œ+”(? ø»¯ÀÜñÙþøìaø(›kŸš¾mºt/˜4÷¸Èffeá~z4ãÔ'MZUzî¥^#l# ~øÙêGŽY!Š ¢º)âDPè. Dãf+$]Ôñ(bÀ–ËX¬ yêʌՎZ!YK ,DK  :ÿž•EuX½ÔÕ=ÄúÝÉ4ÙÖUoAÊÄ”<¼Ÿë»ã|¼2IeûRc/˜Ð£ÃÀÎçäÛ¢XZä Iù„l˜ç’ò É|˜ä«’ò ÈEÎ.ÈâagX§årët×Ooù¥^¥OAw‘ CÛè<]ÕÏŠ›V…µ%¦K9š[5.kÑôdJ 1„Cu½WkïÃáÆ—I´Wu«ï³ü(œ ÙÏ¿\ À$à¨G1pàÀå󬦃=L¯VÙ¦Ú”&J¹Fƒ¨˜­=¾ÏwPÞ7&Ì Óöf,Æâ÷A«ÔwUž z/¢‹7<¼ÔÅÒ¶éÎ5Ó;.ÛÁ;è¬â'¡…³KPR©fnñ«zªÀÉÕæ ñ¨±à½É•%,lS—¹šžb·þ}H`ð!ªÚ¬Òg[b„œYýº>NB¥NöqéC½(ÊF®û5†rè(íôq”BAîŸÂ-PP gÚ
+ÇíMƒ:8ó ¦v©ci@œDÎæÊSàMgÇ×4pÅp‰Al°D ˆ‹½lœëZ˜âÖb®bƒcè[¸ìgÃõ/f°oßhÚ¾aÄ¥#‚'nHÕ)Jº`C‰€J
+endstream
+endobj
+3014 0 obj
+<<
+/Type /Page
+/Contents 3015 0 R
+/Resources 3013 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3016 0 obj
+<<
+/D [3014 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3013 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R /F28 1704 0 R /F123 1756 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3019 0 obj
+<<
+/Length 1405
+/Filter /FlateDecode
+>>
+stream
+xÚ½X[oÛ6~ï¯ÐË
+Iä­
+ï/GÇ‹%ÆaäßH)äbI³Àÿ•µm¾cíâïÕ/oßãÌËP‡±fƒ‚DÖq{1IQJám oiè³Å’d‘¿–,¿SGê3Ã\QkÃ|ýÖDß™C 4¾¿†Ð²&—yÇ :ßHaïìÕ}iå”Ü| dÁ¬ÃÂ'E¿±Ÿupé¢AAvb‘öQ£4ÃÆ¢Šñ]·$ð?Q ¥Á¹w‹0õoŠ Mlí»½’f~-´’@ÚJöOϸºÒU†Ö·¬0§Ñ6}9ïÌ©æ7ßt}^Žå !ï„Šþj_Γ6
+S”¦M®¬ˆ#_‚YÛWy,-9W?Ôo뼪 ¥mKÌ´Æðª¬)”.÷ê«­iæcaÙ´•PT­³ ÐÀTEÛ—œµH©>¢öÉ/Šµ íñ
+Ý0PõOÓþ¨§Æå6(VUç™~âûÖe˜¤Áu;Šo{Ô Eðé4©–úaÀX·zÿ‡Ýß)í)þ_¦Äó.}€Hnœ§Ä±MÓ—®,F°KÊÓù‹ÞûVÏ„–iE€Î´ÕmYÞõÃfVñ³~Ò%ž3ºÈe¼gÓL>]CÔÿštªˆª¯ùP«†±’MÖŸ™G‡^M_­Ý¤Âat±Ý¨ðsQ_æ@¦Ì(ŠŸ@/þèiÙ3Ð÷ÕK‰ú>ò‚}¦¥µ«PeËãv À´±„YŒ¿.6]gœÊÞŒ¦349¶©@HáT·œ·‹é0£)Ë0Cij=Žc|vçfõæ?BòÇ
+endstream
+endobj
+3018 0 obj
+<<
+/Type /Page
+/Contents 3019 0 R
+/Resources 3017 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3020 0 obj
+<<
+/D [3018 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1678 0 obj
+<<
+/D [3018 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+3017 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F114 1729 0 R /F94 1713 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3023 0 obj
+<<
+/Length 749
+/Filter /FlateDecode
+>>
+stream
+xÚÕ˜Ms›0†ïþºt¦9XáS·43Ifzl|k{ÀX6ÌÔ’+Drðø¿W ¶C $nN[«}YùyµÂB+d¡‡‰Õö‰‰ù´2·åå‡Éílr}oÛb8 ÄC³%
+vm†ˆO±ãúh¶@?¿þ²]ïñö†+5—òê÷ìû«é¯ïP—å“x{®‡¦¶‹ƒb
+×÷­<ò4Í°O˜™£J$øs$×ëP,ŽÒn¿áGy¦eøÔ¶pàשì¦TÅsS™Éï”’j{'"™ Í_\M}Çùu£¤æ‘Î/ç|•ˆTŠU~“nˆÞËL7)ç‰hTYf>Ué´«\S‡¢Q‹QK©Š —ßlJd––:MÈ¢Óm×¹}4“ÖMæ<‹ÈÖ'ÚÖÉ*.Ë5¯¾JÓdBtyíº uû“Ž;†Uüöô®—óT¢)!ز“×”½fPõf aP¤Ÿ‚A6ƒ‘J6:S¼ ˆ_Tÿö} DpÐ.¸Lö7“:Ô‰»í·ã|§ÊÜlx¨j—f-*Ç
+‚f‡"'­^¾âJÈÒBÅÉa÷Ñ^n8¹ìBäF½É †AÈ¥ÖÿO.µG 7Š¥ÊR(ºE”]ê|»'ÏQé¾/¼7êÔ»½½uê¡Ô¨Sò è¥c¶éÀîü [†Hîp²àç:sÞؕϹÑÍëƒüY€Èír®‹ý’×$wZ|spÓ<,c岚À0ë°ÉÄ­KÚô™}!ÛÐ}mƒ9ClCClƒ¹f[d=ÐVÚôÎa·½…€WË>âòb‹u8e¤=^ ¨e!\KƒÊ  À uÈËPŸá<ÅÔ 0cåsØÅI¼Š¹›Mþé×ö°
+endstream
+endobj
+3022 0 obj
+<<
+/Type /Page
+/Contents 3023 0 R
+/Resources 3021 0 R
+/MediaBox [0 0 612 792]
+/Parent 3004 0 R
+>>
+endobj
+3024 0 obj
+<<
+/D [3022 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3021 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3027 0 obj
+<<
+/Length 758
+/Filter /FlateDecode
+>>
+stream
+xÚÕ˜ßo›0ÇßóWøeÒ*-®Íc¿M•ÚJ{\ó¶í‚H]’ªŠò¿Ï‡%)\Èí Cì»o|w”!‚î'¤ïŠ™½dì­~¿ŸÜÌ&×w”ˆcÁX€fs$8ö)G,Œ°ç‡h–¢ŸR?x¸ù*y\­®~;½3}'Ä°ˆ|^ "øšR‹ jŒø!çõÚC‡”ãqk¥u¥äK¢‹X¥{Ž×Ÿšå{ž¦nù”,BѺ]®¼ îﺲÆoÑf}«½T•42½š†^øöë³Ñ•Lªzø(³B­¤)e}W>ljlæ½U®—UsSJY¨N™ÎõLAúeféXuê’*íR5צT¹{òld"ÓB9so‹6ë ’KË­õXߥV™Z.Ô-Š,wËã•{ïÛjÛYe3
+Ímêtã*É!í£ T
+endstream
+endobj
+3026 0 obj
+<<
+/Type /Page
+/Contents 3027 0 R
+/Resources 3025 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3028 0 obj
+<<
+/D [3026 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3025 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3032 0 obj
+<<
+/Length 882
+/Filter /FlateDecode
+>>
+stream
+xÚÕXMs›0½ûWpéLs°Â‡$£[›™$3ží´=`mÍØ"iÆãÿ^aŽ 1ÈvšÉ „ÑîcWïí®]gî¸ÎíÈí»¬¯®#õÒÜ~»]E£ËσNÆЉf
+X™ÆZï ÈX% lÈ"›/dÑJüV"œ “SD ±ð]ˆ
+•s¡ÿ_˜ë?g®:ž¹08…¹j
+Q…Qñ™ è‹}Z>ËZe“ÄR¿+ÌC*©igÓ×ì€a¢³åÖñ<m Eäø1ôI­èˆ][:êw‰Cô«>Þ¾ŠBPº„ædý-×ÑèÞîʱ
+endstream
+endobj
+3031 0 obj
+<<
+/Type /Page
+/Contents 3032 0 R
+/Resources 3030 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3033 0 obj
+<<
+/D [3031 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3030 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3036 0 obj
+<<
+/Length 840
+/Filter /FlateDecode
+>>
+stream
+xÚŘßo›0ÇßóW M“Ziqùéo[¥¶Ò¤íaÍ[ׇœ‚”f`ÕåŸ 6 $-\X×'À2¾/çûܱ­'˶î&vßauµ-©õí»Éõlruë8¾EÃØ·fK‹Qä9ÔÂA®X³Èz¸øéxþýõg.%‹ËÇÙ×£å¯n™oaĈG«E|‚|Ï·¦Ž‡˜OêE<ŒêÝ®A‡¢
+@¤ÑU †»Š ƒƒþ–8-WQ# tïPwŒRå4Pq¢Þ{8âtFý1‚Ng4x“"†láL_ê
+R ß!/u;µC0 0¢>ëJfŸéÎôƒóa•9£Y=Ú¹ÎkOæ­†°£l@’oõÛÍk¢BC*Væ÷A–ñ¹4=dñÌ9Džwå™sHÊ`Ž4TjbPöÔ\f15ÕÅ»©E•‰)vÁ§þÔ¼s3›ühXÑ
+endstream
+endobj
+3035 0 obj
+<<
+/Type /Page
+/Contents 3036 0 R
+/Resources 3034 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3037 0 obj
+<<
+/D [3035 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3034 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3040 0 obj
+<<
+/Length 1036
+/Filter /FlateDecode
+>>
+stream
+xÚÍXÑŽ£6}Ÿ¯@ZUêJÛ` OÛmwVíãnú4»•p«`˜ÉLÓü{ &!I±M§O8`|ö¹çÞ×Ù8®óéƺ¢®®SªŸzøùÓ͇åÍ»[='!ž³\;¡ºØ!~
+ËêJövß]§JŒZQ;.·m¸ÙÛV©Vrƒðuä–ÔÅ|¹A4_n
+ØRn[Êí—ºHyLåp~k.¸ä¹8-˜® Ñæü Ä‘š¯ifdÈ»>Y(gNNËN­Æ‘ VÔ†³AÚȘY´Êí ’—R|à‚
+endstream
+endobj
+3039 0 obj
+<<
+/Type /Page
+/Contents 3040 0 R
+/Resources 3038 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3041 0 obj
+<<
+/D [3039 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3038 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3044 0 obj
+<<
+/Length 1737
+/Filter /FlateDecode
+>>
+stream
+xÚ­YQ›8~ß_t:5‘cì·ªR·ê½\ÕFº‡¶œ WœÝ¢ü÷c“B6ö C`¾oìñÌ7Žë<8®óáνvE>\]GÁ­~þp÷ny÷æcêp$|Ÿ:Ë•#8"˜;> G˜³Œ¯³o˜Ð/ïÞJ¥’øyþ}ù×™ù7÷‚:>áÚ %ÔY`‚ Œª¿íbŽ˜ÏÁÊ*“OQ¾Ù„YÜþŠ¿ïþ4:` ka]$˜8 ±!4/@‚“S4°ÿ^©\íôM¡òJF•b˜V2«ÔVß–EÉù‚yl–å•„iš?ÉØÜ$™¹þÛûX>ï [}Âþu»å:)}©I›a¹Îë4î‘Ë£¨VÈŒ—kyBÊ d&UX%¹å­òºJ2i­¯Ã)̃ëÌ-ƒM˜®ê,Ò¸2né©­Ä2•@âá0½fPÉM‘«°}k•¤-MˆûÊZ¶~È)Ìùuæ‹E’+4i5Åõ`ß›W¸p0†o™gÂ6¨ç7v9çæMÌæ ŒÁÁ¿ ³h”ãÙ'•ÏÄ›E²,õ¼ íÍ—S@Ÿá‚1D¿ÙU„‹ã>IVÑ:W1„ûtG ŠØÔnú§6Ó­J¢[,.(
+\nM²S“ešÄ·ØÔ4éÍ ËZÝhS„=oÈlª*0OÊêÖY¤«d¡«.ožÙ`Èl¥Â¬ŒÂ"/k dy7½ÈU…O•|®n[0Ž¸'c+Ïš*/ÛR¿`vq:µ½
+·ûâîX2öì/²v*¿zþ$»€7¨tu¼»\ÏúòVnŠjûD°_õË-õǼa~)ú1ˆ
+ˆB]7ŒøAç›÷Ë»ÿQS2¹
+endstream
+endobj
+3043 0 obj
+<<
+/Type /Page
+/Contents 3044 0 R
+/Resources 3042 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3045 0 obj
+<<
+/D [3043 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1682 0 obj
+<<
+/D [3043 0 R /XYZ 153.694 573.805 null]
+>>
+endobj
+3042 0 obj
+<<
+/Font << /F114 1729 0 R /F94 1713 0 R /F89 1710 0 R /F19 1711 0 R /F113 1728 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3048 0 obj
+<<
+/Length 1106
+/Filter /FlateDecode
+>>
+stream
+xÚµX]oÛ6}ϯf4“‡™I}‚íÖbÅ€Íoù@™’µI¢ ɱ3/ýí#EÚ%&;ô%æ½!Ϲ÷êò’çdŽçüræé߷˳×ï©ï„€F˜8ËÔ~
+„t\Ý)T=sŒœR¢Vl›ð²Œ«•´þ|{q¨ö%ºî›þNVþ•E:¡YÉOµö3µÌÐÿמP÷lD¾kbÔ ©,ºŠxf]•æj¡„@ˆpßT¥°pB4(
+Ö}‘¿m'Ì?4Æï/vq3R®ÈŠköHlXˆËùW9°!¡†/pZ~þ¥/(û$ñ<;ŠŸ¾ÚQÜ|…Ê\ÎfðÚF#ˆg¨ kY×å]ÁZóÍN<ÃÍ>¸=½ŒõG‘¸ŸÊ Ú”@•±ß¯ÂÓGe•³¡(TâÆÙƒÛ`
+B*^âdÝÃïJ äoq/…ViêGžîDñ¦[ó¦•æ+ëîþÅ5ÏÐN
+J(æàÀ¶Å4¹†‡`(7úcÎñsãø {À| 
+endstream
+endobj
+3047 0 obj
+<<
+/Type /Page
+/Contents 3048 0 R
+/Resources 3046 0 R
+/MediaBox [0 0 612 792]
+/Parent 3029 0 R
+>>
+endobj
+3049 0 obj
+<<
+/D [3047 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1686 0 obj
+<<
+/D [3047 0 R /XYZ 153.694 489.126 null]
+>>
+endobj
+3046 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F89 1710 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3052 0 obj
+<<
+/Length 799
+/Filter /FlateDecode
+>>
+stream
+xÚ½XMoÚ@½çWXB‘ÚJq¼Ÿöö¥J*U•z(·„ƒ1 ±ê/­× Ôâ¿w©#vÍÁšõ{oÆ3ooáÞ׋ {¿_\ß êq_„$òÆsQæ‡ {œ…>&Ìϼ‡$BÁÇÉøÛõ=BÔ‹|Á9µ›)÷#D Òf×#"4/íÛÏÛ?+9¯íêFæ•^ÙO2«ååé€õªCºB/˜èYÑ+7{Œ²}Ö<—³4ÖÒ.žUºý`Dè¥.ÝJZ*èP·
+¢^v‹{žBÂ"ŽÉ<ÖÂIÝ8 ú¬¼ûñ}sÃ/§r•¥…¬!Ø|‡¾ˆzìõ\·å5\xÎJU²ÏI™çq1ëR#‹Y]‹öÀÁ¯UÊ»8O-Ù• -)«•JOzs¡Šˆ<èŒû‡ûb,Q–&²¨_TT*-´‰~¸¤;„×lƒî@BŸˆhŸÍ<´…*›jºÛþªí1vƒ6ÊÓÂFóv»ì´7‚ZË*)›BKÕZž¢É×zÖÎÁÌ­sfrþò\cUËÚºîµ{_ÙXìÕv„ÖÜM@fà÷ئr‘¿¥‘2B#ÜÕÄf éd:EßÉ=»cîÈm£‹PË¥.J-G&Íæ9°
+Ià ŠÌdb fÊ ~§ÖýE™™¢I ¢`§ý²Ïe^ªô|@“‡ ˆŸFhR—Å+8Ý`ߣÈg\ÎIv_ÿ/Ÿ¹AxÂìÇ|³ŸE¾å¹bؼ½ qqpÏÝøâ/{, ×
+endstream
+endobj
+3051 0 obj
+<<
+/Type /Page
+/Contents 3052 0 R
+/Resources 3050 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3053 0 obj
+<<
+/D [3051 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3050 0 obj
+<<
+/Font << /F94 1713 0 R /F114 1729 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3057 0 obj
+<<
+/Length 3441
+/Filter /FlateDecode
+>>
+stream
+xÚÝ\Ks¹¾ëW°’JBU­±èÆ»¶Re{_•½%ëœÖ›
+EŽ$ÆÉ )¯œC~{
+d°Aãã<Ä#Ťo+}¦·Š‚¶^ öãt:Ýï©8íXï‚Tïò~ª eqù” ŒÜš«³còµÌÔÕ)ù‰k›?·"Ð5I™:«yÞûã~‚.èÒˆÞ‹K{ê,bSïg
+ÞÐ
+èEÄOÓþC6]ÓkúúÓô€Ø%§Ë
+±y6“wMA€ë´Õ‹¶j5¯Ÿ>ö„(.#J§¤±QžúÉsý‹†Ð‹€ŸzðŠ˜5Õ›çˆÇqa} äø+øå².Á ¢K[æPÔ†”[5Pi.úk
+Ž:[ç‡ÁaXKCWϺ*µÙµ’g]‹”j ‘Sm™C!­S($,?%üC#™ãšâË”k„þß)[LÄQ®K¦žêÈF$€²k4!‚=j;•¡¸0ǃÀãÆ·“†2Í"ÚÖ픚i£âvòZ:¤†A0ÚÚ8+¸U­+ oý:Ez¡bD€Â¤¸\(›fE§s¡-ÁPx‰éìÛ å/ øàrPAáí‘’dhMÜß ˆŠcUÚc³ºv«?ßéè`ê]ù狼­;·àMÁ¼©Aì¿A q2“{y%!›t✓Š˜„aîá=—üB›©P m‚T©úˆB‰½¾¶¬ˆNŤŠÎÿM§|˜Æí=ófï¦SÖÅáBåÃx¨Ç;CDŠ*6 æc4úì|˜“ùhˆc¼˜íϵ{F€þ /ûþÝÕ¿¯¬m(ºa#`?\ýò+Lèw??àƒß“^ûe0ÊÙàç«¿¶ð:¤6ÙOÀ%è“\KCŒãõôcq>ÿFKò„µuq‡Çá¶Ð‚êäaK¾TÛìauŒ]È[ríZÖñla…´™µCKã‡Áá
+ÜD˜ÕJù²ìq4K`dF)4ʾ–â!Y‡FÙ/^žákZfD£JôæûÏnyºËŸ Õ·ë¢\–ÅìqR¬>L—û˜ò]kJH¿Bõ×óAu~õ÷yF‡>^å;ˆŒÅ3@LJ¹‚³(2°ÙÌ1µf~%ZQDÒS®;E-D‹¯lníøly?ZG³Ëœ#Ú ½ÁÈKB4ú#Wçü–£›éø².ʧM¹ßÆš“ª$Ï„7ë·ÅÝtþÝbüøPÌ÷&üV2‰;ìB…³‹NµÖ¸Ô–›_?ŸCÊS›ÐiGîªsÿ„ÚVãÇõýͧßåäj,ÀîSctŒB÷‹ª±ÔÁnò;½›/ÊâÏdc–ì~;·?ÌP’—å‹+Fz¹ÉתXbª­¢E‚ü§\2P]8­€z#ÃAR.í»©9iV”½í˜ãXµ­Ú7_Hû"ï#I¾MæÅjõ™›>…íÏNƒAb:+€kJ‘Rq"ÅáOèNÜrގʲø®˜MV½ê8ZãÚu)4ÚKZ3€cHfÔö*\Mþu
+§Vú“gÙ`wW¶‡
+“x,$“˜è+†Èu¡Þ€BË0$šÑÊö…”c c„εg"ç˘gÛ³”´ºéT’©mŽ|KNc¹Â\H>©ÁC8Í€´J MÒHcß~ •iéu¤³¾¦Niú% &o
+·ÞjH×<oÄÖ0„Ü42¾ WÅIÁOj÷Ï “íûØ®æ¸,FÎéôÚsL®HÔ6u`Hßó²ÿºTÞ‚î"ÈØmC‰©°¬c/Ð(õâпs ÁŸÈ «›óá๞”£†~8 »4™³‘D Aƒ;|úí!!sÖ€{òµï‰°&ÆÍÔ£ü°,æ£ÙúSßNÖßµ£
+Ú˜Nèé/˜t«éÆ€Ôé už­îJ¶ü
+)+Wà›ïCQØ/úmÇ
+ª‰­º©Ëø…J¨¸¿y9?ñb톾_/GwŠΥ]¥ø“vt@o]Õž¨Ô‡*u*t*™êœZÂ9 Âm85Ê 2~}Ä%Œ6óð7n¬ÊøBŸxaS!FËÅçºße¬n/€SŒ¢Ò VNÀ*ò6º¹ëñbR,É»“¶#D€¡•å(@ßR“±ªï%¶ˆ:W7°`ÝÖÒ^$¤¤ñŽU­.¯(}NÝ+RÛнâûTpW«i^Ç·¾¤Î]Q/{\RÇŠ_.t¬´-#Ôæ¢SH‰±&ê£Cž[sª?Øж”à Ó5¢ô7Xü—«´TÕ¨fÍžŒ#×½ÃR&DpᎥ áo¸ci\uÕÙrx¦$› )á
+endstream
+endobj
+3056 0 obj
+<<
+/Type /Page
+/Contents 3057 0 R
+/Resources 3055 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3058 0 obj
+<<
+/D [3056 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+1690 0 obj
+<<
+/D [3056 0 R /XYZ 153.694 667.198 null]
+>>
+endobj
+3055 0 obj
+<<
+/Font << /F89 1710 0 R /F19 1711 0 R /F76 1706 0 R /F114 1729 0 R /F73 1707 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3061 0 obj
+<<
+/Length 4022
+/Filter /FlateDecode
+>>
+stream
+xÚí\[sã¶~ß_¡Gm'‹àààÒ§\6™L§6ûЙ$²MÛêêâJrç×÷€ Q")Q¤“t¦Ù̘–Lçþ ('9ùæÌ?ùŸ0“MøµºüÇ7o¾øøæó
+O>¯ì‘¦
+Þ¾#­úOÚMÁcƒˆ 
+„14!öçÒ›.A{@]!ƒ¿sÀK¡Ðê!U/.8+ÀÙ™l×÷÷¯lÎÚƒôåÚ¯hÚ{áHмê$êvè[ÉBËömù¡ìÆ° ‚Qþ5¢üiÙèèj‚>ptÏÛ?WbÅíñ³œï2:¾bõýôçùf½ZV×»Ò 6Ä÷£XW[
+˜qíaQ‡]ë׌ŠÚ2¢SW‚çíýzµëT&²õSä…y}bi s°¶Õì‚Ô
+ëÅzs³þe
+`‘»]ûòôX¬zéJ³Jsúò›ëóÖ#Û Õ=b1γý0öÇà íÑGCðcÌóU©Ôýí³™ Ñ>Á…ò8¼¦}‚ åq{BÑßÊ
+ÿåõqÈ-p2(öeÀ‚2g´ëTijàLĸà1_¥oM+Ú taB»X¢] Êó•ÊW&_ T A¸ƒ~ê]qÏ åûOÅË+V‘­5càŠj¯%J¿¦ìß‚{$ãƒc´%îæÛÛMTq¶R—«brö³õˆ#hÂÀ{Sìò\tÚ_÷â5²V•¯ôѯx?[,Ö·g;~´:Ë;ÏùõîMú†½ß>®;Ä^€‚~Z”„ ¹xÈ#Á‰Q BiXP¬[Ò«rÈûŽ®ë5°çlñ¼†ÎãàBjt•θ!E\¥P†Q -ÐàQ ]n*sU ñ˜üe±y(V·/Ûk÷(Dzº™Â†Á^úï>ÝÁênßÖ»\äBÞÎÐ…žÔ„<»¯4ÀU¤Q·šqYp.t~(ªåIK+9–w\,@¼‡/U\I‘7ùSïZW2~?é¡ ÈtQ>­dt^ŸwëJĦ¦)­TFÔxÉ+‘ËŸl]I[¡I+'›”£Ol™¶,s•Ÿ:uMxF«Ùà Ûú°ÞÁºÂÿÿ\l¶Å¸1üu1ïT—6³û¡*€2wÉŒQWM¨œî,ÔÊoϤn½9Ç.É_Í9¬íáÂüi÷¼)†OÐœk`°aÙËòNË¿g=©LNärë:Ôx/ñ.ÚA9W—|‚ÍÖïd¶?ë³ý9h³?m™³{Kvi²/m²?F¶Ùþ4°?M^Ò5û ÅÆúݧNÓÒˆEÅ)y=Ÿµ>5™
+'¨ÓÚ{§™ÆX)Ë4>lÖÏOã¼vrÂ
+’Ž"'þKÐ{ƒk¶ÕCäT¶Ï%PMÀ1‘•ašd˜¹Ø0CÕW!
+XŸ:ˆ’œûÐ82tÑ ¥¦%Qz…xßIN86gzVB¡Kæ …UlogOg«WC2@uUëå8~,þdr¦ÍÖ«˜RâܔרQŠQ¼Å—ó¥ÕÎs!MXŠP8æ
+aý Jw,ïC(N;:—½rB²‰ OÝêtpx@!E¬˜¡äu*»g£7av:„œôI? g
+ÝG<<ÉWnö|²Ý­ýgåÆ™š“nÁ%Ç{ÁýòXÎB\0<õ‡‰ —N󧺱Yy¡–pše®w1+ŽìŠÕÝÓz»[<ßuŸã;mnéqVwª Ú†ìÅO ‘pM“…C/a²vØ<2Ã÷ôöÁ§T§¥5'´oŠ³¤pÈÜՌv ‡<šNœ=+]õEå°sÚ„3YÕáóz‡Ð磭ÞPÓì^9Ïäù'[®–û¡g‹ÙNO$tÿþf¶-Bá\ÝÇ:á|h©Š&ýšŠq­†ÝlÏÌÜ]V}ºv°^®¶­Årž‚L½ç
+À”³ÆÐR´î àw?gG]ùì»ÐUžï:aHÞ4œÎ”<cN˜áåÀƒÑÔû8ŠoкÅl7ö¨Å…’ÅÝ«&·ÒHÂöey³^ô‚ zÏ#Çg4ãŽga ÁÒ Va«áL2 S[懛+Ç°;û:<'Â0¼ã|:Là!¿XÄ=WYò“ò¡S^"LæÇæ>Væ5ÇOvïµ›™3Ô$–ô§ìÐõ ©îÞ·Z~8û Â‘
+òüö(ˆfõÂÐN±º]ßyùGÙ16Œ®:òÆÐFAF MIûBV@2ÿFù-®_œã³i´K¦ö~¶œ/†M&ö+±•”+æ¿6¿/å['Åö·¦¼<æè.‹BÎl 2#L:숮ßZ£K`Äãì©ø?vçÐ][CÚ
+HçÝ¡¾Ð+¯„ŽsL_j›2}iî‰éK=xtFðu¡-­œ>ôu›bvû¸›ïÅëûºÚt̉¼8űÔpxV+)È2«lh<Ëp´æª¶ºÆzJé0V“ fN6URìQ²óMσJ:žTª©àÃnvs Ð+߶ä\CwO‡ ‡gýÆÁ0”Džµ«žüÑûÎÐË41¡,Ú+¡çÖmbÆn3[m¯@Œ>º•kh·…Wo„„\¡aÜÕ<ššNYAÞO”ä½`dË·}ÕÁ5„¨o_÷àZ9ˆàó[«l¿ÛÁ µÚ¶g«‡Ùý™7j (å+szJ><ìp²ÕyþÜýìõfv·*¶Û KÎZ#ìÊF¶Æ47ŒáXxYdVHUõ™øÒ˜a%4šUŠaåNïŸýµk›J sNœRik¥×Åý,d¿­½«V>åÝKz·^^ýBþ&¿ËÎ(uåéòš{Ü<wGÝc.U‡‘ÃeåàµX#ãÆàØ9(Äøö«ƒ$<§uÕÉ8Ü_™KQÙw¥8–è,ÅÃ^^aZ7ü¢ó•gÀ<Ž¬¥5CÛÓË4]9ÆjÂK\•þê²£ Ü3í«¸0j†ùɤÁvH“·ŽÃJ™XMÛ–²Z ‹[â¿ôù& y)möŸv,ÅTašÇ«¸•3|¨òŒ åO]Ä
+endstream
+endobj
+3060 0 obj
+<<
+/Type /Page
+/Contents 3061 0 R
+/Resources 3059 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3062 0 obj
+<<
+/D [3060 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3059 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3065 0 obj
+<<
+/Length 4111
+/Filter /FlateDecode
+>>
+stream
+xÚÍ\K“Û¸¾ûWè(W­ô¯[*U»©ÝÚªTßv÷ Ïp<Šg¤‰D¿òëÓ€J¤(Š”(¯Ëqd _wý
+gÆYå½›Ý=¿úí=»—ÿüEæL²íŸÓGŸ£™â÷žfÿ~õÏ©hÌãd<ÉX^¡‡Ý”~¨°ÐØ ¥±ú}°^Yò¢  ¤ˆm4±ç9íÒ#É#¸ü®#3BÈy±Ù”cdÑö²°?–ëÕ8ËÄr
+J[èàc±¸¿Ð«™¼YV2óiðfEÄm¯ÆÆM„·(€ÏËûò±WNy2WÃ/A.k7Êà9T›Ý”´FÄ¿1£l¼NÒ ÔN¬ ‹û5äÚ’æ À‘B·Bÿ;iøý—§¯›åÝ9Ø9J›U ÈõàM4×ñgƒñF"Q×VC§'²ø›âa;Záú â]㯻œ½j9cŠáJ]¬ˆ;GÞ°÷†ƒˆ;‹7öâ{2q¯):;¨‰»¦šÎÃ5Ä]V¥X$HÜ·w›åËX°ùÓ`£ ¯'[=ße×SÑ‹rY>c—n{–î…`˜féqÞÇîÎNb×þú°|*¶Ÿo‘[Õ¤)r+2Éòóz»¼/¦žå9GD"¶–bKÕðk˜§è:ýá8?¥üMô†Ã¨üEPVw.ÿîq½¹/î¯X½±zŽDÕÄy M’¯+›˜Ì„qNF `ª'@çÓ#Ê£‰ìFîKl"ˆMc‰ö`œ6tzôñÑæwM|÷ÔPb*!TÖ Æ¡8¸9j²ùQÕ¹ÈV„׊\·Èv£ñ–Á †H ô營D?ü²Ü–Ûï‹xs[a Sá>ÙD93Jû…[±&*‘ ëƒ¿>OæªwóQ
+ä.É•‚¦0·;Ç+ˆµ˜YáV¼UXmÃÈ<빂êILÙ ›p8NÿV‚gÑ×›Úà˜¯ò¦aƒ_îú¶XY;u–MöÇ
+£‚QÉ«4‘ú¸Y|.‹/åPµ×"( KŠCUG†Ô»•(ŸeÛüΉ½¬?Š†«‚‡³Ž¦ÜµfꨱÆåáŠPYø¥h÷A¤ü°)^"%ÿ¸,7qŽ˜ ÉeˆK]¥ÌÙLðC]
+{RݬFa œ
+Ÿ;Ã%0…ü®ÕáP°ü&â,6çq§y¢÷liˆ«Œ §&|]öp5õ²CA€NdòÖ¹ºvnf¤„Þî]‹þ$„Ô„ÊVÝ•ËÓn§L€­ XG×`@ñ|„‰Á¶ÅõÕìÔÐe;Ó‡™áݺ…˜¨à*ÛŠ”D…ân8ôe£Ü Íow£¨þ¤ø‘ë\ÑÁä‰cE›¿_MÝSÚz!€1Ãp„B½….fcbjapµ1!®ML »q„Bb§Sö0{c¼÷0vÛêtn«”‹ãC2~“ó6ÉiZä/] "‰&bù7(Üu††BñX±F;ìd\çZ*¨£m1éÈ'‚UQÜ(úÏOyåLíÏAìÓI#Ñ?‘L’4Šåtí[yÍÅI£6g^­åý
+Zãå‘_±Ç,¾6¶WK8$¤~Ô !ö‡›&©Ü,î>Ü?«zMçæ˜#UâgêP=èš)Úp±=n‹ØaV¬î·ß‰Gª–ÝÕsÆñŒÀ̈²Gút•6=ÆTù Ðj:£ƒ¦3¼´BÙ”ô¶xY®î‹3-<ÓÀ,&|´iŸ¸g[·uŠÞÖnž(@ïQö>mŸÑ ¼¿Iüœ-1ßÔPÏíÓòÌ)„[^] ä¡d•¢¯nø£¹
+TœVp‡'çV/Ë1Gÿ<‰ÉÔ5ó1¡¾¯c\·õþ,_Ëø–é¢ØbÀE£7õl6b©ÏŒÊ’³›‘GHbOC}o)ìÊÖ;’
+endstream
+endobj
+3064 0 obj
+<<
+/Type /Page
+/Contents 3065 0 R
+/Resources 3063 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3066 0 obj
+<<
+/D [3064 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3063 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3069 0 obj
+<<
+/Length 3949
+/Filter /FlateDecode
+>>
+stream
+xÚÕ\YsÛF~ׯà£RµF¦»çܧM²Ž«R›MmÖoIh ’¹æ¡Tç×oÏ
+$ÿõÍϯ^~õÛëÒš_o¨òM’™T’ÿ¾bíß¾zA’nÔWp[þBB¨t T.×DÚ1]/Êå_
+ÏŠxÜm–ËçÎmÕ˜‘hØW+™:©ÂW_¾¾ùý&>Âø+~ È,éÙÝêæ—ßÄìžÿøKÎÎÞ‡®f̾EâËåì¿7ÿ)ô¼öpä‘Öˆ÷4”š©ä Åt'›äz·Ê×óåþà œ´·)ƒŒ„sC¨)—kÒÝ»ÅS)
+XhìÔšÆdÕazYXë2§\ñ
+U†ÊVÄyÓ$aƒ¥Ó•‰WAjŠ+Vo\d†lÂz<=†É´R—W „K¯c‚]4¶¯%(#rÅZ mZëü¥ —–ÉCˆwµ­KIÇúYRÅÌ>­ôÜö¬—8ï²ÄÁÃ,-d¤]Å0/ÖyïVSæ„Kš
+â6šZ­(Ê ¢Ñ rP?“(3¦3 ±™ nh8(²ÀkéŒâD-±E ~ƒ5XS‡aùa»¸k°Ù¼®ÉüÊLmžö‹Íš¯À-²OæÇ5à°v/L±o%†„uƒ“:)Ø)XWÙoÏìÃ|¹Ëùâóµß3B\ì¨á˜ÖM·rŸêÕY‰ÐY¢,g3Ä᫵ԅºËT—è¡Í‹9N:Œ­‰žu1¬Sxf$@–]$”nË¢÷‹5Ç®ØíƒÕåMŽJh„‡$ÃRØŠ‡ôï·Ï‰ƒÜR¸hŠà•¿¬k:«[dÎM)‰?‘)×à¯þ±û‰\ªayt› [Íßåóý2ßïómgÊd8ÿS}ŽÃSF
+™­ ›2[«Æd¶œ2±,VäîíˆLÃÓ‰&zn$ 6jj*DJ)6jüÌÂȇ5^
+Tçí+ÉV.î«ti5EÝÅPÔ*ïê1º š…¹Ê¾îzÓ°žÂE5ã’——/ ¦k²ÍÃÃ%ÑQo^ˆº5^ó­ÃkÆK Ó5ÕÀîúšÉpÓäB ãšL{)ë˜é¾¤ï¼œ£Ê(Á$™G¾Úlåg²©Uæ¼'c\šÙR4šøT†¢LòCk_BmšÂùôQ¦WÙQ¦¬J6Ë¢•X§À‡ÙÖúXAÕ¸ïîé·Ùö”ûûÓ“n¶„Ý¡PTýCÛJ7øØ,ów‘Ê™„QpÛá¨>™M¿@;DÚ*…¿Ðظ¯bÑ[cªµ”l`-Fj¦¥Ì”€1Å%"› fšƒëtipdñÙ=[ªƒÅúa›ïw#za¾Ò4‰‚eËãfš(¤}cº×IX4•ª£‚N㥢PâÇçå~ñ~³½ÿî-ÿ¯Îc%ÒQÍY@`3gx¬ï׈œ“ž3CÖèÊæ>ïwëÍ>ÿ,ÃÇ4•Ú×JÊäĶQ97ã`œ-)µŠ½…o<Ô´ÊMM_´EÓ⸄ÉÈjI³ÈR}é¿Õ0!“Ndn¿Ÿ?ïYÞ|«sžÆ°}qòt›¼ä‘0ª]ò”Ö€½¦ä±FröL5¾úæƒ+¡3tÜÓ¼}ƒ’„†=¹ëµ
+“3ʉ49§C8q%Ž uœœ!´B%‘„ŒõE¶ü‡»ö‚E´àRúá¡J}‘÷gñðñgTãF†¿pG8±uò’
+]ßp×øÑ·–•8Ž‘:f»Æ¤•Œ‰Z(J‰óÝ-ÚVâ¿sÆRâÇÉn\ µŽ‹¢£Õ­4kª’ežIF
+ßÁ±)ßR2\z—aåiõ¡ ³W—Ö¾ªÍú(B(hOfIs.Ó$³‰öš3¥)2Fa™¯»»F#"³[)ÏS’~«ât£ó‹B¤«4ÓX˜3Ô²¸€£ÕYç9ï,Å¿œ]?_ 6¸x/,Ð Œ:6º::Áp÷5\{Aô vî¼›Áal±|ƒôvV;µé’Ô4îþiÞýÒÃø7*µH-'rw·]<õggý†la:ÊèUÚÉk&ihØðÈz¼½Û¬ßå>ßö’iÎp˜#Çš©%‡†j\a©,ܱ»ã
+mž¤ÝȺDuþ÷‹ýròÚ_x-Ë¿SPh2d–¨®ÉFÚ†6Já¸QpŒhÌ(•­Æœ=gœ,ðº.sR%h­ŠúkKw·N§¼Û^4Ëñç;ÉX‰6o¶ùüÝîi~—O3ÊÇÁ¸jb®t΢ȯ7ÁG廆øÉ¿øE­sÌÚÉã‘eÛ!ʾ o¹¦(ƒQa¾ç Ë›0¥zy<Ù‡jîý0€Rf’è¾Fûa]NÝ—(œÕ·íÍÌu‹n0}$`±oÜ aJd U›„«:{áI´”ï_Ø«ŠÛ+G5Ñòý¯õÝ[¯·=SF9R°•…šµ³üX­¼¹Þ<Ý?¤(òRôÀv¡çðÜuÑ‹½êzÛüÉËŸwùn¢Ak;x<£Ìã…oÅ“+º&'oÅ3Ï«ùrð[ ãÚ‡¨ÙöEÍBè[•J)Òû¦Ó`ƒ:ç 3‰ñU¶cv=ƒŠÝ=$c¤5RQs×߬>v½ ÙØž­P“q2 °M@¸0 w*\ÒQ¦¤ïвâjš´ˆMx]'ºßÎïKë2Ú9c ¾¬®2C• ¯ëªø$rý¼zÓóÆñеMþ]xyU•ã`k<îó7œNl¶—¾4 L·d»*¬c%áؘpÌЈ´Œ®PuÒ“ê\Ô~Ÿ÷š½³2@GÓMÂ÷|p<¬àOá!›ÿ=ïö‹‡—
+ESÍ9àƒ0˜í‡ÇA°S°ž¯òo>©3´Ýòü«óÔ$rþ%R
+ðj“Ä…lÉÁg¥5ÈVþÉÙ )ØXûž}5ûyÕéç #ÑÙ¥³QévKçåph¦é¢ø6ÒÑn'tûf™¡6íý-’®úöö™º:…óoÎvÆ&Ô1¯ØÕðkðöUá)_÷Ä;õSbIèh²è0jK¦h×ÿZnZØ‚Ýß›Z|~ŠOÖýQxñ*¿o꓃F—ØìÖcø"øà˜´ãdÖÏö ] ÈP÷Ñ‚$ØPª ŒE?oA:˜Š·pl1rdBmdðÐÕùƒ™S±å s†[0œKqÞ^µ¹$&4 ²›Š ¦ -3c2”‰ÆY“Ä„?«ÃNÅD8•ƒÎjñs€pV ¹«ÓNÝ0S‘Î× 3:ýëD—zûñe=+Õùž^wËÉ”iH
+ ô»„çâ!ž‚t7ãCû·ŸÞ¦L° ·.Ì”Y9Õ\ñŸ\ß×
+endstream
+endobj
+3068 0 obj
+<<
+/Type /Page
+/Contents 3069 0 R
+/Resources 3067 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3070 0 obj
+<<
+/D [3068 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3067 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3073 0 obj
+<<
+/Length 4055
+/Filter /FlateDecode
+>>
+stream
+xÚÍ]K“ãD¾Ï¯ðÑÁˆÊ¬ÊzÜfY"ˆØ]fcÀAc«»ã²šaþ=Y¥‡-Y–-Kjæ
+²×«e+ÁRG’¿tNU¡Üe¦$“,ÜHL¡ŠÀÚœÚ,·‡ýî,bþw s†"!ì sA„—iEŒŒ“#ÑÊ_SØMöiwØm»õófÛƒÖcˆŒ1#Ñ*0ÒùËŸ·»ç,I'X±¦ÃL„ˆŒÆìø›"Ò³ôqV^þÔî–HFÚ©9~S± ~©*.+ŸÖ\*Òúœ[ÃÌÊW|CáA`¸”þÒRÓ§ï7qö!®°‡‹÷¶±Ð¤ÿ !Û?€5.@Ø¿õ6µ}Þt1A:˜É½:³`{‘š¿­…Ô?’ôL@«&ÖƒÊãÅÇø1ù.Mw†¡ ¯ê sÊÄ\Š>”OÎ)£3Êþ§ÛÕö±‹6c#ëZ<º—SÓKNųεɤìÓdý\•ädˆZ|G^bç@¼ôɨNç`#%a€s>tËv³ô9éâÓaÄë¤ä“y1}¤\üºUÊÙ.‹×-ï¶~ÓìbÑ*Ç ‰k>™œbEáó”¤âJ
+ÄÂ'ò?½¬t¤°UéÃj½>|\í;Í Ä´8jvÇrnTAŸ¾:iüJ,Ì­Œ†J v¸ü× ?Î*ó•·QšƒFQ]**.ù]}ÖTiÚ¥Ý)Åóˆfsäyµ]&ÛìËÒzë# ÔQ¾
+í´!,tš)FœZª¾°¥Æ=*ŒÛ‹’–•WZPZ·i™y²M-£‰„É:„s4Ø?h Åû+÷æNÿˆp«±]@ñ
+DÉPVñÛÀ…Ë@.w‡’`ÉÉÇ©!][8Š"§ Ó’Î×I¾br °J47ò,#t©s2œö²¨ç.ÈÏzç«Èßȱ´Ò#ÇS†³U¼^¯Ù5‡m;œ @wRoô]Å£Î"ö~ùða·û¸‰Ó½|—'A
+I¿
+$þìIŠ‡ûÑåƒÝýóx>ÅÛ.zA‚×ñ"Ùî²N­‘e4PÉÊ´åF€w6Fc»œŒãïQ—a´®PÏ$q,0²îcH—®ŽzY°‡wFâöoAÈFFRÓ=Ž?øx?/å^>¾þa»CqYðÈújÁ#;wgë‚7²|ÏUzQðiò¤ë8;܃0.d$‚)µî2ž•@‘¶vJ<ËäFB›&§‡§8Ý„Ù¯ð(8{68%è8äœò¸Úf‹§]ºœ<ᬵ&áH[¦ˆ)#=Èþ½­YYgîÆà‹ŒB‰!
+à…=Œ¬Cà%G}ο(A¤!W"<¢Dx¹ôó»ÃDî+eZDþÍKŠ\9vñf‘—õ9ç) °¹G‘C›ÈÁ ¹ÏZ°ÍÊÿùÒéçM tº‹°Ø®)¾IdâÁ“!iŠM62Dü,\=ë*åË…îö“øé8NA[d.$ýíK7'Q†F2na" ìeÜàXËNVÆG3Æ£q›ã];À¸ÁRÆ´÷w«q»[Œ †*ÁÆíŸÉÞ4ny4n<·Õ¸ßý-’6½$ÍUnI§ J6%­Ž’–GI»»%M-’þþÝ05¾Q6†¢íçF¤ˆP»ÊÐÑaÈ£QÇ»nˆ†´$nä°H«îtþ,Ó°Šæº­ åqÖËH+²4,­gô`0VD×J‡ kô?o‘‹dì4#i"¶†ÞШ»-ñº¶¾Q)qc†ïέ=—·dã$Cù<‚Å!ò–ȉ·ƒ|†â®syCYFqJ—EdczvF­-Úe²¹ê¿”z
+¡çm©²vœ£û±kÍ09sÊÞÂH Å†œmÙ«¶e³8Ûé#heY}EÝNžvLÓÝ"9þ³ÏV»íáî¾$gN÷ö%ëjgG¿È’åÛd™<ÜCM‡ÞƒÂÙ)+­{ÐØÑú.ú±pU"e èîí’IÝÆõ§ôŠË=«{鋼–Ö[x#9fæ ,DüÔku²Û¥Áiüø˜,ÓÕãS6nÑ sF:êâ×çÒ"‰£~$vÁ¼ù
+|ÏK\î‡]K“ŒVù«("禘rA†kŽ™$¤c‚˜K;0z­%ÒKÚ-üÞÑ¢8]ºiÒÙ©b÷¦ÜAxÓ %[ÔÂxMëb¾
+‚®¤^Té¯uœöòzâlÌ”SIŬðU)o[Ø9Ì¥ÿ³BÞ‘Û—`B:æHžL'ж‰ÓÇÕvdè&å(0ÂÓwmìå¬ÚãQpÕZ6¦*Lá•zK¡i ²ªÔL(±øaì>L +›ßDi_C®ó¶Gi2Úb* ¡ÒeC‰ƒhYÏ‘è`ˆvUxçQ¹›‡x³ZwzuÆô¨ìà ýæZŠ—žÃߧ̬5Ö“}´†^¥ßâíçz éº$ôp€¸èÓ“‹ÁÍOf0 %¸…¢ŽqÍà&[“Hqî˜çEYâçž]NÄøó7oß¾ý°ò¥µ—‚
+™Hr—?8bA™Q¿O Ñè.pÊ<Vȹ-žßÔ²ñ(ÓXº\Š?+g`ÊR¬ï +Ù`ñðñ‡M6E%¶›]?Ý&õ¤ìjÖŒk`´+ b¬Ñu,zÒXà'dÌŽÌoâEºëT¶ UÊæ,Ø–Nrú¡DCľBÓ¤L)# ¦úÎ×æéIØ7“³†ÒtðÅÛ¡›”/?am¯ånõðyŠÝ©htG Ìó“)Ù=v(Ù½qïç· éÞ0ÄqÆï-ã-üK?Mó(*þÙŽ'ÄiìZNÊò Ø ßr>ÅJ¯˜æÍAcí>¤I¶Üe/Û<º>R1À0Ò‡ÛQ~j œ%Azظ·"^ ÊŸKÁ‹ƒ¨†e8=¯¶õ[¥îlI„ºÔ¯æXL-T¡8÷QMm{*›BN–¥›Ô¦€Ždµüs±¶áâÂ’`»Ö7*°“ò+øÏøM¶Yúùö¨.9³oáCçõ|rœEºa
+ŒÔš£FÉäXgG)0JÆ èêó9¨«9!¾Ôw›’ÎV$Oq6Üv$ìçÛ m÷³ü¸#
+SŽ§òeÕÛV\­T¾?ìçÖ8Ô *f+MØïXRµÃVU×8Ûd£¯ÿ^·îê«,{¸Ñù„ëeåê”Ôë"sì7¸Y-7Gþ8£jrÓÁrùí¨Žåjmߧ·‘iªÃp_Ã\Vc; ªîP‡[ö{O¥™Ö-s
+endstream
+endobj
+3072 0 obj
+<<
+/Type /Page
+/Contents 3073 0 R
+/Resources 3071 0 R
+/MediaBox [0 0 612 792]
+/Parent 3054 0 R
+>>
+endobj
+3074 0 obj
+<<
+/D [3072 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3071 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3077 0 obj
+<<
+/Length 4045
+/Filter /FlateDecode
+>>
+stream
+xÚÍ\KsÛȾûW𨭊‘é×<n[[•¤’Cª’ø’Jr %ÚRYJÞuþ}z˜ A».ƒBsº§_?fõyeVzgʧþ«ìjÿ[_þýOï~úðî÷à•¯‚µ¼úðiB• ¼²â*$Y}¸[ýëæß@üŸ~\¿¼lžï^_~øχ¿Ê¿ÿ££½ç-Vd¬~“¬~xOºyø¡?±zÏPYgWïÁTABMŒ‘´€?|x÷ßwØ8®uÙÌ•÷¸º}z÷¯ÿ˜Õ~ùå–‚_ý’þôi¾bŠÏ=®þñîoµ :,@Àʉ(-[¡þ|úÙßé˜ô×Ù§K¼OÐÜE&×eHÌ}¿§P ʤêÈømûòi·y[.ãàáá¡°t¹*O\Y¢
+Ð.ÆÅxRZ\ B–þf_ª•Á¼YÖW–¼òA•X\}xÒgбUq²çxéÒ¥JÖI¹ë­™!ä¢Y¡UØ^¥–~¬öÇõíÛÃÏë·Í¤´½nR‘6º
+¼kôÌvôìãúqý|»ÙmybÞùÊ«ðÆUíЪ“åªV°íYîùÎà½wCˆ¾‘!ñZÛJ
+&›MÚ§FàÞ·­Àý£©€ôùuûéÓŒhãF£€OðáѦ¬w_—º³£Í€o|Ý>_Šsc«Âe87jÍ{œ‹»XœUÎÿù+Z©ôú"fÆÁ&Ó™cfìEA{(fæ[¿†ÅÌb Ëf¶$l°S¦‘ºfv4HŒ˜¸@Õ8v¨ðÖ_DãÊ¢;È.†ìî6O¯S¹ ÁDÓ ?¬y5îbk”,^w±Ô
+zÅÍ•3Ò|ëL­\ƒÕïC¸yÄiÈø„ÖãU
+£¡¬5_¾ ãÕóhªÝxûoƒ¢ŸÉßØ ·BòBÖ«‰Ù :è+ý>££DÍt4àf:dÌ8Ðl2*¾ü8yH)msMÆOì¤bF’B'ñ@^é0¦}Ó89Õú®Œs¦ðP5¿ñͺ™¦<d¹²Rîº RjL”Iù–T0…T½•ñ®± >euÏìS
+ dR`B–ê=%4Š‹Lyˆó“†òæ®^Ž[)bÐÏFw ©¨tzie#$Qb”cÓ õ³Ög2Âå·Å•ÙPîN)Šq•ÃF}Õ‘»ü!dRÔ2§¿0J
+Õ»\y â–”-«"ëËÝ0AJÁ¾7úª«†Öë%5`_]y{—hR‰5~î‹T¶ß&¡.h6äçAÝî‡"åún†Êlº2…®L££Ð’è˜S®Â䌔KMº2>«d'OÇÏdËUþVÁåù½r_!/›=œtÆ®¤lXbW¼R1Õñ}ã Nc€5(:(þĵþÄ·þOñ'JTÒXü‰o
+­?qÅ5 Ž“Ý4¡âO°<DÙŸ`Á“õF翯‰ùsŸ6úPyi»kµcØsÞ´&¸g˜‡Ž!SÊMªC tƒxNU)ƒ±+KR¡‡C |Xm‚q<ˆ=IôWQR›Ê{»Äº(–}¹]zKT²¤1¶ÍbΠŠ£kpù?’¯Ä`chbhtó ¦PEÃZ s­†µz'ã” Všo5ÀV ¸Uƒö.Ùj ôÇ|_ ¾¾œãˆ]CÄH~@X¿* &œ%)6©5Úµï7uÞžU|QgzÅ—ÝúöËt÷öœâËÑF¹JƒÃX»MG§—KM ù
+ÑLHÝÆÂF¸ŒÔm¬fôJ^ÖÚ³¥Þ+/ï6ë//Û‡ç·sê'¦Ìºoj–2VuC¦ÄbV*¨á^œP = g+
+boÆjŠ¹¬%ó^Q¡»ŠC8 =4žCÈV’Ój\„&0Ð8½´å®ƒ%ŽE«×†Úm¿lžÙîî>­§ Nšv±Ç± L›ä‚ê,_´ï¬ ŒîÕ•[±fÒÃŽ"³ý¶û:ɵn“:þ#j[3¯J€riæ}˼?›ùž½¾~ùùÓÓwæ%K<2öÆ…l»Þ˜†o°Ü£KiÁëöñîˆ$Ι¨’XÖòíŒXÏÒ'V,^‘ÐtïPQÒüòg6væ˜ûr‡ßÛëÝëýçi†]åIAkwã¼;i³]öÓ6ë:”Ú#PC¾;fã¼R¥â„kT‘‹Q-CWŒ÷Sò#Öø=*>‹1¢2óš€N1ªž;Ž|\“QÊQO_î<Ò/× <˜R1ÏìÄ‘¼˜‹¨1É(°§pUÞ +oþ€·ç¬µ{Y“ÓX3t­.GfM±Oå{¬}ü¼ÛNç½v?™°Ïûq¦b/‚f ’ÌgÊ£2eûL½¾¬o7¿Þô«TÞùÓÂ9°*¹ÚsÓÀx9¡!ä¢ä®«!±/à@˜oÛ/¿)ð§ˆÔ4IJWxnõ´Q4˦(öII)§^†Ô´&â&Š™¾lœìåAÌq{·}Þ\v"ã”î)Ù¡KJ]W<ÚÂR[žcÈurd2cRX Ï™°ó¹3ΩV_6…‘¶q±.©¡1öO5ƒA¾ª¹iÇCÊžmf;T€N¼À ¦LœÝ¾j
+­*éï;ý_z%!—nêìâ|{ã&·Ór MøJÏ°L µÙ3%/€Ë”$è%6#¨È8Žè'Ž’Q½É€‰Nˆíxß{hXùÊŸj¦céRã‹D\©‰vWPà†rɲ ŽÞ'ZÕüöò=9) WUÕ·úÙÌ¢¼‡Š}¯~l²á¬”>.µ}ƧilÈc.Ô—=ƒX×Íå8}zÞLGÙÉخ½ÿ¼y;0úh—Ju$ÎjR .ÒËU!|™¸ëqµT?ë<•Ï«ËQîü,îÎ<*Lê+üàQáÛûûÿ½ÜŸ1„O{% 3Ðdï$µ¢þë:ø°ðG+¨Ÿ³<<ý:^æøáÉz:‰Rú]ª¸Ôt£!4IyíTä§Â Î@«EþÈ—r+êø+ÍÅ늜h·nŶnÅ·nÏp+eëâ`E?>|y¸ûöøz¼õ`ÔœNo=”D<Új m…!€Í–ñÊ׺h_X“U2õÈÙþ0Œ;¢ß£x|ø|ö@H˜êúåС“ì$¶G­¿¦¯ôl?¡züßîXéâ7Ò¦º—.bªk1Æa«zS‰GkL¿–p´>2&L‹íÑOð¥±ÉÀu‹3Æ0öð¼¨ÆŠ#Ñ-N°«!kÞ¤Ô|vɶT-»×»K³{R1ß-æïq1 *ïñPœ ÕeD®*QàŠ¥ßyz}Û¾\EƒÈ¹ ~5r±Wå×P}´­Ëï×Ç·‡ß€_‚óŽïÍæ—¶Ão…ßçíîé7µ˜ÓB‰Ç2,اŠxÓÛq‰²†Ë«:\vFÑd?’<{ûþâqï¥ühµÒVª®i<xÙkŒÄ(f4‘VH}‚Sf3þ³;Ò¶éÊè=æ#&±xEmqŒëW…¹Ê–æqéí‘ãÒñ3R:~&Œ“B'[rU+µclN/b¢r—iA§Q¬…^
+¡J¶Û<®¿}'É_CDȘ>Å7¶hjžæ@̲Fu<Þ¶™e1Ýó›ˆõñ1ýœuŒ=åçÑ8hѯo›—ïË¢=Û1YÇs“NVä¡¢e9VÔêÊŠôE-¨Ý‰ÖL*çm±f3¿¨]H©xtûåèÆÚ DßÚ ,°Á4¾gƒÛÝÝäê šíÔ´Ãî0žXדt‘ĺ,»ó^  ‹%Ö*#çÈg¼!Πͦç8Dê¼y¡2ç8]<†Yq¨i´Í¸†Lsä4VÑÙ–Ø1¥¸iÆ#¿nIÚ0!’ÈhÚ,å®[<ÒСânî^_6·Ç&¾Os§YQâ¨ãI¹rn!Èì9ç0®³G_}ÔwæžåJ?ÂPâ‡;¸†°×gÎ{šf!ıõ<Ëcïg˜—xHF÷=>XœÁ̸/ê¬:ùœø³}‘?À××#¹ÿe‚4»
+M¯ˆ TÒˆCNCoåøÖ€4›`³‰PZ½L=bº]öúµ¦²å³‡õ€xû¾€EÒ¡Ñ|&)øÝm<ön¸½ÖäWRXãT¸ù?¶}—F~á…ƒqüÀß8Þúýj
+in|ZžcŽïiqSMí‹Pº„€
+ˆár+x»ßìΪRcÛ៨¾ƒU€î®Z¶M‡øí cOëÛï+Ÿ=z(ÚÉ*]Ú„\ãp\µ˜YÞ7Бë±I»á—¢´ÉŠ:\‹ãÀ< 1€»0ï°pb¤è¾\ym&nk1å.‹é‰Â*6îÐv\R:rìCR¹Úí9é<ªâø?«NÉ
+endstream
+endobj
+3076 0 obj
+<<
+/Type /Page
+/Contents 3077 0 R
+/Resources 3075 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3078 0 obj
+<<
+/D [3076 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3075 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3082 0 obj
+<<
+/Length 4055
+/Filter /FlateDecode
+>>
+stream
+xÚÕ\Ko$·¾ï¯˜£ dÖ‹,Þ‚
+h¯”  »ŸÞýýŸqwe_þÑVJEw?¶Ÿ~Ú¦:ïv÷·wyW,A°sõxyÿ¸Æ“¤svžÂWï!J¼@”Îæ¸Âs
+åI$)‹Dp…òþG‚lÂLxš\c 9Ñ[ÊUJ ,8#×Çïî¯W <kP£pŽ`›D“)KJ¯-Q8I¢¢9Äò¦š*ÙŒIç4õñÇ»3&¥}‡¹ÎUcß”«$!*qõxÿó§Ë÷wÿgö‡Eº¿.º"WÁ1¿©\Ù¬Ò¡\o¯/ï¿~øþúç‡UÁæP2¸`s¦FB2á Cˆ¸Q‡¸áŒ´%¼-d²êáŠG1æBãJçØ?æý}÷÷`Ÿq†÷«/—ß^ÿ’u*G½ž³HÀ`rS 2[Þ$oL!- òNXÚ/2Á9’ψʲäoo¾]uQ6=¦¹Ÿh†mL'S>Š(žJ2BÞYÖhFsNbøT¬P̦EŒ–E=Tc‘Q®(¹GÉåS 1Á²ŒŸSҾr‹” ìNhÎÐYƒé+…¢²Mïê&+- *êò±7 Ò<Šï…®d¿eÛ'6õÿðÉæ×ä‘1^ ¢¬£„þ,µ”¹Ž2êÒí*1úO¶Õfá•Rþúî§ë‡_dþÒ¼‡â¢÷`±-Kð*ÞƒZV±¯æ¢®å‰õÕ¼ÇÝÃõåíí«yÍå"§´¬êd:'¯¤êC”eU·ÖcUG³ò2ªº¥{U ˜mÔ*&T ‰q©¥oãô0ñ©Öd¾ ‡W
+«cZ"hþÖ|îH°”DK‰£G ‰ˆèp¥¥ IÇôÍ‹°k´Ä<.N q+–*2´w²K0‰ۅcb6Zy['#‘5V¢öIí‘;M+B°
+"77g%h¶óq
+‰Ž¥íÁ)ûf5w+°Æ£ýëû¥=±£¼ŸìÍïœh “Ûx߯¢}T|¿¦=dÜ°sbF`Áêxçî>¯mÜžw"´Ü«èût 5_Š5ñJ‚kÅ¥2ò“ù4g¯þÓJy“ª»KE4P>jž™TîŸñOgf…ùDmãØÃWi™SªÉ¨Ôòņ5Çt’¤÷)QNqEÒ"ä7•4Y‰UxVÒ×ß\Þ>¬B略¸pIà ÈÈ%DáWëGŽ¿`+
+°; 9«Ÿ©¿¨¸l<>#Ñ™¼ÿawK¡geç.aœ=,A—ðãÍÕãwÿ½Æ’X¬ãé HJ­¥Xçâ5ŸÏæ¬#çñÃ
+0RVµ2ö¡’´‚ lTN3hKáLu=ð‹GŒl4ÀSRÊŽhâ¥ðÁÙŠWìHoª4À… !¶¡)ªI±®Ô>eCÔ`±zÖUךO_~x¼^%Ÿ´ÊÎU››4ÑűIˆ`Å5ƒàÇqІˆËÎÏ*ƒ`UÓ[:?K
+‚a»wŸÿ}}ÿøùîñï1Ùkˆ5á”
+:ÎZžë•úÀj¬û¢‘ÇVi‘Vzq¡è‰èZ¢_zeš[Ô•
+x–⸸SPÄ^â'$Zç{h‰2zÓʆ©?¥¸HI%D/
+R“Ò4MR'E±¿ U\ UûcHQ?``UUén줗%Uû‚Ô;Ýì
+ÐÀn>«}5§¯¦Ñ¶ÎŠp·ßoyjr—‡%å³°2
+€¼ …¯/ï7beoì5²½
+M¨¹bé—Ž¨3¨´Ì`Óûí ¥‰w0];€hÕUeîà5hê[¥i¢”Êt?jYTPï
+kB÷k@–ßî3ˆýôÐôtKm|
+endstream
+endobj
+3081 0 obj
+<<
+/Type /Page
+/Contents 3082 0 R
+/Resources 3080 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3083 0 obj
+<<
+/D [3081 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3080 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3086 0 obj
+<<
+/Length 4003
+/Filter /FlateDecode
+>>
+stream
+xÚÕ]M“Û6½ûWè8®Št7·Tª’Tå¶ß²9Œgä±jg$­Fž8ûë·AàP¤ ‘coía`FÑÆë×@£W/zñËÿÊÿ”]ìâ?ëæ?yóãû7ßÿ `^kÍâýÇ0)̲SH¼x¿øýæ_@æ·¸ßì?­žßþñþ×Üï÷?;zõ6[圓ÿR½¦Þ¾#‚¡?ÿ7 5TþôþÍÞ@58X !e¬¼ÅÝÓ›ßÿЋ{ù¿ÊØ)øÅŸÕOŸà•¡øÞãâ·7ÿ¨%ê -*òÔè»ø̓‚ÒØ|¬W–ü«ÐÙÅû'y<„ïdð>H©jzi²NOšªãÁ®ˆ¯»B¬^2ÞHÓÚªIÒô˜žp£ç¡yëMZúXš<4Š0Ôk'ow»~Þnž—¥t^yéἬÿ%~Ç^¡ôð´Ì\¨ßLÔ!Q“ƪ‰±éòSpC³oƒÌ>€
+¢ýóg¼•ëhصòÝf»½}(j)Ú”¶}-yÃ7dy@&e-ËE?Þe"%æU²hÃÊHÁ75D#ìæ]
+`”˜s° ÊÀè«íóv·¼½Ð ‡—t è,h¨Å¸¯è‘Ÿ è,0e¸F2 ôi:Ý 0±N(L æfã”qÐAáåÓj/†µ+*Ö:åÅSM7­‘Aíºˆ|¬/Ð`oÄ)%¸–fhà¡`¡âÖ
+F
+ˆø0A‹Åu7âúpÏ ,†œrb¶Àò¼Y?\-B=­–JÓBHÉ„)šö
+q ¿v%»Ý‡»»ñ!»0ÆA$b_d¼âQdjü ßZÜk¹ö“ärY.Sˆ³åwŠí¬<˜ƃë‹õ2I,ÓN—.ˆ%0Ïn^Ä+ð=¹6›)ˆbæ]³œ‰¹$HXèg<I³P(Ón7]8ß
+g ÂéÈrgåOâë”ÖÜn·ù–}Mí½ÙfïÍ’F­-@Šç°óB:‰! k·û– iÒ(´ŬQW
+rY¨6攋Q‚õþÛÜM%Åž(“b[Žuµ¿5§pbè 7™ñûWáŒ+­4
+Õi՜‘Vh /Ü~ºpm8ã °è•7óÂ#…L}á^¦›%¶fYàÁ
+§å¶¥“SÒ¯8{\.AYëæ”+ægYÓGÑ—I$S·dl((Èry/~ÉÏ*—“O`ŸdN
+¸IûV®l±³ÂW¬rYùDouÿ囇-âœJ ™$9*¬lf£ ÏêØÄsön=MŠ%}»‚`†”&šU0’Oèµ]oNËujAYw“@À6Í>øoYuC‡Yu(²ó¬hÏ2\K=´_?OH% Kh¯…ÐÒ¬hoB<wí¢ýO»Ý‰`*°¾x4¿¬¬#r0<BÅl$Î'÷}«ÕAka6fH `òe ÈäIq`éKœ
+›³ÒÁP«Pãb^L:"ææAˆÍtÚL\§ïUOãùåÁisêIŸÈ¦ž¸}‡Ûžl>·æ˜ßz¤'fEÎ¥žœÍïxÊ=ùŸ>ÚSÄÎtÇA¸L“ÕyL²Ì6Þ§8Ò“€U›§k‘ó;rbOäóScŽö™nê'_Õ¦ÍýXÌO­?ÚJN‰a²F³f­ ¹'ߎ3ÀÑž´V7òêž‚Kï¸:ý6öätÖ·‹
+î‰"[Ã&wA~èSjÃt§D°òSšr§$E
+¥ù0á`ûxXT¬Þµ+·„óÙÌ ‡2ýÊùÞŽÝnùðÍ“)”h/¥nÛ6Lrº@O)’)š•LQíûÝ>Þþ5âäĵŒÛ½…M©"“‚Y#[Q¼
+="µÛo¶ûQD*Z?„v
+l@æ¼ò9sŠ…ò ×c9Urê•Ò‡­ñçùIŠŒ 0eeU'œUþm…ÐMÓ™RNqÖÜë®nK)ÌJ¹P(„^€¯åMÝalM a67×™G–ÎË'ÜA8º_~Ùï>Ï• *øx3æ’λæ[ïÄŸ8XÅ/ËÝ_Ûr 7ÂÚÂq"Z©ÌÂUˆ(Šk²7†ˆ¢ ƒBCú
+øsu¿ÿô7¬± œí­±¡‚Œ 8Ô^Ìe. ¡Äu}ò]5:LG¥Ò ù)éq_Ü¿ÖÒiU5Å5”¼—B<iú&ðÛMûØÒìŸ@䮼žÑôäM®häMºî&MJOèÊ4Ù#Äl^!pU±ì^w{Xî÷·VëÓ|v$‘;Mk¡qêBӴϳà-eÀsf4c ƒÖž¥<ÅVƒ¬_qω¶i7
+pš·ët‡‡Í¾®A1^ϱª†=já×} ª" dœ*
+µŸr¡mE3Çå"q—8«\eÒº“µºÿr÷tíq›ÀSA\ñÔ±Vêœâ
+çrØ“vóøéTÑÃòîAðº(Ÿ­$<žÈ ÝJðD-díUà)–/q)§=ga¶×ëY›+ÁS¥éõ„]CAvsÜ7Æê$äè*¾‘ªÈ¿ëE“‹‹„T¢åz¿‘C0TÝ ‹NN‘¿Žäñš¸ë–U%pöJ¬@$Kìy¹ýÆV™-¬2àê@å*« â¥
+£Ž¢)TÁÿ øxò¬hö©wrÉÁ W±Pˆ©Kâ!Ø]VÃ܈Vba”¿ÁuÏJœ ¹ ŸÍÜßéq1H<IÞÏ\=n—ëÛÇ¿ãŒîÌÌ-<æKsÒôYC÷ç2<Èb°hg…íªò¨5®§î
+_e÷ý|Ëgàg9éR¢Ù+mÍ' œÌ#9,ÝZU~Å©êN†Çq¿ürV5ì¿Õ ôEº½Ú§óy•ðÌ¡}po«‹(±ˆ…»nI°¢¼vUŽ\iéÌmÚXá"¦hÖÃ`ò50ù p¾ÆlŽ‘Uõ$Ò¥ ùe.þ6—„Kù©ÓlpWõR¦s6çånº„ø´êÂW_ª 6r“ª6ÆS€!ßbnsV’Èa’`-{ ta!¸q3âÆÒm!BUdÃÍÿ{‰ëhLñ?.¢w
+endstream
+endobj
+3085 0 obj
+<<
+/Type /Page
+/Contents 3086 0 R
+/Resources 3084 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3087 0 obj
+<<
+/D [3085 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3084 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3090 0 obj
+<<
+/Length 3837
+/Filter /FlateDecode
+>>
+stream
+xÚÕ\KsÛF¾ûWðHWÅÈôôô<n©TmR•Ûn|Kr %ZfYŠŽíýõûÍ
+á¢üJ
+Û½ö@ÎT”±þ³½IŠi‰Û«ö“Š¨ÁåôWïUÔFd]1-'eÕó¦E¢ñ0Þ5­ûõ‡¯ßI»µîx(; QÂS˜J6M¦kkMˆ©ÑQ˜Þ-®6ëÃM¥3%­Êï:.±dvȘc:ID
+›óż€Ý IT1p¾Rù&À15Û|e¤¸‹áÆštÙ»-ä!TS°GwIÏ7¨ä¼ÚÑÍOwÏiŽä¹”j‹£Œ³§ºÔeYDðv—Åõ³‚[Í\)iÆ™sºk/Ê€éænW7Ïhî±´>ïF»±
+Ÿ—åKT4Ÿòµ\<~Ú,ÍݼØ(@¤Ù¬ã¦Ðn
+dmP£³îöpP¿—ŽR~"d]Køqýþý7“0!Ç‚¥¶Ê.[*º0¬‡*893$`ï”ÞþéÆÇ úµrÝýKõ~ü‘T®t)Â1ŒÃ€)— {˜žçA>,¯Mɾ|³¡¸}DFÚ1†gÄîøÝÝz³úïrÒi0mÇb8 `H¸d¨Lè3º]nÞ­·/×|¼qþ´ Nûƒ:£>ñaŠ˜Î lç¥Óí¨­§Šéqþn|ãõ»9i”„4‰Ì·Œ·/ óÕÍfq`ÀÝWBEäl†ãu‘öY Wâ&g„S*BõÑA†}W'MøÇ„1ÌÿLJÅÍ9Ã0bÕ|¸o \ÈäP[Cçt¦L¬©ÈÔeºê‰ÄÑqŽŽXÈ4³a&„­æu‹,]%áÖWyMŸQâ#®WJÙn‰¿ùx`Kó›Í2&8Â4ˆ”ca]JÜîäótçBÜ2·•2¾gߪØw¥t'AfÑÀ+2ÜÉøt»]Ý®î—ÏØ3¤_Ë>¬z]HÖR¶@^’~i*jOíåHQ3˜’‹öÝSƒmGnßÂ;y³”JWvxS©¬Õ3­"Â<o΃­NÛèšbÓ®7èÁž9ìÒ Æ÷ïNjÿõýW`Vz°ÏÑÈ‚‚Kû¾SÈ"îK[Õ—…ÈD²X.¯?.¿¾ôYÃ!Ðã|.lÉUö¥´Ÿ¦¤h8ý?9p˜N—:_^1S‰áó3# {®‡
+¨ä/in¹ÑX€SȘÉ#ï-il‚\÷xû?ò¢:…!RÓSN é TÈW¤#¹z#.HuoŒ&ÓÊ#i•Óbš—Qé\lš¢Q6OÑàïîŒáƒ"Ô`+B*‡óï:*¼Zº?­fŒ'ч´g,ª“$)“Ÿ¡>ã$=ì|¡@£>“õÁi=§[CÊ+ílŽú"瞨Þrõ>MmÖ˜hG‡… `²¯©Iq””$…t鸌âŽgàÑ¢³8æ³WWg׫xühâ¢7¬Ö (Á7€†Ç2‡Ô*
+%¾r-[GÌõ±ÇÄFœTÈ®q2y¼‘t}!ú”·æ ÉKÌ•Z÷%pß{Úr¥ëƒR%µ›A˜vx˜º=o ÊÀÀ£ê­íÎC±rÔéævõ$ ð5ú†€ü­ïç”íúããYÕÖiû—õÖxìk÷í úÅ£ŒwÐi+øœ§Ÿ=Äl9Õ/—…ìL®3\ {qDúHŸ‘X[¹¦‚Ž³ŠÙ7¬S9ßXGíªœã1(Y•ò}9øuÓ7È%”ã‘îA•‹JÇžU°/Jª\Bš} èÕ$\çýäYù À©½²!wú2šÛQdÀy³ìI©faÜ!3qŠ‘LåÎ<µûd
+ÀHÝ´ S9NÆŒ0®êÁV6ñÒkíJ*C6©23Ki2<.]»öæx ÂhjŠ©ÜToO'R¢ÊªÕûIù(c“IÙö­êPšH9nWe?©ÔÌÇ™”kYi €©²Jj„AKû ‰
+&ôä÷a±=ü¥§ã;pñ¶€¡äYßù‹Áw:´iqÜnjz3åNûÞ‰šò`™ºÞ,n_§ æÀ½Çv†; y
+ŽäCÒ{]Ç— øú.¼Äÿ
+endstream
+endobj
+3089 0 obj
+<<
+/Type /Page
+/Contents 3090 0 R
+/Resources 3088 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3091 0 obj
+<<
+/D [3089 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3088 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3094 0 obj
+<<
+/Length 4190
+/Filter /FlateDecode
+>>
+stream
+xÚÕ][¹±~÷¯Ð£ d:¬/oA€$@p€àœø-›‡¹Ècag4²${×ÿþÙMjº§ÕR«%{Å®8-‰b«¾ªbkÍìqffÿxgÊ«þSÙÙ&þYÿïïþúáÝŸÿÀ3_kyöáã „*xfÅUH2ûð0ûÏü þ÷_ÿ²úò|ÿò´}ÿßÿ,ÿùïŽ^}ÝTÁ§_€‚þ`?ӳ΄bÿôþ†0èÈå‘5Šsv¦‚Ê`3X_Yò3˶Bg›©,Å ØëˆÓ(NeË(äwC=}ï„$¯'$c{ב¿ãõ;F:ß“Øñ·ï>¿{ûIªÒìþùÝþkfúæ?•C¤,ú-}ôyTyý„™=Íþýîë 9Ä4X1†ö"‘b焘GTFÖ&¹" Î6¼¢È«Ä?6˜GÖ4ï²…Ã*%\OÇÍvÄ/„<‰+Ó¹ò®˜.ÒÊÐLè©|%ï4û<µhÞ><¡¨Øc=¡H&I$ Œ¸Lºò¦yמЛJtëÒ„žã
+=Ú¹OÄ{ts$Œñ!”FkúÔðæŸjtQlØÿÔ^?}[ê¢ØÊ9§ï$®”$‚¾xïÕKäà ùÊ;»‰ºÅ'ÎŒÆb8¨œ•™¨úƒ ƒJà+&R‚`*q._I|ôÐH>Ó‘ëíÂ9P~šä÷$PvI[kPáàu
+•3¨4±
+_Jyêí”­$«?Æ­­ü×Ð&b¨ ñæ2›˜?iÅÌÑKϾ¡b¬
+•±ÐÃÓ›Åî{ÛFVöp(¨L9 (¬¦‚^Q˜œc×6œóèП‡(o•y·Øîn/Íz+ nF°‡Í«1Ç­ÑöŠA”‰ö-¹w?€\5j®J®áäÀµÉý´ØD’·×+[ʆٟ¢Gj³PC¯OƒMÈŒ&j”j¹÷ siäf:¥QÙ(›¨ž±wýjôe¾tàÃè&x^#Ü'b”Ì,yu`š@‹Še¤s¡r«X€“ürïʳ+±9ÿ¢Q”¾Æ JËø(¹êVÃVãüÁ@lܱã»7úC÷z¨ß‡:pHOOÅê`Žš\ 4¡‚Š€-OÔP4Ö*?¶‹ÅfP0BE¦„ àz,|<FL‘ÚQ§`ÊéD¶/e­­À }¶/ظ=ÖH}DŸ?`pÐ×Ù–“šq—‰H_Cx0dV³u—2å_vë/ßÝ‹R©„ãÉö±6Z]1*[°ÓÙ"+0H•™Ð°–1‡]Òœ3Ð\¤<“QrM¤{üF¬×·›ëc½¯RãÚzJ¨Ö°Åb}»/hpŠ­ØiÁÀ+8Uv+xë´TrÉÁiœ[£ª‘Ò©‡tá(f¨üОëËÕÃb5Lc±1ú½FÕøLå\6¢…ŠFÈLhŽ=kaV3§CjŒXÈ&,>AžPs
+ 6iƒС5Ñ4ë+¦GÊëÜ”íJ‡^ØÝ®íb»Y|üž§UatµßObL÷÷"}DiýìE^%K±°}Ü©»%9nö£N•‡ >qw·Ü= ¼9_yÝŸ1ìM|UÁek/}#Às·?3f ^‚Àj®.ç¥Üeëîîå÷Aêu}6³T<õÐ
+xÙÑ¢½¤’ç1ÇF7¨oPħ——õ9¥ì(ê‚ø¢ }UY¤|ÅyV¸=R™xì”Bp š±S®a§ZÅx{šµŠµÖÚâ sb’ÕOFÆÚ?uŒ kTc]×·ß®oïgùöXÈí« Ê*ʬ.¥»*îÄü¾u]ÜÙîëk¤¦ˆV&—l…^®J.ÚÊú"íڛ0%±Ú
+Ô9,5dÏJÈ÷àÿîG࿪pçàr1q;d¢hìRÖ>žCOb©úÁº”µw±fºÍRÿJEÊSgÕmõ1úùv¹úd|Ÿ@),ÁÔˆ“éªÈ+|×WÛm×Ó‘_m» QM,3^•Fò•ç®Ô\ÃاžT´B}÷¬.IGà0’š4¾ ºÊû.òÅðËÑœÆ÷SИš³Åõð}Ž ¨£ÂLÃÖ‘“x¬²g”ÅFª@d$SœòtVfî·ÔÃ_4Ð’Ê;?á€Ä™0§µöP¬€@Tç+9â#Ë+Pt«UûÐS<¤nm4* 4üØTVÿ>|þK=oïw˯g½κT5ÂòX_¼«|P£"ç \èPfsûø¸xØ,?í®ž ö½çOòùSá‡ý)0¢9l€P5T9tMëLö‹
+Ó~;VœpÅš¹³}¦Utùàôg5ÈóÓ’qdYMV›‚|Ô×ÔP ÙSYB¾ŽV×E¤›oHÍÍ7õAM¾ùæaÊ©0µCíx}óðùiñqw•¸Våf@°óÝu½7êPk ÖÃ磪8Ê
+T Ç®%î(ImáOR¼¤.¯äqóòeÚIðéÅ?­¾(Ý
+wé»}/(f3 ¢!±\ºp»™Ppûæ@ìæÒôÊÑQS.G¹§Ž
+úS;1¦
+T.•Ý¾Èår„Qòf@O¨Ü8Y_W¤”3¾†ªXvÖ¬Zóª±ër
+endstream
+endobj
+3093 0 obj
+<<
+/Type /Page
+/Contents 3094 0 R
+/Resources 3092 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3095 0 obj
+<<
+/D [3093 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3092 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3098 0 obj
+<<
+/Length 4226
+/Filter /FlateDecode
+>>
+stream
+xÚÕ\_Û6ϧðãhT‡Cߊ×}9Ü5Ů탳ë$F²ë=ÛI¯÷éo†)[–dkµN{èƒu5æ g~ó—6‹w ³øþ…)Ÿò_å[ýg½üû÷/¾}ýâëï
+>ØÑ‹!QøËëÿ~i;°°•÷$_K;XÜÞ¿øùW³¸“ÿùƒì#/~Kz¿
+"ŒW
+Íà%ܘÈ=Bp¾"° ïœaT\9„"ƒé§‹tzºÛÛÍýýrÒé
+WæÀ@f Lá ñÚ|Y'|¹._»Í(WPYǧ:+Ìpd91geé`„9k+ÆxUîDõO¹»[îÞÏ0Éòaþåç€#ì\]c…]ì°ûþ÷Ç÷«‡ †w /•«1¦Œ¹6S$rÊÔîqy»zîCùoZ¼B_ón¦Š;ÒRu7±˜µíÓ|ÑxG
+\q˜"´>ÈÁ3,ˆMeƒ;‚l‘#NÁlpèÁlòúáÝ$Õ±‡ªcÜ°ê¥0]uˆE8ÕÙ/þ»|³]-?Œñ¥G$¦¨OR/'ì;*r™ÖÁxã#5òó1{¿
+{Àú†;9¤á’H3.xìóŽˆ(?¥0Âœ“¨74z*YvDÑæ0ù´9¦‘sC#vj3n%:5Ø5BVdÛ>uäß-eîb̸‰Yô¬K×>­å}Ð[¯?i[s¤¶ÌÜ€m¸EÃÙ ŒQnå°°CU2[Àj]à KHÇ^—\žº¤É㸔I#Ub™t]ùÖ ƒ õ.]»q™f2V‹Á1“)ª!¤C)p4¨ P’ Ñe˜,J/Ël
+žXžr¤clå\£w(rÉï +‡Œ-%×$5=”´ƒç¸Ñ<ùC×øFYRã1‘mö˜‹ËÅ_ Dmˆ9²'sÖÆX,ßë@Q6¤-˜SAx†ÿD-DjY» ÞÍ¢÷±r³Ze§â‘j}ÐØì8)bãK(Òài’¤+èK§ú®× “ÿAXVÔô4¨²ä$”ý'ô…§ìñÀŒx¼L%·Öâ}±ÓÚ“å)šAJV‚x
+=–I¾P¢Ö2ýðž@bØX ";€Xì@°/?µOŠ‹-Óp\ËDÈvÀ$øÐÆ”M­ê‹-áâêMæÙE['wwž?ÿA,;]pWe™¡òæ”åÏWjêŒüe="á*¶cåÏ^iW6ñ›WÐ,¬ï}HM!ïŽs `SÊŸl¨}:© ,iƒñPÖ±#÷Ýþl_ú$µ'Ô¹J.Cvm+yŸQX‘¼Ék½¤ö) ‚’¶\BNƒ,zŸWJ"¥³D5)3”´¯ás,{ µõú|?ÿ¨!Î5'aÒ|bCfàôÖës}üËÚ:] g:ic5áÛÖ—okŽO¡±,ÂÒp™*Kð'~r®:Yr1g&Iƒë§–ù°_+ð!'K€/j›°ßbÊüÓSªS¼Ëöìx\œ'[ʳDm‘Ú:¢·3ÌF«ÊÁu*äëýÇÕÇõn?lBßP&’à,„T Gš×Bï*pí® 88ºP'«À!,L–¯ä|Y¾`œ-OΑ¯ ¤p*ßÝêqÊÀr˜êÖ$tíÌBíI[—Êà8©a392ÐJw°áJ”©ýrýq~ñùˆHŒáL8"r°~@?®¡Êöfé£o„TŽžO2WpyxSB‘)ÈM¶bîGî͇ݳUjÏ`=§`±2‰Aì›È‰’€±ãÓÎʬb¯¸¡ª®·‡Ð)õºTHE§õÐVÔe…—!ƒÖßs1Aô'; ÊeCÓV2sC‘–£ÙC¦ä¸¼C¡P¢–¾Vî( xFSöÄ¥”i¢)”b»§8LI¢ËèW!R©È–J¦Æ«å)ð %+Bä\ñeÛ¾ƒ¥âËX¸c,ßXA"9·L‰ÚBm©öÕ…ÞütxOFûÊ¥äkK±Ñ·ŽÞS©Ó3Xœ‚è+Éä÷ P
+Pê«ÁûòÔSbg•Û9!`[(à’Þ›¶P@ƒÜiJÏ›¶"ÐVÞ,´õ¸Á
+‹Ö %ZÉ5¼º" %E‹uIÑb)):3XRÔ´K.»_ÊnÉO¥r™R„ 'M¹eo£Ujë:e·Í£d¢ûß¿\à*›%8†;Ù`ßH‰è‰íƒvn˜gµ(Dâ^Rñ¸E)æÒVæëñh'ul…)3ä^ÿ:wª·_<˜f|ì´E3Å#G,à×6 Ž:¸Öõv.“ ºL’3 ÔÙ®lþyV6ñ)²qÝrp]¼;'±AQê½xw ›iS¾&iã‘0¶ËÛÛ §—œ³’3aÝ2qŤ„É&§F§—Ë3ôÝ÷ûÆÛ?uŠWWˆ…QÝ„˜@º½Gx"”·ó.‚õ€“^³¾o`¶°«—ú(^•_½Õçm¿g -ì*—Âé ˜®¯¼ˆõEwv¶øR<÷ ©x{F¢€IѸd=ÎÆA3 œ-ñ Ü©O–éIwFzwó ÷ƒWo—·ûÍèèM¤Ô?8’t‹{8:®c¡æ2VÀžÊ«“4ÛŠËÔ+iÑÏz'æâe›Ú¦BoK¯!dÿÏMí8õuÞÖÝ+S¢áÒE—ÀضÑ0´Ñði,TH‘lß• Öç°GÂÕ\æ”e)~rä'CÙü´Ÿå:WpöÛÕÃÝD >¢#1¼)Lî >~?R%¸6×%mɹPz·Ý|z|Âj¶E¹Gœ ô›Iš=1«#ë]ë¾_®žÛ¹\tµ‰/ƒb0´b3åÊ*[7í`âõ9¢íƒG‚0'ÚéêÔÃf¿zŠJQ©ß±‡•2:¥®©RÚÉ<‰W”­Ý~¼$ù×òõU~_.²,7 8ŒÄENü†ø‰«Š5˜Š:ÍÒíîvùÇê9‹ãÎà_·.-öÙ©$Ò³Ó+Ï“t³ÏNMÄWê%9o;ŽœÝ¥Þ»îPfïÍõd”º\vyPVò‚RŸ–w]®¶1}èÔ¶»ëÇÿ ¶-£-Çì숭Øzê욶’"Û.´žÃŸ!h-]Aá‹FøÒ;ÑW†V6À®·NÑø³©Jd=@ï/´½ª²ò
+H–‹ôÌK¾$äëâ¼ÕËfx]¼ÕÎnàŽ¬ÿ³ß|Úi«Ôv¢éü.¶¥Í’"e?…l\»¼ø½©8ã¶UzdÈwäró
+endstream
+endobj
+3097 0 obj
+<<
+/Type /Page
+/Contents 3098 0 R
+/Resources 3096 0 R
+/MediaBox [0 0 612 792]
+/Parent 3079 0 R
+>>
+endobj
+3099 0 obj
+<<
+/D [3097 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3096 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3102 0 obj
+<<
+/Length 4235
+/Filter /FlateDecode
+>>
+stream
+xÚÕ\K“Û6¾ûWè(oźÏÛVª6©ÚÛn¼{Irg8­5’VÒØñ¿ßH@¤DR¤(y“ÊA =‚ÐÆ×_?
+_Íuk|Ñt.0ù`#wMäC& 'ÖË‘Ü~²wr71"Ç!è»ÊiÙ»ò
+jÓGöVŸÌ xXÞÎh&Ť|Ž£_\-û½Âõ¹>í’Y (ßmª*„Ž4–2veˆþ<T ”e=‘ÊÍQËJÕÀ†*éN/JÃkIþ®±6¡Ô6^”óR<81 ƒ‡‡²“ê×Ω÷Š™Ù¶¸uôä­¬Q_?/¤NW5Ý()•O¾¤·•ôT½óþ-ÌÝ„-‰^ gëTõe±ê%©ÄŒÁÜ,I’þÒZ3<6@GÂUÈÕ¢Pò“OO
+òVOž&éÉ¢ðX‡®õ롛Õf×ËK>‘Xm
+Éìvº½'°Ã³þž‰3&ax¼†EV墧Ū?õêÃkFy¯—“,Çh…¦e+§Øšh<Å%ÅM¯o½Æx9]"pd«Oêj:[©„uj¦98ôÜëe@UæBöô tÌŸuÙ ä¦Ön¤ ±ýé¡­Å (¯Bhôý©º×Ÿ&h7…Ë>DµÐe
+?*¶)—T92Øz6 ƒá'ô©ˆûÃb„ž¿,‹ïlxa/‚”&TË[ÇæX§áuã0rša¡™ ÈA^Ó°´O~É`J8…t:tSéV {Yì>Ý*×Û’¼§ðÓÖδ÷La§ñ#2F°ºePwSE.Þ¸JkP4õÁaûþðuULïrËdpîZªÐd™1Ì:'úIM3¬½ëBûu&æ—åãáy”˜ƒÎtÛ*óŒW9ˆd'.23Õœtª9:ºÒ!»t¶óÐB¤dU`ñŠR†'¶ÕÄ'ò?Þ¤ì¯öø¸È.+™i®äUjDvÛÍ/œõóTÑ?õIGž‡%¡É‘Ð ÚYÂrE­K(uµš‚4ZÏèø¨Ò£ÕvÊ°û
+=¸M!+æ2,ô˜=!Ó¸‰Ý'1Ì Ô7†b^•„ôÞUšrÌ壉•ª¨oWÆ‘PªE Jm«Q ámP Ãx:4Pèn*¢%3s¼+Q>üÄ Ù¡°2<CR¶1NÖù7;s˜”Š!fÓÒSs¾9CöªTÌ9 8,v‹oÞü¨XÊ_›aY’ûÏíC$IuÛ•b÷î¾veÂOœØÕayXHåZv|¶5*`#Q2´Y1pÑTr«²R•æO<‰š´¬–ÎjÊïì0¼SÒ¡©ðÎê2Îñs÷æHé*ÎìçžÊ
+‡2Òp$Ö¤[Ǥ왜3Rߪ«.H`>¨ÎŒôóÆ)^fyUwÖÍÀФÖ%e(;ò\‡V³†A»+D5­4d̦Ü>1²þË̈íáuù[u“ÌÓ›Ø H®›³³³f[TÓ.6H6¦x6Nÿ/ý7`) «ü½—üñ`kÇUFYœÚHç@K‚¾g´Ê|dN nâÅ°Áûè¶]È‚K¦|ÀÙ›Ií)=TŸ~NŽëÕ¬'ζÞ^÷‡åÓ×oÔd‡ôfš6BHì&y1ýýõßËe(Ž^CùW±9¹ßt¾aSë+µ­œ@kÏýZPöÅ£yfS<m‡ñ”ñ±¢Ã“dá¦Á~²8â/ÊÅà¸v°^“r oX¦<‰×VÄðŽYëØvµs¯œN (~®! î¡sˆ¡Š ×ùcò4„à9ü¨™Â
+endstream
+endobj
+3101 0 obj
+<<
+/Type /Page
+/Contents 3102 0 R
+/Resources 3100 0 R
+/MediaBox [0 0 612 792]
+/Parent 3104 0 R
+>>
+endobj
+3103 0 obj
+<<
+/D [3101 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3100 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3107 0 obj
+<<
+/Length 960
+/Filter /FlateDecode
+>>
+stream
+xÚ¥WMo9 ½ûWè8jUüE]Øè­[=´=t7“Ý
+¢ž */ÏVÇ(VéDÇto>¯·í¬<ªWópNÎSoãÓEõ‰Å©-éYg½Ðit23|²gÀ¾ñŒjOS¡p,ÿÝæa6ýŽ“/b“¿ ½âL…¨HÙb3¹íÂüJš<ûܹµÖRÈJnÖí9½AL|Rk…IkõWmˆš½F6»¬¤¨ôJ¦v2ô~UMsR*«J{óhyáà KÝÃZ<aˆ±®Æô¬§©JaB-`•ƒ¢ ˜â¨ –*^
+{•x¥ÓU¥§«§d/®Ü“³3-a¨¦¤£òq–”Ångý1OU,¿Ý·_>¯wÿ_¤ò§# ã¨B6XD*£J<›^^
+l·¿0šÈ˜(^4VN´‹1yÙŸ;(Áº0÷ý†ue”5€(h9RjîvŽ!ZÜE7ÞŸÃÚhäãN¢m¢Êòƒ¶›ÛÝE}w*LYÑòýŸÙúʶÖRB‚‹‚‘E_t4Œºi¦èZueSHo{Së&€êj+‡Õü¼«i›Ùo ç¤aí§'åPWY~*­Ý<ÙÒFÙk$» ‚ñÕZ¹û4\
+Š{[¾ß€ÓØ
+endstream
+endobj
+3106 0 obj
+<<
+/Type /Page
+/Contents 3107 0 R
+/Resources 3105 0 R
+/MediaBox [0 0 612 792]
+/Parent 3104 0 R
+>>
+endobj
+3108 0 obj
+<<
+/D [3106 0 R /XYZ 152.694 705.06 null]
+>>
+endobj
+3105 0 obj
+<<
+/Font << /F114 1729 0 R /F73 1707 0 R /F76 1706 0 R /F19 1711 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+3110 0 obj
+[399.7 399.7 513.9 799.4 285.5 342.6 285.5 513.9]
+endobj
+3112 0 obj
+[272]
+endobj
+3114 0 obj
+[833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8]
+endobj
+3115 0 obj
+[399.7]
+endobj
+3116 0 obj
+[892.9]
+endobj
+3117 0 obj
+[277.8]
+endobj
+3118 0 obj
+[777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500]
+endobj
+3119 0 obj
+[277.8 373.8 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 777.8 777.8 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 555.6 750 277.8 500 555.6 444.5 555.6 444.5 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.5 388.9 555.6]
+endobj
+3120 0 obj
+[938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 323.4 569.4 569.4 569.4 569.4]
+endobj
+3121 0 obj
+[277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 777.8 777.8 472.2 666.7 666.7 666.7 638.9 722.2 597.2 569.5 666.7 708.3 277.8 472.2 694.5 541.7 875 708.3 736.1 638.9 736.1 645.8 555.6 680.6 687.5 666.7 944.4 666.7 666.7 611.1 288.9 500 288.9 555.6 666.7 277.8 480.6 516.7 444.5 516.7 444.5 305.6 500 516.7 238.9 266.7 488.9 238.9 794.5 516.7 500 516.7 516.7 341.7 383.3 361.1 516.7]
+endobj
+3122 0 obj
+[466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 750 758.5 714.7 827.9 738.2 643.1 786.3 831.3 439.6 554.5 849.3 680.6 970.1 803.5 762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 298.4 878 600.2 484.7 503.1 446.4 451.2 468.8 361.1 572.5 484.7 715.9]
+endobj
+3124 0 obj
+[1361.1]
+endobj
+3125 0 obj
+[638.9 638.9 958.3 958.3 575 350 481.5 958.3 575 958.3 894.4 319.5 447.2 447.2 575 894.4 319.5 383.3 319.5 575 575 575 575 575 575 575 575 575 575 575 319.5 319.5 894.4 894.4 894.4 543.1 894.4 869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.5 901.4 691.7 1091.7 900 863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.5 575 319.5 555.6 869.4 319.5 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.5 351.4 607 319.5 958.3 638.9 575 638.9 607 473.6 453.6 447.2 638.9 607 830.6 607 607 511.1]
+endobj
+3126 0 obj
+[613.3 562.2 587.8 881.7 894.4 511.1 306.7 400.7 817.8 500 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 777.8 766.7 777.8 511.1 766.7 743.4 703.9 715.6 755 678.4 652.8 773.6 743.4 385.5 525 768.9 627.2 896.7 743.4 766.7 678.4 766.7 729.5 562.2 715.6 743.4 743.4 998.9 743.4 743.4 613.3 306.7 500 306.7 555.6 743.4 306.7 511.1 460 460 511.1 460 306.7 460 511.1 306.7 306.7 460 255.5 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 460 664.5 463.9 485.6]
+endobj
+3127 0 obj
+[885.4]
+endobj
+3129 0 obj
+[520 520 60 400 580 300 280 300 0 440 520 0 620 440 340 240 0 0 0 0 0 0 0 0 0 0 0 0 220 160 220 280 220 440 440 680 780 240 260 220 420 520 220 280 220 340 440 440 440 440 440 440 440 440 440 440 260 240 520 520 520 380 700 620 600 520 700 620 580 620 680 380 400 660 580 840 700 600 540 600 600 460 500 740 640 880 560 560 620 240 480 320 520 500 240 420 420 340 440 340 320 400 440 240 220 440 240 620 460 400 440 400 300 320 320 460 440 680 420 400 440 240 520 240 520 0 0 0 180 440 280 1000 460 480 340 960 460 240 820 0 0 0 0 0 0 340 360]
+endobj
+3130 0 obj
+[402.8 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 402.8 402.8 1027.8 1027.8 1027.8 645.8 1027.8 980.6 934.8 958.3 1004.2 900 865.3 1033.3 980.6 494.4 691.7 1015.3 830.6 1188.9 980.6 1027.8 900 1027.8 969.5 750 958.3 980.6 980.6 1327.8 980.6 980.6 819.5 402.8 736.1 402.8 555.6 980.6 402.8 680.6 750 611.1 750 611.1 437.5 680.6 750 402.8 437.5 715.3 402.8 1097.2 750 680.6 750 715.3 541.7 548.6 541.7 750 715.3 958.3]
+endobj
+3131 0 obj
+[436.1 758.3 758.3 758.3 758.3 758.3 758.3 758.3 758.3 758.3 758.3 758.3 436.1 436.1 894.4 1161.1 894.4 718 1161.1 1113.9 1056.9 1080.5 1137.5 977.7 937.5 1169.4 1152.8 550 775 1154.2 897.2 1394.4 1152.8 1122.2 1016.7 1122.2 1102.8 838.9 1041.7 1133.4 1113.9 1516.6 1113.9 1113.9 919.4 438.8 575 438.8 555.6 1113.9 436.1 738.2 838.9 677.8 838.9 692.4 476.4 758.3 838.9 436.1 476.4 798.6 436.1 1241.6 838.9 758.3 838.9 798.6 622.2 605.3 597.2 838.9 798.6 1080.5 798.6 798.6]
+endobj
+3132 0 obj
+[531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 826.4 826.4 826.4 501.8 826.4 795.9 752.1 767.4 811.1 722.6 693.1 833.5 795.9 382.6 545.5 825.4 663.5 972.9 795.9 826.4 722.6 826.4 781.6 590.3 767.4 795.9 795.9 1091 795.9 795.9 649.3 295.1 531.3 295.1 555.6 795.9 295.1 531.3 590.3 472.2 590.3 472.2 324.7 531.3 590.3 295.1 324.7 560.8 295.1 885.4 590.3 531.3 590.3 560.8 414.1 419.1 413.2 590.3 560.8]
+endobj
+3133 0 obj
+[380.8 380.8 489.6 761.6 272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 761.6 761.6 462.4 652.7 647 649.9 625.6 704.2 583.3 556.1 652.7 686.3 266.2 459.5 674.2 528.9 849.5 686.3 722.3 622.7 722.3 630.2 544 667.8 666.7 647 919 647 647 598.4 283 500 283 555.6 647 272 468.7 502.3 435.2 502.3 435.2 299.2 489.6 502.3 230.3 257.5 475.1 230.3 774.3 502.3 489.6 502.3 502.3 332.7 375.3 353.6 502.3 447.9 665.5 447.9 447.9]
+endobj
+3134 0 obj
+[550 550 550 550 550 550 550 550 550 305.5 305.5 894.4 855.6 894.4 519.5 733.3 733.3 733.3 702.8 794.5 641.7 611.1 733.3 794.5 330.5 519.5 763.9 580.5 977.8 794.5 794.5 702.8 794.5 702.8 611.1 733.3 763.9 733.3 1038.9 733.3 733.3 672.2 343.1 575 343.1 555.5 733.3 305.5 525 561.1 488.9 561.1 511.1 336.1 550 561.1 255.5 286.1 530.6 255.5 866.7 561.1 550 561.1 561.1 372.2 421.7]
+endobj
+3135 0 obj
+[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525]
+endobj
+3136 0 obj
+[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525]
+endobj
+3137 0 obj
+[522.8 522.8 522.8 611.1 611.1 552.8 1105.5 0 437.5 302.2 424.5 0 0 0 0 0 552.8 319.4 415.4 902.8 552.8 902.8 844.4 319.4 436.1 436.1 552.8 844.4 319.4 377.8 319.4 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 319.4 319.4 844.4 844.4 844.4 523.6 844.4 813.9 770.8 786.1 829.2 741.7 712.5 851.4 813.9 405.6 566.7 843 683.3 988.9 813.9 844.4 741.7 844.4 800 611.1 786.1 813.9 813.9 1105.5 813.9 813.9 669.5 319.4 500 319.4 555.6 813.9 319.4 613.3 580 591.1 624.5 557.8 535.6 641.1 613.3 302.2 424.5 635.6 513.3 746.7 613.3 635.6 557.8 635.6 602.2 457.8 591.1 613.3 613.3 835.6 613.3 613.3]
+endobj
+3138 0 obj
+[1062.5]
+endobj
+3139 0 obj
+[531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 826.4 826.4 826.4 501.8 708.4 708.4 708.4 678.8 767.4 637.2 607.6 708.4 750 295.1 501.8 737.9 578.1 927.1 750 784.7 678.8 784.7 687.5 590.3 725.7 729.2 708.4 1003.5 708.4 708.4 649.3 309 531.3 309 555.6 708.4 295.1 510.4 548.6 472.2 548.6 472.2 324.7 531.3 548.6 253.5 283 519.1 253.5 843.8 548.6 531.3 548.6 548.6 362.9 407.3]
+endobj
+3140 0 obj
+[295.1 354.2 295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 826.4 826.4 826.4 501.8 826.4 795.9 752.1 767.4 811.1 722.6 693.1 833.5 795.9 382.6 545.5 825.4 663.5 972.9 795.9 826.4 722.6 826.4 781.6 590.3 767.4 795.9 795.9 1091 795.9 795.9 649.3 295.1 531.3 295.1 555.6 795.9 295.1 531.3 590.3 472.2 590.3 472.2 324.7 531.3 590.3 295.1 324.7 560.7 295.1 885.4 590.3 531.3 590.3 560.7 414.1 419.1 413.2 590.3 560.7 767.4 560.7 560.7]
+endobj
+3141 0 obj
+[638.9]
+endobj
+3142 0 obj
+[569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 892.9 877 892.9 538.7 877 843.3]
+endobj
+3143 0 obj
+[500 500 500 500 500 500 277.8 277.8 777.8 777.8 777.8 472.2 666.7 666.7 666.7 638.9 722.2 597.2 569.5 666.7 708.3 277.8 472.2 694.5 541.7 875 708.3 736.1 638.9 736.1 645.8 555.6 680.6 687.5 666.7 944.4 666.7 666.7 611.1 288.9 500 288.9 555.6 666.7 277.8 480.6 516.7 444.5 516.7 444.5 305.6 500 516.7 238.9 266.7 488.9 238.9 794.5 516.7 500 516.7 516.7 341.7 383.3]
+endobj
+3144 0 obj
+[472 472 472 555.6 555.6 500 1000 0 391.7 277.8 305.6 583.3 555.6 555.6 833.3 833.3 500 277.8 373.8 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 777.8 777.8 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 555.6 750 277.8 500 555.6 444.5 555.6 444.5 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.5 388.9 555.6 527.8 722.2 527.8 527.8 444.5 500 277.8 500 555.6 166.7 750 750 722.2 722.2 763.9 680.6 680.6 784.7 625 625 625 750 750 750 777.8 736.1 736.1 555.6 555.6 555.6 722.2 722.2 750 750 750 611.1 611.1 611.1 838.9 361.1 555.6 484 500 500 444.5 444.5 555.6 444.5 444.5 500 277.8 277.8 336.1 555.6 555.6 506.3 500 391.7 391.7 394.5 394.5 394.5 388.9 388.9 555.6 555.6 527.8 444.5 444.5 444.5 555.6 277.8 472.2 750 750 750 750 750 750 750 902.8 722.2 680.6 680.6 680.6 680.6 361.1 361.1 361.1 361.1 763.9 750 777.8 777.8 777.8 777.8 777.8 1013.9 777.8 750 750 750 750 750 625 1111.1 500 500 500 500 500 500 722.2 444.5 444.5 444.5 444.5 444.5 277.8 277.8 277.8 277.8 500 555.6 500 500 500 500 500 777.8]
+endobj
+3145 0 obj
+[625 625 937.5 937.5 562.5 342.6 462.5 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 894.4 875 894.4 531.2 875 849.5 799.7 812.5 862.3 738.4 707.2 884.2 879.6 419 581 880.7 675.9 1067.2 879.6 844.9 768.5 844.9 839.2 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 575 312.5 555.6 849.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.7 437.5 625 593.7 812.5 593.7 593.7 500]
+endobj
+3146 0 obj
+[896.3]
+endobj
+3147 0 obj
+[513.9 1027.8 0 401.9 245.4 273.9 599.6 550.9 550.9 836.4 836.4 513.9 325.6 453.5 856.4 513.9 856.4 779.3 285.5 399.7 399.7 513.9 799.4 285.5 342.6 285.5 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 285.5 285.5 799.4 799.4 799.4 485.3 685.2 686.7 685.9 656.7 743.1 617.3 588.7 685.2 726.8 287 486.1 715.3 560.2 898.1 726.8 759.2 657.4 759.2 665.9 571 702.2 706.8 686.7 972.2 686.7 686.7 628.1 298.6 513.9 298.6 555.6 686.7 285.5 493.8 530.8 456.8 530.8 456.8 314 513.9 530.8 245.4 273.9 502.3 245.4 816.3 530.8 513.9 530.8 530.8 351.1 394 371.1 530.8 473.8 702.2]
+endobj
+3148 0 obj
+[485.9 485.9 485.9 571 571 513.9 1027.8 0 401.9 285.5 314 599.6 571 571 856.4 856.4 513.9 285.5 387.5 856.4 513.9 856.4 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6 285.5 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 285.5 285.5 799.4 799.4 799.4 485.3 799.4 770.7 727.9 742.3 785 699.4 670.8 806.5 770.7 371 528.1 799.2 642.3 942 770.7 799.4 699.4 799.4 756.4 571 742.3 770.7 770.7 1056.1 770.7 770.7 628.1 285.5 513.9 285.5 555.6 770.7 285.5 513.9 571 456.8 571 457.2 314 513.9 571 285.5 314 542.4 285.5 856.4 571 513.9 571 542.4 402 405.4 399.7 571 542.4 742.3 542.4 542.4 456.8]
+endobj
+3149 0 obj
+[892.9 840.9 854.6 906.6 776.6 743.7 929.9 924.3 446.3 610.8 925.8 710.8 1121.6 924.3 888.9 808 888.9 886.7 657.4 823.1 908.7 892.9 1221.6 892.9 892.9 723.1 328.7 575 328.7 555.6 892.9 328.7 575.2 657.4 525.9 657.4 543 361.6 591.7 657.4 328.7 361.6 624.6 328.7 986.1 657.4 591.7 657.4 624.6 488.1 466.7 460.2 657.4 624.6 854.6 624.6 624.6]
+endobj
+3150 0 obj
+[272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 761.6 761.6 462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.2 734 353.2 503 761.2 611.8 897.2 734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 500 272 555.6 734 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8]
+endobj
+3151 0 obj
+[777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 761.9 689.7 1200.9 820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4]
+endobj
+3152 0 obj
+[0]
+endobj
+3153 0 obj
+[470.2 483.9 222.6 248.8 457.8 222.6 745.1 483.9 470.2 483.9 483.9 320.3 360.5]
+endobj
+3154 0 obj
+[667.6 693.3 693.3 954.5 693.3 693.3 563.1 249.7 500 249.7 555.6 693.3 249.7 458.6 510.9 406.4 510.9 406.4 275.8 458.6 510.9 249.7 275.8 484.7 249.7 772.1 510.9 458.6 510.9]
+endobj
+3155 0 obj
+<<
+/Length1 1374
+/Length2 6016
+/Length3 0
+/Length 6951
+/Filter /FlateDecode
+>>
+stream
+xÚwT”ëÚ6R"-ÒùÒ C§ )Ò9  13CIIƒ„ HJ)JI+Jƒ %HIHw‡€øn÷9gŸÿ_ëûÖ¬5ó>÷}Ýù\×»Öp² *9" ê8ZPD$ ¨è‹€
+ö9ºB€Erª <ý‘0g4¦Îß
+ÂÃ
+G£õ§
+CB!˜½û ÿ¹\78Âð÷É wtú5†£·§° æå ÕTýƒÁ˜ÿms†¢ $  ^
+„¡Ÿ
+‹KYâD¥4Elw´+¿ï#þÈqƒaÇ‘aNºN,Îõ7súMÓúÔÆxziY„:¯ïm¡+2P[nI÷äÛÄê´›ýrâÌÜÍÆ…%ãGO»EgñÔ-±ŸS€œfV“£pù–%Ø*H©/È>ãõª%Ï̦.ôsÝ'r½µÔRÿqy•€_¥0MeÀ£õ93GQDXúqEøär'³U]®5³j±á*RÀz}Rö5‰KÃk(¢z%lСٖy<
+ª- êM’쇋‚ü;ß&§Ö¼k¨º­XƒæC áºûßSR¶’¼eÞÉaÕa5…¿lˆqÕ*©]sÛ~É÷Â1TVÜØͽ5’"~£¨õü<ì0ágƒÏÇiu®uÓ i&×L²îû¾ŠÇïžo€‚vÛCfŽ8Ñ4i3¸÷R"B¯8³äÒ=E •Ì´#¼¤N$)k]óœè¦UŸ^ç«’¼ÿ¨Z䑵¡@ —R•±ÌP¨ãª¹ybãTÞ~³ÏÞ¶$MÖ°x”!“k›\áHÏ8‚!‘ûa͈uî] Ó £çùÒàp¦î BÁÃáÏpž¾ˆ–v6·B¢o3,3Ý Dõú0V[ƒ±‰OöèŸ,½Ë;q¨£3ËÕ55žÛ÷9„ÛžÓ†»šì©lÉ ÆΖmkè+¶U쾫¤Bá{ª^Í".&mä==7ÔœDR¯ÏotÜÁùÎ|èìt¹©-¡£Û¶å¡?åµúb=DÖ£‚[Ÿ™ÝÜúl´h}ÑöØHãò‡|6¤RZÔê-2ŠK…*¸È5EéÒS%4Æ}½ÒµëÎ;&Û½/e®Þ1Ño÷V«0$,¨Mv½Œ"Ú‚•ov÷rtþgY”Óé±€qI2gNSë•LÏÑ„%]ÛWm㆔±užEÄôáÂ'ÒÒúúOd‹êø6­MbH3MBã„}¢ûüAIú3ÎÝoS]ÓåS‹ˬu# ÕJ¨AßHX‹¦Ö•ÔŒ._-‘á}ðdŒœ}5‡å¦Õ»¡! Þ}bLµøì õà õË¥T»bÊl!V¯Ô—n²¢—7Z_ô73pÚCßVŽäún»y}qU±P|d[·£ï|h®”ʇ÷•ËKç‘aL.ž
+MÍ“Ë×öbNÉ8’qÞù)QA  Øù9-lmë|üZJÔ/I¢¸•—àiX·{~ÃÆWH«>ÿu#í3´•ûû }ýÌé}Š¼Ô èP –EÄB»éÐK1]“‘ù¢N7d3Ý*£`I›‘ëØR9B÷ªV¹OË-ë‹ÀÂ`+öl%1ʳyøö9åÙqÎ#ÀÚ%þ•? ¾Å5㟧²ÂìàÑý˜Í•qiîCù÷Ë
+t FugíØãê~-š@Qêhwì0¼­K˜³Kþ7RYûìÐÕ`OæÙ…#Ê"¯–ÿkxîµRY}ö÷skºônMžìÛ}‰8¤ r/üv/™©µŠµNs×:QídÓ‹py)üÃu†iÐ «2/vŠrä\%µ=Ž¿L ’sŸhcÝ£;MÏ‚šå"™Be;#tÐ_’¼AÖ~š¨DM•,î2%Éß:òæË`³ˆù¨ôàêðt6_fÎ^ö–áe6½å°$oÓ­NªQÕ8ùr¡©ïkÞ—Fäáz£üˆ—‘úéÉ7õü+?ˆgÓšYI¶G3ߺ+ÇÝÚÛx„º{zëgjäãäTÈÞDeÓèC{¤Â‹ciSãþ‡ÒRŒ¯ƒpL·ûóoØžžù„ ‡˜’¶
+8¤wh­ü“$PÆwL7»CžiZyðí̯…gÎ9Z3_û¶Ý®hž€·»š“„b°TµxIRûY©j½£«úcáÎDÜ8Iëlƒ4p›¯cñL0êoŠÞÚ‡žy}nWµ¤'2½§ø™EÖϾ¥‰õW¼è-î¸×–\á>iï8sLç]€U†¬4Kÿl+¯ÄÇó‰\˜wÞŒÞe>ì0¡£p¸lèßIþ¿ÒFËR­¤£_zÈ´a±Eß‘(‚…ïÖf^L´}έR“R.yt߯æ8âÂÓXý«ã•T^d‚s¯Kß}B®™Ï+:¯žG°ïß¼è¼Æ' ©MÞå霤øY¯_61‡¢!Ÿ\:«þ™Ë?åÄÛ<I¢É
+sW•YoûDâtÕ2ç~0-P©~–S’´êÊV#ßmo*…è¿Ì>½Æ£i
+c;sÉ’Ïi³å—Ò;B]`$Ž ýƃ¢²8¢%î.Ô
+)!­‹ipQy²îÞZ5'üžâI5V{y—·sø­Ë×qk²È
+ýG·¯Eøá÷±'¾ûà”»m1~Ç.ï҅˺ã”cÎÙ,³Â.kÉ+_\nÈt{*›v´jXòíÏÌjm¬7]½ro$h¢IÙÒ) ]3e_-ïËà”§‰œ~îñ3¼ùrœ¤ô¬('Qußx¯†„¾¿8¯#ËÁB[Ø©=Ò@>¤Îed(¸˜D¯nø“÷ÍZwú'5ã"ü,a`^±B=›CÖª²ŸÝ†´-J–¡.ï
+ø¸t%Áúi;›)Â
+z–…ÂÆÍ&ï4íÐ×r³ ×ÃY…f©&“‰{-œnO¾Ô……QYºÛðКUí‡Ã
+Ìú‰--–3zÕ”UÇl{7e²ÃDguœkÒí)n‘,¸GñôJÓ™&l+°Äé$x(îX
+_ãá¥ÓÞ\Éìñdo§l9DÁc÷}5=(=±kQÝòôÅ)ìñ-.ÈhnÃyzÓJmº#ݵۆ,¡Ž‚•Ã¾>-¬ß—"‰%èçMÌœåv[\L[Í
+µ5)l¦—=uÎÑx¯Þ Ìg*úzÅ"çj‰57¶¬²Äé'¢);AésE ›–Z´v¹•ßi7:sz
+…‡V´.û!èuX<Ïù°j—àšÈ'P óÖfñÉêØõ?™Ç4¸u´ä´ -¨³DsؾHÞ«;¶(÷‘Z/}Z2Ÿ•ãKOqûk4Ä4,ª:××îXÀ¶8( J”„pË#rù"“`veÉÓQ:F# ¸Òs!³µê·zrÔ•
+„wc³Â6* 7ÏÈ
+)ꬻ–#“ÀUMVnâî=xG{t‰ÝÚPü“EY¬
+EÛO¦†}šÝñèGÜ»:¤M®9›Xò5÷RÇT`ßÿíñƒObvx?|øö•fÚw_V2a%Ò|eqÝAu°÷¾å,Ï&ezôä–÷`(g×>¤Ï\û"qœÙ{ùæAç`‘4ÉArÕ˽‡¯¢’õl{–@jœt™ßÔÍÄŽ«aòe² ú% ½:ÍQâ¹ +6eeMù£Æ=KÜ…¶Úóšvõà‰ãç ݉*nN
+¹íð
+Õ²“êÐVœ¬1õӠ§ï¶@ûœ<âÆDÛ·&ÖÅÆÕ²6ÖÃÄlŽ2æÛG{²&b?t9å¿Ÿ)gD ¶|[ì>'ˆ²Œh½gcí€TY>[XöãÜT8ñ€_Ò(= eüùáG–{)6ªäy¸ºÈ=Å €¦CÛ/Àyå6µ³qÄkñL»Œ;Â!
+(]¬³_µ,ùŽ=«u9ýt³<¨5¸½¿ì¢ËŽqs¯ÉøʦRŠÑ²mtbíܶO“‹ôî´@õ™|=ÆÍ­Qüðá‡;3º•\gÊÍׂlÕ¼­‰  »=á…ã<¼¯Û­“<¤ò¬ ˹ùnå:ÀiÎI%=Y˜>sÅcç(ô O;nÉý(Áó"£c;Y‹¾ò/§éêt¡.+xQÅíÙt@YS^*bÈÈ:-ö~N\žÆ^ÜG¯)ûv”÷Îg·ê’l†aäe«¥8±8Â+.B¯]ED²  ÓMÈw€¥h„MåëH4¡nñʆÏ$K{×då÷„K¨ðË|ÍÃ!÷3õô«}[R (Õ8ãUz™(ƒq!±2ï€óC˜cª*˹켜«ÌÑêðrÆÇ[™,9½ºÒ©Ë<ñÌ̼ôúÉB^ˆžiÇL¾—
+)8½‘'qBRLšÝxîBÃÓY÷
+JTSb¥ò1ápî—;™ÔhoÉÄŸXuö´ôØ8=ˆ…šõo6C¶e’p-ëWõ{$Òi¡®l3®yÂTiô/²pâÓ«›âj®JZCeöÌM<$–ú%;vW'-Ñ–c ¿U\\’U—ç ªHæIEÚó>bn;ßs¿ïÚÄ̶±g­˜6÷©ºF;zaIï
+endstream
+endobj
+3156 0 obj
+<<
+/Type /FontDescriptor
+/FontName /DQPOIA+CMSS10
+/Flags 4
+/FontBBox [-61 -250 999 759]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle 0
+/StemV 78
+/XHeight 444
+/CharSet (/colon)
+/FontFile 3155 0 R
+>>
+endobj
+3157 0 obj
+<<
+/Length1 1424
+/Length2 6277
+/Length3 0
+/Length 7255
+/Filter /FlateDecode
+>>
+stream
+xÚxT“Û¶5MšTiÒÒ’€€€ôÞ{!$ ’ÐAz•Þ› (¤HG©Ò¥* ])Ò‹ò¢Çsï=÷ÿÇxodŒäÛsÍÕöžk'#ÜúFB
+ö(;¨*
+‰ ƒ¤
+ lë·è4QH(š”[ åêíwpÄ`óüýàƒðÀ’’·»\ npˆ- c‹q„º`3Bl
+ôôô¶uA £Üdùo<áG€! uó€Ú~µ еuþiM˜”`ìGÿe0BÁ0ž¶nP
+ÐSÕÆxanl‘ö¿ˆ¶4
+ëoëa GØÚa ¿K·¨*
+«0{áýoúï#iihª þiù_FEE”ÀWHD $)€Á`q€„„ÀÿŸqômáêø_ $ ü«\ì>ý]²Ç ðý~À?c颰ʅøþ-ô 1ûþ?Ëý·ËÿOå¿¢ü¯BÿïŠT݈ßv¾¿ÿÝÖŽðþÃÀ*׃vÿM5ƒþ5º:P{¸»Ë[50¶ØiP@:`-¾# ºóG«Â½ öúp Äñ/Õü…›üš7 ÕG¡á¿n¬ô_6ìAœ±·+Íß&(v†þ™W AÙÿ61q€­››­7)ö¬±+1€/;•öP¯ßb
+{'üõe@ÜÝÜ°3ù[/Øÿ^ÿ¾
+‘uzÚzV­Àì)´6D¸¸Ô•`Ñ)†á™~æë¨M”¥6þHñ¡}åÍÁtý™Òð±)?fogÃ^Þæ-¤©çapTzV÷„òû¿¾u€²Ù£˜F$Ò£V¨w X)ZXò&›M]„ItŠn¼\qÙŽÞ¸/¹pPq¤1cbrÛ·ðžXpp-a,PÅÝp³Ìp7Ö0¹Ä{;Ulaüî½b—90?ÿ.§·']ô @««J¼2œ†‘ÖG“#w0©‘.1Gó5‡GQìD©45“±Ð%œgÿ¡Ä‰‚Þ–Ä>Q÷z]¥ ëzß7¸×¢Ä¦dr;XlV³¿Éo6&E9Þ®NçR䮲Ç9ÈØ­EäuгkÛ?^éL ŠKN-´ñæbˆ‡ˆZ¯Þ<{›•±J•AÜíûü\Q\Áæ:3›»¸—
+ aâ¦Ñ×À×åpZr¼u[øøy¼Üœ=yô¥ñ]ë@gÄŠë+ÝxP‚y[ÖV÷fâk ±“Ô¦*☭iT‡ |nüD€a^.~K»šô}yÉ™QÎxSQÊ|cêicí œ ] ©0…À *
+ço¥¬/ç*Äß?“ n”I½züqtWÙ`;žªfåºAç÷kÖ vn{@bk­¼öûŽ‹uy51wà [ _-ƃö$¦òšØД<~‹ýw¼qT¿›g®Py•Ò1°bóü=kÛýÞ8–Œ7£Û]m¼©^êõç'{4vjR}œ¡…ˆò†x±f¥ù^º(Ë^[íÖ£Fb·Î÷°†£ïd`ËSé;«A®Ö_êuw]”=RTÜ ä “]©Ô ä‘ô% ‹4 P&?¾{ƒÜv´>Xd
+)Œãk ]EÈiÍÑlYr=iŒ¦®=WsÝ;éb™§i®ajöù@Nñ ƒUïþðÐýôh®'þÎ[ÕQóíñÖ†•Ù#få`&ÂH‹;‹Å‡áÔñ“ï ÌõUö´/EVlDš®W6•¢ÔS}IÁ ^㌴ý›¼­îŒ~-(ò³“s3]vVÃ,•”ƒ¢Ì¦ø ¼£<)+vÕ+úÚÔx†Žà—lª¹vûE•#þ‚r¥3+@QáÇN>âPØ$*D6r3Ggk‡½Öÿ!ÇXˆäüVi`X±nUæ¾Jõ^ªU¦×?Ç¡q=æÕÄ«7 ©Ú`&̤3;Þïgô¹ËóÝ*ü/¦™¸nò,Ç×oåøØÀßVtMµŸÚ~x׋ ‚™èÅ8&IÝL¡¤³rYº–cÎtaô'¹Ró
+»tJNÌà'ÙÛ¡½+Ååí8Ë¿7¤f1Œî\ó0TJ)$È1Pv$e¤˜·¹ÛG?˜CÙæ|ƒ>Ö†ØPÐ8Ó·Æ+«ÍôœÍ¢)²×èW÷q惜Š†xýH`‹îÚ60Ñר…ùj —¡™ÂȾ YTµæï
+ÄÄú87EI¨Ù‹ó$CŸç4‡‡°¯¾£ÖÔÊŽŸŽî­øff.+¦nNùŸ¿éÍE‹Àx•½–«mú^N¼”·‚°ÝM®A2I<â a\ÇÕŠ¼¸ã¬'ðó³\~ÊTò q{^¥òdaÝïC¦
+H8$àï9ÖÛ/Ÿ7‘&ø„% N{Y
+±vEö\©›ø<é[F®[Œ³ëÈþ^öu/€Ó4½¤û‚>xu­Âtnu¸/¤Ã¶4Ëêè‹Üäm2¼;L>"9ÑJ<ñJ/Ò£Ó¦˜ÐðëûZÉ#€5¾þ‡ë)ÉÛæÓ&7ñÓÖ·Ò…µ÷Ó¾tô®zÌ°I:“ySÇÑ׫'y»J3)÷O¯
+ó²qIiltÞÇ\>’¯%Ý0%¼dæ=Ê©=)Å•ô¿ ´—›¯1§# á ± ë>uÖ5«·x³£:sï‹¢mÚWçÚ]D‹†;|s“#Ö"3ÜT <…‹Ëm—Ðœ˜aʯ?—ÔÄ»íÒ;ŒkÍt•¡ùÞOiü’ãç<Øoì
+>Nx‘ÇÖ¢R‰ûðj?I§wkXyÂJ¿…™ ÿP‡f…Ïê+Õ}õÐý¶Á©&îOV´Mþ(/תœ¯Àð&&EÐo£šoµÉtr1Z­¤!¬c6£õYp˳ّù¡ÆéË[vg0Ü\PÄ×q³+µ&|—Ñø©¶aÖg\»ë~¨_S”2.[ï!ÊïK •׆h¦ûFç‡
+}KÄ‘µï–gVSšÞ¶aí5Ãê—ù–8ÆA^èaÖ0ý(ºgPhi|¬¨ÇÓy.â&Û™:˜_‚¸$Î;ÚµÌbùTWÞe*ï¸q#Êçpãno_G¡¬ý•“·qVlPW½©Kßzúã£â÷JŒ‰‡‰»3oš³p%}®µ¬G*-
+¬sü$Èo'#×k'[S¨»2>j/Rhní|µV†—\ZíI¡ï=ýÔ(ÒɱO»`qî—“v‹ð»˜ièlÌ$zó‘~ÿ韟ÌULö÷L§˜žŸ~át–ä~1[œÿêZ²
+Vü :g” FëWi³Èz¦àXBÂÌøIžë8Ö¾DÞ ˆ<åòÍ ž×ý~÷‡{^¤Ÿ¶³1íT߸ڜ-LPT6ÜËìÍë²¾—iò5Hҕæ¯Ø uîx•·H7[­nwéZ†,^OÉÐ'«ºÈCQsYÍ|¹Yå@ݳ0Ü6;$9k¬ï#; >YÎÙ»_ž´÷9—x‹ž¡–£Ïp>£ÔW:Éã•=—›Î¬^’µ1'ÐmÙ?óUI¢(ìzâ4˸”I-ÌEgº´áÈ„É9ñqærv沺³UEG°5æŸWQµ(˜¥É þ}z’îÊŽ0¨z–l°žE`·TBt=Ä­?|Æbœü¨]uì.ÍÏIê¤äÁ¢«­8_é{“¹„A.+–p‰÷#ôu[9Ï÷yè/™ã"0÷˜'cœ€Är¥".Œü¹ƒ#°£¦ªÔ¥å‚3ï[|+U¹ç|˘©Š9Z Ør€ ô¢WÓlC±\°bÒíÉ®Êâ®%flÎAO‹%Öà9×9×+Z¦ÏÁÓ9r›öò¢~*+Ñ2¦4ŠÍI–Inu–.¦Ì¯…¹ÒJöÏ—2®õ»¹¶1Vƒi.óT©™¨:"!ahVLêŽïé²Òƒ´fW~‚JþŸ96ìYÔü5“|MçÙ…õ×utšIëkCÉõzð4T œ*-®‰êâ4hßG×zë»û&Ò£[›GªÏôsŸ
+=­,Í7y’^£zlr¦ÏÙ¢5.XÞ:nÑ• ‘•ó¥žÃí™™³´ë¤œ‰$ßÞà³ÐJˆA<|yüMúá$ÝƺÂ(±ºTÝËgKê¬vàäúåõ>ßFÏ>Ck‹±,FŠÛ¤Ï¸TK>¤©+Ϙ2ɹy¥7Ñê/p«Ê´wöõ*FžÌžä«iÍè;Ö>Ö­³l$аٌ T"Þ3¦÷Y‡‘lÜ›HK‰¹Â}xû­¬žÒäm½\šçzèoHBHL4ð $zYWÄV`{ˆr×”}@µYwà±´Ùq õÑÌ7GgbATn:>¶TçÀê»”£4-µ{BUÆ5óeék¡ŠìI$QÅæ4ñÂúKÒryÆ/"Â×_£é·ñOL¬V_†$ÉŒ™Gÿ¼~™$V÷&:Ð-P#ë-S.°d§„ßþØš¼ ÓìàV“àm8ë)J½8Ä}pt:“×Ï¢„·’¯ŸÌ#ÁP⸫ùHk9Ü™;‹e“~íÎÏùµVúü“QjZ§GÛàÞűÒãZ¹Í`’*§¸‰p5HvƒïHð“–ÁD(ˆ‘s`¢|Lf+hýua'Ä ¥iµ4]ÆñÞóB\o^ØÿIn fk0@Œz¯Àty°´V°‚ºðuEå› V‰èZtpÖË©Ò^ïµîd"ã¼%± 57‡eÂn*±÷\ñé1<~ÕñõÑÄSçÕÊVgîæ¦o’çWêx¬-ò91`ŠCVäû#Èýl«a«¼÷f7Ãôf™"](„cžÇUî‘Z¶3Œf tï9ÝZ'þɼÑÝ
+®¤™¡x#íÏN¹ö@'à)dŠOj_#w¾Bs?ó›V¤CAiÏ—¥”4ò19Æ)€I^ÛNî^-¿‡ZþŸ Þ­¸+‡ç$GQøò^vß•¾œ*nÙ°còP„¨tÊ‘õ‹Eò $Ì›ôeG‘G$ªRr˜”™B#½aH/…“ˆ’‹eáçr= Ù g³sç‚Ò6¼Aó*ÞWßX‹ès(é:šÖýxWeïô=M!J!K–y‹™i?m ÃkžjO')¨"Q³§»JHœis×·Çê Æ¥é)0‚ñzï>UnËt]¡=“ã ¼pB‹´“Ÿìž(Wš£¯™™*ÝúO%TåP7Gºô)%—*9³ß:$+F?î™Õÿw$­hm¯Wš,ú½C@ñºhmˆ;²Ÿëõ¢F/ÅæUž!ôçäì\oû IÒ
+íµS¨ž{OU‹ze5bæÚÐŽcñõ¦ûâ£7Ãp\n/Œ9 ™Ý¿O?¬y“÷uõé€LÉê'Oݵ§µ¶ˆ2©(®3=±EýÕPÏ.›Ñ(P4‡Ö‚hÔè §õÚØw‡G?%A50•^>iWN™Ÿ0È´p¶³zgRip+h%šDïûþÖÃÄÅ®I¾‹%â JiZ—Jø@Ïê§.´D埌>p½4øÁ6¦¤}Tp˜ØHï•áIò¹½ˆ5Lµq!ûùcÎÐU•dÙ¡p¿é‡”=d?¸ÏØ窌-w S„V»ÁP¼hNµt&§ØÅrÂPïè=Œ‡×¤”»½A"½û}oÚWÆöœÉeÏí7Þê…[Í ª¼>óŠ{¬ˆ›¿R¢êPÖbÓ#b|Ëæs÷´‚™fvZn<ÞŠ«~ÿÊfM© êQAÒ·¬—í1^ÅÒ ‚ëAFês¾fܸp>š§µ»u’k™íã=’4ÉE
+]êÒ}ß´½{ÞŠv¥¯øæ½kò¥vS‰…ìó >¶¹¯n>ÀéÂ[çÌ8åuÿ6àGÇ!ûQô¨.–¡«õ¹õäË”›ü“™B¾¯õ⛪õ¦ÎE¨ K:ë(½Þ}Ù"f4è!>òTtM\n½4ºlÉÍæœ.CdÛíøH7ÕdhxO>P™¾övp3ÊÕ­ÄY‡ìµ<¡|'”çÍ3ÑÔ D×@Æèt½››5h‡ÿ ÐÕ°ïlaöMçM‘zwÒ h’Ø™`÷l5ºøþ/1mMSñqÆç »HƒWLG{ÕFˆyN='€F&"Fª…ÀåÇÜÂ4Z>tió£C7.VNéU6‰n¯@MEÆ©etP4ü´BAš>ÓÏ/¤Æ™LfEÆeûÁ‘Óï’9); ÌšŸ…è]%ÞÐóùÑ, i<t‚¤”[ð\,~š™¡‰ßÞ”Ù’¸‘bq3³îäìÝÞæm1ä€Æ¢jt*0Gîâ}t湕-Z¸NxE“ê'1“ˆÐ=¯pØò[QÕ¿Ë–6«öØDÜJƒ{ÈÚþ‚ÛÓ =ÎòzΘË~õÁ÷íõRêÎdACÔ\ƒô9û­¼K^Ÿé
+|-Šç¶Â3T@F:œè9ïÁøÀ6±*ªäìÕ£ÀeϾG-ï4AD)Eß­ògF&­…ÉžEñäÎ;Š-ËÑC&—´<¡Žºÿf#ç:‹ÆöF|Ý«—ªZÛÇáæÁÁ¯ÇQ<A2ÓB>ž¢£±óóVmøýU”åÈäû®o¯‘Nà{D!`ü¢‹¥L_½70/x‹JÉ:
+endstream
+endobj
+3158 0 obj
+<<
+/Type /FontDescriptor
+/FontName /QSKIJG+CMSY10
+/Flags 4
+/FontBBox [-29 -960 1116 775]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 40
+/XHeight 431
+/CharSet (/bullet/multiply/openbullet)
+/FontFile 3157 0 R
+>>
+endobj
+3159 0 obj
+<<
+/Length1 1374
+/Length2 6003
+/Length3 0
+/Length 6954
+/Filter /FlateDecode
+>>
+stream
+xÚtT”ïö.]‚ÒH:( !ÌЈ„t7ÒÃ0À30 Ý”t‡HKHIÒ„¤4Ò"(ðãœóÿ{׺wÍZß|ïÞÏ~Þ½ß÷y>VfMn)K„TGqóò€D2j:†Â
+»Â,j<
+`‡p
+å(
+º¹¹ñ€œyHk ŽG
+G9ýêO†„BÐÇîüs³vp„ÜëïÂ
+·´ú5„¥‹#ðæäU’ý A‡ˆþ³†¢
+£'ðñrD8¬ÐC@}`VPô‘—3Ø
+@!] >^ÿ;ñÏ//ÀA, Ö08ÑØÑa¨ÕŸ5úò‘0w€1­=^
+¸ òxùÐa>€Ï?i4Á°¿m€þS«·B
+ŽÔ¸£<RÛÔ<:ÈÇÖ+ÆüÓÓï«øÐíf¤n’ Ü+ +g‡lyõǵ¬·½P¨ýº8•ä:ì¿6dÉŠÐé9¼;°×Î.“³`ét¨x[]ã2biãcZ¬c“8løù=­
+AÙQ£Y9Õjbo-¡yhTþg›“uÚ—ääweîÛ¬O¥+íl`LJ»Èñvô3pß>ÄÛ0^V3»TT;è*á‚P,[Ì:f/YÔÉ}"kõËÂ=0E|X«ÝîE¥P©³úbrm
+üròéXžžîµj¦/ˆú„ò^"\˜g}OÚ¢E;
+«Êkáë9Ìê[:”<µipüÈûçÑøn Çôá
+£bt궲ÆãiÓME¶ž<–F™Q+á%Ô ÎæQ{n¿u_¾&Ä´Håþ¡®ø’œ&ºÿ€\$I&ÃYI:ï‡ñs²†U;™ôèúáv¥KêqÆdûNž9E\CÍâøÅq7$˹ë r$üžŽÌ‚­j¼{¨RÚh€©;/bI¹y•^¯àì‡b_Í÷3'p}ªdvû“)Â{1±…¶ Xկ˙E^¤‘µ×?d÷DJ€P¾taO±¤…Ç®²kË›%*ûQ¸¥‡®â“MYƒ(ÎTA}'ÙQÏÊ2^mËõk›G‹å!i#qݬw,^_4º-ÿdñçó#’B æ}]srx !ªl‹7ŸÖ 93ú4ìW7{Ê" Ø¬éšGÀ}¨gÌN» îY´‚&«NDÏU5ñ™¹[o@BM‹U?{/˜
+KCv?ðæ.v>t¸ˆ¹;Øõ™°‚QŸ(·ð·PÑl-™³êg’Òøg.åNÃç9>`Oüñ‹Ð«/Áî>ê_ªz²wf“!®Æ¦¡G!<Ç÷±.®!8®–…i7“OÒÁd,ü—Ί¼£ÉRÜ—Î?ß `¼!*
+&+a/ŒNM?…ìiÎÁ…m¦Óh­<=%#TúéoQÎÐ^²„^Ô)#€NÇýƒ¤­‰¡8QëCÇû<'¼VG­çïƒI²â•)¥ÉÆÝ
+4¼ ¼"õ‘=¦±ù÷‰ë¥$'® ½Y®—óƒzy¿ç…v\zWü5FµV
+ß™¼ ÅKÈK­QèœØä¢
++Ó4ØsHz¶ž½wÀmüÌy[˜ÀIØù&úÉ­Cœl2ö8nÊP~QL!11`pgZ»á½ì‹«¢Õ485;²ð3y”èÜþЮÇYlm9tÒ£¢}nÄDºyú1{tݸ%ør‚ªK¶+éc¯L½Wa’V£[¬‰Ìå¼ãkß ÊæSß‹£•œX¹]'øN¶Ñý)ÿÇ3»=¿V„ß¾{½•0|vI!päÞ#å2˜—wN´Zd&Â!k±gÁØGì|UøŠd¶)ZSuAØW/ß9'§IPõª²/:ê­ÿB&Í·iÙ;/úör¾mà¢ÎéoÖzÞìÌ„lu¶î2O<’{(¶Å”´Ýî@ÀƱ£ÜB:¤ãF-ÀÌ?\»»W¶<ôž¡t)»fgp¤&$4E¯q[9ù«Ó£ ˜gåFÁóÆÊŸ?h©ÐFesª¦ˆ¼] ©Ï£}
+Š®Lî¥úq=;gïÝ[)_e®»üÕî ‰âe2_jÖXFÓTtwØaùƒˆ{ƒLY}[î]æA†O Kû²á¯ì‰qêî5ð¹ëXlUˆKV/y% Wÿ¡LâòM¹=ç;YlÖÓÕ „Êå™ÉâO ¶Ø¤!\ßyœyØßÇÓU…k?&Ö4*ÖYTŠ•
+¿…Ó¤HuÀæåñht­:ýî—Û[uS+šâ2Æ‹KÆ6_¦nbŒÇøëÎSS”;çà<¶A81d%è¬ü
+·rq)C'‰+“'Òy3]ƒ¤µ±$œ#šÎ¢çÛ„“ë[J=ìb7^˜át§D06Wçsx¥8Y¸X^ 2nð­…¨üǨ—»B8 ‡%„>1ï¬=÷Öëwø†kQæÁkÂ'~'v³¬´Ý1(î]éÓÓÉ»ëÒˆPq¹æ{Žz÷¿°ÊT駷v|º}Dª[¯=át"æhRe‹÷ÉOÔ\±`ñvƒ2¾*àb2QšîM$?Z«-òˆu9oŽß~ö­`BF^¶àkØí&ˆ=¦w¸º'a¶êä.S¤-wMǤ[«Ä††ùý‡]á÷/ÄsnES¬®5zx2¿ÏÅ$–è`ØDØ}³Ó…J ™pï<#¡Áó룺ëB&#”j‘Tݸ|ïÀ~°í.ø7Ìñ=í[’Ö¥”[ŒÌÕÏ#ÎR«€?avÛNíÏRnøÖ
+Fr÷Z;zÉÃßF*¦)´’âŠI5žíL)•ª;,øêW¯¾6 º‹Ô¾Ï(•[q½þœ„ºÌä'|¾‰JÆÌvÜ»I¾S÷‚õ“ L¶éÊÿ$òhà[†×8’e=úøNù\d¦`@¸äÀä&²a
+\*[’à%— ~mÔ2Ž¢ï{<Ïב—@OQ»Fîow«H¨…$¬ôJk|:‚Ù!Bn²IìšýãÖdï M¿N§FÊñJ¢úÚ·§@gfªx/îdar’r]3j…Iiíoƒèù°½ç’cšèßÔ=W¢6Xœ+ÝøI¼ÉI˜Øe†£½ø"Ï«V]°o%LhwÜl·¥Ð* », iL먣Èûe‡kxp”PÏùm©g~Ûyù&µ°Ëê4Î50ú+ 2ª_
+<^r¶Ã+¤Âôâ­œ Ÿ'6‹sÄè®Íñ<&l ±Ù>b(îT'.ÏN X%é°›Ig*S¾a¨ÚºE¼©jÍ°¤>¤q¥¶mÂWÓœEK¸bÍ4À%ïÓ)¹jë]Hðd%SÃóC[­i¢MW÷J[dZAÜÿt‹PªH„¼¯µ¤•È·K¯Ó3›iwÖ1¸oÿV|&éùõ°S¼e)ØGÛ†qV-ã®Ëˆ›º!aâºë]¯1Á(Gß—v(Ê9·‰pŠc>R~ÂcÚ‚M«»ñ´ïÞ©-.þÀ‹“ÓÈÇ,ó'‹)®¹¶¥9‡›P©ˆiñä¡ ãçó·ïÇ)ö&ˆÛ¥Ô®t,~ÂzûISǦ}95¯:¾ àÙäÄ- a0Ê{òµf¶ÎõûȵÏ8Lþͯ Ì®H«•F« 4Ó ÛrÁÅ$¡Ò;¬ÝÓ‹ä=ß6b^ šž}p½ò{•M†S )@«é€o1†õ‰šu®°Ë ƒ‘й6eÅ©Q1±ü ;2÷Im¢ëèÝ>¯ýóÝE¯¹Mî0;.E ÒÜÊÅ+ý¡Â›ˆcAQ>ê(‰
+§2vÜù…ÃÇtx¸cŒìv-¸Ò'—¦õí±o{ ƒÆ@ß*?¾yâêãMì=V;Bµº %¯˜:Ç iŒ» ÁeŸý6ŸBÝê£$/›Ï3f4¼ªŸ¬´$·õ„.yÈÏínó¾!9TNÑÛØîØÛ¸%ÐéªÕ­Ô·›R1f¥õ›öœ;@±_µ¥bmb‚C¦ŸÚ?»?Âl4Ýk×,ÁM-NÿJ©By[[ŠSói=³Kë‹Ãº=Žþ¹ŽIWœçЄ¼wWW,ž?ÌBR[c+žèÿ,@–e^‡Õˆ}§#&ìUw¡Þ—%\WZ<µ$UüÜ’¹×¹æ9ÛÓºY:)<rì5Ûr]Õ¦36o¬eŠúy>ÛÅÍÕ$ê}ù²ÎŒ"¨¦wŽñÁæ-òu!òÖÉÎ}aØK
+V)fX šÎÒ›Õ1È—ìpõ¶(¹‡]N¯&Ä¿h‰b×8XdÁŽ‘
+5PÐÝ0ÌxsŸ‡!ˆÑÐë›2ÔöÃÛQ™ÙH¶Vº•ÛE!ïU;JeôͲj™§@Z57î"Ì…3˜¼g¬ÊÇ%S0rúlüÜ ¥ªý„’—`;­B\”‡”ñœMí
+õü|Í.£j»Ÿ¦nØß ¸ÀùeéýzæË‹ªH&"“h*ÝNæ±Z{ù§Ú‡¼þž´<íí—‘æg2—9×íjvVZiI-|TÙ$òq}¢܃L1›k,*Á1}ÓØ£i ]= EÑÈzÓ([åÜÄ­Âv£nqÉ¡z;”²â“E÷H0ÏÛ•Þxw w’Ö÷MKwz_…½ÿÑ…YHš@ÒqZø6º­üe£‘‹&k‡V8:Ð>Ö(Wmì¤`¶FXJà£n‚f¦cef¶ÚpÉ3í¶ÊäN|«Ýpü9®¦¤¸–(Þ¯I­=œMnÃ¥·‡Ü¦¬àU‡r,ûèÂS+²YT V{4ý0[ °³Eîž⎀asÐ@Ãtø¢E†ö¯3\Œ½oƒplMZ¾ˆ•ÇÿÈ
+3®ÆÅHÛ}JâvÌÑ)ÒpˆÈlýBæO8ÛÊα§Èa-¾ùÑkñû軜Æç’r¾º~ueìg×G3áäk#Ìu/[W–ûSŠóîwöJ=¥‹øë°èl,s¯>Ëoî`%Úyc^k»ÌÓ ÒóH1¢¤$ÛÂuž¤ˆw!Ó^n‹ð¹:¸˜a§`Dž§Ý.”L‡™m~ÓÖ¼õŽ.¿õÙ¦Ž&dÎk¶±âLùöI5÷tÍ®y‚{•žìÏ26¬4sǃ[ \'€“ÛU+t¶Üê‚e¸˜zUò
+-«Y’Zw¯‹’"8ýTæ~tæ…™ôØ­ñTî‘,3ÚçÔè@V½‘×/Ÿ“¥îÿÐb +‹dž¿î5¨@•gž}82F¦«0h4š ÔÍtiÝòÊK`¾÷‰•Ÿ|žš‡&Èg‘hŠ[ºŸ+x°c!íf5ñG7lö*€É¯Ã÷sP£˜šð;ÿ™Ð^ûÄö½‰~ç5 gÑAŸlŸüƒp¼—ºoDš(°ËÖ|ù»t…H‹‹ŠîØ˿͇¨kdÎázKÔmæÅFÖQ¯Aj1ÔõqtK3¬–𚞀8‡IZ¯,óãã%ÛxêÛ— þ0aº’=A&Ê ¤ôZg’Ñœ˜GmmÓVX¹DÒµÍÀo_åxƒóÑ7 MM¦íz‹×š9]ЭVY™S73
+šÓ`¥#?T¨”)õ¦vØn÷àGó[ϱÍËÙwÙíø?Hà'웣pS™v¿Š¿TÁù@´ÜçZ'õÉ»KkAW:r+K{ýp*ˆ„_còHjUºÁ¾}ÔkÝÙþ>Åðï¹0`uØ®ŒÎ,º6ÊM~«ª^&¯•áÿ™3ƒ(q?ù0šÖÒ)¾UôE^d—³:—r‰U\­œÞ+´Í¸h(÷9–p½b`pk¼¯”šXLª‡Ä%È­"±LPrSTJ|M"ó5º$VÓ“'aª·ÎeŒÚ¤¹IŸÜé*µLCŽL{¯õÊÂèÕý*˜«…˜çkÙkÙÉ’Ô,Úp€†
+Ξãá)ûúܾº»µï¸\$÷F ƒŠòZlXk‡[¡h´ó©'AëQóð@Ùᙩ?’ýt%Hft\[[û~ß¹õqÓz:³œ×^f1ÎÒÇQDΗ]V õAd.‹I›.òëÁI¯¬¥ŒÁXQ­|׶¢çP eþþÁPÞ*~˜ß™Ux«¦²YÙ\CÂKæ£9Ì$t º.Ï/RftÇ€dB·Œ;}tDúdRr-'6ªLÖL%ò!¢Íq:§eÚXì[×G8{[Qûä,1(Ÿ#1&"EÜK@xá0žG½¡„OòaiüQ‰vÏJHåû{¶%„>o¨¸Hc5+Žlåxòü kŠ&¾4о*°QQ 4ÛÕ0L"N= õƒ~r
+<wogÜí|³ù±†pg†ßáèƒÐës
+ñ¡bàq.*-`\2ÌT¸‘<¯ºÞÐW\=3€žÞMÉòâ<Þw»Sy%ÓT ¯¿èõ˜+Ei—ŽoÜÍ÷[í^n`Íd÷¹:©˜­dµ]ˆq/•ÏÙ5x®ûç=ñçÞéÄ.,±šM›Éï^ùN©+{Nõùë" ’BäÕÔ{O$¦TR
+²ótÓ&^ʘg#PWòÜl9 J PËG™á$ 3Ê'Ô,Bû#¤ÖNŸyHLïN›—²Í‡Vnv:%f–ê 4eXg_­Vc¼¹zíVáÁwã7“ò83’pü;vzÑðé·‰Úìþ±ê׈GJ”€öh&™ƒD­ÌBù®§zVÏÚZ3w´Ú¦’HüÞ‹´ÍÅ-§ävÈŸöÊ>§ª>‡Æ?t¾°Tk¸3­yi+ÉfæYðzÓ¹z¤ð†mù¨Ÿîv¥ÛíV¢Î3Ì*‘á¸L‡Èÿ€mr
+endstream
+endobj
+3160 0 obj
+<<
+/Type /FontDescriptor
+/FontName /HDBZDK+CMSY7
+/Flags 4
+/FontBBox [-15 -951 1251 782]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 49
+/XHeight 431
+/CharSet (/multiply)
+/FontFile 3159 0 R
+>>
+endobj
+3161 0 obj
+<<
+/Length1 2459
+/Length2 29184
+/Length3 0
+/Length 30636
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸uX•ßòÿMww³éîîîîFj6Ò ’*Ò ÝÝRÒÝ-Ý úÛ~Î÷=çzþ}..â5kfÍ{fͺo€ŽJS‡MÊd”¹x°q±s
+TÕ´AΖ.\œlÒ '
+ héá
+<ìÖ@0€›“S… 
+'d¸ùø
+¦Êàé„ØO+Ä •ßÁ-œê %’ÍݦJ†´gÒ‚T…ÍÓB\>Ò…ã;ýÜhM­œ¼µÑ’ܱ T $Å“ÍÑg× ÍT[
+.ë¢f:RÎÉ7*æÉl{×FÐ=–êè~Œçžø…}NmZÖ¶–ï]4ÇÕŒvÂñYÂ"é$]šê„öøõˆ—gÙ+µÌ<k‘I0ªŒàÚÓeÌ’‘¯ûª¡jáÐ!®º‡ŒÔY‡ÑMÏ'¤ú;~æl¥o2¸_Úc zJrœ;¢$SõÙÌiµ¾À>Af&_ß3 ÐîdŽ<¬!ö•éºN‚¿?#ƒè‰`—e(áÁ”Þ+XõŠ1¡Õ[Ô—œpMb
+(׺íâVŨx½ FãY[Jı…
+WÀß)®Š=̧6™…Ö¤¸ÞàCá§}dbÞˆT—F&î­æ,apìج·W}‘`ÊïðŒ/õÈ~O‹.ïoHÍÈÏa÷ˆHÔX^¼4è@ñ›|×æƒ §À˜ß÷¥>ëE¢!–» .š_åãR,üékß©v¹ù^%³¤¿¸ÉÖ¿c³\öö쇢 ³W}Üós³Q|‡{;G´Ž )¡T,3Æd‹WÜ }§"æêîËC>,êôºç?½”>ânc¯ON¤¡W’M‡",ÁO¿ìlïûêÀšy«öùmG:è§"æzOåÃ&wÜèV-Ã7#ƒc©þË/ß•¤ösdD|¦ßè¸ÂÁ™ŽS?¶:‡
+æHççhX–̇æIÁñM-¬²TëŽGA3º>gì¼T’jAÁ™v›ÙC?o;sôÒëïnhÒˆ~é,Rɱ󌰦wMô‹¬|ⱨ/ñtB•7Ö¹¾žÁyÙúØZˆ˜–aªE›ÃJ-ÙtJjΉ$Ž°ûU.5i÷ûH[#×)—6¹µ ¾àUò,íÑLÔ­pF4²L–þë¡›
+]Ì„1f­@h”MY‰Î¾eëýNN5,+móopwo¤~0Mý’¸€Í€Iø¬+-ãÌ=‡õÜ›½z0À~Ýù«ñÄéOCmò:õ1~AÎtçâv”ÄfSÑbóIJ
+M“¤­¼9T¹FzwkL\ôœzU^¡IÓiæž^~Ÿ2Ãø&?ò])×J9Ï®B(Q¸çáÍåhÒ7î³v&æz±g9’®<£Ÿ7ó?.<ÕLJijJé•I?Ðnd¯7÷&mö>å31…½0Ы
+$ï§ùЕS(3Ô‹Y( À¼ê€Ã{~yÉ'hL©T4¼ ƒú‘¬bF÷cÌ¡"¹†W{*)÷ÎKwñ›º¹0Ž,RE€Õ±†Ì66†¢hyàA/V_ø§W–ç1̯QÞ¯yý¼¯L
+ÒuË×e¶Ý&vºçG‡}MGý ¡ŽBÞ"zuØöƒ0~Ô4múðµÎæ0óŒÛäD¹ãyY)ú@]
+øºš’ñÜmÉOq^æª_®uÕ½‡ xð¤×´A´µ‘Ýž‰?Jš|6 _+‘}`á´\¤`-%ŽtîLÛ%ƒëÆ©´ÌùT">S&™¿¨!Gy<ÎYþJî `neªg>EV˜>maIz‚»ò°z¶f™ü±*9ó8|=x­/`¡:P8–ˆ­6¯€“(ª¬LËØH¤=·Ì. «PáL‚?IN"1yøªÑD¿¦+ûþ»Å%4\Kè,‡µèÏq9h­ƒÜ`¿ä©jÀák¶·¤£f7ù¨¤pœÅ-í-¢õ>¬b^ÐñxŒ›‘ǤÉ[
+ó’嵚çG k¥Àš"2ò[N?õ©Æ¥£Ë$Ò¼qïÊsvï*×bØë6€~œ[Ú%D¨»lXaQÃ[õKÓ]e—¯µÜÝY>l<‡¡¼ hâYŒn¬ü€“»¢gïö¸¦@± ó9bJZ¦[JkÅhÞâ”{¬éÕ‘R(A:
+rÁ[GgñU`kE4'U¯ˆþ³:TŠÅ—>~+zç£:ZØž«šhè“ ?”Èš>—ý`Ö#R†Ÿ[óio¬Î³h·\óQ¤åD©ä·múšã›ìŸ&&"—bꈲ¹yð×G1is]Xq±j"ûzÊ ,?{©ëœ¾]5`–n¸Í0àB/
+a3ÈÇÏ 'HÁØ»æÍùkÇj¨†ÆÝ¡Ëå4 ã¶kÿ¼ù<÷f[nA
+íŠCk»A¾úµÓ›¶*\‰•M{˜^R=ËÕ.L^ŠÿéAŠCœgÇJVï†IWíîÚsîçz¦4AÏGÓ¢hôìªIr† ã‰¯rj çÔ ªôø‡¦S´ç]æ]`“9E”8cä€òëÐA”†ˆŽ.¦çý;PÊXˆÙ[ÚŸ—‚tI=ž^rÎb°“§v¤A¡h‚¶ZZ‹
+$ӠLjœ‰Ø
+ýõóô觶ì&]?ª ÈJ¹*Z9Yïik§Ü\h¿ARID2µã…¯ Ì (:W:NM8i—ç<*©ªMøÉÓà”à€`(}µDGmMå•1të»—Páõ#]NÕÅÊÔØ;3dáë}°OG^ó+™L*\¾wýŠž“X‰|ýhÄBxí}ÖÕ¦ Èo¬—1WLVã¡;Ñoœuˆ’Û…?[œíV
+µç!±DÃ//è¹¥\qÈC¯E›0ï«ùo)¨2DwÕ¦4¬í¾©Š¶óBµ‰Ë´xL6o´º>˾%Åî’•çJ›·•.Æ}¼ÙC÷®°»µ«ö@•È«Ó°å¼¡H²ìMà zk$ØÅ…ÅóZžý¥X
+ƒ"ªŒL<ˆ×ìuqïŒmhd„‰»t7õä9RÉ¿!…c±Œaº¦0¾Ó,@Óà>lNÝë ( ×W^Q¶´>ï-¡,ƒ5äYÖ«CnIô-è;ð™ð‚ˆg?J2L¼&,‘çSpÙ‘»S‘˽ÓAŸh¾Æ]±½;Hæ®WYšþLJ2ð-DôªËÏ<s!`H.'±à‹Û 5S^íùT=Üö®æèE·âš®n
+ Ë8F·î‡áC#þú{6r#­+KL,b…]ÌæÊ냊³t¨ìPLáÜ¢41%M˜p™¯ÇJP>îUøiÝÔW§Ì;çó•ÈÕžs_¥L2 kF¨D¶ÓÉÃ2ØNQJˆ’Ñc¦˜‹|·Ä™û?¡ÌCw~?7“¿áPå>#™øĹ"æÏÛ»¦Á—žðµÆiE0p<6û¾½ïQ™Ým½hïO¾q—'ŠhÄòœÿ«]‰KÏSœ^˜àÑòû~×\Ð|«—o`M?¸ûB»ÂƒÖnµy$uï/Á W× •Úé‰TYÆ~•RI‘ˆ'HÓ&°ÝÃP~€uil@¿G°ÝEón*Ãe¨ô©×záCÓá’ú4+ß÷*Õ1G59
+ŽX;_5èQÅ Vb4¬º;Lî­‹¥á §]¤¦N·î~Ö$î,dqÊIŠ”O™Ý&Do¨róÉ©Ý,ÈŸNõRÉP`^@›/°n4TF\[bo"(¾cE3EŸ"eR)'p§Ë !ÕÁ3>¥æ!c»Èvƒ;™Üb”$-Wç¡®¶¤÷K
+ÁRäs¡©²l³þ5<2âV)ûè-Éw(—ÚÂvc·º…(½YLˆMêÜ‘Í5(+ <:Ês—ž¬ùÕÞ¡±úû2<SÂkò5r¹˜r‡Ï%)cŽÏmBoýCRy·¡~]®c ÀÁà#½h!AÅ: •ƒê+_èyîÛQÝ%öeY«‹ZtòåûÍzá!²En ý ±oZZ%@%zne¸¹æ†7†äG•bWÔ·-ÇÞ5¸\Û·>‘:#9æ³Ç~㨎ÞðÂ~Ín’0?ÐZd|ÉžsYiå5íA¶©ú€…¤$MïöÁÆO¦Ò#u‡ñ4zv &Ù GëO‡»™sŸ/“ÄѸ.æ,]ÁÉ{ŸážOÛ·ø-æù¡….=?æóX›–9ƒO§VtK=._JàÙzƉ†eÚe&S"\ƒ¡ä™ùö _>ú¸x‰J~I‘ÔPð‘'
+%5 ³”2fÈŒ÷âºR:v©ŸúthRÏ%uc“™KuÂØÕöMÜoK¯ñ¨Æêý‹}›%½…ÓHÛR¦zy™°NÊÊn[út½r6Z­Åx‚‹.ìÝÆ‚nKÖWÑ}²õéy¬x1Ûâ
+3?Î@þ$Yt3»kP}[5¬
+æ]4óL° 脵E/¤ŽŒ{‚IÃ¥1…‰l¶LßÑTJ@kc" –æEÍ•ÍÚâ¶D€ÿ%ðÊx¿lSã•ÕszêϟК$ ¾!´ÆM|=ªG‡û˳ºÆõ륄ÐNý›V*/âÐoò>Ü[qÉ20ÑÁ¯Œa$Þ/éÌA„•* fc¢•ÕéùóØ5I.^dªÎ?öÅTRk]Ùk‹î¶Œ¦KIÕ/W §:Ù¤£O£d:?Ùg¼üÀ”VÑ°œòåªÑ‚â¯"O¿BÂ[êͽ†~xx“C®ÆÖ$Iët¯ÿNLV%|^Ö.rô¨½Ÿ… U‡@5q7-)4½Z¾‰èÔc.!oî­×IÍ‘žü›­ÎHÉ™ÖÚpu(ÂÄñYY„iÓ¾öÛ±_suÝæG©Ä¡Q¢}B3È)¤X/篠a¼’ r9c]à‹œo9ß8öL÷†*˜¿°Å«•±h5È„e)m˜î l†ißZb}Ùˆk5«žL¾À®`‹ÀfÌ3XŸÀ”ÃøÊ'0……q(*½WÝF?ÿØÒa–”C/ªrZ0,W¾ö']M/ä(t˜]ÆU)8ÿX·×j #ëp@•Yw—õTÀ^þh¿¾.îñmSÿ›/q¬è|sö'~u ÉFƒÁ…šû½=m
+
+C CtÙ+Hp
+G?Þ7iü˜ª#>È^K7ªÎöÿðIüyä•~«ë=qJ.Ko®SÇbŽŠ¼·«ùþG‰éÎÖZÖ`‘:ßþé·d¯J»b… š†*¬ëà…v±q‰æ ©sñÝ82ð‰êçN:lAYL_%±aZ¶?*Xº˜dìÞgÔ³]cÃ"#×feKâ¦Ó3À¢‡ã©ü_ºÁ>y3´ßÉÚ^©‰¥Toõ8tHnSu;ïNÁžä»lFT"Tñ”1ŽRÔYpð» 9ß|bÀåPî—´s¬=³hÏM|«–MJ`)$²dv¢ùuQuAÐJrÙL›`¿ØÄŠž_­·ôL7ø ‘›9uyIbê i´wºw-æfQ½Ûµ+³huŸÐ¨Y$ÀyæFòëMAÝ©«¡¢ s#‡ïVÈÅ•ÏN‹AÑá¨è¼d—÷¶’îëãÍÉ ík– ÞûvŠ
+ gôF‰G2juËûhDB&DgOMjD—~„Ýe=Ÿ†Ò6¬(U.]Å^”Ue=®ŠÍÛÀ‚nÕ$Òs$Ïì´;Ö1(Ü´¨cX1¤&ŠƒÌÎzì˜{Lrv‰'Õ Ž ù«åýÒ«ú¾Ì ¯3
+)sÆhÝÑ”Í6ÕÇ´‰æéålFSb}ƒ¬r>79>Û¿vÛ…î[¼(øžôjÉ+.PT©aQ±îêg5“?sT½‡.Rm—羑 ; Îcœ(àdRç_XêÈ
+ó«²z^¿»‰¡¼o¦ñ?oÓw«ˆ1ŸÆÙÿ¾fö4ൎÛ<_o¡c¦šÑˆò)­Gxgndú£àˆ;x9¬p—Ô¥ÖD†1®[㧈p:ºåµ(¦µ8K'”LáÚ¢;³#+ÈÀMº†?f±ðùéUÙÏŠÐ’q0psºÚY4i Ä”Ü!_<àŽl€ø'‰z«6E½eé4-vjò%@Ø$ìJÕWÔï]rŸ‰ Ðj¢W傃ŽRÄHä?
+ÁfÈP§Ìò¦Kv*N8ªÁJ‘UƒÚ3xqLÍåJˆnI íŽ~pcÛáP%fH•Nu°´[ô9ôIØ"/>®ãy¥31w¿
+*°…ÛTåVê®J…Qê,¿¤ÂMG„ˆyÙ£Œ"S‡Â9Pi¼YëÉíÂxö‡ïŠ˜ÞÔGKj©S¤×õb,¥m+§:F&~¬Ú€Ãoyª¢áíp‚±Ø0ÓôvSFºÃòöˆ§DI#½WñR2.ýR@‚C´W%N"f¢@V)ŒØÿ¹ûq÷›X5±)²·Þ€\òCA>Í'û„º;ß\$´ÛÍ‘‰=-ñjñ$‘rA_Œ·,K|H×$ôXð&fÞ©Iªh­æÌ%|XDaÏåOkö_OÌò#WxÁ¯¬à¿!«á¬µœ—’ßÌ®„rfÅÒ?õ²;Êé/š)']ÆŒHFˆéšýØònYÒÏU
+£{‡7òU9»wYÛŠœà#вIð_¦ñ’¦”TeËÌt{¦Á$ ©óö'céÈêe„Ÿtésš_uíÐ(®Ö= —5z¤vhè-TF -éÒüÕ£ì¬ð`ñn®±,æ#|êðK-ñ€º¹á³k团•C®4vZËÔXÛŒVÄUÂ:i°pż)ñ7gýÆï& ×6ŒÞï-iYÚ’ñk 7J1éç øg©+r3DaÛ(r¿Vx^
+[\e·’Xã$]ŒWóÉZ¬(a>!N4yëqxŽž33ÄäbøÚ¥m¯E°¦š¿ëHâÆ3ûÕ+,á¡•xü^q¾,ùâÐ
+±ú}±xRd¡_U”Mȸɔßü¦©^}š4UEZ‡j-ÆÅ„Ý;²* – üH‰±Dú6†öÈÙ…ÀP¢©>.-ëyŠ^ôË+%ÏjÌTc:ë3“£ÏMáîOY©n8ãÍïòF²¼ŒãM&Ðd¢­y¹„î#v¶?iµ˜»Ø¾¿kXgfQÚÙå‘Ìb°Ð'ÙQoñP#zWI|bT$úJ£±†.Ñ âþ+jVVf.A:Îœ(ªž5%mC­Ÿ‚w/TV
+ŽÕ\‹[´…$aƒKbM”.XqAPàám!Eîô$AÊa9Ì>Þ'³4fJÜÒúp°ÒÜŠ0·ˆÆBMA·ëNf[ƒqºN¢ûÁÑÆwµ7n –´€àú Ç¡€é»§eXC)/°aëÑ@ß;î”å4¦–Çã¡W{Š’Î{Ë(˜J÷£Í¿)‡8â yð ¥`;ïäàé8ŒoïN…È’ôÕvŒ1ÌŸœ9Ç–:kSšG¡L5ËÎÝÈ¿Õ$ˆ.²ËE§–îö˜ö 9˜|1Äô¬ï *™î•Vÿ4Cø‘¥e@]nNŒ/~1‰ãË‘Ý÷°÷s±x8¡Àr‹‰À©Å—÷=² (=O£ü¯@šnÜs›ºÚ‰tJb­¯€þËòqÊ+ŸOÏIûqˆwRúnxu•ô}6<•/«¦Ï¬‡ôìå&3蔺#>òžnÄܾÀ†ówqŸŒä±íÃé%!]¡óØõ_1ž+!¤%<;Ì[†¡ó4‰ýpâê®oa{ófSLºÔ4¬ç"Âúé©ù¥óV# Å3‹ ¾e¬î;Ž^µ\ç‘äšwdBÍ8΀“þ\ÍéÜ.þXrÒ`ζ‡žªºyq–<vÙy1‹/u^(»=H‚¿Š¦ðçPj|Ï'ñ>\­ñ„Ñ#Ÿ8m“”vþg&ø¤…/j>ÁC~¿˜uCäÄt¤8Ó÷Õ´“%œ …’ãv8 Hp»Ô–Îü~<êÂwF²úë,2ª¦ífèûƒÕ6QÓî½ðÕSïúÅJ²;² ²tœ~Ü'Xö2Ž»¹(°2&lªr7j²Êo*cW©Q“ÊR+qϘc4¢~rÏbGÃå‚f+…“áóüçU¾%…}ørôåôë#NuwÛ•`f•\Ýû¬\8=::äÁø¹â¦%‰Ç‹2é8±hxÀ¸½4d{@J€ú}q¹×æKR@lœæÙMè*Uç
+‹ó£º•d-¾JÙWGÚOæŽ  DÅÙ÷‚6A|MðŸî‘Ó~Ü8 6éSl¥Z<i3Ž{÷#+õ»5—§õë
+ѱɒå"CWí ™h'
+Hçlƒè/†ª…aw5;DB
+
+ï-–?ºR-=Ú*ÄeÜͲ_Š‚--g)[ïkÉ)… H¹î©ð?µC¡m5šp˜Àš/"¨z`J)æ㦊áí_ ’Ai¹W.´Ù‚ÚÎNËoÄ_‰ÌO×tÓñüDë }RÒëT`x*Ý[.êe{"3üYgÊ$‘~`Vq‰:‘‚iƒŒëD˜R6}ZÆ,ÞâNæõk|g ¼ù´Ã†°uÇŽz^ùM˜(¬Žàj%vñ•{>j»Dß«&'}o‡µCuµÚ9žŒJéyg*ë=·\u¾r2‡v¢Œrÿ"ìLb’C +,L¡£±Ï8k~~Ó
+‰t3•ÓnXèjKE@Û/?Ä+ O3:ˆ2ªÝœpu<l/*^pöT*ª5t_QVÏÃj:{»³U-7+¤5«^g|ž ]p¾[Ýþ¦Ngå#8,ŽÒ¡‹G%»-(Uì¯aíØ;ÖÀÂ\]#òSD§/"­`ìcœæaÆ¡­íƒÑ‹<™€È¡¨\~ì}Úà}Ã;.õKgc…/jÑÅ›Hó¶²ìµ }ic=ˆ½ 
+„âáP0´óóÓk@7\ûCE”8½ßAå>U¹=1“†¸N©…Œuˆ½ÁÌ´StocúÕZ)y–ð+²ún¥3Ò·x=-ó!G7ßã¿ÞªiŠÒ¦µ±ÈX¸üPmGtå"Žm7Ã}ÏæR§èâG\Ögi) ^ˆiÁŸÃElìSrÒ¡}áM©¥Kí…‰Ýz7ú ƒÙ‚Ásǘý O ú]èà×¼yÖ^ﳈ1³sö]S®àö>øÞíDÓå-Ìó0÷š(Ãpæ|
+³:ºdÍùã]`~Ø9rûeµ´Eœ ôNÚêë…à5oá‰CÉ<²H§>ýîú'…÷Ÿ¾¢U<OãÕ(ø")©jμ($Õi˜Ê7ªMÙy‡‚ó cêé«ÓpˆÚ’5¢U~œþ€q¼rðæÙŒ|&­ã««,8ÍÄ
+rÛæÄY1â–Ëààà/r3>')r(YUÃdê™8D?LJñeO¦Äbiç¿Þ[{@îâwΩÈpEìÈ|Œ‡§Ò 
+·²qËz±Ïz”îƽ_d§×jÞÖ³ت½« Fa¸¹BÀ¿¸¡ìf·_\'#«œ tcŽò^é*£vSS†›`nÀ»ç÷Íç€ZóaöD™St§TÚâ ¬J>b;&‰F8OÊ:€ÃÜçÜúñÒšõ‹‰7æËO¸S­\ë æùÚ”«e™†ÛɺÂO+ëÃéGg»©æ?Šûób$ý'r˜Nt•à ƒƒsŒ¡¦®l§ËÈQw´Ø n”ÛÔßÙÌ®Ç@)x'R•¦ƒVÌŒï. Pj.dB´gÓC'hs|wϪn‘¼zdXÈK6bı F,£OÏ”BœÍHGbÙÿþDZRoUr~ÿu˜'Ž\èêc E}Ý  ó a ¬º,ʵbJF›‚ÅfWrÎiEÖ3—MûÕ«M¡JÉÀļܼHÓ~ÙßÉ¢À­Ä:Ç‹äÏ;8ªi8D +¿Âd_ìØîû…JÂ@x·Ä¡˜\¼Œ½(Eµµ™?Û´Ëj:Û¿é|B^Ó>`âèœjL|L:Ëô¨tê £¿Š¾ãŸ36çE¡q
+cÿÜŸiüCÈÂS¤x|`ðm
+îÝök=¦°‘X>£i¯ñ ô!8ó~JlHuÑp&L¹À¨Gr,Kï{¡KRNAFdØjgkô¯×³“xûd%ª¯„#ž+éì™Y2õêYûÆ2«[-¾¢âÜà­šá…aÙŒ.3XQ˜æ½kà,>UUëè§ÝÃ=DÍ)ØTfÐ78ã YeHt¨6Ÿï¨˜S<Vñç ‘†ëÕÉž÷ÞIøgÉå.¹~- 5ñú†™Ó‰8þ&ÞçÄ“…)b)`Æ„÷í§ô€OÀUÝÞc××âÝWÏëHìJ1ÆŸ{¨BRÐ n|¾¾&y(nûå­S‹ 2Aé½' Ž–yyŸ6Èö‘Ÿ'gv­ÂgÌ<Ô¢f×;¦Ä…Ünýƒß•‰6FÀz™âë|~dþKªžÜCJ˜›(‡{Ußñwvž³Úþ0­
+5{—ÃÃÒÌ"q˜îŒ%TõµžaúGW›áåL­ó‘A»‘éqRš«'›'%¦™Ü•'Õ;q¥cíI_<áth«°Gõßpå/5¡ÔUM—§ó*3çÇŽ»²²•ÇÖâš„ÝfdªÄe Šd£9Wb QôO -qëðÛÆ/[nÿ=·Ý¡íy¨8A:Êæ©*ù@ÆÉÓ»;t#á‚Çz¬0jÀÛ
+Ã)Gˆ·ªé‰iNã€[åjL¬'0ßsWpÆ2ßö%‚äÌ®f'[7ºúÙÀÀ á£4±„4—| Ón§x„7+OxÂc³ þW{eG÷Ý©Ú†Ü38ÓpA_¹•¼‘;–¥¸³°,3…nuŠ =û»Î>þXÿ.ê`Ò0H»dÁÚë‚S1;3wK8KŒL<¦
+
+±Ÿ1; „Lüä»­¼:—ìÈóhKb«}÷ÍGßpä“Ü­ßh`Ǹ3ÿc]öäµî@~¡rŒ<5üY¦Yžá:%ÕW `?O“”+1Ï×m×kLÐÇÞ±£'²/Ž’æ¾Yd4¹¾ÖD]ÞƒM‘+ šB³iƒ'¨¯¥Í’Â4¸ÄƒFl‰¡ˆØ%ÃÒ×ð8ýVe=7Rûñ*^u÷Yê/ÃÃblÜÓŸ1ü)™—¦ó»Â„Ê{§)cÃø¯*ÆE¤Nâ‚9›C#>µ¨g3IÞnÚžŒäŽ,þ”_G‰½AGÝܻ˔ë›×L~Õ×83`ï䘩óþÆ ¼q¥ËÜ["'’ì!gòC4Ã÷0刡Okb–é¸_Æq§ ¸4_~7Ô±†e€2Ñ1œö¹“ºA/dðþ¾îc²(åUÝÚ­hÛ‰`Ìã¨Zæ÷7°žö;†xÇq\ÇrZÉ-†cR÷‡—)f¦œ9D<á;tÕR¦ËþddiK³Ÿ–:»t³9
+躦û-ë~‚×Ó6d/;ªèþ¯[éÑ
+gî&:Ö©Ø4¹’íïº:ײ#wiÕ4à…|M¼XßZ;úy±Ä9Ou댒UƒÏ,ËfÍjZò 'E Rÿ2¥|D”p”»!${1|!+A.‘êuxC1¯^ׯy)<ƒœsvšòN›ß©¥6SÔJóUˆf"ˆ0äJ‚Š,Ï»‚[Ü¿ßÖ%*~ÆÓ‚Œ¨$O?þ¯ Z ­KZëö ÖŠ‘e¢,»$rã+öî­7Ôžy8<ö_m âåZfüô_µÖYÊBM}ó.³f4”",í´OJDM OGxôê­ðFB ¬À¤b?“6ÉZï'lÌ#L†RÖøŽ-U¯5.%”Ë™PÔ@GAJ™VU(§ð-ïÈ©‚ɹ JÞ^ÜRÊŠZþñ-Gv=TÁnTðÛ«œ†ÈùãÝí{þZö•/rœ7æ¡ï¼»ÏEèŸÔÌŵ*:{B
+ñTµ)e&Íb 4y¤æ—‹Î1¦|èëå>Š^§,QÉ%Á*GÊ}Ž—q’ç¢Tñˆø²ï?–¶k5Ó*<JÜP'H›>UC5ÎGqP™®×÷ Ü/»„»^ìÍÍ›ðXÒɇN~ú¡—øþIÚN4þu”\1Ðq|-=á×4j}äÓ}Vür’°ƒùšGUÔ ÷š_óXUWý’¡*ÁšYWfWÅvqõíe†º98|®ëž8cSîÖ]j®kŽ3ÌS2Ô*¢óI(Ã+B=,\aüt¡Ò£á\eGqÓrõ¿Ø…¥â Ò}‘ânn£ÛiFª¶)/OeŽ‘½'€&*wÖ…qWþ²sœÝíÈõ!¢ÄOžž¹u\–S6éÄRº¶ v9‡_Gå­[õ ëdeîâ{0KI܈äU†qŠ)ÖæJ“23šäË1ÈŽ’òä¹mCóÉ`°Wï<ßê’é3ŒÇhùœ.¢—qc¸_‰tì0•Êè¢ÙN.€KòÞ¤F’ªMP»Ú€ Þ´y/„×"„>½¨¡ëæ± Oþ¶Ý;•Ù³ÐY5ë®@ˆ6Ù¼úûž#³Úi·ñv{ëà8ØÝ[Ÿ=x _kÇQ)1¬÷ëóŽ×%ÂqÿSÂÚÿ 6ûÉUWÔA¥ò\ºDoïP@ñöŽîsÆ°ú+‰ÈÜç
+Ô¿pŠ‡ÿÒ¨Ò¼éºLamu©°µ“ÕkÀûïëZ,ýy(Í||u¸£Ð¥ˆ˜Ýed±q
+ˆ®ùKˆŒRh®â­ëÒF¯óZªB˜ôålR;V6•C®ÄP‰TÃVQ9^?wüŽ¸û¤×“¡VâJ2ØH)í‡ué2A«³E¥ áꯓÒ*¾{D'Á¶ÀjÙ#ÞÍ€MñZ&£Q”‚m÷Cã‹õôÈI¾Ô‡”Bà ïÒ2ÈÖ¯¨ÿ^
+&ÅÌÄ«dw3m Ñ椑°·T²É7bi¹¶[:tú¢ü‚ft'¡Ý)‰Önì‚?}<ˆÇЫÁ\ÐsQìŠüUP
+^_ÞˆûòÖ¹Oj9?š:H1©&ý¼™PÖ¨4J[xë;?Ó÷€pò‘.|:{iž–ÔâÐ饯¶RTi0€·á‘KÃßÌ}ðL)¥ÉYg’bdnÙt¢£’~;­82w·Œ}Ä.ráI`÷T†?uG^’°AS¼Oݤ¡O[b•O.e4/ÞS‡cäÝ×¹^LÝ£ÓDvŽ·ÜjFŽÆ_Èó9Ÿ¶Ïʼn¡Ç¹£PŸ—O@Ÿ ¹^wŸ.’38¾‡ã Wrc糶YÞ7t¿¼§
+êV­$¼ñWo²™Ã^!0»ný> òGwë‘~€—Á­aÅêx™‰Þ(¨ã|åÒ§µ§o–`ocˆ6VhÀ𛉹­`ð¯WÀÌz~†YJSá»ñê rD<W=ÙäÐ5¡lî4´ñ_§|³ßÉÖ› ¼´&DÃcXJeH}[¹HœÐ¬É‡åùÞ;‹–Y×€žmš%œÈ…eù·oï´Ä¸ ¨´çßÊäéDÂ_äC–“‰#Z"+è´¸ k ¨Ó‚ʵV£vž™`Aû½¬L1`Ù; pÉ%Ÿ>ñ$Q ¸aN{¸z¢iÔ`B&z%YyÃrØþN”µìOÝÓ ËÛÿ2YQê¦ûÞ#x[ï‰Äƒ øãf3Ö¡Ý 1öº‡*Ëë©Oå’
+ 
+28èZ9ŒwÑt Š¡”¥_BI× Tè8"+u¬´¦gÐ9nD¥f{zÓ7U•RM"ÃX·5Öó{DYä¹'¨0“s ŠSò†õ’;F`/Ä‚{ž²‡£œ²_ÕË\¦ÝI7èAŇˆ û†b­ˆ×ZK¯ mÞ$‡üŠ}gèãƒ]­é÷›.Û ÀýqÆ°£tÔ8Žey fhÂTŒ ÿ"1‹­½•Ñ6rÜ;N5–ÛÙû¸’\?ÔÇå«
+µ*U•i -oœ¨d³õ‘Nk-în½ñV@Ë—¶f‡r(5ÍØ<”sÝö%Ìò‡ÙTèIüD@Œ¥ëPïõ‹
+òGYSÛbë( ¡Ž>lc€Ø(üuX§ŠhŠºGë?+âØ{‡±šÇL›É…ý!¾¨0}C¼ÞÞV‹ÎK—ÁM´[»«¢6 Õ5!`‰Îö¦b0·¹zÂHWü”nÌôÓdLø!+YÇEÚvîKcŸ54_ IÑ‘¿€.è·
+N⋪¨EÏøCpË(èßœnððÈD“ülÒ0c›$Ç>BD€†ë¢aÑ‹±¢nL%—N`o{øòÀù,ÊIĉ¬V»O®´Aä‰ÝäŒæ܇ÂDi‹·VØÙºEŠîj_»j˜ádöÁ‚²þ\³Ü[OoŒB‚¬VÀ›EÙD?Ð]×Uƒ•Ñr.ÁÚ/Üî`fä.áþ\Ñ.Õ8ÜÜg\ìXîµÕ®RtÂ#ßEšuŽ^ØÑñ™ú˜éücFwÅŠÊ»ÉitÙM¾›.”é«t¸¿¹å.›©sá¸Og²¢ÞÌ°Æc×,LJÕZñÖ¿+\fßg›å–m—g¬ŒŽPŽ`8›˜Ãi4¿gž5I‰'I)àkœv¶À,ÀEÁ6Žéù€ª-@ÆêÐùŽŸù:‘i4°MÜèé´0EP–G|.™%s®x™0;ö€ž»ëüÜ8nwÞŽ1ýcZeBCòU Œõš‡B¶zç|ÿ¸Ç÷RO]ôdÑsÝ“Ö|"¬¾  D½FךônäÚYa6Öÿ7Rg=xúFT
+~•Ãà„ªØ°t"€_éýâº&ÓÔñÉÂvT.Ë©â|äLö‡YsAÄ•w³sž=œ6h§¦ã¥·<’hŽÊúªI§ ƒ§{Ü‚­§±¡=HjÉq¿FŽ—Ý ýf—3ÏO(°ÀIš8|¼¯>OõÌè¯J7À“¦O8]Æ5 øŒö±·%±þC5˜93×ÝÇmꆵBF
+ß,ýî…õ¨R½AÀåèV)^)¿[»\ l‰n…6ë2 ɹ¢ÿƒVPuDõ¸þïÄþC=Hð—|ž­U !®XÜK|dãÀ-]‹l=â)ÍM)PŒ«,ßi íÐV¼'·lª>e‹ZºJ§œÚ7•í>6ÞRŒI†AXÒÍßÑ37ý•GøÆÖ=ªMè¶l&›wãþOóÅ‚1+±@s6‹_P2®ß÷ \k.7Aç#po¯,öt­,ö6²\¥(-×[¼¢7S9’yS?À9þ¸uÜ•ÏëáµB|“žµd{ø™‡_aõË—¸ï¹Çá¹–ýêñ<ƒ;jé4[Œ¥o
+øÂØG#äÝßÞ4zZü1L!œMZàß5ﶯ·YB4­–¿²{:(˜5›6K]øß1®œòtØ
+ ÿN'ã0¨…ý_ˮ脲™U!šÓŸ_|œMÚ=yy³v–Å°Çë(ôp<¡=5˜}Jâ>vØ=­qÝÎ^朇z»,`ä yèèç¯%sH*ýÚŸ%/Ï=Ìܳ§%A0Þ¬¼”¯x*=Ù~œ8´U”­hîEî$F)«>×–¸š?ƒy·¾šÞÂvˆWî!§,€tt>rÍWz`׃ÉÆ¥ZËØÓ¼P‰è€àËz­Ùs®§¡' 劻z¯Û>,«'´Ûñ‹¨øŒΘz‚j,Rªm¤Ñž˜û¶ññ†T„ê!‰ÁÞ….kПR¶zåÿVÅ<°ÚŠv"©1Ú); GuGßž±"y”WyXÊzÓdD^! @ØY¨8Tf¬—õøô6ªfhj‰ãÄÆêZšxêÂ2¡$ÑqÂÒHæ¿DŽk9”Diç~6•´ÉPCõU¿ât"õ \]"£~ü¥ø×J㽄üŽÑ˜+lA Dãs™îåÖÑ¢jš ´ +ÌeÕµÐLðu÷
+‹¹[õ>‹£þHÍ>$¥¤sKbzÂÁöÚVÉbYÉÀñžû
+#ÇY'´úéæ‡ö—Pl-ù9fÍÛRn¥¡>ãï£aùÊäd+ÕÿT¶ð¿#t+•Gº—²°â>›•ûg1À-„}
+#t ôb~Ø+»PV‹ùÿMVÅ©'¢ç
+S<6V, –â†Ãs. ~nùŸÎl‚øÚl‡Ü&0a3©åÝÙN¡á1Ù’'äaàÍMZ/áÀ”˜»±aÜæ¹³½þ°÷MŒ*XÛÒÄ4‰u
+z„Q'OÊ!ëœÏ¿™ÅÅáÊG¥…Ò> ôt¥­Džì•E–ËœÞu¨UMÕÁÉæI‰Ÿl$¨P*¶.߶İU íg)ÀD/`B6õè¡äÓç'±ht_ûOžVÌã¼uø’øh‚<Å]HYÀ‘HRŸºW£•¼Å›
+=ö
+øN</b8ÀÊꉲ R,<©_W”ˆT6[@:¬•\¥„ì£åª¯da@¯²ªôfàA'M½bãY¥EÞ>ºÙ>\¡Xí|›ùaXFî6n5Ï?¶‚ðÅ×ûžQà`âºy\“¸‹ö”е¦Èªk‰Ev1º|åâÒ}/*/‘ü„w‚Êâv…Ñ$
+¼FmÖ¢‹ ‰;
+5ãÉÚNKg ¢L/N˜OsÄD÷ Çm)r* +qTZ´a^ÂñŽxy®r±UÛÀtz.ز¦k£û«q°BM(|øõ•ñUZªfœ(´w΀ü1(Ó?}°˜_
+<.7‘‰6í3ݸwf™Žƒå6Q6¬÷ùЙöj¨ XLÇD¬xÁg åΈœà´JO\W²äÁä·ÛöЇ
+µÃÜÖçfÛå
+UBk^ÇR½Æ¢ëÅj.‚ãÄØZŒ•=4
+Ê1t:©Ý$Ûœó¹Ìèú“§(¸r“æÂBìÕ;b'JÃæà“"†xXmôÈ\Ï
+˨Ñ‹iÞ„©˜ÚôÜòjM¢Ò1•O¹?·Æ¸êÔoçäÑGþ™ïŸ\?œ(F
+û]“ó™
+?-—Ï`sïä<$µ~¡įLQ·[ÞB„¥ÿ VÂê¸ï¸òš½Ûr0P²˜RSvVòlû>e‘å×áú‹ ïRÄŒGŽ­òå<±Ê#£2Û€±¦ÆuOd‡î¬ØéóBô}›Àh‡¦L!8ƒ‹çèðÚj1\ÚÐn@p¥ÒdÔóØhÍ+¾Õ9 Ù:Œ7¤Ÿ•ÄöZ»fW†ár˜¦ ÌF'áÄÐ
+¦y”[Êjqä2·>) ‡‡ÙmŒ|Õ)¨ºH’sL©àhº>!MvQ@-X§·‡ý‘;
+Ê´Ý9Oo¤rŠòÎíÆ£ªœ¡¬Q¹Ê£ €P‰áéj¥ñÇØWšèAÉôWÚ‹ß¹ˆ&Õ á¦%qµ_^–©”õÉ9o1³ h¨ø(j–5>08jÛØ­Ý–3_ì0õéájÈFÉôJQ YAø3çe ¿áFÉâµ2@COàe=
+@¼ÐéËÓ1ì¦
+GVåOªúz0‹•æý°ŽŠ¦ÄÚŽñdØG}õ’*p~
+çO¹Ë›¯‚
+šˆ+S*\Î–í” >×ϧ?rëd¿† ÏÅOV}±u‹ç†¾¦~s§§¾¯¤QOø;%¢Xž]ùÖúÞçÎ5½m-Ðܶ óFõ¶Ï‰Å%=0…±)p“Råƒ0ß7ÿ¥4§ÿ‹L
+^JPJß‹‘N@d³°¾—¼´J
+ˆ—š vÆkK>+Eß H¼ 9ÀTýrxžº4Ì`Ÿ¥ ƈk»Ãç3âÿÁiÛ|5Û–EazþŽ¿šÎNF+rõÚ%l¶pe%£ý[ k.wæ¦`$ï×ñ‰ñÿø?ÛJ•ÖºÊŽç÷."gew_ >„þQŠ•ÁŠO.Ã@alƒ †RŽ+"¯c°âüãõnµ ¡y˜¾­šJG
+bc€UBQZ¡›^Ÿ¨:GëÓòx8¦3A¼`e2dßÍ_{m=£çRˆÁDgLèL5>°ñù
+h°ÊAÝìev×FÁ®°€.qfß·òH&ÀýÌfH‚ðÝLƒNÓzKеоH…UôO°‚R¢5CDþy‘`ï@‡çË;½oá܆
+D¬‘%Ö<
+"€J[1±4 ¦aò*ûqømËO(‡©IÜæòg{+;&iÓ8¾q¾Ež‹ßûîexïkÃŒ.0AÐC{„§xúkÏz8örD*f¦Þ
+õ͉p¬0`ßz'ÑSõµúìàìµX4LòDîy×R’Šî¡æÉ®“TníßèÕ£4tÞ¬JÛö·QÓe1ìÝlõ»°óƽݕº¶‘»)ÏêSCá•&›¬âUl°L|«ÁÓ}&ìÈ^Á€ëŽín€+ò!+èn|\ûl¥ÈºýqI]d{ÒZÈrAûrqX8¢pÞÇ3¸‰að>êœ42µ£o½ß,PÀvмO
+a¡Ywž¬uuF©ãÔ!wƒ ;[D ¥)\Í«Š¬@‰Wƒ›°fÆï­¶g…'9D-
+ľÐ<3B ¹#â>}&2+<+
+› OKª¿(GÝ´™´$ Ÿ'^Npħ=‘ýËlZ%-Ud.?;ŒçSœ»¡÷nÐl…Ÿ-PýJq”̪àb7! ° øøvíÌÙôBP%Ž—¡ º‡K¹í¢©ª‚¬É‘æÞ,¹£ Á-8ÍuÐê×ox‘‚ÅôTGù¸WÚqzåᶑÚÐÖ¼+ê*Á°é˜s¾g«í“ùù~¨¿~Ì5÷Í%öÉiñb´×ÆÛý»Éƺ3MÃKÈ‚fb½Lvc¡~Æå~jÿ/ø›‘g‘– ´jÔÀ#}Ðo{,0jk&ƃeg1óZV]Ü‹¥‚XŒ½2:tåcâÂtA¾Ôt©&Ç{ŠGmJ›Ý*Ï pPµ,œóyóö\1±T‰üv®¶ó£±Y¬ú=ƒŽ=ÊBo‡ £ö‡y‚9^º¶O,ÿðèBbŸhìYt>)h$‘·n÷"%YÚ¿½G<mØî¸Æ~VIÿ“–Ž7˜|.ÕR³}‰¯H%:á4I”ü7¤n‹À˜21•kXªø ^»\4
+!´SzP"@í–DŸ†Å¡B’xdø)¼*íÈt´Án:‘zê¦ÃÃ:Þ»TÀé$=ýíëAŠâS£Êr
+ïÏfÇ^PSeÍêeMwú™‰„ˆó‚#¬‰¦¥<\ö
+Ú•[–“òå·ù¦®ƒÖ9ŒgºÙXãÔ¬+î*ÉÄ#µ¢¥ ¯[&ã‘ÛøûRTÝ&Àé(ckÿw+¨ò0½é—Ûhœèà§W)áCùµ„R¡êÚ Ò
+ßY¬_2X3XJY§Éh¾N@Þˆ9ŠÓºe(mÜçæ½ñjMÝÿs{Ã$–îÄ€CÇéŵIÞÛâÎ {€I‡I‰,ö
+ üI^s¾3´×Öº ß±8f]VÌ•Ï]+ap—~`½ÆVj¾eB#~âñ¯%qeÜïˆO°J’𢭵 €üY»Ã^aN¸'— †ü< €X3ž7xâ6€}žò]Ãë õó˜ä’º uî”äAaàãàd:à%Ãå³+‚D³<ÖÄÎ4€[ï‹}¶o
+€I3j%ÜËx “µ›ÔU@÷³14è2Õƒ'HÊúN`ÍÓ%ª½¨Ž'*>
+‰-ÚïP»ãøcÊóa|0ˆ¯$¦ÈºøýÙ§§ÂYmÊ]ø87N©P[Ãbß‹ò²¢7²öÀï(ƒVü,´?üàWW|y-MÏ'Õ29µƒöú“Øua?aîdütêüws8“çV_Eî›)Æ&w 5“3v«fƬ¸;èó$èÚh@Ř©„ý#„\;ÙÃ3Ǫ«f:yòaóßDS&'“Õ6çI&Ûˆ„Ÿ¤MŒY˜è¹®¶¤aëá^[I(Ë":‰5¼.KA;ð/èIX"sPý™qN¡yHëCa¢hà!„HßT·Ï©(x^öå:UxŒ¦k´É"® aÛŽ£ja»s­éü®[‰]$¢‹ÈûÈQÔ­j„XÀ‹yOš³à¥,èn|\ûl¥7Q*`ÙËU"â׎N¹>WÈÈ}U6lõ]&
+ÂÖ¦xŸ÷
+¾^3M7Jœl°}¼QÃfÑž[å +‹é¤¬¨Æ¥‘Qµ:dh"Z™§ Òœ¸…fÓ9à&Dï ?aD|s„F}#lJsÙ¢o5ùa帗CÂdH°špWϯ–9äë`MhÕžÉtê­³`£Zæ¨>S¼w´ŸÝMè mÖ]i Û”‰Ø
+Lê!ÇQú’ ,ž “Ïêµ31t¨égMç Š=ò©ÄÌ¢·´ºÛ$l(wFMî"+¿¼­UN¦ŒÒ'o#XŠØÆÒ¦Å1² ×r°¿ÿk©Å÷ÐOæ•IÅ”Ó;0dìýöõAåKõL37¾TÞéìÇì–ðÂ_
+ó¿Ó]ÔQÉuM™H/82ð„àŸÏâÂÕGñ·³ëË0f[Ñœå<ñdš
+iê·a šwd¸p„“…Ñwù#%rE¤”#_T"3»?žŠÌã÷ƒ.ˆYˆËoRgDgTp˜#Ù‡ƒ ,‹’E¤i þÜ•¥5ÀPãð*–6è5n_75Þ–!o‚ˆ6¤ª¢W¨}l.1‡ãU~SJÝÑÂJ™+]ï]ÿš2Â%˜ígFf$Dþ¨›D; ^é‡çƒp¯*u¨Fà£%„
+¿‡ò/¯²,ÁÒúׂÈA
+7ÃE;¤1Å¿#öðìÉIàb.&WG‘‹% y\µç@{#%Z Œ´ÚRL¾a #è\­’þ!yÚnÇ8Ñ´ ±kI›j‚óc&òa,·{M.Å.mï ÿL¬Ã•"aC˜L—Ò,˜¤ÐÕ*sêù€hÏZaû·Øtþ¦eØI²¼]¢çB|¨ÌÕ›Õ&ÂIšKÔ=6Ùc¿†gÈs|ÏURÀ³«ý8œÅ.¹‘… Z7%xßwúwθ™UÈ
+þý¹äaG#w¯ËnծΘY9ÓGšÓYƒ.’4ŒÌ/“ËûŠ`z²¤®ØǸ"(œœ‡’¢‡õJŒ÷¸´*ŽÖÃuÓÑö†{C=L·8Ö"«W›ñÈïk̨™Ö2¤0èzƒïwx? ü×2OY-?k¸QñW>»º^¡ŠÁkð[‡›þ AÏ’Çë)¸¡ Tîõoo¿foŠ)¯¿²—;ÈøÖE5:)&‚Há4Si“sr'¾äªýíKŽ­§°™Áº£@wwÚð¸
+endstream
+endobj
+3162 0 obj
+<<
+/Type /FontDescriptor
+/FontName /KSMHBV+LMRoman10-Bold
+/Flags 4
+/FontBBox [-486 -295 1607 1133]
+/Ascent 699
+/CapHeight 699
+/Descent -194
+/ItalicAngle 0
+/StemV 114
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/a/b/c/d/e/f/fi/five/four/g/h/hyphen/i/j/k/l/m/n/o/one/p/period/q/r/s/six/t/three/two/u/v/w/x/y/z)
+/FontFile 3161 0 R
+>>
+endobj
+3163 0 obj
+<<
+/Length1 2485
+/Length2 28294
+/Length3 0
+/Length 29755
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸eTœ]Ò5Œ»»Ó8Á]ÁÝÝ Ò84Á ÁÝ-¸Cp‡Ü!¸»» Xp¾Î=ÏL2³Þ¿ßbA³ëTÕÞU§Î¹º›†BEYÔd
+”9¸0³³°
+°²º»»³Xº:»°€œ,Yíþѧaeí p9ÙÀ¯N@;à?qu0·ÓÅ
+ø¯¿· `mtpþ’ýkÑÜJpØîòaàF¸üÎi÷/w€3ø_4V&ÎÿÄ*¨¨(
+×¼»»„õü‰1ne
+µ6¼âøf’FÎÒb›Ž«¯àÃJCˆ^Ž‚­ooÜA†ÜÛ>wTýW £î.åÛÀÙÍj¸
+&¤JüÐÈ">¼Øû,¢^7÷ö“›…±ä#ðîs²'Á±“÷nnô¦×ýXv vÝ[C¶â‚nXÛ[¾1@«Ö"ˆò‡pEÈ]ĸ:™6Æï âXÄæ•­UY”ñôæᇕiÓˆS›ê¡ …!.‘­’šŠîÕÊF@ç÷œé4]1‚(VÔèhQG¯‰ÙòDf@ ¹rk7â™^Iíoj2‘Q.{s2ºš•´ú¢G(/†íÌ÷ctÝO„Â0„ÅؾçF~}DY/ž•âÁ`–.kfýB)þY¸þÀÇ®7úG+sS‡»G¢­ãÃKív¼ ›]~KAËòåÈmc>ÞS¢4¬S®Xù
+íÊNøøTâváxf‹ùÓ‰tßÒ@8¾èfÕcG
+ÙÒ;ÏOPÇpì.j2äÑ/Ïuz<’•üžÓ×eøß©‡ëõƒ“ßÚÿ eøaxDéqEÌ¢ýnÑ"y) BâÇ„µ~7tAEQècý5Ãý`<Õ
+%oÃÐ~pñ§jâŒ6{ò]mbU+Zu‹|§ÂÀ]z{ÞO9¡õ£è
+Ç‹Ï$N¹3ò̾~ú
+ËâW<¿ã@๽Ž¯Y ÿÔaºŒÇº=Ü—ÉiÐÙ~2T]»Î”T—ûÃ
+ ¡¯Îµm0,‚Ìïš²c Q¥jŽ.¨]1vܹ§`8p„Sò0ÞOÀ3{jf°ÛL5€¸ç¸\ÍûÌðÉ)?ì^ÖHìH+×ÁL$I`Y$âÓ­<9…2©Ë‰â&N!9+kÌ0ö[A@D'uuWI3º–ÛØÖ°99ðXq?õn<,ÿšFQé"Oºls—<< 3憾Õd (ê`غ;SúgÆãÊo2Y›ï @¡-Í’ä>dœË†`Òª_<¢YC–j ™y;o—Ù$]€KË«Œ©øAh=úm¯È KV4$33wÌbF‚ΞBeký¨îÌã~‰2yÅ·MC$dôamzô1Ÿ¶¡;«€±ä³¦«µ~Ó—¡²ž7½äÙQκÇ|;m£ à¢]m»ÍÉ&•þ}“…àïZ±³º65¬x{1ãCˆ0°| ë~ßÖa {¢ˆß΢ÂûTQ›]£–¤ROõOy a[ØÛµŸs—l|ªcZ˜ù0ë 
+ß](²eÌ;Al\ª®|" e¦Ãˆ.pB.Ýã¶\'¯ÍèM÷áÃ&nó‡ÿ!:p÷æÅE€%¾4ÔâËË3fï<Ä{™c×YÏGÄ_ù`8a‘o¥ºS¥¢Ó&âó/X8"%aÇÕ¸§bßA5C:ÉöÌ-Ž—iSä`è°IB¼¦;QÑ#¼Ñ÷ÓÖòº J9=*ˆ—ò8øäuÈBÈ×Áh’5æÅü<´:ˆƒ ´2Œ ç«ßE¨ú¦-…Ë|fÎZñ?¹*„¼Îb¿n×áZaÍšë¤GÝ–o‡£•!#ñîÇ‘ÅÖ˜¹üùÊ1KeÃ) ÷ÙòeGûU
+¡›Ý¼J5s¾zãEè%ýZþWò÷i^&$Rn/Ÿã9¹{õ ùn¹·äÉêiÓŠÀàd¼À>Í e¸l2úD"스ÖåHŸJÙ
+ rzaš@ÿÀIhá"Øßfz:ÎŽãQ«à­<Ý·ëµwÓOD €r2ÕxøNÔÍ? üFkÏÓ±æ©É(Fð¸ñsi i,hV˜Ä*æ Aúö³Áæœê*#á±$#¸VÂòP昖‰9>s”÷‡8_ÑÓ!O^&×' ŽÑ\‘"pOy„ª†˜Ûž,{zQLX.)Ñ5ï¸Þ°«&vÉõN›žÿLî†Ѷ·È_æ$y…L“ü}jìÈ㘥£<­jqÖ–ÍA{VïEߨ²ñß,k’È~¦‰Š.°Ñæ(A‚®©ov¸67CcÑìAWA;œœ……òÀ%×ôn"ë·8õÞÅÖæ8)á)ŒDPfÆÚ«hQ€”c–^¾±€ýEÐZ5-KuÇ–"Y#\9H t±ù\ìy&B@ÌJÉÀ@ÂeºÝÜòi¡R[#(©ó³´)fÒŒaz
+ò{ˆQwãú]shÒõcªÝcû󆎳|vlˆ3_R3¥AÙ|8ÅfPçX‡ â²f vê.S_ÖK’‹¨+ܬá©æÓ–0_—DÓEðÓGmÕáøð¼CyÉ.+ÊÜÖ<óÕì .œI´ýTŸýäg°è«Ê|ý]ßèï˜_¿ÆU®f5à>.8‘æ}Y?ÔÓ›¤£%«Vs.ƒI”o8„þ¤ÍXÒámÂÓoKŸcñ¥ÕE§Iñó¸ÂR%§,¥‘m oßr+eàô³W0ÚÚRþŃ—eæW‰{½³3Ñ´[è“Ç®ž³%máÑ‘š
+S7vŒ¸ð-Hû»¬’<ñùÎ0ƒŒœ\/-ýBLï¯e7GZ§†€Ÿß•·cæ¢#\œ“:ÂŒdäÍKZâ#?#•ÉŽï—!$ÞgÉózìA¹¸AÒC´H¬!ròñíqc3‰«û¬Ú]‹°,]‹k
+Vi_Ÿ,ÓføkËŸh)tHAÜ'|û5!‚Åc:}+²”ÂiÔ
+g^ê]¢+2ŒÒ‚H9&r)„…ó )_VŸí&Ì‚x¸bætõ:œòcð¼ ê¢,8èôÄrâ¦wcôèªmTý66 bGT6hM5cÄT2ÖÑé[³¹‰gÆxº“„"É’z¾
+Ø& ¼IQËânzæ Ý \Ç'c±¬IÖÖé"H£'fàF}=÷yñu“Ìbk­óU½áY–5¥±W¾| b⣳'ÊOÈÞÖŒçŸv»©¤m€Ì›:…Ñ+Ñ(‡¬fÿx”¤°ô^·œèš8U_F=Ú§rvè\¢Crʺ8íø’g 
+ìÏÅ·«¼\ßh+Žž ”—Ï8CùØéÝ¿xó[!úöŽV©¹rÞ˜Hõrfu*(*&ÑÉOl
+UD¹‰-ß³Ò§úc‰û]¶Îs ñû¢”wÓpc¤<¥Ì´ÆäÀh\0v¾QÞ'»úX¤[#Å~)ÃJ­àR”ðuYÁp•‡ÈXÊÅ¿Éga¸­§iê\јÉ~}ûk}ÄH{sàÛ ‰¿W›לrÑ¡hAâ0þ®îO}+Ûî03 <b”%±V“̵N<náÂO™¾pMñ˜DQŽœ™¤™Î¢úÊ`Ëq†œÏVAí®¤šÛô1e/Í.ÿ Ç“ l4ŠÁÚô²ÀpÜ7×MÉœá'ù´Æ‹Z-ÏÎÒ„aæpÉúù»Æ½4n3>jOㄈ …@®”_}µß&eõj>.ŠB'Oy.+ùxížßdiÖûÿð“اœL ‰¾P†¢ˆfÿA]X -o6dkÕœT#|˜pàƒ|#$F1–D1Ä+^°ªkªÅ­zp–—6“É´" óñ\”Gá®M*0]üM ò]açŠã…(„»¸ÄNðRâu "q«¢öËÌâ‡ekþpg6jÍÀ×p~%yî0åûR`۳̬AD(Íq=y•BûUè#ôCa%Ó×RtéôŽšãY˜ˆàÛH«Ï5±+ S"gmõ?­Õ]UCÛx,Ñ‹x‹â[ª”lqòXãƒHÚË'jó%âŸÑ@”ZéKby2XÂ3‘#§ $,ñ¡l:ÒÜx“Xùýqš¡×iˆEü™D}“‰UÉW¸ÚÅ(’¢&µT(ÈSJS>ó#Çi&ÇI~{JW¤pµ±EÔ#¢}€
+ì2x»˜o÷±wÑÝÝžH––M¿Ùm
+ß:e¹.Cš·É^“}ã;Ü&„S»íÀ˜ì†ïâÉSJäË̼©Ü=f Üõ&y€1…ò_»‘Š¿V0gE2çðøQ?º9.ß^.,]ÌjõŠêh?žKCÆ¥aÓ¡A¼¡ÚZõn=gJÏo¢ß¿±¯M:–^ÆPÝ:%)Sh¸qÞ·Dã8ßfòá Ðà?!·ãÇg´ã7$ùÒ€Ò² z_¸„µ‰e>zŽ,Q„ ù˜VƒÖ(‹¡pxã¸)—«nIJtj™ä” ‚ ¼…9ã2Rcx&¼ë4ɹ§4±7‰ïÌãhjª»×°#ëÒXYÍò;hƒÎ}x0/îY$ì¨-[þð4~ßEлH'TšØœ7‘äÞ…á†D½ªæ,Éèî œM­¹vÊA}Ù³b¤93p¼.w#žpŒ«š:ä—¯1©P²=-‘ßHŸu[DÅ|¢Ç±Ø >?-¼KK!ÛÁ Z @à@˜íç×Ó£L¹ù¢an\Ä·éz²X%¬]#RØ'í¾Võ Uç¯ÉüèÞ†…»®|:åÀˆ½ŽRá;5îÜÌ7ú¤¢òÍ2̯«jâ|k…ѽ[`Æ7@Š"¯ý¦ršw óNª0ÅÀý›ëO´+É”ÍÇ¢i×GS­ïÅo\o÷Ê)¨ˆïOŒëï@K·]‹ƒi+5ÑSBЉO’y³ýæ:i.~ZMÉù¾÷¾rê?râN•<!9Ë´£".jì½rŒðè©Š9~2К”“÷t`oz’vÙøö[S¥j]cG[ÜýâÜ~C‡ …I‹×W”D§YœµJFOÅUjÝ„¶úÙB§¶É…š§BUˆˆM‡êÚ>iœ-︚·”-àò¶f×H~gûÓéuü'½´ë:Jw®~ÞF:D–·,§ÝßÒ+(?ç–åçèœF†Ó‘¦ƒŠ5J)Um,™Ž¬{Óa#Ï­b+¸>âÑDZßERò%ŸW¾Í¤ˆ[%Mõe6ƒŒ®µ1µq¢V³k(1 ªÊãü
+Ãõ
+=ZöÊ—ü¸RWðzqP›?ž?-gœÍÏœ6˜nZMUš ô¸07‘•c øÚK|KÂ`ñÅ22•ŒüDÝnJsZü.¶Eé7aô ì—‡¤U¾Á”¦`†ãŒ9¥íõ‚OÓÈðìL°bPW‘E|T’×´%ÔÞëÅ0+ž/Ï&d¿’ó›±"ƒ%ꬓ.ÜÕ`xë°õ?O‡{]jN/r†…*[DÏ‹¸Jc.¥[m'¯ »lnhmzRéE¾ýnKвë³—-ÄÊËZ:´¾mÐùyÆF¿¡÷hù¬žûl"ÇÜì(i a^~£—^VÙã+äP¾%a“isÞ’›éì%ûsræÇÙåŠÚÓÔ“=x!v¬á&Ë… Çø—°fbºÊž¯ãvk_[JOz,ª†-ß°ã
+n7%'5„0%c‰ka³÷,y›(?¸oBc4•Ruò~߸ë¯È7¹8ïhÁ~‡ýÖåõHåI¤»ÐïNd:ôž ›âþ
+‹Íê ^½ÒæžÊä׆0Ú×a•tž£–e”€ªÇÖ ß°›_X×j ôÜë¯Q'Œ·ÞêÄê4v\…äU‰Æ8—ê߯õ}r‘Ù8ÄdxO˜5$’SËS®)Á0ZrŒQÈ£ˆ,˜¬ì¼µýå˜AlBkiÚ¦y=ï•xbŽ¯Ãèí#qš<LV/Ïâãªv×dè᧗Ô4BHâ®Ç¼^'bZÒêـ졼D•}BÇ@.n³V<úÀÿ^=.ÓÆÙýÊ…ß­Ùpà(N£êé÷úèe¿,ø¾O&ÒæÔLvŽR;¼¬AV:û /@Ç
+6‚Ø@8Ö¸Í+µšðëé8nôú¡Ìo2Òý J³ÓXÚ¶fôÏ·j·‘ëáý6cL`5gø})EépO9ÛÂO}K(Ÿîm¯Ž¾hÕï.ƒ„—Õ Žv)æï=ÏV«²¹\ÚEœ4beÇU^³ÎåˆOødŽ ¤Þñ7©0ÄÖ›³ö8sKc¸ài8ʉp—Q*¹›àüêùBU¨òAJ™MûѱÉD£ ‚bFÄ=‰à§Þ¦Æ¥3Ö"±ÕWý2›à•žkM JûìÜH$ú#Š¤“IR/¥_ºÄƾD·~ :Ä“â1«I‡ÕÌdr,íYÒ<Å•ò‡ÔBþ‘âwý“¢bëo|ÄòTå;§C'Í22ñ£u"*ç2úw– ¬½zt'ØØ]– h°j>ŽŽN>… ?¤&3æiŠOÞ/ÿd ÛjÓ5Gƒæ“‚:–ãÈRã¡%@ã© àû¸K²ómí²‡r|ý–¥y®2eÏ iÏLK¹û¤„bUyu-ÒXñëWȲ íÈt÷Ðì—»9ÔQô %¶n åàô!G¸þÉm^‡]Š>«¼+Õ„oùÙm å„Þ!ÄY©À0o¥»²ûåTò4 *ùG¯Ääç„þ@QT]‰ìÍ{ }?S¿ï#,³Üx÷(Ýuc‘º¢ÎŠ"R=?ä"ð—Zi±Ô["uEt‹‡}ˆÔY³ø€‹|EŒñ«ýMqmõªÕø›ƒxUù73mŽý†»¢Q¸ñ½°,‹ruìM1šg^Â`¢ËÕè× ÊøÞÆJÙ!ž4·õÅbODÿzõ ßlÈhYvüh‚ÇŸj®n’.º8˨y^ï‰N¾¦qi^Dš ì…¿”çÙˆ•Õ¨ ° Cµ‘.«lQÖg—uGš<Ñ`9´s*8ÀŽqCÕáˆåô^wƒNlÈãH­í¸½ŽQä%ž%±Õ¢ðmxÀdmŽeSo1EÖ@_L…Éãj
+ÚFºÇ|¢áþ9 NBeÙáݦúåJ“F_'OÓ§‹§z'ËX”ÂL§Ç)Iª<nT‡‹&eYò
+üÚ嗑*b/n¹æL[|SA3v_ÿ!Hæ³tˆ»»³±‚U(n¢ðky»y‹oöËÊñ]˜Ã2ÏÒ·ö¨^-mý¶
+="˜
+uä–›¯ôgueê(!ÛeˆÔ@Z~·ÅŒYçwO~ói:D-ÞY ÔÖå
+ÒìÉ`c÷@@7Ž¤ì×f|ÀÜ3YwORZåWÒ¶àæ›þÉ2²Ÿü´Ï^9ž§‰›o}½Šn8gª’Ïqb†Ím¢Þuóöjeë|&ë²<U€Î¿›JŽë©þŽB¯ÃHYmV³ý´sãЀ˜ç™ÚQ™®4çS@êîܨðî„x¹à$'¥£*šñp·ATÅV&˜Â› •0_5v§¾Ü"
+ÙΈ<ä u÷Á¾ôzA¤d? ð ±ôñ]ú:+sflTÖ”‡õs·Sr{sRmÏÏ?>ˆÀ 93bLßö(⺠…Q¤rŠÓfGŒÙ¸É\:®É§ï˜·¤>õþÀ¾y>ð?}Tn+<§•i åÜ"§WÂÛÔõMÌ€ƒ© †aH%u¼(Zíü‚Œ++#}êz%±² g×TVÊŸm𙈀ï èú±Y@~«èØÀH†&½A‚UÂØŽ,«úÀŒ¦PQ5—ÀÈ¡Ø+‡.¤»]d-Ê<ÞÍÆ‘û©•§éñS.ÒX8ŒcÉõÔÜÏ&¢ÍæöÖöìõ?ŒË@^bß)[ƒ¨Èl
+4Žb”4Wê~Þòœku³Ì³Ø7Ü*øB°É¹eÝ?Y x¯qw›Foš8¬ÛVè‚;*ŠT•‹C†ó“?‰&™À ÚÜ’fÇç’ÞL[¹›óÜH!è­]â¢;š½¹íknž±
+2õ“°½þ{ /U]Sì˜:äãn¬®ÌéXå‹Ž^?³×¢ÃÖ|!–ÖÙçˆ*4–G¦|r–3Lé%ùøõÑC“qc)¤à×YŠ±§³q{+§¶õ»õX>øsÌA– žÜ÷'Ү×@…ah±Xý¬eF9,“Qéîd$JÁÏWÞu˜ÿ/·jßä⼄ÊÇ“Ö&hÊض&Š¸_W^dö·Ì]z;H_?&CU:`êhA R¶½)Éêä%GX»þHs¾Î?´«±O:±¾KE^xŸ3€Ÿ‹4 lª€'±¬UiïÙ'Y¹$^Œµ·î |2Þ¬ZYúü•¬"ãm&q"¦Õºáé=nGV Q%ÕgKÆéT,ŠÝøÓÝ—
+slʉM±Àë¶ÂI¥kScò íQö{¢¼¤¥Ÿ,ÐRül“zB¶Ž‘ºóm´gz8,åREîå3»é•‹±hêÚ¿ÒíÛ/•?(qÉ—qlª™õñÙÌ(Àk“Mwøüü>ö¢`½D{ß[lµ·¸ùQWRԸ˭ۚÞY¶Ÿ™ß=«ìª- Ö û¼»c=; î¶(ß[œXW‡]¶‚[g$‹™“­òÙIô2xó FÁXßrmË/®íóWJ-FHñ='Z²M®Â¾’v4—ÝzŠ¤µX}ê f 7SÇ—}áŸÇϾW¤£&c½ét‚#CM«,…í飦  ®›…蜯»‘9~~e pÐÇ{8F¢ÒIÙóÎ)ºÃoëƒ/JòpÑ7D²“³ð Tû@VAÃj¯fœ«£Këú8|0ŽX 6 ýi<q±+¬dͳ\ûö¦vŠˆórNxÛÁ/sMvÁ+!ÇñØ‘šjÇZFNVr\O/‹AXUu8ex°UõYÖ£?ì§Ñ¤­tìGüYžÎŒÐ—Ò ÀlŸ)»ð†ˆK<×”/GÏÁ[m±c:ãkúöûq »º@}÷skØ9‚‰rtr.ZÐÜ'
+¯DZæ´vÊv¾žØv"ª¤æÖäðIMRðdW“$˜©”Bk{³¼œ¸)#Æ“‘Ù•ˆÇðuCÉIƒN^X%ʬgTÕÅÃ"£î,1K Ê/m³qø1IÒúó¬ïF¾í`CšR„Š,çEU´“¢{Åe¡¸M¡ª&¯_–v3õ,2wsG`pXà×'ŽE'ÙŒ~B­'0Û9åîjF*qvËù+(í«~?‰ˆÐЄj„ôpJž*Æ@M7dˆ=·èeò6Ù$q ÚÉÅ#ÅÙÿ– $ÍToéhM½ò}húsŠ)™Ž"YVyõ‡CžÖì3öC^-æéæ|sÉ@º/±Uð "Ø Î;Ÿ(ÎVb¨›¶|ž¼\`OqÙ¨–ï ÞT.sS(¯Šíâà¥ó¶ÛPoóG/¥C0©2ˆÙDi Aår^u媱FÛÕw6øâä"ä‡àóÔd=‘#ððÖøŒ(CÔ£rÁŸ9Þä1 XÅu®ôéÒ3Û5\"ûJO±†&Ôçׇm¹ö%B§¹U7«<ñð/ÊÞ²]×dòµ/© Lìgd¯8N´|æ ;'´õœ|SÏ {ö×µ@8ž{Mجèw€P¾oÇoD ö÷ЀIUx€è8Ž^ùm…¹ôÕùÑ멼£µr)GÙ@¡…KóÉ1ê{ˆå>”ýÊL¿ó7|rzå2úÙ¡µÞü5BÌØ‚³ 3<nZPÏ°Q³3Ð-*º('á¥sÚ¡+É8ƒOÅvXÚ‰ˆöÓó¤ÓaÒŽÃX˜—N3Wò› ” )ÚËpTïÒÉ/F+VXˆ_èu+fŠ0ƒ¸Þ@
+†tøëÕJHæµw¤è,Þ æ¦khw:6D¨\B²)ÂðNô•AÆG™/‘}Ÿ«Ñ
+ÉwˆLJ€Íq;×14ßòqzk×~CrHm·ýX£À5¿â` ©%Aõó® \ïTO#»ÐÑYý­G¦r^´4pXp,Qs£µ¤Ù$Ûù¡«!†ªLªªZ¼œ]=§7vý²|9–!¦…_£.l,ã.„³”3Yrú µgŠC*Mâ žW߆:zK>°Yâcʼn†’º#‰a‚=´Â‰…Y†òÒs@ô‹¸V¹1+ßz±zÊ!–ï̬÷¸Ú‹Xið,7áG¯"ßLG±ÀÀn¯°ÖŸ}ç¸_1_5:ˆÖ»:¸¿.¤ÐgÓ|å•â¹Ü[‰ºCîâ¶ÏÊ‹³ï()Îó™Š,ªáíW¿± æWk.>(m±•S¹‰÷¿r$Ðft-ÿýØó®Ši_ÑÌyý>7Bî!¸œª ö)â=€¦`‹ì¾%¸°ëGÀ>¼Qås~"OÀã ùDs™Wš’Ýwx%Ž8x³ê§,2wã¨ùÎù4¡¢ô‰aUwÈ=]¢‰:Æ)çÔø‹ ‘µ ß;óîkY÷ÈÝ×~@>ûZgسºX¥hì@rz"/z†|æ»x–E[ª©Íb‚¤Ô5 ¡Sù§"n¯‡‰XI”õŠ7ó<¦1ÝŸ¡šL{Ëê®@ ú‡ïþuT\.›m“}ÒóÉ´ =vy-†èA›‘åÕ'è $eðU0@B;øºÁ½C;ÀS¸Å½Ta qöãœWúaa ÒÁÑH´g9]¥ÁÕ×,žžt~¼$æ°&_(Ps®#OWyRÂùGÛ™@׃ÚjØHÃAýEØoAÞì´êDÄ€1ƒgáô÷ç·‚­&â6Dá3§n#Zò÷TË8Çb,dûX‚ãý"IYúè ìw÷ÎÐt®3Zhå™ãkðÇÏ<¤‚ ܬdoË_èÆP©fL-“˜‚x¯sÎ-g,k”³;‹‚ëš
+„»º p ¯`òúá>\D„À¦?.ÓêêY²,òbMÜ=Ôu!:Ùçzš]ìV#Íóë¹Î×øv?
+mîõ5K?Q,ÎÛNˆ–GŸá©Ø]ë~³ûz¿°°3®‘ëôÁÛ÷hIˆ.À‘ŠÄáµ`ÑŒ™¿>½Xæ!>éIþ»:ù4È¢¥ÀéÐtËíiyéÈé† ›er(~õ^àÒ¢?•¬¢Ô¦*«LOÆ×zmfÈ×WÁj楓@ÿòTŽŒGÞdgUï±A …ÁÄ-÷êìÕþäSÑi¢ B×@fXô³_¼Ÿ(Èzž]PzA›(>Ù¹"„1’åÅ!¾¦³ÆéÝñô™%C7 vžLK¾{!èašbʨŸð_°š8˜’)"=v »»ÅÔüÊ A•©«µvð64Vn´i
+EYˆ_7PíÛŠO
+µŠ “ªB‘z­Î]ÖjÖw u<â#R‰°‚áMÖa…‘UïR[9–8½a’k(YÉä!¯k­tßÙM*•æ¾w<ò8k\o!A÷7óE¡(¨¯®á–ìƒUJÜè—<ŠS0£/ó…Ð1êã|´<ilµ¸‘x@­™ˆe ®•\ýFÁâW5åÚÛÏc”ˆÐsØ™Øûß_ˆp¸˜}RÄëqG>së¸guàŽx½ãç­™ÂGYfj<ì\ÙÈÓD7m9–¦ÒâVÖq£GÒƒ‹´.¤kÍe–rdãÐæú£{}ˆYÖ%Æ$zŸPJܸ_~â ÅäD׸f~VþÅ2‚ƒÂŸìv‡_©Ì¼±7$;"{Â*Õ„UŸ‚8Eæìêy^§§£oÐ4%_A[ûÄÏnvÀ)ܽŠT³Wv°pß*S³³
+y0%ÑY§í5„by »Ãh{P†ôJÍrB6pЮԸ‹‡¥gäù# OkõüÅ5U½,[’Cë{õÓù™Á¹®Í/deï¨Þ ø”ØiòÙc•ŽQšDë†`yƼ¶„°³|æÉ,m˜¯!vÌnñÈô%[ÒS:±«‘«>«¡d–šEþÛ>LrÛï­éòµ´IŽ$}|dØ#m{(Í‚Þ0°LšÔ°?•6áÐ/•ó§9å†íúRKœ¦´Êµ:e/ñ™ðTd'ˆ;I&RÅN¿}øëñÒSƒþéf¹·(bä¸îƒ)W+sÔOV­žU%;ܨ ¡¢Õl侦¬Um3ÃðLk<Æ÷;fªÅ<‰­²r)³(êÂaÜqÝtNå“bÏR
+p9®è<u›Í7u¨ä] Ó0»ÿåHžàH½ÓžË8Äë¾ühÅ/LÎÑ@ó to6ÿDÍ-)J\tIÊùš†hîÓü_ÂùF²nmF {™¾WdSuXŒÏ%øþ
+{ζêrodŠïŽ…ÆO†FÕ€ãÀQ‚/n«v#õS2QaꥼØì>&Ú½Oëì¥eu$œÞþœÃð¨s-•ìÐâþ¶ËG‡Ñë€àøð5€95 ¬Õ®Ýhx€µJñÕ2¼sÎ-Àg{Î0BTVû"öäâ:Ç™{RÐ¥u‰ÞLæ{ò&{‘¸¼i³"k’#M3Òo2(Ûog½Éš˜¸¥©,,Oàv7+'«›Ý°lÉ1žTÉÈ©^S‡·0Káf““‘›hð_O©QÈŽúlxîÖJò¬-'âhô|¡öû?ƒìÝSîào×÷
+âX¦Ã–•&ñ,Ücb“ßYd¥Ù¼{ˆó š~m òÀꪦ—gÍK=¯w¹4Î[¡YR˜JÝœÂ%{VÃòjþ ¨Šõ:I¾“2¼@ïu+Ë•Ï7ƒÙÞìÁk¤UV’ égòC%Nsgýõ…·Óø]æTíh–Ô}ñZœXFˆ19*a¢»ùãõ›l*=zt/ íñ]gÁZ~}sØ+ä‰mdqîY’¦ÖàÀiõ~™Ø¼kd•,oà8¦€”¶ ½kLßKû×YÄ= ¸§«Ù·x¬·tŒAHƒjòô}‚#éû¢b¹#ÇWs/x¼úkzò„sŒ¹k4¨–êþÌ™ö9žmëž/åMD'%j¨#0&®”xœ¡‚ŸœûcW,;®ÜÞ)d¯4çÉ<"Lqúfm‘QvŠ‹É–ɽta̽…¯ŠSÛ/ý˜öãÇ+?ÉZýнXû¡iè=Þ,z€ù»œdà H]·«^A‰
+ò~ëƒvæˆpÄaN¼Õ´éõµd’»¨‹”–âUGv:ÇÒED\êÜ›7¸ÁlÌ‚ýÞ“'ÙAo g¢mÏ'Uý°èYw"‹àD SÆàîÇD˜Fn…ƒ2epJpœI{5me:ÕŒã¤]%VœŠ#Ú•WÝø½qØr/õ5PyMxôSð9äxÙ]¨VŠÁm´ÙFhâí2†ÁÕ÷MŠ#Ö2sO"¬.ß`ý”;†šÁø*ÑB!;˜ÖžAÕÖý’#"v'`àøµhıÑ[½åG)à ×ßøÝk&Ó6÷:ÙT½ö}®FWâ
+„lq7žÌöÌmTdËô¨‡®~N?)z,Â<ÝM)N}Åi–{—½£`ÄÏ¥ðyÿš9øÕëÍð’bèUQÌ.å äæHø9'"gVI{BÆÓ>Ô §ûZ`Ÿ ºW7tì«V`æ‡Ã¿{r`”ö 4Ø(ù‹|àþgÒO™ÒJÉÕ5Ï°
+KV_ÂÐÇÊž1Ö,ÜDZu;ØD(ˆU®=Snð§UªºÓŒoq²í‚gVýSŒAbG»£ñ·âÞýÃõòÊß*|ÝtƒøAÂ;vm‡ã¥&}•*7›fã©gÑ>C?/hè¯}~pÅiß<ÓÀSö¸%(G)U
+È<ð’¨÷m.}¶(‹W<žiWÒÆ×2¼nĤ9þƒ>ËýnÎh&sÖgéÍ-’–«B#º­èo5] F¶ZêgvdÞ’ü~¡ô[€¦ý<F×!•8ØPBŒÕ^­=m RU!²\<^Ã> ùBHn8{#£íöOíËMoŸ£*5ŸyƒóK#¿<:Ö*+J)
+,³ ¬2%ÅÓžñ¬ã69 €À š Cð€8€êÝôS,¿~Á•õ^ŸMà>è¢~t®Äæ» ×5Í2@ÊϳkžÁ‘¾Z­qNj„rTv<0«ç(¿DÁ%Kz$²-N½Ûìø.iÿ”oÒ¢_T})iûa1]7ŒÿhÑfì߬ôÉx§,>Et|¹o©Ã«jà–ÕäûþX·ÿ›Å,Þ_É+3r;‡=ŒX8ç)M<ÀƒÁX*:æïˆ@:%ÇVUëd4._¶•š}F0£¥¥€0e%ü¢Îy|ð‚héäkÂDYç)iˆèï4šÈöyD(µÛßq"ωûÉÑ®ë"Är}02Š(Ml üU„ÿT%xI5ÔG 9ÐlôÒÏDM(Eå·@¶!à‰V ŜȌç~ñèC÷ç°³Œí¡tÊ
+Âüƒ¼€©4S7éÉ*|(á«ÞÍ!
+E ZP ²fRù‘‹ú­ã¯«‡KÀæ&ÊÖqº×ÓEÆôô3¶ÎÜ®g?éö¥ÿ´Æp/ëÌ© †„j¯Ž.ÒÉyNGâ¡™éô[ ™“»®¹Z«j…™K¥+>štuÕ/ÁëÄYÛÎï% 3PW<~ö\S«>ÿü‘<S®ÆZ·cF/æ•ÔóÚS™Æµõ½•Ùçªê˜]¨àu·G÷g‰ýÔ›Ä%ý}~å•:@ø¼â| ß”zCŽü \ádg~±–ž€ü@ŠXÄ6¾'ïs[Ó3Ýjý?<r·)oƒ²Dp¥FÇžø
+í‘^$g垀φOxX†Kè{æ´îm4ÖîפüÝZ½ã[9^¯Âfÿ©Çh3N4¯‰pˆ×„§Å÷œª£|íòŽw97ƒE
+$>xñô{%sxâøê³ê»–¦Š?Èú£º.=
+P°¹Ø[à'­< ûÚ´9‚੶ÖPO³­pÏÙâMBE¬Á%†zÜÅqÁ÷¨2k…”&ÈTÌìךs¿³Šç~Bq$^˜;qr(‘Yf½’Hmü?ú£8p«ô߉ºG3nĤ¾Qý-FªùIs^¶<Æ"Ñ"÷LÏ¥I¬Ðÿþñ"r›n˜_§ñÆcyKx0};uk‚–+xÐSrƒ8«!¿M¾ ²dîÝkàe¢t|V„Û¨µwŠïJLÒ±Ó ¾·89~+[ #c„üùkdßCkazŠ£þÕ²óÏ4l‰©’³°§V}¡ÛNkƒÞ¾XjÿkÒ˜:„ hÖVü„-iMÿ´²ôX•p± ˜x›€÷¼f{”ªëa ŠdO¿%~Œ’_øòDóaç‰`ïý)!±ZÖŒ­r„oµƒ蛡­û¼Q©
+·n½†
+TØæVìêˆvƒ–ïì(.óÒÝ,¹°m1"§7CSÔ-éƶ•ñŠZ'ºð¿µŒ¸œDOEdÁì¼L §I õe·OŸlåúyú£â6qÈ«å ~³å“1‹Ûvi͇@œEMãí«W+lÎ'
+ïSY²Ú¸yz ð>.Ÿ«šË‡°a¤ä›e•
+æ‹ýÀñœ4ɦˆTÑŒ®\&#8BßÆ6=]žôÄ[{ÃNüí7«ZÐÒEø£Õ'A‹Zfðdc 
+H9(ÿÏž’ÀãSû…Ïœ¶|ˆ¯u,* «P™˜üq“w‚7=H„µ•ÅüV¼¨”ëP:-7Ä
+ù…äéŒòrOXæ¾…´™nZÿYÓÉßqˆÝ䂽s•CRuª}‡@^ÌæËz_/`ÊTñJ_ó³ò³ ÕƒÞ›v˜7Üÿt`\¦Ã¤Y °çoKÃH¬!;Ô[¶‹kãÉN¹÷@q 5ž¶m+•ô
+Õ¡aÑĬ…Áˆöv|=¬EäØó»žÇaðI Ó̉ŠâÚ»õ[nw'»ƒ1¸^‹=\‰E¬l
+’Ð¥?}¸ .kÂ
+§ˆŠ
+Q’ –Ò,ÍCÿ¦#ßÙ¨KZa´©o®t9×Mž¾©®‚ý]dò“¬9r_Ù8pq.ÐÕ÷¾ñ¥{Œ(‡…ýþÀáh‹¼­é™ÓÃÇàÓ9c“+»Ì^¬±HO¼ZE^ŽH¦;ˆ†¾&R
+è=×hzù üLFEKtY8¼ÆÀ“k>;â©0<Wœ¡&TšÒÚ3îtÝ­Þ«aalÂ%ĸô9&ÄëéÞ~,Ú”ß*Àù®z ¼f ‘x!àFöÒˆ§"v_Š±d×ùXG`‘ÿ‘è.€‘q½û“Ìd®œ¼÷lÞ%à °zr“U±Ê ‰Í?
+Îâ"‹MåÌ…Û°‹8-ûÀ
+™¶=êÖƒN‘!uèåuæNÔ§Ý\8æËŒå+uŒhÎÉ…€’yC ¸PYü2 >Fêdùá­ô6>×GU<~òòkÝ\,<´’áþFê Šà8ðLdêY,UÊ@„~Kx@°’L8¯Ä’B»H2wc'É»À»4´’Î6­Ðüpƒ»¯¤Ë¤«ÿ@%ɢǽ£Wu莟LðÞ»S–Ïýð”_ˆU(˜þï!—ñ1üzw`¥â*BáÇWÉŠ8\Øé¨,t'{<³ôë4ÁKÀ™ûfÀît²ì€Z0éñ‡±­ €˜ l9,§LÌü<04EdѺЉ¸dU_H§…-¤^³°ªí2Ob¦^û–˜#Â
+ïÔjE¿¾N ×ƒÃ3™g"Ôq¶'sçÁ²^¼àß3ßGf)VqîÛ‰ÏlÜc;Ê/üâ“Ñ<ð ¨èÀšCL”ù”›ÔZc¢1Ó7’þ 4÷õ‘ûtžáÎ`yæ>~9‰„8AeÝK¶}Øѱ Áh§Æœ¢¼¼°oÈé
+[Êÿóœ¨ÿüé]Uʳ®³ó öHw`¸öE™ú@'„cí2E ÿŽ= ¡|óŠhÀè°¬‡ÔÏbF dè§ö1Q»b»>(ABòÎ+èx/ñÒ`:^ÿåÃìØÝ°ºC9–Ž•—îdrÀoÊoâ¨4«žÑ©÷ñ0¿¿úý¼~B\ô›&ày CšíÅP%ú¸¹9H¾{%•U‰ˆ~°ã9µð‘ã#SÈ‚/„–Ãç”±êZ ÓAÈã²Ûx3ÃþäƒÝ>FãWê¿vÔ¯:!¿J—[³ºm(öZ'è·,T]œÝ+šÏÃÿ5œt19xlñú‹4­
+;å¹VHårµ.KÆL£tÒâ,|'sé ?>CÔaÿ„ÏŠä–­® z`# ®(spx‹x™.1 îo<g{rîÞÊá«ÑÇý×¢‰ó¡, ºY¸‡ŸÆí¢£Ý bv‡CÝñŠ$©Lîî÷?¥¶8R-€€nÄ\]v€£›×W*Ö*¹’³8m×C#üo Hnyo¯È ''(<)Åëï'¢éì8í}ÇÕ‹Îô$)°b%«{ÝÚÜ·: ;-½Ü¼è²T4¼äFMgÏ:êÿ_èÏ ñV¼Ô¢6Îà¸7¸$Ȭ#–&‹ß{÷ŠÑ›Ò)D%¬µÐ×ÍfœQ¶óˆ 8û#ITó êÄZõÏ;îD϶g ¬ìsbþˆLúH5âj[0iæ¢VV¿œÑá}U0.µOðÏŒ7Ñ8b5
+¼µÁ€Xd*G´ÎìUû´av_}÷yc:,åx7ðÃéŠ×ÛðºÊJÒa%ëÙ#\0#ÇЖȔ_´²«èörý£xðÿŠ“ÙlUníX_‘ÚfÆÔHu¥BÍ á/î… f²¢d\í†Çû]ÝZDÂé²?ôõ™ëø6es;²: ÊNÚA6êû3´eí ïV»w6f±N‡ð;<VagSZ;ʲW†ôWµ®ºcJ_€aþn-Žò§ÕÚI†gƒ*g›à§’.^È7ˆ¤ÐÕCbÎìÕe+¢ÎˆÝ­‚×o¾Fã ˜œ¹×mò`¡t…ñ5üÿ®^êá]t‹| QÆ¡1’Ä,sÜ,ƒqç­.<üÀÍÕÖtµ¨é
+4yž°Ëùtøüö>iGÀx·Ÿˆ&×z|Ö…5ã×+ Ôí&z×EïÏ{EƒîâUó]ï£Ca?JœÿÚQXÀã2Ë ÜÏ\(Æù¢¨”'Á ”õTI0Ëކēy*ú…Ôç`Wä¹'¨0“s:¸Å m-à‹1† ÌJŸº”Å*3Vs[fçLî»9‹dí&E๫‡)Ùi' 781uֵРr¸|ð ”
+à*á<
+‡ m"FVNÞçYÃ|kÄØçÿÎîôu>Û
+endstream
+endobj
+3164 0 obj
+<<
+/Type /FontDescriptor
+/FontName /VPLJCQ+LMRoman12-Bold
+/Flags 4
+/FontBBox [-476 -289 1577 1137]
+/Ascent 684
+/CapHeight 684
+/Descent -194
+/ItalicAngle 0
+/StemV 109
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/a/b/c/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero)
+/FontFile 3163 0 R
+>>
+endobj
+3165 0 obj
+<<
+/Length1 1971
+/Length2 21925
+/Length3 0
+/Length 23113
+/Filter /FlateDecode
+>>
+stream
+xÚ´zeP
+º6înEKpw—âîÅ-8Bp(Vœâ^ÜÝ‹»Cqw+VܵÀGÏÞ»çìÎýûM&ò¼î™Ì„ŠLEIÔÜÁ(å
+ Þ˜æ
+ vägaqssc¶tq3;8Y2;ÚýŸ†•µ3ÀÍÁÉðöî´þUù[9ÁVÀøÓ€‚µä ü£$åð/¦ý[)ß”ÞèàöVð›vÿ8ÿáÆÊÄù/]€½‰5 ™€ÌÞÁ&`g€ñ_´·'Ðœæ_â.NN|(þ/Ëéßnþ7t1‡·Ìôí¼|LÜþ»c& gÏÔæ?Ó6s
+
+àãåèà°0±súX[
+²´¾õã/’柲{Ö·ƒcýç^˜x8þ‹õ6†f¶  ³3€ó_,à[þ+Ú·ªÿ‰À¢ ¯­¥®ÄðŸ£ò—Œ$ÈÌÁÜd `çâ˜89™x ±¾õŸ‹ àÅö6Äæ@÷¿À r
+`â`çú³Üàðù]³Ý¿Vým,ÿÿ¹x
+fÙqœì°Ü1Û‰'Û!Á¯8Ñ‘&=¢Kô3ƹÁx?äà»;1ôCÉĽîL›
+ãMblMÂ8D¹8»vÑ™»J? ×Ù4\?ØÌÿ®–P~ÔÑÿnf»²w2ñÙð!épâÔrwpº¤‰Ñ9%±XÆ ‡ñ
+¬:†ÑG€6ãÎÍTºÁÞy¢x'R>îøÛÝï=…"9ÙÜ_ϳ¹Cè!Æ´?]3îs]œ¤Mwª
+ ÌöuWô±*øW†8Å‹lj!”Š¬öu—¿.j¼[½FtõhäùŒžW®‡†F‘iÃôÄôV²ë.[d)a÷¢up×­P:Ï÷…Âß. wZqH~2£³¬^v±£èN$ý°Eßv×sŒÜù1 GËäÆÙâês²uöR4(RD²ƒnÉv¤¥fëðØ—ÛO[l“š°øÃkDX=Š"Ù ÉÑw¿¥Í“I"p€T÷<m,m¿´½Ì–húGz‘ÖìBc.’2Û^‰ÏpçuÕÞú\ܬ:Å㘫„Ñ?…íï‰ìQÑDdz¸_œ8T ³ŠÇ/¼
+|Þƒ1´÷ W‚£ƒàÐÎPRÚIbî r™Ã÷Ø'í™ëïcfE.÷º*_ÔVR¿00û™ ¶I†(<Ð:ÛFz‹Äà .jÒÊ*Ÿ²† MjÇ<Š¹tYù¤’½?g‚põÐ)ÌÑDÝ-†Lö…"-¦yÜÁ1%ÃìãÇ„ýP âÚ¥“ŒNQ §™iSËý¯œ‘ô$€[âXhâOy,r˜17¨4ÖÊxÇ’ AŠèÚŠSöq6S2~ÙO\‚î¼êj“nöô1Ñžâ[¸ûÎr[öx„¡X¤~ Û™DÂ.i¢ìy’ŠŽSã×4½®»uê¤ÃR?Taëøü&¿Rzש÷}ã™þR—aWÔ";îÐ|ZåÐ~œ…ã"Š £dm3wJö.kãh8ÜT׈UÑIþ“ú.Ý³Ø ŽòÆsÍ„‘·©ÓùÀ ÇA
+”0ÔX±†W r­/ßÑû-b[ùIÈí˜aHX±1yÊÈéU½ÍÔWæTƒ$WHÖÒQ7Î3«J¿Z^ùÕeÉéȧÞóœ¿>Rs±G#:”–µh–h¥ŽJ÷½l9Å,¨!W|I-0˜q5Id’¢Te
+ü\¢œX„íeïà2\6c®}€€§If{Ý0Ì ŒOD#ýìÿU•Œ¢ôg&m:ácò.Ÿ­éMtÆP‹J.üÓJ4”gëÒã;Ý÷@ã¸" qìîOõ#¨USÊÙûº"ôÔ÷:˜BôMøp·Sb *¹Ä™Ù¢éü™"8£ï¶>£ä¶
+ªI™W"5eœâäòÈ÷#ú¯ ¸lÒÈT†‘R}±—š2Á[³õÈD^7œùѵ²wÈÃX_mT‚F[Ó7PåJ¡ñÃÈ»>…>8&†ÆäNÓ÷Ì‘°Ð PRM0h\ÛZ ,ÉÈöÂç°¸ïÕ%C¦ŒFž ÙUÆ—!a(ðUÕ§ ùZêzù(žh’žè8ìH¤ È@ ¿°Áßk —à'Ú!¡©Oƒ5ÉaeŽöˆCš0‡^1L¹ãf–}
+MžSõz_Rшû¤Žo{#¤k˜ò‰Ç¨…J¾H}ÖôùÜ6ñ=Ͳ֓ÐÔ ûUÜ÷Áû¬ƒÏoæàZOK/
+¢ü”M’¦˜f22E5Nªœ&úà—­ž‹ÍcT 1â3ʺâʾP€UøÄN½l[ï1s"ÉÓ¬ŸK-|¶AgeäÄ‘‰K„ÈÁç§_ÐɨÉØFoͧ
+c:Åtì| ®àÚ¡‹PØ.`¼7ðsO
+üHö
+-5 AäŒV&ím?nj<K.ñ‹QYŠš¥¹/T–[Ñà®ÐîçOïîAmöڒݨŒsÆÃ|MððõŸ¦x}m¿¯œÏXG7ÒYøŸÆK?ÿäqÛ®y·?Óc{JÄP†Ÿví°¬,µ—ø~50:ã32IA: ÝoáàxÐ>.ìFm9òà7Îú0Ö(ìG4Fî©6Ï+ mΙx\mþ”Ðl5zÒØp¶~GÒ {Ý-·‹:OA®.Il‹Ù[+ˆ?=¼îÛwF…xøŒŒyÎñ¡9Ö=KòÕ>¸a œÅ$6Ûi3¹Šù„Oã¶ðˆiç›w”HDüy¦“Ô(˜Úšš”ãÓ¦Pš”´Â2æ¿Ñ¹Ã—ÆJÛ³äŒ]K5°¾¶/‰ÞÆSv°ªøüNÃ9Qô><ãÃ{ <ª¿þ@Cª‡ça ÊsÃ>kyÔµè[ÆSê¹UœÙæåÒx1Â[©"¨×ê°gúh×6ÊE k©ñÁ'R:aˆUiãÑâûŒ ¥·>~:œ^ ¿Dóž»%áÜón8]ãEƒú»‹ˆ»»ƒ@4‰Ù/ŠÄ¤æ² ë°=‘Däº ÒðÑM2¿aÙðP¦pš|z))JYÉ1\'VcåÉÂö¶z®·¤‡ÒWî!AÙ税o‡¬SŠßŸANk®êKöD/Ý‚>Ò„ÞešÃ1ðu?Ì ½®Œ¬sÆó,¹”~ÕÒÎÞ)Ð)C.a…×Nf?0Î-Þ,唜¼·¹sn6®¹i4–âW6e —5ùxRKõ+›¥ ê"ÉC-K!kf%[èv'ÍŒánÝ°OÏ<çI¼fá æTB1[{ÞI& ƒHnò’üÂ(¡Ï´
+œ‘Ј¾dà]zØðIŸþ×ñß浶;²dEð=B+…ÁØdIr]Q|Qar¼Õ8z~ 3M
+Fõ0ß7®‹®)P‹ýeñMðMïÊس”˜…Ç‘8*\®’?
+å3ÃɘuÂ$T
+áûª<‘2ñe½f؇¿ë—¨KbN†®+¹nœPãi{"‘,pW¾Çã~'žºôëâ,Ü=wŸ{egN_ÇÁoU1ßèJÉ©jÊ°d±¿p÷¤¬«.Ø›….©(¬î“J,+܈ÆfÞÅ„Ä6mõ†º)2¹2†CŠXgÐìauጔ þ‡gg ¥²ÕÜW󵻞bC‰°nÄ'ÝÇݧšÃsß@dÈ'½„8 ”¼¾÷fgÛ©§`u%1LŸ`Ðì´Èö¡«÷ðò*a‚‚M(t+Á/O¨=áÖ£Ó¬¢/ɧŽŸ"8ù¥!ÓÓò‰3ú¼„EÓk“ûÐÞÚ Å>&Üý¶´Qù¨`jVîd¶›f-)+¥NÑmó%ñî¸XÑÓÅþÆÌäÉK2¢öTÅP¿ú§¡¿Ë;&ñ?7ÇaV| OÇËOƒjJ»êñ™§&gò<I·—èz3@÷=I4j$‚B¾øû-T°¨+ß2¯¯ <Úɲ˜{§ÂîxÕâw›7k¬—$h×ÐÓÒED_·Lc I}TJq y˜z3ÚËDZ¼…A¥‰Â Ë/&cu›ãˆ¨îgV¬F'°=¤D”ôe1HÔ¹"k0G› ¬ýá %6¬Qw8c¯þ|œîØ dl¶T~ùÞœl¤L-G;È÷Šdj÷q½Glê—Æ…È¹'ü‹?צ
+œ/ç(´TÍIN!^£ñÜqµÌ¤³“¯ý¿d÷NÔ/Z}.€ØOƒé©=‰ò{rÅÔ›'Ixä–ÒÄQ÷°´óIL™:™Ó ‰“Q×Þ&^m3éDîDµª'ø õ¸Ñ;‡Q n_ÉéÔH®éåZt¸SÌšŽ1ë;öm£1{ïÜOÒ!Zßae˜Æ3ìÍð ÷]›áK 6/^&Gãß!7›üâ8¼r,€é~/+ ɼâ°åŽÜò-[ÏlA/˜ÇrzÆ2µó ‚6÷«w—^ó‹^Q‚D(Eþeöb¢z:lýkµ8ÓEìÍǼ¸u×£öb¤®ƒ¾&/¢*sZ(¿J_¶™ãæ^<Ÿ0#riÃÆèY=ˆ ¸_é’Géù{ïÇÙI©´¢¡ïÐ ]mê轤Å>L“Âãøås©L—¯LаvC:wK¯¥¹!M羓Ý{7’ª®ó0^µ?™~¶“®¸VÒè—n³v ™2Ö; ÛÂ,‚Ôõ)Ûz™è“Ò–(ä?+ÜΩiWE[uñ#–-× µŠ×äúd+^Ô`.Et(ã@¨“lJF÷˦—µð:Oò8ù•’ö¯¤’Ž;9bðË^äqæÛ‹Y¨¯k_ÔÀw­ZDQ_°º. §
+^ æE¬®"8‰õ–”Bf|ÿµ8¤fR]'Ö8 {?ºBÛNÀXeXÞÍDÃÑ“øùJ«ª”Žò[åÜã8ÁØ\ÁK+óAŠÊNG®=FÑ?Ýø]Å B§Ù­Ü`±}¿—·¬3þX#&^æ>Ø[å& Úçå”HX°'j yÏ9Ѓe†Â”Á~¨Ã[Âî#ïÓû)в¿Œ2´±…xÍ¥.|ªΫ»‚q. »­F+H >÷9Î#]|'qtS!B6D5I&ºå(Ñßbù›gdÿ
+3„¶Lf.†K^K}_(W
+M—
+yÆ7¤ýzú<FvÁQ ±lJ™«#»t<Ã}=7þâþIû~Ô³þá”Z9²R$´uðÃùàµêYµ<aØÇH€È1Þ!Þ+Ò [
+ÅÞÖiH4 ¶'ŸiÅ¥²£Ï»òz®ú…¥÷5¯x²ôg²p¦Æ¬
+“4Fˆ^“GIP?ýÓ~c9ØÖ1e¤ÍZºë“\{j¾SØ6i˱/èQqeNaVõ°^\åqÍüXPn{n2˜uJmЪ ™°Û3Óî‹‘÷h„L­DDaƪ0H‚(”mBßäÊX±]Ž;…Ô4Ti—‘ô²f6M Ï~%îZ«Æ]*À~¢w~IlˆÎ iƒân}èJÔÂh«F eå0¶™ÅÞO_ãy®þÄöÜ8SÓïúÎã+ѽ‚²ÂÇêÛÞN³äoâ2•HO>¦œ™g·þî„Ò àh~1{oSƒ+õ@$¼´ŽäØý¹Z‘ûF ºHz`é5šåeKœûwFQ- ™ÅE÷ªL†…؈¡Yi•Êü¡Ûµb·p뫃qX9¯å*9¨¶ÙœÆC¹f5CÙpoüz\{øù‡K:à×Y}¡§cvv’4†!.¨¸“ÕÂ-§x¡Ô5U-ý¸µòú XÓ /ö„V:ƒ¹µ½>Âñóúä§'tŠ×¶“êíõ»òƒD>ŸÇ+‹æ€šý¬Qq¨€ h•}sé4 qQkÁòhàýçHü!6ŸÕ«½œÔo
+8¦iä‚ WLS­Ã-Š½Sb°zT¥HlÛ¬:ˆ
+gÓÙ\tW$1>µˆ‘
+9ç8m ݺàÌŠvpy×㙢-uFù30xíóÏ6N
+¹“ç¥évcl[uý³vV;O‚g^…Æ™©³½;‰&õ¬Bò_ôÏ.WÏáà{|¹O¿iRK6}°lј홑€TE®<_|¸Q4ëcù`f0L`Xð=üüHx·h˜5Ì»BQÌÙìæuœ U
+AzåEGyA©Ø©ËèÑ\ƒ¢WÏ°Bvgë×4¸yéÒ©‰àÿòÊ£5Ê’9J¤áƒ’ó,ÙhC2©Ômá¢Ê{ÁWz™»C$Nû@ ånNnrÝ*Ò9FœhÜ4þí$#¦àÅ·v¨K+^þ&•ý%Öõ°ŠCûÜ!†S´9;JæëGËf¡çJOö˜Ù¡r,¼5MzdäK©}‘ÖtâLmÛŠOA‹ZLR&í»´}0Œ[j-FKé= DÂe¢rÈ
+ðÚL™^²ˆÈ|ªƒdÞ?Ll¶&[/ÀˆYkWàÛú¥WÏBbNÊ/ÍyÓÕ´…耞ô« ªÕ}ùc¶†•í°Îä%íë)~Ž<XR¬œ“pì]…nu~cÍ‚!ãRš­
+ÜC­…7zð¶rà⡤èk¹ÍBkdûJÅ2˜K½b6Ι£"¡AEeB.~Ÿð®'Q°;/—Õ‚‰,é%ˆVž¼7ËXHX*k›ÜË&-ç™ñ¤Üdá>äTã<P /hœ„Ð]·6ùÇôô}pŽã'ôÂcò.©rýÚ¶þUxàË€ò× ‹¼Ý à]Lã<e*â͸½JÕ/Ù±5ç­-%Ά4w3è'¢Š»pÞ'3xfTI“]ŽˆDx¡3ºë, Ã`õ_Úª¹Sˆ2’Á´±ÕhSžreL)°ØL1¹³°Ÿ{?ÒCoœSØŒNßñ–‰êAËkùr{çn—ÉrzQ¥—/Ëìžð3ä ”À)~ìþTÒJ¾ãèH‹&ú2 ~ÁöCnîa„=þQYÁ6ë‹¿î؆”…ßxÕ—Mk,R.‹’ªÉý%×ëë$I[5eÏIf3UsÕ¯`ç^§}îÙ~°·ÒQÐêxâI͸ˎ¥¼yþ†Žnñ¡‰WÚÝXO¬Å «¿À&:¾ATÃmº¯ Çþ:)C^>s÷óÅû!^=ag¯B\/Cüw’ò_Gú¾lù*†|êÀÈ´wLUµ–—ðÚĦ"Hg„CJ
+k dXÔœÄc¤ÛPÅŽÕÙ%›˜ÿîÞ¨§õ‡`ýñj|{ÑÓ¹aïGÀH´òûÔ>2ú\Á5"Tˆ¼e“X·v‰çÍ™\]Ø;WxGÂÛÃXêÓ‹ÏÉË훦²>×ÜCV­hž†µBlo¬È¬Y«udº©|ˆ¤©"Ú¹‰Ã½4‡jÑ<ûiê£Ü0n½¥ƒu{;¼+hoy`‘®J?LØM¶o¿ÁÃJssχ›oÒJ…CúP’SN|sÕõ%™Z0 'öKtººÚ‘ìç°ï’“$ZÖÒ‚»
+Œp¿ô¾/í¨ßÓíF¡¶¬0¡uh-•¦šO1¡€ Ç%æD çMfµ[^rÂÀ ÈÇôñ¶‘¹É>TîÎÓ†lÅ»Ehƹ÷*œI.l,Ÿ–"©1deŒƒÏþ4‡}5Æ@\«
+= NêÿajÚqNÒ~ ^Ñ6|1š´§/I¶”‡ÞRlK¿±Ï£÷= Až‹Õ”ZPšºpí½æ~öY=U]öà ‡+šÚ Ù…‰õ‰h4u¬CbççŸOïsx²$Ŭ¤œÛŽˆ!m½¥2â›F/…™ò·E·ãhûÒõ
+ éAߕǯã÷\ÈQ>úó®¬ü¦†©t\Þ…Qýs\è^mº9µø¢ÅGƒÁÆmD0el[,{PpsIO‡ø¬[½NA$¢'k~ ‘†¹Qøô•ínþ¦lRê÷ÔnpÐô‰S–ˆ[aàëñ©žWÃ;³ž½AM,²Wµ‘Àe °°%øzO/ßí7+YCÄ—ì4IiµîY£ûFŸô^rD7uœnù©û‡¬½´¼’3ƒê¡PwÜsœ=¹CP~PŽÿzºj™ÐzÚzåÕÚp ööG¢N¶ÌG.ÃÓëÆ»õ ¯`Ìì ¦ó5¼™=’¦ÒÚwÀÜ&YŸZ³ÂM°LiÑ’†œÅìéD¦¹Ý'óyG‡Þx
+¨(ägŠ^ ÒKØ¥Á<¦Š(·³‚ðž®— Wº¦¶…ÞYrÄdppØ{‘>4Ã.g•´ê}5ÙhïøHU!Uȵü¢®gÊ°ñ5þç 5Ìo=[‘e’›_Dü(mºd¥ÒßôdpŒ8ÔŽ¿ áŽÁ}„” 1¹jv¾Ö8žù…Epï®ÖsuÒx×4æôuæ¸ÿ`ÛûJ>™~
+õ™:Ó•9pêñF·tº1È­'[OÑê5ùƼn…­~VB¬?;¼¨¤#*³Èžäßb>
+‚²H~ižÄÃÉØñü÷ÛWí¶zÇ<zn­ˆ¯MzÄPæÉyóø`ÊM†›šÇVÅ: M
+°[›û×e’ì¥D2ÙX…M
+k‘+ú}0 L)ÝÉZÎ-§1þë=n=½2‘” ¯ ¿aQÌibژǸ¥JõÛ?,²WxQZ²C½ˆç‘Ìè ¤på¼£½ß3±9V<­¢MÅð;«U”—¹"R2«t¢oNÒùUNÀXË{ Üú¤sÈ´H>Í/û¹#ûÂ×èå†øwŸŸm®Ó6‹ÃXæ6w$ËY"}¾ê2<`#0ç"Êùð~à6§÷~N5j¦izqî¾QQ¢´*pgSn<_A¯d0€°™Ý cx²„(þ!0Ù7oÖ¢Þ–ÇŒÖdÖ£u«-rÊß5|‹« GM<ƒJà1iFID€À=W2’Ò!;è&S*r¦ïŠØØT°å=ÍwýUDÅÒPÎTÀ¤7}^[Â×GéÚ€yqCwÙæý“ÅlÌ:X÷rÀO9 ]ñà´ §./´\NJÛ–T;"¤<eþ®HŠP%- ²¹:{ä8µ¥}¢M„u½†53a‚¡#Qßá¤ÒKc~J æËö T@áaŸÈå,o¤\Y=Ö›P¢‘ò™ÓÆ÷¦Ï¯4ºHžÁkKæà»»5.8
+ĆxSÔë~âMÝÄ=Mq„Jž8ö‘H¼ƒÏ`š@ÌƵôqóZ³ÄZUI8iö¹HÕÈТ/&û,S[ÝR[>ÜÄ<_9+…ú©³VÛ…Q÷TL<ÍiÖºÎ2\ÏVÊréòx¢ ùCí{}'ŸÜÕ WBÕ ±*TWä[?—½tœ½MáéöÚ—¿45¯|ð}|½cˆÌà“fg?P|ýˆ%ü1ß* ª>š0v5Ï©Ífów¡¥±ŒÂ«|ŽÆ'–˜æ¯n×S²)Ò[Œ].X¡$‰ó§õ¸ýHy/á°Õ U.ÛÁñ8¥,Õ)ÖË…C/§
+¤ u(
+sN½ÍAùó°›6ß’}ý‹ŽÉžI-ýg{¦xƒ¨p~}ÁO«ªP {ø¾÷ñ ú1™è¢4-œÚØ! ^ıÍBšåÎ%è:'oQ¢W^£T
+·Â“7·HÊQŠ9ϧhdϱp³«1cKIÆ„ÚX¾Q¤P‹ïQ² gpÏw,4'Q*jÎt=Eá]käë_TeŒí½ ÙŸFæ>š:ç @ÙëF–V ]êØú
+í‘?H¨Â ^Ÿw›W¾2•W_¡#ª½uQlÈXñ@› „s1ºV¡Á±ß"瞦’þ€I oíÏûڊןƒÍâ\¸¥„8ZŸû´!%d³È¿†\ºàÄÇ¥™ö 0¹·Å»î •œŽ·¨ª_2ß=Èæeb×iÈf]¸у±„úܽíÕÑ÷Uu
+Z¬9h<åø—`3$‘£÷4 E±ç­wTû')˜¨”µëñˇ6]be[a´¿J—††–Ú<
+<rÔDáú+94ðÁ&cX%…ˆlß>R!Ç0ŠøTÏÚ6L?š•ó>(7õðNçqsÜÝL,@´¸?Âþƒx »ˆ×Bæ1ÕO€àÀbüCü©²ìûÅ„RÍé}1ÏŒ; .§Ïµ#LHàÅŽXÙ&©ˆa‰¢,³ŽRÈq>”P¡4T# ¨if)Œ8|õˆ«œ1P´38úg†Òù] <˜¿òê¤x·}ì+iÑj=ˈwiñi<GÊm€lˆ;° Qt7¬`ç¡ðuGõð—Îòþ_ºmðP'1“t3—Ò hØDö—í¬â¿ÏpËuÊrÈ(àï³›ÎàpeÎTŸcéÖ/m¤%åÌ–êðÄ4 b«¢ßn‘”V|AìöºkMc¥{etY´at÷øûå#ÂÂ[ƒ†÷gÜU°"õî\a4ÙˆÖÃÏÏf[Д“üre´µÉí±XcýX8ŽrJ€•î] ìn²[‘̲ϽŽGì]/Qö$ñÆ. ”WKKâ€,øÈ/¦O¸Ën|ß7/Ÿ¬ØûŠaBm¨%ÖÑÖÞ~
+™ºæ=”"ÂC
+ÊŒÀi®cCù/ýƒ¢_l¶‘Õ‰LËÒÅ©Ò“A?p:ƒ~ÊmÉ÷o]>éÿP“J÷6 Êû¡qrÝG‚êpp@\©5öçyþÖ$¼Dµ—é9}°&h¬`4ƒ:”ü¹îiìÌ©Ak¨¶ÿLðó;½âd•˜î‘Wªå,ûU0Ó†Aì­;Õ0S®îP2ø‚-.íÁÅLO¢¥¦ÑÕj)xB UÍÁ¢$Û–L‘„ÕaÿUÆ!‘3‰z+™GM70â¶MÅ>ÛÍ¢K¡âÈdQ¶kEg3;‹ª¶ÀòôðWXçR¢h (—¡*‚¾îNO{»åçÖ‰àïN“¡Æ‚Z­+ªô²¾|‰1G‘nKä‘5…÷d=*~?0ÖÓR¾›:
+¯Œâ
+¿wvË#}éeÈöWIŠaêõWÕá3‚°)ƒ„è5–ÐÏOGÅÅ ›b\êG”¶×Îéj·åRħ=S,è×Î~Òê4qIVHŒ!76OÃ)Åàn‰|Ø2D;ƒ›¤E¨VÂFö=¤þuÿWý+”‡‚Z“´’1iË|O(Ûnµ œè$ –±O«¯’QIY"bi†9F"O:„Æ1ñaêÏã„ΫUeA½B´ž¸J¾¥VG;é_žï8r(³Ü·¢ÖÈS÷¼Î즬êL¾‰¨jª¯:?¤&‹ÏÔÜFŽ®¥4¦BgøY Q×çIaúìŽÿDæÌä•pÔ°’bH«Xº‡;•^‚ÂôŽj„84a;‰çŸØ‰BpŒ.ôqg`O€Øè9¶= “ˆ¾¹Ë²¶¾S¤l ú )ÎéÁŸ4ÖðSeN·Íô‰r¨Ë§¿'‡é[D`µ/ÀÐ?~w½ïC_g†$òêmcÎD¤þ#xÁ¢ˆèDw¿Å¸9Y‰,;hÊÛ2+1E·´±¶Ÿd-HŸö˜(1Š£7¸€õ˜›ôšM9¥Â%-ø\ÀŸ2¬
+ YÆW• ŸÛhݘ®à—ìú?íÜí°8róx)׆šX3P²’M/ã–@+—0\% ~Šë×DQ5ôQï·"'ESeøj¶Ia"AlXyQRC^ý*x§Oi™Ä;œÑ§¸?Í3\Äå q(‚㤤¯!9ã2Ü`¨ý2­g‘eàAèi¼¼#½vÖ€H¯1}©š¨Ño}þ`€c—Â¥zë‰ó½và^)ºAì›ãp¶!_U­´F%]Š@¡qªè™Ö¦ÒQ¥ƒêhÃGc ]Âõ)÷ï*\ùÓ3ß@DË._ËÊ·Msʇ¤-Àšï•ä滌G;°ò..©[`ùl“¬ bI›¿5©ˆjN”Ö¢áã^àuP«ÙïÎèŠþ
+¿ô¢¢¹ìÅûë’ïœÛôÓ9”ãاªÿX­zû‘o„Ëæز@éGùyK°‹å +^Ñ5ψ ì=¯˜³pø0ézû3wÇè×m÷S««qçd¶N¢|Ïsi> ×¹—tú“¦ƒxåz>ßÓ_Ž&'}| ®ŸxGCa
+½SÁj”<ÄbVÛÖB¯º‰“|æÑñ=ϲz+Ó+>ZÌ6c~ÓtçR»EÁ%šðù\?w^)Ò‚yjŸõ¹ÏTçV‰¶ü‘v+‚¥FúÆ7g߸,Aªq8Y¤3ûË;G„†t™¯Ó;«Æ$´¯·°0QCvyÿ*µ&» uÊžúú@]Ûºpn‚ˆ&µY¹Èjö|¾ëU~0"›£Àó© Zjó.D ï
+u“‘ÅÈí`7ü:`eöÒ[Nø|J.Øå˜Ï¸,4­z=Áœ­¼ }Ã<:É-ב`ôj<lîJÛÕã²lL´}¶,œ3)qƒPgè ÿ÷õX ”¨
+Ð3uc¦‰¬¾›2JSl¡Ž¿ÃÆŸ($|´¯Ä
+©GúÉ“¿GÅDqh&ö¡¶*góîJ¢'ùññ‘“žáÌ¿L®¤BðÀ?˜jIhdû¹øKwΧ"Z´èërT…p²ÔƒA¢‡„6’‹ü—gLP‚9˜å;b
+FYü«Àoµf†NHãazºÆ=‡‘æÐýRÉv
+øsYÜþþ·ï{ñ ’Ï;30Iüï¡÷ÈÛfŸM”;e¥8dCøÏìµÊâá ô
+hPK¬šÞ)5ÀÜѯQªË_؈Ëz½Ð%ªt8ýíÑÍ*.Ǹ¬\3z\þ¾„/´ƒJ)X'ÅL¡ÑŽù£V5Ç<È4›d:Œåª—³R–ˆž¸"ôz¾LZJÊŸ|¼^áCi²µòP-Ü=±
+»Exo÷cöTú!£?üzoôýúy,IbgŸÀ;¦y(ÞuÊw`ëGØ+àÊ3ÃlŸjð« ‘«›óí±‡s$=˜_Ò¯½~ÕŠt±}*Í5NMiÄ,Ö†¾Ïfb+,K¶iÁ½wo\g‰ÏçÿµqŽu8MÛÍ-Û6nØrËu³­e×ÍÝl/Ýl›K»Ùv-¬…e»~Ï›çÝ÷Ï8çó9§Ãåè4ûokžôZƒV/œq7–YäÆ24\*“žLç4Ú”_¯çe|6Ïè5b–Lœƒ²îež»è;8S;Ñ‹Fí(qGÌÒGË¥²|:5  †·rEJ, +³ Š žOÑ]×:-ê|®çXù—¼Ð9?Ä7î;úø„ù²ü3 Œ™6D¢ŸE!Ø;–{Ÿ5ßT¡PAJ,mÞ>±åÀz‚H9]·¶§H´÷H¯órµÏÂu@][ø¸ýâÏ­\q[h£ú±Í…£$h¿E3ÿEÎ5Òú˜ˆVŒü*”7êagÂmž2!R…à~ƒ/w²œ,õ|‰ÍÂq5B&©9UKÑ\èmËŸ§>ãྣk ^­:”¡ò½Þ×åR™XVY±O÷;
+·¯ø°¿,hãùÜ%Œ^Àª‹–‡U¹ˆ1+?ÞÿVr+eé$ŒÌ¶‹¼BÛ7Ã>I•ÛGÉtâKÖPÂè'"XXj+` _fžÙ!¥ÙŒ—ZèÇüvú n_®rYošqgt <z=æe·“ÎÄaþ9WL5Á~Å»ÿ•ü=+YæR‘&IÇÝ—Vï
+À€«G*Cê)R#éé @ku¥ -*ÜÝUˆÓUéBZ[¬ù­ïzqL{õgâõï^Ü͈¡3…½Yø$7p&û—¥á£p,AÆ Â?‹»‰-²¾w6S¨*éh!v°QT ±´¤ŠQIwu?ܘŠsËŽàtKÒ#ä à` ˆÌVO–W³“–˜«Nê:]_» ˜U?hFX‚EYÝ¿GF“ûŠxŒaÖs½½|'ÆŠ!¦bÂP¸Š0k±Â‹8×ÀÂÚ—ùöº³ÇVךRñ‚#²ÍÒ³w&_¡»'æ°¬z¸e¹ñG‰,ÅF}6åWR¹4ómûÂSìƱå‡ì+‡ßo£rdaB… ¦6.1Â÷ '¼—³oá_±SÁš½è+‰‡F˜³°Ò¿9û˜ÙæMÏÁɧé]Œ°½ Û¸?cñÓÏ3*i”GÂ@øL¾ÍÄÝé
+÷i+.û±ûÁ„ ;n-?QÉEH®bàˆÖ€ )½Õ.×ñ’Î'7…yäÆò -mÓBöO^a=xäïŽjw?*°ç^Z‰'©~‚.AÀ‡í¡†}¢„S›3y8•,#ösä<3ÜP‰Ž’a÷å£2ç§ÕÍ,ŸŸ7¾œÂËãyëqn{RØíÄHù˜Þ˜¬˜¯½F·d¢Á¡ƒ{㚙̯FѸjXeÝÃØš×b÷ìô¬ºZaŸêl$?—*Tk’ˆè÷™¦QV-bÈâ­nNR<"짖B-…tÛw¬½˜T¨3,v¸A”assÁßôEy›sSyÌ®öÏgrùú½>¾yIDZÈ燢!qÒ|0\Æ‹ÖåŒlÀ’#L”rYf³gFäbZPX‚Ìý’øjTÙD¦æ;˜0£¯dZ~‰4¹€¿HÉÿNlWGé}pã !{\7ÉÐ
+ hé×rU=irR0¤ÅÜÕ ·^q&ÚDo—A§•Õd©Š$ÈØ£wt $àü›Ž»GýíÍðû["Q.O¹ 9µ[Ñþø —gâ˜.wÄÖIÓ+^÷Z¸a î]ty³9ðÛ%ÖÔW½ÌT˜'»Ôb À¹ƒÏ_nó‰ å"lé å» 6Ðÿ¹¸ÊÀ«å}ÔÆÊ‚®¾
+!xxR¥½ÇeM?ä‹à·BÌ%”ƒ2jÖ°CÙoÝV²Ã¼àЉw­+Ÿ
+g·¦Ãß·~‹‚) \ПP€‹‘G»Éçn¥Äv}}ˆÀÑÅØþA§×FûtdŠséþµžçM6ÞÈk˜ÙH´fÓHÍUú"_Þ˜ª%_‰ììªÊÞË<C¨Ù¢ ¾4|ñm-rþøÓ»‚ª¿wÁ)kš7n*Z-o 2e
+0;ÅûPråËT` ciô.GÉåÈé"ËJû¥é¶á°Pïñ‘?…%ø‘Iè7ãI`®Æ‡Ç$©ªÅò׃…ââê-à–2êòýAt]>m‰¤s,þàžƒÆÚB&@â¦K[ Ï·Çcœ-$:uÖŸ~IõC¯¢c;:wÒ¬Šr#ƒcy¥,ׂoéÁ2§‹mfÍbfêkÞüñß+xÂÎ ¼™0¥·ëúU•¶<“N˳ϕEÏÀSpj…«ž¿
+døïSÓâØ1;£mÚÞk>ƒ„¤¸[ཱིe*Ø<„8¦º¯;Oh¼ß5‚ôšùõWÆ) n%jÜ" M»©Ärkäÿ!*|b5dÐyá„oYÀooÝÁ„l_m‚Ó~Y¥-=çœI‡)Ý7)bŽîö±&ZTÁ!9TŠÔ-¹ž7EâÕ­L×CO­€œú¦´ÍgÂoƒTgüp]zšÞØU`/à//ᬹfÖî!$¢9)K‡^xÖÍñ±%/~pÊeó‡CוrËHD Q,÷)øNŽ4Ë€‰ M0ÀQ·;j›Ç‰Î·ý³ ‰¦)©têLô'¡-=3ðätwN ò™º0»6K°'MÈJž¤×z¤‰ºåï/+تôÖ¹J¯\xœº§?) »¢2¡Uèc壅èðå¡ º4)ŸþÖ&Óéõ“c*¦µ©Zˆ]7)òä:rºBZEi²ýTb¦ú´ Ñeà‹úâ+-º‰Vu’“\>×æ 7b7nË{9vÌÞ‰³õ>€]4 ùÙ¯7Øm—|n”­´Ùb–•›‡]nmOUM
+?,L_Øë§:RÏÜ–eN“½ïó…ªx^’»Œrñv±dò)Õ |è;g²Œ¡¬‚M{Î×ôkL¥|_lœ/XÖoÍö0f˜í®!?øó1¨Á DN®øtù°ªð(}Ïtîëi ‚ÄŽáN4äYÝ©×7÷£<{TçE¾}j^@EÒ™2ýyA¶Lóÿ\f¼šOÃB°¾´ò‚À5¡·{MªÖR@KØ 8Ñd*¥ä…-×ÐóCˆG`¸8HBxpÉ~Ï€”ΠÁJ5($n¨Þ5;®…ô£QÝ‘«dÇ#†ù«+ îF!>ÎXÄqÒ†h@^Ì!ï½¼©c(þ4ã€.íõWÔ6üùn»º»_ét"s )zq‡jS¨‡ß†¨ªæÏΑÊ3sªäé´5Æ6z?Ä'1ýœSê½a…a‡9ÎÆ:É…;¸tQ?·»E‡Ù¸Úp,‡uÅûEo*i#Ÿç å RË/V±MR CTM8A3¾°ñ®üí1p¼\_gÀWë|5ˆÜtKÿi]|-pÍÅ[)Œ)ëò#TÄ­ÒÍüA/ˆ¯¢—¼è¡1ó„ æÀp¸ôw>º—×e)Ùõ¯07ó¢øÒ±¡!U^`´¯íjíðpu‡x-űÃA ý;”6šeª@ôý
+°ßùmguØTšDrr¢7ü^ŽVËülGCnWƒ[–lj¨y”4H_ë;¹Ëp“Èzã`3¸Àk…!ÑÒO"ô«ÐIwÀ‘”euWUö‡ÎµA³)ò§n?'cÉÖ~NnWçó¯¨Á‚U¦ß¾Ö¡k è÷RÉ!Ãÿ:W¸£Çp
+þ%_
+TéÍÌI?-2ŠÇèYÅ]X˜S‘Â=|Þ1'_"颫¾Ÿ»r
+|õÃ5Ù„®Jdešp‘ÝÎÃiê4Xï0!àK ¥¥Î!é±=€q-Ö{µ¼!cˆ:æml%¸aR¯ƒjš¦hƒ¦:ÊlŠt‚·8Í/4‡—j@ø¡¾}CÍ÷Š
+WÈáV^…Õ¶‚·.è”üƒ,?”Ábþ’×`Õ:?+Ŭ/cÂv¥Ð`ÕòSÝäx‰áËíŒ\i¬J‚ÚE¹3õ½Û¡Ôý>&ÎÞùõ‘ûßl–çP¡Ýòv‘?=;Ó?&±è9évøqŸÊ;Ý9¹-3RÕ;…2å7GnmõAµS¡ƒÛ
+vF»ª÷êØ=ý%në—·]]EAX!•Ç _Ljõq°„*JVƒÉ½ÑüyeÞ¡,9eµ;7|ƒùŸNÁdÍ€²´<+›;‡/²º>ä,º‰B[.ßõá<âÿ°û^º¢é ƒ/”ÿ~¹ŠTY<õè(¥q+òh…gg{Ô0¤‚ÉéË;Ã*øE/Í)×gInr<»GÄBë}­ÿµ]Þ¡„˜ƒ†ðPf¥ Ÿ(ñ¾>»s ÷Æ5ÃËfcH°Âp6¢ºJ§¸^émþا0ˆÆ W±A¹ãeýDR|529s^!¹ß.Y9b›Swc¶ Þ€euAGžÌÆ9×& ÇùjÐïeQiO÷Íá`ËÄ>nÑ>(§\Òéêëk›m²®Ù«,¼[+3«w¾|~rª¨ñä^_Ýp^/ø½BAÙõŒIQª–ÚØ—Å¡ºŠ!#Ÿ}Íã›õ8ö<Gê‡È´7¼äÛašå # u&ÛwBzcòÆrúwѾÇ7ßǘ<.UˆF¿ä’Zu´Îîg÷¢$×~O–•Š ;e,èôd†ð>&ãq:Z¯•…Pò&vÓGß(º¼ÑÜÓNÑ+sEX8_Ú%DÜ+>GMÍ{Ñm B$QÝt)0=jųX¹P:½)<?nm?™cP»&裉èE'´³vVmb$ÿTÍç7(Â͵H²
+jm”ñÿÊ¥³¥óPæ»
+[Xº›ò¤ô±¹“­–öQÍ|J#ð™>qö×ÇvŠ•Ø$vØAPà2>S
+h]ÒW‘˜4&¢³ wŸ't,hËdtÅ) (ÕßéiLñ°ÒT{žØ8*Çg=ë4IíÜD¾ôëN\ «¥Ptâ^,ÖÑ•û!Ñ—,ÙLh“ì8ðø«ÁÏã©âðTo¡æ£S·j488Búœ€Bcñ ^˜Ú$°ñõŠ9ýïÈá¥wãÌŠ°¼¬múîå6Ÿ"}AfÙCCÛÐÈ×z½8—†;»DåüWÙ_¤}$‹«Ètþäe‚øëT˜zj3SðI‹O&4 ª!SÆ÷÷¾hÈÙíŒRåÌ&Ä1 IÏå±±G©ÒŸôé;ã-Õç¿ùdVREÜ»ìÊw¯».nxÚHFûRã2d'‰Ë9·ý|ÝôÖúJ®<©´RoYCLC:úT9m‡)ðÃZ`nÿÇ6OJ ‰ë½Uõ.[fH3ï¤W,“¹»'ÜE•¯e{•”6¤þ„lìB£Ó^ÐQÙ¹VÞm_I\Ô®+m¼waÃðã<ÿ\¼Â{F×ÊùTïìðõDï,±³ùÐHÃl¾^9>ãÒïLq¬òÑÜ8[ÿÏ1P:p„”Ú*>,7ì‰Lÿ}jþ1Èè$Ñ®Ûq,4ÄÉýXÀw4zE¢ÜÔ‚=këU αäyÚtJµÚ†šB}±iº[^Q ¬,2W.Ê 4C ¿šêÝ z¿+¬oÍÖ·ç‚XÙ¹ðÔLºAZÈ `ÿ»9¡ø’šXZ{NðvNªR ìcf`)ð~$
+bÏ·ZZaÕ3ƒ×ïÒþí}šò'Šì©.¡žWÙ½ÚÜD¬|áò!ùû
+åÍ@M¯aÌñò»M I‰˜+ŽË‚„ÒÐκ½'¾ï,˜Ž1¤æˆîwÕÕ"ÚH&Ù!Õ1ðI~DÕ-;þnÞ{hTDòåšáŸµïc­Ž{ônþ繚‡[Y2µÐLÏâRãli€@)—:Íãxµ&ÏBœYïý¤²ÈøT²}å?^Wv„°3ÅhéEð(mîÔlBÄmK%¡èhbNÒj#-Ønçpà'Žåmó1Ž÷BE©›Ù_ü}D"ó-‘ßô»Y{á¯uµ¼Î3EJùÞ '‚ð™mÑŸþ/(2;c¡ŸG´(”Æòt“êpèšÿãô’†Ùj?CÕ8?F\Ünº`îV®j5* :µÝ37ëÿÐr&§Þýk±µêñ˪¶1\‡•C'vÂè"=—èœ×För× ø>¦ÑëŽ4'†ÐW<œ5ÜÁð¨\”ÑÓ¯ýȽ2<i!ÖIÌd'/L2R°•cñf"<ij{&[¼ĵDØA™¸´kl]’Õ
+ÑêÙè¿Ù‘ˆõËŠã¤ìžÈý”yà5âHlدÏM€$|?
+endstream
+endobj
+3166 0 obj
+<<
+/Type /FontDescriptor
+/FontName /LKWVSN+LMRoman5-Bold
+/Flags 4
+/FontBBox [-630 -325 2006 1163]
+/Ascent 690
+/CapHeight 690
+/Descent -194
+/ItalicAngle 0
+/StemV 133
+/XHeight 444
+/CharSet (/A/B/J/K/L/M/R/S/T/a/b/d/e/g/h/i/m/n/o/period/r/s/t/u/y)
+/FontFile 3165 0 R
+>>
+endobj
+3167 0 obj
+<<
+/Length1 2045
+/Length2 25616
+/Length3 0
+/Length 26858
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸eT\]¶5Œ»w
+ww nÁÝÂ]‚;ÁÝ Npww‡àîî$¸äé{oº{¼¿Q£êÔ\6çY{í}F9±‚2½‰PÜÎÖ™ž™‰ #«dgchËM/lgm`a`bbƒ#'q:[ØÙŠ:y
+P ª,¦¤ P’WUP¦fø(¬ìbooçø?ZD”UT%è
+ÐöC¿@NåÃÿ‡ç#ðOº¬˜ŠŠ¦‚3ãŸ{
+'ƒ
+åQ\ùz±¬>¿R}ªSó /°ð—ÚÒ•˜=ÞKӱʻÎ,ì ;˜þåÃ6tÊ/¢}ù;P½²Y G‡îÊd“0âpl¾€—WH1t^ÜO g*:ºî}ú¶Téb„B£Nm¢8œÔm¤0Mõqˆ—•%rÐÍ´ÑÒ•PoÖ_WÓBExšosï,Ò­;…~¯òQJ&â¯09>=«Am˜A@îÔÉW2$±ÍÁ»Ã¦îB J“ê÷.õ˜}ö3ÛNA<
+ìdäz{B`Th?|aØ,Ù¯Ctyæ!ÿÆ_W ö¼ÊÂ&hêû9ØÐm~¥üG€§ÄPÒdyTA[ûy[l$Š¨(~µIÄrm°§|h<Â[$ø:‚R­3–ª^Ì£êe^ € ¢¨xÍЊýp]ùlröìêånlÁ8±*—¢ÉÏ™˜‹U"Hd ¾@÷ÌSýY’qRvÕ×l·¯¢þ‡Š7.ýÝØÏ • x’w%Ë-Ä: 9´¡Íåe±ÌmT‰ F¥Æ¾ŸÍ…‚Ov±ÆIh)
+$gÌókÄ ÇŧëÑ“F,TŒqLÄY8K¸×œÏ1=y\Æ_ªj›Ýî‘) E %@HbÞ+œÝ½G9a†`[å3ÕHéŠô£büúË2'ÒAØÓ<¼Fà×¼-«œqH¬«Âѧâ$ò¤ Â…¤÷û?Vîg×Ç7Þh„CØT='ýɱ$µ¯×Ô~iŽÊfËìœN®²ƒiÓò”e{E[4y šQtCG™ð&Ëm3ƾ·‰Àzë…]S'èÈ«¼x©/Ä‘h±¯ÇñÙ²!·8(«ˆå]T]Z%gøq½ ɳoÕ!ïáo#ŽuÝ-Á*ALŽ… U@DP=Ð86´¡0^Àöêe¾ºùözvéž÷Q¢w»/É/jíõL-šþTV`öNþyq…Ô˜üÓû+-V:xT`Ókv!úÝ/«_QòñD ÕSûi¢Ë{÷uµO´—°¤¨ºÁ3ÇŽµ11³ ¨­î”¯Œeš¼ü`PVîð«¾ã]/š…Ã}ͯ˷æU©N#á±<JH:^Û]¹$k¸ˆü^#nö7ÚôƒR0·IþÆ!! —OI!G—Sâ}tIÝ+˸3«ÛòÇçüM%®mØNFϦ¤0Õn5ñD6;ih3W•ò6Ízd߇ü3ùŠc;06
+¹1PèJ78j°¾ïcØÌ
+;ö­,Ø_ƒ"qr v§­rI“ã[œ §Ð&9
+T—O§ /mÀ» õÃÜqÞ¸©±CLšµÍfXJÒ=ÁöxŠ8m­Ìýû1ÈTk eYO`9á–iý½ØĶP«Ú'‡|»ÁÕ‰n)½8ëm—x†¡:mßùýs9¯Dzk¹POPÕÔW æ°ã0¹Š´>yð}³>6BcÒu†©­5Žãg15¨<¨ÞÛfGOàdßžYø‘öÞï’J)°)òäòˆ‹”¤”b6EÀ*üÛl‡X!îsYÂPµ{}ëKâúÕØê]gÛ8YöÑó[š»¤c«GE®V¹;l„W¯\¦ÃwD¥mn©^ràdöÛ¼>+ŸfÉ£&8!¿»HB@sšmî×.d3h?y¾fã@¦›k:ìʶӽË“•Ç¿Ç²Òw „ž ºx+õ _Gˆæ$£T­õdú
+si±Qš#isûjìJôå«Êðk_랼Ўâ2\¹×Yô¯Ò(¡ß†tÃÏ4çk¡†“øÀ2/†=’ЬÕT ø&˜ƒhÖ†Ä,
+{õ™˜÷ןлdUìñ ¾ œqY¿b{zI´ N(bïM¾ÅtC%¶&øv×/4ð*·åPÏé"Ù°“ ¾|s"Eƒ­ÑôŠ2ï‡Ú[Vu«(iE •aVV‘ì…›ÖÔ…H¬î1¦zH£A yÞµŸ*ROAsÒÏwp6Fpqþt}xdtTBðSRªnëhÎ’)¶ž
+´Ò#eu¸WäKÉTàC!'éýþ½ÂåJ†Uyþ}æ¯:[‘D^® ¸™ÛP&7]h;ÍÈáD¼Â*¾ É\6i ¢ž«Ÿ®`+Zï3¢M ûì¨Å°
+ƒ…uÀ!¥åúzž_€þ “že9kžá€=ˆ”¿ "íç‚Èé-ÖQ§9½¡Ï.JQF¢"E«ÅÂü{“ËMk7šç[6Oö\Š}¡›õ|›Y‡Áà‘tv^D{j–ö±þBjûôâxu÷ÜaT¾Á31©4¸'‡Í¸½•…ëœ$ÎæÅäÃ*ò÷0rNDVÛ£/‡}ô¸Ì‘ehòFÖ2Á8J&ÄM_ñÏ…HkĘgã”iª²¹ê—u7GSkVY
+,åˆóÏj-GNí\$ømï=a©—ãÅkë¯f†Œ0‘ÈÈ^ÛÕÍÁN®8ÉÒàcÕ k0ƒ˜½ùxLÀ[ŠÌÖãÕ è"úà_Ä2)È6òµšÂ’O‡,°·7zªk‹5H13á(4í-ÚÚ¢&½£‹FOÈ~ÃÁ9b™>.~Í~€„'\})7¹[¡n™9c½ÃnåxYayíN©‰{fÉ·Û‡3jÃ…JHÒõºâ]cÑÓ:Ìj©Ï>ë$9ŸúÉêÕŠ"§ÙþÛzb=€œÓçàwmKgS2}ªÎÿbO&v‡=y¶&V¼lãÍw×ݹ`ô1ëw­2y„ÕM~±š‰‹`E;ô©Ü±.;ßÆŒ^å=³QaŠE¸ßm+;°ÑEçm\ËÛòy—Ý“2–-hLzÞ¾H4X`éÄ^#6 n *Ò~ù]îm!„IüJî"Sû+­¥T^Å CyGÉÉj…£YšŽcy70Ú¢€Æræg¾ÃäÃèÞ†‰€põ/©eÿý•›4ØBî Üþ©„Êäk õ"1az¼‰G!ºe«ä›ZæRÇhŽNrñ3-½¨ o8R¢-XÈ É!—]‘Alö¾{|=+Q¡|ÜMnÃÅW=‘T‘™NÛf%é¤F fêç@·,½B%
+e}G2Š»é¥ Š5An,Ãí5± ÎÊvn[&n<F_Ø!Ñ Éf0è3Ø“ µâC2ºýNK
+å7Õ)£¦àv>SÅÆÅ]®h»ali“¦ý¯Ë-ØPd<:ݤ‡¬öÚ)³wÃé­]RçÅù©äÒ<¿ìÀ—±.‡ÛêPøEܲD´Ä´R¬øIÄO”«ÅxŠyj€­Ë|,®ø¾Z]·ƒfþlYÍ)ÞÆ ðÒW3i¹f«Ž¢tCº™´ÀësŸ(A‰W*¹IòF2ä0Ôƒæ•H'ß}t{}NFôcm’¥×íiílã'T·0“8{sú3剡®_ܾšõp×’'BuYÈ‚ó™´5·‡˜³pjâw{E6‘ë~ž|[ÝúÖ¹KøʈrÃf­Ò¿4éB,'%÷òîÉ5öÝË>æ§g”)NL‡Dq´Û̺}ш2#í·ZÁ”.>+·-ÛHu¾ÀˆQBæRøÕm¾Ï`ØÒ¾
+bä1Ð_úC`2îËI§¬ì9SxoFe7 ÉOj膩o§ÌÒ›­ ÐLø ?§‚\ZöˆR¿¶YHPr8ZÝ]<d¤4áÔH“ ôåŒIÔUhü<l6
+<•^#Y´3Ôã¸2~zÔ!f²EÑÈÊ‚¦rÝsp>QÚ{Sð7çA,jQchÈŸhv…ùRÐv&{oÂâb¯µê’<µc¢^Õ“%Ö7"onI§“Œ^0oždÌ€Þ\s‡ÐvC9|pcÂ㸒ÓÜ>'|'C1™[ê¯ëÔw„«; FÒA¹×Ù 9îVji7‰¤s½Q¼e[~»ÂÛ`ÚÛáÓCòñ³ûd!(‚J•U®zgâÇ¿8ç\°Õwà!Ž+•@H¢Æ‘6G “aˆß¿ëž4{Ñ1ûET€‚WèG-40i‚Æ»´D.f*—ùê»çê‰wy4»<þIÆ×idu<=H»€Ûý k%Äg©‡‘Ò~&õ«[Q¶ÙãQ­×&²ëF#RBù0¾¸Rå#Ôw•zž6ΔhÞª?Ç GÏÒ!pHŸÛ¦Oy!ZÁß°yG&ÐÉŽ¬`‚ìbéæ@¦ï3Ðe-ù¶Ïñ…r„5¬½u¯¡:À *Ïk-1µï•â.lþו,‘M¨Ãƒ °Â×MØp728OQ*Ÿ½\æá:Ý^4êŸuä·…ýzÚY( cîÆãY¤Z Y‚šôQ{¯–—z"„ó%gü‰¼³ãL>SIM ¾ÌüIxÓ)СœÈyô4~,7*×ëj¯*[›<”i
+¢µhëZ Ö~[Œ
+#A$²Džë(®€ÿ#å­0·e6ò»ùG®~3Ýx|o®ÙŽ—™K.VS#tg©×£?ãJËI>]2d”~#= /[5QhìÀÞð÷(XrCìê`ï¼ò'îÇ» ÿAèõ^a{‡N2¤ôð#Φõ£4.ˆÊ'ìý!'R¼ =ˆµXË%e§ÀÐltB«;g*ÚÅ›­‰²7œ|im‚%)-õ9€ßOÙKc¡—0|ª‘û¢‘šzÐö(¡,G”
+Ú”¨-¥´S®_êåÓ¹Û›Ñü™®"—*´/ìâÔR
+îDHÙ/@¹ä'¥ñ'@×ôS©Ç¡ì:È“%K½hº%v8ÒJHš'n‚bÉýŒæÙô§¼za_͘•k7—Ä.#Ï~‰’ Uq¶ñ÷ڒÙ@¤’Œ:¤äÈžÔqoŹ=R­ˆ £`ùžN—Dß…û’¹Ù £ŽÎR&oÆ®c[‡È5†däy™
+
+ãJ¢²Ð:J1"Çæ/äFòLlZÒ Å “{†V!øOããk×oò*C—¦ý ÛŠåÍÄCÒ{¹YÁ$é/ͳœ$)iw@;Ïæ'÷q¥Š;E÷ÒáxñÊAìÑî¼òIðçI¨7˜Êê„$Ä_$VPÞóìê0#¾å¼Íš¨„Õ32Ìð0¹Ž<:dñ­vò÷ Ž¢ÌxT>äÇ'Æë± ãP#Æ ã,*¶ á6<÷٬ШËÖØüF!4yXÃXÒY¡õ ¯Ê”„~֓˘è„S¿µDU‡ !ÞôW
+ædá ¿Sbï=Êxë-ГõÄpJ"ljú³IA
+xï§Ó<ñì×ÐóívnOº$÷Ã/Bùú3æ4_¼«ß7YÁÍ{±R[E×hT ZMÚÙ“¾Š¤ã\ÖþJÃDúìp(^e—x™1£ˆòY¿ùPûÈvgô4äæ¿Š§{¢RB~!ùð×113&©hU5¹VÜ»‡è]ä¨<õæ%Àl@ŒÍóöÚhü/w¿+5e¹2“óx=ǵZ«g)±ã,¤-y"¥ÅîÒ¡Ÿ×ôñÆÃäø’‚t+Í (Cõ&ã{Cýhƒ8!tÞsB}"zý¼r+g›|ì8§°%>uFBÙ
+Î;—¤“*Π4y]®Û6xà!A|³ßi.ÏÒÍœ@–R.Ä„5híÔbÏôŽÖ3¡•WêvÇÒŽºèéß6U<Íó‰úÄs%u߭ͪZb:ÖÏVB8‹¥+¨™JCá¿ñOeÕ Wÿ¾b£IshÓˆÞœzH€T¡ Âæ J.1õa§»­íìòe*„©I¼È)6bfôÆ 7Ýî‚‘ (¸xGMC;|ª S1›ÁrõžâìÑ—ÓÑd9î8ΆäðÈ`}ZÅQ`O´¶e3±u
+/o©PjŸšBY—v &ÝM®bU}dQõc¬¤Åü¾½;‘<VÞ†–Y6+æ²NòUOª5ËiøäÌ/ÝoJ®»èÒútuð±Ý9‡Ô
+Ø…ÉËÅ4¶)¥E
+5~wŸÿhÚ±Ú­à£'•/sà"Â!dDYèXPk5oœ
+7ZóÄ•ëÇ°Ãqô£5ã8jLB¬ÜœÂi>°¯ÆL%…Ûðb÷]®e¬h]!“”'`›ÍÚP_©(›áÆò1憗€ôåØŒ ÐyÝ3¬ ?›õ·Ù°Õ±¶½ñjšÙÿ7‚¿±Æ ¯®"ãØ"Ÿ¶à3\ŠjþÚ0ˈ44c·H¡ê·ól»ØЩnȈž¿Œ®»)®œõÂMò=ÆÃh@]Ôã5Ià5 SúùŸ°ê§‹™ &èRÌÕð®
+Ÿ“Zˆ Ê:Ï‚Zâç´(üZÙRF ©jèfN1ú)Ú~ÂærÖ #u€àJñÓóEÝÑã3ÓôÝíº¿E2uQ ö›Þú*?­hÔÕ
+n’¹«°UÅmá!ª{d)žÌ,ç Ögý,îÿZÙAš¤¶
+]xìÿi§ê†²÷eºN|ýk2‘ðÎuÇó•j\­ê•d>œAj[Ò”oítN ®øΉ:•æïÈ/ *‹f¥´:3xÁS8F‰oXŸ ÜõUË>u´¸”Ö¿
+¤}&‡©Œ¥ O?ÕD|ñå:û–ÎãÀk²Ë8ð˜UK±w”,áE¼ÌÉ í0Ôéž‘-©AY†ÂJû Ùp‘;qâ­+õó©H1øpÏØ”ÈLHö*?ë$2 ßeÞÌ5,6&fú½à6µ½à
+ø*¦_ˆÐï¹q¨#ö_»D¢z²¹wúïÐ÷Ó¹u RIç¯(–YÐà·Û&ymÂöS'Þ40¨¡yôB•T‚xb™à%:ÌÆ"°â'AfÊ@ú‡õż;U"Y’d œS@°$$>/ Çt}^R/(ÚçeyjŽµ Œj
+¶r5kðtñcÎâ= .ñhI¢œë×΄Ñç6ª™]Fˆ¼0P;N|aÓwÑUŽGÀ@"•åÑa)<|Š_ê
+ºAcüÒ›m}b$FmIøfbË +è*Þ2 A\Xé0DhåšÜØ OùV³ü”hÃb]­0îâW90š_2ü\‚Šä(DNÁ–¡-+°osL^F×ñ~(XúÝpcf{èùlGpuz-b7Ð-ùŽ©Cjgyzú3_ÃFo˜ iü‹¦OËL´¯Ù(Í-° X½ö¹:!Ï_•ù„ Õ¬/ÑZ0mš q^ÐÃüÿ&}&Xî©%+!a…®jO»ñ.
+¼NëèøJ©¡q¾ŒÜÈzI¢Ío«ë¦EÛ΄áRÂÙ±s·ó+Í›IÓä+Eã±x6Äão}?aÉ ªpÉ· Èåz©Õ§Ø~láèß#úpÃdñ†T†¾yV/¹|²_Ùp…‘ùoðˆ•LÃWʳãxI$w˜ª
+úœ ¹å›Þ¼˜>þÒh†å,¶Á”»¨ü.«Dºø¸­;0†úº «á¿Ú`55-NY(}¬“öSGúäœ×ï Õ«Ð(O>wé*Äð–ö6ú/‚*Oà”ñíE4g|k©®û¤RO»J|oç×<´õÛ¥KÆÿíㇼ&Æç@ 1Ôîíñ(OZjœ-Ëæ‘Œ¥nxþ„¡N Açoβ*äÄÌâ)å ";Z|LæÅ<ŠìjSÊš?ãÓ ŽŠ¼¥!UVÔ}95Kg>;‰á'»¢d0y¤ª,Js­ù…_}?ÿÅh#\¡Ç¢˜rÁ°°réìü²i– o¾ClyÝ
+ö'}tn‚ùm;¼ËÉwtG¤x7={´³œ`t¦Nµ‚¦eó4 ¹f"]¤ßƒ9k_eu˜XqÖÀ„yÓ4†ø™¬KàbR‡_†'hí P×\E:8Dù{¶§+`<D ö÷v³ ƒÍ²òÓš`paD×PTuɈbQx—c$×>I½¾t‚uªŒ~Ty(¿Üñë¡‹’²MÍïlø%5= ’„Ý
+Kñ?~[ø
+Ïí‹ô8­¾Àb·›B­XQ—AÄ^Àh¿'I›yªöÕ Ùô7ÕƒÖ •Oqa‰M°"¨stáý¨ò0£>ù}Mû`žÈÓ·¤ï¡Ãu]gßšŸ$°ÏãÁ;ùÉ{ŒUÈõ;rÙ€ä ¬/òòUJøâé#*"ÜÂ÷ Ì
+%¨N»ÆÌoN;A§Âˆ¨ã÷B/”ä¾€=DEtœ$â~ üêÖRÙý
+<ät¦çdMäÊ38neù©U·±ª æÑ­å#Y¦Xž8ÖùÚ¸#sCùÈ#°¢9 ëÛn×
+kS%\®GņÉÚ³_òkHwÈ×T •·ZpwG8c!¤ÏàÛ»Ïz…½¿;õe<*ĉ~_üF|Ld`H„ÈÞ˜!T­§µùòËv–õ‡ô â"uÏ·à7{%ÞÁkßßâP@B·p‡êq"s2Ä£5 úínÑJsû ‡—‹eâCÊ‹UüÂBqdmæÒI|œ^|¾Ûsðùùy¬xCw ònë¹ { ú„hÚœË7 –†óï'ñ þ(¬‚«zõ‰jzÃä*¬½W#ªT§rŒÝKD´?òz^¯‡¹´œ< 1<õpF•x«Dun;$DîÌ…ºW°‚C@LÊ* Tχ™Y¡AÁ;pzH¹~©èÞf|„ÔH[(nj>¿_Ý'kÿ¾Ú+TW ¥…aPÓ»Üz¢3/œ4pXF¬1#µÃ1)²®«Oê‹d’ØÅñkåØKÿÛ©îòYÏ©^!j)BMIµš C'eZ*L­ÆöÕŠvððŒëš,(Ç(CÊÉvkÓÕƒÆû§ºØaþ]‹þÈtß­¨†C”ñ VÊšk4žfHl ½ÅJ~<ržiòf
+çªT^Òý.C$@ L÷™¾ÈZ|]zíDK€¯âVhËaö`CÁD¨®hgK«k
+ÃÌÌ–Ž}ín Ç íd!Â=[³lõܬF"ü<ŸŸrîèÅŸ0 ="÷;<í¤P—ºB<$=Éiub<G)¬[OSP»$X<칸møŠ­ÎÞÀä!xÉH¬VƒÄ¹zJ«;¬ä8íЭ2|3‡Š0&e«
+UcØ"ü€œ°qú+˜Ä®u²‚#‹_o‹¦&`*ÚÙ†L!-˜ìHÖŽ2 k‰sEà¼f»•70¦¶§>e³s²û½8^$prÖŠå|?y-uý¥QJ^‡AkD«ÚÆúxÁ<d˜)öæu ÝÀRìbHøÂ×GÔaG+
+=<¨@|‰lwbm½Ö˜M©B•X"q= 1DÆ7Q_ÞEÚncåö'Â9¼i
+ÚôÂ̲¹®Jñb]1UU²âµ°{ÖP&dñ<èöoí8¾×²«’‰ÂÝfÛEn„ °ŸÖ‚ÎæZŒgŽÉð‘[Â{£wûîP¾bó»Ë‚2¨Æ _%Ýk¨D¥OçÙãÏùT$ÙœÏu×T+³¼Íþöº™·eèDˆ3·1fîHEÑvÈæÛð¯{ Nó‘5s*doÔT\ã°ûú
+±Œ3Í£BX;².7A ´ç>#²RÉåªÍ™ó±|’-¼¾éVè|Âj#‡ßÖz±dto~!Í?x›ÙüÙ1)›@%q,šOeé3ª^B.à·Ï& ¿„\ÿþÛªéÑÊc!~zŒÚ ˜øMàŒG¢’|jÇcÔÅŒvô÷<dî¼Ù¢!ISYÄë•êñDÆPOäjÑÿǯ\™ÚÈ[M%I#¤>Ñ¿b¹á$¯v3ªvü´Í­=À‡ÔYçåÊÅËb-«t$ 1æ ºÈ,3Uõ}߀s%RÒ"V2Ú‘H­n(px$—Ê8”ÙTnŒU
+rûÆ5¥\ú3²ÆAM×4=vÁƾI]×,6d‹<ΗÄjïL,ÅÖÉ nV@ÏF †2æè'»•¶‹µZ¼k¤“³•¤XOŲåŠÚ¯yÂJñ >¬.”&‚
+ž¹öHÍ 8Ð7$ýÏCç¶@Áù<j¯5m¢ógµºß#ámÃq²ð’
+ܬöƳ•A_*cVɵšÅ)-@¯ÉO®²Øê-°"}ço%#œ#]ˆˆ'Y¢±–±b;/æH“6ÃÌP<šRù²»é0zÓ•S`pÈiÅbA?}ßÞY³9ÓGwÃ)³Ü]í‡À<$!‰é1ÿ­ý ¸ÓØL¥áUþù#ªâhVx•»éY2ˆ lÿÆoñWyÝMÒuÐewxþ5Šé`ÃÎ'úþ%Ä1>³û¼¥áçnÅ£YÂÄðÈt¶OJpQM‘ó®i½ò›_§0´Õ~VSÜH–*M‡%“ü,;në‘.2†ßÛ`²žÏFi)L”<¹äj5‹j2»3‹3# w]%'`
+AL~
+ß4¬›‡P_ßUšüÎê³Bv3hZܽ:½8k`æõuY–cŒ¡€~ÛnP(¤eÂä¾³ºh”rGsv¥Ê'Ș¦Z3 \â±ú›jJ¢ãç½'1‰'¾•` WqNcÜmµa#¥AÅÈèQ!>ÅÂènh}>È":ˆ©¶ëÐèRcu\…ÿéèÅy²;f}À|æÃ"DOF‰—ÿ$̪²Spn4Ñû=.ò§{$Ó
+T¡
+†ðùú
+ƒ|ž²Å+Xq»õlž¢Ä•$Æ`P½ Z¾`¸<³¡{'ì0G-
+çt˜ùIk€?gŽ ²1«øÍØ0p<Àríy+˜œcGÐJUÊïDÔ—Â$¿ÞXÒH—;Uð!/AôÇùÓQÇßóc>´7vábjøv8Ü|¡IëBïkˆÚD~V˜C›Œ
+–à–è€à¨Ú·‘Q(\(DÂQ+>ôOÆAb#fJó"©œt/Hÿ+S]Ü?½}7… ¤áÇ«•ùªØèWp‚—ø}’ÏËM(›Ì%SŽCäJqÍ’p´Œ‘K'Ù£Rxˆ bÈF»WÇð$ˆ¾P÷}õã—oÈ__¢ÅeŠk¾(• a.‘¼3zµÔ‚†®æ³€¡Kðoh¹ólåq£×Ú\8æaMÞ¬ßkœDîƒÿÈ^nÒrÄ ï¨ãlé¶hýöb
+6üœüÕ”w‰|ÁTg–´óo£ï¡éºç§ñ4pݘ4¹‚G 
+ƒ¨qe3Xã]ñ{DknnòÕR‘X\ïB½Ý\êðˆ†\ Dˆ€ —•†:[ëƒØe6é1ìÏ .)··øJæçúz/Ÿ“Ãj¼éËÑy5Vrg’ƒ_Í@Boë½ úDÊ‘¨‰³)Y‰{:ÉÀ¦&±rI˜@àÓRØ…,í½Í$W”¢}À¬ 'ç}xkx‚žç›Í¦-£Ú¥4QÓcÄ©?7¬{‰_ÂÆöÖ›§âãû Õs¥@ââÆüz˶æaCSØÁ¨ž×])<;(Fæ¹Ó:¦‰ 3çŸø<ppfžy¡ö´H\ߎŒn W*ØÎÌ÷¥2¼üK[µø§m‚úÀ¨e/óðH}ˆÂ&d¥°]Xëë‚ó§ù„4œ³_ÕïAžvºÐÑŸ¶1æ1ç§<õFªê=ór ,À™¾x¶3G±NO0A9³xÉGaIý¤´küú{ãu ùÖOG^ ÒÀF?/šKë8ab¼ÿºåÍÃhB!šŽ&â¼9Í2¹—Ð-£ªåC"–Ç!‘î!î'„ ‹„~ý.©_3{†qBý÷¬<w³U2ÍQâ$ó©÷‘11<ÉÈ¡²¯çhªÊè5Íkèu¤±ßèØDc·L¿”¸æQë°Pü–6™–F©<h!îÆLTƒÁHðvìß­âˆÜ@„,
+Ÿ€ü’ç|¬œú¡í½ÖÀ™b«(N¼AU?Ñã½2E>Á%ûD<ìÒÞ…l
+ÓEIG½ṉ¸•·R!Ø;;
+?Å_ÛöÞíÖIÌ•?l·-õ»±¥ìi£øA‹ë®Ia‚
+ëxÈýšH¨ÁÑÕȇmý·müÔ,4Ê©ŠG*@ùPtBË%“—«5™~›ÔÝÓvxæ´9ÓŽý
+§4»TÖ…º¥ÌgKK.{M½|tÖ 4uç=0]ò&a²õ||£$bè¨4ÄxL½zíkïßO¢s &\{Í{:ðàÃCÔN
+mÁ
+k̹ý>ÜaÉ3¶èÔS…½/F‘v½\JÕ
+6XÌïâ˜[Â¥®€x›Ä}d¤¥Z‰šËf¤¬…Ôã„›Ð9ÆÛWÆíBwšï9ùJð³Yã‡äö¼Ÿsj+„’oÓ”ŸQçß3
+ÜÎ$öx{@÷W~bSRÕ 54¾ezm²j
+OöÝ ØH0N6Œß*úVàÀΆ‚بO¡:èñÆKñ6‚´÷Ã%9M;ñ`µ3Ìxý‡´O“رAÒ¾IØ´0p€« v¹£Z‹ØÉ CgÌ`DÏÆ÷²Aü: .Ö÷ï'Ã~°y<²œTÊ>“þ‚wŒÀÆqfËîo]‹»±ï©u®ºE¿\R•&ŽGV7Vž± Fü#5+YY‘·—‡æ4ë»H«.´ú·Ñ{WòÙ¡ ‘¶;!#µ aÒöWŸÞš"Ã
+¸Ö†T2™náȺÿû@¹ž—ßP$»Òÿw°–älvÓõ³faq/…vÿñwº …)Ú:®,=èBD9T´ánNüjO]iuðÕS>â/o Ý %LaªN¬DOíð?ÃÁ>Ü¿Âl±#'&çÿ>]Ôf<wä4xƒÔk$*$®>¢U ÀN½ýúuë‹^®½åbj¸ äÌE©cè%{_È0s#)§$
+¿÷¯ŒñN œúkðØšp³ØiÛ'øÛöý=:ÅØ)¥†Ñׇ=0}Ü=AÞŸ  F{Hç:ª? *ú€¹W Ùdz"¦btƒ÷@—é#ãÃÊZžŠ •Ë˜¯lYÞ4À+3sïƒZ~^ƒ¸"Âo¯DQ.Öç:TùAË¿¨Fß=}—Œ¦ƒ‰4¿pjJ3¶`U–‹±ðž“˜óÀI¼
+P*/£‹T׈UùäðŠâï
+ JŠyÝp}»‹6hñ™­EŸioá½ƃ¶4@¯ðˆºÀ§b’Úç­¡ãzê 6%P¾DoÀÑeôEIÍc¬´I‚ilDK°F£>AöÙWä›C^\K" nŸi±£÷lÆŠZ‹'d´¿1­1dÝVðåz@g‰Öéïc­Ž´V¼Â¤8*–ßCvt,÷ušï‰ÍvááâNŽZ†˜¹?Õ˯®Csgš
+#Ažymž/_9iÞ¾yîóJ[ͺD£><öüËÍ/w£n°0¾ðÞ‹k£¯…ªýÏ\3ôs¿Â`Û_áþ=0vY¥››;â¤0#ÈŸ‘³@AÆöOF²FÝÜ÷9ïQ ò‚9—*Ç¢7Ó s(cû†- ÑÏXk0}F×KàÌ9ún®ýeÿC£tuëÆP0jíëKHzh3R¤¯¬J`Ân”Wǧ.þÄó”n=¨ÜßG2R27ö±ç[×-eÅ…¤ö bBúŠRuÛ_œ¡pBøÓ<v–7|™å5b’QÚþÆŠž19°ÎÎA&X¹“&[Ã'd1A J3B᱃Ž\´n»Ú7ÏÛøçƒ6Å`Wmá îèßm£ÂÍ+KÄÅM꟎o¥Û”I:}&0dL-tv‘].]´ò‘á.úõNòµPKI€Ò@Èn 7iSû?=Œ/WS=“©.1P´¬=,þëmܯÎh)Qdsg²:óL¡«§O9•bܪ
+§ú1Á›ã}Ù?”H†'`鞦­=†4ÛêãòíSþy?b]~ˆ×_C´9 ã-[f¸±M7é%Hå™×ä›y8¯¶n=‘G›ü˜± G2"}'*ÖßZ¬¼êøØ(öˆk_µ’ m…qr—'ö~‚ø9¢Œï÷B}
+d¶ó1¥_+³Ì¼)"öúŽò©ÀYÃ7ÕÔ25+ üÈúiÀÂ-¿ºA¾Ã¨ƒû{ÖatëØ~ÁŽÆPqáÝèäŽxê•5ï‹/øäëì©í–_pl:Œ{-Ù‚?ùÂz×rWßµÊh%û)ñ× dÂû=[æÀeáºT…¾=ÎÉñø'’£Õóáu6–…•m£É Ã9B
+k¾
+èàõKõyŸå…줤ùÙ¥4R`Vsf‰óÛªhŽ[‹#ì<h­!Ê1ƒ-¸É3ÒxÖ•ºîÓ¹#VG9x}`£ãCB„ÿ¤Ž3{ç¥ÛÏi«]2‚6bšðs®Š[»ÃtÑ£ªT5
+×àD²gêå•çœM„Ú˜R—e¼ÀØÿý¾<´<ž.™ŽS[…e
+fÿ9
+óؽ¹œe&r4é:Ø«)í‹’…r£ÍFì´?æ4¤µ=€¾ëÈ‘þ*jëcä(洴ņ62­³ß·¬Eøäå^ràbã’JˆÊôŸÍ·wš/l²ß°~ص€~˜™(0ÇÎÅ´(ëd¬e¦&6Ú\.ˆ»ïXA—~Ÿb>ÿ®4óÜÀð½)å&
+†¬‡Ô:3š‘)êãà íÀ†¦ö ¸D†Uƒ ž• (Ñ8Ó¾Ü=5¥2Rík˜“Šß#'Ázg³˜3²Ð•Iu6n­¨"˜üÕuTƒÀ^óÀ33Ôðó]R]/Ë5™ äî)´jë?L÷¶Le!~×?K©¸óqØík{ΖEe/7Úͼ½–<
+‰e„xƒxø²©ñïº4«Ùò‘®î¿*gâ=² ¤ lï%¶a±$uÛµ@¨°¯ˆ™QFMb´Üµ…dxrDG“rr‹aÁ’a ³E}h ç5ƽ‹5ÎÁ¸*𥈃Û…ÇÎ
+—´
+þîÅ4®wg~+#>r€é¦ ‰!ûîšèÉ(¥k;©nn>E)|Ž‰‰¢ƒo­ˆH­é¼dÕÄm0ªÂ®O~Ä#Ì£IpüÊŽÀÑ8vOZJê¤ïæê…“é6ªÉ"¤j”¦ÛÝëµ½ñl—ìz“vⵉuéÔ²KBì(Oßµn©:&®|SÓ½ "YÓï·NˆÔÜðÏ?²$ŽLªÔŽѽæOð ´AÒ)É0Î2iZãHôö˜ù0 uIÊ6Fª½µÂ±ƒÆ§ª,ä¦Äe§ç{® FKó‹÷ ÒBŒLÒà2럲–Aä^QÈ‚áä]¡Óª~(ý£žÒ€BS/¥™¦‰€R•çÌ,ÂÚdøÿ§í÷¾â^Ûì=_"ˆÊ•£‘£`
+–§šÇ7§žÈ˜¨5 ˜þvcù‹`Ǥš-¥‹ÍÞky­ÔuñÚböä‚é'“DWÞˆñÒÏõÃÓͼ³¥Ãáv–¦`©·t?"IBü%¢ Fåìcg ü´^jٛŻz»g]Mí)Ä Ö¿
+@}uÊ›ÕJ^u önPkANŠ·â½çÔ9#N®mã]¹M1¢!f¿¤€>œi¥…ì8Gur¹ÿJïë·>ót!¥g"’0¨i ®:%²Œ½8ÊÞÔ-ó¬ùÎLJµ=¯#œyxH|A_5¬¯•½¼\Ëø‡þ‰,vWVòä€4;I~% ®ì¤bÛ5Åà¨bY.Ýv'¬ÄÝ.´}¨ö†ûò›^}åDꛆ¨ÿ³/@…Å Ý­ ÌÌØk
+A¾ö¤·¤Ÿ¾Ó fáŒb›µO…„‰•‰ÈÚíP×qv¼eЭ¾õýk´aÙçÇ•²6ú¡ ï>ýÀ,ï^(ÃOŠ7ö[Ê%¥D¤±EYãH·z©¦ó(²æ\—p!sÚŪ]ø{Ÿ¿k7×Ù­.+¨»~“ÃX¸¾äèJd-Å3Æm®MöqA¨Íñnïfrã²Ç”û¸‚Äë–à ¯9k’V(¹R¦wþݽÃvíC Œ°0˜´ÿ>˜3„’;Fü8µZzü³f9C«
+h¥×?nŸûµˆ9f{r—uxkG•Y`¾<螣îÉr¥æ|'GyŒ'\ ªÔ`˜?ØK}Ý>3 w‡æËL´Yõèž„6Òúûºæ
+“¤¥0˜ðý”$z(˜¡0õ= m.z ô0
+æFpÑÛôûÖ\¥Õ[º¤ƒ™hMhª„ª"‡ó':Õ£S2yÞštU×™Y+ƒ V½þ—åä<nbÁqC¶Ïæ‡/Ì@•ÝÏÞ˜´ ªl¸y{Ût(Å©3Ææâ/l·^d ©{Ü´é¦ÈÉ›|]O»Xó“°o¬>þ*±üM“Áym¸I&SÉPQ´6Xø¨ñRè4=P|‘»®a1ã˜"t»ÆG±’Žk[¤õ`uŒ>Õº%ÎÿGw” lXò×+p`'Åeû…üGç½
+¥!>+ËUäW¬N»vaXÜÌ@ñK™D`óE\Ä%s|.ó«”æD®ãïk6¿q±AW€?–è¡þ÷ã… Á}VÓ*Õ™UˆoŽ“?q$­¥ üksTüp Õâ!¡L¬”]ºŒÓÀDOËtAäRÓ’?ÄÅkRt“ïjH‹n2;Û@Ë(þ–Rg·½HÇÝ•ùÏe@/KØKT…n¸b.9C½¡Ë¹ž{ͦ¼+è ›Q c=jNÂlÀX,—“Îk-Ú Â+uåÿzY<Í1Ê÷+(
+éæü]ðAµ%×%EƒÍû+ƲdHúm¿%Ã5êyŠ‚é^ø†¦Î¡ÁŸîkº©Ar²Ëjã '¾|”ô¶‘'öQW»sCä[¹ZLì¯;¡ÊgÀ„6¯˜õÔå…`Á, ûNˆðñ)3‡_ê['ÕCõñ$¡Š6§À8Ѽ ï‡ Œ&éÇQc¤âÈôàÁÎG·lPŽ§kl:ËvÈO>+¢æøWn ;œÐ8,G'ö4Sû®TŽ~ÛF2a†3R4„6pšƒní_2ºÙÔÍÑÆ•ëL¼ž‡ÿt¹v^tD*\³?’!A§0»ÓJ½£Üìeˆ7q½J…Ê/>½ßcçÞkqŽ†v‡Dv@O4èÒH_}=H#`‚ë«å ôû
+Å·IÌI¦‹pó®‰K¦#.¥î5ül„ô™]^bú!_+Q†{ÍYÉ(âV˜ŠuÉÃq|æ*–}Ô$êÀEÉS͈ ì*°ZìÈC¾Ž;õ×'ÈŒ„ Ç®ó÷×)¯kݯªBa~†ôÃæÆaãxŒ6,dV݈՛×ñ¤û¤5m.ü:` š¸)Ø£´×ÄjÆýY zf•õ©¢ÈOÃ_sÅÄš ·A§ÅœÊx3‡|êáägÊõ MPj8•ãúø
+ üæ×¼x¡ÎF…ya~Ô_£ÂÉYÇ#fY5nœ-]4œ¼ÓÑ \8ël%é}\öI@' ¸ƒ#Ù=­UåÐñéöÜñë¤#·pSw‹°æŽå#µ}Öh>Ï•×w „6¥Q:\jcO{EÎp& ý¬hº} ‘„Ð]MÖeÑäŠrT¶ÌjÓ èÄšÖdNÓ¿tcïý€Ï®V¦ƒÛ?iZo3¾”ìgƒ¶q2ìÞÛÚ‚¤
+¥{.Eÿ‚ÀsñÙM;Ûð7—±Ñû´“Ç2ô ´qÖçL*s©¦Ý,Òqöî iµQ€ÞÅÇ/JZ~aD”BY€±›£À8.¥ò6ÍT!aí žOâ׃˜‡Ó=æwãÒÍy?GbX,r¼XÄHì‹
+„>
+›ŽêL‚Ù?î<"Rž ¤ñqMíFHÈñ%Ê2öOÊ!Úß2vžXJ_‚W±ÖZ¼"äyR±÷’ (ÆuÅ—E¾|ð¨Q¾Ïžxß‚
+›pë6AéYŸßuPo‘ÑÑ :§þ©"ÂýHæ‹€G”ÇpvI‚ûÄ)7•Ý¦ùg2Šz\I. ‹]¸å8 –&ó’?â¥}.o ^µ|ÍóÉ“ÉZõÿêaýÜáa-{…k¸8{L•±Ü ¶ÒÖöEaϺSá§Ýª÷éÛõi§ƒš=«AÝ„žõZ— V°‚@N?u^ÿ-~™eá­©¶PÜr3 ˜hféÄéMx¥ßê•( Ùƒë7V¶ƒk®Gà@|E¹ׯn¹†¶‰uÿZœWþftœÍ0Ý´qëÝ/l)$~ÎDT¨éy™èœ˜ø`ÍîR¥>NfJ³‚ˆ€rÞ»cØ=ƒ½€ÝZ¥}{•7zÁ¹›¶Ýb
+endstream
+endobj
+3168 0 obj
+<<
+/Type /FontDescriptor
+/FontName /HPMHXS+LMRoman9-Bold
+/Flags 4
+/FontBBox [-501 -299 1649 1136]
+/Ascent 700
+/CapHeight 700
+/Descent -194
+/ItalicAngle 0
+/StemV 117
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/W/a/b/c/l/m/o/r/s/t/y)
+/FontFile 3167 0 R
+>>
+endobj
+3169 0 obj
+<<
+/Length1 2315
+/Length2 25413
+/Length3 0
+/Length 26765
+/Filter /FlateDecode
+>>
+stream
+xÚ´ºeTœË¶
+àÜ¡qwww·w—àÜÝ݃»kîNp—àìsïÙûœwßÏ7zÐÍ\:kÕZU_ÑäÄ
+Êô‚ƶ† 1['zf¦Ï
+æNFfÿ*ñ¿ä’NÀ÷y´1µ½oÏ_"Õ?#fõÞËïç‘ùŸã @ÏÌÆñ_º÷65²´9:Øþåz/ȱ~ß…?œŒJ¢‚2r¢´ÿw ýe+jcdklnc
+`aç
+³ú@¬ØYA{áú|_»b·7ÄLF,¨¦_ÝÓª…—ñÎ;ª€¤ÅX‚Ѭ=‡£¹–ºk3È…*ÃwÝ•-¢ý”‚š}v:`°Úd ðÝ®Šj+Ö}Ìù¸æš¤ôuQ ó¼%¦ßk4d+Gèd6Å…ÀÞMÉ™ü+'Ð(¢ú]’Òð&wÄsÖáw5^uö`0›êÕ—ÎKÔ=¸ây¡3HG­[Çíi)'ö¶‚3cÃQ:Éì®9E1—„XÙ-ŠÂ*«Wµ!G¢Aoµ¹„æÕº¯B£{h0‹ã
+ó‚‰5vÅ¿§Â, Í6d»PÈ/†¾×—
+BO’5)ÜRAó§ÐeuÇ/¸Wv5™^ö „¹$a†ßWMÛP†š,µBOvxŽìŒúDÅß´qIòÍÁ5†EÔÐí~¯µà¿ýšª/§Ò‰©gë+}ð[b¤¼æâ+šŠ8ÌĽÐ÷¾€òjðT8èûj˜çךÛ8é4ã!ÈO<+€sº
+¦×, ¯ …O}úÚ
+œív(lH’‹ZÜ­ oC;l”IõÁ¬ù¡!§
+ÅwÈ>L3ö¤à?‘.”3¥†Š•–2•—ûpïâƒÞ^¤.M¼»‡q"Ø[Ÿ–Ác"û5l¥¤l‚LÈ)‚ñ¹O¶D)
+Ɔn
+yT·ç^\¤Ñpï•1Np äbU–Æ(acþR<Bô}ý¤—œ mçdoþ[uŽH2·Ë9)£Ëðd·;Gà|ô¡"uyµÎ[ ÝÛ)6Šhë3WšðÍ+àÇÛÔýËê#0¼ÝN/IBÏš½KžDë–_áÔ5Õ íÀ~yç~’ƒ°.»R
+<.å·®=›­N˜n\òntP¡6ßÔ"'Ó‚áëPjƒ§]­ ´7ïésÜ"0;Oëm4Ý”2ɬrqÛK¦ú‘Ýrq˜ø4¥“<=aSoIc’³wˆÊ&ÁFnïxŠÈtÔ¨)1Š
+Â`‘gëÈBÓIÏ$Ƙ!>>8‰G”hËÞƒ¥ž3¶5ò—áªÛ²ÓÑ—q[êGAßÝç
+rÍù©“¿³‚ÍÖìŒp.`oK‹¯ ï(Ô‹ìwFG)®Žw³ ½Y«†–-À4†Fp6W )RJþþ°‰þ(8ƒ!¿6õêá¸úC¿–Úht(ô« § ¾¼v‡UÕ‰}ç&oÔ/ᥗX£Ð™f@¶ÿùdXûsgÚ€ãX3½u½íK§Øem«€Iu ï@='Âèñ}&ÔÌ÷ò®à&š`=VºÁ”Ó>öIw“^ýH;„ñˆ÷Îêfþ#L‚ ”¿\ZöOLý˜u 0½ìÈLhYV!toÁ·ŽM0¶ïdJ'öµ©Â• lµQh•[‡
+) Œz¹T5&õº -ç¯L_ˆ‰\HÏÌuýS%}š9KMíÇ”?¿{å†8Î à zЬp6ÅŒŠvŠ-Ú>Y«yœ›Ö ¢ÚÐLpAz*ÍYìÔÇs|Å+çéîPü9gºj°U²ÁITQ®ß·„À”ƒ.9yµ—ÆàgþÀ‹fø‚_ä~ÈI?9ŠD²Žç;ªí4÷ó¦«öˆ±"5: æWz;RÒ µé…’n?ט‹º§e«'Ÿ™‰p §‡ùLÕr4CØéÈ’®{C?@QXH¢-¼ðáQ;S´Ÿ,Ì?±xÍûÜ6=‰ò¹É‚Ž€jÀU¼m[WÉGàr3!PÎ¥‘<À*áÒ¯kÕ·ùÛ=o%˜fRSšQg+ò6½‡*¹_;¬u¤Ú0.
+–µe½ï45Å 8ÂÞ©Óó¶§KЩ›`éQ÷¾5¶ªí÷Ø€U“ÃZɬ
+ßè ä[f¤a¨­¥©)>&Þx†õÞo¦°Ì]MŽn™Y0×ñßù~ ÑÖñ5b³ež’…d(­í“Y:$nK€E»…òK3&„
+\‘û¬·b ›+>K.
+‰T‘ {¨ñZ|Í<9åÑ Êá¦ùØ|1ÜÂ)Q-ðP'LV‹êk~ÞIßa¡×XéŸ+K&tÄÉÓ}ó“àL3íOô1/ÆO_?pÂZj‚U§Ë̳ Æë‘ùçE[TNnôó·;µ*@S"xùfl^«\ezÌ6TmyNŽºJØQ@=}<54„ülLoRð´L€k¦-i꜇{?E.öÆc& Ê—È¡/Ml;þu)íçQ÷µž@AÌ<F}†¡²Ètø3 µ3.E,“qWsH½”þ“>SÛ|ÊY‹:=kýØ!b NßðÈм¥C]g,\Þ,ο%¾•±
+çDvû®é)†X@§'jÕ5ªŠ”AÜnŸ8þí©–‡¼¹ÃÐ¥²òðVVý*³x÷'œÙ<íí³ŠYís|WtyÍ8N-›÷ä4øÄBä™xey2Û(Û9"LPyþ?Û=Š0œ´&ùÍ,EÍJºPßÛÀà'¾,çS£¬Ò¸HG7øuó‚b¬/ûiˆ•­ÎÐv±¼ZÕz¬8ájÙÎh@—¨{Ì+\¦[Oôv'ëÐ,µ'wæb(TK[<\(«"øåw5þAœÏqÊ1¡::ÞÒ€£
+b£¡‹˜,Å­T
+8lrê‘-‡±ó™Ý…¯*Ÿwås¦jÌ¿"€LÏsR©ïäîS¹eÁeg2xm¹ 7©K 9+a§G*ê¿èÉËt_ªÈz;M9ÿš ¿V~^*¸@çïL¸çšd®¥~ø%1a4WLN³E”V%²}ø»QÅì¼ô.Zö|D/5‰6*ªM\Ý{OªÔA \‡!ÏXVÈ
+Ì[ÍoÕ
+³Gz×^MkíOx'¶•*"Šë³Y?n–+Ê ü÷ÏsèÇ)ñÇüêÒ’^ö£?‹y+{µÕE¯ÎFt2Íè¹ù¾-ú¹uãé«ñOá׉FÑŠä¸ìF»à¶ß4J08Ëê‹óží%ðê-cÏâɱ~m5cL‡.ßÿ®0 èáǼŽØP…ñ¦FÒI+1·aÒÎçÑóĵàÖx
+#ãb¸ÿˆr·ª$DÝlšå¿”~Ï4–ì¢ÇS½°%G‹ýˆ¨åYÖLÏ’<<¾
+x0¡©$1°T‹¤/+ ƒ&=[ëK±}¥«4G©ÿd@8{þ$qÀ“^þý庵>]Ünü‰³úlÆ‘2Uæ!LÞ)³‡å¸ö¨W¼#S‹ÌüÉìXH!Ð'=5ó3"³Ý^#ƒcÇÕÝBHÐ9Ë6éQ¨˜ <IÈñùïuG±ÜØwåH¤˜XJ`!ñäq*£ÂKGÍ~GaÊë$F|äJ./lsWxÞþzÝÍøÊØb ¡Dï!fÄm¡ý C<1E3 ¡–W`0ƒøF«˜?|ž—iÆó™ÚÊÿOnyCf±~cÈÓdW/ÖPéO™{<ª ÜWWÿldA·œÏ_P¨{
+Y2ßo‚»CWL¸ tþÛÚ8ÜpXÎÓ…gðH(в“ßj†c™Ý˲/.Âó::êàG\È“MÒµéÚMì¢S’æ³¥>ž M»½¶¿VAçŒ=»‘ø6 [ÆdÔÐûWž]”3tó‡¡:{)õ _…‹ä$}ú¾ÚwvêÃùi[0í÷áÞ|úaaö”ÚZgƒÉ•x¬'Ë*‡±ü#qdž}™Ëlù}’‡áòe­úYÌ'»²ùt÷›!Oz§O"­µ.y4>v6E.Ûu€)ŸZl‘OôÕr’
+ÒŸâ[ƹx¾jœB„™_äXM¥Ê hÐX)$Ÿ(ôtI¨5¤ÁñM ÿÒïÓÂY½í'¼ª&º
+µÛNòÊÜ,]Û|T'§ÎM‡Ýî©VŒîTεFñ׃Âò<§S
+Âh‘yËÆ9³Ì—xTú+ÿCÔDÏ Ü¸Õ ¬ýœpI$dgvg-„äæ`Iî&òXBLæ¢Y÷m¯o¼5HØ!¼<"Û‘Â|;äæ·‚§{¤RJq.DxzEù£Fÿ¤£ íÛéãÖ|!s7ÞçZ÷y KqžÜ
+l¼&ÿh>òÄ~¼Ðd7:š.ŒYIãÖQ[–NMh’áï‘ÛGƒzä÷ÛJÞ¯ÊW¾ÜÓ›;…1K©ï>?ðõî·JNÎœÂ0 txQÉ’«á»Ñ5á¯ò…ù~L Ð ]$·î¿tLIm¶N û¥Ùp×5§Ã/$Òº¦¾¬ùaûίìñ(å–ñƒrP±oÁ¥*ɼfEoʦñmí«NÝ*š¶¼1.5ëË›~†C½qÆšDLÀ!Œöä(®×´”>ßOÑ€@-äoç=÷bÙödQ”DÛ‘uÍdÅá¦ÀZºU;1G$ÊPª‘{ó…݃
+ä9"‚çÌŸç9ðd5{sÍTÅÐ&=ÎëßA;7[ÄãÁ§rò¨ØPŸŸ7ö¿×¸¢ÀOÂc“*«1Ëû•A5
+ôú)î•fÃD¬£‘B"7_NóÂÓf!>g‡Ûv![°—a'äq(®Ãƛ֛wê|ÌþÜ;“ªc¥e¬wÍ!ñÌ7‡aº.ÓŸpu6ì府3½Ü›Á]ÀhÁÆø½
+¹‚ç÷ )›7ìßâr5q­ƒ¨p¼^·=‚(æ©cØz ™ö=zb*ÕØF](ËrAþÙP=ocçÓ›`qlÿ[ÖFâX={ÓHÄð‚¥ãÑi1îŒ!:I±uðí‡ÍG§ÅJìf£ÄûîꀖJ÷Gi'¥Ú¡Y˜fˆ,¨g$P牊#…Õzß“SNÛñj1´€ ¶âAvÏN¨êÐ[-öôg|tw…Ž—óâ{Ø0ä~5VŠ¼#<Vìic­aÉ>þ¨F0Ô±}¡NTò¤ö®nÁ_Z+^v b ýæZµF§BOkcCש}´<ªçÉÍ$&¥|7ìC€DâþW¿€¦ðÆa6Ö¨û¯è3ê¸lzíãqÉÉFSí4ÉÍdbùO1ᢵ/äØ°b†”÷Ùí¯žðÛ®b,Saáæ’¼¹'¦Älm{7Âî½ØÁBUì–4ñ«åuWÂ%©¶¾6ù»µ”®§á¢ùz)gÄ^½à>E±‹Ø,×¢‰}g<ýbÇ0É>£äeê |S‚µ¼öJ1¾hª°UöÈùÜø‚¨}=Ü΂VØŠ3í|Vb÷ÓNv*:4°h†èa°¿bÒ¬éöÛ̉$ø^®E@NÚca2¢ß”?nãìñUÏ—’ø´
+È«ÆoÉàž0)ºŠøiñ
+ÃK,? Š T1i–y¤&}—†#”"Î ×ìøn+£¶hØ«Šªþ æqZÂq”Îy™Íq¹6€”óåçô뉑V6¡éœÏ!Î2r¤0oÕzâê@‰~wåï†KÃC,ÔaJyû`–¶«šæãy¯Ù6DÂÒ=­o4ZQš¼Nç&Q¸Ç\Yô¿qòïVyeZl5<Bª[&%‹zÛ>l\›÷>]|eÈGµýÕ2sG“Žw«JºRPn:ÝP¼zßߣr‰É\-¯Ó³1¸Mµð›Hqz4B*oá€à}?“¢¨;t"4–DIÞlAÞG]%xMýN¬79yUÏpmÀÖøèjÛÚ$Õ¡c
+26¡‡ÐòG÷§š_ד¸º3›Z9àZWgè0ïX£ëiU7 ц%qT¦JUO篾»„}+Ž_ìŠÆgÛ’!ç$Gâ½gÖÓWvÁî¤Z¬ô $¡š×Tü öÍM;’DÎNŒ¹*a>5x
+ª™û$“H¶ñZâNzÅFÑ.µý›¢ÌÏ}s5ù±É™h 5ãÓ!˜ÂLÁœÇëKC«¸:Nl!¶! 5Ö?0i¡ÀÔ†U’mÉ£³ƒ\…R¬òqK-4ÊnêCM¹u±Ž†éոľ
+ÿ6 Bw'KvK=r[§Ò“‚"˜is2Ç¡Óp öFǯgj×ô˜ð«šGNár,'‰,‹>;ãþÄäiÖï’õ#1j{<óÜx¼¼¼¾ý¦âÚ¨~
+)ÙÒÜÑ‹ž½Þ×ö&¿j{5œ…'–/˜B7Û5‘ 8„Ä>I±¤_%4¨
+ØIz"ï_ᥔ&tq¡ýVÇy¼D6ØÒ6‚[Vš'§5ò”gQ£ÀÓÛ@¨â”ižJR¤6«mHãö1Z/uFÖµ Ìéñq)½ÎTK> yyè9Uu Eý±a÷zD!QZ•¨¤
+ŸºôÓçñ‚χvæÖ>ËÈ 6@[1|B{4,’íCøkUp‹R•3 Ø)CÁõäöÂÙÖ·K´“»©‚ôýJk˲q+¾cé“€qGê°ý¢éˆµú_bº-%ÕämõIìÒ BWi9øáLNPˆ¸ö–ªiñ÷]Ótð’£-MŸCÅëOÄã}ñ‰ØàG)6è¿E=__ôJ|¶Éä(aœ”¹v;$7x2£'E÷Ί˜Ìü>©’¼*çžsÖ];Æ럔«AèN¡E÷"‰ÅÞÏ—÷‹‰­Ç¦eí"(znÆ0¤ó2ËÂ*C†Tf>Gpiñ¹ç‘…‘I·( m) ¨¢íü°²Ç"žbÕW›Å`FÜ_S¹Í?%f7h q·oà)v· PM8Ï I¯ÝýeºêõKö«¿#ŇZ®Ÿ5O“Ü 3нè–ð:X™bÎqS¿aòçý÷­ç蘻Û0Ø ”õOŸ
+Ý.åͱW‹¨M™tT±·¦ï{¦^jÆyï(æ%Y;ù<ã¾ø´7U¢Ð=`]Mßræ¤ÑEå9Q#"ñ)q•³Ø6é'ïV•¬?ÒØez`‰šÞ{”ƒ'•í Ÿþ¼ÚY|”‡\<m]\m<4ÔÜvˆs*ƒiÙ·}iÆîs¸¿/”(e*°î‚-w–ry>ʺ¤AgÛŸÂðúD~xÀÓ@ÊÍxâMk“4çØšâF:lsW
+«lÎ’®µ!Är‡òtl~¹ªúØÙãJ¸ÖR ¡ª­¤v–×~á?Btˆ­FŽ! OÀTÇ~OFA%£6[6]ÔOºOÏ¢ià«¥MÌBFÈÇ(^ :‘×±þâCƒQOl|sA:ó4z»«Îá÷Ôd.'Ãþm~ªŽ·Ë9`\zá,9ÍÈT q‘W\ÊqƒpÞ= ü¾óO
+Ïæ.]Z>P yqR«@Η­Ü¹ñįcˆý µg
+sµ®>ãJÃ}ÛyÒ€~ÆZƨ4ý|š™uëÉ_˜—!¬f˜ršÐjzâ2Ÿ}q o½ÂsÝie$ÏóÀ´Ìh)êÓù²¾Ø?¸Ç-µOšE± om†y
+àùkM ¼•ä 4Ÿ(p3#]\Wá
+€KçyÎÆL‹Ùn"];ßÕîa¤Z¡tü^:"'s©ÿômrŽ~I䇡hG¦s}ÖæWSÙ×™‚¦6ÃÍáÇ>Xf°–
+ ‡¾ÆOæý6,ù¸h¶<Ë*]™ÍôâV51uGû†Zv‹œê;ÂÓçûªy‰¢:–q …8Ï ×f5ARå Ì›ÍÊL¥W¤ídž’ÙÁí«€Xÿ©râ‹©®çûóF-\F·|&FF æO™ Ó´Wv$p³MÚÉ_ìcšŸdúâ?꫹dî…k Ãb^ëqL>5}\XØ
+¯èþï_ =ˆ|ÉòŠ¥Tã\77¾2øƒiÒ›ÙNHUzp¨MôJÉ¥õp8Úöû!⮵£)ƒ‹¦< Æa`*$MI7{úYï}Üm’å§FÞ>³;5Qøƒt*û-L„²ÜxšÈÏFØlðüˆžÿˆ4iŒ|QŠóÞ_SÅ_´}bmÃMÕ}â84ËZ[¾•™´ë€”5I«£;4¼æ3¬Æ»ÁÙ®Éï2 ¿i‚¼__éFS©= LYÞÄ\Ò>ó½ÕyÕRò„Š¸&±OYgÜ}»%2*º“Í6WSš›(èGâ8ÅŒõ‡=B”Ùu¬Ü“2ñfp"sUu«®•4ðÝï*ÄQ]
+^¾3k|h¶zA–Îò8An‡X´ÌÞçŽhüà« Hõ@d£„:Û†Hkš\Y¿ë¸Bs•”É ñ£*ZÕh9FÆÜÖ” ~X”Y¿º¥=ýyU ?šv
+TØ•G¥2(RØ-Ýc\†ëÃVpÝÕ]%åz¶{’_¸^àOR“ß<6h#’.0¸!QmÛàÕÒünÁæ'‡3(N„çæ^s…µ§×y^–ÕGã%
+¡|‡ãšÿY×>oî‘‚Þ­ãôWƒåPc[÷D£7šCFªy©¬Ÿ;Uó¤@:éÅ͸¶NÓ+RÍJ+WPwñ\g›nô›[Qé‚Þû<ejÉ´@0Cßyˆa§'îÄÎê‰_¬qèfh†æ{.‘eãäPŠ³<Á–UW{sû¡ÂÇ8ܤk? [~¤jœ«k·7eLžïVTsØèã •%.£ì¥VjåÁ¶ÆušçÝ
+² m2ò\Æa'¬Px”²FæÓ©¯|a8ªW¿-Û,›Þ~ ‡çBZô#çxè¤ûIDÆ<óz¦‘y1âjBGˆôý€s½“ิXù«FŒš02.J6°¨~9›2zÑrn¸áªí5­6­e*Å¥»ë¿yWL¯æôœÒZ1XU€©Kgæ–U&ñ;º`LõF¾(­ºl—Q¢¼S¡ºÊE‹ëäÞä§Ãá'4Ee `–Uš6o˜\.¿çU+:xŽ2ÀÍDÁ®?oØŒU~K“hx,~E,ý¥ÆŠ•Ô˜­<ÙìPµVñeGÛšrÅCà¤döSÃífóïA ò‡ï'‹J•xã:Fþ½Q/õ‡µÅÞ)ç Z>\Q/ ¨¹|2_™E»m¬U\eÍc~G0ô°àM²û§ÿ Ê¶ ALjŠó3ˆàÛÄZø=PJY…Ì02¥…‚t#ßh$ŠÃl à:{´‚…q^;r BH[È×M‚Z8›¹ Ú
+RÚ
+O¾Wöc°ŒL›åFrj€V…t•³ûòðªR€Qàlè­rÔÛ÷¤FÜò ;Ü` ¥ù ÜõY;¾Ô¤j÷dã×$öÒNdèÜÀ±½6«zŸ´RRö¥;fš˜8H:^)P:_
+ù®äb ¾ÔœÉN•AüúAG[–ˆ[qGbáNjŵŠE@X_
+«ƒãg\'µÉÇþq‡TpfhçJ\¦qÂÒ[#\lf z‹G¹ïÓóÑ@)Å49ÓL £ê;©|.A ÊËt·FªùÅßÚ%Vä‚F!ÈÎé¨f-0$ Ú Y´½0Ë¡¦ñÄáwÀ ýùM&)Í‘æmñ¦'ÿêwRHáha„3‘)ÛI¾ÓWpª[O‡lB±^²¶|ó› ˆƒ™´sìÿv¦!ÿ Œ<É'2Ÿ [:çóƒ J€Ög†Êc<ñ½)¿ B¾Ä'‹å).1"Ò&M½[¬=zôZÝ«Þzñ!fÆ6éç/­ù ’G|@ÐÙÅE§Ä7%õR‘Çø³0JåÑgνfÙÃâekVqÇ™ì'ÐrŽ<#ZPÑ”ÊÖÈ ÷ž[íV¢óÊØkwO`þ`®¿ÉýmNÞ't•ô¦F4TØò„‹RI¶9¯°8çht^×Ú’!ærþ?pXaööÃ4®à?Æ5³»ƒ^D´Þ”Ä>†eý`þ–ZC
+˜ÆkêWþÜ!f/wh[ï A´Æ„Nï±JŽJqÊ8>æH¥²²)­zÌ©šÎÅ04sÁÝÿ+È„Y«¸wÕÂ6`UÄUÈ›\ ‚T¨‰Â˜yW`Ñ^0v8±@–@‚5ŽÛê5„TsÉrrl2¿µuåkË(¢9×D\cJà?mlY\Hµ¡·~Gò[}=#’ø>êeäôÅ(ÅFö`ì¾É‡8º™s¿æÁÂÓ¦§YÔôGøV+aªqGI¿íâFU™Vž’Lb“‚±ÀU K–õ×oÂV®‘¬ôð£SÖ³_÷tñvx_Çìú”Nñ’M¡ŠªÔàæKèxFÊü°64œLªwµÕb0VŧfY|#3žßJ"…èa~À$o'pÇêN‚µVƒ/Â\»ÇÍÕ9Úë€u­sê,ŸêÞŸ·rÒ ¼×ú{X\ˆ¼–Žã“7åöĺöa~ÇÑZÙóÒlˆ}'*ZÛåw¡8&[xÂí¡2í%çÇÍ÷TØHC¦#°¬äØŸÆÉXy<hác™âùÜ490`¶€?Ð
+ðãc§õïcgxúÌ}[úéàøÈj •ÆÔ6åÇïc¾{ÀFR¡zî&Ÿè ½fûˆ3§¿øIç ‰#(ß•»ô9ˆP{XáRåEÜEe‰Ó)Â-¤¿Q7R'ÓØé74ò®æ*Æ—ƒ+×~ä° 2ü–ãÚBv·¥ÃªŽ[ÂŽ—ˆ‰¸aÈŒŠ‚Çh
+i‘ç@º"¢`=)d°ÿVS~°oByI]±ÈÊ›ßÜ5÷¿rGºÁY ø¥%£Â…¹cøJïpa?fš9_Žß%3lÈ÷Èp?õs¦_ùÅM0Ÿ^ nu‹—1ƒ¥¢É»<Ï~bœ«?E¯{LPŸ¶Úø"XÛRs¹ë<í½yÏd¤~þáY®ÉPÿˬ%ˆFAzþ:Ò}¤5ppÉ빚ß”)7QÍÑ¢¼“hÎ×2zâV”À¿v
+)=בŠšy¶ƒž“2$}N[ð%}ÔÏÎ=]öü¹EZ\U?­ò%×]ÑÂäý<&°ÒãH{¤5inÒ.-i ¦ãC< 9|A3
+Â¥Ý]_?p½@!Ž:ÂSó:G8’¡aå%;–k}<z•øv¦ÏÉ+ÄáïW7¬3NŽ=™ãž+³è*÷©A8þFË·g6u/ ñJÇRxè^,{Ä­â× ÁÈœÄòzö gm³È=“·ŠfݵèHö¯Ó.Ó’UÒ¾{|rèºàj#B÷¤rÕIDV™nq™¶Ð"é«–¸˜80\a
+¡³td pÌŒ[YvÅ[ÏôZ¶tóvoe/ˆeúù plIý}zúU§{ù¿H+Ë‚ó»Ms{ O,á É”Ü}~ß˵ØOhãÉ-Ñ°ëù4*lýBŽç…W ~ù®B ™Ååš\›k¦[Xo‚ÉèIÞ0°Ä§øŒcó³;RØýD6úÖa\ý5o4 ýûŒîÚÈHP³Ú¬øÇ~
+oƒï¿Ò”õ ºƒ›Ëœ¸(‰Ï^|ÉÚÙ‹(“ ôpÄø4ÄÒà
+„Ô ºW©
+é‚ju©m»]%„ãžã¨£bjºc<
+ñZ
+ª¢s%3A2UÚ¦p—3ø@¬×Ô“ÕÉì&ÙT!*áâp²¦.5nˆ‡üÈ6ÈgâÇÏ¿ ݇µ«ëAcOÉç9÷®W+äNQø4 Ž>ó°{ƒNˆ¸O1]JX °1Ùjs›ZP`õ ‘E‹'õPTB°¦±Nl¼ê·ÅÆ}S˺iöÊ$Þ_[HDòKeN­¯Ø`q¡s<(H×gñðÅ€ê¥hщ³ w{ƒV{9%@×e°/áÛŽÝP ƒÒUQ¬¤Êdûc¿L&¿õ¾{ñôr-ý!A§êRÚºö]ï®™Où¼»p£KÒ‰«0ÜiVz]²\ǽáóô1«. %ßq~ÂÜR‡2ÅŸZe=dç±1ÝЃœŒ–‡_nѯ™[ ¼âÏ~ZR-_é' MÆš„Æy Ä vüKÏ¥ôóRg©PP²‡PâÞŒÿŽDtŒlqËôH:©+%ï!‹ÒëŃÀ¥îmÎORH$îêdw±((‰ 0®TÁWìÀ9ÿ%àÒ>ˆ´ê,Ì
+ñ?Y÷£®çØd#åR†§—>¿œc-ýGo÷Ò»ä5¬Ÿé:›ãÆêì°÷¼ÿ‘9¶ü9˜>BtI\.Zéµ*Cjõ«æõ=¢%iÝ—=møUU‡šäb1cÔÄúïnM¹w(Â-òý£Ë‚º£KŒ‘nêõE,ž¯ìÁÃÁ´Ù„{=w©þý3Úvüé¡®fœÆšyå[±­,›E^6JßI¸Õ.hè© ;+
+ÁëkDÂGÙv•vËëx
+†£Sb–ü¸uÙ^~I$Ç?r‘ ÉÀh ÙÝö_±œ@eëÒLA²‚ø‚ƒ´Nê¡ZHï**þSîß<äGy ˜õãG”YG- ÈОY“µÌ$¡¯ºXpÔ¿Õ¸Eë¾ó;zÕ=_
+÷ùeij†äÊ…ž!£WJo‰zD“]ñ®º¢Ä/rDÜ.X^J
+ÕÄà˜*Þ…Â5º¨PûˆŒè—<´«•®s²}
+Ïÿhú]Úl¯FM"Tžû `àÙ¬<Ò½rúTŸôôÏÞ"ïáCŒzO”ŒkA«­×Ÿªº.˳:.ûŸ=<G<ÊÈó
+¡à5RCzt†HÈL”™Q7=8@Ø´JÓôû†G2§çVæÊ`‹¦ ìÛûwï7° Ž¿ÓÅ’uZ¡ÏªJw_§&®Ö©à‘m:c*öÔoORfI±Aá€Ô'þ»|mc˜{þÎHò½¶tˆÉŠ¨³€W.Á¡˜Çj
+É[ÇžÜûп/k?&[Ù-;© ®ü¥ò™7Ç©Ýȱ³VB©çÎ(eÒ•ÕÇ޼ܽšÉ‘Ì©8f«l2\ЩPä*áiÎÌíï~s1 ¦º[—[œêR£%.éÛ{éO þOkAéð !8y=Ūñf$ž­B³Ã~^*
+? dœG¿¼Ps8èÊîmÀ¿p žÂÈþ»_"©"Ìká,¯ž¹s}Ÿ”ø_·Ü,äø+BWXŒt„²¤úL!X· ½žª WºâÉCtIκuÁF‹&@Ë¡‘-JÈJSˆÀ>ã»\G€À¶–8^Sœ\Lw ~;ʹhô"Îx]â¶:óg >7‹Ï=f¤šå¡+™Ò¨çãÖ_u#¬@5!Ù@eú°T‘À;Å0 ¼unfý\nélÑDÔÈ%-¼G^Ï.>þ!⇪e` ñH®Þ½06E‹–¦‚„n˜ŠÜãÉ=Bï GŸl•_Vw^ 0lŠ;ÕÂM£ÚUtç(·8"‹c:ª&*Î( W@Û Ÿ2‹ÝÍ%{¹ØJÐ,¹ePéµÏöç¹E»Ý™fO|plrÈÐài‹pl帞¼Ð/÷~Ù‚‡ÎCóÁ$ÄêòKî"ñÙ[PÞ ókCîP«HceS÷ì^Fª;hÑ8„:QÐ%ñe$˜Ckó¬m/˼Ÿ– Es’kiM òõrœaûr”ÜR?¸Ÿë‰ŽÝEs ‹œÆ†e§#k£Y þNzqs‡p ;M׎ç´ÅB‹‡@ÊkÅ *e]æÖ"ÒÒœA.5Âá+"D-Ÿ­®³iÌâYBœêÖ¼ Pîª6
+î–VÎ×½¹?òî!ä=CŽM½¯Ë—ÍCÏŸÄ0Õ¶ÒÙ‹ïK
+í£0‡@:ò) ¨$æLð9/"à·,xRq—Â<e¹<ñ2ÎÎZôåý´ô„rh:µl låäÍ\hÇÏÈ8×ë7sŒ=‡§Nrš®jÛå2[­‡ õ,„
+õx,Ò¾f1Š­n^'3¿—jµ?Þz !É·ãÍ·n´€ƒ¦[ñÉŽÁÛ–<úk&¦X, 9t—ù—¬>¦$ØëóŒL“\p~!qêd9Nç_׬÷¥¡¦Æl›XWÁ—7z&
+°ø´²SoÚ+OØWP¹§™
+n8Ñ?‚-Ý”­ße©WC’íñtxƒþÅî“À»…Ü›œ#(ªCÿF`IE5·é#É£q¥brm5 ã‹ò§Kk3z‚ñ‘È|ð®$Ð- YŽ`¬:f<ã×»gáN‹·‘g#1ŇÕÌ«>j>é·ƒ9•ÉâA&²ówV¢–Ë3Û…Î9ÁðíDby-<X$r[§¹¢ûØ$M±Œ“$Hx™hØëxæýr¥x®‰ `’ËØêÏ-JlÞÕ6ª>ïe­îe3Iy:Ø’ºd@µŠì %h‡¹„nm]I-™bÕÚ϶Z¶·É…±­b¢Qv‰MBåM’Vuüè^·ówOûãˆÇv5> +ÁÏ°ÉB4ö½{ÜC¼0Oèå§#¢RÓÑïèCŸÿôX¨Å óå—^c˜<c¬ø™&ÇLÐ]aáp1§™+&vüF*'Ñ—±ªI¾¼¨º½ÑÓ-cY`:¿c5 KxÕè®$Boª´%v?k›xéãÙŒÝ{ÕGǘÁ~¡}³ù`œ°`’wJ‚£v)4þ¡1‘ ¦å“÷wq7fAž=®_½M5zé× š»þhT?™:+Ù'¼©÷Þ:È=¥ª›7T:Ûè;©Ž8”½leYžÊkÁ‹¤GÎØý4Áà#!ãºY¹ /’þ¾ÞÍFãÊ©™>ÅÁi_±öUµ‚?„'O˜òP8ç:
+¯`{æmÕn£»|f«—ŠÆXÉÿ‹ì_q{eéÓš¾¹ˆ™†òFF®že·ßÕMÉÉ6îaGë?;‘üvÃÎ7¦÷'ýf â^?¥àm]š™Ö8Ÿê˜Pœ€²¯E |Ü(q‹v7¹—ÎCS=¹òaNlJî6;¡vêãþÆY9øP#È#È·¼ƒ.êåh—5V,wçf3½ƒ²ã+Q® äµ5¢7@{b¼`¢ *䉉`Ë|z5E¢ÚC³êâùÏ+Ì,<)Êj"~W˜9& Ù¾T» µ. ¤®òݽ¯¦€UL’Ô¿W²–¥è~NÖ@`·jÝjó“Ÿ 4Œ`µ‹ËX ½f"ÊŠ0à)‹÷ÙˆYëò_#U,5QÝÝÝuì"tJÍyÊX‰Ø›%àQ7 Æ€ŒÄA6QìÂ¥¾¶î¦áÍmMŸ”jvØ$«÷£Ö˜,iÞsìšÅ¼€
+½i!fÓÐÖå\§¿ðC&䈃kBhÅYFzU]\RÓáÏb̲zu”´%mT?Y®g[ßou¦b‰²¿ÿÒõ:ÕÊaÕxiê„•ßñq7¨S@Բݕi6¸¤ ØÏ®ÒVPy·.*ØÐVÖ'%Å-—°ÐÐõ3‰…[Ì“ÿó$LC‰XYºG„7©ñÎBE}ãü»R²¼šçÔ?„tsJŽ¾®jLômE!Ôþýh ƒ$3,sÖN†Ç)_ª2¶†DI᧢ä›ämpòô9ë-‘ÃŽ±bœ³YäzGçäb¯„h÷=(7^²]”f3[a§újX. Ï'ê½ÉàÐK$¬-þÕ?9©ç¹*E³ &…Õð²ÇÄ´s ;Þךë:GC…—L<oi¦&kꊋÚE!iÑj„:Ñ'Ç:PÇ_*Tþí-”8¢è*µí2@9!duÎ÷Ó Úb‡€NOÇ­A·~hÖ!Ðê{Õ(Ç&¡Ž¼¶­~ìYØÄ£$lÙ
+ÁALí\ÕB²!U×Oê»o­©w(‘ =‹bZ¬è…ˆ¾a¼ÂûÛ÷ÀT»Yþ2ǬB\ÜÄÐ2ÖRÇA§íáq7~[†Þ£ÑÕ4=&ðˆM­êåm.ýÙ²,O]æ¡CC΋îxH{üb6ꨙD€ÔÀêë7¦VÇ@ð)ŠjF}|½îû†_í©÷ÄÄ#!+vðŒ·¨>’ÆZˆ…B†Æ.PJ2sõ/Wpô$z2/#ã"Tº¢ý‘þóØ—öüYD¾P¤d|܇p qnŒ±Žk(8ĆÐI¡cVÏnA#¿À äŒ0‚¿7ÏñŠ®˜&ïèe‡_Âm?èzÝ~„ÙdjŒ
+9á%/ZÒ«©EÃ*ˆzä  yÛ&Fî|^}GÅÓçM½1L ¯ýô‘g¿3²ÖÍ Ù¨VòÍ„z‹!ì _2Ú,°†QPÕ‹Òi‚ïh;  -PÍn7‰Û𚆬_5ˆÄÇSÅÇGB®Ñ¥õ ru ‘+bEâe3”—µaèqï ÿ2”[mâ1+àgûµâ|·|凢3áèŒW/ð‘ôGv.Òíñå*ª0W×ÆL^ …þD±]¶æ¿qsO©+"lp–úýr­¯§BKÇt°TŽGpø0tÓ—äÿµk…ø¯J¼|Ú^L‹¹¦yRj§†uZså5ªÄyç ûI´Ð̆ŒiH³BF’îÏÑKû8.©³¿—jZŠßÇn‚=†€Zñ¨kg¼ YédF
+h?“ØàÞLÿ¹µÊí5üÀ<'áãy\°x š¼¶”)ºÜ%ÝÔjzà·DyÔ®äÿmµo:E´¬3@|à¤Ï‡MÉ↯ÇI¯jv¼êt´/Xú‹Jþmq£a!MzE
+…ŸIn´ŸôÖóB?«ßÆM’4ñ»õøeÆ1j]­Æ£ÖD[Lä"bôœã-KáB<€ßÙy ƒ_T2Iªèe+)™`™à‘qÛ·ü
+¾/ÔÒ¿FÂ+f¯Øð^ÿas4Ó4ã³5Q^ý»Š.OòëÆÇWâÝ|ùW A äH‘ÇPZhÿ
+ k•’½ Àë|ì)³9¦gÆíKüóEb·Fâ³A«?7€¼8&)|õw®AºÓT¾®¦GrW)†ÍG N_·• §à? € )°u²ÿµ¾Ëƒ8½Ã–iöîïf˜³§ZcOÝ[XÖ©MT´Ïûÿ8O45Ù5ø¯øpS41Ç&gÜxó%rÄê5“Õr´³þrÖL&lqþìHmÉýSÔH‡ß2¿¥yÚ¸ÑàË[÷iŽO­6¾?îÉ¢ÓŠÞ#ÔC‹[™åþ !“EO+£!ÌõúcsxÀ.„þ'ÜoE_& ÌJÒÔæ¥>Èå¼]Ö 0Ã)ÝØUóï„BmúAŽ³I?Æí—.ÝOw
+=о£ #ÛOÔu
+ùeR˜ej(˜|†Ž9´óÈ“õz—LM§Þ¢vÃ<ÕŸ¬ aà¯sŸ56ÄêÈ9vbG}¾“â’vDP(U˜råõÁÐ~™á»u3Ú±( }óKïPV`ÔtÂâªF•ðãn¥£J–‚*hMÞ±sëä¿•É«™oÖCÌ>­#Õë6¨k0’)ëñóª·‡ë?_ý.ú¸‘Ê_Vw$½£Ì½Â §ÎæfZj?ËZð¬Ê›Ö §©mµÁ£LB.Øô6Å­LpZ2ß²BâŠì#™3Çæ|koƒTIÏBruì]¢çªXÏüwö¶~L‹7Fo^+Ø",¨Ý¨'ÓðØš(Ðàϳm´4¦à>]‚S8戹Õ$  É,HF6$óÑH;hJÖèò ƒ)¡å\
+ô¾ A@´J‰ýJ€Ç¬‰S«B¥^¶žùº`¡ A'y^ W ߀XoVÁܶú·­€u ù½ESŽ¼Uä}>d “Ô‹µ‡'Ÿšý¤’ªÀ;O†vüA5—WêS³ˆ?Ñ(Í=£;ª.*‡Zg@Î2M±ÐS#aÄÏÓBQÒ檮±Üî"> |jM˜Y­»ÓæÍææÔÄ?&FkJ îÓÅõ0°8WÀœú„p(KzB
+e
+È=‰¬}#ÈÝxà2Š"™ ?~uóð¥éQæ½-ôóŸÜÿ·Ce*YZ•üonÿ¿¼Ô5">œÜâ·wQ¿/c«ñ´¥âôöhA£¡“ƒœi€É} îïéPw*T“b-ôMWÍd¥þ¾¸v'‘q÷ÝQƒ˜VüñW<ú;¼›­k¬;ÌUþΧdáÊ-`ÓNnSN+¬õTS˜#mÿÆ9Cådhj Äú?“¹ïÀ&Á¬•½ûAûÝЛòÑ®HYêZÑ[J*m÷ Ò7¤rŠ.$¯X"ê(Kw
+Ì}Ù wÝ?#=S¹”|l\ÄLÑnºÁ؅騆 «·køTèãS’ݾ¢B$áþ©ø…v½Æ9Œ_h]|ýÀ[HÙã‘î&Zîd!Ù¶”Zø˜‘·í`nrcßDc¼ù/¶ ”×{Ž`"Ìíž7ÇŸýÊp7ƒdI{yc¢9º
+ð6›soÓÒe¦ÜP¦‡Bß?›®ÚŽ…Ÿá <ò'›—ƒŠbhˆKòü*ô“Al‰ƒh Ñ šÕJÿøY?Ó²°{Yzò›<oDÓìmLÆ;ºJù}ØÎÄ,§ÏÛªòù~Î}ÇrMrå¬b;Ãqˆ®?<Nͬ|\ykÚYCM¸hV§®‡ÝËmá6`gsô#‚l”)ˆÞ=”6W­ì°ô'x
+í S«RlZ‘Ÿ9DAä´"ñZ»LíûŸ$Y®ÛŸ“f–unºÈNŒþÝ™dÒ]û¥Rc˜XÙñ.¬6fjÊ$àÅ>MKyÆýœ‰Jq/jîß™«¿ñ¢.R¬Ã¾þðrh=\˜)éUð§1PÖV‡rC¸ÂúDÛΓ(¯R|ù+-ZK5ÝÞ¥, 9‡‡¬ò”b~Í.ÐFÖOé¨ÏyØ¥ýGÚj˜ÇµÜá8@sšH"êÄ [_F¯fah‚oÇýÚ#vyÐ÷uPb³µHlC:Ý´Wt[Åþ<û¢zà…ejA‘)³’`H7ŽÚ-° %½`§Ps©‡S¯‘Þ·jú9¤Ä8O‹忇Η>1u'¶OuÏËC£Ö)'s²ñXž‚Ã÷|tàCË]Xñô©k‚¢çˆ÷j“ ðò-‡í×ÓÏfîkÀŠB %bg\ÀÞ–[ÍM8ùmÇ~JCt[ª¶yhöõ´i[&Zoedü”F¶,okŠÑ†rþô­—Ë8œdmm­³Y®¸ˆàüÓp¤éÎë‹–Œ¶ÀÒ#nöx\ ù—Ž²=â[åjŒëªî'a ¿ßûKµ’ø;Ë»ßKͪ~q8û*kQ‘;”Àï®w_c·\^G q@/í"c˜vü•ëVçõ&ƒí)BÖ¶4Òà†¶bæúã€ÆÌ/6ø$qçÓ®ðë3ŠX¢ÞeZóuMç×ÚPœ/1¦løö‡Ó"x³HóÜ~‚Ž“ȉc4ﺇKÂA=L4©²«™jÃNèêJ)X\«b^OÅJŇ«¨‰$K9óyqiÜ#Kã•©¿¥Ü>8=ßwt(yd „Ñž<N  ¨õ½104œo-–A( (TxœÆóS$ 6 ‚¸kKÒœ¿ndÀ¡ëoßê0{ZE*ç”V>ÐÛè(æî<>U¶ØÚ–²eQsY˜ðKdÞc” Ã…Y ‡Ž‡oWŽq ÇǪRp¿Å,‘Ú:äùüŽÛF¹:‚ªm¯ß-'péŠA{™ŠšÏL¸ö­¤Û×ÉyÆÐk…«*,?5•ïqE\(W‡¯jÁÏäöGx³œêy­D’l@ía|FjèÄîº=ÿÑI§í† 6–½R°íž‘zÀ(±¢×ï8é}Fìå7“Ñ‘ö¥-Ó5!VHÐHéðP›i›µ›ÍM#å¸i÷vDŸ ‰*³w7‡‰ù³ZÑ,ôB, ˜a˼|T:÷ jÁªH ÜÕÇ ióW,iüˆÔ§[ïÇ°œ6GþŸT¤-!õ“íèëeI­]-fŸ§hÃã·Rœa•OmúËV,¼0OFÄýdzT F![Æ(æžbn<võ=9AdÏÔöö ÝÃN
+endstream
+endobj
+3170 0 obj
+<<
+/Type /FontDescriptor
+/FontName /REALNE+LMRomanCaps10-Regular
+/Flags 4
+/FontBBox [-496 -290 1501 1100]
+/Ascent 527
+/CapHeight 689
+/Descent 0
+/ItalicAngle 0
+/StemV 89
+/XHeight 431
+/CharSet (/B/C/D/E/F/I/M/N/S/T/W/a/b/c/comma/d/e/f/g/h/i/k/l/m/n/o/p/parenleft/parenright/period/q/quotedblleft/quotedblright/r/s/slash/t/u/v/w/x/y)
+/FontFile 3169 0 R
+>>
+endobj
+3171 0 obj
+<<
+/Length1 1843
+/Length2 4008
+/Length3 0
+/Length 5168
+/Filter /FlateDecode
+>>
+stream
+xÚµUy8”{ûG²LY**=Ù×c²ÄØǾg›å†Ùš[–ˆŠŽ%Ë[‘­¬¥8–P²ïD‘% i¡„¿s:§ë}ÿü]s=óÌ}îíû¹ïû;'¬lô°d4hH&ÑàPEMÀ‰DѽMè(WT°½ü(*
+0LNB$
+‡1Ï
+€Ch`(2^`ÊèT?04øŸÀ¿%\Àâ1tÆÐ3²Ý„„#'¨•üý9ÒJPÆ>É0–K&‚
+TQYMébÏÜ6c¬Wžy¹1qµ_0ÆÄb|I ¨(î@ ƒ™_ªg´ƒY;
+‚(2&DIU†3 îŒ
+ÊJ€‚’*ƒiE @]U1ô_ž˜ÝÎ21úû—̼e
+Ë@VÛXly*þŸrý"WîU÷ÄîË\ã‡#Z¨óîÑ=}ÆN8zÍ™¤Tï^goÒ˜³Ô·õn%qG9ï0Ö ãºÃÂb{níÿ0ês!1ûzÜ
+ðnz~}‹b)ú¸Ñ¹VòôÛÖ
+›t³©í‰ÃÅ5=‘fÎ׃³‰¨Ì4|yïp}Æõþ3YðäƒÑ‚Kžb§gSD¯õŸn+Æ]ÊWÓ«c+°E,ßf|¿KIžb7< õ­H!ººß(ðàgÁ˜ð¥Ï{KEd&sðÅíÉ/¯–_å•2Ë¿8ìf´Þ¥—Ø1&Þ;ÊÞ=¥ÝºÓ±ÌßYÁ¾Û9¨F%â ¹?÷5"w»+YRç^
+x›F«‡Õ¼ð²^kywUÖAÇ»©ù£Y±<ß1¨ *·»@ƒ«¬"AÁڟ܆ÖVØç¿£>?ÛÿØMÞQÆßsL+ŽÇ™Äcpýw4Ûv|7>ÖÁÎÈZ%,3׆Åó9kÚ„ïÕ·b´Ì 9Çë@…ÐÊ‘›Í9'xŸ¿”H¸lì¾AIÛÒG[¼.kÙg\þTBÞÅ£¡¢Îš‘œøñd‹#.”’G½Ù7cß7ØbÏîøY̨6?ô²çÈ—dd
+! ­j¦aas u7²ìð6Î+B`ÿÊe›½/D]úµ¤´Ò7Ž†ý‡bÒúcO¯SFÝš±Üç?§ºj.ms~»6>ÔS«õ>…{=Ć5¼SWÏÙЀï–ÌÖ9Œz¨¥ÜüØ‹ïÑçã/HaO³ºˆYùdÊÞ<º½ Ø"Ó)„kav-‰!£àåÃ@«¼É§Áa´žÖ‘úo[.äÞO8:Úø*µùí}®%[Áêp¸®kxƒ*‹æ%ÏÔÓú¯Šx‚çºwMø,¢×¾(ÝÖ•¦ÝU’äMºå+$í3ã4~S”cŒân¡¡˜ÂI>´(‹¾y%§<1Îd“¯ó äYL䚨t]}2B^.¹}¥0ÄUæÊôfz›‹%í²1Âô]žz–unØÛ™Úg#šiçŒ1¡U‡•ÄæåcoÊÆ¢ÍcªK6íAårψúK:ò_úÚ±:Ý3Ø)‹–{»ž~ÇÊŽí
+fb¥\sæ}‹Vñ“QÊ]}æEvráîݺ‰ìJ#ZGµ<ZŒRä?¨ð-ñOo/Óhg‹óÿ¿°Ë9
+ÈñæÀÁÊówð53e«ØO'p–Äo¤í+ñoOØ×è÷=vJ´)åãm^þGÐÑzá™ç³ëÁ'“ÖÇÚâ¼*¶R|iº›'êvÙHŽs*éÒ|-ô¤­ž¿¾’qš«¶Ò§ùŽ@¤È/ª„JhóÓNÉ–vUŠƒ¾áŽ‘\¥¹N…þ6ùUh¹0³ýá‚ ©Juy¨D aÜ 0씓ç0–w°•[Óñ:M‹H“¦ÊÏèH¶ä|ø»7·’¹—Swòè¸ø‰H®bû¬š§²pu
+q|—¬:`®|ׯÈX´ù`¸Ø{uÔLÚ—™$uüHaÇ®ù˺|wœÚG1ÒGLÞ¤dÕ5m­/tö 0—Èö8/¥H‰œ ÄfBö/, ÷†H kŠ…À}å®õIŒÇ¹ ‰Æ~º'¼]M¬ˆlPý¶e¤›M؃vÙæç¿i~¡p_Wž˜ú‚˜#ÝÒ¹-jeÕ÷é‹üÀMÞ½zœÖ‘Ô<ßSˆ‹«m7Ç v¥óN ²Þ;׳–͉9º¤(qße¾¿)`´ÁËÔØ/]óW­9¸ö{òÝ3Êíuí¯aøïɹW…°ZsÍÈ/í,§Þéž×>6dɫɧž6;lvï¢fBãZÈ¢ÅÑ !—K>×nÌ©F
+[Hð¿w³jY7 ßì4ölò¼”—À.)a8a¥±ºÔq˜ïuiŒ:iË­ Û¸‘š}ѦÇÇžùy½9×_Q²*Ìj“ë$ö‹·}íØÈ<ò~ĹV
+õÎ8xzûÛ88Ç{cS>7¥êe·£¿M}B «T:‹\¦_ž…¯¤6XU÷‚gö[Z>1$@NÌHŠw•ÏÅßÃèiÔ¶¥U³0ÎS«œäNôôœÒcýãæu¼¹ûµËgO,Žiª£ªdsÄB°×(ýÑÒƒû²¡¨æ I‹¼'27pê[»ÿoÆFsÁŽÃé-Õ?¹%6+¯¨>
+¹(9À)&cx‚{Ô<$6«УYW(Ô>ç«C¨OÜÇßVTv=µ¨Š\ûåñe5ô]ÈBGã‚¿§ténž¤5¶ž¯-ͧZ16%çcšŒ´½á_¥¦}=ªcFëípJA·V’vëõ³\Ðly·ËýSßÈîRvsµÆ¡g¾Þá©œö“Y:«°˜ÓóQ}ûXØ_º¿Ï5ç‹
+íü߸Ëú’*·³aÒÄí“-ï— ÌÎwŠ³³n-N(ßò°»¡@$ä.ÝÜ­Žˆå©2xâäÍg7ÎÓ}ä ÉÔr‘súw¾yíö;]ÝhgÏâOÉéœinO=–ßš;ÌÕIiìSu½>Â)çåjïZµK{/y¹¿Ž¸Ð'ÍÒX–3çæLIáxI}Þmö¶Ô6â®òÂŒÛ]øõž=ù= ê!Mc7*¢’qݲÀ¤Kiêœõ­±‰dÞ‹!©Ÿ”ê-îÖZ ¸‚ú3Wß5+à‰|s~¦¥ïJ„ž<Fp¿Óz0Wø™¡Ø^íþœ7º*=çdCpy¹a,%Ô^¥pŽ´†8/çåC>øtñõǧ¼t´Ú¥-/¸±¸Ä‰JÚo„d¸Âkî³<l‰]5ñ˜) žV­´]xtרã"þÂv±öûI“lúùË=çŒZ{Œjé}÷òÞ½ŸÍxU•öþåìúÍ:1ÄZ–d‹öÍÕ¾ÍÈÖÖÛþI-ŽVÉ÷nÍW ÒËh’nC—“¹›Vg‚ÂÝö¬JVBê8šƒî~ µžàÐ ?5cW¼ÿÁ•àüOŸÕòBÂ5Öæ:"ïI¹hÙT|ȹ_-˜©|e­¥–ªqxf¡ÉÜ%iƒK‹•’=ÜÍ`:€«üëÌi¨Ç©X/v‘r×ùïUÆÜGö®Lj}óÏ™äŠ|Û9•Gm,+j·Äìw®4H¯ðÇG„Þ¸]w"uð¶ïj æ Y-txÂ#Àûºi!Sªá¼U—|smRùáùÅ}}b!¦Ã/(óË “Žµ9O8ó ÷u yX46Zn”#)FªïÞ6‡û·Ö6?xb[VëTù
+endstream
+endobj
+3172 0 obj
+<<
+/Type /FontDescriptor
+/FontName /ZXDMYM+LMMathItalic10-Regular
+/Flags 4
+/FontBBox [-32 -250 1048 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 60
+/XHeight 431
+/CharSet (/X/Y/b/c/epsilon/flat/i/n/period/sharp/w)
+/FontFile 3171 0 R
+>>
+endobj
+3173 0 obj
+<<
+/Length1 1684
+/Length2 1200
+/Length3 0
+/Length 2226
+/Filter /FlateDecode
+>>
+stream
+xÚµTyT×v©‘Š(ð*¢\=Bv[d§$"ô1$7ÉH˜ “‰(ˆq÷‰Њª Tq{R7@x*ÖçBq}<q/¸ b­ˆUxw‚VáÔ?{r&3÷·~÷»ßï:M”±%J2 ’Íæsx^ 4, £5A4¦Å|;
+ª ZŒ|Ž€Çc99ùQ£q’ðÇhèøbZdPGÔ$H2“夀ò+AR:ƒ4&O×A>pÁL‹HRO³“0=rCBÐ¥ø‘ºt
+Wkh¦†Íf*1Ù¾Œ)’É4}20B ‚9aN¦!#\H$A ¦URä0DË¢d@)så Â2ƒNGRï°øÉäÑRwà/ —
+j¡‰¡DtÒ8P€9Š+ ¡‡LR 9àLAT¢$d§ÿ
+'”*æ”7šÀS 0Èÿ]2±>ØÔ<
+ˆD “„¯„F“„
+©˜•»hÓá¼]٥ͻG9Íä<Þc7768ÿ³ë[šk'}áÿýiлléÑœâéedè<¯„ìÂ¥Dy¬S®­¶¯ýXÁÞ¦ʯ|îbÙaÙ“ÆHΗÌçD/+»–³»nšëƒà’ *<.WçWOÑçúͬ­ï]'ø¹ßúyÑ´øÝÕÿÛ>*mç%þJ;ÞxmœýñIך§û{mþ¹;)¹þekâŽ<»óÁ£u'ê'tìùZ3Þ{Ûë[ó‰©j ¯Ú)û¾lËÛÅi[™X ÏNg¾z}¨ñâ
+Ëà}n3eËünŒ®Üã=¹Ò­¶QX½ËêŸw›¶º7ZÌ:Õ1±_жJX6›Ú¹A/ïqÛ›j¶}—úK•Ý†MW¬\—K_8€,÷yÅB³;© ÏïÕe´Œ÷o­ZS;µah¸ÿMáç ;'EóL®Ž~h?ë·Üë>ÑóŸnÍqWÒýÈÍêTäÕgù‡'XNw•Ö;[Ÿ|:6Ò+Túw,X¿{”tþΑuUS¼‹z„ͧ—ÆJoÖ¨Úƒ4»ªV½vÒFñr½YòU¹s–y¶.J>þÌ"iCwm³ûOÉão™°½|Gú¤ô,°ði3—·&n ÚWödÛÏŒô¢8û,_
+ÏЛÎu>‰ÍŽÚvÑzzË#Ù~4;ç§Ø‘×û^Ïþ”¶¸Ããæ£Y¿ÎÎozéÊ{ù-¾=c¾=p+í6^¿$!·;aÁ«Š“O‚—xµ‹]ë¥r =»,¹gÎ’­Nª7~³oÚ¡.<a*÷Ôa¼·N\œ±Nï}ìrT·á±ë&§¤¯²ó;Ž^Öaî§ÇØÇ>6rŒebà×;ìø=¥cüËRýšOöúºªÈ=zêy÷¦qàù®9OÎà ­{­‚BŽÒE[Ä
+,ûgG¼Ã¤^ç Þ©ùØ~c—K<áþŠ«k2CÖ|óÖnæCž×Ï›‰öG»DV£¶J.^•V|Ù²­¥ª|ÍŒYòCŽW³”±Ýqo+¥“~gqîàf‹ ùÏÙ,_Ù<ÝLâÈÉqÛz£ÿ©ƒã›³Oš}d©Ð¾‰—³~mŒÆMd÷$G=ò`厗ùc- µ·Yo[ºæFü×ãaã|Ž‘ųôhýÑ”)ãX« …۬ǻ»óß ÿ¡l$³œÊëïû^
+|ÐPy:Üdó·›Qîä4uG]´ÍK¸/*wøá–Bi9qaóºšÕg~,}Ø‘QT»ÒQ"Œ‰³üeÏÜÚiy.æ¡Òýž©•qËøMÛécQ²¼ó´¤ètGÉ”ÂgÁg·Yµ§¹/Ž WT/2Ë«º×g´µ´þÆ÷8óG¯S½ó—TbeÖ¾½0òDçýg¬.Á3#Çè^®¸ù"Àw”{yw˨Ά–ššk'rf¿Wäg‡(ÞÞù×ê’ÏÛºZ^ÜulÙpo͛ߗ„ÝØá¤Ì^Éݘß3ì·Ý™Ë|œ†gõÏ«r%÷ƬºZ—híþæÇ…}ýuœ¯¬s;ï?>eQõf4x^¿Ñ6C|ùåØÇqó:î¶\!}%Ô8ß±X2×ÓgXIиFMÈ™YV"vs{•v'ñ™÷Òõ‘æþ2¬}tݘÊM‰KE{~·Ú®8’¼ßö‹ÿ? }
+endstream
+endobj
+3174 0 obj
+<<
+/Type /FontDescriptor
+/FontName /GSXSSH+LMMathItalic12-Regular
+/Flags 4
+/FontBBox [-31 -250 1026 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 59
+/XHeight 431
+/CharSet (/period)
+/FontFile 3173 0 R
+>>
+endobj
+3175 0 obj
+<<
+/Length1 1677
+/Length2 1273
+/Length3 0
+/Length 2296
+/Filter /FlateDecode
+>>
+stream
+xÚµT{\LiÇn¬Yr môzdKík®Ý[‹©™2©QfF姙gfNÍœ3Î9cÊÈ%—-´‰ØW­KmnEÖIK¢7kñ’ˆ•ËŠÄ²+¶°ÞçL,z½¾Ÿó™sæù]¿Ï÷ùþ×Ñ
+®XCÆÁ`’`¸Bž
+hb 1R
++Ì&I½Æ¤PªBƉX®”8}Q)”ì[ „_7È•ÈÏöAlz¸T)VÆDH…|v@æCŠÆٶݰ¹!dà-4”ª¥H£­p×3Œ)€Ï·X,<™fx$¥ã™ 6|J=N I%
+qZc}ô³]Eè½€tÕœÊ[ þiľÚÔ¾tÍY¥vg‘Õ¥ê³ÿØý,V¾yãÕ‡+”=zO<6£!Ù_X)é62}wWëþqý¶¶D}éè^OÝÌ‘]™Ì=yÙé¦ì+ÏÒÎ%Hyed^6§0eÌ•Ç~Ѫ•Ou«®õ¸Òùhóµ’„é)
+³ó:Å·Ü€CÑÖÙÿÊotâ‹Ï<yöÑŽQ'†–¿TÓ^ö›t´©LR\¿¤-¾ü°}Ó:ŸžÎg:Døfîp´¾Šlß[z-4v¡Cv_¿1îC›¦·_jØ,‘Vï®é¬¨H£¿{&òPÏ\= ç#9}JÀ²ê—‹†ÈYw{“V;§øü¯—u/K¿ó<³óÀÕaå2&hQN© äöÚQêtó ŽԄA>‘½ïö«SžÜ\õ¶ìÓšŠÎ­ÝT:_?Ø%&³&d¹ŒèQ>í }Ëè'¼x!v¦_ÂX©jJˆӽ•±Ã¯‹¶ìl9*’òjÒò÷gvÌHEǦú,oÀ6÷ÿcnèö¶Úq-7ÃkW~tÿJëE!SûééÕö¡ÆŒ‘%U˜Cê”Èëqý²<…ó¡b癆w$èjÇ‘­ma¼ÇÕnÄÍ)ñ°Nœ22uOþú³M¿´·NüÝ‘“ÝìµþU´ïàozõ‰rØâÔ9ÀÎý’„¿rü6CCãxñÖ¨ Å•
+—c‚oÓ{®6å è½eŒc»§øwÓ:‰Ç‚™ú౎ð“ÓÄžšËÎ-×K› ‹67›Z†c^Ëò:í…›°Íýê²¹DŸÇ7É>%‰îÏÄn¹«h®(ùüê…š#yÛ`ç׫ä¡#œT \kõu©¢e¤µƒ_÷Ên˜¶ wØyááy§ÛžÆÞ©Ëé0/mu¡ùs— ²»^O†'Ý/,¨ Žµ«
+ìÜwjGcÖ†àC¥Wõ‹R ýCVŸzQã—»^ÖVá_±ø‡
+ìÏIO‚Zz>\žªN/žå½äcE¹(©0ùˆo[ºïŽÌOUkkV>Ͳ®íÈ«ïõdê„Ƥ;ÏߘÙy“ß4×5+Ùr%ª.{m‘eôœÖ³>ÍÓgX.·Õ~gEšŒžöÇSëŒôg OJzYôá2ÚŽy<úUñò•S&RIkí¾ß4Ùße#ß1‚æ—Ç•Í4|¿wñv¯Sç·Áe±_¸^OýÊg÷²µñõM­Üëdõ{ˆŠí‹gx(ìËti©kËÂ# &Ø—V9å6lTÝØ6=¾)éZyÛlûíž~ÐQ÷·Ý¯×
+endstream
+endobj
+3176 0 obj
+<<
+/Type /FontDescriptor
+/FontName /AIFYNL+LMMathItalic9-Regular
+/Flags 4
+/FontBBox [-29 -250 1075 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 28
+/XHeight 431
+/CharSet (/flat)
+/FontFile 3175 0 R
+>>
+endobj
+3177 0 obj
+<<
+/Length1 3056
+/Length2 36221
+/Length3 0
+/Length 37916
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸uXêÖ>Lww;„”t‡4Cw7C3t#ÒH ÒÝ Ò-)Ý ¥4HwƒÄ7î}ÎÖ}Þß¿ßÅýò~ÖZOÀKJuf1sS”Ø•™…M
+@ÁÚ výr’rø[i)%Ä "wý‡¤®¿bÚýmpþ•ÆÊÄå/_€½‰5Ø6›A ]M\Ý\
+¨®Á¬
+ªR¯þïØüe›9˜[ƒ-Ü<
+úWvî_öæ&.V¿Çà—ÈÉÍÄî '„ dÞìLìÿˆ )»ÅoÈ¡jaý;ç/èþ;5;'„˜ÅïÜ¿ÜÜœÿq±üBÖö›¤uV^ŽV ð™õ²8›? ¤1¶@Hñìþ€º,†Bîwdnˆ+²£¯’ ìfoúë„´üƒ;¤RÔâçðÛ‹ ’Ãá(ìì5;þVCr:š@îÆÍû¤ÿžNHhGó_·õ?¦<ɬ~÷› RCG;ÈMü;'Dâô»µ¿Èå¯3ì.Þ_RÈ¥ij÷/2ì\|¿5ÿ&ôëüû[õ?rvHßþè*;¤tÐùuü¸@.Ó?ósóÿ’Ù[ÿ{¶¹9‚Üÿh87$²‹µçïÅþŠe÷çä²³CHýæòk¶]­œAl
+¿²7á9Ûáx.`‘|&]˜ü íú|‡eÒ#¶È8ó&/”`DÁ±»w :ªPä!’~+]àHç´òMsQ?Üå3*ù;²2Ki
+odH„»!(—òaAí;ã
+låäI{-X‚ƒã…òl†j¾:ê>I«×i8á‡4
+êìcyGÔ[x!R㛘’aè‹q0EŒ¶ˆÑnO ©l“P¦pÆ—^(Ã…ü¼ÀHæȱ
+Ù˪{'hx#ÀXJ=
+ 8uO^¯m¿ ^,úæx`¨V9 PØ>¬"- 0K¡6ÒÈ››˜4[fKÞ½¼£yH2ÇÞ†©GÒú0ú-b@¿A_ª­|O2´¤ÑÌõ)ƒ£VùÎW•‰ $ÿÒh[.ZLɺVäM#9U)1V¶ÕLe°÷µ÷“ù÷Ç÷ÞÑïèÌ… õ$©UlҳȞÏ
+s²âéúäôýµúîEêTmÇϳ‹=,e4˜Öºc#¯²è^y§x¾ïÞ›EƒWØKÏvc˾ˤá hÂRÄüèŽÇbø(™ú2[ zÀÕ‹—) pÀíbèœ&¸ÖêJ’‚ÞKgc8Væ*8d%J°Îm»~qgªøH•¹ÈêXÖhéãôí>ëŸNî›.>TuìÕ¸Ú´Ôoaè:dŽ„Ünžz»÷ïÔÄ
+Ͳkf8c©y*â|à BSäþfEÐI«.¨%Ïh¸Xþ™zŠH²ƒg‹2ð5ø&_”÷Ônë%!f|×ꨋÖg»1Gr¹ŠŸE/¯&Øq vuÀ’P©”ëî6gݻЅtÜæ2cr±{S~{·Yð½à®Yέ™Ï3B¶ùåª<!Ù¶fÖVh$çcê€ìpôt㚦۟»¾lÔ^òíèdKߘÆyz>˜]djé™ã4á,bž§Í‘3D¨î2²Îã¿b5ª˜»~é©j4CT ¼„š•‡B—@à„a¼Ö?‰öI ‘L6g^ÚÂf®g5±ì<×ì¾Ú~?tþxj†Õsg¦׌/Yý.¾;Ö•÷¦õåpoRŽ_‹ýGnU‹—|A.Ç'謒W±YCArÑé¼öéêéG?·:S/œ’K/)…Ø‚6
+u§ŠF0Â:zÊìŠ|g݃~×:ìx#â}C0“ÞǧÂLtX fv¿´±xÐT'‰íw‘DKäX ˜€|˜¿”i‘raQj¿b©uº’ÇÌw…×ó@3‡vœY5T¦äC3¯z§§Õ‡œšž›É›„>S±Ùe7/-`è°:†Rkªe]£ÔZ$·¨ViþÜÂ=ž11†=HRã©ãã¹M…°ÇF•ó&3˜qØ&G8鶛0‘ØÍ5®Zì[@â%5}1¹Áuƪ}'°>/ãGƒPÉ–·Û˜›û=´fŸw_+ÏÁ¢¥¯³PÌhjnÉÔ·yÁðû¹BéÄŽ^#}¤:ù¼ƒ>ö+tVõÖþ '¹µóŽÖ £QÅÑ)n. öÍTPá¾A¡qÁRw£›‡õ ­ÊñìýÇϲ;ƒ°=šrQO€L¼dT· ª>+Š¥›þG‹Ÿ,˜K+ˆòùåDRtdû«Ÿ]ŠœÙ|¸Yðp8Ç"ŽwB)Ë—¯ñ²Fzœ‘ñÒYiŽ6NðÕ óO¦]òr–‚Ù’ð)b§Ìˆ'rN×¼å8`̇PãL&[qˆ³A­¡%•{~‰j©/TüQ—>ܘ ÷•Üæ°x`PŽšÜÄi/©ö4ÉÚlG³LfÕoñTq=ê`}ª-ÞÁ‹¾¿hÔv
+®ñ  ÃÄŠ²$Á°ûñß"Qe¢ø‡‹Ptë à"3
+l¡FŒ€wÓ“ñc*¯=Þç<÷×…#Z@ë …·@%âä­ûtVîÊ~ Á‘¡?_­ Ï«7£LÈì9Ljôl^çÕû€‡gYŒƒ¨çJp
+wîÊÎ PÒÕæ’ü!®md+½è.L½ûÂ×Îeu çµÙÎ,äˆY€&Ÿ­¼øT?¶³iÓØg¸·6xº±l¤6~É<Â#Mc[nmv~Ÿš)9ìL:y§9`c ¿u!ÎqTšt
+&óos‘E&Áh2:Ì#;(É&¸§Äv‚?Ùí½?? `ö¨Äqwå›H½Å”_fc@ÏTª –eÞ>"h;»ò“‹TZº½¢¸!: T&ù^Êv&PVÏõ£R+{ŒÛÙ2vçï¬ ñÌ÷úq‚gq@ß`_‡ŠÇܧ.­>}ç¤k‘­ üªÛi»9¤Ôr#êà΂¯n´v¸ð^ëCÿq§ÖVþœ‚Ø&ÒWÂy.GÍ´„F *.¸Ÿ[uˆ“õ±ïo‰¶ô¼²Í»ÕeAÑ6;àTöZµeuéEœºa >ÑÄh÷§m/×iÎ9Ôè¼{éÚ·¢à¨ZÚÅŽ¾múÕ»âk¥Ç )–  g¾œgõ˜ ¶Å‰%oË[S¿!Fš ±à8㜠2êdÎ9µíÍ`´õñÅ ýàqyø¬ªÙ­Zšõ•NéAûÂÓIOáÅ 4L&ÚV‰
+ж‡³[Y`ˆ‚:ÉÞH—QíƒbߊŒ¥±´Ó¦žaݳÁFF~ä:Áh Â1 éÙ%«-á%)“+ÈëR"y|ˆ)5Kí÷÷±‚W“³×S‚¶õÖ±‡™,Óí±ÞŒŸS–ÂY6
+äŒ4Ýéed`.k–%ÈÞ‹½«›Xè5&PÚyu»'$‘+ƒ-Z£¶ƒë‘öéë»ô¡Ù&a¢ëöèñ‹škŽ›©&™µ0Ù
+ßn[ô8Ÿg›©ÇlÄ­¡sEá¯h
+l’µ%¸ïʲŻ9Q§¬-Gà>ëÌcžýÑÚ[\ð~Î%Ô&Rço„Ùžøw%ÁÚÒ·_â~Æy1û®ÂÜñçæóõŒ…‚!¬æíç­÷7EîÐ€Ç ¼†ïÏDѤ½+êb_àbØòèu¬Ÿ@†fH8ö›L²
+6eáã®Ds„ì`x-XOÏþþšNR¯Ø†íÈD‚/CÙ†7þ•IáË®8˜ßÀYw° ¶þ·>„ÉÄsœaš ÆðvX«n£âê.²¦ÌÍÐé4¥Ë0{ó•_jž¤Þ€JB7v]pñ'²`Ÿ¥³ëŸñÜ5Ëî;’29¸¦ÒS¹'½R¨“}x.c‰¿o¹î ‘±o wM# …,P“öÏ•ÙÓIC8C¼' ã)|ƒM¬‘76<)Ýf$’ï‹ÕTNcbu[y”ÉT·'ç•/•Ê¡C¤ø ²gg½†—q™4IÚ–äªê_}LÐY\¬›Ô-s|,zr☞kj DXú 3ÿóõ=hœ& ŠuvÁIñâ=CRâ0»þÇÓÓ¥Oþn~ëûžpéY©ÑИþ>Óö§?;.¤òh&]r)xøî {$JMû?É_ml7ÝÎ<I ÆX³eiâ=Êñ¥WOO_¿U_rÙ}WîfõŽI
+ûH?Bü™¦1î'vêöÂŒfhæe•&ÖÔGó~I:ÂËHWÁÉlr°|l¼‘Ÿ5&®ëm-gAäò¾ÿ[Ä3pœ&ìÈÁ‚ ¡ÍÉK×*¼É 9G<C)¿¥.$ àp€>æ<ti–°Œ™æãTïLf,)œ{ ¥{úM SÐȶ˜¸l4Wµb¢6žA dRørØ öƒ”«‘¨Ý[¹Ì$» Â¾î-F~!LÞ:æ!†×½Œ±
+O[ª5¥–¤´X󯮺`•¸ºÏ{/N@æPEá±fnˆ“Õ¹½½­§²øÝ8òUrÛ‡œíÙâ³MHå¾ôêοš_þ ­"3êÙ|&P:ïëyš\Za%›f Ÿ m˜ö~ a4Ø&î%ÃcPÜ)ÞÅŠeÇHÇ¥0>!PŸ¦Ü=¯úz}•Ó
+Íþaeïg8ÍúWª%}{Z†£ˆTúÞ*<ä®BYÐ÷â¥f]Ë É\zN³û6§ªúB&Y£1 ùÅußS‹¡Pa0U]¡œÛÃ\÷ÛÂÒá7
+·¢¤ô$O‹*eÆ,M7£¾CùKðÝ(xõ1rh÷åÐÎäo±SU¨îP;Th]žCŒ·ÒI…Æët~|
+×>LóÁŽÍ€"®#A¡x×alƒ–€ž+z¥nhscrÉ»æZMÄ—äGq<-ô¬b
+¯"k>A~N³,üëµOþÞ´ís0 ’[¹‹£°Š.cˆïÊ£qéäù&5´àº‹
+Î$¶& Æ  ·”|q…fËáOþûóXëL®Ÿô÷Vuž2ÝÊwœã2U&Gú2|”uL)vîѤH‰±Eå—èSö–çp¬æ”, &¾LO­zf¡ÍÌ"{ã¾m
+ÒvÉcªu•èÕ° æ *$‹=W‘öL¹Èø³ ñ•¤+œ+ZYååmª\¬Ò>úÜ”æÃЯÐÉÂôdÅ-síúnsÌhK˜èv´/˓̸*ÄS=î»=*è¤ÉÊ]ªá­ÃJÙ°‚«ÂT KÖD¼&Ír06ùq2éZQ¶baÖÔõ›Ãá~rý¶yK™¸¾<–ñÎvfëkœ|Ä]ÎÞÍaÍv0T¿£=Ã*ê0©yÆ9ò·;é,=¯h™éàd®wËKZðK0pé!}$¬èˆ€ 󠙙Έ ;™;_¹æ³M°{Ùhœè_¨ÞM~› °!ëÄE!éRëPÎPÜð±"v9€úVò}¨Qì”à¼w(áìÈ*QA2œ7ž¨k€ÙÏ‹®e›Ô‡˜‰3ôõôi×…œ÷=ÞÓË#q<—ñfÇ;!²Ë>ØT•”á<_%?Ö1뾂Ú' abêïµ ÃØõËÊ&1ÝÄ3ƒQ¾¿ð
+EH¼š©žãÍò:³j0èŽ2•=uI¥µOÅô¹RÛ0ºwvý£ù³“P¹¬?oad +C©eZ ¶y¢•=`*VÚM°Ôâ0›EÝéL¹ˆ°HÈy—8­³
+õÿ‹CÓT€pµ->ÌQ…¶DMé™ãw]Ic•ÎvK—GíS {s)j§j9ÕÈ —1#j/<#ÎgñãÉL' Ž¢T±¤ÉÔçÊø‘—ò±s*Jù‰Ûün%9—R(q±-=²P^+>ÚÑ£f¾VćJB)q®N“ð¦öéCUMh 7}Ëv»ý G*WxΕ"Ý-B+â)I ©*d—íÌà"n¹ï¨…0wÑ2Ä´f¾öˆàu$93æy—qSzr¾*›öøæÈ] @•q“ãa®lê
+
+¿ußz`_ë˜E»pËŽ*²ß÷E€ãº&¶ ¿`jkÚÃIh÷Hg7A‹Ù2ßþ\2q;>Xø3†\þm†¨äÕÀÏCŠf´¬$Ô¼¯cœ ØN!çKã@:u\3/<ô)Õª'W\Þ3ã}°z"™I,Ͳœö¾ŸZº¨C=ê;¸ëeŸ§&ÜúüHÀmÙ¸úµ2–¥¥æ;N˜Ø¨¤³ Øz™NpÜ¢J±/Øf•‹Ž‰Åò?nénòÔµ±ýÀò{BÃqÖÃû\oÏ›Q±/1îò¥©õRêÁ†Š«œ©¬p¬¸™'ß}m:…°Nh5‚7ƒŠ˜Ý™=4ô(Kò] ‘Qþ½Pw‘²ßÎpS3º}ß8j}ýÊÒ”FùhHöl×äqÑ2ó}~@¬Y¥xÚuò ʨmÉIÆÀÐ{¿™"ùñ@n© †¿ŸŽÜ#âÈIŽ­â+u_ß/ ˆ¢ÔOPÕ‹45µÒ¾Õ»k¦mW_ô­Ùò`"'‰[àý6$… JP½*3c%þŽ…q•ÀWüZl‘ŽˆKõdx{®õúqpáE…&©ÈˆšíX°<—Ì´&{G/}
+ïpo:öI?yó®Áj±“î >]‹*“èò“LÚ&éPiPuBÊ÷Þ†}ŒzgV»Ìëx}ÎÍaj£Þâ«ÏÖ}mþÁé!}AG¶åá¸í¹(&H§sÍ>ÏR;ëÉ äÎ-k%"‘(nvyÉ”sžr¡Û¡Ž4hC!xU \
+Ÿh”aªW
+÷ÖÛ¯·6\{#Ê¿UchSm¼šà{u?`®´•Ì£A
++‡5<´>Ïè uÃWÅ­k\Žõ_{¾*Î${ªqf #´Aw®ì†Ë&Í÷ðú4ØÅn„z«Lf‰ç NµÚ½
+*Ÿ€¾õ¹ø<Œ°»K1Z•¯ˆûév‰QâÖæ«+âÝè³ÀÇN„‹ šH #û†QG5Ez #Ìσ
+Gžîx‹¢Bˆ;¿ìŽ+÷Ì’¼:õK+a—]…‹Ê[…Î){T]oš\ªÊ9ósÚ7+)¥Sù "<kh’*K$š@%¨óäø¢Ï¬`£3àyËË+(ÜPÚ››Ê{³Y¦¾žy~üò°Ý­‘šù¦’7hŠGÄŸ¿#ãžÐû?É?
+rE§Õâ¿ÞÄ­OÕÐÁk%È2‹T¨á+IÄÔÁrm_?wõô‘\™ƒ:•ùs
+s™‚aä
+(ò¶žÐ]ÂwEDŸãf1<kNÈöÀq(£^-Hõ:9Ù¯,2Ënñ}€y¬¦æÓ³M&´ž# e>wý¬¬GYg+=‡z5Apß+%bäu„*#û…pÁáåÓ›*cce¾!ÕŠÝ}6G~ÂAM–[{V
+…úÞy uÑÒWøêM>xÅ«3Au¤f¶é¨ ¤fþ£päCÉÏg纟’*dÕu‡ßô}¬Œs¼âÄ ¹N v1MI€¶Ã:†Ñ†ØR¯‡{¨þŽI0ÉÕ–©ZûmöÑ°ƒÿöÖ\úsê‚ý`,ö£Ñõ| “zb=A}ÀŒgbJÿY ϾÑ1^ÿ5:p
+ÆÑ.u‘…¬:Fç'Óœó„)HРRZ˜¬‡¤ëçÐ05§ƒ•¬Rââ˸B6~aŒ»ÇáÖüøÉ,¯Oª¡l_NÍvÝó ÍdãYØ 3ÁæFyM¯'P»:Yèrå…´M{©› ‡Ëf8ÏÓâÉÅýŽ1£˜•èxåƒ8zša@<YCè›ùì^Îݶ?Ø2î(|DÛ£6sÌ­ƒO9e"‰eUÆñÇ61 :§>VUúZ4e·)t-Ÿ¾D¥B)›ß 3³IU†þÆÀ˜WPˇx€|fj~pP++cä¸L?G-J<½Aäß
+Ñâa¤‘Ü­}mÁO’WŸç¤%®­\ź¾††A™]ðó÷©ëÅà¢JÍ ½S\ëÄ;A<î{ç*µƒÐ˜éeX7W@¼ðêjRh7ºýÚ•Š$+=켚'~ÀàJ–ùýùHç+Šn˜6’”áIJ<¿W›Mà Ú!¾yÑ‚;G>ZeJb(¨ñ¼`#7C:eîH¡¦Í˜âwòò„…$ó´kôºÏ~´ oÌ](Ð<Æ&·j=^Kµxr'sÄ­ÁÝׇ•É+äy Œ QÜ2¾,ƒ®
+•4}±K"Øbþú± È󼺥'à5jì÷µŽál=…O÷‘ôX·æAØ›Úïg¾ Ì®Ô9ÃBo»ŒøÜhî\t:ij×â¨vnñ#2_41{5}PytMØP'qÈiíÔp®öÄ ±ÒòÌ•ºÂæH篩e­â l²ËÒÚ´ÒÚÄLc”…/iù¶Ö+*ØCë›>òçBÁ+H8þ!L† F0qàÝ *ÒTMº%(”rm/³Õv½ùÙüxuK´‡u
++†¥òb¡ŒC×"‘5η|.Ò‰3T‹8˜ŸÞóSÚþœ
+'¶Ñ.¶…?r”Šª›´û‚Àîˆ2EŠPÊeHâØ~ø”Z±Ì͸\ØR^|uÀR¡ñݲ3ã«‚¬X©×Œƒ9ôÕs2.Í U™ÞÜ”ÈCÖ8%Mm©Æw÷çÆ\ÉTÌŸ|Eß• 5š« ª³´j|ãeÌËCï§^}Ýqç½m|FE§¯–½*DÅ\U.9ÇÍÛÆЛ5ÿíÉ;¯ì¶ûîVÞ— é~îí-ª—HIÌæw÷?k£mL¹—ŠkŒ_‡DÐw:7žzd> ³ ÜùÒ%Ž’Ýð5Í8ÌŽËSœ4Ø"E5£0V·Ô'åbÞnØÜ ¶TMOÚ)t8< g “‚.½iŽÁ¯ì‹ƒ½.&µ“tJ϶·`~WÆ‹üvÿ*`µraOê^nØFtÅIü%å~¢§µƒ6œ¯ïvšÎEV ã}t+±¢†½÷¥r¸ŽduO³`£øªƒ´”EŠòùÄô¨OÁ‹É–°$aÕnœÁ¶eæÐzÖ»ã~úµ 0¡ê Ý8$yå9µO(Þ+¦­ fã9¿Ž«÷Åq>õöímÙ³ÝêFUÄÁ2!ÏÖŬÚò¾ñ—Œµ/Á“Ê,J½I»á…a_<Áìùbfæñ}R¯Æí6þÖ*ðuŸ¡ŒnWœŒZv«v~ò‹çì·(Ùƒî¡TƒgØWöê•ý@é¶/JŠ‹F”^cäŽ;HFLã’´FOæ!§ÀIV¸ÄK©h©}k~÷d +QηV$}$L<ºVÅ—èÓï^8 ÚÑÝ7rÆ݇KOQÖ¼[:h¼¦0º‡}$O…g^zo¸j.Ï2™Eé¿ú&Ó‰í8/(÷(÷]X‡nj*Æðâ[­Âká/Ê|t³´Ž«ðfPÌüVj„xØIÕC÷›üX‰žŒBÁxìtŸ¹«UŸlË+, |õ³»¬y?ÆÏËÙš¤]“¿5d—CnTŽ]¤”öv”µ/ # |Úà!^Ò@„БÛxÕ$( ªù‰¨Ê•óV@
+ÊF(Ò'T×17ÆŠrÐü4»í“µ™†>¡kmcá Œòû&µ
+¹|wî§ð±º[±ˆ¿!Œoá¥*˜TÍy
+Å\/y€Dƒ1]¯Êe¹Ì’M©djœ3&.Sc€$ájo±›ôQtT~ñjU{Ñï|çíÙÔýuüÝDATá ÂúC7Ò’)ÁDôùÒWt¾f5žW»Øt˜¬JÊÕ<0war—]{ U'†XÄU^û )|‡i­“7­’"k«›½j·¶c¶Y*1™÷0ïÖ4H…ó¯¦ãEº[Ò„W"™ð†/H—ÓüÎÊá×ÂT8ÖuO\ªÐáB›ŒwYÞï爀=ܤáüØý9»îÙSD«~º\‡ö°j6‘ èN$VÌÿ¤j•_¦_EÂ~Ä H9GÔT.3ä\Ó2–”-MZIf•We(Ñw}# Á²ØrâïO+Ü”yýí °gÞÏ×8/ç`Ô/LÏœ ¡ì¹õ1Qzµš v¶³Z,CI»F0LKLŠsûÃÊ~‘w]“¡ó‹p{MVÕÓªqiÞоÍlÜ{+q±˜Ü°WÝÖwŒáoý®ÀGoõÕíS¤j_¹upò›¼ CaÇ¢ ,q)€«hÛêHEÐöxC'_Ÿ§6ífMd‹¬úÉ3)¨^\H¶b+¢Ñ.)º ~^´Ë
+,âÂéG/Šîdã¤ê®ËM¶æ‚A)SÉ#$úàv ’ðxQÌæÕÉxâGÌ &¨È“DgøµcRpe,‡9`Nî QùSnšø§í<ŽŽ•lnó|!<Õ3ªÏ³4#þÔ–ŽSäë«{–×+ÃÎÅÂÁ„¼‹å¾¤‚$*®ìvÒåÒ¢—Mp7æ¤=&/U$rš²ÉÕù=¡ÄÝzá¸ìØx,Š%K·”S°y^ ÙE)†äµ”¼ÆKøòŽk>é^¹j½§åãÆJXYà”v]`øÅåĤ«$<yõÐP°PÑ2M6€uÚµ9î¡S¶¿ªûtÁtm/“¬âyÄÇ
+ñ‡ì›${Jœïiì
+³>B0óµQ{X$áö; ͱd³@%Ì3§Hc`?ï«rè\öèû•¡KáŽûŽóø¥\Õê…õ1ZZÌü¬Û“©öw;;LÑâ™i½ou`ä>Hå«e ä8$ŽÊ¥´¬ÈºÏôë_'–2XX×T8´ÏQ—Ë]¯”`~ÈÖ%H§=La³N ´
+s‡]™ˆÃ/Ì žŠ+Ò”´û…Zº@Q›½4r÷†5›¯ó^ ë`žWŸémp¡v[toùŽbõ§ã¦7mïù:´õë³äOƒý‚§ä6X…O|é$§¸#ÏÌù\K›‚û×Fz·Ÿ»glºãå:W–²ˆ3FQ›–ô_og»ÚbˆÚG‘¿`«À2¼ýòoO£‘_?ìI—•Î‚¼¨¸g»¯¢†µZ£øf#%
+ê òs…Ž€n_t6CC›|Щ¤é·‰KvZ.ÔìLª3°(‘Or¯ÕÖZôœKt·jÈ|à’5U]¾äÒ‰Ž”ÚÑõ
+L›aj=n~aq.zzã!Í£â¥-‚¤F•ÒÚL7‹Ñ0¸¯Mj·GÔ"Cmìë©|ØôeUÄD³Æ_Í63~tø¨GÍ,p¢'ÅZù…K×°à f'±Ì‡® EcÂb®~ÉK0ÿÒ®s€;õnÍ’qN© oè,;Ë~†³)&nkn>P.0ûórΖ)Ù‰³Tß%«ÐË“Ù¾»9Ó]K¡-ÃáNgäñÝD6I6_~%‚—7Û1Q˜¼èÕ>1)I©* Ý¡æÕK·hSYæÚ#OŽ+åÕ0
+Þl‚_ŒÒLâE#]uÜ Ÿt_<w7ÛñMÇàkl5bE’N4 ìí`Æj«|ß«óÃ95 RÛß-í3“*›¨&”é »!”ÌÐgSw_¼j*Û²3úyìžÊðÕ¿
+Ô¶ú´0
+q@8F
+·ðÄbnc¯IksoÎ=Ëä¼xWê容8|›Ê>_| šû昲¨fWÀ„ãAºòC#ááEó{ §õ$’RS©õ/¥³g£áŒ­9±Mû—Ñy˜$Ó\é"p¹ú˜9ÈþAº~ÜÙÈ°þª_Ú5ÉTú’¡Y•ç;BËgD‡ô¹g©P(XTé½ÀR#(— ¼)¾,³juoƒs »å5ÅT5øÖ/ìÛq׉4òî nU}åÐ*z¦ÐiãÖCKežEÎ(oZ6/¬³Ÿ2ãâ«´cÛÑRavk?öÔ›¨—Óå‰/¦ŒíœñƒQ]. ±ÎÌØ\[~^±ãÚ­ÆÅ'é §¬™|){À?uj¡@QÑùÆÖ‚­$XOx±dóðöc:I õÏöNSs΂pz6ö]:%ý4¨ä*À…w^B5µìä ­’ðŒv“ƒ³òÌìÍÁÆ`¿Àí—ÈPŠ2–‚1Ãnz¶£”ôK³ÈŠ,©üAqY¤Ò|Û[­¼+[MÏdg¥ÛÉ-\”R¾^ýjÊ3Jœ†ñdà*Vóé•p^/º§hPïˆ+¿ÍU°bt·#ÏèÓ,•h ‘¿ZÇÐ=XHP… ëvn¸wn„:–™qâŒWŸâX¬<S,f0D4ÿXf†AÞÁÉDùP)œû£ët¥2û^“åØÇ”du%‚ýFæÀKÚ¯)^o}îô,†»§¬Ð
+w’°ƒ×È6[-Èr/eòNŸbo™c ˆµJð+4Æ7>ªˆÉ½­ók¹Æ.ÿ^«[¦1ßi„ÍO™ÔÕµë@¬§õ‚Ñ'ÍpÂ8©:G
+J_áœöÀ«…©Ž8Ñ©ß
+ñHüä.aLSe…ؙ܉©¨-àïGGqØ"l0fÊ­â%ÇÕ3ÑÌ®ŽŒlä׳û…kEµ(Ê GÊÍãÆr9š¼6¬#ôë·d^¬¡ôžì4úØïE_9{Úž;Oϳt˜‘ j¼-ɲÂ~Å®ªºý*…ðmÛ¼ƒlž¹úže‘%ZÒÔScUêŒ=ƒí0LýÑ}”n\¢.¶÷N¦;HdßLåDûâ<ŠcƒÀWÀ„ƒžO²3nƒÌ–]÷[ÔLmS'ã8ÓëúHÛÓ$݃¼°ú­ŽH*8™5R^ü€â«å)¶l×y!3êä‘ñrÃ1Es Û˜jÕtŒ*m.Ï}ßH¾Dœè·KÉJ›uWã|Pû,êøÚ%?¼ìÿ;@Ä¿K½±{ úÖÊÖŒSr'çn#Gi
+UZnã'tµvf*ü´Læk “L&iÈG%áY$Zˆ±Yµä5¥“
+ŸŸ§W“GïýIƒ§¢òXV¦¨NŠQp<]7~QIó¥U‹†ßGþnÊœ<‡Uã[À„ÆPÒeaI3
+x‰½Oᛨnû$¹> “J«¦XwüìiAÓ¯iîKŠKq•Ä©øÌéf-i:®mô.%@Û1’÷Ä\BèÊWZªÙ¤Pq0?”7«;¦xFæÍ$J•Ãe}òý¢S™?0H¹öb¦eêß
+ÖݬJ¥úé5é^`ÚŒ˜ÉʲŠJȱ¬ÆqÚèGœzñL|‰6I£c$»»lÕ»;ì4|à—9±_L=™xš’3‚†{ `ØBœ¢È†L“z8':ŠVœµ“æI¤¼í£(ÑD¢}ÉL5€N_ …R>ÁÊ"žJiÄvÄ®ÛVErøº«:B5hWÃþ/ý­Üx®+Ù,ZÓªiEðƒ9Ǫ9‘*ÖB:ûÒç(·ÈeàDiÑç.×ð?¶ó¡`yÚçOÇÙZ¡;–Cí{lOá-§BÌû.êÒ!e è'¹»À<ŠbBñP\-çuƒ›Ъ²zé
+yG\Ipè–§¶©9•øù5b„€ÐF+ ÀMp¨çtáÒÍjÀgôeÊPc»ÁÞäz²‰3„f©xD9*éªwxOîPÙræVG¨ÜužŒS•÷Mß™„}.PYÍóÄ
+^ˆ´Ó׎»håì&ò3¡w’Y°c-îýb¾þ_;Ü‚‡ ³>N`9 ¾¼‚Ò…1ä|¯&<EÙNfBÝÏ8˜—Ê„Qýa6ðH|m >ŒòÛ2`ßÞ‘¡%L;0ÿºoËô;@•Í…4íaÅÂ!+ô⬠±tïö0À6À<¡§JhÄ)9t°PT–\SIá¦Ñq ¢d® ;xâ‚B%˜Ý†]‰ÌúÕò ìãÀÜ£[ÖÎ=³Æ½,§<ù3Ù„6â­qË#ý|l_ü|ˆš9&y“¯0lh'Œ­l¤ÿERœÁÑBKx-ØIóVÆú’6S–ܲøåñjº(at‡G}¾ôÜ4:çŸþ-œá”ò˜uÿê]JAõŠ |¢Ð†œ§Œ©ü/ùàÞùÞHËô‰Ö(þÊ$MRPˆPü=E5Î}p0ˆ¦h„KÃøp
+¹ÀôïÃð“.¡+家€¡©M¬~åaþ ¿û°®jÌâoEÀB’Ú‘›÷Þx·°!=$x'´ Ãj,ºJpE”-±É$ªi—ü#“äÂ)jåXÍÇ-'† Þµ*¥Èv#˜DÏäÈ°ùjÔø"Ç‹æÙœANŽâ˜é&’mÝ|£%eÉ_'óÑô”·âá[Ϧ–ã^¡ÓêJ@¸!Ó?)IÏ7+úª» = Îð6¶|V<(ä2Ž6“K\ Éì
+¦§Ð¸Î/0ôŒj¸[ίßbã;[QM—”ž¢GÒ*ÝÈ´ªéò!0Rc®ýiš«@B·zV×½öѱ¥'J/gàM‹IÄÙò´.fVbœH²=HqIÛ—EÇãÚ*C÷‚šimu”\yÛ8±Ø¡ŒŒ¢¡z"0Eùa§ýF)²kõ‡ë·"£*âc‹Àt²HC˜ýæ›D,Î,ˉc»º·fÅ´0´nW–nÁ_#Øhd•€¾&a‡·
+£&ß…ðûלtÃjÚ’( ²f¥SÓ]„
+ŠsY;°6Ï@ûy±ëÏ”g¹º5äàUXö\Â=PçHg˜I¨)ô¦ÅÛ–± x—Í28|k:iw’î<m`_cïj§Œ5¯ûÂA™âMÑ_ î­¡WØZ&„®W:(A¨Æ…áEÚ:¤L^V >T˜/y{aqi•¨ÈãÉ"ÆåwTþYÍ°I;FÄœ‡\à…—‡K£SKù¹ëh! ˜5À€þšÅ–ze·˜³À ù0÷äÂÏœò°{¾c¦-…ñ£Ð€Þß Ñ*n3žÉ$¦b- F°¡+­bf‰Jû¡À™Ó}΋Tl~Åšåù|Â(@ú6o"ƒÎ÷Ž{ý*7©°Í¡P•Ê¡Šöç$‹5 Þ Dü5gã̳|KLùÞ<¸$´mÜ5‚õR}_å1ö³
+G¦žqñW 1J&XµQ!Æ©iu$L„ÈÓ{EDé;Èuz•½$†OÐ0£5ÀÑ‹)=ɯM—„ߨÖ×øÙ|ý§£"3” -DzðÔÁrŽoT‹µÄ¼Ü+?9¦£Ú­07OÃÆ8ðtrò{ÀÑHÜè¡›ÛÝí58ë Utöb¿ x΄ÿ M¾è”#î¿Å€=x
+`è €Kv6°òeRÆ"U­;Í6ò°7%ûÖºVZbÚŸóÄ:M»åÉ$†ÞçÇt„}–íøN•ý(.û6w^¾œFu¶zæ"7©ßþ„AÛ LcÐÀ_€lý$T© §)‘žë(}ÅmeÚZë€æí^ÂðÓ!ŒU­MNìœ5w% ‰ßŒtqÜy¨ºË—"ß„fEüGÛúõ?¡ £Ìì-­9«e
+o•Á\tÙnq-Iàt«p6š¾(·Û¨ŸÂ‘ä"«1
+þTÂ0Ã+ÝøušÜ6KÎÏÒe&èM«÷Wg}n@áG Ÿö“ÝxÙ æÿ:¸c/åÇÈ-ßŇbC
+¦= Ž÷xA¢Õu‘/àE-]L½bWœ,FIõÀø*‰5Øi(Ô`?[°©aÊEwŠãÙž}±‘;«(‹±½áVÛeØ|KUŽ›»Û2áãècJ¯â3 ÖuA߈œ
+"?&YyGÈ™œ<YZ|ä¢Øµ×ÙvF
+S¹ß¨s6U´Q¨é;˱3º3½$b0û ×Á¨ÈÕ3J?Ç3ÀJCñ…l{Øä-=à ßmãþºïß>yÂI†“z^– ¿°…ƒ
+³ßR1@ZÄ"HzŽœ ì¥CaE¿„‘vê¯3Wðo‹j4Eñµÿü†@#Ú”ãÌ¡5Ð;, £PþþuT</¦¤ÈkJG²žQª¯‰þ•bÁY©¸,¾?×ésçK ¼ªüß1DecŠ`ƒ¯?éÑžèWP;‘’L²Ý:ÊÐ7…³›¯NW…
+òÔ=N™¯‚ZÎÔðL;ŒÌ/ Ȳs
+Ï*}·n;>=ÓmqËNM̆ÓÆ/éài¡rZëÌ\±÷«”s‹ó.üº?¯^‰[çY0:ön>“?‡£,ZÞLmtð(ü!e™|ó¼]ö*]F>ð\5,w®ÕF
+AòÍ 6Z;ÖþÃk £Éö6w»ûÀ5\(4³äéEiúçnŽícõ(ÙÎ`ƒ-Ågø×òÆûªö2SU 3üKrÈ’¯*©Â° ×oÓ õ¼ ëÌ×xíŒ9…Ïg‘µ
+¢Øœ½Ò ÈBÔÔââû{ä¨
+×7vtÛÍŸ¨´Úò¯4SR²öaoùRÖâa‡e{ÊGäM3UbB‘豓r7\]¤Ï‹Ä/Þö“5¢-CBqÐàm3™n°÷R ñë)£ªŸÉ?‹„ÃF ©˳½WõŸ
+Xr¶É–ÄNq/‚§ ÄiÒVMåi„B´˜H¾àŽÞƦ½nFt­æ…XA×)iŒÊŽL OŸ-Á
+ìoÔæùÕOŒ¼
+¬S‡­õ¿m¹í†T{¢öœ“€{T¡üÃÁº©¸¿‹¾|3èÆòCULÃÀ!Í#ĬGKÿSí¶ £ÁµHb8M kÊ\w”B91Þ´™Ç¾rŒ.+Àþtac1`mÑ12SW¢F34HÑ Âüêmt|—•=-àUð36–°I§|˜ O0
+ŽQ…_JåakU±u%ãvH²EDÔÐÒŽvç.-…“‹£ð1¶8>x
+(fJ&f¾ˆàðUAùÓEÆp$Üšåž(Ä F£  “+eÁÿwvü*ÓÌ„–%œvj­Ñnß;·Å 7õô:9ßOIE ì•ÍRÏ™Áž—îÓøxeèç}‰]½Ë|Æ^zÊ|½>Ûð7ž‚‡^h%9…ÇSÑ0Ôš¤­‘¿ ™tuŠŒ/ƒ¸>³È~(ªUnƒÊNkíÿl¬IØ „²/º,#Mm~ jpÚ–•Êhž.s(Á'HX<›³Íµ%á5L!aRLÉ-d9*ïÝ—Hýžÿ•&[é¾þ.×ê™,þ½3Þ½†U9¿µPÇ̤QÑåA×'9ƒk~ȳY0ç|íÖsð•vìêñÎÏK¤‡‰B5×ÛüSI S¢;³o‰Dá–Ê/¥ð},ô¸’IhÊј/çi"z]ˆ©yxR³•ÿN†y–±7­>¯ÏM_Ù·äçf®_jÐíݹ¼ì[(Ø&u¿±S€³^—Ÿ7ywlPÔc7aŸ†¯ï¨é/¹,Wˆ3™I²3û7)Æ›RLuóåçD«“B'Zç9ÝÒb†”a*w”%räÖÙª;ê‘[ÅlÕ\×õ'nÓ‘M ¯/*Œ>‚HˆB®RØ þl`?©e2ú
+#Y¦0Ï_4׋§HKqè!…£7x–
+a}¦ÏHal‚Úk^¢·±höÍ>ZWg¯ÉL+Ljh—²W€-²Øª_Ìýrÿ²Ÿ¨Éæt͸ ²}¬øCu!2»óaFH.mfÐDÖö23ÄèË`e˜úýæ_¿†Ã« €òR!¡Ÿ‹l(ê4 ¥sF–<²¾ÞwaƒŠÝ þÕàÍ .êÃ÷“¦¨TšÞê ÊiäHØÆ/ôó-ë8EãóÒÏRèoWÖH*ñÀ+üdÀÝ#&³Q÷[†mëϧoêDŠ`@;Ü£éROY&×mcï[Ñx×Hý®€Ï[¢V U7p'c£; QÕeÿù“\˜j©âA¿í|°ËËcú ‘¢¸$eV ÒUñžY´ýohOÙJÂyõT_ùJ†É‚ã'J‡Àó'žðõ žnª9Lö* >PhÁÞ²P>°:÷ÛCäÎ1†ÅùÃy]ÝÒb†”a*w”*gÊO¹å:ÑéÁê
+¼þ—úÜŒogbòEgÃS2djsT•ÝîîèàeæÇW ùë¦.­ÍH^¹Ù9œzwjjÚLÀÀc$K”‡ÒÀÑŽüw‡iÆè°µ¿|“ñ·á3óÎWJD È±)ÑöÚðà ôéšD²ò´éwçÉžÍ[öÍ}'³-M}6
+Äè½—6u(NFýAÂì$ÛÏnBÐkA|ÆÔ=C4JöS ff­0¶\Ãw¸uaD©%åÁy61šp ­éY£:ÚÍ@FÃÞð}‡ÄÖüñìWÑ^·ž¼õÔæˆU_]åqi q'wOÞa> ~‘Áp˜’·2A[‘üy¼qoȱœÅ´òDÁY« ©0W—2é&c1º}¢ºÙ•_a¥œ•M9ƈ4•O 85`^W:^µ“aT_ZÙŽJyFAýônmXRÈ8¼;ÛMæo—®+†5|w|sJ¢¾0+¼>n.ÒãÀ[ã÷™ü ¤¥Ÿ
+=÷ˆu»iYÜÌÂäMÀÎk.ꩽÓÝÅ´%실Y ÓU\.K¶—û²2N¨M–Œ }ä¶aŠì~Ú£h#½Š(nxù2xýc}€4ñMAšl‰"\d±ªÝÝæY26Á¯O.’%QÄ«þ}ÁjÁé9¤mlï÷¯§"ÕºHŒÅmqd{mãÊ*òÆ _4ÏW1Ÿ^2
+üÆZö Tì*Œµè¿º/ÿUíÞú.õ8;œ¶\@Á^r\Åò‹¯ÑéLý:)®zpÌ/fÆRo>…ç¾Ký.²,ß
+w8~¨ìA„WºÀü³yh¸®ÊÞkØ£º ³A7¹ 4\÷¿ù•Ü àgîk?}þ
+¼ê$Ö=½”:¶BïVñ4«%Ü­+Њæ#?æÿcJÝýô ÙŨe,•ëb‡2ÓWæˆsS2¿IæuŸs)…í]å–ŽÒ¶KB1s\¶.x‚†m„xPâØ¢ùaRcŠHñ©”(r¨`Ò®7;r” ^t/<Ôr%cÐ=…ÔO-ÀÎ$ñèó"£¼´D¨"M­€èá«>ÜÜ«íÊžbQÙIn‹#ÔøË2 <÷ÙólóhþcdõÁ¦Ñ/Ü8ã™1 éÖÕþq±®=DÏËíñtO 7d¸¾Óâ%x-›ûY9ƒ€M
+l{€ì¯TïM‹I.wZ•ìL|t *3zõtTrå,§±Ž'^°Ïh
+úÉÝäù´…h¡ôÜÉþ\‚ºú3ôsk„¨â}ÖúгVÍC󽃲ë;ËÖB5P§ ÙD³œÍˆËÎXf¢±F©£¸s“xtÅ 0qo)Œ¡¦‘RèžÝ"Á
+<¡Ü+ ׺NÅ‘sÈê쀛€ÐNÀ§ðnëÛÆù¼qä·ÓP÷WI• Òð‡ÞÙ¾kÉà‰êÀ ÐPFÞKŠ§Yõqõ´é_I#Ç
+t2êŠÀ5{Ê TºKãÙ†"j;jÀ¾Á ZWì‹øÕÑ÷Pß™xÖ“VU•‚©=¿Ô ½kùâ
+ÎöÈ <úõBuaêÁÏNÅM) ¹Ûºñ Sª®a•T&aR\Im9ªrƒ$ðw|9öy<½MDœTÝt«=ÎS¾òú& o}Ó¾=–>i"¹"ò§ôÒP÷çá*MÛ§=JܬQ)G:Žs]3‹:ÃÏۇͼœ›ïNZ10k²dº5™ébðRßmýc-Õ ÍwäÖÙª;ê‘[ÅlÕ\×õ&¿ÕØW˼šI@…€×¥¿È‰Í¤ê#íâ9©èÖ…áÐåŽÕô¢1íƒ'
+èÞ/|-|Ì•‰‘ ˜óãEq`‡Tø‰X©Œ*æ€2·,4è5¦Þ¸íÀ»ƒ$œô–z[‹L˜]8EÙä"_E£X§¡bgžR…
+)*oyrXF`jR¸Eè[Èu
+Ó†dVWii
+¿ ÊÀU ¦z„;yz¯²,Ÿµïé•¿½à¿šöˆt^ǘÔT­1«™X!¹ÓxïÊB¡fel'Ć)½6HœÄbÂÄ¡¯ËÚ #¨¹àÀ]kÓq9ºdY
+ö¹d²íãP¿©Õ 7 Å‹
+Øê‹*ÏÆÓš±?S«¨“B˪úÀ/yÃà®0î }jâ9Ô15ãá`†
+ïdŽ—}>É-ÇRH¹W¤¥¸QGª9í‰t"†³b ÉJQOÍËèK­zÿVqÔúôsMÀu ã!¾þ>º0EûjN0×2õôH aoKÃZƒ“¹1³D¸Ñvœn§6wmƒá¹I2i;Î
+•³…ɳjuÉÓíaÔqÙò–³ÝoŒÃ©—ÏQM¥ì"çHX*m5ÚÊ«³‘«µ.¹%Å{¬ïFð¼ ù˜ù‰®à2á¾{<‰KKj¦þÿÝE³4Þ5pF‘–êGœnß©7pÖÆ íãX+/ Áñ¯ЖX§(Ø”zB2ÖLö¨¼&‡d=E•¶ ôس¯Ð ³¦äúA1A Tìö¤{%ž¡ÃÄUØç×
+iPcû ¦Éö„ùÞšDß`ÙØÉ)Èq~Ov‘hÛ‹<]xQçI2&lbBßô´¦2?¸Òl> HNÒ“ú±Q~'P™LŒ´ˆSª´@£DÉÿ¡ðPÑ÷l qÌ«J:DéïŸàw¤¡¡eÔôRo¾î½&Åd|wqý:Ú}î
+w°ycpm¸«µZejšƒB°K  ©iä¿Àk
+VÙ¾TŽv§žYpà2É¥¥~’3ÃT¿Œu2 h‹Ýá:¯t·½xåãy~,Qt0ZJ¹cu?«oKô׳]㡘;5Ieÿ¢# ó J)P û4²Wöd{Ç톷€múÑ0~!xR?&±ÃÚ‹Ðã[™H’aP0«b¦ð
+‰Û,0\®Áø+ÕØ´¨³¦be·Zû 0ô'¼v¸ëÁ§WC\,*à¶nˆú[šQjÊ_°!|ï…¿Ë áýj_…¿€lBîо×(×Ø5­=ÉLŸmèjÑî{Ø_¾Êߺò¸òµ mÀJBq53ƒ:P_…I¯è}ž¶;‹1#Â×PY&ªxNVYóeIÇ
+EyK‡íéØP覩iÞcÎ"Kl
+m<Í'.Š[ÅþÔßÅ0UKÇ!ûˆÆ3’ûV,&‘ à5ÁPòv)¥
+‡»sÉ 0Ì¡ÆòÓó¨%RP߸ÅPñª³/Ƹ“lyR*)A‡däìŠÐ²(”×þË["ZËæ/z}–ôµÍ@Ä N0LFú|ÌðQ/Ý$Ë6¾qš°(ÆqßBëÄ<Ä[EÇt"DI?ѦÊM+Ϋ,zÅ)³a}f„·§P=ŒK6Fâã”ÿœÂ­Aáe}÷A:ˆ‚ŠÂÈûí€0d!Bhþék¦\™d'ÒZ$Ÿ‘Ú»¡Ëí +@DGNm«%¨ÜÚ AýëÓ8ªÃPzð8#;F¦\Ürv0ùD Aë‚A«Løû†Êšˆ|£ ¿™,AwB¹s¹SèL—.)AÉŸÀOœ¤ã³\ Çš,òâ¡R•PÕ]DzÑŽ!Š9…bâæã‚ã‡áM‚žHJ_`%…ÛÆ9ÊÕ²è<§¤—…ìUeÒ¸¨e\Tò¸ŒÉ(x:çã,Çð;Ü@gˆZ2›©
+h`Ü“žmAŽ@ ¯­›”Þ¶ÂÛÊÞ¬¼g‡»^¤eÿ úÍ›ÚK3X«$~ŸÖÇv.†jnLƒÐ­(¼Q¡» ËÙ2¤Åº|Lç‘éèX!ì‚!{d^h¢'§ÞHÚ™ß/`§mcàø&P?±¯hJîQƒ’§’µBRcmJ–Únm1q¦›-Ba‘Ž¥ëöÑÚ,m5S™Ø6Û¾â­Ìn¡Y—z“<ÄYíx–*Њ wóx®¢“˜ãO¡Ð±ð»ÞL!ã܃e¾âsb²¹]±uüx‰l;nÒ™ ¹
+bå.?ž+fmö¨Ý„})2Èa¿*`fÐ2fpî ,Ûlû.}u|oŠÍ½PNWÛ¢mV¡TÇû5J×P^€¤Af1n=+¹5ÿùLšPFFÏ= 2mf`‰ý.½„¶rôª²9ÚÌ
+Êh¤¯–ÿ)Ùx3Aªú5¿‰ýµç/tÃÛllœ,èìï5DŸ¶Ž"ŽjÉåõz{/"tšSâ%ƒÀªvGØ!ƒSaEÉM]ý”%î÷•ÝnîÞ.s-úkß´ÁÐØ1…T-¦!…
+uRµ·,¨„T.@‹Ð©èª¡ûe‚Ñ‹
+è°subjY\]AÁ\nçèÉÌÈiBGíl½HÒý.ÝÎ1fbãW0U£Ô{X·AЗ1ƒ¡¼…—éðóžfâFºwxhòسöñ%ÜM ¯,ß%3©Šô{*abÚO³ê»Loìç-y’Ü{ÄFf´1"ù£Óò˜~qg_{Ær€2 ­H‚_‚BØ>ÔÝèÙdÂ^HÌ'íÂTÉ”[ñùŸ¸6IéÍßL~,¢ó‹Ã`<'!ÈØŒÑÓ}÷útò®ÞnTœ—l–Ó´NÇæ î Å¡+o›/9‘#4”_!Îð‘~ÀÍÑîæršæ½œwNo½Fƒ­ß¤¸ š
+Ä׆{>Gœèûp*gøšƒÒÿ¥"…zðŒ X›÷ÃP&j–ŽÔ«¤sO½Ñ÷tîÍ¢ù¼ü/ªí c”‘ŒX•Óç¾è/É„®¦ž¸!2žOµf%í¼š`¯Ù й[Ó»¨þÖØÄÞÓø iéM›yÿ$nÚØ6èS:#ðVƒ;õ ì~õ:Œ4sáVK8Õsøò…g-3™Ü~}ý\‰9¯í§ò©åµZa0M&•¡ôÄfpâhƒ29ò¼l‘k–v‰Å/Ó}³RNåêô @ n¢x¢SM±Ôü —çÃUÐë$ç™.zñ='‹ð=çZaÜÏ׳ÓLUzµYyèxÀG¢ý• OKÑ„©Óu/5á9<¶!p¢èË„½˜\«I»%l梳®7À³t[ªˆèHrö9˜³v½ÅÔ‡-a·„ÕmïÊrhÆeÄ—d0!Ñ•)ÀÃ9eT ñ™M|˜Gƒ¡¤`ö_DL¥áÆò]Š+§³jhYasÉàaÉ_[DËÇ¿ZU·$ÀcÂq‘´Ã±ãÌ߆‚Á3Ŧ§ò’Âbý7}©øÁ.?Ô¿¬M*ó$>Ë4Ï„]ê)÷gcQQ—èh¨¥ÈàMˆ{}oÙŠá°²Z€¿aõ›8üK¥­·jâ¬ìQüÏ+€Pµw½vs4ÿ‚+{í™4ß6Ô§Pv.ë@ªÈÜ}
+–šÝ6CMæ«•êbPb#BœŽyHÂl$J=¿X˜­Þû.ag0ô‹³UŽ1P½¢{úgbEÃMƒ]´“®ÏÄuW¶=­¡ö­ O´O©[ E5g"ØwåfòÛ xiC)€ß|P~Çb\QSo•"`VÍÑíБHlżäþ¢D`×y 2ÍS71e îëDq<)<er­V
+Ö87Ñ”D‰dÿ>ܦ>Ú¥8è{g0'ÐÜAÕpE­ðë€÷ÂsvF˜³ÌZW™ÞY‡4VÄË2daê l9ÕgópÕUËaáé= Ÿ\l‰³48Íߟ¯¡¡ |m0®9”m»`ßñÐCGWªSÚs<…Áíþêsó=¶µ÷Zà19c‚2O3í
+,
+º›×5 Jã‰Rªñ+Þ%ö Qí¼1Ùuå$& –ºù_܇‹Ügœ é¡ÛÛÚR¾¦© yP|Ð)Q+\‰ tèk—Rn¿öíàhŽú0 àK"²¼ÝJˆ|ãj€6c‚²ÅRy¶w 5¨õ%æ[M½K[°+aåJ@eW9ÕDíÿ1ß˳,`Åm>k=‰ÊºòÛÃÂæ4ûkkïþNY,Bt+?I‹{ÊRý”Œª°¸ÃÝ-SôYGÄž‰uÙCËwÌ‚ƒÞ^„nݴንï!NÖ_ÄÚÏÒ[Ÿ½oãå‰Àò×À
+&…¥Ò, lGÌr5JWÕ¹¯EÍÔ<ð+{7+aã°N`ˆgã)î> ç6ëJ£Ž×±Í÷ˆ/­^e*{$ùÔÝÈÅjp­¸YJžz
+–©xäÎTƒ¤|^™§½ßâ"Z‹WªªÅû>¼/ƒÀ èI¨3jÑÇ0TQ¨µKðbkL$­?N¨+#j¤- n)cU`qÕŠÈSò2£¼ß•à.áÏñ…þ´#‹3ˆlzKf¥¡þ½Ï·ÜþGƒõ£ÛÖû˹óÜIJ¹¥Š›àf%Åz|&½Çï ™µýÓò#&dÁ´+Á—´‰Jðgœ
+¤—vß™õzÓü.*ßAbÇÐ’µç>ç7öè×9_#Î^:U¼N5ø‹s5® ×~6ì 3
+fflkäZôé5YÄÖò¨ ÐÃ).{žÕ» `£T/q¼RCDîé
+Ú9¥†&ßDxnxÊ—1ä°ökÈ¢…7F[`†‡ø⻋Nö s90ÏÖ´ôe£ÌȼÑ#‘ɵÆn#ß* Y4Iã¥b´Ô>ºê.9EUh©”ï»i -±ÒOÙŒy¿Û„¸ÄUíÜŸ6ÍP@0p=åèÛXI¤A(S|L˜µÞ’ŠQ`ÆiNvÞÝŒ¸E4r"d&ÝƉ«Þ’ÕXÍ[™¯
+J¦y+Ý-x¾Oì5tÕ•MapòÀ럶õïµÁ+?5š?6Ÿ¥‚Öû;hž.§ñúµó'4…û³‹y™æ ‡_.^ŠÆH.Ù\©^cÊ<ÓM@ÒP²ál™äŠ8 .%±š ò]£²,›\O}â®Ö×97Š—¦g¤N·Ú{à”.ÀzØ/KAêIÂäh¡a¯Î<ñ¤HŒžlg^2C¡aÔ¨ä¦á§A¼«±=­ø*‰Úž¡oÔ.[
+~–VÇ™ëhÏ·~ÒŸP¾Á½
+zí
+ï–nK©Cî®Sò•ÀGVBõÝŒÚ+ gKsXìÔÏ0*Þ ^—U†nÀ}TÈš€¶bΫÎîØjš˜¹ €Vx÷:µÊ*'Ï¿b¹££c‚ñsñБ¿¿
+/G>zHû6Üêi ±«BÛ¹P(xžAšúX¦eͯì úHä2‹å5àš8ˆb¬3?ëýÖ¾bŽG„>cºè6É Òø[»ϬJÉØš ºyRºÇj§<¤gØ: ð4ÁlÒý¡§²e~AÁ¿¼P^‹+Á° JÑ̼`.¸’¯lFøtšå·u(U<S´ÛçÂ<ó*ãI
+®½ŸsVGo|/ á¾¼âiJµ‰z‘¿G5ÂF©d…à(àÇCãóè±W³
+Äã®—ÈøÃáûØ@z¹žï8ñØXU'@¤òDëžÙY®á^NoòT`Ùø,ñ€ÐbsÁð–;å´|¥AQEfççÝ=2Øk´®úc)&ýG[T0õð ¼ÐˆU9yNWÜ Ý¬p•s ,¢uÚæP5«Ú—g‘
+ ä[º8ŸÌ«Ñ5ÿœûý³Û0ìmz¨/'‘‘«VÁ®2,w<yº¨¾¯>äGÇ­Úþ^ÛѾŽ|Ñ×-s Y©짷?ƒ£› Û1ôÕ¬Ñwyb´±5ÔÞ–,Dˆ0*~òÆÅÚxèÌ­´RÒêŠo
+[
+I'àÚ=´T±Û“î¯`Ös”x4g¯%…r½‚uŽµË©Ê#÷»7\Âz!‰e‡mÙ­¯ô¬ ââÝ¥»ûÊ䇅Ô{ö¡û—N{Í2ªM½æ#¯¾AZà=ˆ%~X½£ø˜=Ã2Ýä˘"=‚ŒgÑ-Ô¿žsB¾&ÃAdʯë$*¯9ê=¾Â°]œŽ“‰25aÇ(
+4–oÕVd·Ç ;uéG=ž3”¾ûy±hˆ(dÿÙè7§ 6ä%X'ww½sÝn;ÐÉ4BBÝ1²ØÉã7ÞÚÚ)܆PRÙ7‡ª YÝ<v9^ÊïÅe…gÂqðñ‚›Ó¼Hþi-ÄoL·ôŒÿ`J¨‡‘*oÖd xw@)Êå7%}™d ³–KPµÌâã¹ûÜD¦Dx&)qB¤ŸÂñ)6úáM6ëô E9v”.í'3§É3¯É‘$ fŽòZèrý…ÒRtšlp•ö”[¾%K‰p_Ê ŽEYžnñÝêîúƒò–÷ýÉô¦Ùù14½å’"β2·½|‰ q#+ÒŠŽÐÆ´Çbrº§âÉZÂùíïôGí´Ñ¾Î8kúC¯‡îïô£>ã¬q˜&“ú´[ü_£~Uw¤ËäaôúÎå¨æœH{ª×â´”7.gî¾»=_Q0“†ª$3¶Š5ØÁ.Tþœmµ3;
+y åuÅì¹…‘fü~nÄÄ
+R2bèÐeÐ8½ÍPPò#)
+ìúžKDBw­”$ÂÒæCä¹¾)L2Ò»œ¶(Î]îœ$¨¨·ìúºx'+Lš™*›œY†·¼þ–Œ y³GèÞûËIS5ù'Oô@Xƒ8Käôâ´ñ ¡Õ6ã«SÁß ‡¨ÞôßÂÌîéO>«µë̯DIö8GJO$ýüJ–D)ûy øi2!Õ;-|ô\‚T‹¿ƒÔÞªœï[ˬ¯¨?=eû6 ó×­i1ˆ2b±ñŒ°@}‘•·à½;,;ëMÅ•y»Ä¹5´p0©ëBp÷Dd¨Po
+¢E+d…¨'Ö5Å´" èðD,ð¨¿&ÚxÚÒ´\¡cC>Ðä09×ÓÆÿ[TÜN´n'ÞV§î«Ä£„årö,aŽw=)ãuì Z€5©¿£ø¤ÂV$ó•™DÈwŒ±áåµ+†šKÖþÛô­Ð@º—.Žëx{iÕ
+ð¨§õt
+ÌOŠØ+0ú6j›Rß­$€sšƒ%Cl“‰YVx`o¡ÄŸqTÞ,8;´´ïÜÊfá\’Áƒnw
+å•}`Äá(§k%qcb7q¢ì?Ìø¸ÿieè®ÂѶE›û°[7Èà
+endstream
+endobj
+3178 0 obj
+<<
+/Type /FontDescriptor
+/FontName /JLCQTF+LMRoman10-Regular
+/Flags 4
+/FontBBox [-430 -290 1417 1127]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/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/Y/Z/a/ae/b/bracketleft/bracketright/c/colon/comma/d/e/eight/emdash/equal/exclam/f/ff/ffi/ffl/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/numbersign/o/oe/one/p/parenleft/parenright/percent/period/plus/q/question/quotedblleft/quotedblright/quoteright/r/s/section/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
+/FontFile 3177 0 R
+>>
+endobj
+3179 0 obj
+<<
+/Length1 2067
+/Length2 23163
+/Length3 0
+/Length 24429
+/Filter /FlateDecode
+>>
+stream
+xÚ´¶sx¤Û¶=Ûv*¶m;Vl§cvŒŽmÛN:¶»ÃŽÍ_zŸ{îÞçÜïß逸0&Ök®±f½$Jª "¦öÆ@I{;Ff^€¼‚Š½­‘ +ƒ
+ÐÜÕÆÈ ÀÊÈÌÌGA!æ4r±´·7rò¸\,
+
+ÿO¡(ý–Mæ¿•ó?ÿ"aU'{k ¦¥éÇ?è?BŒ\œ,=t™?®0ˇýãõï_úÿQ€âïéólQQ{/vVV
+fÊ!)xO+±µdã!VÒg:ðqÄswIB…-þ”…öòÒ¼ú¾IvÅZÁ˜6o›­‰UÓ7¦ÊÂ{F¾
+¾øH"ã9Œê
+Ëþå]¤4G²9ùÚ%ì³mñmD
+¸Ž&¾ª8û^äÁyùô í÷ 1#N
+[
+²¨ogj÷J‡ZÇqJÚßÓ[0…6Iª™QÁßIëúkŽÙCëAwDq ®Â/‹ô¯ÑE¥QËÍ;a¸â·™à$æ¬tû5Ó7EﱪT„²e.¢"íu …N'pâ'ï¿+XŸÄQ„˜ÎÍjN›6“¾Ëz
+•CS€’—Ú'Ž_^7¡6á¶ûðw1hM£‘ßæ.¥x£<S…úJ.´á Ö›m§>­Í< &‘}1àTC5†>AzYZË=2~µAéÛQ·à4K"/tæáv^
+h©÷ܹrÊœ÷À¹•Lna¡Ô¯ˆ¦úÔÀÂß~š?`ìf?ÉÅÊî¿Ã…ñ\XÞ„׳9è#!Uî> ”ýÊKåƒp8f„w“êç¾1•€ A=®v¾ŠÕQªÑûB’fá<*í Uá°z»ÿÎØ®çÎ<ƒfl48`qÖ'Ç¡¾ÎL=Dß®óÉ ¦khçU,ÝŒikÁ;hË Áå¥NÏ.9Å AË·q‚¸‚õ… ûN·
+Wð«‘EE|¯]/­õ,ÿrN¶2êE°-A¢1œ¢‘^Ä{Ú^”œŸLÝÕ¦8MÉ› ïË,¤ÿµÏ•u”¥22ô¸–”3Lúgq¦õõÌ’‰­Õ¬.x¡˜zˆ.Ú⃢I‘ˆs†NüÅÛ=‰ÿ*¦¤¹ÎŽùFpÓ—zjÓ
+¨ù½eÄåIü
+ï£ÑÑh¸`4põR€²O®Ï­ÃÀ©]ìLf iìÅm¤ ×}Á2Öç-y—ñ&cjÁ‚ç:É­”jÈøϞć2˜òª"ç(ðB.œE7ÉJ¼‚(QK¨?88À>#k0k?&å€a ¬ €ë[þn\¯±W9É}1æ–$Me ëîéƒeÃH!°ˆãq€Y1纉9IË™ˆ¥¬t9ƒUq–Þ#bQ3@nÛà霶c}ÂüÎïÐ ua€ËûÈ«e$±À"E*3ò:¥O] :Ò¿}ê!YÙu[7ñ•ü¦JŠ•5‘m›­VySNW ÚÞ÷—
+)‚Þ,œ¦N¼w¶_vËà<ÈS?•þAÞ¸é÷ߟRÁ²¼Æ†CÚ7B™‰§|¡ÄtëÁXCÕ†HXÑv¨Z-FgâÝŒø׺6Ø¿µÐºXáOå²JÅl”ôRÃAÖíÑIpQ)*ƒi(þ }ô&ÞŒñš5ýl™ÂÅG7çÛéµk¢÷l€m,.¯:n(+áÆgî1HIø8¼Pr"S{®ˆ‹¶™¯0¥°y¤úŒ@ÅžgÏ#]ìð<æÅ5i•KŸü*MCŸì{S¼ò†çÈ&ûrn£Ñõåáíu%ßõ!T{ö´Yü•R¬#é!t1'F/Ei`ô
+.ð^š’; ß/õ2kx¯»ÃWä)ø×~£b|cxˆ6È`Y‘Mûì>gÙDñó§s$Èâ2"£@2˜BC? •ôv1RPÍé ˜çéëFG ¼ L†ð鶢㮒š£÷X-É<7iœ%a›
+û›L£
+uw†3Ç6ŸLJÌ—!ò<îáÞÏñn^
+ô—ðsµ£D¤hù*CÐÜ“EX ±±RÉÆ–äJ6†=¥QWïõµ±;WBÑÝÄÚŽæ¨e2 2_ü[2©¡½i¦Îbª«J•‹è,õß7†%¦%ƱcÞ¾¡Í˜Çd/}ÜjnSª(}[8Ìú {a‘´#T
+›& EÁ«.¬5£û¯bCò#>ë©PpM¡œ×yÂ’6[4Ýä¦tô>Sê{ʼÈSý®!ÐO¼túÓÄ÷tJ.æѯ]KˆjÖûƒHóëê‹Óc\L”=2¨>µÂ}»cúót&N&½Š¬x¤¥ ú,™¯ªšEX¾üHO{©·_êÒ»üõój¹”ÏÝ Jœd,ž*I
+®5R–|ážÉàöAÇOôž;¼÷˜L&-Cu®@‡ü?f*žU¸§—Wajhk“¬CHæËpéÑMì¹%®3ý\h£¶
+f]<Zà]]§`³xK°²NØtJLø=ô~ž¹ waB9;3/?6ò;TÓ ­Ð¬.B›«.m«HÞkŇ´&W‘¸E)0åÖ]‡µß<'K™ºL‡ F6ұšï_º<R;ìU®ÙEx}ëA±dÒG ¦3‡˜¡Èþ—bÙ
+ô6ï9XŠ,Y€"È«³Zh¡Ž}y|²µË[šL•Ò“ñ½~œŠ;Ⱥ2<xÄÒ5Óã©”²¢–Û«»6¹îB9žæ:R’Õ:îNfÑSÔÚzNŽ[rýÚ螀Ýt…µÂw1¿{ÍÜVP"œFz”çkJ¡º±™pV–LÍ´Ì|º¦sæ(Ò8†ê¨Å3|¶ö+«âÙœ›¼tžì¤/^oÉl˜5›|!³ÚJkÌY›Ø—r…‘fÑî°«’Εròî“NF_»ñ®[H=Ö­:K\ý©é4>ã §’Æ6-6ÇþDÁ*$¼@(Èp¤äó毩”þ"·³ªà‘ÍéÂsE‰’ØêýÛgvºp—{ŽâiÀéGl~ôœÇ»MTá4¶rêeò4íÜ#}¡I± =ßg¬×ÊÖ’»0êóÜ{¹R?Gà+¶KDY3À…VD¿a§ÅE““GçT8c‘Žô´Êè#„¸&‰oH—£pÁêá,ò<œß9etMSóH#âL1—]OYïÌ)
+®µ¼Eƒ/âO¡F‹¹=JwGÜ2ìg·dÃö¥üblÆèv“~êB¦ÌO,!¡R®ìª±åHûð«wbŸåo¬¡‡ò€††¯>xœ±jñ(ñerræŸtÜ¢Ãrq,n_?QU™3Õ ¡ÂziŸ¶þVÀ:žxG¸“Nů}ÕR(ŒæLÊ”ª% úv%Ÿ°ôømº¾ Á†z.ñëœØ†;³b(ƒ œ…ø~¡k®ý©Pz<ñ»•3ÿ[Â
+ä{fVmªÎ{‘õU¢–Ê@…'èËá(Ŝ‰ä@"IwYdíWÅäNz+‘íЭJR©.XÙ0U•ax‚Ó èR8PXÁ O½·ÔÕ–#Šúˆ¹¡â÷)W´ì‹F0ü~Ñ`“ZHy9ÃP`ÞÇ_5žJ*e¯8‰êäŠÚ`ÔQz‰¸%r·±û9è2›¯òöËÒÅz;Öure|Ãp:½+Qü_¹2Æ›Íå#…A5a½‰e5u•cÒMvB/â§QÄ¡Û:t`X½ü-]ñ·67çz¢ôikÛí •é-Ãç½=ûìÊô誈¿@>ø¹ô.­Ö\9H$CbªK¦‘FvºœIuÎáíkçBäYÛ­Æç#8… }¥w3ÃBqþ›Äì²!ñ—Ñan€”Ç„Æ‚Øb¸ñwvžûPßƽÝLå½È:ìóJaŽ$Jp¨•q>ÊqÈSƒFÑ»ÏÇB(= ±Èàü^ßVz™è&6¸X4¸6D\´@å:… 9Źà+©R7ÕgÚ×·H{“›ÉØ,pªUwu¶ ô½ÛùÃ#5ܱ™þÂI¾Ð#ºÁI?6‰Bö“‹ð–ŽÃ)ß•ÏÕâtLóÙ†ÿ™:õ¦…IÍû9LuP-ôÛç¼Îgvø2gž  Æ!ÿ 'þ[>PÎ톾¬.7J]kûéNünþÏßpTjfÝÔ
+Íßù Â…qyýÞ‹ȼÂÑ$N˜]¶çg¶)¦ç9Q±í0°EêØø
+õõ—¶»â‚¹ˆ‹ÏLã?ž&ò‰²ñm$uF_î¤^FôHJá,ª•¡!îiÞ*±šö päGyùm›?Ê׋á|IwûÍ%pZÉÙ5‘…w00ÁzI¢ÔÝù †æ¶B. l¨J½Œ¶7Huæ„ %Ø…PÕÉÁ³œ5¸h;X!×>Ì26mÿ~æcph.xð´íu¸- .ÍIŽj`ÕF²#¸s½´uêz¡YD áÒS­ývïŒ ã@¨<d²VBGká9t«‡~UíÑ#§–“WLV‚å6«D·æ”„];|B}ã€ËŸ'
+y.©BÔœÌp‘4CõMhÁšw<[êÈ®ÔÕß+Né—F¾†ÒoÖO’Ï„¶¦æ嚶 óhl?éú¡î³Ë¶‚„Ï…)ÙÏúž¬q8­”R&2ïC]|&8˜œ:P-¼þt OoÍ/€¿÷Ñh1«Ø%u(¨:±+—3¦«E?ˆ£œWû›®h¡ °¶Ñ¤ í?qø–6¨´C´’*¯ãkû¤Ë"㘷 2ÕMżŒöº1ƒÕÞN`ˆI½Êá‡Ä¼RÿãžÏêè&ý
+’¨õ³Øqâ*ü0(_»‰ëñ—úßF±× l°Îöò‚™h0Si'uéëö}Â?±jE^4qœÏ.áÕJahÓ(:u³c‡Hf§¢Ž›C¦‘p –-3ãx}›%àò;†¸;šfY¢ìì[Ê;Žò˜AB)2åQÄ
+B¿¡aÇÕҗǤê4‡'Ÿ$[ wÕ^+@9s*0ÀtšÜ<7híø½È<„Vj ±è´ôI7!˜ 5s$4g°
+dOçò4¦ì°u/o“ž4D×êR»V¶ï²„3¶.=˜ÊÓ:ÊæÚwçÓ Ð›=C ïH-QrÝ]_W’Ž ߈MŸ‹/ö*MöêºÀìjž
+$Ùø­9šŒÍ´!¿XT"!±vñ¤ž?/·³ÏŠò1àpÝeD©‘Ö­¾»ÅÉ‘£el1D˜kÜjè ŽyP*-ÈÅLpßÞZ{¸á–_ä0rø/Ù5&ÙP/C”ˆ[I'Õ¼N*£KC0ò[`¥?àÈYBµî¾`£í+±e"›i*‚S÷šn†«9ò`¿Ï¶ÃN­ò?è×Ón¢¡PùØÄ«GQw¨lÝQa´×¡¢-½/y1Y7€,ŸI-e‹Ú…Øá—lÖ_”óºz/‹óŠŠº¿ËâCà*8•dooÌTZȨjá¼°«§Ë.ÆTŠšmfôÖ‹ç® ý~ð¹™Çº~éýí R™h~݇–XüDAlÚÌÁk×}!/VëttØ¿ÆÓç„ ˜E0±â-?fu‘’§5Þo3»–uo;ýz®¤º¶Ø Ú4Á˸I•r¬¤¿§%:Yü맴ÜX@œQtfbù]p ¯ÓÖ N[°8M'Ÿ–Hè}oDs˜%êžÚ6ã´oÖú0}Z»o¬lôøöÌ/’0ÐãgÐV»Ò‰d°rË¢6QbnR׋}O<Gg•´‡¡ô3U“|ÉŠÔ92VÕä–-À[y8dµPïË·w/)ø’F£ºP؉:!ðE«rÞwcÙówýQ½úLfó³åÆO± ¨?—¬—-fßt^TwÀ}Æ ‚4†*Qj%-C’qBŸ6%?ëk[äÀ2pŒ të“| IüÍ£3ÏLRî¿ÖÚ8&"Ï„µ–UÓÅ÷ ýüú‹U*Õ¦¿>gn¼E¨ú %åÚŒ1Øüide·9ΞOµ\Ûs
+òm¯î8ÁHçùu6;œ1T©y{†Æ¿zÂRÎèÎðæ¹nìá ÏÓ8FLãó^´˜Ø3³„¸-/¦ÏŽ–9&æá8yã;¬˜?H+l!û v£Ä aš©If…}–îZÇM>Ç‹['ÿQUØÚdf1§“`ÍMÍZû–ë"5ÌIl±ÈŠà^4•B@6-Ih=®²aî¢IPv‹f`pê³)Ý•Å/ÄÖhø4¡®¶¨µ™·>I$+ö.%€{ºK`whí¾^·ŽÇ•Æ —ÐÍR¨Ã¸G^îÂøÔ@®aY”¦d›ù%ì6Oõô碫ñÛ|å؈SCP;¶†L¨ÒSzƒÃ) Ç<Æ;é¹K&5z "u‹Ð8KX{>ÚÊ&&S¾`rHµ[A¯{? N*ØIb¬)…‹¹ËýUB¤¾õ×´M†Yr¼Þ×Ôy›j”Ú?ÓiW¼M†±bh™¯p´èµSsêÖ+dž‘h„3&âv¾‹QÿÊ&ÔÂôæ0³cmJ>÷Ãhou@ª2^°šI«ÃF“Eæoa–<|ŽN’üBš²rœ/þø¹'S~}ZÚµ=ËZ79Ï%²Ã†Sö*æÖÌPÒßì+füfÖÃ;.,µÝ å+ܪե3)ŠÛôúiü'sæÊÆZv7ÏX¼0ÈSDnºrï‰<³–žÚ®Ùˆ˜·}v¡ä¯úÍX¸Ù¡“Þ†: /1Ì‹Ó]wУÒe”Ï-ÐH…ŒwÏ·úÈö+{H|¿fYÀ’–m<Å4§GLýJS¹ƒg‚¬ˆ`Ê–
+Â3[†µq¼Q9q+ÇæÜœtß© [Gñü~V`¬C’˜ IQÏDo8p_Ú#µr ø•80x—T¹ÉÇfpL”ËN³éÖözIÄ)”Á×™N@÷šbTP…Éü&Y5 éê«Ø#J/ZÅD¾ÄFüèU“§< Îäñÿ¤‡bª¹¾l+©|¢É Ó1†Œ%~2è¾¢œsNWª`)9•W,ɔɕCû|-ysÊr%?žŽ#ÂNðñ¼&é|q²« •.¢`¤››ýs“²ªÍ˜ÿ½J߉Vþ|•]û Î¥/þNMøH>ЈÅ÷
+&%þdEU2þ+ôi,Š
+@{k¬Íû¬2ÝwÕ
+Ïëè¿!û]IäœÓG´ÕR1Z†88·X„ä 7Êj‰îÔ°häkH9o”_\áªA¤\Èäá¢ÆýÆsU`b/0ÑmÅ+\®Ã&;# ‘Ÿ§‹zãà×PÑôvûLº¸2G2c±¿HK#"VÏMaU+Û|œrÆšwGÇ­╸ƒI5`Þ<ÿŒÑ9v8
+™Uw!´‚À0ÿ­Ì3ƒì;Žl‹wÇÒ|KH…Ÿþ(Ï—¢ûóGB“*åèJ½—=´P]ÀðJmeÑ ÔY‹ZºXôå.”R\¸Ü
+µ…xÿ7Uv`âŘ½ ˆ;<O}˜É‚ªFã§Kcƒ`VÒ%
+Òù˜›´ûSý
+Z,–ñ±ž(æ"~,œý,‹C¦n ü<Hòf¶O÷qÝw
+ê~ß|!ó µ
+**¹Dwëõc !êŒÖð¶&Òã§Ààïˆ<÷KeÉÝÎã:²iA¬cÐtÞ¢Ò¨°jÑ1
+¦Šfm’Lì°¢Žt×I;†úõeŒ´nïë5çÍr[,WŠìh±—- F÷‘’}†
+þÛ–8_ÉG
+ ,Q X=©@¨ÓÞ®8šd™€/Í›a#ê³çÁsOZ*ýÞퟯ„Fc_»&¼Þý‹¥C_w§eÙI©õ‰1øl_c©2ï,ZoGã6Y’[ä¾Ýak Í—R~qT†Øº™@bF¹[ :.»ÿ--ý ví™*Ã7Å+LÖÚo=K—!1P¼Ÿò¼+lˆÐeýK¢uÛЫÇ;s!»oÈâãb²±d‹ýúU$‰²ÁÃS*ú‡~è0Û€æEî5 ãL
+Z^)Y¢9Ýl*É~üéþ[E÷Ú”FVÞ„*]Σœv\Œõ,+Ž#7EÈ—†˜^.C¬GӌΠZkÿ2ýÍY:yQÉ0¼ÊnsdÍ6j Zãà¼ÄGÐü§0êÊúÃ0œì]½eÛöD€v€Lá B øg¥¤ò·œû
+yƨ_×°ªŽ)7¸¿œ.ˆ®G"Ûˆ§Ÿú¼<o¦eÍåH¹~áU•í Áú{«-Ý„^泿>T¨Óùú¢”kúÎ-hC“ €Š`ÄqðÎxKθmº…L0ÿ` †N…i8”*u‰w;†ŽÛ¹Ávë»ëÑ-š¯\NÚî·#ÞÑ)ú‰:ÜVÈønáÜ¿åÖ삨–\*I$xÿê‚þc{'ÄqnÕXý ¸[߉¸ Oº]€½ÏVÞ©À)òªRÕEV옞WSþ«ßTÒ4\—º5Ñy¹Q¾ðe'î/{ú¹Ñ@Ö¢Æ;™Ï£†ml°ï*²ƒ}Q,ȘÕE
+?6Ž{à/x­;~>õ#,ö­À‡ñÀ5;Òö‹þÖïïjаR±àùžÂmÂxÚEÄ¢ÅÞ‚ùù>oJ’—óV¸Ù·UáG;ÅlÚ´?å7P:ºyþhx_ÑÊ4K/9ÝrEu¾g’Œûƒ›Ì2qUÅýÈÀµá®Œ7*}Øm÷·IU#ú¯qR|Öh‘:¿/„„\M²ÏŽÝ,HAeÈ4¿lsÑ@ݦtmŒS“AÒ(¤‹¿:õŽÀ –¬ý8ªâ†DtþÎQmëÜebÆw‚ EfØì‡&ªwGù´á*Ði‡³Èc[ÙÕ_ƒ
+מ’–ôü]¯Ñ¿„¾F¬÷ý¼9¡ »¡ ‚Š¸Ùô©Åñ¾\Ç`t„ÉYìp¯H‘)+æwì…$mé/¤®ß•_:Îv‹ZäåÍýÁ*ñåIŸ*þÖø XŽMñwý1…ïàf® ¼–ŒÐŽ‡M!(f–lú»]ƒÈ¤:môÉÉ:b_CÃA‹œÂÉž©¢" ÈèSpU9IwUC =™ë=”ôvQòB hläØöë¸öeAÂ#s‘bP˜ž¶¿mܪú‰eÄ:OÒ™¾yÕ|&‹mC¦rT2•Üų¹ÇÐiA?Km‡%Ê ú­'´:zW°¨¤™É4´8,¸,ÚÀ›^±mzŠ‚Î/.zîÍmMn…/æ9``šê`‡i#aˆ"Ÿâí‹Ê&AŠ•d¦ïÄpùä×»U—Ö‹]ØÉgXSŠÛQ…@[(‘1:íEWbÙѾãp«Ò–ñ™‡ŠÅExOATK©&ûý;
+—h3) í5‚ë|5‚Z£*ûèvL´F–܉7IØIÌnËða¹æQå¨mÔ¬8Žr[Ž(TëÚ¢™â˜·n¶q}6L
+’óU
+اP3WèÂ8•‘#vöJ<ñHDˆcRYæU«êö³±93pïã.õô‡l?UEäœ"…h‰,¼žßAŽçd¯­€¦,]¾@'ZFù<÷¡cøÕ]µwèÍ1lÖ ™«`ˆc1¸‚Ñ…ñše•áNÝgk²¢L]œ(^½ßÖ çz%å[j±Ólÿ¯ãrÊKÊ2º(Æ*Ææb@ÁiF1SŽY37„\˜þlÆ•kn«ɳ£q8Ë
+'%OìaÖWç KRž9VPn!ÍŒ‘Ú2ÉCÅ äË襕iæ'`Ø, 0°.
+ÀÜÒ 'mj+im‰"‰ôµoGgšäºq(3#×Ó~˜óq%Èê]éxPŠš;„2玞 ˜¬ñ…¨æè*,Xìë~œÃÍC=í›ÈªeSŸê¼×Á%Nb“Ô‡K 3Mqž9÷Š$í«ÓtNÛMÐ¥7|œÚî:ŒÊR¹†L1¯%ÄÁÁhû>-ö€nÍ»easû‹ç'à¡´
+ »–ÒóSFóñù¹58ª´å„nyÒG´„ŒÿíâYéŒkl 7m
+­±CƜ̦"’¥Bµõõ ÛDåÈŽŠ˜l/~w
+øMpÖûñÍîÍ5°‰Ë_¸ªulW9í¸©3ž„{{k›>~øĦn]vŽ9JnYb¤èõ !7*×LÁ$’+µsm”m'Ukè,ƒŸmRmå½·03ÙžÖîILß1ŽÞ­ÐÌ'ùD¨@`8±gÖSï%yÐ0ø¬Ñ¬ RË).#Í5àmÃI]Œ°3P븢’êÌOðºbŸå–t¹›ì|Òä9B7¬›¤us4=[F²®—/¶ýÍ@äxVKúwÓu}õoûçÊÈs0¤ö§WÐIŠÍ(Ãû°–ˆ
+ë2«s7û’Ö¤s·¨ŽZºÇ­€:Ñz_bhPœ³J.-.Ú åGEòL§´-ópܘ”ý#Ĭ»vƒ‰¬ªÓ&:
+C?YñE(.Â|Ck3ÄÂ(¤
+$ó—íw~—É\Ÿ‡ù#ÅD˜$†)®A4ïÅ“ðü! Wù.B8çºÒuÁ`ã#–ó..Šwg„13.ŒZ°"Øê-ÓŠ‡ßºá»P\Oº2å
+pÃä1ßQ4eö0w¦S;ù‡Oc@Á4 ¦dîÛ…Ë|Ëûõ³’
+8CCÞÖн¿¯jùÊ@VO(‰OÍ^Lå}+¯ˆ
+$¦è!X3do‘ш)TÊ#ò ¥ÅãÌK %@0LtæóÂ`ðÛ
+pgÙ;]0!ÿµktÙ~ƒêµ­$þ‹è…òrV öf=ìéGc·z×yÚPf²þx‹Ù5FÄ.mïýWsïu~&¿vÚ–Xæˆc0¼ØLË‹j%SGNþ¯&þ*}$ÆmK÷ĈC ’›PӛܘûÅq|’mp:[9X½—` ¼õÔÃ%B6ÜÆûåé •EäZOñý‰IáU¯…x3#“V‘yKŒÄÞ¥äpàå5Þ»’L¿Äw¥½}Ðw5dn¨H[œ–$öa+ò§Û±R+­‚6‚w˜ûwäJÊ&×'w¯ dD~æß8—<Ãf (Ÿ‡tÁë5Zœw9Ý™Ë+,go€»ÉBRh¥×b–¼úJxË$Ì¡*Ê®É𿹧ªÖéG¹KRЕ”fûEìw^-ž)zž}Â=x¶*Ëí–Vœß,ž!¾Ï²êÛàíÙZQ
+<Wa9<Ýâ®ÌHÍB5A›±¿°f‘q>«êo„GVŸ0Œ‰ܦ(ÙqïOæÖ}¥š'×ã°Ýû
+øYÒ¬wiWèœ|êøÊÜdÜ*— ‘ÁT„)¸ ®• HŸ÷-I„¨ƒ¸j¦¶fªk,Þ[Ñ{¾d.è†×#¤±%V j÷¶8v·Ètö¶•Ü²“^Uúsô^ÊᦴéwkTæLãz:¯á±¯—ªgv'C~qP­:Ί-åHƒå!­fWN˜˜±8fLÕ:"³`¡s¥D)Pê‹çÓž¿Ÿ«IüSñx=ÂÝ‘†={÷Óa­lŽa Cùw:Ö-5Œªß³tŒ‘´ Ù›„•ë„DU¯k¥²ðg,û,l᥾gðç´‚‰­¶NêÇ » ­¤³JÔäË~ƒJkÇI©ðÚìÅAÍÀÅψeUh)œ
+ ˆî<(ñX o¼è—y3®»´ÉðK?_¾æã‚zú½hfÖLÕÕÖÒøL;a’ò/Ü
+þªXƒ|0kgÆdœº íUw¥¦SqKÝ€ØnҀǘ}Y£âÓÉò†Ã
+¤Åñ
+“°ÅŒiæväYP}mQ½Ž®Ÿ•”Ãzí2ETЯ·äKLã°!-ñÛØ7/ÖÄlJЃèóÈÒdL<¯àG'\`·¡_·7³HÓO„Tã™Á!šÖ’È’_¥ÍÖu>Ë<£PÐqž@ôNj£°¬Õ’19‚ìÜne¦¯t]mÿ ,±‹©Ë;Ó—‡Ãî%=žÇ°´l"±*ªg¥½Í¦¶³«GxlüI®ÔÂ,W#m/¸ Ù˜ìô¯äÕÇqè.Þ²ï[Q¶dxôÑ…ëÂ:Õ7ýÕ?r,â£ðIdˆòk)Ú2rÑ>xUj6–àÝ~úÊÃ<½{Çw’ÖÓ>1ÿE|1h %Ñá÷»
+/ò¥ŽQ.òIÄ/C Ý  iÀ²ŽcÍ*ý¨ŽwöÕq¹¶–Ío•èüL Ò"O‹“¯}ûó&AbÅ’öÚÁô³¬©³Û—I
+¾`ðsGü¸²ÁX™€[ wÆ2؃ëÊmï¦Ú<0|¡FúµÓíë§V[X*çúwTœm7o‹s¢| ‹óóá› '7ÔxÅù”½Ð
+¡</_jº-IÙïÂ{(™Ï~Lº‚Ÿ±¨1f‰)Ó߶p: ÷«cƒ43¡_6‹©NQjÝC‡ç¥!õ¦Ê$€_¾Î†Ž¼h­Y-•kh²¡V.ÿb|–ØeÍê^þâB€åʨ¯£t,TÙ&œ#%Æž]Œên!;0fY†ŠÜŒ>¨_ÐMK¨‡< k©žo¼X»Í?;Ô¢wƒæ_ª¬Ø Œ‚ÑëÆéUV)ï+0ËF”høô•j1˜ïÓŸ¿¤Ö÷ 5†ÑL®(Úº÷¸¹ Š$Ÿ[(’EO×k%©®¨S AD ñ¶ØÌSåh›š’–öX[:ÅgŽñ0ÄG¦Ç%€
+a­X,¹ G}©¨ YËmîOð‹OÞSÆL,E‹Ÿ^P°F«`g)Vc·[j>Mòèé‰D““–o0Iêu„´ä¼ˆè‘ !¬µ8œç*a;&ý3¼jáò­oD<Ô+näË.ëÞIˆ_k½œÞ2^%\–-¢·©mO€%FÏAyDzþþÝŒD ïïYt…ž¤ÀÑË:‰õâç/O( “yÝÒšÃÑ&뿘 8¤Ž˜8tPT}Ö/—²ý i£#¼ÂWGD”þ¬‘¤·)ÓúïOmÒûà W¸îÏ`vôæ×<
+‚·žœ¹ÊØwLGD‰ï\¹ÈüØÇLèF/zcY¹Ô‹ÍßÆS«jPz­ªw»FЇEËI“ªyd{¸YUÐÖ²¢7¦hTQ0|àý)¡RÅíH§ÈÉ’,¢»øìgRżt%pfÀÍæüæ0 MäÐpöÛø—4†!çË«G»
+/å LB1†e¹€l]ÈÒ·1ªŒˆ5.é,5x 6fÓZÝæwʶEPœ=qŧºÍ9ýeL’@hS§f™º¾û³ÇÝü^›¼y›R°‰†ä‹,drØXÛ½X•ïúqkýÒ8¢¡k=Ù§sɶÛÄÞ|:s'÷s$sí¿ô¤ÍäiùK§ÙÝ«\ÖmfE/øCWoR”Àð<•“ß\g±ož¸}©)‹îøWçó“𽙿/D'EÊuRœXEèŠU´rëäžTž Œ%vç /0{®~ûþ½<‡))
+ûgõ¶˜ÜÒ.1
+š;
+7UC³ÁíKINQ~Øõ5‘.±'¢H 6¬rÇMí«±Ì&×S°Ú‹5ÁXÞÄ#WM2à",úòg±1xR¾WOgî^ ‹­Ækîé‰ÔkÛW%Ló2ˆÇ¶uFÊóÝù›´;–ðxsþ:üê0úG ’g'ÿætN¯K-bæhÎ@ùÂÌo•#1³Oúëäg㼿¸Ù³ûÈÝ•ù½ô¶³¿åïÃ~‡Kð“„\tVˆ ¤Á%ÊñNr’ž1ÄÝçÞcËÎ䃰êÔ¼½-\GTËj·£»DÚÑì¼AQéï
+RãYüIÐF­GbWež¹¬-#ŒE#›;¸é>[ÛG 7ŽãM)ŠQä ‡WHD>Œkq¬²Œ1|, §ž1$J§J8ŠÜ®¼¯ª%ˆÖdëTa@x+çÄh]­RÕEã\|©‚;.ßQ"’ïý cå;XÞÖP]Á´ 9x³d<,EÏ\pçhfýÜøÚ)ÍðŽÓìp$]\ØŠ¶{†¢íHSH”:Ѭ–Ý™xä!Ú¹¶Ð@·úÝ
+}=8¿…5T†mµ3#Å4@E©Â‰¬›ULfhˆúÁ.Ì)dõ¿ì0T2å!½{ò}­vcÝU7¬ Ïp0Äùm˜Êü…².è¥Þ¬ e?TdIأΘ×ÇócS
+÷'õøÆÉeéP…6ˆ;Ú”æ›g¶?ªØ é20ô£QR;Ev,ï@ ìoý7úi˜[«ô¸/’\Aä{ËA4}ƒra¥v]˜spçTµÊ½ƒbêØ#NKŸ­¾0ñäû%H'°)ýÞåŽR—(uôúô=çÖLŸ%•^p»mô$À¨ 'ú}܆û_ió-„­]@²–¼¼ãS©ŸµÒ_ÒÆÆÔß{ÂÝxz
+®IЀ*ŠqÞÝ3ÜؘÒÃMH
+ÇÐÔ±åQœR~F|ŠÇU\Êj
+k…]ì~vuìÖØÌÀ4ƒ•÷r‹!§VªoCÒ­:xäWs|^ÜCóaà®ÙÏ®3º¡ JE_ÇKçoô¦7¿b¤)y~x_KaVCžF1Pu•}õÃP•ð1E8ùkù(G„63jeÖ_(ð•è…Â`ân]™Ä¸Gc½pBìžÌèù
+>æW±«¤l9«{wûïæ%Û¾MÂÎ7uÁ6ºÁ^oF}x‡6ö«Ô:M™­%»Ò;ãß°èº*oÐoô÷¼Ðâ7”Óˆt+Ç^hO>km7¹ì’q4»æ—ÙÊŽÿòÏ(?¼o®tT‘-“ývmÑ{ýkÔÐ>èeœ–32Hó·Ÿ
+c@»!šbêgb7S?òhnsÁnf¶óXârùðFmç³Þ‰Ö<1Ž“oú;ÇÄKˆ¶Ã ²TAÝ x冦× Öï Ô/øáª=}î„{dÉ­Ù•·xðìH+"K=Dè€oSqš<Úù¿¨Ê˜ aëÓ£7žˆDÞ§¾ eY‡~CÇÛj³<Ž¾ÖqHÉL˜Nøu¶ ÛËü”á¥xkýE»>UƒØri5BÝË0[|)%ã"ûIL —yÄ¿6žL¶ãjú‚Î?vVŠ8 J§Æ¿…°’5ù´èŸƒ ‹”-
+;Žm±J¢Y‚xîFanŸÚ$GŸI™aÑê–¬]ÿÕ*ŸV`èŤ ï©u6å#Úœ?÷|!
+Ô£%è¸sa¸‹AUo¶–ቯüY`2EßµÙóë³_¨,…GÌá}Tñí¹éQ9eÍñšÛ‚„Œ©-=)x*
+>®¤ÂJêT¤m³ÚfjV€÷adv»
+6¨Óz˼¯Sð”ÎÔjþ½$«ì‘n:ÒJmËoei,„#Ì|DÃýcñ#öé€êûFûÊEI$dóâÜåoòFuÈ®í$ü³í–s€)ÑÙÄKfƒx`´ˆ†hk¸QæÏŸG cùí·§iosó36( §?—d?*{2¡‰Î¢çQœ'V…qã'²ÃË´oäê-ä×òÑ–FtÃb ç7Ú&d­ëÇǼ"rr<j˜¦òaežgÐÛõôJåKÇ‹1|½*Õ¼ ×\;.43$žÛ_Ì»ù˜äÄ@†¾âþÖB$¡š¼Ç䞸c_‘M«[—¼CýÇì±Älm6~ó£*ýUFæ*‘PÜÛw[ŸZydCSq÷#©ë¨áªFƒ€ßÎ: CbÂ^X,EÂL
+‚Å£jîËÌõ"+PeMé{™-?ìËRêì\|ýðòá_0:¤0»v­‘"¯½•åØ/Oó¶?¥w_VK‘óo°TW¦R$ª´ä”Z{WdÕÍÚI›9^Êg :ÇǪ¶ÃXøÁ_"6‰& ù½;´Ë^Y.ò[qÓÜ¿Êp¬
+ZÄ ù0%)jà“%Ó¬zÁZü¤Ã‰ä„¼›ó*ÖÛ Ã5`¶ËÀû³qé5+ Qf~q9•|¡@ñß*÷ß+òr ð4Ìb¶¤&ÍÜïé{_á!øŸè g¡(&ÍSÚ‰xݪòuáSF¯7(ÕË4Neð‘)¨É*-Uk€^0©G8¥qa>ÿø8ÅξÙ5ŒšŽýAÜ®s.!ÎP]²aB¼†õ‚8fƦü
+F}ï0<;>V„FʹëûññEj–c&»®„/:Ù·õ]±Ãà9 D±¥z… Á΄7Q§ð]”. 1¼#ÈýS´c…kmg±ÅxŽ [J™&ºªàî¿ÖÝ! “Ë i.óyR
+ÂkòÆc85EÒ“úá‡ÄÞxîgµ±G¾;2¥Çï>ÌÛq¬ü)þ|PáF¥¤»L¤C)8°+Bèš°&NJÀÂÖ}ch.˜­ëÓ˜òôþúÒ#‹À1¯7 <¨éú¾U2õPŸU=p·˜bvÉUFEUŽ_(ro8UVì
+DH$‘XUcÌ’ÿ?ši¦®|˜ÐCí«+°Ë¾Ø`yi ÚÑîcºÞ8ä3o¶I:Ë ã¢ö]TsC¨
+Ø™ßt£crÊðèx#žD4Éèõnº?¸m]¥ ÅËèpø§ a‹ƒÂƶ<çÚAÏ^#Û²I}ŠL¼¿¸L’û%Ï Ì׈á+ÕëpÛŠVs ¥­ºPú¾žN¯–¹72‹…P;0a²W^š´`!;%­ùÅ‚w÷ÖÿvuÖ_š03LáxëéØ$NRNÁä•ì¨ ÇšL,¿J…JË(€Ûí"„|:xìËmþ “éSVf»š×)(u@ׯeº ëÁçY°ÔhÏå–ª†|=d=ÇÌ®¬ºÚ·¥Yñê·Lm¿Fdú9ñÛë\•¬~Èh¿ú9ØÕ¸~¨GðÝFXwcÌ&@ £-ËpIn?Ë+Ÿ0^3¸p0:*BÉÔÿùtÔL8 ´-s¢“ùÐ/ºç`RïHm‡3¶<?=k耆;`²Ù4O°çAÂ7Às©ýU=é¤
+‰<½oçoE*\Os”úxÁêrTô½«4êkÓЀ-êÂJiÉ*CJ·¦£˜[ØùÚ*â~%:Cme2ÕÀ½ùïnRG?­=|uzFÆ>Ej"-\n?J Peîq¾î—T*Üõ‘™4†»zÞNØGÝm¶à›l2Ó´û¦”§Å‚LÎHžÖT(R‡Ý øðúÛPtÞðŸ)g­¿w QòN/>¯*ÎÞ¤?()Ã`œ·´»(Œ Fâëõ6„;œ¤íUlË![ z6seD°#Büpšæ m¼Þ |<Âð]´Ç`öÜÃgBÐ’H‡Ae j’Û¢<Žk µêD8š` kËäD=aJã¸\fP„X'¡µþÓ“˜Ÿ†2™l”Bä¶ñüCQ©¡Oâ"ŒõZ—v$øþ|Å• 9cÀJÂ6såÎÒa½w|°:mpŸK,¡
+^ß¾ô|††AkãŽû çMûtÿ,*¯Bïäb$Î ÷Ü+¸mê…‡…c·´Ù8ƒšê;³â·*ÔýŒ²Óã\ŒÙ ù Ç€ƒeXÂÍ¡xW ºå¤½$í/ýWP6˜ƒß?ŸdÞšÃý•o¸›ï’žÊ¶„ªË O3˜L1ƒ
+´§×453!¶&©G¯%°ÞuÈë$¤Ž×(¿é®›AAQ“ovÓBÇ^ÖŽElsþè
+endstream
+endobj
+3180 0 obj
+<<
+/Type /FontDescriptor
+/FontName /MWYZYS+LMRoman12-Regular
+/Flags 4
+/FontBBox [-422 -280 1394 1127]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/CharSet (/H/K/P/S/T/W/a/b/c/comma/d/e/eight/f/i/l/m/n/o/one/p/period/r/s/t/two/v/y/zero)
+/FontFile 3179 0 R
+>>
+endobj
+3181 0 obj
+<<
+/Length1 1744
+/Length2 20272
+/Length3 0
+/Length 21371
+/Filter /FlateDecode
+>>
+stream
+xÚ´ºcx¤Ý¶.§ƒŽtR±mÛvÒ1*èØV‡Û¶;¶ŽmÛvò¥ßµ÷Ù{­sþ~W]UO ßsŒ{ŽúS¤„
+Ê´‚Æ6†@1kGZF:.€Œ¬’•5#;­ÐÔÉÒÀÀDÇÀÀKJ*l4p4·±1prØÍ
+ƒGZC‡O3ÐÚÔÜHù"lcëfonjæø73-íßL£…è
+¢ŒôÏ
+3GG[.zz:S'G:{S:[Ë𩘙;
+
+2
+4‚]š·1âø‘ÔTâ-š7Y
+IÊIwZŽÁ§!±”:Ù†‹%’½MäÏ÷kòM#Ë·‘‘àÒñNð³.Ô @·|_oŽ¯˜¸5VØ1ð–õÆEÍR£Sý™&»è[ÚADy$••«YÄ2ÖÓ‚P=ælë|Š`ÿ@¾N$Ò.mYÍt)˜elD³·Dq]DÂiÇ]œluüxB‹
+7è\¢šÑÏ Â•‚²íîDÒQCMV-Ú'›•Ú哆i«éªæÿs«cb/+Ÿ6UÉ£SžG4wE&‹U-WÀÂ?q½…ÂÌt?‡Ž×*¸1©º=&iEDw‹+ÊX8?ßjFÚCP&iCôÆ-^}DÖ\¥Ý²/D×:Þ-ù
+o{ÿøÑ~ömTáAÙ¬\£’D˜ôÄ2Ïz¤Åzä E—C-Ó ''ˆÅFÞp±ÓU…`i=Ü&ÇTÙU“øöšh³­¢1›üÅ€  ž.-©:
+X9ÄÑj£JJ‰¥¢4‹Z3·.F¾Xyk|±¹âתM¯>è@–GYÇTØʵ¿Dæ…|´ñѸ.¢ÓWñŽ>Ý÷Æm%Î¥©Ï_‡æ;£a>½€_ýä¡=„;ÖSV§ÂÞVÍ÷®ú­“´¼‡|Â4Œ«S[yåŇOêòF1ʃígv?œ<˜×"Öé Òéq´Þ””ÎW˜ÆÚP&Žø¥00µ©oÑ®ê >œUéa™ç*ß¡é÷rÃgã³)Æ:!„š’X·wèRŒ@ÓöTCÎ(èî1%‚,Þ!O{Ó;+sqÄéôš»•Áß`^äfͲˆÉÔÅ<Ñ
+>|¼p+Ïå±û‘²k\&.ÍoN –ÌSÅ
+5ât´aŸOç¿ûô†Õ—-W!¨mSOpP?Æšþ’6*8%÷õS0Mœ-! Ãs†ó âK·÷³zª‡ Ëä6ˆþIâ¥[sÒÑpÜ »”7§-åþ¤å¦OO?‘š²xå%ÑdØòà©DO:rx|r£¸ê^—ˆí¼½ |ì¢ÝóeÃÎpâú‰Ùä·ÙîDÄ÷"¾ºhT;&;øÑìMÔQýJUºi"ynβ_8‚ƒs-ÊsA¢‡¼4wuøWËÏztt¹»•ÑñrMžhDø/\ÞyØuǃsè%?Mdµ(tì© (LTLZÕÏ°fŠ»ãÞ€÷A‰ÕE_±1)cî1­oST£þj¹ùVþ¢¿~P+ÆÇ _¤ªXÆzîãØ~‡
+ L*”@¸æ3Àݜ¥2ŒL?Í„Ótln~ÅÈÚ`G§«ÿY¦…tüJ4¨àDe¢‰ Àt}ˆ€…)S¸¥‹šìÝüƒJqy»5Å.qÌûÐõ‰²a
+[Á1?žIj®À»ï9ß‚¨7«Cã‡ÊvA¼–~%¯ð¦XÌ1 ý(ñFa‡Pù­Æ£4Ùó*ösz¥é¨ÓWóõjö—ôÐqŵ­·Eµçí¡8àb‹á/hËÁëv\•)™ÉK¨el_,ܶ«\×J-Èû˜ýåØœPAʲ’ÊÏ`Ôkrxþ„Å}xô¿zº³WB5FÕ&*}‡Í@ uÒþyãÃ\5?(ñ¥µ¯2?S¢+÷ê)›gÌ—`–B*èÕÍëAÊ9’©‡ÓþåÁNóÃÈ@f^+¬Ù5Ð 3SûàcÝ!ý$¾—Ù=ª¿^pñúYLeŽÔJ›-Íûf¬;~ÃIpFö‹"^Ž }”šÐS͉¢kÞMÏÓ´Éí•nz¯ÏAÔæ}˜Žî­.Éo–F'¢»nž3’Ä,îãßÔ
+ ¤o/¾M¿1®]ÜIF¨¶õ³‚œ¦>aF›â;[
+Q«xdq­Cu ÇnP!B5ËA/#Ãé¹aoœÑÏY¥ÒŠÂ:}ße­sd¥v9Ù„ávØœîÃv­…Gã¸íl²Šbö.©h`óä&z oeo3e¨Oš–pL ’ˆË49é-ëâÍô5œD–D‘Ê·°¦ÖwވݭUµk¤ªüâdÜX¿ÉçFõ
+ÖiŸÒƒ¬1 Sù’Õšo¿#Ì
+Àl@óø®®¤«ÞI9•ä<ËC½YjLTa?Û’gž¯ÖÛpOÀnBÐëOìY„½X”…g½õºEϺªqæB[Û1ÍCukûb, íåÉHöŸ‘…w±%Æp4Û¹ÆìhË%2÷÷ï°«_Ti
+YÙ9Qð–Zl‹TÑëÈË^,iî›÷ XØSº~Ãß'¸åýE¨éÙ`£=¡ÝþÓc:oM·„g gÚŠ¸ãµ&‰›ë7þJ@‘{WE‡¹›ëNÿ“÷Zo`L¾AîÅYŽ´ÞÕÙH ©º FÅX •õù¹:WO­t x H¹A+±"|qЄg
+è‰ú¼(Ê‹q5œÚ%S(G$t~m³Qïæ ¡•êâJÀ va&›F+2·§%’8kHâƈ†
+#^l{'“‰à‹S2‹ÓÑ5Ôª›&/»…²Ø.¡pü‰&lñ+éy»yQËä»\#·ñlÚ@8wMYÓ#¦˜·èŽo©ß.ûëý1R;@¯lWLw7 ¯úÖ.‹¶Nïþm”ï:Ân~§»OšÇƒ}“kãVö‚üža@Ñ×w_9Þ—;`|å#ú¦Œæì½ä2í$4¤Ã UN- ¸S€±ær‚u¯ÊŸG¹2¿[:fÀà›&*ªZÚ+Bz2,(´% ÙóÊy0×äίæ±ñ›<A¨x‹ÑÌ?L/O¤‹âÕåLË'Ñ-[Ž/Þ6}êÐÜ’Û
+ÕµÔ´ŽAaUê‹!ÃìväGa©ó4YìƒÛó® ¿W²Ž-›ó’7æ¬K¬ÜA…” hgš1ùÚ±G¾Ä7b£·Ñ™1›ÀE2NZ”_ý§óÞ7#ÌHÉc¿:¾Rû›hŠPÃ4Œèꨢ™ç™5C¹ßÓ‚ý%s>öaÌaÿ£­ϘgëÅN<žŸ U­rþ)_p
+bÛW쪦’Ì ¶}hb˜‘³P¿~ÒcQøÜMDT iØ¢µØkc‹‡»GÙ8ÿËoŒŠ íR›²è\øè" ÄÀ&©—k]£Të‘€…e$rð[¦/lò½Þ‘»>$
+÷R4ƒ¸ÜLž}VFÎåÖüŽh»Ù˜OÏ»üâ½Öª"Œßˆ2–â¦ð³â„¼­ÃȯٰÓt&¯ÚöPœJÔÚC¸é-ˆ†’¦Xô#YL/Ƀªzàç‘bFü«#J–üß`“¤Þ*p¾·>Çå Ì?3‡h§eåPNCûé¹ß“å‚踜ÖbÒ« 6B=úÎû`ÔbŒÖ]%¹…ºÃŽ3J•^š5ÁƒRù­ÓL%\æKå9z¸K($L(dŸ¶c
+;áR©‹MqÄ”ò,yctÎ|
+ƒK4¹àOÀ—UÊIC³/
+m}戵8/_ŠîtêÁŒŸÂ«b "DPJ$›÷GGz–‘y’Ö?¶*—j—ØÁ—!0šÏrJó°ê’ghâƒÇ~=œÉþļº\aßyö„wY ƒ"_`L|¡ÚÜÞ~Û­Ïÿ¦¡[I‚HÏd…¶SÇ]6V‘,ØH`ÂC*]Wžž>ƶ"ºÅqØóÿÌ .6–¥™w
+åÓ-l‚=…ilœO*üêµa1gk•ûCAá”t{¬Ì›z:ÃZ *ft6K&/FëYfß-¸–k—&éôÛÄwÇ»…ƒ V]I^wc*£Çž Wó«õï¾}CÍa™ò¿ÁçIÄ·õôÊC(ˆÚ| t?ŠH;C…-¢Ý ÌƒB]Eé8M)ÎKÔòõŽ!Ô(5À¹„®èÏ!„Ò4Aà²7ïÜB“«ò
+ªnç;£»Ý1‰ÞTûól‰ž§Xü̳—+Ø¥Uð©Ðø~Š^; WóTUÓ›³º½BbÚn†³iüj~;r¯¬q,ຯ¬›èÌÒ—(ÑÁ§,„²!Àh’vÙf¬ú¶W·Í°©CHJ*$úâä~¹ÞC„ÁI¦—_äB3£ûêÈ(¢Ò…©Ìíù›0á0+ñ½Ì+¦C;g #'™šp_ÓY#,oÓbi 9<™=`¨8 fbÿ°Âä— rð{Äõ5T“do?a¬Ó?¾ÃËLOjç{Žb ¯û¡³ÙœyMKÖ,Ô%Ò9Üß(§œ,_2âÒKÖD#)±ÍÝÌŠLäÐÜzDìˆ}Ð }_^oÙ©Q¸jí¶eì¼ÃܤjVÞ6¸~‡GsVBºÍH ¾ ÿ h˜éÓ€i™û¨^^H»ü
+Ö¾SÙÇêðŽ¾àp!(>Âß„¦ÿl©Ý (î}Xòê?’ˆßÚçòòÕ‡‹ÿ®Ú†rÉœ37ÐÈp€’]Á—³ÝBt¡óvÈö^yÇíªÂÚŒ<†Ì²‘FèãM¹ì·÷D[è65úUV(tèH¿äxKÌ×Ðã\èŽÆârBwRg­ã’+šôD¦Lh^¹H<€jHûL£Ðc’ôUƒ†F“¦ Éd–/#vRŠÖÎòféÍØåØHýœ2k2)µPðqýeŒ™iizÃ6s§ÆŸXצŠ“()#Œ-N&–®LxéõPp‰Y´åDN¾emrñCMAŒ1.-âõ ¿G¨.–’*ûÕØ­_l­ÈHq¨}-“¼-"—5Þg´‡-_Ì»ÓJâ„ØgŠÍ(¼ÙËÈÂ#©ytBÒZ‡g¢ÎÉÇwP|ì\_dæftG@±aÕå?rRÏËY«O•ÍX[®¶Í(i¥V) háF¥AêÅ”ŸŠ
+£œ~ÿòš3Ö€Úg``ƒa®<Í8zOÁ€–ÿè:Óß ·É=2ΤçúJL·ÂåÕ“p<Âçw{ð+:ûgEm=”40]z›o—DÊÙLvW¤¸~«Ž}‰¥O…²ŽµÇl 0“²‰Oã ê1™µ0\0V­-3â(Û}[ÄdÊÜžrâÀ«¾Œ4¨dæÍs£Û*iUl$â¿!%xnGÏ6ÌAÄLØt…¤Ò·bîrH¶€Í‘-hÏõÒE‘.Û濧szÍ‹­·Øç³\Mï#-‚Á¤¯â1›ß@V;Ó´¨Žiš9s¢4{"®Õ¨Á[ö8&Î˦îɶdŠYßP@Æ.T^çh–ö.;®‹Óšó‘ØØ ûæ6kV4wq¤+Õƒ R\ ™0«_Ó\Ø¡ ŽæoÍ+˜wXºº"‹åÄüÛÉÛe6hJYÑ­!Ïûd»eamž+ÑNÂÈ«󘉼2T + ¶ö PJ ÿØQdà×(Mý5€5z
+ræœü•ÜÐ Tõ¸RîÔ鋯Éøù7«fMí lB^.~ìrŸ-›`´Ì`CÊꥅ4Ì뙲þ€”·ZW#“¾œN…äìÅÉ÷©, ºÅóZŽÑ_·Žšý^ÚÅ–÷e“ô4®ýÊ7ægCU”A¦ü6üÈúª!JQ1’ßîëuµp‘û+Ã^V<
+ht6ºÅ~×x2µ»síÃŽæ¥6 ?)Vac‘ñG/ )Ï#®¬¡¸=šgÄ z€º‹@ÏÓ‹ËеêLIû3ño—ò¡²Ûwú1Gþ^møªc=Àå´=®°SøDh³™±˜ÿ¶ð<"°ˆ“Rüλ‹ZŠzÿ! ;„Qâ•-‹“3Ð1«/UÞgd§°J÷_¼´MÀ*;á"©â•v¸*ý8R¹Ù =™>Yj.ÌÎ'ÄàéÁÙXO´¸ä½°6ϲªaÜ%<rG]õ±¶auÁUK™Òi •_¶|dƒí:2­lSÍ¥Rú$äŽsoÔ_ Ú­
+ÙŸÛ±»¨uËÈ5†
+æ{v”@:ŒöãÚYS*—¥:[ éZÙD:‹yÍTÉßñ õ?ž
+ËÊa
+!ð%ŒéÍ,Ñ8¹‹°«AÅ fó~îå*‹½Ëã·“ßÈ­$¢“—Nõ1töO äMEr„Ø5.‹¬Ch‘ñ'%¯V(@êlïc½KËakí½5¯ŒÉå8ëÅKGš¥ö­+9rIÝÇnz‡µ<ÄV´‘ú?dB™b»ò|ÄbˆƒD
+Qb=é¾ßí˜6žÞml˵½¸Eg r(Jö¹?1éœòˆÿùiÛP‹’qæUXVµPÝVA;S2“d‘MÞH¨HÑwõmÁî¢úL1“H©RüÍEYñë'Hí¬</'ÿ
+6ï{ξ=n
+UÖðð®~!ï+§Sh_”¶ÑõoV«“á&š¸¨Ü¯X*b¶§BÄF_«éýQ¤Zu¸é^$6åéá—=|ñà•-‘p²ܹ@¼ 'Di®mðœSâW’¯™á£PØyÊÉ$‡²¬Q û¹€ E-Ч¯P?³à@uq»i˜¾4ÄI}»†Ç˜ß µaQ5óC³³ÛF±TšOÆ3
+_üg-jú*;ýôÄâÍyɾYû¨n˜‚iJ}*šgü´¯®ÈÉ™ìQýe»iiLüÃ|%»„ûˆ I´ë½WÑì|½Â}dÕ%rÚUš…]Ú§‹WøÖÓF‰3·D)¾qz…ÆÞÂè‚+™;`°Êp؈ÐSµHµ
+UX\>¯ Øå_ˆg§íÐ<ŽWŒ-Ž;RÕ‚å
+9f¿ÈEq½x íl|šôF¹¤LR’°“r†5$̸òEøä•@øÌ~-Q©”óR˜SÐU}Õ;=?i‡Êt¢·5°y±Dî’|`pÄÞm3'ýaˆƒ1=Eø€ºÈ(ƒ70îú]·ÄZ•ÅV°yi¶–×"RÂAøm{Jççžz½² _!›Œ_šiŸ¸T0q™)oܲ8De'8DýŸ‹r¸ÍÛ´DŽ ·Ôü;©èQ§Jgî©~7™Ùä0u᧡
+¤B©3@kµxcÿå(”çÉÇõ§Ð­¡b%WˆŃ´!ø ½!VAt…éÜsߥU0[¾˜°ÙkM°õ½„Û7óð~ú$½²þž .ÿÚ½0Jb:³ù—å(mÊ{H”WŽÌò‘‹˜=çy×è!–È%Y,âÒjBô9=ˆè±#ÉLÏ/˜$ÊdLÔé}qi¥³‚±u.‰ 
+}&}¬4n¹À§ØÁ–©?ïm]`ž›Oëqš¿’_+ r ù€8Ú‡ÐöÏ~Œ‚\°°§z¥(}»?ßed|è0Sþ¸/ú¡¸ˆ’3
+d\SÀºiýŠ|Š™2aWë]hä™±ÁZclìžú9<qßIH(´·*US­Y†ñŒÜ’%^›[à~ªÉ^7æþpZ1‰ae
+HY¥¯§8iB"÷j„
+øÅ DœÜOÍO šœ 帣5^ÏúéB3'¥eÜê»çûî W[Õ—û漏:?|=üìBÌJ˜ èÆ»¯¡0[qX+‡6 c{“_þµ®Ý³Ö
+Ò €ÅGçE8ùÎñè–»²¹Ûcj/¾øm·»ŽãòM-òÅš¼ç%¥Ù‡¥AT»^¼ÑîòrË4í9O !¢a*Õ奴Ç…>oÌá‹œ›÷dö‰ó’’lœè!‘µÿ %î¤4Õ2ä¼áC·Çh Ä—]2|´f'ŽÃ¶£@<e|_aWñfN§—¹ån‘ž½’dÿ›Í”ÉëÖ¸Û®½“Ôû¦jxbÑæ ŽDõš ù áý1<‰qÍf§1ûŒ;ªºÿ
+Uþó8þt»û ¶‹:ßì¬3دƒy‰jÎÁœ+¬"ƒrÛÏBþš7²‘®ypëÛ(¾¨(,B·9Ú×f|\ô£°SÝ~ÆÖ e“Aé0…Uï‚&bhxc9ãJ%M2ML®ôýU5Ô¶ãÏêlÇÖ¹ë6dù–-ój¿2@ëÁÇVχ, Ï„zPG‰=°Ü=TnqU„YÉêÛ®xrºÝ ]#'¥úS&Ò9Ž°ª½ÑjÆ~߬M––á7tdO¼¬‡÷ˆr¬ý²ï‰®æ¡Rmú.š‚°êš´óaïLWH÷ôîùˆ¿³,ñCÃ9wž³­YfœtCvlÒTDȾ=’ŒÛ+ Jƒé”8BaÆ$tÞž¬¤¬UO[iS*ƒz©• Õ^¹%L[ð@³hÄ ³{‡]c1åkä!n%x…íoG ÌŠÝAÕ|z²Âƒ‰!É—VLÓÔ–p¦ VŸ¢xZqAœe0±íÄíiD°>Y³€•/ë)ïûÁ‰¤&,Ðb•Ú°–YÜÄb˜ôx¿uµöÊ
+¨YÙ§ccãî}Iè‹í°fà‹ÕrN
+Æò¡Q¯ÔÉÒ)…#ÞÐDõý@¶%-4¶C³Ôl rqV5¡½À•°öí5üY¿! h«Þ_`žË`‡f"m!¡îþ?þL°¸÷Ý’ïQìÄëÀbsÌ;÷ªWÀ&>“?¤ù`‡Œ¾Šmë—¬s¤7F“©\[káyo¶8Ñ“)ýU~­Ìmk<´Àfòœ¨8"•
+ÎœMœ¦•œe_„ö&
+^ˆ·&8èLÉheSiu#åÔPq8{p Nzµ xØh¤×H(ì$ Lp"ã‘¡­ŒÔ›ù3äè1EgD—ÝZ3[+ÈööÄödóêÇ¿eUð†HÍjI%+³ôFßý.¥"~WÉ®]ö­Õ¶œqt–' É Kžqj&xz±¼1é]˜€¥ñY'x _¼öÒ¶—Úôhaɱ‹"‰¬‚â‰ß)è˹@ÜÞB‰oY\«ÊM·ºm‚ÌAt‰F8xìŸïO¸’ªÞA¥¥ÄO(ÉŒs]­ÙøLù(U¿¦ÚäŸÍMØó‡&Zp…Ù$‡&eïØ=ZŠ¥ƒƒTJ4ÝZÅ‹‘DŸËÉ×HK b[Õý"ÈXý³”ñÀˆë©’qåÓ•Å­8†ab£ܪèè$oxJj%há£ûzN#ýžî"d$(+Å›ô#/à¸|%ùþÊ›×yÂÞ"¸¢ú‹Æ Ü¥åÞrgÏ•;õ›Úr;$;A¼[gþÈ©vKñ«Ñ÷ƒcü¼\÷Æ'Û­­´
+¨¼URw×rjA]±M1ÞQ‡øªBĽç³YoS¦y+|ì@×Æu÷Ó ‚Ý[ÑiôwaÜ·‡7¹R
+Öï«æH/0â.ñXãmî
+N½"ô¦³ýŠæ_¿Æ®Ç<¢ §ËO¾U±zÔóó"¢\¢BÓv–ãþ¶“Ìà‡4­Ì ‚Á=Îø!Â¥Eä±VA6ï4¦˜äñwnÁð^³öî0âóEŠìÏkØÞoý-HyÕ}¦¶ÎFÎëÒ¿„:Î{­k‘:]j¾~ù»LW%‚ù'Vàh VÀ^Ç4Ÿ™n‘â¨=¢õ»þa D+^ÝÇÑÓ„Ñ KÝέł—Ð앱å4nÓ!|쪔ªœb*”E0FÝPÈi4ç£áýNYùý®l"9wÞÁÕlJ`7Ƥ
+¦ëã>÷ O¬sß)íÓ‡ãµPS}öK4}±ê-µ¢ë²§ÔŠ¬à)™eq/Ôásl@–Gö›–RÑ ;#?ÔþïÇF‘²È^4K]
+µºÉ0‚±²‡¯VB’b\†AA‰'óÈ¢¼¦‡Tf©÷?{¥%åÒ©UWâÉ…vR ;N☮h‡ÿx¶‡ñ:†<3|ŧðQ¥ƒ™«ôÛ°`×÷Š0/FË(’%¬öéØ¢HAÐô&|5j=4ÓcÄ—íÁ%ý=mÐÇ25;!4 Ý$® «t;Ù˜ó¼×ÎÓ½hÈWŸeÁ¿Á@v»½×H^„`”äòÄöÇ"–hfŠwÓpì,°Îä^Fé³~¹5pZDi3ˆ7°sRæÒé6¬YëŽ/,ï]b …¤P_½›ÄÀj•;ýAÿ:6À—ùqà·´`ivN@y¼^Ò¡…»k{ïõ-e¼‹>œw#€³(cæÜm&€²Ç…Ú›Ge”·¼`ŸýTI¹N/æy]j ô o¨éH–6lÏZ>(mª˜4Æù¥Ô&˜ æ0F‰zt÷”2×ë –”^ æõÜèkUþ"c}9þÏ›(¤òÌ…–í²«žEÌ ò;´ïCÄ~\iE¾Ão[zF\h}&7}”²JW)Oƒ0Ò—Ç‹èÔÒïÚM5i¶]þ8+%4´õ±_j×ésž”–OM+jÚ¼Û*¶òT¥àöšAz>è4íÙ‹8³Ê7©2ø‘3Ó3•ÏO˜—^HùH>¤Š¨–ÝíˆÞ`é–(ùÁ-¾ïK˜½þ8_úpEuþ.“«;u*Šº]àq²ÊyP–jéöNFIZ­Ç0?Ê.äH~!à¶
+º;øè%
+ò=·)®Ž+¾íäªð'ÅF U†p\´,Ô“öðѸb‹ˆ³D³c_Îô³¯ê
+åOù°ºá͘nÔ±Z‹†$´ÿ'µøwe³&û›nräÓ^
+á U- '¦ç…Š’T|Ÿ
+^æºúÃßmÊižæm¯>r´oá5êú´)_š8_–À·iLêÇÒÚpgx^“ÚtKç’B±ÍsÆ|§á³èš¦K2·Äï ‰’&å[×7ðº±!ÒÛ³®e{ yäqw2šŒ~Žñ꽊pÌæ»4ÌÉ5wUUÉm.¦éT0Ô©²‰"¶R_¡ÿ®Pë³!:Q¾f[·—Âä8³ŸZx,ã³òôÚ~̶7hó“—rFÁU’x¥6Ðù¢_âPÕIz$ù»º1µdÍôpâý·ŸÞËYy'L¨
+;=uWçð¶°#M|îÅÕ€Z$øŸKè«Ð2™Rš³:·hkÇ
+õЋKèÆ ¿>¹™˜ÔTŠI×ÃÞNfµéšÏ°Ý#a­9t’â¯*Èo‚Þ/Ò 3ƒ'à§?»iãÞ}ª¡ô„µó2ëT£´ú´Šñ84Ž;–]¢<8Ž@²„”áûõÛWÉž¾ÚÞ$sƒãOnœÇ~Iáv良ö¤•¥jmÓíöÛy*í¸Ñ9ôæº[¦7OÖÀjòþ³“MÈç²GÙÓåXíh¨ì«_†É(ê``(‡°V˜w Ë: PvLCXûø>D¨Às˶˗9_¿»ÊÛÒëài<.Î|DåEQRÞA@°˜S3M,4’=‰ž½Øz§6Ãã$ð< g Xƒ0"sv² ®³"ØÖUå%⢙)Ù…P•Ø&­|•l’Þb£¥¼:þîÏf€e†’Ž„Š@ûñ•pË-md+9Π<†õÿ:Åíà(Àø‘
+Á¦[`Ѫê×n"^®…åÎY=Oü×&Zïé¾6¤skƒT.Ø…_=^šÏ¿Zeˆ2ÔbÓŸÕ‰BëgHãʧ Þ ô#ðZ &ï:SÕ®0H ßR>þdÔ
+£ñùQÉy¨²É]÷Q¨aV^öñï"áޒű©d‰:O~/)' ‹’<„¥˜·„¡PJ  X `9ÂmÐ%Þ]­ì#51’ CÙRõË“È¡ýÝÞÙ¬‰‰ó×eœÛÎðs:ùm ¡¤8·Ü%׎*¦Þ-Œ½ù£Ë ì›AîÚËÜ@ë.öÂŽ‘ ¡°×¥Ñ íùĪ¶6cÙ XêªtöI2É·zäÃ4”­A¨–ôxÚÈ·Göqhô2caÑ(y׊Æ9kÓkÔñGoøè'\&ƒP€ý*Çè‹öR˜¨ëAöaÞ³à6Ünø˜tX`ÌHå^bY)Œ
+¨¼%Y£_|Jð9ÇÑ+k©’×øx~¥ßŸ4¶”„Â7âÑâæL H2“)ª¥#¶¹%tâF/®e·2
+p ¶u?¡;ƒß6¶›}ZoŒNpÍç¿·ìp鞺c£›YfК֜à#,{b!1Ã] KÕçŸ. þ ì6`«ûq‹©ÌzûG"_m•I—š°‹r«Bìj©=æibˆ˜úæÚóiÅ~sœ%JÐì R=…K¸mÆ…!Y;R¬%–){OL†Ê4>#hiW(/ÃV3H,Ëö Ùv0ÏÿÛ®#‡®íg[FÆ"ÁÜMÁ'D?)FZÅ&{6V¾b’<‰P­’Z$¦
+‰¢ïj¹\®±TD(T®y@StàÍ_¢›ŽÔ¨!{܅ĈY¥sTk—þö@‘4*Y‚“kTáKÓ8EŽÙœ„•ÈBÎûoèü¡ÜÇ®ÜÌ_ÜáMVÓŽ&á86x¦úG¥™ï¾?2ˆf¬ÕéÃe²5j1¶HU5œ£[\÷Ü9/¾[»·ï=f{³šƒøú-†Á&1:®\fÈiv‰“ºÒm< ü2Ý=diE·|Ö\”sÍ%Kgö®EÜÇç…ë 6 œÐÙ¸D&ô!@„ÿb³U÷5l„Ï$4¥:8vsWâµS"z8yA$4ö‚vºÎÇ JD*ÐËŽóø&ã?e5}PIA … éqÔùõxQŽ7ä1Í'˜#œÄÉJ6nqj]†¤-JɵLAàܵ.duUß±{š’@-óœbÚ.®‹Êø¿ÝÖm† ! ¸dþ4Vn´¡ Ÿ›¡ í
+C‹5)¼(½l5<›ÞkË¿ß(`¨ åÚŠº(he…&·G'ü±dòùŠù©Ù Ê[ß,ÄÞôoÔ¡ƒëf `þCQK3øf2
+È”wu-8ø‚„[Š$ÝrrcÙ
+Ð Ïë÷È™ËmÀó óx,•ý3ÎYZÃ,{ðæm©ím]rI•»·Óp#Í2\xS FGôF/ˆ¾äÎ2¯—í{ÅúûªãÎsÇ{ý'_iAÄRïÁ
+Lˆ½A_÷ õ‡êG)m×ÔKaZlÁ<¨c7ŸcLÄM¸sŒCÜ
+òæÍjaþÛÿ1®–¨ÈPÆÇ
+[•„ˆW
+I+Eþ u¬3v{2ŠŽŽStDèÿš¡pž‘‡.»ó¿t™„+…N]¬íoGœî»¹ˆéS¬"3f¹5\›^øí%2ShÔ¿á
+ÎC˜Οªç¬e­L_"˜n ü£ °ˆ ÞÞÖ—ï’U¹>»®+½!}
+„ï:, Âic=®gÇþ ‘ºdïYui/!>+ãáy=ìÍ]‘@tÜÈ –þ”˜¢2wÿ3Ù9š趇÷ÇyZ»> tؼêü—Cõ˜çeý¡•Ùñ.F90ÐZ=qáéƒ
+Á¡»-”s¦¨`ÒÌorùçV8´­ð@€Riš–=ß³\Šìð’ƒLáëÿ)•ø‹×þ>UÅ%ý0»Ç à6åj‹M׌ã¡7ÛÒœ¸ŸHÊ7”@lµ æxßfl¯ËŸÒ Ú‰£Êà£+™w-XS/Z<j¼¼t‘ ë‹®‚ÉñNŸ;tKQÚrt¥ê;@|:ÑêH‚Mž¬ ³Ž;þph‘'`Ø•Nm¨4x“ŒØuQÚ·\ÞGë“}s‹óéR‰Ÿš<¥W(\Š‘Ò½zóy4W>ÔÔv<‰jÇ£–UÚ5ÿµ÷±ÿ‡J§Ìb 9󺊥«ÅC+nÿÂ{n/E,<ØÎ;ÉNÜËAµAq‰d3êaÐG¢åÐÑ>d¥‚,ãwhäÁø¾º„õ “*Vy±ÌdÇÃé›L“žN#>wÄ,ÞP!M¨o„£ìRœ/û°×çŒDÞ®ð÷BÉ#<ÄæŽlqeV¼\úe?[`uÒ‹%U‡…&%Äa½úá­Bè«&ôûhŒÃ¬Æåüö†!µžfdmd(+&øÙ” S0ï$r±ãLüU lêÔæ’úôu¾IEúÁ” 'FŠž^w%˜<ý4Etñ[¨^Û‡?†´·“7EÖ†nÞ€…,]µo^ëxÅ— ÏV;ÄE=¿Þ9-F“Þagß®ý§zØz¡ÈÕù°©xTÕ=ýžFFÍ`MyÔø1aÂJ®ù‡Ê£DÄnµ,q*rQaOY·+èõÍϘU hÛ…‡NÀ`ýʯ°þ•Øÿ˜# (êÆp¼þ{Aa…¿<|ÖŒ7®On;¸Š§ñ'† £{Õ
+–½(ÖßÚ>ªËg<úJð²‰Ç0hk’V g«ÌäC+æQ¹|+9Tñdv=H?žo1=öÌ\Üœ ˜,å \ø¸(KÿÒRÎ~#IOÓ²‡Ò½xlŽÐáZà/ý¶pžDØF¨ø‡ež”ë.Im°êmÍsYã£Òpµ
+!êØ3äŦšð£ä¸p`ÝUÂa„ÐïjaVž,qßë>‹d¦ûU,'.ÔB>Ú2€©#0JŒ÷GÚ
+î};'oàtL¶vŒ£ {
+9•Æ‰Ôþýݯӡô´³Û°ÃæÜzªîuÐC}KþTBzùúwé¦âæâÚîêÌóµ?|ºqòÎldɪ‡^-tc!™Ü!_îê?\›°6Ž`”°tïý`¹Ÿ¾dCßõ­ÙœÓ÷…̶0îøNâÚx‘ž[k:¸@š*IsPlH¸R—ZdDç÷É/@íï±äZòßÕÜÅj^"¼°r”îfzM=‰Ä—™{ûT/Ó½šýÌ— B¶ ý­ø¼ÎÏinÙaSS÷[½f1Ð_@t”,Óš
+endstream
+endobj
+3182 0 obj
+<<
+/Type /FontDescriptor
+/FontName /BTIPXM+LMRoman17-Regular
+/Flags 4
+/FontBBox [-400 -286 1338 1125]
+/Ascent 683
+/CapHeight 683
+/Descent -195
+/ItalicAngle 0
+/StemV 18
+/XHeight 430
+/CharSet (/T/a/c/e/g/h/k/p)
+/FontFile 3181 0 R
+>>
+endobj
+3183 0 obj
+<<
+/Length1 2042
+/Length2 22961
+/Length3 0
+/Length 24238
+/Filter /FlateDecode
+>>
+stream
+xÚ´¹UTœÛ¶5Šw ÁÝ5¸»»KáV¸»»»kp  ¸ÁÝÝ ú“µÏ>kí}îëmÕJú9ú³Ïñ=9‰¢
+½©1Pܦgf`âÈÊ)ÛÙØé•æÎ6FŽ
+4Cd”·¿ ‚êÿŸ{ö_µÄmlälTÿÝÒÿŽ3²µ´qÿÈÿŠÐ
+lô¦}!¹ ðíPþ2©ý¹N6oº}›=–F€ž“õ¿\oŠ4±œ
+`æädùÓ!ïÿÈ5ù×àþkP¼éùßøÏÔ
+ÂAŸô­Œ4î}§ka3^,ÄU#ôvèZLHÛd;»ôÖùz¹ó—EÛÈÙÑü€{k†þ˜Û<"7HÃbÅ
+!×iù._üÓZÅ a-ªi&,Ó¬ÇHëɔѿÙÈç3±ƒàûLf» º0`|ŸS#’ð/IÁ€ˆ'ˆk}/1–ræ\“FÑPË‘î°žI-|¶uëUÁ‰|Ë2D?6H•»}ˈ¬ðbz¿(rë*Ë6ÞÙpÄ}t
+ä§Ke¨º‘³óWKÕFzö;ç "EYÚì-ë1˜³y‰9²+¸ÝrM¼Ø]U1GSÉd´‚’í8•¢òÎ"êÚz+—ØÖ-ê`Ó½û÷ÜÐ{ì­6Âî~õH*üŒ
+,ìŠÉo«
+lùª6ë(>PMò%ã»x
+cà·”ÝT™Ý!yÞ=œÒ¶ÚzÚôaœ0}D*Â[­?¢š‹‹N(-–F~oN+ ­¦®æ9Åmá÷ _"û
+³ˆŽ}®¼CÙ—A%È'ãÞA-ÈÜxòTxæ»KNêv–3FÚ4߸O”|6H mº»*j♈°kÊÖìÙKzjŸö„Eýu Ä”®lÜ༗xÞê¼gï«l¤eXÉ*­ÿy”1zÄ&©ýe²JkÛû÷ãaê"Ì£+ejñà6ît&þëC…²§˜y¦ÚY(³y@¯‹°›vìÀ÷”<ŸVÛ8{v%3r®@§Ó3FaÜðc{~C…Ž{?¹“¥ö³ùι¼l8i~ŸM ̶]Úà¨Q6iSiÌ {ØõÑÇ°ð>¶ÊŸ<tñS`w7÷3wƒÞ“_%àXJ¦ôgä4#,Ü«®#¨}Sj˜ÚN–Ê3ƒ…ï.¡Ü2+x&C5ض‚B•¼î‰*Ã&q¸º|9ØÆ«•‘.·ScÁì¶4WørÃ6Ë…*ÓUÛ~4[ŒmlCq®\®\>Qݲ²¡\éì@…IÆ.¬™<~Ô§¥óg\'þ¨h°²#ï–²¨ðû ÞQ¾^
+ŠZƒwx º £þö‘R'†å~ÛëÜ%ÅŠßæ›yäËý}ä…$UÔå—¸:(3cË%ª° äá"ÈìëðÇû¤¥¡!nBL‡ŒïGV.Ê iLP™,à_s€4˜.%FTáä‘[­óü‚VÈrn¹s ntèWu#“áLJÆ š¬lßÑ>ÚÑ£JDLˆ íåVŠÔr6úëòÙ/~—îjäQ}”ÏÉ‘Ý7,mîJñP|ÔW¹rF€8
+֊݃œ‰šA,ò'd*_Âq}2­ Ùg&ád0dèW˜Èpúš– Àý
+ÃÀ¸æ«f>ÝyìtÌß*WM8v¶ÃÛ8+l ÜÁ™êÛ ˆ7kYj'Z§ÖðùöÁlÓ‹Z«§Hƒ "Ç6íTÇA’™ã2«„ÏdÚÕöðÄD ãèÓ½º¹·Q¢ÈñÉæ®"œqh÷`÷lbC¤¸DÛaÓâa”°Ñ-ýÝʵǧ›„5Ǻ;¨WòàâÏ^µ+뮤û¶8»óC `½Æs`(=ÍBîa+祊Sob„)èÁ?JÎÙ_åz¥1º´n}‰ñ¾D£€k@ƒZäÑôŒµÞÕÈÏä~Íh9©iýLÌMì‰ÅN$úˆƒ5ZO3tɸ=ý|ø,¹‘€k©4º÷A[AžNÇEµ Ì„­¤wRóœÌ‰½ä=¡|¡JÍɽØk(ßÏùKJÕËÎö5ä·I»‹xÖ]¢[â^b&
+é ö͇§E<…IÐ}:Zè†Trvãýª\!­
+Ôü ëèãQ ܃ F~·¢kMü¯òR+žJßкç@qIr0#ãá”]¡¨Y ½Í’pªÆt¯l¢è8Õ¢ƒfŒJ9Ÿ
+Ù ïþ.3:œv×h§¶N ÔYhkË;dl6²K¬|D£!ôý"?„ÑÔYxì~":…Ù$Aì!çín`¯˜úí4 z¯¨+eè”áÄtB *ŽçMúo^p€È×’‰>ûÚcþP§ ÇŸY ^Ûz×ï+¿ Ü86Ållvùý‚zèÖÀJ-a¼uôøÞ†±Ÿ2|õõpëqj{ÈÃÑC…U¥
+5ìÊy@Ž”ñk_ó‡¥ÔnÏ Gå”I'“.9ûeëišŽIR™ÏsqˆãèH©R=мW5Jb:úÖ 9é·å¨åW$üÒÕÎül¥=€»Ø¢;ˆÓŒÃ島wXüQK°Ç*Ï,4çÃ~RÆé /|!¼S/ôêJü:p'­áóȆ† >}æ*¦aHS\m‹…t¶ìx*éh¿p8–º6«Æ@ùZ©NL½õ—:r +j“ê1.Nv-Z‡dy7|;Ý8Ù…ðzäp(É‹+Ç!ƒÏ|‡­Q»iaÝ÷,ü ž!</4KE˜5°»žF§rõŸýŒãüñ³–\µ(º¢Ux‡`z†Þ¥S}ٽƱ\<"íÊ´†ýÎÙ…L£Faߘ ª’\*äªMX"ªá±%=Ú3fu¸†Ë¾A”Èö^JP³æºT-•y½ìªxT@Í›Zt¸éCØ(jiV6ðûiæ°¡)òµ]Xk~
+Aý|€¾ u+ófîNÜÍœ6â3‚¬ íÙ_¶ÏZ(øÉÇÊI±[1Os<ÇuÔÊY‘½®Ö€0$ÿêÉŸYÈ8Z—+Æ‹®è3Žy î9g嶻ëÑçþ9Z¾.X¦ü¤ûÃ*H®‹Ba”Õ ⬜uź8í÷Æ å©ñø³Á ${`*'Ï]ÿƨé&N~Új £~O(Ã$…H[¬ûŒô'˜ñŸnÛÙ™­[q2Ô éEÍU‰? &Oí‚áî°µ  ZÅY‡ãXíìK´KÓ¬L²¶l)¸°^Ú¯û¿»˜û]Ö®U†5`â´¿d“PÇYvoz#ÉÚÕÀežDû^>GÒß|ÆÄQ¸¯…)ǽ«@;‡v{*Ox#ìˆÀ¦<¥8ú³yUhÖíØÚzbóÀœT8ÐL³‘fi¼æ±âÝJ-n{ñÌGûtÂÓ”/pe2ìçlATu0uؘ©NîFe«§RJ|cŽTA†tglö°/D_m¾ÒV\ï×_—LêÍÅY—½HÏôo¯LV|ùXÖܵÁ ÏÏËìe_G˜@™Ëjaø8¤â‡Ñ@¤ŸšËÔÑÌqé@½sÀ¿ KÄ‹Kݵ¼öŽ<ªÿuS¬q.,+•égå£Ó×ãèC:º¯X4®†=<ä³7±Ý½H'[5CËQ4;ž¤jöÄ´U›æ‘|‹KôÝQ?†ßeQ,Gª4,)Ü
+ØÅý„Jj™+ŽþÊ4×Ù3Ì„×Õ
+Úøž±Àèö Ò÷}[jÊHÆ;hßnñ_¥ŠÃÙ 0a³¨›))°z”lí š™9`M u7¿IL[yË'÷Ö¹@Íj#oߧå^Àw"<‹õX}1¿Úµ Nû-àÛ«:zækÔ×R~‚N·œ—Õ/Nø–w¯‚˜Ái²³C¬áw—C&‡ñÍV=ÿü+=€ÇËà
+Ò~-dÇÚ7^… ûcFs®”vz+
+|»NÙP“ß ÇÌ>[ø&Åò~‰ÙŠkNRã5ä`»a„‰wê)Â
+AŸåMljžÍ³ïÛÔýë uŽ|uÕoÐ ±¦øR™”·?ž T¡Ðù›>ÜMÌ)º`òðÞaq­%܉ècäï7~û}Ø´»¯¾5€J14»M[¬Ò{µ*γIV»m¨HK¸æ-Jà±1ßEÃhµ嵦l¶Ú¯ h¾ÌDC½Óè R—ƒò;V˜Bq%ÝŒRìGxÕ?’*åi38°£´û.GPì©D$ºžéü)·a>-NÁµƒFþcVÔ™Y°ãH–tµô$!ÊûD- dÕ_u%«e^h,|K6‚|Þu×Õ¾ô ׿"¯÷Ñ
+óû‚ܵOÕæaéÊkÒÅ ˆÃÆj±³¶™U¶Wcõ–yÛ„~4ò‹¤2´›“nø‘¨â¦avtù@·¹(¬ŽÞÕ†ÆNà÷Ûò¥O(T¯ü3º÷êË-åáÚÆR ¢ÓÜ;ÍÈ«OêÉ„ÇŽ‚ Z_Êe­ä‹Êm,m'wé?€™?Ë#µS&ÂÞDÝ^š7h$[±4oãIm#I£¿'\N)ûŒÆ»™ÆÉ—7p»œóT¨>q¿ÖN¥³¹åö$¾ãÇL´äÂPårTÉn´y±„,œ0ÉþÂãõ½È~å®qíVÉÒeÉ«5k'?¬€k+@!Lib†š‘©_½T­³D
+œzÖŠäÖâÙõ– b$*¬Ð KÔ×4¤Í” Ò,R
+q½NJêUØB‚=ëj¡BYö ølÆ«ŽÆ&KÏ)ìõ„Nb*$Õe²™}ü$J‡F7\Á>gØpÅ?1½¯µÛZ^2a-jG˜‹ßÃoÐ2Œì&^QNë¥ Wá $qö(DE`ÅlÕ³ÕܵÛlÇÈQ­‘çá•\•hmš‡×1¬€4F±JRE¹Æ¢IM›îXšóͲÕ~ ‡´:ÝN
+CŠ\=³‘œ˜‡eGƒ
+ \_ã×h$ŒLÓ r5RX§̯±lwcZ0m7|*q̉­1Ð+…OH¤:öí1caœ†eÀ5FÒ…¡ .3þ°eXh¢¿ô°ª Åì MbH¬ëÏ©Û‰œÒÉ}"ñ¦å!>’mwú(=_šÈ‹?*²*ߘ¦¤è‡“ÓÔWô&§:biÌõíÃÖ—{,ÑÏ•ßÚ(bF˜êê¾ g ªY&âÊ
+gfK(=KEK\¥õà¾w¿ÿ©up¾•rH µL+–á_—€X  Á‰Å¤sªÊëXe”ú%ø>Q<×Íf:kFñäßYŒöÓ˜ F$ÚRõ +€Ç½ׄô4ΛPàºD¦á¾ÄÜw83¹áœ{k|Ì-É¿i5d!~—ì !ê;j²•á½ÁÓ'™4åäÄ6œ÷èÚ0m©B}k‚³²Èï)v.ØÌÍ™³¥–‡IÒ“‡øÒY¯õUìAöT‹ÿîZÞ ™ËóWú”Ü~°›w:ÚÃô­}üä‡ÚÎñ%_­ÂØ•†”ì‰wìH­C…ö’À®êÅìÃô9Œ¹š@ÚšzNz²€<ÍêöûY
+o»RbìÞ+pæ]Õ2Í
+leY`Ñx}«û ]ùÐ÷#?pßÇ“L,véSu4æ²R¸ŽÒëÕ²ü³ïÁò3Mþa]¨‚²"ˆG]Ïò#B4q³é »<ÌŒòE9BÅ‚´c[¬ÁWÙ”Ûû4·âƒùŠ{çÄÇM¸üë4§îëSΔM©mÈì»o[9l[‹]¹gÙYÄÇ[äíÈò{È_¼ôJ‡;–Í/š­$W£¨K<tnfîæQ„c¹¯ƒÖ Ì{ÇGš䯇gDãöÇ0Uߥ6É9ªÀÍþgÍ}ˆ~([6é«Š”ï©'z¿jQm
+$”SV‡MS3Ñ)}ú6ît`2KáœV’>R•ûòŠ2‘'u×6•goF;V‡Ûýê‘åeÙ³ÜoG4 ·¥ù´>Ü*² Ë„ó>J¨öå4tè÷Ȇ6²ØKÚðLå¹G(/Ñu¢i•ˆ®l½1rf ®u;e§&¸U
+7§YÓyiS$rusß*­éßÇB¿éG?üt ÂÑ îß·¬´—¶“åäêáôË9û.0þ-Cí}·.øwBi(4ü{Ç:Ãø†G:xý‘îŒü¤Kºþ½DUXÝ[v0kh„æ‚ä–“.&×£…2¢zûêœêŽ3dtV;jeW$5®+™É­èà´F`!D<Jž€Æ®›) ÃMhÉOÖö®’ÁV£'I8džmå^ˆµznj³ÉÉF«‰_ <¶Æ_©Ö“Ý êìMù‡ÅQ1Xºz]øÇóÁèì£C_^ÁNß÷à9fûÁ^òGÁË?’H„\ö/éô«!zFôëêúˆØ×\Ü#å/­-_£-]óDíìÊ"´³d}XúQïÌö&·ÕË)]9š°÷ºpJ_Êx¨ò`.ÖÆÞ¹}')PnúJ?ºmSÆ:É,8¤Œâÿ 6Ãì¬ér+µÝî×y[¸²ïRo« ¬høFkßè‘.ô’² ñ]qhNÙvp¹Øj¹]ÿ™kÄi0,ýìÑñ!0~µr[3ZÃóºуwÛN\?¦k÷»Ž [á‡ùžWI#G‘,,Z–}ê)ÔrË Ô½Q€\IrÎÎœ=„ÍÄÑä¦ùœ
+Z [/ÆOè{C˜áÙRÎŒŸô5xâI¢4UK«5FB³†S/r:å*\N³µ­À®ž²:ÅwªØJä(Tk¤¤ü‡çšª…¯j1” Ø%r O³$ÁHÄ5bÆYzãelŒJV© 4—!3zr,E p¦¯“.ëkd~†È¦jÒàh·&DòúŒa´ Ÿ¶ó«Õª5_¨ È¢ês‰ûºRœ`·ãT'²¿¥4áè:§ýœÇÀž2Ú`éÃ??"àr}8ãDÀ·h]^KrïÚºªç+ØR[,ÑzE\â'·U@§î+&°0Äß7° ë¸
+¯À‚çUŠWM..©p®9h:1ûÍÈ·EMkœ¸o$e6 ÏéŠ
+Õ°n?“\0hb?’YvØÍ÷yê¬+üË /6i>™óÇEäY>F"µ_<æðò[è¸Àhü$ÃQU Šû«N»ªŒËÑËÔ‰mEŒUs¨›O8†¿B`üxúiH>1B1bhuÁ•ä“¬,HÇ.g+–Üé}‚HÎ(X‚pƒuj‚R[´ºêµ
+ µoUÐŽ702\Ùñ{÷b­‹÷ÒU3—'ο†OhiQÂô3YKv¤–1öL®þÊoz€аNIó±û½~qdiÚûxáEÝ^®< ^9…\¦’òÔâ/_ò\f. ¢ö,Ò»zìŠõ93‚ú6ÿº ô7õy©–2ÝO…ĺ¹-xè¹.3I–­ß³ÏBsäÁ¹ÍûÙˆ ª§Ìm½)ä·›˜9Ãz %©±Â3¯0¡rU|€½=ŠÝ×û…·ßlÉ0AÜõå›;d£R›apøTíõ»½—ø?Ù-šë¯¦Å¨hg?G#ùW¦[zÊèTÈ«ñ>’dŒQ§&åÀÕÁ¨B8ˆÒ½ãº«¥©–`ý¤a¥ÌÇjü©b,,@Õc
+Rü7¯Ý&h
+‚_LLSƒoS§×  „ºuE³£wdv øúç$øÌ+ä‘ p˜nzZªo¶(RÎe“Ár»\ñ§-±9ÜŸ('od”`z2~
+З+Æ£Gs Á:^BÒïÆÔ|e ˨_fÞ+úù”êm
+1DjìÖpH‰±S¾³¢³ä2(À‹#YìVÒ+jVo•Ð ûó dBæznðãiú4¥û ¬µÐ4Ü!¢(ö¢‘”#ÊhÞ=-Òi2ß× tó¼f¼ImììqMïÏRånÝž÷0.užãEº¦Èš¸‹
+\tê©wTä¯ ?Ô(1;½kV#F‚äf¤znúo±véý‰Gæí§Cº¸Ÿä43­©õ…¬îûû§n¢ wð+–M4äÒýºÜƲ¢Ð~:x@wÊOuzÔL¸5UÁÈsb@v¾6Ù\b‹¢ÊM\&­ããT×È\›h×:A¯6@R´€¦£ïGêîñ, Æ›q¯ -¨>aó™~*£/Nà×[m
+Iô©°y€Ýf8‚aF¯ÈãcôLé:àœ•? Ãìþf1ÆSTrY ÀU–EŽÞ‰N@a"M
+gÜ’ê„ØDÙ¥¦ y.te3ÁÇcƒÏçÚBOŽùŠØ‘îuæs–Á›Ösˆü~æ/ûî5 Ê<:âüß+â+ |øôŽ6±JJ+€)•¨F‚GWclAÅu}æ’7bAPÆ '}fÊï§ÐçÁÍ”øø™1鵊wÜÔ™~0—¹$õå¿}QªH iWö„F~ºr¸'^4î9Ûv¤ü*3ÏǺ dIü‚à j;_{éknD‹¬áIÁùýþ7_Ðåê`åXv M¸}ì̀V¶J!‡gaot3Ïn,Ðô}t7“Ü&÷YäXæ°—Ÿù±QÅþ4ì{‰kl§›§ ›Ù¿lG<ŒúäÞê‰~U‘ÝoŽ†'_øʆI I—->uŸv ` t€Ì];³Bs9¶¥¸ãiKÁ¥ðçINâÙ~•ËÅÌ?DN÷—”FÙV˜*6 ÉÐÃNdÜxˆ«¢€gYÒ¼aM‘ãÊAö¿7’kžÅwǰį~1;R3_yú"³5I‘½UùðZz~ªíS&?1¤&<|ép&ÊB¯MúfÒÈÕx²´ìDnó v¾“0J…?‰Û5_¯£ ßvTÅ^éŽW>påÄ,³¬þéJš…NF†Ç,vM»¶á1‡0ò)‘ü>¤Ô%OGa&P(о“"z«Êßž*±¼™»Å‚³_5<³{¶v,.9`\ã¬ã<µŽ©·Úüa¸tóÓÄlBëæodWÅP, ¢¢×lKY%=ásGhm /E\<"\jè¼!æ&—Hš]¾lšÊhÔô! 5ì@I2%ó4ŒÉÌéÆ°I§ÀJh™5ê¹;bÆŒÚ<‘ò)®Åò^ôkÞ… ÿƒF ø~õ4Ï©áÞ<¸LÝÈV¶á튩öͲôÛª¼óçCÑì¸ÝŸVb8MÝ~4$þ††LñRO¬¹õÉ)pPB-Þ¤ÞÔŽ÷|È—v}þ4O`:Ö}(ÖWmkê˜fp†¶T-¼¶¸ª­-…‘ɈE„u ü¸l€Ï÷~j¸æýZ«>FO¨CµÜ;;± Àtª&’³xC™•‚›êOâ-èdO‚=¿i¦|mòóñ6F/¯<ÍþüXþûóGBbF
+qÈß>BW=¼FŸÇËç¾p6ÏËOuñ“ûŒ˜h;Uì×I:ºH½ðOa7¡ã^Î+2Ä?;ÁAƒ«ýcC ÆÝ®ôMùhKìÑãÒ+ÑôýÓ'O[Á µ·]D¥x”0Õuuý9‚Zb2…,©·ûk¸9y)z!Õý¥ ËÓìpr„
+jÊo$qôÝG›+$U¥òŒ¡¦Ð“_’¼¿«Ö/BÁâÎà«cò²æŒâ!ÁÌDNþ
+)–±¢GÆYä2Ë o1æSîéIUÄi£„Æ—K7a— æË9¨éæm‰R%c*ùà‘ª3ÊÐ(‚„ž¬µ24ÆÖr¦½­‚Ù ªDuAî÷F˲b?8«;¸Al®ß‚‘¬†–Êšk±dÍÄ:J+Ê“\øW$Å[F¡÷ýœ¦—Û08‰|ƒ,µ. |
+\ók.ƒQh´Ýq¬8Uœ
+yÄ“n6ïÆŸé(ç¨éªûVyhw§±Sƒ=ð à7<âˆ&xI5žÛÖyôÀ»„Ëݪ&*€ý¢æ©š¤6äíìA!n’{é&JyœŸta÷ýe@qzÛƒXÆ©<{'W™õ«´Ô~„jàD]DÖï¼’­`Þ!–kýV[Žsû±×®åQ,”¹5
+¯º3µ„à‡‡Ç1ÇvdÒÖ¢
+IËúÊK±I÷“Qê ³Çctq¤S¬OÁ
+}ÿdÿ}.º/¨kæg‘ÏNÝ@**Ò¬XNN†êµ”Xºãr‘‘uÛÝÓ’rn¥üÖ/¦½ßjºŸ©ƒEM>­³{œ˜»Ãáv„•:¹\áÈÔ©cqà Ônå® r¨RóÛJJöžÅœÖw÷Ü鮶Ïv†˜IÌѨNo…4L“£!<´#&g¦ª#o,²-RC©G¦øø›mœ=ˆˆ=Þ@´±=+ƒ?Wdrï‰l-§ÚÅm7•j(·õâ ùqJ7uzÂÕ
+1®O·õ%üÿC¼â?yó#CÑÖë¹5èœãßÄ5³7OE¯Aª lÄml`Mú œ¡ÃK¤‚rS÷,ë§I_ý)‰q,7•J—›}
+wTÄÂvGä·ÿ ‹Œ).¡„.g'°%&ÇEB°úäV¼3”÷:· ©to®Œ
+U¥ËiC6s%4iJE9R”ÆÉ÷Æ÷ÿ/ÂE6
+þ±'yæ½-œÖì.6§”mSuîóùÃÞ{”NïA©;2>£j2tÞì ó–ÓVvò/NÙi×`ÎŽ\ÛHk!ß•|•GbV¿¾}oä౧XâãžÁz‡È/G˜®pí OzìM›¥¬pÓ£˜£:K»±®'y
+lõYÅï…Çt|ýaïØN/uÉ”ºÍXu¿, Ï€³%ë톱É>j8yȹƒ%€@E¨W«’7†ÚËCxöU}üï(|·‡ïõž†´§*˜¸õ£ìq½çzÞAã#&`LYÊa#2 òÆ÷0ò˜ïÏ‘\:ÕP°ÙÂÍ::;‘¯¼Ô^}·Jx¶ÝöT¤{ð,òÿpiT!KÉ ’”mR;ÍFÚÄÊÔ)+NÅrƒÛU·-fBxxÒ[->ŽUúÍ9ü<ýe0Že°™¾ÇÍ8iÝú^2:Ì×)êxíý¤4·wÚqt@"5¤¿ëým7Çÿ[ú6);†¾Z³=+ ·“C¦†e>Å}=SRD¼–ôd^Ö©5LW ÿšÕ;`'<¿×%eèì
+ÑŽš9ä´ø5êYoÜè¥Ø%J>íuug¥nŠdËÓÙ|‚ `»Á¡]eQÅ8H]ÞºùSˆ»eˆ¥ãG§`µÑÎ2GDm:}áXgèú$….ø®r¢Û:^{j@<ÉX ÆCj¾,ÎçÁ´óögyÉZùE´9èT—ÃhNuUÑÍOË|sâß[$UÛ’hÊ'vÈTé´eï¨å u0Ú`Ue$îI@œÛ3 „Ü]êö8À²@‡Íeæ–cò kŒ°à9³˜¨rZ…oÙ•^ÿLß JÊ@O·ð…©² ¶#‘YP´È}rò{¯—ßxH€
+ã=jG-Í0ÞwÌÕu_”+JÏÄ¢òñ,¿.óW„õÈ€tª1{µ4Ž²Þ[”éö
+u¿ü•/øÔ}òÔG&:m²wÒùð´×n-X¯/(TpÜÐÌ<Y˜‘½*8‚Úmh(áLâÓ~;›Æ3$ÞÖZÙÅs@"‹WZÿÚÍ“üõ<îüýoèDy2¾±Pã¤
+^χ"Ñž=YbkdŽ…·=ï`tØ{›dbȘ¤TòðÄ õBóî]ûëê%r4V¹ë¿ÀNtUU«pök4¬†*j¡Ü!gû„Æ_ߎð­¹÷ÉAx‘AcíL+Ž ‘Ð)K¹¡;~šˆ7ZvÕH´Ôë¯*}ø½[G5H+Ý‹‰>+Ó—þ^Á¥ …ÞcÃ<J:}WÎ(MÀ!
+W¼¬ÛI#ŽâsÑ`–¤&¢­|ˆöl,mÞjû‹qÔz47 .õVÙó+xÅLvcø¯Ù7@¯¾;T°}·Q´ÐˆÞAE ,Î'>ŠªŽ@Î.ÄYÈšv p£¦7ÛL[ïZX˜G¹“ÁŽAÐÍï@5=Î*
+å5ø³Õê?Áü’ÿ{
+fné®òŽæ¢Ïêú!®l9ýä ïÒäÙcP¿‡­õa“ÉÖÓW*ªÅZ@YÔ‹Ï8tV¾î›µÈ} µ¾ —ßÍ$d*ÑÊóèÓ¨©ÆU“éÖvt2½
+¨z¤;Tb‚ÎQñÞÞ®dÿŒ=<›©õ7Ú~w?Ew^Ûrc?ó‹¢ø’J Ìa„.N0ÁO…šÉpÀïáëñ_4ýÙ»N’U–þMÚ“lÆ'ú¬ÛÞOò KDJøéꟗC'þq‹#¬Qµj)Yd;ôq²Ö8ïì‘Uw×gE¾ì*!NíÀ”™XOä›ø”¬ßb¬µ´°ÅÖÑн¼
+yÁ‹=¨ó"Ú]ñ0çÿÑ—h:£úÍ7Ú#’{GÀ-¤há±@TFÙ…¹çZ‹y4 y]|”oê*bžwF`úŸ•E"HÞ.g#v`3êÑ}$Sâ,+»ÚÎ9®wþ(Tºh-sXŒü>ÕmÞHõFϧ¤Þ½T1ðíÑ^×ýt4h&çá¡Ž‘dž!³n¬#4žYt¶ê3ÛTRG›ùQ©L¡ˆ¦¼ïÜi0òµíe
+ƒÏÚÅ{ÎB=­Í·Ã“–ÐÛpN5ãQr¾ÆôX
+µõAC0…†D¦;]’GÜÅžgߙܠµ„”@Z$€Ú ¯c&$E¸ëkD/{J°:•ÎP+9ÐÄnB$i4Ý
+¶†ù®x/j¢?× þ 'hf}A¢þ¬‚¨™ŒÔùTR#•Ö2…
+Þér}ÚÆ€n›•WËHD>—™dNœëŠß?î± ‘fÓå±–(÷²
+î-ŸüLõÙ~\%>ÆËÉ\waW²dKp¥è|¸ä ÖÄúiÏ:"ÒR®ºffLؤ³32Oc¥¬ê}á:ßF9>ÚÇŠÒYÍÍé6T»‡©H*XŸq”š›nFÙפ¢aß휴ŠÂŽN¨Y(*äÕîYs!Ò·ŸÕ2Z×›R>GUÀ$QŠ¤<” g©—8'ÍaEfÌswáàôÏô^ s)œRâchÆ1$*P»jZé[«(:DÇ°Å€½vB›îlРùw4ÇO}®d\s‘ e5õ°–m
+šÓ†žœ?H>/:]f~
+ñ€fðöÓÃÇàÓ9c“+»Ì^¬±HO¼*û¿P~bb"lç;ëR¸õ5Q®d%˜žu#ÆTóž³AéHF¬˜¥ØŽ¹È÷9,ÍL=¼>âÖ¡…îjR£™Þ»ý´w h_ušŸ?K,Æ'Çy¯Úðs‡Ö6ÄØ7—`YýÂ-¸‚ȆîÌYúhsšÐî$·,Õ¼ª‡ž¬ÚҼΠi:óô…o”ch9Ïu.¾o¾ñÁòåó¨AÖç†ÿáÌâ¿žBó˜¿Àh›äIÅ Á®©Zg±¯ûuTÃO¸£O½cŽ°­
+È~ý†Ca” >"wFÞ[3ÿ˜bãú¤¬Ò3ó¬í8t!N`u¦X³Ìg `°Þ‰ì~þŸ0™‚4¯…JŽÀòqr£ 9{>c¡Ã‹U·L›
+škÔœ'^—Æ%Á»Ÿ²m£DB8Ì3ây«ÁÜпÇ_ÃAž=ü}LO/¸s
+âeK£P’X©­è×*dó6ùñ‹
+1—ºÉJa<ºÕFñ”aYýÌŽíëÂЊi›o]úZ꥖jP ƽnÚH’$ñcB¹I–¥b×Ê“
++î¹UÓ´æJ *<ÿL¬Šbâ¹Ò ýÕ ±ÖLenêŠGhZW§2:éÂуHÞ
+°ã9#‹qæY6#4ÞÊHzÃ[®ªyö+VèÕŸe¦õnÀuE«³T3ìßoÜmYÜ“r°8¨/YýЭ@¤-®2¿ösq!±f}‘TG8É)[ÊLA;4Ž¿uzJ±ùô‘O†'ÍžñÒ˜)šŸ©‡7hø‚=#]•KZ0ö¬Ix!Ú×6X3‘{mÇö®â-’Ï-S7X²{L 4õ±SÙ¸‚
+9…ŒÄÍC$s~Ù•ÜÆHd_ p è]g`QŽU¨dû7è÷ A°révùp­?Í•ŒÅK9”ê*¦åo•¸ÆꌪѲ ù“O¼µ%5H1„ã%³œÙ'–‡qíÉï•*â:ÞÍáŠ'¯Ì!áfW9]Ä~¶€9O~ë‹8¹œF«W±ªÿ}Iuj ½„·4Q.Ö‚ßóq&L%’ÌÛ ó:Dì^ÓØ8…raƒÌ¶€nÕ;›§l‚wê™Ôÿ¼øíDN£;¢/‡=VaÊ:ºê{ËO
+‚ãrŽ4_¦†5Â*4›Š·³½¼Sìß&̘¬´~>ø» ¡ÿÑE4È;WÉ6Š] àøœ&˜Ùü 0Ô.0*/cy¡eG›ç WðÖÐ1ò òÄv†>Q:U¨§°€ãHBh5>³?ÖºvÆòŽ\KÝW˜6ŒDG§+ƒàÍðSXW9ÇAàHêýµd_M+¢Ge+•XY·²•Zß»m©-|Ô +¦÷ÿz »É©ä 4$ÿ4œêä ü¿¼ƒ„ 4wõñBµ’m>Õu#þ(ñxÔZö¡ú‚‚Ù=ùÁ…ÍnÚh•sÖ8NlÑ)Døm@
+&ÊYݦÐ÷ŸïU õ,CRÐïÎ1øhÅ +à‰t]-û§9YÄ2+¿k©=ÙŠ9W»ý&›,éÁ{cù';ƒÂÛû´ï%kqV•Q!ïÕÓeÕÂB™¦jC-_¨A5šB°-y\bà¶ÞBq'<ó‘Ç~b3ùôvA²pѱlÅפ 륽 y¯‡Ð™Å¥ªx}
+Ûìs’ÔÇ’ Ì~Þ°gY¥o ’ÿ×à톦yÕB –|ÔÃÌxÆ¢&°q}Ç©u(ö;Š…z D
+Š¯ Œœ¤¤!SÕ1È]l$¿Ìécø›¡E9çu+Ôx²Í¡
+CêxÌÌŽIT_°æQ&Àl:<ÑT_8ÒÂSw—TpY»'„‚¯$e¼kvÓçáÃßóÌ% óœªbÒC)¨O qôFÁðÜÍ¿rU”ñ5ÂâµGòXi73#j;e²j•Ã­9ÈÀ+¼è]~€ãžñ›Š4ày–D|Œ_Ô5ŸÖÎÕmò€Kò €æk@¯ÓŠÜÛ“KÐÀç.ÁæIîµä{ýwÞÒŒ€$cš§UJþ=™$‰J²÷Õ¿xú0ØZédî}?~‚ª‡Õn c»>«¿,€ÈÑV?ΟÅÃñËØ‘:h*tÊÛ÷Š›Sb+' š¶a}¦»¯¼WË¢ÞwŠàVÂIZHÈ.Ü%Y·íÎI²¿~ËšäWý°KÔ0ò?Íùšÿ…]G§™oq›þµ…«ÄK™À`‡lî€ eâr•&Þñ$mâ©Õ nõ%ÖAe’9ɪAuIš @ v¸¯]ç°ÜŽP1]%ŠLüŸhÁÛÈ[ìÉ<\Æ@G.hDì:âo
+܇˦ô¢3DU›êÃ…zïî^`/wþ“ª?/]­
+ŽˆÜƳ\[Ɉô;˜fΊ&|.{Jr×0p¬P¢¹P©z<ö×­^ˬÂDjž&"19#T¸«‚ üæ*ÞF‚a4ÎÆåEÈëŠöØBLM¡‘"2)ùOIuØ׊·mŸMè(
+@@o±}G¢ \×rwˆyz$O:Ä°ö6¡œÃF|›¢ñ®[I…,¿$Ÿ]|¯Ý‚+Ò…Uù¹NWú$k»ÀÌ-¹°üªè*/½$¤mŸSe@¦k…ªƒ4m¼`= f±?’¥†œ 28ÿÊ´lHá¡íòÔV2ôUB0¾hqT–uQ›¨P –+~=ÌŸÉp Ê¡Jš{Ïk~6JÀøø¢lüpPq š•Žüñ2MØŒke|íÁ„®ï]qÊŸ ‘iZxo×±Ž»ösxzˆ:¼UÆ'Í ëØPìÑS(o„ÙéÜ·VÇúSþ®.eeÓ‡”5V æ·ìÏ7p…?¦,’«‡§Gûÿ¤
+endstream
+endobj
+3184 0 obj
+<<
+/Type /FontDescriptor
+/FontName /KZCXKX+LMRoman5-Regular
+/Flags 4
+/FontBBox [-566 -303 1772 1126]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 106
+/XHeight 431
+/CharSet (/D/P/U/X/Y/Z/a/b/c/d/e/eight/h/i/l/m/n/o/one/p/period/r/s/t/two/u/w/zero)
+/FontFile 3183 0 R
+>>
+endobj
+3185 0 obj
+<<
+/Length1 1634
+/Length2 12733
+/Length3 0
+/Length 13786
+/Filter /FlateDecode
+>>
+stream
+xÚµ¹eX›]›5Œ;wIqwww—E,¸»[q§¸»•âZÜZ¬8Å)…RÜ>z?3ïÌ<3¿#GdŸº®µ×¹cto5uؤ¬œ,@òN(;§0@UMÛÉágÓÙ¸;
+ Ì®ÆPwò|5‚ŒN€Èè` p²è‚
+¸@ÿ£-ÐíŸ\UMMU€# ‚ @ˆåk uw˜ÿc{½ƒ¬þqwuýÛCí?]®ÿ¯ÍB—vz½2c_ ç¿ïâîæó߸ùŸ—méq»AÝþU°;€þ¢wû»g`È?65)u%y9]6ÕWáAØÔœ^Ù°C½ ÿDÿ­'%«* ääp ñ8_E*±’qrt|Eí†ö—>Yð+OP'WoŽÿ¥k{ˆ“'Ä÷Û­Á+ë¿Ì[¹;sèAÀ.î %Ùÿˆ~5¡ý—Íp@.
+K
+ýuXÐþ©®±výËüŠä?]ÿ!Æ•éuJ­œ Þ
+ ±póñ€®®@o4ÎWpóñ|¹^%mòúG(
+ö2â|׫ýõöŸ¯LþGºÿÒóË––vòòeããâ°q ¸øy
+½Î+tN“s¾ò$DpŒ±8ë•à‰‰õ—T@—µ]žÊ©hç:4 —Pº-ž^%*YTË:ÛÈÙOúàq†•µ¦«0Ö//(Ýž<¶È;ªë‚EŒ>C0ˆÉbGálöiÞüÀÉÔqÝKÒ?Êèísbü ë.R2:'À’C&VgG`Ã~ñ[p®:1R¬WÛj á䪦p0®JË{Š{ÕP_ÝË –ÇÀ¦6uò­Ý×@FVÍ3ÔprÇ7ŠñÔ¼ÿoþ¦I±Ö4¾à†÷LvÜ»4œ>iäIIZÿM°F]P¹§ÝÌ¡ —áO"‰8õs9 Ë;õlvrzyYÂv…97ÂbÉ×.M¦BÇÛNÅ£ª©[îN¹!ŃtÓÂÚ,òÛ‰ú<Ö\ˆ‹‚{.îqùñÉoÏ‚ó•qm,‰q·m;( àJçlñ
+H}\žÍ'4-GV– ÌïÆŒ_®³ôTøx½-ˆeóX>nÍ•½`«\&t‹
+5ÐÖÖxÕh\S(œÄ‘ \™®Gä5”¤™yà‹…àùN³«é ä~Tª|°??Æ•îËÃV ù G¯!}¸ÔK r¸2*XíJ’š s;eþò£i¨Åãþ퟼6^öé-*²ÂO&f~ÏQä Uü6Âðäê ã‰;Ã÷b•÷S´´áf*:ÈW…«ï¹:ªî4Ílð“=ÎTÖŠ‹K=’9W9ìåBPzž–r–‡Fö…”Xâúƒ ¶Žl/tÖ€'¯ï`>‡œ>p9ŽéO-F÷Ð;~RLP7Ã[Æš€Ï16AôéQz!¡zl S™\=˜nj£MÅ©/h*˜¸*Ÿû—¯¥„,2’“½7´V%Ñê£CÖA"hž©Pëxßú.ïKqäf‚Úküšºšy¯YJƒ¿HR˜L=yP
+bIdIbéØ<^²ûÜl”nÔ'MÝ/‚ñLÅDÈ,Ÿ›g&P~öù{g
+é¾IÃ'@€ö0 ¡X_î•p9¯T#|ãÒE¯qÔúÈ ÏMfÏ3„H? 1³8˜_²Ãü4ÔlŠ_Ðð~ ë9déšbž ¥òr¹Ö÷è˙ٌ¦[.
+ƒ"é)l—<r†2MN‘ž½S6æÔ±ÝKÚ2Ù§uÃ:Ö
+8s´Å©?4Æ2Uh}¢x¯1e»${êŸÑÒ׆ª1[Õ-³Î 86ÍjeÏ@ÉHšM|>öÇ›ôÉtEæ®"%éìššrq‘L‰§QiÚÈÄ8ƒÝzýÞ_h¯´fš]ð¤£:¿¾{<×Á²N¯û^Há4ÑE­.\Çcñ~ëÛ£ÌÏq¡òʹíq4ø4ÅlÓÓŽÝ]ÄïJ¢ ¿ê6öMM3¸#ˆ{­6TÎX~[þòbÅ”,ü©K"?:~&°ÜA“&\¤˜â¯Ù¢ï¿Ë¨Ð<mäD¦›“}ÒÐFQûI7C–&|K:¦ª|+˜f¯ì)-î6;³KTÏ'xÉÄè`×ð·J/J) Umc úôfŒTžW˜¦´õ’IÀ'oÌ÷`.è‰d¤ ‹ÈØ|W }ÑiXE ü«œù6¶g`G^YNü>=”ùºF» £ÓÌöù+Û"\¥•j uÞJÊ¥VAêt
+ã.æ‹U™lfƒ¿Þ€[§„Žèí<¶ç½ú'š–}ŸàI_<p×̓Á¢µA
+vX¢EÄàI’™ÜÙÛŒó‹£ûóAïöÚ·N+âV(q_
+Yh3wÞú¬l·¨(ÿ}WffÆ<Z&BÅÅ}È Š\!ÝRct©›ã42°ƒ Ãß¹Øó—Ç&…CÕرPbF]ü|˶:Œï?€ÏCÄø×Ûâ{0¡&Þßž 3…øË&¢+Ÿ ýìÐbÙÐœÿ®c\×›mZE”פÎX»O˜DnƆötÂv½!øšG̵^-æ-6Ta”“±qÔ­B„òùK}:}ã&Õ“Õ·#×€e|ùvýì&›åÕŠ…ßœ~‰Q¹§L+ÝåûH…K/ãb«ÿ„VßšŠËÎÇ¢ˆ#Å€ŒM’kÀ/{ýJeEؽ¾³uZ`“°lÞrˆ¸øg‹\Â0šÌ¾gó*´·Æ¿FÀî链˜ Q³|¹DDöh[i)Ò(âùU—
+s]È-@-ó]W!ºíè–X×åâ´®e(¶nŸÛQIÆÏú$„Òoy!ûo·Œ¾ü,¤É kú“¸´ó<@œ›"¾y6+{“¨¸c®áéÞÕß4Õ¯N¤”6çm‹&£c#­'çx¼¢«WNù=¬Ü§¯¶lÆoÀ·;|gÀ.²>‚»W3êˆûØf¯z„€„bèu{|V)Ž<6$~š²f…$Hí¥EœRa…ü‘§Oæ€$ò%DuEå›þ¸ïËf[ŒÔÙwU²"ex<W´iîÈð:Wr¤ÔÎúÖÇí´È b‹žá9;ŒLĘCÏ;תâ,?¥¦ãK‡±ò7ÛaÚægJN¡5èÕJ_*%Ô\ôœç´ \3?±Jš…`sOÖq 8]Š%GõiÂaæc£ú;P"îô¯jäg‹ê_’’A39ãí~ó x3KóÄG³&³U¿“I$^<_é=l ·ë)ˆoCúáóç-ܶx>.%g•À%’ÞzZ¼ë;â½.$ÚG+
+ù"Váåâ,ÿÈ6”é=(8¼šQº<À=åi\;-gt`åWõj¨¬`ªá§»22úÓCš"o8ß!\¨ŽPXÔeQuX
+”—y$ÙFÐØ[³;>×=.ô«O/[K.yx÷Y[•b‚ÕšÞ{±íC¡ZY|ý¹tý–H{•Ö›[œú;7ë|–iY·”K‡ :¶Þ›ÛÄFç*êÚ~ÎiûTúê‡"º¿¨{ùå¾Víšâ±‘—QFÓdž@Ø«ä:_öˆ–qíPƒŸëXB¾=¬1ÍZØ¢hv ß4“>¢”_i}ñ¾>Iÿ¬×«¥ÿ„Š¢Ï ~¿ñ³ÜÁ»º%
+ã ùÕ3.\ ÷oÜ‹\fÝÛ]ª\âLγxük ôÈõ¯Á«
+qK~“6ªjhkϹ™¡­­Üãò·‘oUS£k±’â?v<eþ8æŸõ‰¼›eW´:¬y#¤zÐA©J™ß¾†³¨Ÿû[Å÷À’ydþPåc¬Õì-p· ³¾_@Sw¿üùÛJS/ñ/…–¤ÂÎÓGŸèÛ3›Çˆ
+;µ½áäÌ+\œñí‹lJ¿‹6-¾ó€zÝÙªv_`Cù‰¼ç\4c®t)ïUºæ!7†€cR'€GÓéJ[·Kïk¿/
+wª8UV’Ji¾ÍSír®æà°Š?~Gf~œ“}x:ï®HûšráÄñæãfb}÷Uí¼À
+έ|i$†±g›ûÖ¥\ç„·@4´(¸ã*g ?¾Kël´åN|þá¹ßë“"¶C‹ùy
+µ°UºüöwóÉu¼‹o…p¢¾R¸ñŠ†õã-o›•fj£Þ‹©c@âpˆõ4Uo-‹-Š"Ê?±NþÔî—ágªc6P±ãióg:­r§_&¬-\núsuŠxwäìIŒmuæYîò³8Žç•bb¡w(+qõcì…mŸ÷„×ÒTrë‘úO9ÈìÌb¾#tj«îÊ»u{p
+$šÝÛ[•ÿÊSFš]m4­ú¶ÿH¼‹øéÙLBõ»ý1ö².ÖÉ47„Ö!0‹á<ês9è-¢Ö㧸×èHx¢Wq‹þö@Çš!þ’Ö£‰9åSš
+×ï( cïsÑz‘>3öÏ?J|æºõèÙ‚ádâ+5íÝžN–v­¸B¡õ³C=š-‘`rŸÊi§*ËÔ'ÃvÓßüä-x¹…[¯fÛ/92MƒM°9WÕDC¿._ïfÁ•ò2ý±ÛÏš‰‹‹\Ñèçû³
+Pv±‘]˜ËÓî°2°O2*‚>eX²:¼±I÷!åaý†þTЭ0ø5E\DVLô]¦©W‰°¯s íh¿%­OŒYãâªp~}öA­åŽoíI4šgâ®×äl¿Ï{ÙØtë.‚‘b¾,Š˜ðhùG•öÆJR•›o‡p ¬F‹Dköç«‹üTë„æøØhÎn§
+4¦AÅq›S(GÇ=צ ÆŽ \óÉê’yVÍI ŸáªŒå“`.Éêrt ³æÉxØ„ðI6ž>ú ìt7/6e"éýúžÑ
+Á@È^‰vbyÂĦ‚ßæÝ–â,AåQeÌ뽘‘ܪäþý™ükSâÿIõ4ùGÛûë¶ìîÜÇñ] çÜ]έa/°Ž¿Í`ów“2í³ùØ ¡äæ0ÏU‡&¬½°Íxÿ4‰ÎØŒ›
+Wz´ç›¾>^ËHËÑ÷Fŧg†€Ïõ/~ŸÍÅ\7æ*ìUaH”ÅDvã ZîXu ÉÃ|eÝTåp|gh¥iÊ&; oËBwâcÝ}l{‡…7£–þ„)'–H©_
+&Óï;a󩬞6ÔŽ®I”7ÉÀ7$w6O¾ì‹MöŒãv²ö¾ŽÕà]ãNñêÌâ_]PŠvÕ"N ¸{åŒÝ%‡X~Vj-Üã¿GsŒÓÑŒñîßð<ûó–}ƒ )‚C·xN±;JZ_ádYå
+þ+ݧµ{x$8Ã÷âj|oÁñØ¥}ˆoÑ
+5Yô%;Ÿâ`C"$~k;ý©¸4øAR´å1Z(4@~Fð•ØÆíGx“1±P$¹¶êo/ÿS^õaÊDsÎÀ8“Ê™æÐÂUh®¹óéWš‰$ë“°+R—•êew^— ÃÙ6ù'[Ì{é¨lJN×O*k…³‚Ó#èynÑ>¦$Âë`‹uˆÎ$Ë\~,2°dÃéªI¥£·­+Ô áÎNO´\AÄÌðÞ{DtwÍÝ÷ñôUÍçø&ÅÄXŸ¥˜z[¸˜òs?ÿØ-æâ8X„uu=øïg±ËAF} ]ÜæÎ @º[¨Ÿ è‚—tÏè56%@›ýC: å)nøgq÷‹)e!×]*7„½§ƒu*¼òë%|WltÅ7Ôí²·üíÍú'Õ¤ÄÒŠ\×úáRo‹!ªÜå€æJ½™—Äõ©Oòñ_ááœ]±W—¦QNPL˜j¼é¦á´DÔ-Ý'Θb>`yÛ¦í¬…³¦š^_®MæñwIE û;ûG±Æ±Nê,×D󿘶àá!þ±‰ ÒÞBÝÚ®··àm¬,èÌJeYvøÑât5’S=îeXµ€Ïëö6¢uËÞsc0”Ðp‡û§º²ú¢ö †ï ߸¦ªªÃvIõŒ NüŽ#)• 0;'<—/ ßᇌ˛18‡_¹Ûü,v;è9HvÅo6¢³‚丷µh‡o™]ñ+ÂHr­›ÆŽj$X­ÄR‹í9FUt*˜ú4ꫲЯó2vîià }_Þà.mï¸Ø s¹—~«QzߣΧdSƒ”6XZ ŽNI$;œn
+Úåk%fd¥ÑÒz熄ÉqJõ6)IgœªW c„8ÈqèH°¿ô¥º®<fÕ´´'ƒ¥F*¸ØWdí(ŸF·ŽšêF´± ˜;ÇïöxKÀ˜õ§õ‰¶ápV|ƒB– xy»®]“œpþÜ€åd,ùò¡ÌÁ†R× 9@¸C>SÒ{>^êŠZq i›hCÉ)4„Þ8œc™`ã£1à”—Mô;˜»á¡ )ž¿f!6ËÊ-æl•ª}Ân7€¦Ûi¦>ê}sÓ»2¥`=±ë )Åe’ðÆй«”dýI5¬Üƶ6(¤õ0Ø°‡Ë ¨øøÕÉÿ×@àZóH†ÿØ…ÛŠîR“•_`› ²¬D`ôJqÅŒmÇ÷lÔr‰ ˜èwOCÓBó.D_ @Ì) ¾jkLÜ{ÐQ×RÝtIÁ^4>^-}m6Q§­Qƹ^²…ýü}ˆçV{B#µiQ7.‚e;trƒKX=0ã±ðz¸èN§€¿u.òešÖ…õGtŠmƈÁ—Ñçù6á¹ÊÎw,’ Ü)1ôΚOªÃ.Ñ0skî±–[©ÕÁ"ò7,.±‰w‹ê>õ#Q¬œ‹yúQónî»…íïù|HH㾧×'íj㉻áŒÂ£ßñäå/6LkÅPzÏk›¢Œ™ µª\›/|¢³ Éá³îEÚƒö‰x$æÕO_èÎ4cn¬$Hx»Þ¬¶“a3<U8\Cà9È0•ä‰æ²hÐs=&ÒDPkö ±µ x™Bzþo–¥$÷Ôp\±µÝisü®‰kT"Dê|éß#ÏÇ¥ÊÊCò%ZÐ'>†!¦$Íð¤¸%€,(kZßú¾Ë”gÏàÃ:ŠM¸ïp$¥®“J½d:8\V¦ û¡ÓÁîžI.…’.RL->@GÝ,¡Lr'â_ˆÈ\C”¦Àyˆ /È¿Ñ”© -ƒ\²iíù÷‹7ê¬#¢Y‰Õ—Æ}ƒDM•u¢*=Dú¸ÊMîÁÕöb¤e汄!<V扃PÁR£Ù«”MÚñø?û÷±¿´‡âjïÅ‹6ŽÓóãòw1{rµ»|§÷C¹“<SÇý@
+wæ=aZ@ð½ïjÁ“r¿­øpï¥//ñ€ËAwI,d¶ðöî|Ëhr6ñR29¤&éˆã'Öýð\äG)»ÙÜÊ«@¸âš²È‡æ?ÌžŸ“BD`ƒ°ÊÈÐ K¥©Æð~ Ê 4¦¹·‹k¹KWiÏ&™(E³8Ä»_Ju"bȹӮú;á”÷º} XfEIrÄ|«û9SõŒ¥Æk5uáƒïw‰Žb†_GŸïÚí: œÜøžß¹u‰WûSî_N–ÚNHúúƒë°<üÇï~$¶É ÚçsåðFcØ4áw1¿E¶7¨\̱s½Ž”)ZSóûÖùhç„Ë0»ü⣓rtÃÒ;µ°dok`x²¸™ÿByÁÍ?\†x*¼"Q9¦$‚ˆ9ß9 Z‰F&¡xÓ WT‹*öUVå}ÖbMþbÁ-á.L®|½¯ê熢à.Çv²HR‹}xk¼S`äZ¯ŪLLÅCqó2ç`¬†:ÍÖ¢ñHnÔ@ëæäõÑ/mñß.eúUE}JŒmàóÝÏÚ‚ïOºæ×Ja×PÜ©-ÐŽpz¿øá
+ˆî~w0ÒRrï)>t€A †"
+¤Ž+hB9@A•“Læï‹}‰pD¤]-JZªÏh} QØ*6÷Gâ¥éIÐÛ[û5:YåR•²xïÊv{Q@Z`@'† ‘mE5‡<Ͳ8D,OõžöëΊdK|Wñ»ßT.d›ltø ‹ŸìÊÀ’ë5Ld*Lnb3ßNê}¾k±ï:¨íîØ …ºÌh´f™ó ÁÚ ³x¿cýO|z‘§óeZP¤XoÕ†¶FúôK6æUƒá¦Ý ”¼PÒY—ªh#•¹j2%gQö=§öf RdôÞwĬ؄^•Wzæ‘a«sÝm
+(ê!ÒóH3ÊŠ˜žz)ݹ¡¢&[ÙC›ß"!Í—ÚO\Ž[ žVZ`ìÄ `ür9Jþ3
+†¤ý¡¬™Šòxÿ"P)ø%ve2Á¦ Ðx¤9Ò:å½ÄŒÜ4èj¹~I¤ŒºkyÄLY©®r£«1H;ÝŒ¼I·fÈ—WǬù)¦i~¡ …´F*‚W9Ìø1³ã4B·<Ù:€š®ÌÞ$·GÛ NrÚFšÎ´SwºA
+$\J›?Kð¢/9¬"ò[³à¤¶Ý¸°eq-!nóÀS¶n&4F• )â²î¸RÜ
+ðØpðøÒ6dì8!™é½—ºWƈé)ä­‹Ä4à¬/U>!'”«xX ñVc¯2”=â 85Jy>¤„=~Aà2æ{¯ÒðaA½;à˜öË6pÐe>ZŒÍðnJÖ©H…2ÝÛ=æ%ç±ß †Þ@ö’ y[2‘V *•m˯À@~üD³Aˆð$5ª{”'ûNqztü¬[PÁÅîI0Í‚·¿
+'§“K—+ßðkDqʦU1Ýaèú…ó¾ ¬¿š±~o1“Ý7â"T ×
+|QÚ_éÊ4(þ)ZEá9*Ù6–v›yؾoYû÷¡Ç”~nï{cø Ž,¾ËÏ
+msr­IYØ2l
+Y§Ñ5é"1´Š†ÄëgšU-g’“áÁl3 ')5GÅŽ;c,Q`ÌC°OçRQÜŽY>ëÇñžºÁ‡TŽè»et‚BÕOZs Ú¶·[%÷y–©
+ä¤Zjžsˬ‡ú$ºs~–þŠµñŠÈ&Âk¨±aoKÇ>µÜÂÔg±wÃŽ*æŸW¾Û pßɬ_Ì *ee«6šWN}
+­Ìý) ÷ƒ\nÈÃ{eh S_FvG~FÖù§±Î¹¼&–ñÈQ~¡k}Õj|\rc8 ž}Œ,Ê^\2V´\;þvìÿcdqŠ$–I‡ eHEzõÃs5ݹ4ô·rfZãHå÷üDfEÏTF¨üucÏWÞ¹ÅúqËT5‰=\'ßåã:XUú^÷Úc&A‰Ú“«ùNCñ^`È…¾‚ZîÚÞg Mç õ51ååøÇZO^=QHø:]÷W•í‡küôÖBÕAÉïÑ®Y_ðབ‰zë
+FŒ;påæª2ôŠBkÜâç3>îùR#‡+´«€S» àõ6uöÞ7*tïÜÛ¬õñ¥´³6I•ªe¶Ø$¬ƒ‰ã$H¥IH”ÕãGc¸ÖO.ôÜÂõ½Uâéá×=@NØx'ßEŸLº”ËäÓ|?Hzå¤ì÷JÏRVcp©@E˜ñ7œòˆBöÙãû%ØÙ’xk0„`š[c›ékâ7LÊÊç[Ý) A\;tnqHØתf†
+êÑ ¼æ>/Q7¢ÆñÜdäæëñ]ùo»h7 ­Ñ™Ú°"ø1àлëÉOÚ0ò–L“gØ=Ÿu¨A· ¬GoÕ×R­/:Ÿ/ h`ÈÄ'ò±¬¤¨8tŠÔ—}[(E¢AÈwk¼ÓS%ál¡™ziöÔª6Ë3 °5–½ª¯!ï{ãÐÓÕ$&´Ûƒ:z¸qËê<뤀ÑÖ‹àæúóü-\|ˆ$8@®Ä¤ë)¿Fæ¸Ñï×ÜË^£)…ûrq|ÆÞ/pê ]ɺ­yUvò4@„©6‚BZFQËP”¤,ŸîMW‹ðϬcÇB¢²‰¯Þ©_Á® K›‡™¢Éìß¿zÊI)æïógÞÚ6s8ô={˜1ß³cW d[ü|Àóªà¨ Ãé%Žôaâ=ý’V ùršj,D׃fó#!H6#ÍPq‰œrŽ£×6ÁÁnp`^ØÆ\¿0hÃMœŒ—„4n¶ZíO²éj„¢¡¯sQñ—{ÈdOÂaÞÈ8„™¾qjÝEÉY£u@LÅ6)ýÈ“fIQ~›øÈ—òûvm׫Lã €ùJ¤Ú©ÔK²`±Må\X~Û ¹Âû›e÷5Tß©È ÞO*l\Wî[Ëú•®hBUsa¤$!Xƒ1bÃðl|jmôÓ™I¥®ª
+3úŸ;<ƒ0àœ[²"ØlW ³òî¹Kî©Íý‘Û©‚k$WQP|vvàd_‹õªËru(ÄqËNjæj'k«ïæbö‹øtT˜þÌ!«oœ-!'¿ïávì„PÍx-U<#PDd7Hš¡’5XÈ/\:T=ñ_ ,7‰ˆe—¦nÃì,5ÿ")ša7Ø–<\¾êûã þP[úИ“6ˆ01WÃa©æ\±ïd"ä°÷ÀFMÀu'7Øíå¸]i¶˜#é;¦Gß=R-€Í531Â"NÛÎ]MÚ¯ï1ž˜ã–y!ÙbǼ–Ž?ÀáäÓ50 ²ýpq‚ñ/É eå€Ý0ßö¬ß‹Ü"Ôó€5Æp4¼˜Ü­pJ8]`ÿ–a¶ò#V¦Ö+Fí.µƒ#Ö5ºšQ12âíøü}P
+endstream
+endobj
+3186 0 obj
+<<
+/Type /FontDescriptor
+/FontName /ZQWLWE+LMRoman6-Regular
+/Flags 4
+/FontBBox [-515 -298 1647 1125]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 83
+/XHeight 431
+/CharSet (/A)
+/FontFile 3185 0 R
+>>
+endobj
+3187 0 obj
+<<
+/Length1 1828
+/Length2 21392
+/Length3 0
+/Length 22589
+/Filter /FlateDecode
+>>
+stream
+xÚ´·eX\ͺ-Š{p‚Cãîîîîî4и4î.!¸ nÁÝÝ‚ ¸—àà’o½×Þ뜿÷é§{vWkÔ¨šsR‘©j0‰Y:™¥ÁLl̬ü
+  ÔhiH©k
+[Øü‹Øár`³wí‹9ZÛßåHëïv²×íûÙú{t˜ØXÙÿÃö.I ;G ›€ƒóð†ÿhøû¿íX´´5õÕþ/Íüã&åhád r´°sqÌ\]ͼ‘Xß…ÀÎÅðe{×´%Ðë¥
+˜R=jåÌ!ð¼:y4WûÈjÄÓòû¨yò4𲦒;LÊ¥o`A“Ò8•ÌT¾¹@ lå·uÑSuˆ²—ª*5ÖÔÂæïvüÞå;ä+@̃Ùër綃°Mœw$ñ‹Ü m’çX—¬1z à„
+cʆ˜D]:ôÉìµhZDÄÝZ†ý&:V vÒ¯`¹„r>4<51°'6´(:/>C<ÍP³Q|ÍŒÀàtGÇAþLMåPÃËB0ñÈM«šû@£q°O?ÜÅA-kÖGg02òˆ“ËEÑ®ýÛîZŠ­nZr¹Je·æÃúAŠë‘Ø1ô”ì¦KÏ·åºfƒ€ÌÍŸ/?”ý’ŠˆÔ5ƒ:¸ÖBp?o~TÌù!s è¨p2 * €GdD¨W7m;³JTô³<
+/“^áàâ4)[Åù<7ö4`1S]h/>æ3~“àDû
+Ð.dLÄÎ@— ÄR'(ÆîUÜÄ
+âÿýŠR¨Ãý‡v—&€a–žãV§¦sp—' áÃ݃ñça43]w]”š©c¬L¥z‡€:¹œ®sýT_|:×%NŽ?ƒOÑœ«¿ƒM.7—øCŽ +[窄ÍhÓ}RÓ>YùQ¼T€—oðÞ’_›ïá¿Šgo°¾Úúy·o²ã ^¶Åüß´é²°~‹à „ãPU·#'æ(‡úÕ6!¦‰úˆ˜šÄ¡0ñÕ)’ìWÊö#iÁÃ4²ÿÝCž€€íxJßÊLç3Ä>ƒÎb &
+¦V<2k<™hN­,ž´½Ï,,ŽÐ«yÔf6ÕŽw7IrÈ—¶³oõºåÉ¥0ÛnÒJ7ö÷ÏCOº¦“4+ÁŸÐPw9ÄôÊK¾YŽ`ãsÔ;ÖÍBÄ ¢—ŸÐó58`Q+Q|ãBT¶G®­½R©Nm‘Ýï·f‰é‹ø®dct6ÙèO„¢?Yp®*
+:”îx•ª< èžmJWð_â)ézÓ¨®Ã°¨ì—¨ƒgªèErú kg””òRáI«‰ÈÆY»ÎŠ@ÞLJ*äqÒÅ2˜.Þ€Kã5¨}kæ4ðg’¦§Où¾{MÙM8pÍ-ª˜o*¶ê+e,Ÿì “yÉ®0;ØEÎÉ.ÂÙ ºZ“ƒ«+GÞ­X—
+–?2/0ÎTÎ4`ŠJ(Ê ÔC—¯šöö‡¾•@½6,BážC+à?üþ¨nÆ
+Ù5aYá`öó`¢PžÕ¿Ð{+jÀ\0º³sÁÜ=³±çÄû“”×Ùç0UKq&7FŸE±²b>„zð……W¡Hщ,„k«Ç‚LtjGp„Ü„ *hÖDÂv“í~ÞŽ ŽW$vn¢è–f0¡páí$@‰Þ/Ü ÎmâøŒ&ù·^^ÇGAoGiÉ}+s¬ñ&œË:GØ€‡¯§J›”
+w(k‘.Aƒ¸]T<…ƒÎ*‹¾jCàÒ±\‚ŒÉ =ïÒu‚Pð÷Bºäœ&~B–@Ä1É)~ÙV(røSÝ„cË ­?KöeK~õÉœ>©ƒƒæËJGTTþŠÝ.•Víˆ.I†ºÖañYì½ÐüQcØÝNŸ•Ù)ÒzxÚÝ÷q¾J3uKe Ždnÿ¨®ê12×¢K"Žy#ç`1*&Ä훇¼Ü­ «Ô”‡ŠÙ#Áÿ©P>ó#ï-(sŒs…É™íG‰O š_' õYU ñå—~Ö{Áò©HýC”µU^úhHl­zÓzØŒlÎxùMÝäµÀ”1Âe…„áì8ñ{Îí‡E…y¥‰š·ÆñÑïÏnÏ28-;RJhzñÈw„ù/zxm˜<ÉÓ8N¢x|ÙB7öªt2Ñé–´_äýŸÆç^iË™kO›ÊýàskÉÇýÖMä½ØpJ$â¨{åOgsº­…‰ý<t8¿¢N³9bM}0]L[W@9¡pË|dÐIÔá?ЬL³Ûþ¸vúqb>­ÈàìmKÑ/Eó}
+™“
+ªåõÖ'ù•Wˆ¡TxÓE%"éÚïrqwãE¢¾‘öÅ8ͳâx•Tº”¹t8÷hÙ'ÿaÅfñ´&ŠçºYµô¥"‘³¶³6’X×òoF¢†…Øs‹ÇÐð*0yüÛb³ó7Æ–‡åV¯GÎT˜0¾úò=
+ØÕN…ð+§CæxÖšu¨¾ÔY7‰r}ݤÑ­‰™-ò¨z\`otTg©6Vê@Ôã¬CÀ6{"ýÉýÀºÄy½úŸ%*­„ØeŒëXæŠi8q§é¯ØéåíJõëgP)7É:Hé7RU©„SôèÖÌ܃Cá¨T¹™wy¬?š@i¢ñNNÏv5÷j?NJéº!ïþx¬‰$ÅÁI„¦—ÚáIí¹‰Õ.j'ëp4&×h‰vÉÐí¾g«‹í¹/Ën“«™™¢{ÃféS›Î³”1æçÑŽ/†"ÂP}ëa|Ê
+\Q*åÀÎÙyM¼˜HªãÆQIÔîâX˜RG_÷‡è¶©/ªë”=‚U籩–š@´áåÓ7æ*šÆž‚
+–Ô_ÞâTTœŸz»æ*Íp°os¸…°ª ñVfOÜ1>K'ÄàcuyáÐfÜ4½PÖÎoKÒ™ÝÁ‹ÂMrTW…j.’ŒÅ”ÈzdR1úð ú>¸6V+¤?‡Ë¼NéÝÕóÚÒ†îÅq"6j9¦qö3
+EȽֻ­5ȳk'¢ÆKZékR»„x<æUoæfÅH+ì oUwÌ®h\‡Sã¹Ïe=Q" qH¬ëNd<‹u6?¬Liº¨ÆJ[r€Éª5*e¤ý”m†dÛ„õ} G3?\ó´ú’‰d–öØ}VÏÕIÂçÄz)ŒJucœcæ†hK$ÁW‡Qì‹y¡Á,Qk½Ý|ruRë
+R˜¢!ŽóO D/H7ÐçíŒêQ£ û TqÔ»_c ‹š­†”׊iø¡†6k°KŽ¬Ê¨„´å¹L© RcïØŸFTÚ ¶±êížb‚æ"‚Þ†½Cë÷ú+´ŽRËÍ—“ÜV©ÚÖž á ôô…•¸È@ŸÑ‹{a)˹4&ôÝ‹?hì×àÕ æ· z3ÿnæµ)9,º¹²J@´ žö”®cú£žE.«HµšðÉFðQ.\s™€ÅÍ‹Ø?ª©&Œß‰ðŒ‘¨Q±%š_'"0ÑM‘)= D»,+Ví¦ú°øþ†ëåHzÖf¤îO þ°ÅÕ§zåA YŒœgÇêü4¹&æ0Îr¢-‹yܬ÷&Ûá΀.‘E”I~wÕKH}ûëoê'dÂGß=qƒ“?º0è ï¯Õ`ƒ§Lü}SS“I\#+cáËNó-qTÂKëÃŒå
+âƒTŠûÿ«F’Ý ×îqÌŸ¦±/,ã¦ôŠ-» ü¶7fE dFJšÇ¹gã\=h]`ækš*èOÕw‹ðF;"ìwN„–¨ŸÉ#›®c128ßJàYc´˜´VŽm„¸·ÜkO°[fò!9u¹e~aCSa(ê…ŸÏ4^{½¿gs[QÙ&cˆ^Yài›Ÿï`F¸¡£†/rW“|äÆ•ÈX>ÂUš‡{àâ¹P
+-)+¼þ­C=1õáÅuæ«(YT zMø¯ë©s³®4D]²åºCmÏå 7ß?çJgxb÷Ð<ÆÁt±­|›eÆÕ¿Éû+ó¹»x73 –ãÇ]J%Ö£¥>_^SÏ_qà ·þ1õOZÉH„HŒñª°‘R¬éú7€·vg¬¦#Õ›è9새2„£!çHµZ‘«Â* *¯ñ]¦žÖ|_Cé}ï«,É^áPõ¶/Çò*ìÂ];W²¬a/jÍKãþ
+9š÷2Ä >‡{þêýèÖŒØÿ-²vjIÚ³\sºWnyg%•Ïp!¢+‘´ÉS5]WÍl]«íy•ád҆߻•¢„J§t6ý6Ec\ãÝ€çõ\w/,VÍðp™ò«¨ÌÌ7ö3"Šoå!rŠÄýêƒÅç¯
+)'ÊÓ›3Rµ•Ìƒ6
+HbNhç|¯¡«}yvrkÆ™__4ÌeûçB¥¡ù}€œ‚cÓÜ‚;êYÆÎÖ÷*«÷ý‘£ç±² ­>ýI(`‘lŸ ã/ÌÙ7äUe¾á¡î¸M[ôƒç s8ÅN¨W‹–0T7ðÐ1‚í¼QWæ=¢µôÈÖK·Áܽm9e¡ƒf¥õÚ¼úI‡ä¦D®ê5üî!‹éL,©ø·?é[A~:N®¸®ñ‰Ü©W¡ì P˜’8+†-¯Š\pû½LË
+÷u°sv#  ˆâkhë‹.+fÔAr=Õ+òkUö"1Ay7‹˜~%¾¶iÀ)ýî 7 XÊ‹g¹ºç›Z7£¥… R¾‘ð©ü\Z#2¸ý£ä,ƒø»{NƒÒÌKý¹Ä,û‰v•NzÂÏ@o€U M¿fÔ¹òpî¸VÝËã˜ß”4«™ÅtÚ ,zÃXE´ûlƒgÕwÏ{>Sî;é°Â]ñc$ã-¯’+ù\!·ä­Ía SZ~Ô4ýÈ6d_®Ü[åê.Õ»¨
+oŠÊO§Ÿš„‹i@;wÏ )Ödü#ïɯHhþÆ]+7jŸ®ëÜ3Ÿ wáý6ÝHöù\Ü:Äi'šÑ4³_âùùó\Á«3!ñ“Q—}QˆÅÛNgÕ KJÎp•©×],n#NgõÖäfÉ"±½ìÄÙaŠìZÊêYokG± Þ»[\R¸ˆgð mÌÌ^g#„N\%¢$še•Ë°ü´@3dhó×Èš"ÝÃNïÅß,ý)¯)öyß`ÜWÜ!–30‡$»Ø
+}qÀB|\_¬CÕbHú«¤=ãF3a¦æwê¹Æ b‹MWç&¿Ôo¾À3YåÃN²UÒÀ,Óy‰`ö&ÜïÆßì?EºòÉÍÈÝ
+ÁÓ( ½^Ïž‡ß­l5û0û6Åù$͵ÈòQ’œ1û¶’ÑÛ5¦éø&ˆ%ÓîgDz‰Ï'ºu”®5䟿gœÏ»Ö÷·˜2~7mZa(Nmp‚Sõ3˜F[?\t@šjÒ`×äùMJ‹¥fC?~¥>9®ÁNEåÇŽ$[4©áD—l_×Yуdݵç:Z8>¹ûoM}£”—ªvvïò†*=¬jÙaRÒ~»õö\¦[Ëî3Sº3ñ>e}Ùø³¿&Ÿ¬r4)?EЖpïyv{SwQ²ÉÕI/3áÁ'"ã5½ì7 F¬fUi*ËNv)ì[˜ÝkFæ
+Ò!7ÓCßHukßäú¼vÎ8³4 ûjÏBW'‡”Ÿ
+!.¯Êl¸xŒ‘s±j}•x{píqÝ4¬áØHM….׸?€Ò7R—ˆ¾Ñ2Ä%&’x=&P [EÅŒ‘-·jµ‰%ÃÂó:œ‹]¾ÜZM1᜼ߔÛoBLÐè J/ü
+%Œz<Þbœ·XW+ć èà,Õ>ö2äyš6Ÿ„ØÐmL‘9æ¡%÷Q²½Ñˆ®x¤I–T¡ä…ÛtSfé<Ï‘²2"Š,Ýÿåα
+š¶e"ž6Ú!}]üøKðcëù‚¦t¤1 ôšê ‘´N²˜+?<GFÁO¦®1ã&¿àP&Æ!nù¦rǧ;)‹Ô¦>Òì‡ÙÆ…|Am4ÍoRdÇõ]::½ Ÿ÷†Æ4PVC=ö¨Ùò›¾ÒhÊÁÐ6åéCÌ\ZÍVàAµýTO.áçó•~®çŽa3è®v]%Pa%]‡± öðˆ°lt Ý1Ö”¢’œ,Êê®kÃÒAR«t`e~H´kFÖJ#ô»"õŸÃrÊØÜDÒ‹‚C†C/FÐiP·jüºÍþúñÓ>±Ê£ût•1IÀÏ^jt”²œŸYB×KøWhÛ$£_‘O臱Sn‰5_†ÔpÖ† TâEdøβëtpÝMP ä¹¶ð|dÒ ²¬ ð“Å-¼( ÙY÷xiiaêô¿i*4J½¾v0S †l(Õ m VÏ—À·ÖA7„Øí/úÎàZˆ3Ö†dÚÇB;Çk—±û¶<åʲ̯gFÏ×£WuÆ!ÿŽ<¾ŸËŽÒs©šçÉÈž4<§D‚ßs¸Šäu¨#ñ§EŒâUì Br
+ε
+ÖÀVŒ"*ùn?+lϘúíi‹ ;Æ8¹ž½]ŽŠu϶ }.ŸsN›Ÿ¥yˆ` ¨îq;$yqˆ–˜6KsØ.ódMÔ86 ~ó! 4pxnlÂØ-ò<óå`è‘+´j\ƒ^Î…¥×uU`’í4F‰–l]r¤‡Ùó­ø„âz¹‚« Ÿ™ôl¤Ý:Oˆ íü¤s’['.•D˜ÝdAûFRîYÊó£sWDª ³øy‚rœ‹®h\ðóæHµk”<öQû“1®¬ËVë7uªù%“¬éX;üÿ|¾r(ûãCÿÖyV»³q_y˜ÊçÿtmÕRwݱ¹`;üJ%*Š¼1ۀĒœ›è‘jÉÇNé-°ÐÒ/€AîF$¥G²ùeÑ 8t:fcƒ‡4CÏ
+ľM‰ËµÊHS,ü0vD“h°¾ê¶¶dù#[p½G›tú¨¼`Qˆ`nîÙ#ãž½ŽAkË뻾æl™jªÖÙÏëšR—†ZrWöý×_fX
+ËdäCÎéæv¾P¹þš¼Þk7쨸çØL!¼œ'‰Yûµe7}мF·µµÅiÖëvU™f×
+0'OWù
+¥ýk DtpœHÈ“ø‘ 7K.ÊoÀ¢ÀM> f©™fR˜häðB·^ËQɈ¬Q›örO,<S÷äe_xÅùµQLbüÂÝF6Š‰¿¡Ý·í|:û°9ÐïA½@+Jýá]üÕ®WW¨Î$¡i1)ÂŽú–±œu®½Ï(©øÓ^5aÚ=6çÁO3ÁÀÏPD“º¨ù_ûÒû¥±c½Ü„µ×Ðs¸öë‡lä™aO1ÜDwÎ'H³&L‡T/ø²§ZÞð¡…þ¬'J=tþaÒµ<_¹Ø›þ$Ã}²í™Á‹A[Q·`2o±Óœ½×Ž÷ i¸$`g¹Û6¿¢¯lñ‡aö}"Ì
+W]£“åª`}BÇÓäâõþ–°§&Õö= )±8…ô6µ"ÆdgReߤ6ÖóN‹ùÜל`s#ƪ€¢
+ l}µ)ä±íbqôd;¹Í
+ÿ†ª7Kl&<z€jýsóP¼'t÷K¦â¡à®o»3Á¬´;VAæÙƒÎ}[Ñ鸥ãéϤç~aÉiMGÝ•ñŽ–+mI …þW—zS¾=1<pç1óUtÞèIµ»®Î)±:‚¯þ'‰Mn¬Š*UÃ1/ã=²¦>Q_Ϫ΋ó-ÝSƒSÔS„!væý(Äk¢TR˜Ÿµ3{’zèâÔë.ßKÿðX£½†3m¡½&S WGÄc[rÃU™N‰AC~å]Â’œÖæé¨öÑ]8y’Øç}…òyî1¼íYÛ ÏròLq ½_;{£Ýc-\2@Š óßUq…ˆžÒ´œ C{¢P”‰|§þõëkÒ“•1üÆbŒzV ‡å'b»*¬Br(¦ îü9¦>á{². “Žúô†Ì–È ë~›öÏ-:­mÛ<ËJz¿H¢äæI´ˆêçn {FǧkšT[¹ÿ¬I©ŽØu†â°•Æ{sæN¬[hô,åd²¬„MÆY¯"`É¿9œ
+ê*±S×SÒ,gû1~éõÎ-§lN¤Qñ ™˜
+Ëg}y¼[Øà®BÌW•7hö«êäL´J5¾“~«¼<Lõ–*붕H7Ôáûù Ì9f0)jõ?xÇ&?q\,EÌ#ˆ)o%b¹ª“MÐ.io' Çoœº ÛO_©ÊÃ!ö» ðËEyú"¿ßÑd©¥¸|ðQÚƒ[‚öàDI5+ÓÀ
+8ù¹ž[×ÓåpÎþ¢ª†É­¥/ímØç«8ö<Ue0Ð^¿EÊùóˆ¬MŸ =º%´Þ±,ƒŒ„ª’}êø¾'|)<×zÇ“°x-5*ý· ˜þ°¯°]¹ªtÍÃ?0 8…£„å>¹´ÿ„XÊXFW ®Îb Æš¤³ídà×ðï„a(d2Eh÷
+8ÞºÛãüà¸äÔÉÉÅ›ÝÊGƒý²<MñÔÞ›®ÿÝt¾7@¾Yé¥wÉ>—+o$Ô7Ž@to2ðy“|Âb¼•t«A:„A|(2é(‹c}²9åi4ÂÝê€V6fðý^˜ëñ©¯3x8Hô»;†–FŠÙ¯³&C@ –[šró¾²kwKÄÙ"ÚA@ç…ä:ÌÌæƒ2Å‘ô ffÖݶ%c~X*O·x-‘`,]ºGŒx…WÀ¤>-̶ÜòÏc`ëÁz'¨ôþ\Û^Ÿfðy“ÁóXÜ›eEiœ§F¦,åèHÅf«¹w„êW2ÛZ¸ªïȇPxù¦ `“3V‰ ƒ€gœhÈ­°¾¸¦v©]ãv¸Å 0ÀÎ)Ïbüq̓ík$¸ñØg——€@•#4z;æÚ{WÉTÊkq[³:}ˆm$ ‚/ÙO7ma¬²;M&ŸÎza0üíˆpÿC‰=A°©tßçp
+ïíŽ=˜ÑQŠ%å`ïæ÷-ÈâQ“Ñ«‹¢ëA‡Ì(‹iË ŸÅ«ž\ðñ´¢yeg)ÁÃ…2«"³ï5Ø
+¿>rQ²ú†çˆòÈmÚÕ!ûµi¨ç¥õnKË9…o–vœ’„¬AÜ€¤¦‘x`?§¾)TJdˆb2âÇh¤ÀÈáø5oÑít{öìëeºÙñÅëZ&Ë«¾]Þ}{w`)›×—4ÞB¯ô
+ðVCAÆzJönmE·5?4‘ríøXüÎГPùÓX¼ã…Œ/'††`Qsçñ¥Ã”’Ä™‰D·˜ßúédûNÙ¤NØûñÞ¡¢#Õp(2ÃOE›ù =OƤèΕ,?ðhœIåø9]Ê}#g· |2%ܧZìfµ}XÐ4ö^W½bÓGTžvv@:±xŠ'2€+ÿAÉŸœä°ª¶!þä˜aw§ì(#<(Í?XØ-,*ˆ×òFq`" BI‚2bþœ2Ü“hÛ/®ÚîOD6&sû~èÕ[° Ø xµ¤-¸o…ËÍk÷‰Ý­ó¼Þyú¢sû'µ­â݆ڦ‰";2jo]«&ÍÒö_X’
+/‰ò_IPª!=DN?„™¸v'ÊÂù6ó§yâtÕ±¥õ=îz3ýùõmk÷ØGÐê4ä‰B{ÍPC‰·•ÿ䨹#•{G+4Fý*]x¤DÊ]Ò0º’ 73m΃[Î_íÁ2Vǵ‘g—M÷˜<rK%’«'ÚXUFÞÿVAög¿àÆW‰ê€}UYY&Q[ t–§&€~mfrô>Þ2 ã[~­™»ˆð'üìÕV¾‘‰™¦ ‚ƒŽó8ŦV5á»L~”-<ÛüP¿$?‡šÁæºö¦R¶Xãæ—àÍ& ›¶ΟANC<².‚fÆK|#Ë
+äè§ ã|q”ó8;~Hú Ô‡ÒCï<P
+ySåChJ€ËôTãò†‹–ÉNôrÖ‹¬åÌ*å‚êõGÆàÈC­gÿZ±ÔG²ç ÅÛ²Þ7Ž?öªd‡BhyŠ\ßÔ·Ÿ=1éú ‹¥4©UQÅœýGËávòaÐj˜¶_l_L–*š±SmR{^ZXW"¾äȈÿX¿Þp¹g«u%QaŒÏÝw_ÐûlÇîaXšäzüÞ/ÚÃf ÔÙ²ß"ö_Š©›P‹¯˜ån#»¹á=4ˆÃ¤yž©|ká;WIŽ½m¬³&à ҎêgÿQÏ}k5*•Éü1ê26¾úJˆS„9†ˆ+
+7z…iTç+”óD]0±³Ce¤þ92¶Ž\²7;¦KABŸN'[‘
+`žåY­®*3 N­˜Ü.k•R vC-bú…ð±ho£‘•Mú»iÙä¿I2?…,u¬OïkPIñ
+î—\\E9‘ä;ŽÍEìù哧@öX(I&¿ôéxÛ=©®cH0Ü*íÓ]³Úª…vš‹$¢¾q‡ù†Ö\Ík›-E«Ó|tòùÞRð³ÖÆÀD½4ã»:
+ÖæŠ2qj‰çØKyƒJH$2Ç›…£ôÒ ZCî„\`ÈOµ“·+ åþÅ(ktCfä÷®B¨Ò¡q {ƒ¸Îf‹þn ÅÅ ;ÍÂF#Õ1 tÔ—Ø¡³Â®Ac‹<¶ÇvGfærF*§ñµØom˜(ͯÙô,ÆÉáí±ŸÓ‘ìt†» ²Ig÷NA¡•¶ÜÅ0 .CMÖ/ÛOÐpIv§B-¯j·2Õälå
+ÌsÚœ?³nS¿˜d•Ý‚„?jQlÿúÆàk#~êÁÕ`L´Øœ“}Ù¬¿náÅw-(ÄÖd‚!Ô Ìn éd¤0B÷¢'^M&WlÝpUª¥˜žÔ8f2‚.5ª)8£êç ƒé1Öuæ°CðÍÞÛ&G=h“?;|ˆ¸æH`RðTÿe6k¡¤3Å·´½jø¬(EÌ‹?lVåÿ§Ö7\k‡MÒ¹+Àò4ÐaçÉE•;M5Á+G‘5Ó†2<%Îe©"Oˆ½ø³ uUdÖÝ2ØÎnzç4JÞÔ|éóFõ£ëAËKFTvÛÚ¤ÈVˆ™rz‰H±z¨E ±4†ótR•§dÄDÏTÕöÀ%µ¨ð/.qwrW‰B]¤´¢Z½5š¯œ2õ
+­EŸø¶zv7A ]¯+ò—ªÐi¶»Ü äº ,ÂËå(PÏê÷íõƒƒE§Å'BÒb´1Ê5LQ«£D…®£Š»òœ…‹}o²f®ÙX ì‡t³¨åŽ ¶Õº|^qYÔì*EÑ;«ØåýÛ_¾ºeЭWasEËÛ`×qkÆ*k™ùRûyüº…çy y6Âı­³Q°æ2tløÀ;)£CJt_ÞM£DÌP¨f(þ‚h­ïë¯t¦Ezò¸’ÆÎ6QŸ§ä.SåY´c(¹5HHË¥ÅÍ<
+2àl ·xaì!ÅOT‰Æ,îKâ—äÇ~Š§‚½:¦ÃDU™/r¢GiÂ
+;7‚Ú5Œçç連…*­Øpœ=lÊïƊ×,4—¯zë'psGî•u'æ¸u=6.¦»ÛÀ´Ç`Šý@ÿ6.¶é@ RõF¬<gø˜n‚¼yÛÇûÆXhüx€m x¢«™±¶rzñ¤CÄ­Š 6…[ßÎPÃò|a¦èíS²rñ/¡Kë¢g2CUZo¯öùþjÔr.²®Æ$žþD³;Ô0§BÞ-û0ß1ý+ã¸TˆŽ³=fÑÔ‰ ë›At_¥T!ï1#„WÚpVÔºw±ö¦»d’÷ÜÎeÛ£Ý:e ]¦ñ°VOaÏ£]u~ûaV£«µ1j ­—¶!‚ÓÐ燄1¤“1×Ey4&Ð/ä·]pD<r™@òˆ³å/±À:{
+ÚOpƒØøY¼,mS©`¼øCÛ€jª—߈—G ˜? ‚äî[̉ÖÔKåpû¸yõãlMTö¸d?z$6‘+IƒK¨ïl1è tü•¾vöû7œ^\‰FhÂðÀ¢Sú§ÓléñÔ×›¥W¡~(&A±(^¯…†ž³\…o8¹½¢ 1'6‹¢´IŠ3éç@¸fY‰ºa o#ÀçY‹Â1bÛXûfÒ4Û»ã"fŽ¤Ø¢¼ãK¬ÅUiÓšj¡[ÞsP…l?Z<>™¨ùdÓ휵 (Eü)Î(]5å¬Íÿ2C3G3œ¾Œ,@¶¾¶½YKñeþÊ*óŽ Þ añ¸þ¸guó6&š¨
+]1œ¿¢&@\7P ó ¶Í×£‹€Tte
+£ß2Þ£_ ÛÈzÓ"U¾?TÑÁæ:¯åR½üxÒõÙ¤ÝQVF+øôu+£Ad0!È#G^^¶²n`dkŽÏ‚(™¡c‚ظ²NV¥“ðI_Ô
+XY ý‚BÙŒázw`Ñ@‘à[›ö»9AÒÌÀõ;›½kl£S¡X™4è'78êK¬©½’?Ô¿Ÿç|ñŒ»(Mé¯ÕžÆú¯ä)jmé¼ÝúTÃé‘ð
+iu–ƒ\Ÿ&rå:†' Xœ¢¢uhØŸƒO¸Wg‚¬ƒœý1o•rÚ'Gñ Ûó¦Y[\ ñ>qI…ª7ç÷´È)R*zÿ¬‘ÞQ
+vÅ6¾¯ƒõŒ
+ùÐÝ!u&¥tQ‹øúýaÌãÁFùqx®´Œàjü¤{¼œÿæNze7[œ¼‚ðŒª è-\*wSÁ¥óÀ¾1”Æé {qç¾D>6Ôª¢‰-[Pûî2œIBÀ_×G÷ù’¡IA¸2›ƒêå^¾¿@….÷•}õZ¿³îÓÏ
+YïzI^ Ñ
+=G.ÕKiuQØo2Is­‰9Fø‰gÒ Š>ÂâÁn`gœ¿zfÐèÂä÷ÄR4B85ÅvZÛÕ TÄ>•ô#Ü[ Ã0Šv§ƒî6ÆJCÀ‚£úÊ…Ü\gÑÓ*rFi¹þ„h<^Ù„ߋªå~²Ÿy~*?&âøÐ ½|q9 ècañä´g Œ…CŒ.ð'‡¦Ëòì^GÁŒ!üø[˜cŸäÃkA:UºÁmfÇͺ1‘¤¸H¦Êu4KK‚>±Â¬wµv¬`Y–Œ¿¾_yû.žmßz …K ‹á7ò
+|êßvªæÝéçÁcB–Ú
+K÷¹p “¡ýC¢ÄL¥ÃÄT›½!ØOÚuB¬?NÃ?B]Z|®Ç_G†¯¨ Ú†žXéŠGy%J*ØRDª‡#Y0R¹@–4š$ex¡k»éÆ’8pΤ!£^ô},·UJVú€ó5É<):l ë{$plGñôAº] ÏëÖdh9û3)iwh~å‹‹åñFa'øcBú Ö7h>ídÞy­¥9­ÕVÍøºga„boî(ÜÓ¹™V>æ-
+àÆ·4»ÁS†h4Òš‹Ìî“itر¹(ïDêãê9ñ3£àÞöÍÇß]óÞØâ»ëðºjä4Úã^®¢ˆ'Íp½òû y*yÓXñ’IZ³™£ï¸VŒ$cÑÝÙ€ÔÒ‹µ· MWLÚó¬`D$gk¸`3éZõ¼½z¡d
+h¢eƒÃ96‹µà(ÏG\­
+(Œªp[XîñUl™êçÔ˜¼é/Z“è'EI‚&Ù \Éâï†AÞßu ípø}|-k_&*IMR›¾IJWÛ­WoIÊqç’a¹×­5#Ï+Õ‰Œ˜sEÏ]]—¸[ô†Yãî?©Ë³®‚>)ôù¿MÁ®i¶Š¯ã±æ¢ä~I1G]}2»ãÚDÀÚ«™…¼‡òÝŽ!"®Pþ$kÑ.eÛw"\~Êïo•z¹ï»Z÷(uG01ðGC©!|ËÖƒ
+:{U£šHdÔÛeŸéÐ_rÀb +¼m§¶œƒBÜ7C€ÎY¢þ^\ðòû7Ö"ϳ×$3°ÍîåW¡ùBî{÷PÖÖ·ûãÆ?ŸÇXé_ëƒæjf|Cc¥§Käí”óÓàb§èº¶XÀãwêæ´ÕtÙÉêãÆ­W³V*-¦m¡x¶£e_Ï`íŽjÓäƒyÇù~wo]†²m«¹„Øl(™;U½8oH6™u|ü’µpZ RafV÷öƒž­ï ;éüƒÅoGWôÂ"[yV h†<º%@@u> ÷ŠY…
+™àgPT'gè7¤…ŽTñ…‚]ÙŒAÄ )õJ¥ÏîJ’’{ßÐÃËS‰É+dædâ/h¼ž=uÚÞ=åIcLÑR 1
+-{\²t Ê\¹lµ‡Åõ°]¶n¼ë^ÀìõgU5ëÖtî#Öï x[]›s7~ÐJ+öF(=U#<¶ðBAjc÷!FjMã=»l|zMËÒÑw–mFp˜Â•R:[¾ñ>ø™UTæ¡ÍP°'Í7Šbü£#ÐïùB·N+È…á…{¡„¿Û9û$<"Q‹?s‹«¤×rÚ‹h?ÙEîëxìO'jÄð?ƧÝA7¬>Ãù GåypU5e* ¯¬×¯æ â†ròû™ùÓ}þë­MÙ†¬n9:Žž<C>׷攬¢Bª¬ÿ/ëé/¼R.yt„Ó˜ÀDË2ý„¤ÄÛ}ØFT›®µ9‡xzɯrøfÀ¡H.–ÂFs©áÅŸ[p½,›}búëa:gPïj+쑇õM4/EÔ÷uÝ-±85vpö1½o–Ð>eÀˆ'¡/’; tî·5͘ ‰Z¹B4ÅZÁ‹\öˆ_.”¥–
+¼ î]ŽÓ#íd×V
+dã¹<àÚ»Ó\àb|§Tºbóa2KÞÛHÄ÷vfš¥×ÄËR)¨)U<r5qتáà}˜ð{+G´ê ü~OÎe/£ŒßͼE@a#Ž€R̵;~€+5žáeÛµ°5v¾Š‡íÌU ±ØŠx¬Z5;ò!L ÿE3†ÞŸB†ð.In‹`¶úÔþA-ý²¹ä,ÍÇ–ćEÙ(C$­8=óé摪r^ÿŽ»s÷X)cÈ‚,vH)T5}vøæ#7 ‚ä#¥¦ ìd|‘97üûä7¯ÿïÔã7l`÷€’Z‘²
+â©"… \¸Æ
+Κ£{ÇC娉š½ž?·çý¶ýþôA!Eî‰WTAºØ™¯ÄȦV§ìP¬æzÛu·†ªdìªé€/£n@–Ðk6“,ÙpÎ0F›‰®u"oà âh,Ë/ÿ¡œq–îUdŽd!„½ù“Éž÷Á
+Ü¢’-{m•uôUbéÞmN¿YH-zvTÝž€yûÃ0| ¸¥xEgjÜi.ج*¼!?uÍÊŽÆðéê3‹ [V·ˆ2›P`+®el¤¹ óç±Ðó ®ÀŽS·æÉI,/Éõ³±ŒO¥¿è¥Âox>€míÜC‡Ý²áóú9…íÈnHÞì Û:,xfÉwgŒWÌŸÿ¼Ã·l­Ñ½íO%-¬ŸUDŒÈ‹ÙŠúóUü…ÐŽ4A‚¥˜n=ßZê#tߎݲûwß—yÁk*b‡R¾>’{dx8‘½*²šQ$™,Ô;
+¹ÜF£à’õ|á¥GJ’Ä˃HÅw´¢®Ó ‘¼0ÊüyÚ0Gx`ü‚µËìÔü73ò®~yô·ÃÒ4ö‘×@?Þ1¼iF(¹–aß2òÔ½àÄJ:½,š¹ )>•[$EÛyÀ%\€òîƒE$r:•@rCnß`ó دùRéºÆÇ3Ðz¦õnÀuE«³T3ìßoÜïŽÝ‚ð’ÿÌÚ{¦$U`êOäN9HôÁŒ¨ý!sÆóòþéä®DO€Ol¾òêü¢ª‚xç“Á£ìÔz²g•R%èÕ!tí\“>Œ…%øŽlä‚fa_¨E)å5¢C\<
+Û7¨¾65bÊŽ¦ÜyÇÝĈ¡»‡š›6\L.2„D™s“Hs'òû÷—aV”E $„ÒüÚåßQ|!̺ÓåhÛ!ß´Zsö/_&êûþ[´*qPs{Ÿ¯~ \›|=kšÝâ·
+‚ó,· ÌÈ ÎÔï@§= ÀMð°±Çþ°Nü–<x×+bn`Ž&.×`W4!=»Õ°eã¹î)À“LSª=¾øg¬Ã¼·”»÷ÜÝp[ãxöˆ”Ü,­`µ?Ò&®VÀw"ñ7*nÙ€Ô”úºiÀ› C®¤MfR1 Á‰‘^ ècÃg™º•›õYÒºKçKNêÝàþ ]†ÉS‹ž2`ëIj§ëÒF¯óZªB˜ôålR;V6•@r[s5¢ { ¿8”¢íÕ²2Š¼¶ªQi]„š4§n>>»bœ„#˜ÀþgLF심K
+¢^
+XÌœ#IÇ™-@™h„Æ­¬Õ¨•Á‚¸ÐzûÉ9K©1?ãì…Z}çï Ny‹‘8¤“‘ÖùR·ÚY)#œR›%)¯Ì?2Z©wk3ΰ©k$0ACqEQ\:81åµ(€ýfÃ!ÚÄ"+¨^¦k,4{çÆ‘œ+X4µ º»íÎñi¹ÞU¤{8U‚c–ôJI "€ˆ“ºß€7b¤!ÀJ`œçbKóÈÊò$U‹ÐíϨ-ðêþšØŠ$_}·Ü€—ÀÙ°ýshoCêdùá­ô6>mò+¢ž†3ZL ƒÿ\tù’§‡r±`‘³û,^Ï0£³$ð[Ð6Ø.ï†Ê–F,Á
+™(He%˜Q8_¾îŸ Oz+±æ4ªµ…AÝ s¯Ýø5áô(ÛçNpBvcHH ³Ý»ìäýQ5:£Íöñ`[ò—_ï;'/½$¤mŸSe§ƒëÕ¼”\Y\9o=œÕ€×­f¢Þ}œ¯ºb«m/ÎÑβÿF§¼¼Êt¶Ó³:¯ò
+PPCÒ1–µœJžî«ñü ãâm¶¹EuFÝî’ÂÇî“äu|˜ÅâÆâ§Kí‚æ+Dû½œs
+òìÏ®tËRµ´»ú˜ͽ³÷átÙë¾J¯Ê4vgQ±ª È“vÑÆáˉÿ ózcÛ`½
+ÂS´Ö©z2ÆÍÝ…GW׉§{ËÝ}ó¸ÝK“‰6Ðð4.ç/ê5`j;¨¾wb-š¶>.Š”<”ÅÐ,ÂkE(Žpx—»´·ZºµÉÞóáeAÒìaB&ÍKêÖÆoO¼Þï
+7º7uô-º
+#€?™iªèÀ`Fá¦Êí ðúø_œK]Œ§~ßµ-ÔÈë@ŒëˆôRõa“ÉÖÓW*ªÅZ@W¿â¾rÛvëÝ;m8*_t^”Y ž/uGÙ¢˜0(¤ljP
+X÷ÓHþý¢)o½²ö_=‚FÎ| ùSSZÅ.›ûÚxÞöJsV·ˆ $ˆ3SÊBÎI8³²¯¢ÛwiC"gNíj<;h¦QGÄ6 |YRÀ4³s †z²Ÿ»ænïgï×Ù–8.dcowô Î|l'BËÐ$Ó×N•Ì@Õ] qÅ L=ôA@ó²™F5¼2©}ipÆ’“Ù8«pÔÍ9QvÁ& 0áÿy<í=|Þ´€²ÆÀÀã¨ÏLà­‰T%äû3t›¸O®àGL´ª¾ÕŒV2aÄJ«7Í=2õb@€³ƒǫ̂ؼŽ·¼j·B¥9Œˆ0-‰8«|øId@ÝÁÌÕýNýäLH¬$<Îc7¸ï*ÿ…¥‹œ’¼Øg+¬yÓòJëwG,B#*S"%JSã k°KGr«YÍ®ÀÌi
+³t
+sn“±•âÌŠôA{ó¨ Ë’Q!Zì¥ ¹ÕRøFVÑçq¾ Êó;µÄÉÕþi!ü»ÜvS+xßR©‚'!Œ{v¶ô»EiqõñŸñlªÎinÙ«úN4Kª57Ï™¹8zœ†—¶0ü,ço0_BﲬâG¶ªDð84?“ì`ª:ô£,à©©ÌZ\O¡WJ2ó>úÖÎÏíœ Xpô…Ò[«ß哧þ“.YÇbZH¡ÂóQ—oŸGQÀœ{$)¶‘n[ð±oG10:Â0{%ív¥‹Ï&|ÇÁ¦"B3jÞMš©PÇ"¯SÔ.ì‹ÈÅvÆm9»ë5=7K8Ï#±6
+*;;ºúrô?$˜:¼®E+mê&b{¶‹xsáäˆ@fv¶Ñ%R|†¬ JZ¶Öæ1ÓïÔ²çT¾ÅTžwFXÍé"zÕìðzÁéuMoBNkxõ·ºÃUîáÞô¡—¥zï.#÷þc× ìyÔ6
+endstream
+endobj
+3188 0 obj
+<<
+/Type /FontDescriptor
+/FontName /UVTZRK+LMRoman7-Regular
+/Flags 4
+/FontBBox [-483 -292 1562 1124]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 79
+/XHeight 431
+/CharSet (/A/eight/five/four/nine/numbersign/one/seven/six/three/two/zero)
+/FontFile 3187 0 R
+>>
+endobj
+3189 0 obj
+<<
+/Length1 2252
+/Length2 27310
+/Length3 0
+/Length 28607
+/Filter /FlateDecode
+>>
+stream
+xÚ´ºeXÚ¶5Œ[qwRŠ»»»»»'A‚[qw(^(Zœ)P¬¸{qww)ÚîsïÙûœûþýž<$Œ©cÎ5×Z ú­š&³¸Ø(A˜ÙYØ
+4‡ØARæ 
+`á PB̵¼ì
+öŸc®öç˜ÿëcû{îÿçþû kB\Á@];«×»ÿ&ÊæW;/C¶×ã‡ýUþúøßߌÿ#õß'ç?¼%$À^¾Ì\¯“ÀÌÁÏ`çz¶×sûÿ‡¯å¿®¢¿Ž¾× ú¿øÏ=
+Âñ‡œtàìUšØb‹æ>Lâa¼àèGu1Š3Z¶â,šKiåÁãâ÷ÁnpðzÏ¡‡pþBËC—ç‰Hý,È
+÷׃üER?¤Ÿ!‰ƒ` ¤|DY¶Ä:£Ù\ãA
+aÏ"‰6Î~«{å ÆAÛJ_ J;/„yv˱WžIÃ
+¼Áœ™.¦_lE7\•ÝÖg¥¢P¦8=šídÒúý¨[½‹nH]ûµ"ÎTÞ(_¿äç÷vÈQî/ió…‘-p#0ní’€"f;=­%9Ù¹¸ÃƒnÞ_¶ëËtdJ¼³_œôw´Ü¬Z…Ôv|®ôá5K@ðÿÀnVãËeð"šðù£…+øÌQÌxS{n·YÀvP˜ü½ï"L-[8q‡…
+vÛem?æ²NŽ[vW¥›æ0;«·j¶%±çd\Êoaá»ÎePI2CJÞ^¹d[.ŒS2È;3‡§v5ð¡ÅM’{L¾T±®åc>c£†Aj^<|ÄÏ6¾ò5¥ŒÀê,{Ó‘ ®¹[êkóêž”ØÒXy ÑõÓiႉØþ„ðψ{I­9OGFqטѬì©è†à²º¹{åÇ‚½]TscTOUÎ~ÔAô’\Ťd1@i¢OA>f¾éå7\]„ôT””©:ñ½µ»©ÁÂm¥o›¬‰
+0Èo7b¹ÍSãð£Mï—ª©v;;Ègt’ÐÝ®¼¡¿tSå^W¥ÐFE<ÇÚßf¸=Ÿk`b1ÙgbôùxŠÞlPYÛ±NÖË0°`©‰*ú;ÙâiÁDËò‚Ÿž…†Û;Õî¾W€‚¾=´ö—“odÒ~èEíQ{"·èúáÛ Â£´¢Þê„Äu4­yŠaúm呧+ •ÁUÅZ#‚oršvöÊÀÏ–‰·™ìW?~‘Š¼“‡ûùb4´@À‡ï<©çúâbúÀöÒÒ§.O —Ù¼@rwô[Jª¢X­¯x4–äê GüMªW¢·BØ™ã3¥OG#ùÆs“ÐX¤¼Z´HþsÅÁ»ˆšÔ¬dvµ5Ãcèã‘$‹Yx|(›#jâ±iÊÂß@ Àô²ë7±ŒÑo[Îù-pù¿{¦»kªì ·Pû•ƒæ¿£EìtV§0J"óävØõ2´‡A9…4àvJ,¦¥3Áù>¬{‹ÁÏÆb œ‰Mó|Dz¯k7wŸ]!­y«üsáíÂ×Q˜âŽÅ<n|ëµKnº[xŠ,uÈŠæõ¤éÛd¢`ÃC„äƒcLⴘ™C<K˜*WFœsS—ùT–I°ôq#òó,˜ ÷ ¹åê'ám¹U^URýƒ¹ d.# "èwbØhÛŒWˆo$¾ó„!™Ô²"¥Uÿ2 ¹ÿ,ß6ÿ¡ìëí5;—¾ÕܱªÙ!"”ù…S¤·£b~ŸóÄÞI
+ŽyvŸ¿ ãÝX—ßú·“8ö‚Ü@æÈÐêŠÇÛ¤ÜÀgrÿ7¬ÅÁA¤‹þGÖÄÌ´Òã’Ë4‡óËå5Mš¶ð†­à¸hŸõ.8´ûŠËúá0‚|¤Hx¯¶k£lÅÜOôð¡_3\H¿¸pV$ñôM€âTÔ¡0ÌŽìÆ÷9@PÊ’Ž´#2§¿0>å4£y…K¶UZ_Ã'+^£ËW C4ûØž¸Øpê8gólG•‰nç ô§‘¿1£ÈSÓUÛõĨ­Ü›Ñûó¯1:Çœ™©¹ŸâAHÖ! þ(Ãÿ¡|– Ö“ýPÕ¸wŒÒj›¸çö94-‡þÍ^ô™eݺywõ±ð™Í%ÄsàÃt‡•jï§ý8¿¦mÔÙž»qÊ)êkky©%ØÆe\ g’ÛÀ+´ß›Þ4w­<SDœá)&öv½áÑ4qd"d.sº«xlkÃwúÞg¦ÐL5âÂÉ›Y¨ÇEºIý3ëðnc©ù4µHàç–b·ÛYØ ,ЈɩlòH[i>`´e*Hv±/ ÉSM½‘¢Š ý=´¤6cy`
+‚ “•ÍXWDá[ŽvЉ½‹ÙŠN˸'˜iÈRMH)¿‡T´›Çd ‚T>Sö½_öw–åé7ëÙh[
+÷OÀÇ\ÔäUKÑБ†íµcè´ƒlìðÆt.~$9¸„§¬vô“ZnÚPtXÙá'«"GIÍAÐwš<ÁÏèmÇthî91I\X„9UTE3íxx?^¤’øØ,D+7fK}ãÒžJÁ\F·j¡ý`ÌÈW–9<¾äZH‡ØÙ*3þI¥)ú[%Ï¢Æ{uPÊ~H§B÷”ÅÙEÊW‡'³¦Âµ@ì//û5"ÀY€¹\'k•¶½¥G²èkȺǓV…ø±Þ²Œ¸"}¸ Bª~¯>BW²è8g»6ßÅ­Œ@¡ƒ7Vö„5¦"ž¡¨VlL)F§º§¾ú<Úwð™í
+K %Ï¡Ôâ}K ¥Ž‰˜EO„ºÉ²*QQÙWrü»•dCG»ÕöÉf%MûJ»šIlX „ó"Œ È=9—¿üªáTôæñ\ÎEs`º<ažbC®-P5)·UŒ¯ê,%]…à«…ŸJ <Ú} 쪉L;kŸwGöfœ ¹cR(<À.ú/ø´´›@Ê4GךÔl`=±ª£o™A]éuX“À?÷S„¾×Ç >Õë´ÏzÛèD9R7¦¹××QÉxÆcyÑÅfå¥7D‡šqØB”.Øðá´ž4°¼MŽD¡ãNÙî©igT t¦ÿ[ ¦Ú¤-hÙO‚e|m/A¬uXÃÓìÇ%$P¨8%A s/9¨? žŸê¹Gr#çÏ:CV éNŸÍdÂlß*åÑ° u°†LòNÑ4ipXòk{_~AÁq”ÈÊ}ïÈô«ú“G Ò“º;Ü÷‡¿ØUÞQöè›M-ãj͘µ%®Ä·½eþ[!°i¯9ȉpý9kà@XØŸ‚7¶moÿ¸FL(ð%•²T[Ä‘GRÌØ=m~î*¦½™¹rÕÚ­ŒK*r(9HQâÇb·
+— 8{j‘1C­á!“ŒèUÓMl†ÇN²·µ&>²–^3‘«lèU&Š_£ÖAO_³œ4¶O)j]Ô¦ÆóLó(^Z¡„ZD¿~$?—Œ[6ùÂpüð«çéÄ›a¾¿yTVsÐÕ—ÃglòÐ5ïûÕBWpv^q–•d#Ôõiýô=`ÇÝa†¤’6aCüá:¯Z­DÍÛY®.“á ÙKT¶õ&ÁˆÌ ´£p/> dnBÐKûe¯}:¬mÕ~,o]€Î OjT±â|-[’¹±çÃ
+õ¯ñŽèuŸõJg– ÏÖá½lÑ=þä[¤.*=êÚ¬"{Lu‚/SéÞÙïYÐzTúê}v¥¶jD‡Wé&– xŒ–Ôô¡Æf­…Û3|¿Ú
+ñ&÷mÞü>íôÚƒoí\¤¥&Ð?šý4¾ù1¾½î h©žôtâXïåÊ/Ë?Ëÿúì~1WF£Ž¶ÿDLV\>V ª Ÿõ Ö²¼7Ù)1U6³‚/çeÐ(f( Š4¼ Ï|­ˆSjiPw’ôº©‚82S_1²JY ÖÛòªðgÄ;áaÐìpÄž $’¸í/ å×éIõ˜¢Hišn¸pïan[á¡F´­ {d{o§ÊHÉöà?qéÿäÖñeuq©i¥Ús‚N ÌyºÞòü 6×µ,
+¥Ÿd°QúËu‚EØkSS=·3 V.íä_sPÉV8UM¥¦Ê’LF­ûp"2BeÄ®çœ[¤°”.‚LæÔÉìÄÃoEáîÅIǃ~â`Ù³|Õ«%Ÿ¥•ð'¶.^è/ܯñìñ!
+œôGwŽežÆÇ)¶ñ´žd4©èòƪ>Í‚Æç¸Ëls¡ä9+vv;Ÿ`zkO¶§/´ÓCÈ2ePAgZJã4£¿ƒ¯xcëS†¨i§+qÛŠ˜|‚7|£ÄG0WÉ„váßv°ôkþ"¸W(IÉ­¦"~…Ý£„$¶V!ÙËæ»Ìà1Ⱥ0â¡PÊŽn-V¤ónxD£³Èi÷)™ùZ9¶b;aÁ²tm\š›šãØ'{áÅóÐkd)×_ýèLÅ7©³«°ÍÀ\Y”›¸¼šÙÒS
+ÍʾŠª‡ßüâçò<z”’Wyò÷]M(eÅBï#RúÓó%™ïÉÂlv–«ˆÖíJŠñçùÒaÎð%Ü»…]‰ïLIïþã&éd¿Pþ>é:²;Êh–V‹ç›MoJ¥b%„V˜% ü<·¡ÇAâ„6?ÄúŒ/…Þ æÉÛ§ÇÊR;9*1Fe&Öä¡nêòŸµžeº¤\šqêÈ%u¸ÃN’¸Àùä;£›~XÙ6qJÕ¹ >ÓL‹z“Í%mHjñ~ö´†@%,~Ö%µâ`‰Ù'~}nÆN0 ÐÚ`[~ƒc˜×˜˜åz•p×ú%7cOŸ`5nµ¥ŸlI˘‘^#CY8up€0XKB~»»ßje“°™j+fͼîãóy/toªª#G^E>! ¯7‚ŸMØñzŸ]§`B%I…ä…Ò .­Õ´èl› ô/…ÊOy^½½Œ¬uÐÑÕ`ö˜‚n«27¯t BvMê);%s–æù–Wö»n‘kö¨¼‘äçõ—·&Üiá¸FúüÚØ_±á<í]Œ×»Ì¿ô~iÝ»a„×O´F·.2n%9ep\–9PUPP¶}1Ó…©ì¾Ñ"@#¡ó"<Êü¼üîÈu.^]܈dÖN Üü¯Ï¼å Ÿ+ÐGxC¢­\û »ð`R+£$ ùmLŸr0Õ}ÑÞÆ2½]Ælªû>ß\$éÆ„a„ǾœÛÒnhà‘°¡ðùkjÈÅÒ¼äî>,­âÏMÊÔB÷:x²ËQ£3k­¥}°X‹øÌ)[·ÎnÓ¢ó
+jßÛX‚zÜÖêõѵ4Ò×¹á Ë IÉ€E-Û@[×ËÙì…ÛC"dèJ“ãr¹ÁW²™“H¹" ÄÓ>>¸ž%íÐê/Œsð½ß9 ."¿[ŠÓBšWÅà¿—¤âuÈà'…;3Ø2.è!XÆIqPÃüôú…Çá«œÂI³0äEAMÎò©òÙÅêð'Va+?1%î£ÝØAmŒ–ÛŠz!%ós 6F 燗1y¹k‡u’ŽV7ã®4Suš#î,/]d¿6—­/cjb…{R¤{_JîPÄ0n„Är,œœUȆd¥I’rúèåaígص³›×‚ ¡Ûw¬Ïz1´ìX?鑳ØP-õ ®Â¦¦[ë)“çVÔ¸sbÇx<Q|jÑ
+í¤OIøæ,ÖNç„Ð{kÈ™¥¾G~á
+þ1¿q ‹xoÕ2PøÁïø¹1¨+-«Û2pLµµ®?ØDŸÎÀO9Q€ÇÏèÉxëfá»ÓÔEØÚOzhj]-4l: Õ'Ï'”uö*ë-ˆõsw7’Åð¹~nn ©×~NCÄWbã†(7®käÏUÚݪ¯öï¨,zË}h3/ºdT—}¥ÅéwW`#ÑÉŸ „A,©öj›oDíVâfœM/.4»Å‘THˆSžŽI¿+ᇄWî•W):Vgv½çm‘Gölj€ž¹iÐ <_Š—ÛüÈÆXßpœPü®Íì
+–»÷š‰¹ñ+8`úCœ3NŠçÄ뺗å°Âî«eÓB=ÁDhÅ'Do¸žÏlPbͰÓÈÍæy%Ýq¹´lqMfp÷…x)c8Ê[
+{-œú•¬kykNã­aqÏq.ˆî.ð^›yƒï5©ï¹Ã°Hdu;œ  mif3µÐ—ï‘4+w`–h0&1~¡ +é¯@ô
+Õ¾âx!î ¡˜'@G¼¼Ç¼cH$˼©ï{Y¿ï#vª³þú‰HŒL–1 ;¡…ió>fWs©‚øƒ½î`&î.âí•Á³6íü‚¢¢CÙsåïp¬åÛ£‹^=èÊí!j\&NãE6 ™UdÐhí× Œl½O¶r¡Cé.†:ù« „±7‹v$èÜ×ê’öZu
+4èæm4Î[?•±«“¾]âl3u‰¬|#Gf8¬žà Ú|* 6¸7Jh¹¨@“‘®¦Ž•¨WþýÔ!ôŒ¢8eÄÿv”ñ3ÚhNCE™Ä F
+ŠÕàŽ½:k3‰ü=“v×Àaåuq‰c­ÛI]Ee­”«ôÍ•£É·ÝíDÖG= P9¹¿Â/ìT™Á
+¦¯£3ÕŸè(½RBïNƒ¾G­ þôÔ{Æ5ñÈU‰ìœLT[Ô»92‡R‘½w0oÁˆ<H“Ú@NŠ®mJ!s3¾(º—²û‚ŽGñº¡¶…}ÛxøcâLõ˜m0ì› 9·Vsö¦4{ïH…QÆ<µKÕNf=([
+1ó­±.(ž©LIÖa\(,¬)·¸N6"Lwg3,ÊH¾…Q‘f<¤Žðøµ•CZL+hÜ“vI ~þ¼Ñ-.É$Ã$çMž zÆmÞÒëýËååd(j‰Ì~
+µxñ‚)ˆ^òF\×™B9fjK`té=°øâÌ£…ü#ŠHZPLÝ­æÿĽ»!Ö7¥˜Ûÿßg\ÉöÈà]þ 13*é.Ò'C­Ý+öMðáa §ß¸GI3
+õ¤„½ó
+Úò;b˜Ñ™cÜU›å©uò°û¥1‡ý"™¯Ò×*©Jó21vo'Œâ¬BzXi¿!zæ˵‹« §u5Ûzæ‚THhñ¬U3.¶P¥hØ õÅg9ž¡~mö8(¥ ûDÐø°G£ìŠ>+¨—ب
+²–O Æ‹Ü®ŽØé™$Æ°?wêdáÕmyÙü›*O÷ ;oèZ8£­ƒ «¦£¿·å­}(®U|G^aq#ÏG¤¨qyù8KÛ˜èCø¸´"Àvû›®‚vê‚C‰xý…•t—Š0º1PœŸcgoå&N1)çMž"Åæç¬9æt;uÅz4»vò¯(l.«á{BÕÚÑ=Eñ’)a%ÖØãæ#úCêr7R0MøÚ¾ìÒ´êMÔdhQ7&õ)®\ü”tÉ ŽöÕlñßlŒX+Ž;#‘RLJ¼X¢Û4½x#©Éj#Uì×¹6¹†ÈJtqs¶î&?¼u6`êúX‘(eLèÔ eTàîW:Ën8AÉ´
+-”C-%Z)0pMí‘òJ°éìæüþ±æïÙ»cj^»˜ž ?E[ñ²z£÷ˆˆ—~‡›¦÷¹´¶¥œRy'X_91¼ãSv ï£8ïOS¤H¢÷ Ç«2‰a­ÝŸr³/ tÛ µÍ"æò%Ôc%—s»?%}‚(cƒ;kŽ²8Œýö:²æžÔd…’ÚÞ1Bg£»(yè’b× Ø|82_¨")}ŠA1P§ªLþÉŽ3è) ¢ý
+•’ÄËîŽüyŽÄÝUê#ŸãÈ< À‡›BïÁ¦BQÈíËîAz6Ö´@ìa^ĵ5¨ºRb(´
+Ûœ`Ñ£‰ß”µ'òI@õËÎHçñIî>ðÂ!y‘dè„UFZ,fhcN¿Y€’áPÖ[ Jÿñ…céÖ õKÌlð;9ï¯%¹B$|e J=DFúþ6™£†ÈVÓNW@ØwŽ)(D|)4|«Dв<Q÷J{xÔÜ{A h*(s¼¥Ñ¼ª&,Køð÷ÐNø¿5+½Ã2!]§«\V´2O¨?зä±|‚§-oÌ" ø)ÎÂýÚÒ¥jÑrÂyóŸCìË;ý6î²´[¿´€î+[ÊgÔ"affK"ÇÞˆ(6~’S[HC+2ÿ"¯;Lz€iŸ‚%0Vm`{…ó]ðZfðáü4`‡dC¤«™ï­¥r-ƒöpé<ˆïÝ‹?…À˜š—ÔfK"€¤©fþu$SYü̾ÓWÇ¿z”ºDô‹pT8<]ƒkŒ·>í©‹ã®Ø¯Ë14ÄuKe»Žôäµj~¹Ô ¥¡áªÏ­yõìou´çð’iÑz,ø–QI¾dãҵ݂ŸÐÄÓ¦Blçü„!ü®2§‰DbÞÆx«ï$Þô-é³+¬ßk­™÷¬4²¿Ñòi“) }·ˆ²œ4Ý>Œo º©Pá1Í,²ú<òµ=ØïVšþ¨ÉBßhbxbÎý1‘ÐÇV«ß¶=!Zâ Z
+ŽðÔ²^p<T
+u/Iؤ¦ÄK+[wmCc¥2ìªnÁdú±iDzkÄjs‘‡½â}ÖÎNìi|Þ5wÍ/ß—ûöã0•AìŠ&ãL’%kµ%ÇÏgJLG;2*×x™>¶´jB)xÈ” Æ¥£ „ôض“¢mOeµµ_r`@,")Çû—oÒh*¬ú™ÊÕƒ…S1 ïóNŸer3>àÉÌ%×oÊd#v°…u|$êâ°>ûö·ì%£Ð®â2±:ÚËh~åeþþÀ,)²B»¦OZr¦•©Öù©$»k
+HgË¥ÉüT¦%³èŸÀíùœÉ(#
+ žµ
+e<—"pxö n‚y×Åþ‚åøã#s0ó¼=꥾I©³ð¶äC<˜@­€77À”×Oýóo~†`J©m´•ÍØÔÈ¥BsÅæ²”‹h&:n„jªn,¡³Œs˜‹3¥Oa`}bT;Ðhãñí^Âq²ÂQw‡ô/îÔq‘~2q·\ÁV÷»Xš„{L¼*c"åóèÏ m¦ ÈÑÍBl75ö“7¢7Â{Ÿ¤çs:kr>=3åÜdœ1 ŽõeMSË¿t2o½K
+4
+RÇ}6Æ´IÞ¤öq‰…™ÃsÉ/|ÚWøËœ„ DOšóTX#c5Ò•õéÃàÈʦAt—ÛÅðo1ÇC5ß2KG¢|ñ‹©\!q3N ýPWé†KÅ3Q0œÄp’òw#Q¶®óµá¿zWYóõ( qi'ú ‰jô¯ ‰Í0e2Zßµ)‹ÂÄC}0>ë$Oéü^¥Ÿ¨a¤¹—ª_+ø1I¸©#jVOU`QQØ™EþÌ›¹ê»û™ŽJ#i¥¬è”x»Öx;öÑ5Ãn(XËo!…ËÂL¾¬*ŠY™ÝC‡Q¼à,ÉÁž¥¦Q}b;±4§INa»®2;ü†Ø†ì dA-´r+ÑÄ{÷ëC5m‘p³5Õ /_+<Ž&‰yÖhГ…N±ž×«!)àÚ/ —pKQŸß›Æyœg«+#ŽOêádÛæI® «,µ½{”ˆ„½ˆ¦¶»õýëXÎf]'ùsBécè™wÕZ`™‡ä1"ÕW:¥Q.Y
+(¶Žá‘ëO\ë)™µÜ¨~@¹nœI®¿ü΂tì.L’Ž½“öé8G œ,z+OÒa›JY§L™'F»žý¸mÁ†Õh}•Ô­ƨ4߀Ó
+ñÞÈÏfÒ^BxS¾€éµ“Rü‹ˆ_•(ÂúÓT,zG’×GF‰¯"_‘=Üa~|E`¾#ØŒõª „%͆ϩ
+ÿ‹1×Òî(W¼ÎMVrÎPipÝ·-ãzÜŸé3F —ÂÎSß²ìÔ/Î×&Ó˜òú“Q®Èë”ý/2cóÕz½0ä„ËÃ%ל„Rï‘c)Fâ~/ÄEévålðBÍÌ ‚{a{kȳ‘³GìZ2ÆF5YÓÇf¦.•eзEp<¨’U5~ˆ¢XGR «Þ^TL¿ùôB üôÛ¡öRÔN¶µhf»›ñæÇJ¥2–í²‘õñ2]±[’B/%SBà¸/L ,ÑWÚ"X[¼ø¶ÄC‚ùãa·7ž ˆÚ+·t(r£Y,­4™˜¿…ß›h|n ž2D²w0ŒmœŽx$
+ûLÚ°Œ÷*ÖM« ‹ª¢wà†ü#™ð™¿’jö†zwÞYŒìFÏu,¡šž ç/Ð`hÛ¥7ÉbðìŒõü2e'x!½]l0u8GY+(ímÑí*x»K.$‚¹J]M„ôËÚùcªW¯o9¡­ÞЃ{‹ÿ³9Ìš¾Þ¢lg”³­_£bµ@wîø]”w¾z‚…ý+ž
+
+_í¥ûRý‡â*Ï…šÊïxݱ™¬hŒYl‡æïW<¦fb1¾ƒñÚ²S` ®± K¯ ÞWlôßñœ&ÙïáGjùÉhyCYD1ÑÊxJ„o¥UíÀ¡Õ;Ð!Yçï`sÉñ†GS»¸ ±ô‘é'˜°3×å¿ó”ã"÷M,µÓ²s ß5·?V>­¡ËÄ üyöUSHRµ¢¨ºëŠIx²öŽƒ~nå)FS>Ù"»ÑÕŠ³ß”¬Ó†bÿ[ã¼böá·W”úÔÅ6t¹å¿P1LJv½éÇÅ%Fµ- Ê×F‰"%(üàý¿`ÀI/O®coÝÎúü~o£ß‚"Z c¡/½ó~cC€onÚ¹ ×tbÒ³z;c1O¢z µmQ|çì»?HÝÎ{W?°ƒ5h¬håÁ)Û°lû úºæ*æS’½#cqÞ¯Z´@‚Ê÷ì¼nÕ‡anVgóuôù)HÚËYÎÐ2
+‚VŠÆ"©´—üƒÜOÄó…¾Î·>=?fYu„k¶/ŸÛó
+ ºæe´HöÜ)çƒD¶ ÔùݱÍz­Í+­1¿q×*9 üÔ@ûv|‘]Gº—êwOžh$©üÃä11pZQr¹¶è˜Si7R[O·Å»@­›D<ÃsÐóe ?ÝopS×/’~Ö¥²æRdU®ÆKk¶TµEç³iªº 8„`÷øovî¥
+î< ÖLæ=ÂËHe*Û¼US_Î1åTÂ׿ÑóÊ4Ì•­Ë¨j\9uú´LßQ—:'ÄfX
+±3V7ò'vS[|Ÿ}p‹}¬ìÒëÙKvò£™x'ø첊1›Ù Ù—ùÛ¤ç¢>ü~݇=y–´æ=ÇTÜ,Q‚²ÿÇ¿ªúç«Æ–ûü^·§Õ_”~Ÿ±J-v¢Ï¬BaÎT÷án•&ÌÝ+WM‘;TI&‰êØSƪ`fŽ'òÑoaüQü…›uâA)²ÉàcÐ!¾Ç‰™*Z¬ñæŸüê\ì‹Â "ºÌݶFû𧧦ŠÀÆT©$EeG&´¨ˆˆ"!‰˜x{EHÈ ‹Øk•%AU˜úÍ‹Uk3•*?ö×V⬠}©¡žØHRÏXÈþö]Øðòt3Q²+ú“'Ln‘;TóúhùÑ‹vfQ†ÔHè¯nÂàeÙŸ$!?t=›æ–~nQ®î‰fê’4é)P1.ÚL:sqç›MŠ¡3N×PóÄ„ÎêªÔÜÜpD-J]JKy|‰ø@ÒA¸)ÞŠf«\,éÂÝe}1\/+Ù$$aj—o?ÜXepR=Áæv®'벧×~{ÌÄä°hø(°<Î\^‚ µé†8;ÌPr|sÏ\ÒÿÕ¨Â^áØô«60³‰gZ8©È²·Ê‡¯ TÆY†¥Ð¿thß¹d½óË:ÔÊP9©ôR… çÚ†'j³ÚÄqvb'ù–F1ùU‰\@B
+Å勬ó˜iäïGZÇ7® ëœ‹%›‰Ýöˆ b©ô©=áŸ×‹‰;üm“å âztJøL©0ezÈ¿‘iÁ €)’›$ðu—à?àÑ
+.FtM’K‘,r‚
+F§Yöìù˜RD:¬þ/&^|Ψ(øâ˜Wú¹ñŽÍ¸ø¶ÓæGR‚׆Uï°ŽÞÂ;ª¾;•xº4Cù3'Œ…w=Ž¡CßY«,]”î¢i ó•¾]ÙÃ)šð¤£2¬þX~ÒU{Œ›,ZŽ¾z]øµw×\'eÂâ­»I7›Œ÷–÷Ñ×èë
+Áqá³nÐâwÁ†…ËÀìÍG‚ 4†w[Ñ—nšSat]?8\ÔQ¬S¬«àrí$Nšk?4L¶¦õØdG®*chß?æ¡…¥½)6™Ô|J*Qé’ÝÓ©XFY£ÕµNÝΕxÎFýO¾HÙrÀxxœÅñ‰HK’¥ )!L¶D†¢æo<}Ël‡•+ ù¦ú$0Oƒ4êÜì¤þ{ E§_)¤ ÏvÄŽ…iyéój]ÔÄMY}Ø£oØæ˜ö²KÅ3@ÍËSÜ£‰–Ù}û`Lîï:8ŽžHÆ,ÉJ¥{¯YFÌé˜|·øÓò³Ï —â\Žj³¢l1‚|sg•—‚ÕÁlf‰”*©£IOÆxñWXäŠÀÎ>~[Þ¦Sßs‚ÓXK®œÏÉ ’öT¼ÀÉF$4 =ýpƒ*gkUŠ¹åå $¥^©žz–¾£i­­§0»Ó;b ¬P· ƒ
+í‚€LK­˜éÇšSÌ*)îÀ¨´ý¼äÏÊõÆò#D“¤Vr&!âõÅ¿DKY`8>õñµ³=¢ÇÍs¿™Å(ÄeÈy™žt¸崃0Ù¤Ž¾„T{ѱÍÂ<Úp ¡8™Óã(~ò x?Šï:±VÂ;P–ñºæŒè{wÞ›ä>ŸàIƒ-Ëú”UxASâ%¹r.b1]À`1Mé ?&UƒàEˆ«*VÓÊ
+NÛKòÕäGœÐÀj8Îà³> @3i_÷\VÕÆžgÛìàŸgµ—ÔáŽgÀ‹¿\.á`cAãžÓŤ¨È•%â_ú/ŸêûãMc]"ZˆÿTr€¹Z*|70AvÁ™;MKõªŽUÌ€w• qFëÜÏ|Oü‰OÈîêcVO$Y“ý$SÐ>Gþm@1›Œ ¦@ŸŸ®úÁÀWac®s"ÑwYߘÛ5Á"}²è{8¥„žìòd_H…õ@G¿&3à±­{Ár· ŸCX^Hו!°R£…Äf‘Ñw!Q!týeùêHñ)LLNŽ›ƒ óë¸ ÙÒ€ê+ËUåèJ«Ð)¤ˆULº`ÍC_Yc÷ñ¡™–Íu·äT0CË$?É%¡ˆ–ÄhÚ_¬7¤DY.5ÑO)=Ô.³÷DÍ4ë SŠœü'H·†“²_Z 5TŸctüJ"‡íM*<°¨ç;âR·äwòc
+¶6ðê¥Òã­b“[Fw†Ã¼ô j-î¥ B§g/“  ;,lg¹Y5¹(‚.¯ÛœbWd
+îœÊvlT,.“›ýÌüN”‹ÎÒ¿E°+–©åvþZ£â²îO²¡Lˆ#Sö;ÕF¥ŠfžŠ$(5ZɈ°ðQõ :IÀœÎ•Á–ÜõŽoÎ6=ÍÇ`קèUwp8ë5x±9ÑöÞ?köëû1TxcÄ^VƒJUv ÞgÓyR‹H4pÝT}ù»«Âž&Ò› ‡¥„ZQ
+þÅ Œ Žû+¦m#:(] Pi®FkpýZJÝûÊŠ q/KZœŽ õEQCeŸ6í1åû~Ò¹)¥øPÖŠ;Ùì &jíµVd´ô›Ï}U®¢Íœ½H¢óÍÔ°S­-ÍZZÔ±%0ËëÂ#_é{d¼äù5\Þ_¡Sð¨@Å·¥9ЗakVu>ŸS¥ÍJFߤ4VíðX¬¨`„j\Ar~43+¿FoÕ‰‰iŸbôätŽÞÓ;{›7Ç´­HЙ¶’T¼dÙ_ìqBuI„—À<¯Ò³¿°ÍÛóóód^áG¿¶žyÚ¥ŸL´©éOúº«î£BRp•uy@ôz#¯t¾^k65o¸ÐùƒF0[m b¨îÇfcÆ4ŒÎ >hÌG•cÈÙfë†Sg áÝh@ã!K'q3¼%ïÉ<zœêFðj5Ú‹(‹4Ü}hÎæ¦YÄqËø"g–ì¬s:¤;Èô¾pL¿âyÕºxë)ú—òViŒÇñüL®R˜û½_ýK™,CAÚÛóXHãT€¢Qfòƒ€²p› qyÕ®tÚiV¥0©Ü¡°çœ“öãÜSñ\N4h²¾ÅA<×ÝV¦ÃÖ´×v­¡©ÿ$âȨH…I–"Òã‡Ð‹íjD¦ÑÂ{3Ôgû[,ÓÇ¡å3$¼íssw¼Â¥ù||»^kwÚŒ7('Ø0–Ø°Éywþ85Q¨3q E“ǤˆŽ\{†s\>Ed÷ Á{í†?ÍP†mSë¬Væˆä´Ìü_$’½¬F‘C—È¡õŠ ²âBûf2þ~Õ7L¶ob/<¼ñ¦ÕDô`ÈU}¬¾ªf†
+ñEÿ<KNa ¿-¬ÍPÇáU´Åa`Ó=áÃ-\Ω
+òà’-Çí*àÚ·èÖà÷ÌÖ÷ÚfB¶þ87Œ)6ô:¢ÊË8à‚×k7¦¦&€ð¶ãJÔ&Bi´`7Õp¾eþ$
+ÍÔÀ^%dtt@ ®ÜEå$WÔQŒÞ®ÜJ
+#Œ±§±ó„íw€†áHÿa…Ð;ßÔ™‰%DaSÂ4,hnè÷…AÀ9pèÖk8¶9IpJÚ]­j5æóÆŒ1ý·$ò°u©*Š6؇28x‰L5+fºzÉ©ß‘=Ä=ÚV´NØ*kãd°ª Ý!8MJc Ôù””<³:4ÅÐBSì*D—K{
+–Ž«¬Âëâ©æÜE!y~ ¼«3‹vÃ(g;OS>5I¶FznvsûÍN€læ:b­Õ>/¼|ìå:\Ý7ßÙÁÀR0ëÙ_‹ï8¦TlìAÃ<ÀÖ7‡ßÑ‚I1KBZaÚÙt)ÛžÚ åqõ¡Â³$=pÊrïäÁ3/×
+ª(7Éw ü“(/läµioÞÇöR¨aKš4Ç{Öâw¬ë >ûN3/°o©Ð/^yÿ3'*‰=ŒÁDã –È‘¶dï{Ý»ðﻑÉR\<Cf‘ªè®3ýäý€w[9ˆ³aµ¤†–€GÆî__J^õÆ
+pmÂST@ßat~ü œPNêׇç úepÄTwJ§p±‚·ù‚çíÞˆ{°}¤B¹Ú4 àÿ£3ܹ,Ç‹Hâ_±YGà””]¾2ƒo«Gôë—YY*¯ø¤í8óõYØ [ ékƒsQiJôÒ–º¤˜-{qû՜̡‰ß4Ÿb‡sB$¿°Ø¬{¤¯ÑÀ^¹Ã\<ïþuB·Þð "ÁéàP=l Íšu¼Å0'w³5U®eL»{ÓÁ-€wWúF \å=ÙÁD~ÇQÓŸì<%û ­$ ²$ë{ɘM™qÌEÉ…Žyž'ðKƒ‡Â\Bg‹§hv™ÀX(¥Î ƒ#þNk=´H_ik¨"hh[®2Mõ‚ЯØþ·œåÛÛam|&i`k¸ì-h%ËÌØgHó`bóoøXA&gÌCY?!Ÿzµ0¾è’OªPèLûL'@2®ÇF!yÑK<¬“><zmZÏ/ø%}ÁXkj2óådmr5ØÄ!wG§C¨Û7ÜŸª«sÜÆ
+=?ˆÞ½·µ$I°#t#g$2
+ÀW4L£h;@UŽ"âGÊâr ÓsËjß^êòÁ*ñmí ˆuÈ϶ú#>
+E>9½³˜~p¦<jÌp& @--*úù ÏF˜Šò¶®µ5M©Þ\áÄÝÈ”v2ã;”®•,=RÿëRêÌäÃ΀†Â:y†»‹džLè¡ýïÎO-½%R Ô¢"Fl ì¼ðˆT¸šÒ ±`'C!£A³R;üN³'à®8$W[7[Ù;¿œ¥¢%÷¾ªªùB1žùÍXÌ íHüv'X3(ú™€ñ¾E„F+G„«5÷þ}T¥¿Çª,ÈY3â.ùWž Qä˜+ȇ¯FÂì|!+C”„Ô<UäÇ\KÄæ¶÷!`)&¤Ì(Ú‹
+¶¥=ê{„eÐ62ÿvwm: ŠDƒæ4ˆ7è÷.jŽ³r’NBKEÈ©Y‹¾QÊyøy¥œŽž@1êÀ#]Ó†ª`ÍâÃmš»Æ՛𦭀|Ö eèˆ3¡l»ã¬(Êwì4ËJÛéP¾‹îWñœ¬:Þô7ž•:õàƒDÛçeuWï
+ ý¿¨ŒjñÉ VüV3ú) ¨_ƒS—B°,H´«à¦˜¸ !ǘÉ)ÜSùg…ÈL5JICKŽ7É ³žš˜æß7“] ÿ%㸣©½- ä¿¤-IÊ_‚`7Š*ç2ÛÇžiÒè„ï^
+@Ý"¡`ñIl­õn!ˆÖÞðÕb8zïº .aWZ™P#¤ÌƒìôÈZ…SPOQ/ÚeÄw‚›[V¤8Éçn°¦ÁU=õ®ýƒót±ZˆÛ³¤:|…DEÞã¿ýÓælÁ!Ñë ºòzµú›R©¸Zì¬6¬ÿ H-­¿æl§
+
+ò• “KT¸ÅÅÀŽØå¾’ÁÐÚõÉ[,o/]ì¹qëûNÂÿ,­[4¼ö„m‚€Ÿ’kÅñõb¹½Þ/V[° æ¾·NàcÊ2$§ªáñ†.±Ñ>ÞŒ}&ƒP
+a.”Ó´R0fƒ¤‘æ4öÏ×ÕÛ¯Ô½U”£ieö
+ñY5%ý¬Õ¡Š ™/…êÙR–2Q2¹Œ»®±‰Èdvzoÿ¶ÏD‰òº‹ ¿…ë
+%‹fdµðê"cÄÎlÙr¥bÚ%(¿]4|Oôë2ýš$ÖæaõîRÂf{V€0†­ã Q¯¡]Ÿ€º^‘U a*ÞÐR…Õð×ýn4&Œ$étEiÚ3’·•`gdÖL-êTÕ¦±˜Åª)®Øg“íýå°Î7µ¤Ý1/®,i©3nˆ“‹ã·>ë¸Sp{pû°Ì›Ó|4{»ÃpÔZ@w³·êf7oåÄ­$ž†ôÕœ¾L-’åÜSìÌ‚DÖÒ;¨Ä*+÷Å sÎ5êïÃîÆÅâž®ìm9ù>Q1OØŒöóð¿Õɳ@Èø¬)mÓީ͵íjäžÜó]çÈ××Uú”Õ••åüˆš$Ïq?
+I—eß
+Š'®eÞ,Ѥëµ
+ #s2¥B°M®,¡*æÝùé„Á9f@B|¢(¤ùŠöäxü÷_ª*CÒ k¢®(+Z¹N"LkoCþ‹lSÚpp}¸¢Ò»ÃöEç÷ð
+Ö œ“1ä;»jàci Ï®Ñã&{,5öHvµS-¼…GéäAŸLâCiÁë ¢Ükaƒç}qÚôÑII&«ôŃ÷*ZV”k<UïdyïR\+§5±ïM•Z
+áöµ‚e]f!ìh³õ_·`:Sö† 5Šu¿»s0‘‡õÔ]þ6Y}\x³5únÊ£+òeA’Õ*6lŽ·xIÀ
+KUª€JœÃØŠób¼-ÛÚÑFö$¬ñG‘YEß™Fã J¡âk#2­Þ· §kEyÝ •öobq
+*ºi~^ÊÜ@»úQþ$Â_í0o­Ü0˜]ëcFVXÙø aÙÅò×c¸õ ‚Î!×VŸ‚Ø¢Æý©Ú?òtœ-5y)AŽ²ö¥—¾ô÷ãÖGÆ=ÿÂÃx+ò PÝôÙ&­­«ZLÙct%'•_ÿ\ïFÒÊ?a¼ÜÝ¿?…O©»}_ŸôâÁ8*µ¦¯A_—芌ÝUÙÚÆ]$HÔºpÑMaM6¾Qïj{4zÓ[¿V6( yU¨=+û%ØoO¼3ªÓoœ«&ýˆ#ZfFº+Ð^ŒB%¸Ú¯TÐ.£yãáØ°’³³†üº_œêéÂÇ„B¯10¼”Q; ãÕ©B†¬8ÀŸL|m¨ç`
+zàMbxqL?°m˜´DsÙŸÓ<^ߊ(üð9âH¨Ø"ZÃßM;Ý%²_“<“N×ÿ‡=ïk‚ 2¢àlj À†b4
+†)ÈOsJœõÆyO šú×¢HQ+á‚õØsРB¥pÆ ÷ÙÇ‘bÀÃ"g¥KÈM‘Ü‘j Ûur ÿW¯-v«S¾MtúŸ·ñô½ìÆ/ØNøúoZî[B ¤˜E>\¯”Ìó °¡‘Bx@íÊÁÁ´ûàhøÕäná$fT<Zê›-÷m_IAoÕ®(TåýgwìkKè¹Kmê#oNó'IY)ìGUžjÊÂmg0ÔW´M³NEüƒ¥H>¥AÉ&ì|z)éP-IÛÙ¾‰?8;j†pµÊ"ÒpÜ8òBò™E(¦1iSqWAªWœ‘¬ï¤Åùîc ‘¡"K½I‹&œA‡Þ“:eàõ«¯0\"C¿ŠlÚ c5#!õ-US±Cíïlwdê§ñ3v°†öÙv¦à
+`ºkÓWÆ{¾ÃXñœè­ÍSmT—P몱„òœÖ#ªï¬+3ßhv¡2e•g2öÊ81ñ3óßì>6P¶“—OÕ'¦n!8\­Ý=ŸÖKƒÒ¥O,hÒl‹Ð<ö0ÈUýd¼B^SÑw*-×®½?ŸTMZ@8 ú)<0ð€O ñÙÛj!c>H‹Ðö¡Ÿžfgn;ÜAYÃ`ÿb“ Iâ=Yü7<µ¯Ì/ö×zã ›â>_E¯¾ù NZq  bƒÙ“Àx¾oœ¿û³pyÏ“ï*wksËÎ[õÀÍ3§¼²ô„lWx2µÀ ©a¬áòwîÆ“€Ùð3px‘<ÅÑuCî8u¥VE¶S·³Ò Ü„{ÌÛç÷_&¨ÈLi¨¿©4VQ €ÊÙ«Hu~aÊñ#,'%ž½Œç1‡´A{Á0XE¶€
+¤’ÿaòÊ/OY×N·é‘{ºQ—ÉOçõ· cw>ýØÈýQŠÑiË"gr*¹¹iTÀÒWTÑøßÐ2ÛÛ£`dxž¹ø¶ KKT+`#â×,JAL»u$¡×÷µ©7s…h÷kcöηBÔ+ —Î5¿Fµ(Óý¬˜÷-~DœE(c¥kÒ—8EúmsBÀÕ¹²·À.r,ššnVX+9âR
+Ú®D=¦ê&Å
+ÐxD·…%<Ø°ÅOo
+¯¹Y5j
+ñl¦_ç1»KsÁŠÙôËá ›èæœpP꓾™ÏkÞJ?èwœE­‡ß@öŸ’¯»®fžBÃr]Ï° h•òw#š~§7Ü×ÕY¥•x¨9Þ­ˆ#VÕÓÈ¢tu®ÞC9ZÌv¶Š%G{<¢}dÈ×ã)b›I™ž 0±eÊCo¡¥¨k%¯ŸØ´_"”k³#· 2ô²¦[åäT[,íÉÛõ¾®n~ý¼Õ]¶¯V‰Ø'JHjzæ™âŽ ¸VŸÆþA¹,ÇΆ‰Õ„S'Ø ›øjý¼Ô~(?»üyÿ£v’é&XïõIÁ¹Z‹ý6éW4Û¾vÿÉôì¤àúÌ礔æ(»„O©ÞËf0X›A…uZ}¼tèÖÝŒ³â÷óý
+¥€ú¯©Ø|-‹SˆÑ›Z‰DenH
+—l0&&QIµøCâêfRØâ&[·:‰ll+]¼X©ŠWå¿Ïiêù°O¼×<ϵ1ýYÄ‘QÎÎ"åñÒ¥  ‹Cå×T]ÈúþO’›[z˜Õ8GNCV+å?9¦8úwq"|‡±ƒ4H&.”o$ü\)Õ}§&?ügÒ»Œ«T§w–¤÷_ßR¡¨.Zâ»Ù¾6$BuŸ Y”Òci 
+±.|$ôo›”Á'Ûõ–¼€€Q…Å*2”3ä…ÑHa(Ð gV OHöLÍÉ.sÛþÓ|YDeuŸP òŽ¿ Ú à³í»²‚†uòa„óõƨdª³a²©Ï‚žmQÝàݯ0Xrž‰²š61‘UV:W½" ÓZ<úT•v>û{%<¡úr~_T¸‡Ñ·¸á9²*H/ñûÏxTs¹q
+¤„<z‡˜Ýxo
+ŠóÛõh`àŠ=ÜYÖpS"m²Ä¸0 »ôxÎ(Ó”/sÒ–;æTE"ÈBO7Æ[®R–íl IYý›?–ǽ¼Yfp†Ö\Û^`”6Ô­?îû–ùKŠAဥIµv1BVRÊZ•©ˆÓ%ø|†º8BŠaÙ~W±‰™5§3çó4ïò}ImRúî6ÉsJÑÇüU ¿ãÖ„™ñJ›½v´Á ˜„\è‰ a«Îm‰œÛHLâa³®é/ ¾­Ïô')?Â+Œ:6iR!=ݯ ¬b« ¤p?¢4šÝ`Ž¸Ó¬=^X1ˆùÊ3‘XÙÙ¹jÈpó
+ï”…wƒåx5*2EédPW웨mhü@·ðG£‚©…TX^ãƒcXœþÈüD+8xN…4Æ8–'Ÿ?ëd¨û[˜¦HxèÔº#SA7 ;Œc/¤¬ÿtw¼ûai˜iÎ13¸…Mtƒ}„rKdÿkct~~Ñ%‰€MWMŽ—Û“9uîu¯#€ƒËЉ7—Ÿ;eù)”õ%èµ}™–GQ¤§7#¡IPÑÌìÛš¢$ëÝ~H~ZlF©&œo-wš¥•Ã·]ió'âS›XƒcîB _{°pÚ—=7žAÖê>Ùô„u¸5r¯éz©ìÒ~ªA:ŠÜ˜ûííÔ,Ïý'¯¡\±úAù爒fÉëÇÐH:²Œ|AâØmwõ¶E®¿v‘® âeþ`jZò䘖ÍŵO2‚ÎrÌô(¦B{6<ŸLÊ‹'º÷ÒÇ‘Ë–ã]ÛO%¨ÉÅêVðÐ×èÞì ¹tV›ÿ”ï¿FÀÃàÞ‚Ê"Ã
+gž¿yƽãÐF€ÖHmùÞCÄæ¤hÍ\~TG*3r€g
+¹><*lø¢Çì´G•©•˜K¼ÄXÔUÄ)™~°VlƯ–R`<e#0qG!÷iýi¯0¿W¤„òEÚ6[ˆ³5nÀ¾só~)¡¶8áÄöÐoSuFÊé#^TLoÉ{|+vŒ•WNŠŸþµ½* æÉ‚bWc^ñ-)±"yÎ<ŠæŠJÞí`BûG¹|½÷0A8k3ÀŠÂ¶ 5x{øÑ£ ›l5Ù nl¨Òì»ê±eEqàVÅ
+– S}á?šÄRÎBÒõH$•FœÑ¸æcŒt¦ÍqèÞôí˜X¥EÔãD]BË))5I•·‡ü1»?3‰þòcã Ø€*Fª@/Wì`¶±1_0¥•W¾oÕ7^¯1_àâ&ÊÆdÿšüždô–_RdC”âcÌggiŸ’G£8˪ºñ}sf+º‚ 4|êýþ`Ø5;Þ7£¼†WsTpÝÑ$b7·:ëþÅé’‰Ž€¶†K5uiËÙP{­ìEÕÃßw¸YN™þpÅ©aWi„é¸÷P8~!ÖAJÕJGS‡ß¯v#…mJæ
+_Þ#pr›…×:›¤³\àMj7ØYJ&á›QGPJ3–ûA‰ñ†
+¬½ZtÏãŒßrø˱߲ÚêK+I°> Žž-\ß‹+!4
+ÌVIˆk–üšïÏëhè§ÿf©W³d}7ÞfTGi†ß}á{ìJÝsö1@#in‹¢*|!ÌÑM\ïèªæoÈY"J„TÞyëqË3öR#^Ÿ­‡=Çs¡Ó*ÇÆÕ|9,[só ¹>ì\ÓôÚàX;—9šË;©‚œÑêìÂFxÃ`¾ñ©¯q<K2Íì‰>Èj~%Xù'¦-ÆR}9.¯(îè–—ÍZ[rh©
+yÑj×GWÍï"xs”¡$Ípu·PT%4ñî=¬‚”*[t°X9NK'©²ñÔCs‚àÉàWRh%©ÂUÒènš&E:éµ:{Ù¡kàCmFùAŒ }-ZÉIøû5èö”¤÷îØ¡ãÆÿ<'Í(&Z<ÞZÌd0D3©ƒ_°v¸­ú¸ÁßM¦`a‰
+y;5oöÕ?l¨¢Uº>d':“
+;ïjuh`ý
+B±-ðð­¬k¨¤“824".zø\&Jû~8XÞœ—ñE_òª3xÄ$Æ ~XBÛ$­ÐÀó³=ÞoñÆÿž°Œ|3'ß;2u;E#„jR0ìLá$ÍW<4yïÈZújéæ;² †5¤±ÀMŸ^黧i] ,§â,òƒ½’±^²×g¸‘õLº%¸.Žg™\Ec%HJOÇB›#dï~›®ƒ ¸ôHÞ›â6Á_ œuô¨J±/kå)½GÂ4ò1¬¡ȯ,cˆ,†ü
+Júr— úNÏÇŒj¡Œtò¥¥&׶ò®G=g›Û£ÖÂHÞÄ<FyyÐj„¥8Ü[[™õM/‚’Éê’6-ÆoÚÅŽ¡R(áË®o4n+¾؆ÎÖü”
+¹` Èý¯R¹Ð ò¦¶<(‚>VBœ£}’;Bó{]Õ×ÊëÖA€%·_QxA=áÕj’þ…„'Ëì–¢ì’É_ù`ù6•ø1ö _²ªö²]Ô!RT°¾Ô!­fǺÓ'¡™@S<Ø__Ü¡î>&ýöð 
+endstream
+endobj
+3190 0 obj
+<<
+/Type /FontDescriptor
+/FontName /LYHGGH+LMRoman8-Regular
+/Flags 4
+/FontBBox [-456 -292 1497 1125]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/CharSet (/F/G/H/K/L/N/P/S/T/U/W/a/b/c/comma/d/e/eight/f/h/i/l/m/n/nine/numbersign/o/one/p/period/r/s/slash/t/three/two/u/v/w/y/zero)
+/FontFile 3189 0 R
+>>
+endobj
+3191 0 obj
+<<
+/Length1 2674
+/Length2 31137
+/Length3 0
+/Length 32678
+/Filter /FlateDecode
+>>
+stream
+xÚ´÷eT\]Ö5 w  VAww ®ÁÂÝÝÝ5¸»»»»‡àî®ÁÞÊÕwwÒý|¿Á€b.{îµ÷9EúIVšßÀJ(beiOMOCÇ”’·²Ðµd§–9˜ëÚhèè˜àIImºö&V–Bºö@
+Š £c‡'ˆ-¶ §@Ï ´×Ut±ÒÈuÿ²VvöÔzºv 7ÐÒÈÄHJ´²v±512¶ÿ]ƒ‘šúw¥ßÙ4
++8X[[ÙþAE%Q*€¿´¢0
+ ª¤ øû¯"ÐÄ߈
+ ­òÿî
+ü.%¬È¯¨*+LOû{
+´×µw°èücý ÈþEt°µýÝCêß.Ûÿ´ù7u+ÐÊ4ÌÝ<tþwÇt-ì\ÿÒæ¿—­oeigbgo÷¯Š@€¡‰9ð7{»ß{fbùMŠ_ú«ˆ°‚"µ$hð,©¥¬@êXÒØ;Ûÿý»¿$€Ž@ÏΠ ©°¥ •…ˆµüoù„L@:Ù[ÙºÐþ?smfiådéöÿÚ M, +oà`M«dibã
+00Ñ· :è°ÀÿSý«¥¡€ý_f“»þoÈÿ9¨ Sj`eiî0
+ÀÚÁÞ`he ÿ{7Y˜´ü¿MÿB,
+‘Òµ·5qV§=$èAvÐÏ¿ÿÓü¯¤žoe X9»Q311¨Ø@[’4Blÿ•«ÿ¯†P ³öoüûi
++"x,&Ï®ÃÁ'çë” Y†ßN=ÚÅ_ìŒ×îª|Š?}…O~ö$š‘p$[ˆºÊ§µò6:s#8q&|D§f‹×ü’bO¥ºuxØx©9P³P…Ý‚}¨_Ò 'ÐÅ|qÀv!-âÂnœÑc›÷[Åý9PäO\ZŽy
+ƒ{éy[·#%°°9³n³ŸÔø¶l¦}e„‰dq"ÈÌMÊãècûDK\oq`˜·Oâõ“¥¢xZz˜t ùGJ¯Ñ+¶|Õè»TGåüïÇK‰ÉÐ"^úÔÃ{½/™å`lTéi®Y秕‰בµÖ-àX÷ÜÝIoáLÊqå£ÀMSZÛ´ýëUfÔû¥~e!a¨YÚI© ùºH~EEó¶g?¤;7À^/± )ÐBøô›û¥C`‰‡ßU˜gÏñgSˆð.£Ö™Í&Ÿ«'d.Åjðñ>Ý\ZÛ ®‚S÷
+yÔdJ:ݪⶱüŸz¸ÁÙц‘3ŸÛ¹›ÌlßfXç©";ìíº±œh o摇×LI:ùHL±‹–>‘º–™Ý¤½Ææ+–þ
+Srç3ìVêèc»õ%$á‰Ó?ø˜u ÖB.¾`­c^©›­áœV¬!ÿtÕ¾¬DèÕ&>-Ü«ÜNÉÈ;¢U _Û-‚‹œ <¨¡Œ‹[)‘Üã§&·¸ŽGs‡ß+Öº­)ïÅwµï/íØ@êgåÓÁlòE9¢CáD
+)€Ï¼ªŠ#ÅM,ƒÊ‹Dá3eZ_\jÉ,lÃv>@FL
+ÃÏ¿4¦–ô@8ôç(®!]ªó,)kK‘'B‡s‹ºB-3Ó~Aûí“Ö¼rm‰F<ÍT—î˜'„WiÛÙØ"/ð§ŽèÜ­Ë}*T½dÕHx+ËÔ‹,=qƒú×éßÔ ÞW{Êy0ÍŠÜ&ÄR.xûžµÄ”¶OiÌ)¿¬8ä_À]«mE°.QXß]×?ª9ªï1þ°Ñ6ùKd ¬so‚"ß&.˾0˧¿ó…³ÃÏýbo´|" Æÿ-—¡v–ñœù¼û’û½è]•š–ë ã‰
+\šw:Þd5ES˜ÕD'g~ªÜ" ÜÑD}š^B`™åÆUíBK¯j.RåœBåÆéCölPT‡i„Ù V]2³tS3$jÔdó®õ<Àr¿7Т’¢¼û~úàU¢ã9Byvá‚B„š&ǤÁîK)iˆ‚UnO¬?Ât’õç*†°9 Ë=Mê†Ò
+ÆÁöü,N5¾ÓNÄsþ­£ÓØ‹”°èФ(þ‘ïö·DjI.¦%¦>Ò᥇,í—›`"<-÷LÇ¡õ=b¬\¹›}“¶R$.ŸwǤßCá1ö\XÊËO…t;Zx©xa­Ät´Qêͺ?]ðÃüõ^"N6»mØFlS“Xál«# -„—ÂøÍÖ²‰%`µnéÉO÷L"Ѷsbã*¥AìR¹µ"œÄíö|-ǶbqŠ>Õf§œùR\gÎ^§¯ §7µX`Á-ÐDá¤*Þ8*žÓ""‚9 àïÆ+_¡L–DJR!u‹®bgq|[Ò>oØŒ«([Úa­/ŽG²ÆF^EV·q‘gÈáÖœX8$Ý0ûßzÝ‘µŽÎÓyöôwSÅgÃ[È]ì3+­öŽ.K L݆ãõÎ HáÑÕ¡BÄW¿£…ì/pÝÄ{{]I wH¸Ø)¸«/*R|AŒ)VÒJ0æDäˆóoÉãÞµïâÚwŒJË©õ¹Tœ¬EZ[
+~wç¿‘]Ú°¦éÆ6xïñ¾ÍÃ,my„[Õ«eqð„þº»ÏRm?Ó¾ž‘Â@Rj1cÂQ<ØH´ñÛt“Jz…qÕEÁ>6ç=)u}—ýþ7:¹±û‹ã³gnéä;A…‡"!³š–¤…Z4?’•ý<¥ÍÕ”šêŠ‚¯³Ñ®hÒã0±xY%q•­
+/~-e¾Š*õ¥áVÝT˜a JuP°7̬€þÌUn/z†gÁ ã.ö‰è2v‰Jï–#+õ¤ &~­öÊÑ;ÀË`y>;f ØC˜áÛÈÔ ZSå—/2ÆR? FN }Á«ÄRÈô)½tè1Nxš³F—Ö(qn2±²«á¾GgžÕNU_´®I~Ú^9qÊHß³ÏÚÄ8‹ýÎE;ïôbKØïqÀ\ªê;süê¿Ü&>©ÊU„³èGʪq£::Ê
+û³P¾+ö6îÑß³G‡‡Ö:é}Gv¥ â›M=‚ÈšHŒ=-Žù.¤ . Ž£pG;^aw©Ž©¼ ˆ·F)`M F…F,°Çy ]¢ó&@ùiõ ˜Vi šCÜeLÒÜYŠG µŠÌ`Ãc¯†è<û«:<à§HÃøN
+¸=ý¬`'mÃd0vÀŽs¶î¹¸Ðź¼S‰|ÎÒèÝèK<{¾¼§ËŽ”…êdJº©›Ò¤„O™NÔ ·å­9zô¬
+ÝETŠ±"á Ÿbü÷û/=î÷‘ì¤Ð%÷ùC9Ð^&þ††j_ká—Ù˜ àÏâ*[Z}=’-¿q£¾lA<ªàÐf'1…ª|•u3ùÚö3ý0´»17­u{_3 Mó'…¬CËã0ø–SÌåÝ„Qí÷úŠ+'pWø¯~l$.Ú±¡’~L‰÷}Õ ±S_ÕjýÆ·aÅ%Ð\UñÐéQ'LñÜ‹êR˜' îŘ`V™&µ^CµIÈÅ}65 nH§ Ì„ÒX\¨¢Ež>â?…YJo×_)7ß5U!âzX[Òm«èrn‘ÔªÃfà¦$¾^o0‘oyyÔÈu¹"vê“ .,‰ xݹ¦˜ÉhWD­• ›l“£»[›!v©J›ÀyC(ˆ5ì¡€¡àå dæâÊŒjÍFèóTu8y/LèV–Å°ºÞýü«M#·€|ÜÄŸ´þmz”l`µEHîlföDÿN*ù5Xµºhpô+Êú:¯%D1òÁêGçOªãJú TÆ(Øñž½ûH²ÐÃrXëý弬×]Cu#Âн|hiu5ÁLHLUyOïîõÉDÈýЙ6÷É^OòçËWÇ<#ǽ»ô⤠¹‹Tô—â,Q íQ´[ml­ Š´¦°Ð€„"€ó2Žcî‚>ÏJõ†ÊÅ'¢J®›(F 䆩ov¼è ¯´$å‹”Që¯p‰ÛÔȈM ÏTí¡Ô$IaÅu~¿™%¯ÑOï·•Ï>û¹.>én]º5MgÞd§°g$¸B¹½ZgüP¹Æ0ÓÀCÏß?…FÕc&LiíœØN.Éú®/Ž°ÂFF?G¼8TÙçjY„‹¥û11 ÜƱ³.RÙ
+™y2^]ÏTfõʳ%… %Œ;Ü&_)ªtuóÎËb>6Ø3åäjxÈmx¹$ÁIphh€ßÑ!`¯¤tuü#•,Ýóá­¯èY·ax¤Wµ–i‹Kš3{¸oÏ}õRÍÌZ›Ç5ô% Lœrá;Ø”msËšDOöÔtê_ý®»Ç“ôº+æû½—cXBô•¸« ¼‰ë:òçÌm,êµòB|${Hp´ÅI¥\YýçJk¹éL3ÖZy6n'l>äkŽ¾øÊX˷Ɉ«8)¬Ðys’ÉS?aÂaÐÞ‘hãzAo€Û`á<Þ‘JÈK}X“ƒ› Ÿg²\®A©¤=eÆ©=~ógóèªû†Pè o¨Ý%:ÝSG–•N žõHÐÑQ!’±ú‘#s0:ãYœ¡;6:†ÀNOK,%¦Ÿ¬‰¼<^Òö+ V\gáí.Ô·Cf…×à˜ºM<cÆó³àÖ¾ÿŒóêívP¼H秾×Ñ}da{nl6éÕÂêô®¤*â©1œáÛUaN|6¶¥ƒØ$G[ü+ Å=WæLjêZD¹á†ÌAÌòTtžDzlç¨"\+JösöÃ%t¼¨¡ÆÚ/]ˆuîW%ªˆ}xåˆHˆÈP@1ƒ¥l³5Šòtü0Z³ýüú%e4df‚5tÝÈSúÙN£Ã#;¼`wo„$BÙû0)Ýž’ 8^¤˜`fØoÕ÷…·Œp|ù,<ÅõÇNÃa7à;IK„’\ÒmÖwš¬PâG‰š³³M–®‚íyŸø€zýiäªs˜õzæ{tí-ŸO¶"2TXRçËC]täaP$•½íûÃ9²c|îÎtÜc\›¼ÈØv2pðÀ¤ñ%j&Ð!õÙ™>z»‹Â.²š´2ÎT¨¡?Ç­Gq­~hª(‰cnÝѨç#ÿÜOñµ%!TZZùòbžÍ4‹H*<Ût¦GjtúÉ°Orò0Xuȹà½qeìNùU¢­ÈK=ƒa[8ýsá{”(ŽHt\3D’ˆoW¢%Æo‹’£¤^ 8Ӭ伦{Ù”x·¼;8£Ø—ÖêÑßMÄO‘é ùwÚ,Ȳ6µõ=<Q½*ët3•g a .á×–iõ ª¬Ñ ¼·o£ˆ×4ËOÞ3ÓÇf .ÉßŽÆ e¿,e`
+
+øbÝTJZ|»}eã¡({3æÏG+&†L Æ=9®ˆÿÅb.%öI1?€:Òb©»—ËŸŽ<‘Òi}UÎÒxõÁ¹9.û)Ñ}s))é…¸…/+EOs›'âÚœo›.¯¼˜é!Ä´
+¿xºËäˆ¶ä› æ<¡„
+î‘_ýáT+®·‚:,±F?«ý¤šSÄ—m<»öƒJd šëˆáÝDFÎÇñXl¨·´I‘,ZdoøNf²ïh—ýªHj<&1»â_öúÉm£ŽE…“@dŠ3ôÝH}pç^­õ–œ3û*]CB±ªþ`|ÕraêÁ&Åþm9®}Bw[ROE ñz‹=aJʪjêD¤[3Ë•Ò +Ç\‡PÞù[†NbÛ$u"ötØã!´F¬;9žñä`dܺ_O0CÞesòÕYƒˆ¾sÖv6EhX}¶!R•Ê¶7:ùóaTÆTn'¡q½] ‡ùI‰>M;§
+¿7`d¯ò,$ çØ74]«Ú Ù%:x»ä}Ï%¦]çØ qÚä½o@³HRÕH«Ä÷OÙ»ÏàÝ86KN]ÚĨÖ§.dõ¾èÆ)ã±í•o&ËÎdñ‘s´§h°!áÀ$ÇÌv¾h¼ñaò! ñ¨¦@óf!C‹=¬Ü¸&¥—„¾sâ0ÖËv¾’1æÇ^) 0¢Ó°UÂÞö›~¼g
+ãB¶G÷ÉÙ<itugÿP—gÅØ0îO8ô`—.B£`?ûNÏAøjâÑ$»¹‹_è‹sýÈÖhW}’ð˃há6¼ÓÏo u:+FXÏ3"m}L5º8)/ûc/Ã|7G¨[¬œ„ù"ìÇiÑöÄç¸N~2•F)û$ì¾óÝdyãJúE¹'iO¼„°ÜÙ>õúà嶔èÚ6‹}ˆÔ
+ʼngo¹`éyZ[?X—«ì|:/$4Ȩí‘í Ü`{'l‹.¡4Gox5Ðl…uÓ
+B9ÝÄt‡U¥”Û7ºíÄ4Tõ{ÊË¡óäœM\¸ÜºÅUò:6Í¥ñ¿F‰¬B“yåäøŽ¤CxÅ…¢ÏC@÷N°$¢‡ÜÏÕ!û.}·<^\q&¥‡Éˆ1º;mkã@B[Åÿ##º;L)7syÙWõóѧ§h­¥ð³6xJ̹ãaÑ
+ÜÚ¬`ËæƒÈsÚx¨½evc‹ägËëÔó·*FAZ½8 ‚pÊØM/∑l„.3€Ä*QFô1mt)Âg‡Ÿ¡ëì×’ë^)ïBMÄYkÆ»i9öÄÇ5÷’|xr¦/”Öq«`vT6’¨…Ir$2Ž]™Æ4+* »ŠôækÞI kÂïzÒ H:íB×=ä´î¤"έ …cË«é3À?O }.ÄE;œÌ–Æ´å\PZŸÛwù”ÆF¶¥C¥SÀ3›Ê9ÖR^øÆ
+àçÇúQ×ðj¢[*¶Ä`°BÆIòœ
+s‰.^îΕ£@Xaz*Ìÿ@ãŠÂñ}UƒS0ÁmãUG‡¾ ýÆ-uÎü¹Ëj®¥áJœ…5VP˜@*‰¯2èáÝLÃIh?ù"þ*äŽøÌ VÎ@¾±"À".’Xv4zü€¨7eÑqFï—95J5k#y‹æF!mÊ‘44äL.ÏÖèÓ2¾HE 5LGÅ!Ã4RŠº¨Ëú¯…ÚÝYQpnº.½Xc–[ÿùŸ"-Iß²Íì§ë¥Xîe[ØmF0./ò”œô6ÃdÏîiioT˜àÞ̇®{Ù`e¢d<Šê*Ζ>_R>ºGO˜5Á
+C?$`õúý”H§¬õºÌ¬ô×û™4èÏœI¢6BbÜ‹ƒ½v×ÑgßçŒ+ìù“ßüü®a4eö1×æù¢é›âBoŸÀŒôí¶PÎdY/Ô}õ\ƒ2ú~á€L0‚0Ë-Cæð)“k?Áªƒ?(´–Q/"%€Å <ÚŒ’”h2ÓíQq9·ÿ*õKî…2®¼ÀãÍáÎ)3#!ÖóCªò j)¤þ•®RêoÌàHŸëI–Ç_‘"&iq±‰O55ÄcÆú¶$e“$™L…$?GÌG~ÿVe_E5C8àC¢a+é ±n´Þ”ñvîùx.2®#å2û@¯Û#Ž—ßœ>ʵ¨¯ÌpÜÜÞ˜i¬
+>½Ÿ\>eŠz½¯Ár8’W®ˆÃcèl¨
+…Ø&’ÓíNãmw ™}žÑÌ$š ‰s. –$ý,¿„œÝ;6K°hº|Ø…F|^&ïƒJÕ4Vs÷^©R¸ýoÅ)0‚ ¢X8É„ÐI&Zþs™xÇÓ'y[Fñzóƒ>
+‡ý
+<ظ,áY~|OC¼'Å è'¤cxÚ½•51jªìŒ\°'ðx)åälpÅÌkßÁoÙŽ¿¸´è~¥¥¶ÐVÅT°…Y:´;Š~•íøx‰[ò¶d)털v/7$³5¦Þÿ*¨è9óá&AŸl_a~ï)L1M•Ø†ñc¥÷£³°ÍFÙ]YwÞ†o¤B±2nX ·_—FtI
+ckËf),€+–~”
+« f®Dú®†²F¥¹vfþâ˜ø–fšÔõ(M‚ÎK4Ni8Ê=R¡n~Lù…ë‹l@+rÐúT3|—Žñ¼^Ilš !z{¾Í¶<Ú P hê{£Ô3â_Ez–f«g¨?‚àDˆ•Wï!÷§‰~éU›Üp];²JвWò
+_?gÕEA¸û×nrY/ßOµýsç(±_>2ãlX~„¶óíì;OP”!™²ê…¢ÉE’ tͦè#ÛÒ“d_´íx"¤uŠCC;.3–©ÆÇ–Õò8@”éÊî”AÖ„Ìœv6AÑ>ØNC¤ò¬#/[äðË0]?(¤­Wå ¶,[»êb²'(覢ˆ-ÎR*I¨ø° ¸h‹pÄù„¿î%ç’}¥¿¡h˜3v©ÞëjŽ±²|bª”ŒöÂÎœ¶0%nY{FB00¥í
+÷q<'¡Úí05Ðø¬ðª4¥×ØÆe(W×W~È8q.‘š ùÉ`€±ùM¿­AÀËçŠ|µ«ŽP'ÙMOÄñ5>†‘¹û™ Š.ºÿóÈÇ(´Äç=Î-œOë†8£ ‚…õCZ­¥)H n(ÜsYs¼º=š;ƒˆ8³¨s—É–©  ‘¿¿´tCVÖ,s… ‰Î¸>ÿ"i6$í°PgÓl=û“j0ªŠd±i˜ÛYQx‰ÅwR –3dȧ’¬}t¹MY^´gŽ\¨þ
+rörSÍÙ”¤_éÂæƒÌ©Nq¬=¾oú—FØÏqÄiLÆÕN=Щ ÃÈØÁìóø½ôçôys`P¯ ½çiAŽBqƒsçlx]ô£’›\$nµÚÜ‹×< R*î•š0¶Ë©6?´wðóFh
+ÍÛ.ãõŠ÷AS$uˆÂ‘%spL‰M0}CèëÓÝÊëàßQó·Øaé
+ µnÇd¥<ýeËÅó.º±5H
+@¡¾@É9}:Åîl(ʽÿÉyZÞØØu¯#§täëu[>¡šy{dú‡«²]Šá§— ù­ïh w{QH~_äí#Cbëøn´{ö`ØÏ[cÍÅx|ç(›¤Éî*pÎ"lKLÛù–º€~_õ:Ûë›ý¤»5 ½Vê6Æ’Ë
+®vÉÆ>V-:’ ƒ÷ú×»CÝqêÉpufÚÙ÷ÒÞ·U5ZîSÁäÁÖÞè^Š!$"Ç^k^±KuÝ)o*#TF`}3ÛÉ.à´ç Ëb_Ä6{NÈØ©ö¹`æÀ-|
+éæÙ~{q~|0h¨Ê»G0¸/Êhš T‚u6þ„q —NÖ3ESŒóîn¿êkuëÓ)iu>*®ô5òýû^ˆäDh'ÏÑù¶C¥Äg®Ã¶'¬"b›rÕÁQ¨qźºÐ :) ³fã86 ÝKýωoéÙc
+”™6ªÑ‘fÓ Ø6¼W(SŠØï¥ÑJ]Å@”ÞàL?@ »U5«˜ôXÞñ§I¾ßωGñ‰6ì`éKbŠs#ƒR<ëü¡Uvsz KYå­»±!M¶{ú4ÑýyÜöKyÁÏ ǯÌ ¡ÞG~³ó̵P-’8¯tÌz
+]²Gúµˆ×)c%|Â
+cˆ¿ðÆÈʤ‘ŠšÙèu<ºÑ`,ÊÆPÝLNfu…‚^r9¦±ý€·5Š©JÊÏBuë9oI?°·¾±óÁÆÅ=ç굩'¼*Òզ՟Ę9уO±–ýÈ°ÝøÄ@ÎÅ´ÙÝã„þéa)§9ÜÍæÛôî"•ýù2}mÚÆѱGèÉI¢Wšóm+œ­gô?p½§YèÃÀŒ”z–¨ Ÿù¦µ@½}®
+¥Ð6õÿïˆßyéäé8ñ£BüäÈöæ:¾/‹NHûi: ›$j–ï† äVhðx[£´!Ž^9½ š˜ (ª!­„¹Ýiëµ=Óyî±q·LF!Ly,Ô5ˆÞ! äÔZcßL”Æo¾RÈnòä’‹wÁ‚›†¨†ólòe¥“Vo~úi ÂÆ»d\/ò5X~ISìÆ\¹c¡ßêÝŒÇj®Åí
+άÔÀp+ö£ðXRGæ'ÛåÂ>Ógkûg
+hD¯»“?ëgŠ(/º—Îóh¥r§5¾ÇnÉ)kè¦xØPÞOô¸o4žFÐç¤{QG¼ÝQÕ`ý„±Œ9L¿þ4µh“ëÎôú#ù&ækw¡lHSL
+X£8²ª³½žà‚ÀuŠk^=4ÒGD3¥”¸7¬¤V°É‘¼ŽõŸàšîÖS}Ð@î»DëhM´pš³ • zK'ÄèvÙ—"§Cã1_¨•ù?ƒ?Žà÷^ô±DÔŠ“_}ÛiZ"ÔÙÀSiÓS/¹_#÷*ö€LØ
+oÚzý"ÙÕ¼&§±Œ~æÊÌœr‚ŸdÆÿ )¾©‚= êÇ™aðZnM6þ…¢Z9ºP|eÇKºÜ6%Lòa~§t¬7d{tÏózÃjˆ"5¢ACÛdžïvQ“G–éBDüéÃþOد#’ éatYøk@{××ò5uÌwìLV1ß|d ]Öº Á÷güJ­Üã±.ÇCVRkuØK^Å®*Rð#`.äSªÝ×ЬK¡wg=`ªÎDåDÌ8¿ÙR„çMbÉ%]~Ÿü2óHnõ1xCmT2ÓhK„»CiçÅ–da=0EÓB8ÛI3°2ê¦íÚÖ‚M i˜PºmC–6èÅR…IDD½5¾ì¶2Åà8¦¸9l—•éÖæ9ñ\|ð |ÙG“Q©%Ÿˆzjë®ééÅc½ðíçg¢Ê ÍÓ ¶+gU ?ÔùÑò§CeWj"Æ^µ5lö·“Ïò2G’«÷“ü„²l{IüöÓ$ÑÄwË=02“ª!V…[æéöNI—„'ô‡™ï%È‘9i >4TIì©ê;†ÓHP´ò¢Õj
+ŽO«êvT:,˾¼Œq«ñq¥¿üä8“%È&©úá>vëâä\¤HtSÖg½Àá‘;”¡•®éÛО7ê¨âŸjjì¨äbz -_Í- ù æÍpÒ¬…:ÄFŽFkøZÆ®;¨û˜ñIâ
+ê^^â'd!ž Í'Ûéij}jª¹G+‰±ÔÄVn_tÀ7KR"S3¦N¦ž&>Ðþ„}6€Æˆ¨Ìå…~Æ=ÝÑ4!Pnï鬆‰4ÿÁmsÒ)€“uæQÒgáuÇâ!”1éÆ´±¾[Ü!S¯…Àn+‡U¼ÚüéB}úœ3 P5@[aÞi¸¢§fö‘96MWUäW‚ A‚™'¸lH‹­ŒÉkõ±«$½S_:Î#ûPbïŽlU‘SÅÇÏxDû?>ÀàÜß¾óâÑÃÊ+&aü yW³kóÑ8*úrcøÝ©¦|joÆÔBíÍ÷#údÕ©›«;‰<NçyyˆÔñDˉ´Ü/¯¿tª‘™‹ÀݯíË|Ãü0uN]då&tͬ1Ž¹ê&Æ4iµeËh)g\zkÛ0#÷&}8—dƒ£²öOh¨X²gç*ºÀix$Hê&ÃIñ¿
+Ï£ò¿—‰›±ubz§èU(“çÄc¸þˆü`þžj‚¤/Ͼçºrâ2UN»"´FõØ&ƒ0
+Ò:ˆÏî?X=Çý™ãMWFÕ G‹(í²F3ôÂD¹§Yq¦¶ ^Fc™ŽPl~ ÿ²ì<v?-ë³™¼T¢õ…_n·g)¡^]Å
+ù{GßlÇv¬GFñæçÇ:FP‘ÏCNu¡¸÷•ãp©À› ¤wà°÷Gõ ÛL>,½VA>,\ö-¿¿ž6L
+btþÖUŸ£Æél&/
+Oѱné¹ä¬ª{*Ç_ùÓ”Z·ËîÆ ŠRëÞȆf…Á%úõ ‡P“A7/BJ4Eã}²¯ž®îÚ- ¿TÖk¬öM¿ç]tóÀ¹¥«<ÆÔ ûÒÚ¤[úxÉÉØ=Yé=?„du½‡$­ÓÅÉÒ”î~‘èf„cøˆÀDÐIéí¦FønÒ,”LökỀVºjàü¦g`HL]ÇÕ±½˜‘Mp’·5U‡iUïn„²ž0‰“&HOà+²"²Ÿ›_Ï †üGOÏœ¤x¼
+9³ãÄà ÷ýâ×O–1q¹¡¸4IÆ-Ú§.>ì¬'<ÀRB Ó y• )³s‘pn8æ)NMvrœVáéºçn£ ;ÿ(Œ¨^„n”X\»2#~t=sÿXZGéŠGä´å+ì
+Ž”u1­Oì² |¢ ƒ¨":·qÊaøg×<qÃê‹úmï›Å
+ÓTÅóðû…ªQ¶’ÉŠ ¿'€±AòáiÒéKÖçI ™†H7F
+‚G£(U¢¼l“ûf°T
+‡©7¾aûºtD/4jí#vª=½•³øÁ¤ž ´N¨©Á¼—€Ç ¯ØœÄ@ÞÐE øªâ_Mª[Q „Dz/@T9æT©B^η£Ä$ȃ¿ÐBÌ@»9±Ÿ˜ç3—~£=²p3À ò
+>§&Ñ$:)†^£t4­¤¯´{Ц:R‚ÜÑ¥â(ϘšãˆI Û£‘CŒÌâÁ¡¦´Ýí W5eBµ ƒßª,†3©ÈÚ°ª_tGâ‘W^;Û·é–¬‡õ Å£¼ÊgÖ­0ƒ¬æa´r'LD[ 5~fѠӛߟwK O]Ä
+… ¨è;ðåIåOÑ.–$“aîQ†ŸºÑ}8“´´ÎÁ2œé§!8ˆ˜R¬ä ä úè‰ ÀKÕ¡†HªÇÀ¤ë÷-Ð-nXÊ!x!xyþ<,ò€™„ˆWl½êz8ô8x÷×n[Ä)Ú±ÑwxkÈ
+Ábé$š±ÇBÆ(0„=lv3ï§7Ï@ÅñpíܳµQŠÜ›ùI°ä˜Sðø–;‹ø}ÉÊ\ë8÷;?éq‡ÞÁ\ȗŶB2WyA¤ÑÍ[µÂC?"Ûdz¥R»–wGK/„Ô7F .|Çù®sæ§
+ÍŽ¦§«¤Üoj¯lQ†"9¿\©zóÕÍ÷9$« »9°G(·÷÷ƒ¨Avfg ³¹S†¿FP5ƒ*}¤qá¿ñ_Õû/1nÈrˆÙðýš¡î·xÙ•„n-Æåº,Eº9
+>ï}­”XQVÔ1³FrŽê)åãc±D¿¯ èGGÞŠð¸£uï?ÙÕ GíØHÒŽî&—Ψa3ë1>pÝNÒ–ü" d‡•ê&'Ú~ƪ% ao{j0Ók²…ç•\ý†Eñm’€Hu)õ°½‘8×ÕN\îù`‡ˆù+Npèp> ¨Hu0>³ÞÛÖ=ûúcL…Ú;'ôøÑ#u…KCÝ·e†ã”Ùgh0zÖBÒj9ÃIƵ±”G+gY )jêù†1‚J‰Ò¢æ¨‡à´˜Þœ_G·¶k^B°Ê¼ ï›qfêÝHÛ½‡ôl6Ÿ dËTƒ×õ# †DAmo¥õÃO4ïºûåæ5&‡7¾’άß²?[>K§ë×sóXƒÕq~æ'ʯ½
+)çÊzæ™Ðå]¤l4¤,
+>­Ëž}«·¢+à™
+ªå~¥úuWL¹ˆB–VJ~WOX È›¼ã4[âKñÁ¦ ÿ¿ÑÀçåÉYì—¡RãÖå¡ÉüÕ¤êb*ɘ*ú'¸‡øÛܣȔ¡R|ŒhÛûcíÛ!G¿`SâÌžx)­TƒB>  Öû/ËÑúÌ¢žlFZÉüñE63¬Ÿ´ARX‚ü’šîªëµþÞ
+ª¢0í¦ňÿ¦VmÄ<°4'À¾.¦Å áîåÖw¼'°ä¶ ¦¨ÿù 2Ñþë§ñ–^vÿ#tãk~åËl6ëJFh>Q['•8uÄiÂtþOçÏ…ÿ¨³ä/|¾Ãfæ Ai8Îú7©7Q¼FoâÙ¢¯š·¤on~ÊÚò•WN¾Ö…ñ®ÔÄ4bQ·#ÝG*þ“êÈí^™IÍI݆̿¥`–Ì :;²k±‚4¥([U”ÍLªµrnQA+{cä!¬,„0ý<€Œ­©%w„<µ€µ7F“øá tAve5}„̺ Aï€Å½Á.Áõxk´Z! ˆƒš,ÿïÒòf¾‚‚u
+!â¿.7ìY¾(:¿Dä?^åh>:+– ‰é´SOi‰i<'äpžˆ•?¥mµ³X2ŸÛ&¼HÖØ™^“$ù ’A–í“Vç%þÅ>Â6¤ÙäJãå´K*éSû½Wé1âqÙó©2¬ÛGoåÿêËÉ~X%ٞמ´n/–†Oí&Bþó‹0]æó„ ° {Ó³
+Ô‹Ï\ÅvŒ
+³=»E«¤’iÈõGÜÖç±GÕ=°ØÛˆò³˜s{7ˆXV»¢>þ¢«øyñ6øÃÔô‹Ø=Å„¿å÷êt”,ÇgnƒŽ‘P?û×ȱ*C`p£‚\u0³Üå ‰H…v‚p ¸ÍœJuV"'cȪûQ=ì;sðFK6 c0£
+þ§Ö Ž\ŽÉ˜g>‹£Ç#ÚÇ{d¡}ôDù¯Ü.K.JÚ5øf vîó)½”xj’Fœ4¡‚tÉ/6×w
+'ŽÌçC%eú“tüxrÞ”¦ÈevQjŽäÛö_Zo~ñˆ²É]~E/»ê2I鸞m^‚%wýƒÖi<~•›,wSgÔëq—ô>n…\èÊÒ&Kå³FüÙ o÷iU
+ÓJ}ßMÊÔŒyÁ<v½½þ˜mÅíp‘8`*ëöµåÕèE–€ºžµC¨.®Àèô#—NŒà9¦ÙhÒIQÎpǎƘ­Ï”z†jŠÎc»‡[zûÿÁ0Û'‡šòE±é&8^š¤' lÚ¸„Bg{æ«QÜ7 •¥nÖþ$»àˆ¦ß>åQþê‰ÆŽ5 ÿ›@ãÚ¸<4¬—Æl!ôÎHú
+@7S¹aѪ\¾‡.®3bce[[óÍd¼j6ÌÍ_õÓghi”Búª#-Úû CötêsÉðCësæ Q?âé òIxPÀzº³tBÉ'£gÆÇítóÅHå@­f÷ÃWõ…~Œ7döÚ1ëe¨5+Ö¸£éĺÄuºpͲUKmLù z8„i¤¯éŸ+åÌènø¶ïãÆûmƒûªÏ>wHCÜif1yy`/Ùufº˜Üµ «ÀÀñì°F‘³{Æ‹ÛUš{ý±D‰ÊX7²Ãsùãaà«‹¢
+?.OyápŠL3\A| 3ëT·¢µ%'ÔSÊÍ– —Wº…/ˆ’“Ù­:Jç7Dß‘p=:ƒTiV¯VÝ¡ûÅm¾†hת¡\+ýÄFè!}ÂãSPq(ªm/ro(˜O`Ÿ‡,ôʼ2
+OobfŽc“ÕA½´gð›úÓ^NUo¿ÁtÓ•Ñn¡(\%ç2Çœ*åó¦Î\þýç÷Û
+s:“ÕÀ«±Gfá¤Òƒ¼üçÞ÷&ªÎ1ê¬]0Ó#re&÷çk”?±. |·Ó-R±SßÿSZ~\o±‚¨Åt»Ì¬¼C¦Î¯:´sÌw šæ´¥ÁbÝäKë
+u§bý$(Ò´ »ëÍ2—׈U÷‰íñ4ÆÜ첯L’VqüÞ¿Úþt)vJfÇ֮藖‡d.;ñäôª·Wæß6Óp^w“ù#/ë5¨¬lÆË*ø)×T( €3DË„LÏð¶Y™õ¿ÞRÓ6)v³àµFi‹jõ$Ü— ø’¡ò2ºîpŒž&––uõó¹À’adñqd¼Yz(Õàn3ÇJ
+^qØË©ûè¼sºÔ·®½ üæÙV…A¦rCŠdt'G]~{5ô­€F}¦0õµ¹ª ö¾õx¯h‘žLï›AxºŽ¥Q–‰Ùº(¼ú¤˜¡8ÍZíF¿¿sríð!‚@i~E¤]¼ýž¬@XÊž ;eª‘9ã€÷$Þ‡<Ѹ¤Çs.qð³qÍÍÇB¢
+˜ºË¸´ô̧çB¤Æ¤»:¦á'㡵AäŸHeãÛηŠt ÷yCPlåa|Æ°y“7Lql+&<<ŸU‰h°` ÞKŒ0áðnȳl %wJ”ùÇ
+èSh(ÑOz’žè§Õ·êõ ™sÛˆ?›ñ1>Iò ?pP6<Í|»ïåh¬o ÜŸ9Íî`<5L~·¿T
+MâÉ`üØ5#,¸¢¨ŸM.(ÌÅ׶ƒRÊÌ¢×:w@m»i¥È±¹Üb€ã.*AÏr¯w²Ü¦0£šë\¾ðA·^Ñ:‡ýç÷ùYæFmyñ
+©0Ô`Àæ†p5ÙTJcj€M/Ö ì‹-Yq÷@4sj¹d€äƒ*i ?Xœ
+g8fQˆ;QV}2tÞq{·?³Áø$ˆÍ
+ô¢ƒ´åµ®µ[À›St‹a´à D&5uµL¼¹1ù­¹. a™ ƧIÃfnÜJï®ìRÅ#ƒñŠÆ?¢ûê{µ¬# qR€È3¢ƒ»C@ÝëÄÒVá?xô/¶ÒæÍ_¿¥^×âãý÷0B]z+Ù„8J(2ïv1dbƸz6¨ÐRÒäz—%êšíLƶq~‹yJ²Ûýß:‰dŒd9«ôló³pd|«4LsFñðˆÆkÖ‘“Ujôεz‚óðî šð€e›Ï§˜èÔªâ(Ô0}êñ ªxÎ b›û%´aš¤3œònA™UDU3UÉ¡e€¥nÿTåÄ]./óRŠãâ=24r÷lÖ s¯Ýø5áô(ÛçNpBvcHJ‚íw³ò·ü‹ó®‹o^œ‚$lœ·Ò3}‚aýè Üüìóûfú‚fóÓ³YŸc %þª3Y©4ô¥Æ89SñukXŸûW-x{/þ¼ÀKè¥îcŒ!­Ñ‚ ñ!ŸšÆØgÒÑ$@W $SíuQð—ŽLŽRº¦ºI
+™1ùœ2·8vAršHØéÚ ÝJÅTó5EnE~=‚F*¾‹²é%Dê!=;ziÙ£û®Ÿÿ“ih’Ó5iYÛaãï$ô£õå%À4¸¯ƒ ’VUÒø~=tÀÕ™ÉEŠôX:ü9#+dêôÆG4m䂳©"£r0‹™×ß#"ûõ˜uušm! æN¥%ºi˜0ŽKÈ1KŠ|¯ì; ÇežD/ꨡaÏàßQ|!̺ÓåhÛ!ß´Zsö/^du¡kÿ£°•|4ŠÎ¢G´ÊY ®È–J Ìa„.NÀKÓÐh½øÌxâ¯÷Ó•É©#Ç8àä[;w媻z§Peý¢X°ç³'•åÁÍKÓ÷ Óst©‡þáhÆO>Š¼6Š)HRÏZžWµ¥/–•du
+R4Øù¦6>zIü"»ÓMëÔ?Rù'…rÜ£¬Ù‚”OCXmÿ¤ŠðÏèP„gþØë<Þ( ƒ‡už  @Æý‘ÛE„a?¨×®-׉¹Y4i!ê:‹ã¶„Ûà(
+”þØbVJþpËws@Y±±6ߤþFæNÒ
+ùÅÒù1X¦rŽµRú (e/èÑ0q‘ÅRyÑ_É Pÿ0ˆwpV\ä@“³_hE1z.àˆˆ1ŸÝì+ÐÁfK.¸½ïÆ ªqU⛿#pÍ´¤f!îR;(‰ëq×ÊSú]m±L Ê¢dïv‘‘îES‰mlªÿËùGsM“_ÜÃÂß~ZÞKÿ(i‡&|Šê;u2dß*7è6ÍùàRïËÑ;Ÿ.ÕÕyf>/ªTØ8esÉq‚ö {Yì¹íMïûÌÿ öH˜°øŽê—®¡ñ}3ò4BEpÅv("ˆ$¥VíÕê¤êšVG‹ž™Å^!ÕÆSXô¡èœn94‹HVÒŒÞE>÷¤àœÊ¾04ŸTß‹´kØÈ2_å̠έ³­‹÷æ“f}Ƹq¸ØJ·±˜ð3ÆͺhÞÀ”¸?‘櫆¸ý´w h_ušŸ?K,Æ'Çy¯Ó”ÆÞãút1&|¶ìz–ÅëÁÌs0"É•YÖ’äDªƒ[ÛÙûËjk{²šÖ…Lµu°ˆÌ±;$ÃÝ q&ÿ!ªöVbGæ\¤’¢Šä³ ˜œßÌY©˜¡T\ âm"¹eð¬]V¯D‘¶ÄÛ7ßçéÚ‡Çbwð’¿¢˜¼K2ܨ ÖqéZjÀ!èRèø²{Õî¸(²º¤ÿkw—]l/6¯øŸOúÜ¿(àŸ¿€MRLO ¹Ó÷*›¢ö[™#凤«lÜ ðÕÿ™F:¨Pž~櫘´»ˆöyr2G§^^1ÃJc¯?¼ª…óõ{5¢¾&½”—£¹ë颴~îè„9ýàºçÒ"Sì ˆÄþ²w
+{<uYºHähÃ÷Çð‡žoª60Óæ·¾pÀ/*Ù„|ÒBóOOGúÁ„6(føµ4$› –;k“;Tdu¼ÿ‘Åô±Ã,—<Œ+ûýë<}“PÀºØ–¸ã7÷@¶ëÏ5›"ÂÞ'æ_Ö„ÉZ(Áê¬d$vˆá
+Z IKéjYÅøg²'#´"üï–µÇù;‘ÏÙÚ/]!¡Î·žÉúw@׶=.{µW
+„ûJq6… à)dñ{Pf&Ü3  oíZ™Ñ>3¿·üsgš8«².Ív¨‚_Y9Òá›j[ö¶g÷!*æ€2·,4ç
+Ìe¥­©Òã–Z +Šg®°M‘]­Á¸JZçóºÁè…£sî‚WJ)Þ1Mä5ð»Èr¸[ÁSÃx&p‘~¡ H`È$Óò{šðù4‘öÓéãF6\©­è×*dó6yLþjœ /0µ×T 
+\¸åÈÖ—9-Õ¸4b¼/ãâ¾×ùiBšSb¢¬‘;$J;, 37t‚ÙŒÀøã™ßÀTR‘ÛëAÒ9Ad*Ýa•–P
+Œ®04EN±¶‡™Ëoä/1hJû–®}Ç€HÎ"7=.aÈ‘ý%|‘{ÓÆt|kÊý )è$þ«ÙzYŽYì1óÚ(X÷fîûxçã4KtÛί¹ÔQ·º8ለ¨hÇ¡oà´0ÎAÛEóW’Üd¹4Ýl#p×w—A¨f'Æe().®¼…)º uv,8öød‰íxšxgPé⪄x†!JFQÑbéàM îáH˜ c,òpÏÝ
+m2¦o³­jÅUuæÁR¬Læ>ütÆæ!E6²ãÀ¡
+â‚’ââc\š¤ Pæ?T‚‰yH°Vßç?DôK»¿æÈbgš}zXœh'DÐØY•âøåXæЭ:CuWÐœY
+3/©aâM¦oÎ+ïÀ]a"ÙoÒ¦} -BV€7.¸£M—†³š–ÿë%`9îÉuü \ú²NgÓ5ñ¡¥M¥KÂob<Ö·*𜾪ú¥O¨UAHËm‡hÝ‘ÁõÄaÌê+`h7
+–„­¾þ@Ö¿³b`‰üÍ Ј´aw°Ò<ó¦w9*ˆ2xú<c—Ãè‚W b†‘ÏY¼°¦Í‰­uŠËÓ™gW•õ­ÇÎÈh·hßCº­magçð<N3å$÷ÆçÉ•ræ|ù^]isÁ®$ƒ'TظM¹Ù|¥×zl ú¯G%a­Öìc4 aX+a¹2•< ¸E#¡KÌÆ (ëËKŽ$x¢‚W¾DÆ‚*áO¶¶¿O–¼(¹ËŠÀ©†Ï.î î-m2ò_ËÝS|Áo¯i*\ Š‡Ó
+IH=;㟴\…yÀšz¶j¨ñݘ܆–¼ÛæÇÎõßd¼ªB([Î& †¿¨Å°è º&kã:¨ExÁL>NO{rø€î–#>žžê»®^àszkÇ©’‰T™N£žNæ­…‘ïNyfšßÆÐÇ»¡\àíÎ{# ¯O2FŠ%îDy^(”bnÏÝ]ÒOÝïå¿ù‰\‚|‡„Ûõ1ňÙTã|!u cWA¿ÉÖÈgê?t¦¼ÎOwy%,åú§Õ‹§}x|A0»ùën%88òzºì1åBƒX_=}ƒÐzb¨º¶¯¬H_ïƒ:kQR3\Õ\‘¢ê# غzˆ "æK18‚&µb¢ù®±bk „·î€p¡9•¶RñV6êÜÐÊ8B„é3¹c²˜Á7:åíS ¹¦Ñ{=Lì_jŸ“Ê]·ÑÍ7± ˆ}}¹RÇR?2ÀwÊ:Xƪ¾¾/©ÊðïÕe˜ôv]ì¡«RTËÀPY6•ç-Ø퇫ËØ`üõ6râØ++Ö¼:Bª€
+ßÑAž@±qßXÖE"Ò¯Gcr1ÜX±’i”€ÿÿ¯¶mcpžœ”é![ÀPsÂH¡?ËDíóߘ‰zqÂk'éê
+R¬ÿ\]ùò€ò¹^6 „vÞ‘w%¦åÏ8tëžPÒâ‡aÃ~BHJÍi2X¥?˜y 9+'bç‡pZ¶$M0Ø›ZRÊÞ˯Þ(z2.Rj×yš™ý’YÌ `Ÿ´¡¦Ë.ôWVN§LHø²…O›ñðzÛ¦gÝ÷ÃëúêçtÍhç6r?[ÈEÚ¦)q¢zÙâÞL DÎ’I.ï•ût„îA¶©Ý[¾§Éyj©‘ ÑÀ›LAë?à~'Ç.üQ‡|u¡ÐŒ2¯¦ÅÄjÚž_é׈`Ñ9§
+ÚEG[ýÖR¾áv„†õ/5*(?RÀ}hWÀœå®ôJœ?¿aR’Œb¡<Ø墽fí±ÓÞWj-ůë¼òëe†™iòe‰O  ™›.‡a={ÚÅwQ{Ä–ï9cËÖ®C‰õ|æü1Oó—yFXiLýýèK;¬ÕÔï›fa@Äý¬%ÂØi#3ÄŠwº€ï ž¶Õ ›tË¥ë»&
+ŠÜ“³ÔD+ÎIF„¯¼?hJ¥!^¨^¿D2«5´Û®ê~דӊ~£¡s¸·øm¯£xž(á¶{åÐÐí±ò>çÿµ)‘±rö§$}Ù÷Rê[=_UüÅËULX-Ÿk¢~:vh"¯‘f”´Ø¢Ñg¸ÿœss).ÃËPÜ,4Ûì‘ŽÂ/LIvUI9 $Ù~¾?éXŒ`DfÙü:xKÐh6*UÝÐ5›
+ûRÑëu!áÚɯ´:”¾mCKÕñ͇ykúÀ‡
+]¬ƪG·ÝÛ‘¥Øl£ö–"_éÅG® Æng"]ÃÛlØ®0NHƒƒ,«M¸¥pæÆî{2­wÇ·ËÈâБdH¼ŠüÀoh2yć˜$vNk}Lo–SD]™ø‚‹*u´t©aóÜâwN;…~o»ù·§šÑÈn=wK›û¶¶½U/ª
+h÷då¨Ðy`ÂÙIœÞ)‘ö0õ# <Ai’í®¨®çøêl­×¬PO¶¤÷¾L¦?üdí£f”‘Ô…âC“NR–¼FëÝëÃÈn”ŸÇ]ô¿êÅš,­XÆ–ËÜJ¤Ö@u=‚êÿ (]°»a$Uö™1‘XíŒSV2l<Áœd@JéS „/ª‚Ok¶îÅq/¸#cÿQú›öË3 œÍaZášFl_Á‹xTÖºôˬGRQ­#_‚K¾6+ÞOÉæ
+endstream
+endobj
+3192 0 obj
+<<
+/Type /FontDescriptor
+/FontName /PRLDDU+LMRoman9-Regular
+/Flags 4
+/FontBBox [-443 -292 1454 1128]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle 0
+/StemV 90
+/XHeight 431
+/CharSet (/A/B/E/F/G/H/I/L/M/O/P/S/T/W/X/Y/a/b/c/colon/comma/d/e/eight/endash/f/ff/fi/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/q/quotedblleft/quotedblright/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
+/FontFile 3191 0 R
+>>
+endobj
+3193 0 obj
+<<
+/Length1 2342
+/Length2 20111
+/Length3 0
+/Length 21536
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸eTœ[Ò6ŒCp n·àîîîиC qwwî.ÁÝ‚»„àÜ58|äÌ3sÎÌûû[,h®Ò«jWíû^MA¢¨B/dbod*no¢gf`âÈÊ)ÛÛ혙è¥@@Kc
+™r8@
+jŠ*Ô ïUœìÿ‹ˆŠªš@TH^U `ªNPSQýóWÕÔî¿9@^õ]ÿ'Ï»áw91U!U-E1fÆ?5
+ǞςGêŽ+ZWø¨Ü«ž¡ =î)r§=Óm0 \†Ž‚`–
+…Ly|zÀÛ¬j±Ôûlv«¸{ûfº?š9>Ú2@K'þ=€
+rí\Ø\U'8«%h<žj耩Š#¿¡þÄLÎ{¤2èbb³¾‰"ëZ‚3!‡zv¿ _”º…Ѹþ6ø çöÝD­q™Rî®4¶/Kˆ—Ì?Û¬&á‶¦X¬ùApzôZ°…Ê÷Pª›ü»®Óî±È0à3Þk¼±Â”yî £Jr«fƒ)¶Iý…áß1u È«øBzs—­‹üqŸó5>˜Œ@K?DbQñÐ,`ÔÞ]õD¸¤`E>â‡@
+`=ÈôF }Bô”Ç›l<É ¬“!¹þÆÀ—å·éB§yÒ¿-2"È}Øl›RX®pd›-Ū×I{O½4–Xs¼z ~[d·ÊΦÁDŽc43s8²AXbåÊÀµ^öTxŽVDÿWVãõãZðPBçÅ[üšQC†”²Á3³±ÁÄ«
+NZéôª¤q.úðHI½g,àä
+õë]]ÙBÐås
+—¸äc¯f깧ŠõÔ§Žo1ö ó*ÆZƒ°ÕùÝJŒ›nÁ^dY$øÒœŸ{qqM@mfPV ¼i³˜–`.dJ­®³Y3Ç8Œ°Ž_2ì¹¢››%VÞ±°F(bÍÏ1‘¨œ<‚·4 â3âƒÑ¦Ý«ƒ/.•áv˜çÝö ÌÔRÔDi=xñGƒÐõ¸ 6ÖK^¶è«/P¼8c|å`Wø°ª) 1.¥¾Ó1Óùî—T©¥ÿ2Ûš«®übb¨T¬Å$Ë 
+6$ƒÑìTz»¼õHÎu]ƒŸ–±4Vßu`z½`þ(Á’äÜ]9p¨Ýq³‹"
+ª®/vp¢³÷ûHä*ù¥ÏŒ^éh
+iþóµ/ÐOAHáî×dP"3?[9äãÒµqœ,{*·rx £àüi¸`åeg Rf*Bx“qŒ`îÄx±å”¤3EB³Â—$»X}[¹¾ª¼]Àè¶+äÙ%Å&Fzl’ïgï5¬/¤xE ù1µk$ã29Vâ$£:‡i”ªY
+‰qt,^`û©_VŒ…ǙŸŠ¥¨@Äu;#l£"27 ¬¬¾h«ùŠŒÝ,X„ª…FeõYXM¼n·Ê?Ðî¸Ì
+ï“™Ÿf‘dÔCIèÙwRï´’uÀ#”®|*f`:w­ó~`YªÜ]aë*Ѻ ©
+nô_ÁXÚÊ.Ä}²:}q‰Íf¢=z0‘v.È¡ŠK]£A–sìÓô´©¢>QärîéÂŽžTÕwyš9ÁÕ‹?“ùptèlBýQtªwá’¶á“xJ›µ³?ò)G{k[pF–·!} ©aeås|vNý÷Ù½à’´G×˯QqàÖF.¡sgÒMÒÅv^ž¾ÛûÃÔ€§o×ØÁì”rñ2"­*³'꡶·[:]­bºÛè¶òÖl©ÕjÁ:d«(G”åyQèÇÇJ‘ÊÂÆKð?])>[u,'Úãeû¯¿J?*É·ºoß¾¿®f|Ãy{Àù<£!Þ~„Ș±Ó¹Ì BÚ£ŒëHç\9s²–žpx?Å×J6/u$³|®Ä»4Do3WY òÄnÇ=O¶ª‰[ÖSÛžv4×XUÑÂ4ŒQ´QÞüœÀ^ãÀŠ©é
+Óå=Áá"k,òÙ^hŒ8÷áÐðç^Æ%kšçOÉÆ
+Hò;w•ÊÊ7ç–í¹OùZÉFÐW«,ê6gc]ü«ºM"ÕÈVo—[Lm¾ý$s
+iM97ßÙZ „IKÛš]ŒêVU²µ¼/Û߶]VÐ7ü/!—¿ÿr£gÄæM È ÎO~c,å[´5>|SÆÛ•ŠVUŸ©HÝÍ+^;q§#Kø†²zÐÊ_ÑIžÆ[îEòB$Úü}…5…ÄЂ
+þˆó^ÆD½ßá;©è'¢S¹6¨Aq Ø4!hˆ;Õ#aÝ8qÒ{<üBªCÞaGå@ÇöŠ7sª½¯æbNîWrí­iu[*¯úL30Ô ‡$NÿJYº2±À¡XÔûfÍ:ÕÛvtQ!Ílv'¸p‘b€@©áé{1˜“þÛÓ„Zò5R´¼’ØÅxU LÃÞõÇ2sLì“¡aù r£à„ró“.Á˜b¯ùé”ûšDYÍ7{fX·«µWÌ° f­Ê¯j„»?VüÄTgyQïÝDQ¨&pø¼ù˜ûÑEbd`r¡¶ÇlÏÙØB‚QŠñ_»Ëœ{óê^4ŒÇ?©²VÏL­Ýô3‰… W~ἈsɵüVYTž®¿š?²ñµ0¿Ð¾úáoo)Y£XƒÙòvªy¤ÉNúÔЊ†×«ÎþfO¥!TÈçzÛJ'EoÙî[-ò<ÒªŸ&1fÁ~ÎÇ*wš&±-´ß= 0‡øã…Âô…B䙉r¯‘蟣Ï›´‚Ã*ç¬`¡?`-,Åb†°‰Xpf_˜åsÃ×Â4ö$AiÍûó¹XÀ} x²½Û•Å,KètT 5ÂûeX`¬¿ò&©r› û­Ì$` mE†xoß R•Í¾Öîž­Á­zЛ´"bšO>âÏ is6ó-?­N¦ñÛîz²üîipwBvNÍU¶tUrÿÐ'ƒ¶v¥ÀË]Î%ûVºRÏ—!HžPX ýÌB#ö£ŸU‰h"úÔb}.º’àO.QÀ° Æ+–Xoƒ
+Š¸ã8#™:²ÄµV¤ËEUu¥#W«^?Ú«Ÿ×ä¹,ü}?Igî—ÁJ4ØoІ§âææÃ1'Ë…³øÁÖ2BoC^
+wÖ6«4‹„âfËܯzÖÿ2((ÎÙ$á¡L:§xãÿ¾êÜCËzñLüP+#Cï­ ß¿TT?Õø½­\C;EP—L˜Õ¼Ýi¸VÏÔøËZ8s
+]­ G <Y´Ë²sË\M×£iˆBCíx­O6îve`†?žÒÎd ŠU«²Æ`‰ð’ÌØq&Ðuµð€ó;Çü%«Ð7x«ˆù 0]jL™A¯w„Ü1b±˜£33Êw|)Õ(x´·ˆvß*¥U¨·k¾^½ \ÎèBN‰¾ì<OßHGH¨˜–
+‰
+agHQªψ©‰Ãª¡=D΂|hú¯*Jóƒ¸%6Ûâ`ôpê"s
+Ú¤=7¢Ê :vñ.Ó§ÓûWëPf³ *ôRF‡¿ÇH ¿R?§<Žp;ÈÎâ3¦TÓÌy{ª³d2 l±,äjá6fŠ«¤Õﲶ(³ÕŸ¨WK‰dZhùø~ÞϺÞ]ƒª}þ©Jåg/¾f‘'2¥LꀀáÉ,þ@;Åt‰ÖþÉÊ`×.kmkšÌ¹†Eœ²ÞeµŒëu’ž• ËΉ…4mÝJŸ¾—>±qÍ+}e9áä{0ãµlö8¡Ø:ý(ÛcžPù94GÒ¾Ò/ìij-ìäÇî–›}² ÜÈ–í\3ˆUB*£™ÓÄ •¯Ê¥…_Wòž^ >gÏ,ä»I%-Ñ·^WƒÇY+'ÚiÎÁ¬Õ—¸……•%2g98µ®ÐM–µË6y)mÙ)YUÔ¥_¾"|ž““ó'Û,> ¡”·¦øÎŒæ-¬b4%c³­¹h)•Ò3¾1˜˜Ñâ”»´¸õ=oâVÎÒg§ÅÝOUĬ¯$èƒà»¡_§?-ª ¡ogý:
+?#<Î,ê 1öÿRØ?Iê¹cW²EM0N?‘i"ü%±S¯à~8cÑ{[ic ›ÂÌ…}’:Ž2xë@¦ÊÒ¤–Ää¿ü+ÒœÅÆó!«êUôûŒ*×,¦刔ý[aùîô‚`V¦$ÁϾ)Á˜:Š‚ÎטMßBÅ1~vµµøߢ÷©\”LZÍÐ1ÝèddF§'Ý#
+<ÆÙ1[ƾ‹íM×6¤v=_Å?õ„-½ÊSIºyÓ|ùðÈz'Á–ã›Z™ÏÏvüno%¬Å­ Ú„›ìz@F­—žè&™ç ¸ GÈy,n©ÐE°7rÈë²Á\ZÈ-¾Ö,Ë©<Ò:³‰H>,Œª°=¨=GâÙ~¥{š4¹2§<K„¦½Öt¤ÖüŽ§yÙ¹ðôW§¯‰e‘5ça%tŠ¤NO+VFžýN¾CŒ—…B~̶U<5œò[¢XÅJÐcŽ´_ðª=l1!R¾‹7ŸÈr)¨F œKéeÚÚî©O˜°{ègã™ø47uÓq¡‰&OÚzÔ†ÚæA’õg4s¶$>|8.`¢àÁT:õ¥
+ d+: փ
+êb~üÜõ®E?“:3-¬¢_Ž‰=D=û;’-ѸcSë窋ÂéžHñ›ñ*3-Ï®Z9•J1ûP"k"%ø”oŽ¹¡új:z?¬¥æRåÒ9Xmð
+¥B%óº[µšY*ÏHÊ’&CRKê?!¸ÙÆkR /3ŽåýøzáP©S2'<§‡p® ÏFxr‚/Ÿ¶›Ò€a]ö*Æ*J*Ý\ÅÞŽ²ÿÑÔAW§ QJ*“Y´D}kÛ%;©€ö¾Åwkõ²_kgsk²:ìqÛ.s@º²´½)Tƒç-éÔ3
+/ìeHW¢w¥¤ùT# R`k·/dµEãí ª×€ÕKšæ­Ò$\#º—"v£ÿ¡-7ßl%žbÍÅDý¨Åt&¯®®7­àp2º‡¨wΕÜCÚ…Ž1õ²ª&j„K’3÷—¢îê\dö,Jðµÿ"û]ð¡MðñæË)š1îPLÏmÉ$Jý½S‘?S CYG‡EûùEc„Ä!î‚>i3x毑J cð3” ,<öÐQ¡ýô/Lm;
++¢;l`!7ì&©I{³9 +qìo¨.ðyŠÎYY—«lÏ ÚaøæSöPe (IPÄ·´íg+Á%7®X˜˜ÔÌÒôúìÈì´(bœå_ voF¨Ÿæw',hœ°#¯Ö-bQ+ýSðŒ.¶º[³‡ºu'|-9y…ïÒÿÞUçí( LJ¦„}±4—h.è—X´és²bÉ'Îi6ÌÒ†áºV™<òII']¬×žœÚ¯a*`$ã[ÝEòÞ®ûØ›‹îµp8½·üUzø„5]êþ3¥}i<íÝH–S[èo>ű]Å™
+’O«=[vÍÖO º>ж#™)„œõDèš“gBÈ•)‡¾~è©Ôv7H¿í4
+hH”Fž5°“œRlÜR—¼ºÓK/HÎa[Kgx1*UÄ{‡8㻜¿|˜콬WlÆ|ÑdJì„UËb­g\­a·?³Õ´kub¦ŠfÞˆ}YD¢!ëŠàZÂ"J9P
+ðgèy¹º*ù@‚…|‚”×¾ ŒG£=OÌçŒÂüq!ÊÁ«IüòC¾Ü
+Qé((?Ì„Í>ÖùÌ56îµáFåÉå†3›#X`ƒDuZ%XÚ¿L‡|ÄV+‰¡
+ †äMPH1eëŠàÑåÔ ƒÔ>sCè¦o
+†¨ˆÄ‘œ—É!J†.©5{7à;N•Á±Ã
+Ž>cøy6q‘ȇ­^ÄRqÖTxls‘^æë°’ÜTø¦ù'ë¬ÀϽa˜™.4\Gˆö†w·¯ÊÜj4ìC¬qŒÙ'9Hš~¯ÿ%yI2¾L—‡+òǽ|
+9qD59Ô:¹Gþ3øhR#Nì±pánȧLvÃá”qL³û¡€øÔ>‚…К³Jo«t!³¿–{ÁÕMlæ‚}N8‹ôl\Z`¥B%gskXn#bÿV–êNâ)LÌ}iQg[[ý0ÅHËêíÓ
+ Uz‰Qjf´=¤ê¿røvH|Ý §Ï¢.ê)è(`í@tßkÛMÙ8jIÜJÛ÷¨š+ß$õ è}#3e¥+ý‚'gÑ+88I†Š¹1«L¨Ä‰»H¶ldqØ;»öèý:/Fhñ6KýÕX«#f¹#•ñ醲ѷêG{â̧ªh<®±@ÝSèÇÀäÛijeX©¦WFá‘æ±ËtÝbaXc®%tæ-¢M]ÙÒÛ:¡9+/ÿʽíû •˜@ØY·˜DÛô%¿1÷§í ?_WížOk<e-’üë5I•ƒ©àM…àk9 %j%jÆZ¿åºJW\(M2¨å8ËŠÛœÏAýšV8ƒ;×ç·PKÆ鯞ä!e›Ì³6VÕïc°"¢ÁÏÃìtYgq
+|Ô .âÞÚhAjÝk¸à›m‘ö:)ŠîÝõ°ÝÌí6%þØ+¬Á0´YaØ/sÕ¸rT‚Ÿ˜á“åÄñ/;69ÈŽR—Qô îëžÁеlÂÄ0ì<
+Ç t†éàwÑE].‡2È2:–¾L±ÿ
+†ßnƒÑŠ˜àõÇ{Ʋ û×*¤ü®Dfƒª^Šã(ÙêTI¨Ú'!θ òCöOyÔØås^ |ð´G`mHfépòø¤|4;[?B”é;<£.ê®lä:0²`p<DõìVÏõoŒëEÕ]tgô8y|•Tm%
+µì'fÕݤ¬om ©lj¨¡6¾˜/I
+Þ¤Ór‹4­¹.ñ’ÛMòãØÐA”ðkö9¬"çdTvéúï'Jza ¥ÁÚ/_ej¡7Ý”ã³hÌ Š}ðcÓîRû}êˇZ²ÏZ·¦;6–
+9{ál³5(õöphÁžjK´‡f¼x¯rf©ÐŒaÒ$C9œxM¿x*Ø:¬5.(¤û‚“ú)Eû¿{Y @kð7‹•èjMQéÝùvSz¾ãäņ-Ƈ•È£`0F ãÄý+N¬‡ <8X©cr°vÕ÷à"VÇæöŒ¯Ç0|VÅTî‚ëØy{  "”cX-0 Å3âKÖ©¾ ¼uzà¹TH–zaÙVœ{Ê&ÖQw6…Ö³³)6”ªí¢W¡Eª¾Æ¥€ñ´Eõ‘0ï#MrÊ
+ýPmž,ÀÚë$ºÀÙŠ6̃¤D˜k¦øaë¥ËD³Â¢n0
+îÕ½VQĹ$ËL
+K¡4k=ÓÍÎù8×”w6ô9Ú×Hžó3¶÷œçÃíJ¢™Ò+˜ŠÎ
++1j¦ÜÎ ½‰È׈—”âIE+ðŠ·À7Bã}êzCtêuÈbMUäqd¥á¹û4x•Ïžg2—þ¿ã.Ñ2™e3v#¹ØF¡m›ÛÙ—‚U_í•FÂcº‰J<£È¼¢b†<^£ŠÌ³Ì6Îkái/Z÷î²~/¦ü¸?Ý?»ÿh<ܶq¨¥zEÃOÙ&­½H‘#~óÀ)<‹X]C4¨`öùAݹÁªŒ1¦9Ÿ–óF‹8z¸î×8®çÅY,W9ÿ[KðV¶ÎÐóq¾šíîâ1ŸÍÛ§Š€Ï>ï<xóÜ•¼(OÔGã÷u{†ÍUüżÀ¯ÿªrWšX£ÑnK}ÆÀ׌…Žû~,
+WÌQ{¼þ»±žé>N_GÝE—›í›6éÞˆ²²_7ÛÒb¼ÈÒ$‡t¸±Ð9JÏÊl±ÁÖÙÁúí¾B¸uýžRif—s
+ÐåtÁä§ïÄ@÷óÀd¦[w~ KìW[ñŠÆß"ÝšÑ<–¨H°òhƒ³aP
+Ošƒlï"«¥Ô™ÑX©XæÅyûd÷€ ¸¯Ai½Ù+j½xV{œ1fFÈ|Jx>_u*P”¹‰—¾  Ÿ>&€Rv$ŸG'Mè`—–WUZf;~;Q¿Ç2'0¢v"k'ØqäÞú :ôY‘mídZ (0ìµîå"éÙ$ŽâÅ —¢Á&»?1-¢¿¬Mcµ@~ 'ó7ë)ûæþáÃ\2ZN—#ÈŠ€§„W„šðÉMÍ7ãsò5bj×
+~dßôµ‚Ú×4£ÖP×ËÝ÷ÛJöߊ-t`­NË$—3½~,ö›~ìcÔ/´º§Ö¦?š¶„t_SsËSg–Š(Q<į„á-Fæ`ðv„êýš¡Å>gÇn¡n%ßâõ‹ÑxÂ2Dû
+|ÐO! Sîà¬ÇËJ¦ß¢ÃµµVNèÑæA][^Nïî1ÉÉa[ËBèMûù»Ç!ê´çƒMaÊWmãrÙ$¥úZìž¾¶‰üuæ²?}"z¨áPù3™Ÿ-6(Ä&¢mEIÖBÿbM•;Ò4ÙÎÕ˜Tý†‹“@£{Üÿ< ^h6+™àٟؗ„Y²M” ¹ãWð1Â{¬xêjy»ö©ÁÇϲvËhÕíPÀ¤·™9ÌÚósVpÀ™F©ékoáŒFj@ÓŽÚê÷ŒR+É,dIC›ÅØE?㤫r¢Ë€>;€:íáaIxЈ“5ÿÃÊKõžfq->Õ‰{µW–Ìæ󉢟ñ´K…E¨§ [ bìžQ…|ÜWIkýMR­2¾‡Ò¤_Ã#ߊ ó¤é·ä€&Ì_å0?QUN€‡$l¨l$·"‰‘!2–,(zËô¾ä+ƒÌó|æCuµòŸá(ìfŒÔU`]wfsû÷?µÉ SÀ)}½¦ú@2¶ï'H÷t_2U€9›Wû¨„ÝG\·ž¾FG #ƒ:W„é#„9ÉcÅÓ ,äKÚqƒæLe:iÆ‚•ð…íV)©õwžyjj{‘^iAò]õh¢’¬ÔÆÖOsÇG¹’|%*;)÷å ídž¥Cœù)emi5’¶\4úO­k=ÿþªšQ8LoÀz Yïc­½ÃEPQ‰p€8ϤAœÉB2BÀå:úÖq£@´S òäI#"w>” òÞ;°ˆŸŽ”eíRB|œä«{…ñصͪuR%û*©3î"‚(á9ãâ³r vŸÓøËJ–_DGR.ŽÒ¬Ì:Uu'ÇXäFêšú´yΤ( ªŠç2ßV
+¢Ð†È¢œú£Á£zrSÓNø$òšãÜw¤§(":n„ˆÕYôÂæ z^‰¼<˜ã:ÊÊVq=»d«"ä[ú8­Ñ™‘T£3áNqôÛon¬Ÿ_5í×{¡…í×Yqx\Æ"ÕThƒ©ê•gk;ä
+9øUë
+ZDÞ©æ»\ä­ËæÛÿÈ‚­úÓ˜3SF;lSzƒ65ÄRóÖ,8UxWg`¬$öcåB!9å³ â7éY¢ rí‰(E}ÄÓóM|ÒÌ<¾u:ŠGïKüç_jRêý­â?/Í‹|>2ñïYl[ bß%î/Æ™á4×£Þ–îÀŠX¢âÏض”Àûˆ?
+“+3{3Ò¯(g½æ[ßtt•"«¦ÇPUéT7 wV@ºþ‚F„Ff›ª¼da —È
+½Ò;…£Oó™Åù·˜’@“ª/ênON¶T¢xÝ–_÷
+Þ$.u¯dìFÏʨe%)p¯LÂÞʪ Œ|2´1±3,<ç4ü\I¸êÑT`ø©¼3ÅëÃQ·âÓ¬€"N°'£Õèf¡eF*¼óŽ£ «6§´1ê[syä6ýó$`Ý—j”Së4¼t^‹¡à©VÆÍùÀC½4ÎÝ‚þŒ^‰îÙE¡ª,—F~ý©×öGIIŸ–í¨Þ}N>ñ5€FJ:­ –,†¦ÛÕ°é8ð»õú$‰]fsžÁÇéÊÐíRLc“ÚJõgI{ðÔŠJ¦3 ÂVÇ<¾"BÒ¡¦ÓÂÄÄ98Ÿ.Ò4>µLEJbƒT“”oñú¢/nq6Å#¼ª 2Ö ñç~QÛ®èyÆßùäžá`û¥‘qXúü0{ØŒ+ð&éÝPÔɧTÖ¡¬ØÏëu”/4> Ú †è6W{ö2¸`¦Åü.zÒ¸¸’9ªÔ7+;ÄÄÓÃSž¬! Âa:‚)±¦Þb1–&b­•KÖø¨ šÒ\Œb$q9˜ZüRL‚¿l[b‘óÈDœ<(Õõöÿ‡xíÄDŸƒ(TŸ$HŒò‰ÄŸ¨gk\DDøÞy‚k?”Î* ò<ˆ4$Ê>ó©MŒdNÖ½fP39œpËÂï´$÷=·Q u
+Ý_:mÅ~²:ã˜ÌüÓ_ÏZå?&aQ«õ&ë¤9Ô65%Lÿ6È'_ÇõÆp6U͋Ȭ¢ú³Š[q> 
+)ÙïþKóÖeQÃ0Vn%Y4êæxûÑ´m×S”Àì3¦áuÑ`"b{‡^*Z
+DÚxIr ȇ ø+ î’–K¦<[‹ü¡ß©J³XÝ¡ˆî£>«[;­À¶ú6(±ëžªQ¸aîÉHXL>ê÷mt _ñEG0ú±ý9@‘uBjŒÃVoI+é>`nJƒ°öªÛ9ójȲQ)¼N1JۼΰòÃNpYÙk([â$ÂÆŒ…Ñ™àÿ0dÁ)Ôh@£q9ÄTæù}Cë‚~¥Sé …§m»-Òºf%œÉœ`IøfokÿrÓ…¥ùí!ü„Â`çÃwmÃq³—¾Ã>0„zO“†ˆ@„@¸ñÍì(Ÿl®òY®)4 ÑÃá!_I»ë•Óÿl[¢DW‹Íd5‰âó¤
+¼
+sÚA5ú!xäù-"ZñÚ»¤1Ä$”Yw\.PT \A³ƒÒgö@áð‹õOqöÝ]—éïòôËþ^ú~5Ý®jb*ë¨>G{
+{á9@¥ä+²!]Ì0F!ï™6´…º+câWgÃĆá
+Ší¨ é ä <?…rpKXB%ZmËÜ•5| º?5ï°øošJ8žÊ‹
+–²r)gBïÀèŠðœŽf¦ò~âWè4æeNÜ*Xbˆ;Xžã àúüÉ=áwñLüj
+?^š0<™¨vÏ8ª\qØ“þ2t@V“ó*$Wòkßâä!ÌÉõSO"¼/oºAØ%vÊžÀ¥ËŒÇ"Q³÷uÛÜãa pˆ¬oNÒ¼é¥Ü’òö*ïpw¸ú[ k¸óßQ\º]ÚZ¨÷陂O3¶ZÎvní'¡ŽQKÍ‹!]o@)tÄ«Û2e„“Ÿ3º}ðyÞçÝâ}:þ2ªS
+®?c’è_¨Jv•UÖë
+\ ¸Îøéò9Ü®ïë 0ÛóÕúköÚ2þÈïd©ŒÍ]gÜ—‰®DàÌü¨ÞźA
+L´2fXM±Óÿ¦|J54>#hiW(f`N˜Nú• z ^9#ù('S¸ÃÐm‡ËNÃö-_Ú2æ?òè-‘P•76@ÁŠ²æ{5Ák\5•½OjÀÛð'ÏwŽÞ,Ëj׎ÅD£ ǃFÕóôWQÎ%ÊMOR€mjj'$Pd´:äÛðÛÍŠ¶"Üu¿pVû
+£húEw/^påüWñDdœEN¼ß5$ˆF"6 ÉövyÒm)V(“A¼?ól–‰öãL…à·zÔaOë–0IæMDZÖÒMÃÌÍ°X®%½\–6kàe°°¾Ü‚Ÿ8 ¦Èø÷ \˜øùH³t]·|1ÞÄÙq^^ÿXÉ"=nàìæÑUÚÚÝ~¤ð8¨š £!Wçº`¹—J
+,žIøÃäД-y#&2ð"øÃ"W¸ñ]ôëHõ†„5ù¿=ŠØ‹™Ýù¢ÞŠ3Ɉo¿Û$DA†Ô¼'jp‚k5_ôóŒà€š)–Q6%:Þ'Š·gçöÄGrx¡J$ .‘küXPeöIþæ³s¿¶WêgsR8
+ƦÆI Í Ž›ˆZ03§Löõù©3ÿF
+ b7x>l
+Y`ɤ‡5:Úô½ýTé3*b¼/iNtÕº(ÄÛR‰næ}ǵ5ˆÐ©ZÒäñ¬ÃÿsÒ_ò"ˆn·yGŸ^ž¡Mz_mèaïÞK’.È_¨XSÒÌüç Âì¥íh2+ƹ††<[iÅq+Y¸H!G£w™Nƒ‰äœÐ0MääJø…[Ĺ×Þë5Z8™ûsäžb?-_],E@~8E #ì@§& $Q6Ø3K¼Á˜õ ÉË°9IRÝ­çœO=¼ ~‘ †9›jÞÒ£2-†§f' ÅP„:™ñ#ð8î±ìîâÆ’ûuÞÉoC ÈkŠeu¥!ó‡Íî-Þs@oÀ|9ÎnÚyŒï”&RX—<£Þï:ŒŽ¿Ãú_õŽê¾McIÌ°±’ûâjv--7ž,‹ôbäÚYš°I§|˜ ³"g®H§î+'ÂMÅr;( q¶ b„ƒ‰z®÷ºë…Nhyqõñía4˜!l÷p™å¸ïlööaŒ7]Ãêq
+ÄSU¤/Ô`ø§xÝ‹¶ àæ5±)4`¢O³$PJž‡Ã ^O}©&‡²ïo‘W÷D–¸´S©*£æ1·A!‡!l"äW@à×µ‰ï±g°¼ÛAÖGËì´Æõ»BND°ôû_>8EE9êžH¿HƒšâѸ¬¨nzFŽ*ÝKoû!bmuËjçPÍè3c3VG<^ž!…«V«¼»k”CxÁ8¥ŠDΓŽ7¥‚ }™°”xµÎK)†„ª­\+l†Æ¾þHFoVn)I_j0¥E!ºù׬t}׉¢¡R¶¿è·rœ0È3V„wÍÒg(e–) §4‚Ø—VŽÒ”WUêE0fNW.%K{ÁÆÓÀ'’ËD¢ ÙÈܶ%.FW˜ÂgÌ_­b\Ë®0³k"H,ùoEj",gÛÕÜ«½ÒØ2:‚ŠÈzÀß9øãæ}¢Z S#Å)+úDj"€:¨ ܲÿ R&ÁŠ¡Ûï”vH\åÿî9óé*,÷žŸ­dQS"óŒ-éC[ý¹ëJ‰ÛàÊ £c”À˜h?2Ü™ZQÀ¶qY`ZÑ°©§.Yݘ>>æsõ -ÍœJj‰HCkŠlóx*9¸"‡_“Êøu´Ñ)l¼Øë“ål5úLeÎù?Ã\Ι‰Ü…ÌLäK½¬½Â!Æ‚OÔ« É;Uõ/–ö°ioÈû±'ø³*ͯڔÀ&À¼`©aNâÿÚ A¨J|Š@†'¹i{ä÷–­ÏX¬EDÁg½Bb 1´ ”Ž˜=‰Ö9fü˜ÙÉóN:²oaÇlÙóÕÌCآϞ+⻊ޣº2Á¤~ý…Yò¥‘Ã:Ú†
+Ȫõ‚>㈷&¾¬äÎ/O•Ñßt
+À¬ -™OY\ÍEÒ“B±D–/‚‰“l>©LÀeöÓ¿ MFt» Dð}ïßÈèo#ó
+­Œ‡
+ªT¦Ïy½‹þIFšðAx–~
+endstream
+endobj
+3194 0 obj
+<<
+/Type /FontDescriptor
+/FontName /MYHRCL+LMRoman10-Italic
+/Flags 4
+/FontBBox [-458 -290 1386 1125]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle -14
+/StemV 56
+/XHeight 431
+/CharSet (/A/B/C/D/E/G/N/T/U/W/X/a/b/c/colon/comma/d/e/f/ff/fi/four/g/h/hyphen/i/j/k/l/m/n/o/one/p/parenleft/parenright/period/r/s/t/three/two/u/v/w/x/y)
+/FontFile 3193 0 R
+>>
+endobj
+3195 0 obj
+<<
+/Length1 1815
+/Length2 23802
+/Length3 0
+/Length 24883
+/Filter /FlateDecode
+>>
+stream
+xÚ´»uP[}Ó?Œ{"Å!Xqww×â^,8w+îîîîww·âîw(¼ôº½çùýùN&9Yßïîg÷LÎLȉ•é„ŒA†@q#=#7@VN dm`£le`ãÈÄH§4u²2°0Ó32²"“‹Ø ÍA6¢Ž@n
+óŸ© ƒ>N¦cåáeàòï3°qrpÿµùßÇ6Ù8˜;8:üË#`bnü›½Ãßž™ÛüÓ’—SV¡“ý
+-SÏéç}“†±íéBß(x §ÜKç~D£|²ÛXQ=†Õuè@Ä#ð!Ã/3•
+%2-=ðÕí·gÍOê[ïÄa­Š¤×³MHðšÖÁûµ?²Ÿzr&£ˆ¾æ©S´×յ£ùâKGM ¢z6¢+¥Tœ¡ œü€ºñÀeœ‹lí0[åm‰­ò?K*ÕcþÞö©;¼ìvœqð`ËèŠÕ©g›´ Îã•"Ã}àü.[6 @Ï·cñð·
+šõú<f=*Þ3~UªŠ’™k•dƤgØ#Fò՞Š¯¤¿·Ç– gOÁ<î¬îI#wmEr= «u¢GI®Ì£x†QÀì¶E¡㙑lÒP*ÎÚOUÎ×Y^F"~²WZ\•¬›Zð§J¶4Å4¡™™âV[@®PAm–¹¶ÉjC ›s'vtXðïqdÕOµ¿Â\K'&LFÉý磲¶æ7ˆë0û±÷ôü h™Ýé·BB˜>gË~Ï™–¬Õ‘ª B¤¯@&™ÿ F=sUc€Õh|‚wÀážA@<!IÃùBòt°ßxãøi9Šz&u.C­30$ɶ\û!‰ÞÉÄÐ-m› ºÿK£þù¶ÖkZmýg¥1¢®dÿüÙèªÁˆà+["ª¦'÷ÄþŽ_ö’Ø°L U•äYx…
+’Vibå1 fõ’ð!ã¼|Ã%]»/¬ý•^ÊXu´G/'9áÃt˜³Òñ$Q©„bú`À~
+ 1¼lÞ,äÂ!ó3„›'ˆjh‚ã.̼Ęû‹ê¦U@D· µägÎÔFÜ.ÁõÛG5åÊ$-ñ·§d÷2–ƒ²#ÑŠ—tü¬FÊ8½#UëO7Ë¡`/jw“ô4LˆBKTæ£Q_dÀ³ézÎ@‹ê !§üðaÒ'7“D=š${}~vq‘EbPV¿ ó†¥.šAÄORvÄ!>½u šºFrrL„•~\©ëf[+Ûõ~í, 3ĉñ~Íúg‚Á üî3Ù‘T§Ñ—Ì\àŠQƒÓs9¬»
+=ˆÛ»ôíÊx[B¢ÖLpRýÏ(²I1„FR?¶6»ùãHKìYr²âì+lP;CÃöb„}É£nx¹~/ÊiþI8H™.R„. ¬Z…únÂÍë hTšïE4¼vÅÁn°F8¾«6öлDd_ÕBJ¡9ïÛÍîôï°â KEŒQ3CÇeN«C “ÌU=]@Ðí‰ÍVøܼ¥½R‹ß<¨ZLªbhJ2€º¸#¼ .Έd#µ„Ç]´a¤]q\E’6|÷Ö£UN6,ÿ% ©1Gý ±¯÷~ƒæÐArEfÚˆªþªÜ×}÷ËÊ=¢,†+”qv3Ùê•ø’ŠÜ%µVnTV¡±¹°ê‚ûq.È
+ϨsyR•”ÊÁ$¶èy©”éÄD2Ï5~7¼ExÁ…è´G lO›r™/´3MµbHOâtÄÁø4v'­b} »¹ªu #”… ’"Èð%-.ÊIGWCÐC x‚™n°A®“ t;)æœÎ|%‘C ÅëÎá)
+çoyp)Ctd«¢nÚaÈxsþ¿(?½¨}s¾%ñýE·'ŒBÕ}Fä¼b¥
+—v³¬ÇEöªJ˜{rùh‹^-{(7­ÍlG¹‡Òʆ§g¥ŸE´h DÛ®sGļõ¨ón,Ï V÷9‚¼¶ðÈt|,äùªâÎöùºá[mÁ‚ñ§³» ;«1*xß>*ò„ùúïM[,‚4_Ývp ¬"`ÒÀw¶œZu‡0§YÒû>KÞÖT:Ê«jÿ®˜F2î]3-ÇqYÒ5)øE,²éŒu-N•úÍœ _s,(Pòß”ÊEË/v˜a+²àpágÀÌ€¾¢Jñ§Õé%ßy)”ÙRf›ÁID8Bc&ãÉîqháfö-b„áÂÙÕìHz[b:‘³óΨà¡Bnè$á¿/t_á!éøOåas¸ÿÎQž›ÀK$¹ÿ¢ªøc1ׯbÓ‹#ËûFiƒò%ú sœ²5ž­0þ³±A¢pœhÔìïce ‰KÚúAZ:¸/ñ»¹¥#A©ikQ)rî½l°!¦FKy²Uvü©Eƒá§1ÊJÌþz¬O7·U42ƒ/wê!í·G¬10$°0k¾ÆðÞÚ’¬(1·s7§Bįz™l§U¿›<vžx)
+Ú—Nù›ñOXY”×…¶Û"êÝùkøã¡ 39‹p”MnîxŠ¡ÉÍñsI]°Ï‚ÿT§wLÑ ÿ:d‚—ø áDp„»ßjrD€¥€0ygBËÉ9͉̥ô‹ŸX4íÁ2¤FLe‰e11Ž)µ»¬?ÑÖŸ'nÌž²œ6ÚlšÇDz{zÝrg»`PÙ²(±¡O9­†À?¨‰‡VÚLÛI$
+ÍðRÔ5f0g=o-r&@{?=b<&0±¾c¼%ß÷¬c$ MkcæÏx é¤ë§B´¯|R¾OÈ/:Ÿbë¶f›% •AÛ%hÚ×ötXôG áUÄnŸßH Á’›×ýygT[ì…º)U
+ .){"w‰C>ÌDM‡UebuwÖqÓ‰–7Ä•Ù€
+°ï¯ÈÇ¿¯>EF”-Êz˜­XOQ˜3»‰p&¸hÓ]=ÚÅÉîtKd• ÷q(Êâæ}bß9ê‘l¿¤R¸FåúÚ!çû#„ÃÄú‹æúѹÉ+ã2K<ëÉ#‹U–×KO}c\W"TrS¨qµû×תYŸm‡†Çaë3Elõò»”x+é÷| žp™×`f!épì•:¦©v³?$HK·2õ »§ð¥²-Ÿƒoæ!³ÄÌë±ycƒ’લL]üå^„7ã…}fc‚^æUÈ.Ç>M™-\]¤ut—â7«ofëxt2YÎöƒ–(¥QÕŽ%igtTe`Á _ô½kŒë㈹¿
+9ëq”¶ål´]~rÓ ¿»Ç=Hs„3FCÿÚI’‘€übàÄ9¢%i—g’F^mŸ¬¹î“·ÕÄÅÅX6o»JÒÓ£F‡Üâ“r+˜±ñõ|4Ž
+@ºE«Äz×hX?Dæu‹KðzAcÌXà(‘X| §½
+tú½þÖ¿]'¦,Ê¥w‘XÄÓ¾Œ}¥¹âý´É~È ¸,Gc¦½ŸõC’‰µ&Ä&P¹º±VÈA>ÛY$Ë)<ð,ÿ5¢ÑÉ-µ…(êƒÑ§Y=§Íhÿ.õÃóz@Úq“º6þv,7ñ%( âç´ùê•* äùZÎúÉÊ fMNà‡ˆíîä~téyü°qÐ\UìœEM”=FBÿogvQwô1‘F,^3þí{×Å. ’‡í§¯ñ°EÞ'*ÜK:¾Þ Á1ˆâ71F?²tû3K8Ê'˜£Õ,QJÝ ™ì×/ß0ŒÇšb¯{,ˆV[+T”¢Úµ“bécŸZ2¬ÙИYš.{]aú_Æ]h\N„ÝúäÆ8ª%JŽÞ:7Ö[Bæ)b2†{@³•_}~<fO\ɦ-Åj8áOzJg‚cÍœYðã[ŒÐ‰&«¸6Ì·ðƒ ËiŽÛé, 6ôÌ9iÔr~yÝ+çˆ;ìLûâ ‰@Å­$1Áy9¼9HšTòò„HÛ¦ÅV['ëâ­<÷ŽH4V¢ .Ÿ½ÓWwÕ-E€²
+K7úإͦ×|õ®5Ôʆ.㕾*ƒÿ÷L„!Nà/NÔü¢&šØµæJÁ¸X¢§ûøyÍ]±Ÿ9_á¹xÊ6ˆš¾ÿþm8SÜ»oFWü¥FË8Ü}þMïBg/Ž:<|¸ËÛ&ûÙð3Mc]¨®YÒ“ÌäãÖÁ®RÕÙÑ<¤L—²ttÆ'‘Ûô1|ž=( —/`¥¯¢«:KŠnT:§·¥zãó¸Üi)ôÚaƒÄ–è>F¿úy¤ùKN+—µäæsÁ›ÄxÝW¿¯é^\<ᢷ‘Éä¯'¢ÅßOD'eS±¨Üè1ªˆÐ3JyÓ#ÀŸïRà‰»à²8þ‘WwàˆS.¼œXÝY£(‹76ö¬üZÕHªD_ÄVÿ–ê²®ÝÁäÁ
+1ƒ?ÿ£³¢Ä~Æý¥«”Ïî&ŽX£Á!(º¹þ?„)Ãé-âÅÊžsÈ)e9áàÙ˜âeDæ²O3X©×÷õ¯PœŠò
+i©†É9>:5^*hÛ½õ~W«š’ÁÚ†T€ägÛó|®C´ õPªþ‡Þ¿+;¿©„DòlÓ“®&ä,ÛÀiOTô—l˜d KÎÅmÅaº¼È LßãnÑäq…?$çÊvÜ¿@>V¢Ñþ,E‘H;e®Ó:Ó2Gp±¡ ?_GXEu®cV’®þ<‘Vñ,ÆXCÞ@þÖ@¼e)M¿ú 0NxßÎZwLÈ×…ò¨X ïŸ~ïÍqÜkÐ
+ÊHz-þÅê‘ñ,‰r›sò°ÑÖá¬$#°°º/N©ü;£¦ËôÁÆ»Ô ´?ýÈq)Žq‰õ¹Þ¸œ´àm8!²çâ #ÎT­Ö¤æ›À2÷ïHš3nšÏ–¬JWÑ‘Ô3ªZ™]zjuÏçŒÜjkè~ß…?uã¨8º#}ÎîÓÑ2‡M–ὓ)k¤B›ªØ?Ÿ"÷ L/Q¥HÝCF¥ËR‚“·u >:°¿ R%ó}ß]°¹:µŽ~¾ÂŽËïHÆ©dÕ’À³»kÊ (^Z7ßÂwf/ÎBe° Iß}†”φøM仇®Jw§EªW|ÈyÜ5Ä5ÖxˆÕ^—gRÁ?²yO <ã7•½-™µ5Þž¬~æ­£”öhѦ 7¬TåÖ=¤icêOÄ‹ó3çO¼
+9óþ9:û·Ž2ʤšµ®µ¥–ŸZ‡²2í¥€öÊàû°W±¤•oÚòè» "Ìv›ä?Ëv¨“ ³TEëîp^8U ¾Cĉo{c$0¿lë;ßH2Ø­™¤ô5·4+W*ìuaöD‰¹3Qõ$8‚‚{1'íZ|ƒvíi(ÕQ•L¨L¾†šÐFjnÒ-„àíW›ò`±¿q¥¸˜ìnf}4Sg»¬)ðpºçëWÍdÎÇÔöò:]}2u˜}´®Fé(=|*7aÐÑ æÑ¢Ñ7ñ&ÿ‰´ÿ8ÕRM3JP©AôÕC‘H. ·7„7e%ü3µSyŒ§B¬Wˆ¹a ç±Rb}ròç^Ÿ3‘é©"2Ês]z¯9$îµrýJçƒñƒ}—È<é2M4)NªÒ mr¾•ÓIsÒÊ&ÒXl#Gw÷~÷LiÔ׊`lÐWÅÚçÞñó[_ªUËŠã©­VDå6uŸ3OÜ4Í¥…S»wÖk%.(]ßæ;  ¾¾jæ=B*6eÞlœZ'™b‚k~K"´zþíá°R°
+‘r
+Õ;âo÷V@Ë2†[ÙµD,W¢ ›y$C‰œ-—6 ^v~ƒ¯"±2wæ'D%.!ÏJ1ÚæXBatãâû3ïNóÓ­3ñãî<SqÜ4묌܃Ÿ^cSb£ XË`x­;FnCIB3j—P€ÈÆvû‚¢ªò¶/x´ÖlØÊ©(¿0ÙW;w*Çmr5“íT«96Të\>#»ÿ2¾È¨~¤l²f‰” “|`®¸Ð¥È§oTî lZbRâ(]c¯ˆÆí2,ŽÙ&ÍqñXìïÁÊl †Žnõ |/"=˜û9u;!0& vB §-åéWíhðÅÚ³“楋Ý埵£68ç`^©ÊGLJìïH‘ô¶>Iª‹Ÿú‚ɧ'Ó'ëBï‰>åÅz
+åPþÈ—.%K!ud=,I20êÐ(F õ †Hkê\¹·q…æÊ"¨¢´4\DðôƒØÙø=:ï¶Eä_B¡`ë3YÃñÀjÅgzÔÆâ'Ž¿è'Ôðã±ÊóP•®Ç§ôד¾OŠÈ°4/¤l<ÍÁI;°{‡/å®esMœëóF³Éz7uEC~QdT^¶ÎpàMfÖ3–:9íÔ?ÎNM¾BÎ`vÂ:Ä/y&5BH«7TF¥úîÚÂ+/ÄQÿªFIö\~µÐŽ= ›@ÏÁÆ\FþRí¾ilS:K•~ÕcÔý:ùÎÄÄ“gi0ÛšoëCÚŽàs£V]FE–^µð<‰3±PøÖæøùIýuÆ —=ÄЭ½>q7t`y”0,h9Ý=r1ߢo䓪Üm›´íåºsÿ¹×ìž8¹Y1Ä1›·º
+÷Ç­!WmÆ“ø¶«ÒO@íôñ8çÜcRÊ\fݹ—Rø
+Ó¢;ø oaÖ{“ƒIÞ 7„ªÖZHæ÷À•²‘
+ð$M.› qxýær<“šÌ;‡tiTaÉ&¬@8æú´Pà’Óô3 =–ŸÖÓSQ~êñÐÁJ¶ƒ”å4HÀ‰ìçæê`9_^Öþ‰·hªG —cjë„£&H$™±0U—æKDm‚¤ë­ Pfz—„§sý1¼“ñíÜ“¬Q˜Oè°¤™¾ô–A…³WþT¦B÷ þ¤¨]Ë·+½ÃÁm¾õ•–¿#¯TÎ}ÕjwS¥Y`lÅm}JÏ$ø³¨s·1%CB[¤ÀNÝZ2–C Ê¢ƒÁÆ—éôn8¸Kµ Fïƒâm÷Ø‹W`ãÏoõi
+¨Ö3nrâdz=p§KߢÅ1o埒ïØ.Üsçj
+µ/ä‚¿VØ^r×ÿ›¸•#+šJ«a;ÍDûÄ0J‡H6g,dPZ_ÎÒàøKû¸ÐðE-âôv¡é|Z¾="•Z(Ó«oB4¿¶¯©öLúÓ¯{sd™ùÚÖ5‚˜åïþÄ H¶DsT
+y™ñ§=#Y?W/Ñç6´ m*oÕ"x%ê˜þÂ&VŸûãNb«† ]vï-|ß ¨i½{mjßQ¦ømù<N0N®©Í™ÞÁ³ŸUlÈ.#š«Ÿhf3ŠŒéqïræ”.Ä‹Ó>áôÍR¶?gÇ¿¯5› mƒÜ âÐ/f43•)çà¸Uam®ï`vWùLófPr8ÕðäìdP0zY\Õy‹#TÅÎ9
+ñb™Ï$5N77W›‘ï(uUÒ6­qîwE ø5 מñGVÜLâ­j«ªeZfTÞ5n9I´Ž¼Ûk"ˆN”“¬Àîfýœ Èô£|'ŸÑJ=Eû`YY1pY
+~OÒЇ̧ëÏšê /yP$]~‰¡úÀ­UŽiv)N­Oâ)^„ìò÷5¤HíëÃié»ë×¢ ¯°¡¸ír%ìê3%Št8A_ÑÖ+^ï—JLZ·Tîο Sõ‚ÒC*°ìÊ•„7Vh_QSkG´¨ `60§ðälï’›aû-Gç¦m¤š3öfÒ6)ÚlûÜú=ˆ²ÈÝ#‘°Ó w‚£ Ï’¥^:V>GOYŠ$Ÿ8¡•È–Wø¤Ù¥³°TòtsÑ@#&
+vïáå¿6|akªÖyÔ_X¬5éÕ$þµ^É’BK*D QCô½eÔÌô`ùÔ¾Y¬e;ÜÜù`5óÖbgN$ñýŠI;­ºR)ôI|ò¶Ì£Ä,®©µ¾õgµ©_AFs0L
+Ipó>!Úe%Gx`´T좨±•õM–_Qu Pe*⨾ Ÿ CLçÛ¤š©e•ýžËWív>]Ø Ï¨ª¹]DÊݶʆ'~(F¼d´M7W” Ø¸‹G½¯çÜ*ÔSÀ«š8;s½þ™î[¦”À
+ ^L ÌÜwl«ÙÛ¼4 ðwW%‰Ì°8$ ¦îÝ¡“p„ªÃ ‚ÓŸýDåõ¶Øj¥`è0xÇp"¨°ñ—oè®y?ÅÜpoÌ2†D@GNü {<æ'»Ôª{(¨]^)ÅÁÌ·÷8ο,®7tÐì÷ßêX²=ä©]èOx±¹)¨ÎɪvÌ]wøecóÜw„]|Ù.·[KµÈ´ÕÆ-1wWDJ°eðCš4øÑøYC/ÌR9\A§q%;ÿ½M?íC5‡ÑpØ£žlæéÌœ:%šCˆn³E·Ÿ¥\¹ìNI VÆ2N"EÔ}½j}2e.õ…ÝWÎÇ:†\Kª+;ß‚W&ë¿á´íÔÁ"”+Ûm±ŒpßsùbZhf<Ö¿ìé—£ÚÖ“«k\êŒwPã¯]kœÏŽüÉf%Oe³. ƒ -âüÁÂC’†6lÞZ€,ëÿxêÒ9ÜFœ>Í\
+—"Ä¢RÑrê3ÓÚ"£Yt8íœ#
+…P›<›MA´õÊ^0ÂVÒ>1bFxåsþí¾À¥;¡ØH€ü3°bæù,Ò=h%N”<Tµ1„‚m\9ßz¡‰e<ºAàÈ!7}§ÞÔˆNí¢ßÃM>ÝÝ‹øÛ}·zx-4˜WýEŽIÆ‚špéaH®Ô7rµ2ü
+óAqŠiw옒„Ürå¨``¬aO
+²`ÈÓ¼qi,KÂXøÅ‘]„þˆÛ|¡èœhEΟ¬†¼>Nê+i¤žÐ¨ˆñïf`‡ž>nJw ý5òÕ Nš¶¢=gº‰5ªê‰ ó‚^ïêŒÌ£Ö¥ºZmJBöá@:‘[ø´³)µ9ÏCÄÞÃc:ÏÜ®]]qxh!(mÝ#çIKiÒÑÀ˜Ïj¥7AÇOÍÅþ¡[EöØÈWÇ …ûAöꈩ2ÁÖ{Û;MÂÃñ© <. a‘]ÝA4C©Z¡`'™ØkPÿþ½–ÕàåI߀å9AH€ñš‰ÿ¢àŽ¯“E­S$P¼ûÅr‘Õ2¦€+‰ûâÕÔñ~®)u ÉÂäòj@ó—ßúÑÆNléV±ÈÖË~?§¤îFë“rH›0¤pW¢X¿wšÈù›ƒ”CÊtŠIÅŠµçÉUÊÚYtkRYu¹üš–I JºW¬ç0Ûo~Ç» ªÍ ƒµúõ ¿`cƒ§ÂæöŽˆ6¬GLÀ·þßþB³¡ì‰ÚÇ-ün3Ë5Gblß
+GC–ñ_ývûJº‹6ml;3 ™"9ðzDXS‚<.‡ìïiGüsÚO€È§›tO–$Ÿœ Ò •Ù7»³¼¸ 4aw{'ÜžÀ0®æ§¬áˆ~Â}‚aÞWˆ5ù–ÑÁ¬OÏõëÕØ­º ªswú\1åsÎ^?{ߨšï=Ég{¥™%jëLhw!‡•/yÉña¼)63ÚHûnB`ÄdxSëô¶k*yy–®Ô,wÌ’˜d¥ª²+oZÊ;‰÷ô“,;/~"$¸ôaµ“DâIŽ 7¶ÅÌ . á"q…kKQu‹µCº*Ðœ!VcÐï¡„'Ùúö‡`—”ŸúDç™ÁÕŽíñ¡…spË5 â[u`.ªŠ˜ø ‘G:ûÕà™j
+ÝeÔ…En,rzí5ïæ&ñ_#¾°«dÄ$[GÃVsEm–aN8’ÑOŸïVð±å—=±F¡_™Ô¤ö·~¦U4My•Ð+¸N8 Hšf.£sEM èëqÂÙù¥ú“µM£ã1KÒ ò‘J›5½ÃhaŸ ÛØÕÉ:©z{ô™‡V-¾º°œoë¬è&Kñùicô¾¹ãÏ`>D_pÊÞÊ,ÙòSˆu¤²›%uþ˜ËG‰Èzÿš!¶ÅÖzV_:ªièòŒ¿jÚf¹™T—Í®¥š­Øf¶›¶BQ`Q?êÒ0Çó=×Ù`z¶)•ã9™`ê«37 8PM³èƒÈXÇt}ï³ÀP[¼q9Gû% ãhlûÐÕ}ýÌ,³—E†Æxx­ÆÓwۋȱåÚ¥<xö¨5ŸDÙ&ûg´/ßö‡‘¡»~êl„ÌšPzì’A²ã³Ës]s¸S ¿R%mp˜eâ•H>ý9Ô—÷’ŒšÂ¤1—âä¸kž–¸[´Ïugpó»þÚÖè-É® w(CE³7ïK5×ýÚÁâ©åÚÿ¾;ôú›4J†Ä×ϨiÞ¢ƒœÑN¸‰94kfÙÔ]!2Ì%4±
+ƒÍS*Zt•ª¤œÇ|ša#þOÞg5ጫÆË ±é!%w.Á
+!™?Gž‘+¢ßgBª™õ|ôYnz• Fæ3 ~ĽSH~¿úq»¿©ÈOÐ>+èÉ(±æ¶Œ±ÑQ?~Æ¿;Œ0m³ ]敤€I]ÈÛͯá*z‹2;u9UêQshÉndÛ
+¯Zãž°coû· :(Áû”¬È_¶çÜ‘Ox¯¸fe©’õ<õÛT?鱕¬ßjLkZËÉÒ§ª2‘™' ­õ=ßL÷– kbþðÁ\s>¯Dú
+u>ßW6£_a¿Gò¹¦â±)†¹Ï1wÞ*#²á™{PõmžðK(Ö7D£ ÅM’ÍÉFlݽU­ä“×pĘ҉6#L¸J¾E1-H8?½?0:à`gÖÎÈ·9T#A¡ö¿ô|ïä)Èo‘Bf~¸ -ÎZ2]ÓÝèZ4ƒYÂv¢â8þ¬a“ ”¸ú\ö—ˆDŸ¬H®QÌD˜Ápƒd{Rh˜°~PHÅßÊ{Z‰²üùj>@ošS)F¿Aè~ÇÖ‘¿²9ÚÝsÔ(â@X‰ÒùK4RoÍÖÌ™åLòìK¾ñN¢&ã>ѹéΗé®Í_OýDy¾ ÚŠ‰»j‚í[¨à‚^y/ J5?1ä6k1·lóQ?™ÏžËñ¬†úR¥•¡trLÎ2Hk9´'‘Ö‘’ä\àÂùó †-)´êhñK7¦ÎÍ54ÌånÛðÞ–ðÔ ÊkH7VŸ
+‡g6bnÓ¿´pâšç gŠËeSàS?¡óO*&v}‘YN?VÇŸWØæ­QcÞ1ø;EhíňŘ{¡IX¹øu}V/yît¢úb÷¹aþ´²iò¸}”ØŠ(b2Ûzßdò‚››ö)–;
+ŽAéóßwš8-üßaC›üN†…µ_åšíS²qcrïñªƒ:“WJ˜mjó~~à 9)wÚò1þaN¸2É*õà9?4oçŸC,ø[O+@UOzã­9ª+â‰÷±ë·¤âÄñZìŽÄ7ÖGÝ䮓V]$:»ùW¬Ñ1@Ø#g]úÏ»­ó9݉MÜmaŽX®6= MÆWìDítÖh>#£þŽùIí•#YîŠFøc€Ô–‚2–U@Ε6§¼4X…è&k¾ËÏg¥"¹ŽÑÅH$ÍÇXëY¬Ý>>IÛ8ÛêÍ@”O;ET§šI‘Äö}E
+YËRj¹‚’~yÉLµÁ` ŽsË5x
+ÎáÚ!¥ÜœO<TËãV;!¤-µó¥1 þ
+ÝìÛƒ+y_äñå3N
+›KðVõV@1ÌךOò낳!l¸7»‘^(ãõE•|›×wž¶’ˆž_iÕP*hºqríp\«
+Þ³£Í¿ÝB¹‰GQùûÑ+]VíÆŠž·•©%è§+¿ Ôü™Ü°‰<Å·¢Ù98YNÈïÊ!Ê“@«vH?цú=¸ýµ¹ÂȘq>éо–õØ´ÄÓi½fÊš«:ú먃O®.ÆŒ+}ö¡V,FˆÁÏž[ûËó ©Fò¾WvÑ#VÇõŒèÙÐÛE‰P…˜íÚ>ên¦UÿjÒvÃú=
+ù3Æܯ¸`Iå@ßZ:ã¨ÂÒýÚâÚ0V͸êT[ãÓÇ“˜Ø\›4H40çh_g¹„·0GдÜÕ÷dn¥`}ôᓲ†'0ÊÔL–ƒÈ°-E7‚#“bY:ãêiÊÀŸšvÁÌí*-?V<‰”¸°dÐï…Ír£¢\ÞA.zSëìUÒLlKI•™l’pãE3¼b½áau%)™ªKv8h‘*Ayõ¡È”àa­N\¦¦¶~ªÛñ$Úƒ`ßÆ Œ
+৉Œ0ô A~wûVJŸ^¤GÊúÕ7îúAЮŒ‰øíŠeµ^Ô±›„¢éùËaŸ݉dr‚÷Ä!4©O¥æ«rºÆ+;ÆwààJ—ÐóP/ñ¼­÷ßvI=ìê_ |FÈHT‹[ƒ—"ó¢ ö?Yö¡nhÍ·æ/MP¾2†GåöµÑ›?ÂAÏ­ Ùȯ‡@]¢£Ì<ÖŽe<ΊÛI¬¹‘TM§ù¶kbŸcƒ¶RjI4ô…_NÀMœyh«.ÁÐ-—V§Šã…Ö×`dl=Tuõƒ'Á‘nEÀëŠ÷*“S?øêÁ.C)±‚(é&kºˆS`o’sÓß[Å!®'G‘ùÆÛÕy^8ñ£ßêþþÏ›_BÔ¬kiËÑE¬„húÐa+NÛL@Jã4–Ê3lH£öU4[ŠÀH7 hêÍ07ë™ÇÄ‘§¶Ýðl’éSh†óNàðÖìºAñUÝiØF whIš
+ÊŽWhºBNÐœ¼”zPnÂEs’P«×úN’Â]ñ|Ô ÛÖ” (ÈÍ::I<1»ˆÀå=(t.ÿmÿÊ$äˆçÙunóFmŠh~ž^çd·-ͤ2«-ffÔ£Y0EcÖN
+÷ßeÃí×ÆöÀv!Á>÷m ÑK~+õwª®oñeð¢€Xe£ƒs¥8fýŒGosÐCò/De)g6nЃ¬0ø9±nAåiT±C¼Ûv] ³›îûò5R…›ò˜ßÎà’|`õ%Jã»ä¢Zæ@IeÏ5+dì÷¯é¤DºéD›ž5¬Ä·ÆY™c]â¡{¥¾VŒHÆ÷B¦äÒ‡½h8-"AqàC:†­M¬ßè—juŽX…ÛN‡×®âGù÷Y4)h£¾ÂÁ ÓŽ„¶ò£·htojUÇÞ}J³ÒëøE/gC+‘>2d ŽOÂëÖ 60ÊVÐØ‹‰z4©â›Ž7ë‹
+nõ‡
+ü4×à϶.Àۗχíª|æVÂÇ‹+Ò»uܱ?‡`NœlX&Wµ©R#ÃHdÝžMr5˜\mÃ$s£Òö áªÄsÈ°¨_†È¥mâl¿éœ5‹»ˆ‡K›ï˜K NC¹)Œç¬Tv/n¶>kŽìjL!?¥ë0û\ÌN½ï,þVfa†Š)·oòr<ëD5òè?äÅÁß°iú* ›G×@5ŠÛ-z„z9Ñ$îVKkgvÇ87BùŽ´y ® ýCIsw^wAô]1ü‘ ¡U õÏzmÞ¼\ƒ"C0vh8oø^ÌÑsï;X©!Òˆ(o0ObŠð7ÜzÊêª\,\zàñÑÆ0u±‹iÄtOí2<‚Œˆ‰üe­× @K]$Z¨üTÖ6>×ÄÍ¢‹ö¢ ®N)Ñ4ó7Pºr1ÁnÒ>írë Ï„;ß —â¬þÿkã»ã`
+ó3}gê²Éë}Å\N¨2šÇÈ*DêÚÅklˆ?ÈMÞÄ•°¿p#-÷¨ilÉuÓ¶,³c,4HªÖ7øPí£Óx´®Ö^…pQ£EÖc}*E<Ï?Àõ¾´dõkÒ“vß,â" ’8íÄXHîR÷b&[8†2QÆ.“é‹Ü;U)ªWFìq?Þ&z?±Ä*U&3ÏAÝpWi–ùŠ\.: ‹ÓÍV4ÍÿÎÑòv˜åÆUð᲌‚g°N8¼5)¯WËI²Ef uS”MÉù´ÙÎ!úr$³k΢ðÔ“·ýIiÖÚI«_LŸÀ;»ÚÂÒ¬ Ÿ|ì¿#Qv6!…Š _ÌïÇÄgÌ™^ ˆŸ/ ™2A+øfP‡.ÄÿŠ4é?m+&xjqÅ øâ±{¼C¢’høŒ—Ô›ô¶RG[bsXÚRüH$¾– …—ÛÓôNÜm$ìQ¢+¿®Õ·æ8á€@h0?ÿ ¤|¹.ìÔåîÝŠ|^$ÅkK ý[§05;”שW1åÑ0BJØ@£»âJŠêK£ áÅ—ØTX±|¸RËCD
+³°²ŽËç±v’Ä 5)ß ªâ÷
+”·M$
+!¹›rSRÕFF©ÊÁ;Ñ(0ÇR”JQƒÜ l«$À¥í¡¬#2˜àSФg”3߃¤èAˆIÖË~þBP±ºÑ0#±­×_½Y¬»¨2ˆC'Ó'ßËÙÝv!Áopœ?¨D©ìÐáóAœ1|OCä"¸ž½)vLj“!Ö^H˜¤Éîu» 
+Ž{úܳxBS¯-½Í¶SL½f6¹tI exª]îžkÁóbÈŸÚ ec ¥ÌŒ¨©ÓÖh,×úèÉíUØŽ8Êà“u‰lä ÈR™†âhXÍcmñ91s®ÚÜšˆö_ÁÖ7 ÀwWÌŸ Ô0eÉ.0"S’ô LÀ 1Šàyù¡4#\»´#Ó·1ªß]Î-Z
+ñ}|©j_
+pDðΠO&3Ï·“ádg8ÄËø«ýÔ|†L=œØq+¾‚‡ÄéPÍþ¹ë*žS¾3ýFJK¤¹?«+¨Aç<·{ý©[õ¶”Ð\£©õ!ÌÃG¿°š3†øì*·Èi¸ö>t•œï¶YfÈòÀ0Á…äÇð§$ðø{'{ѸuÔPç1D£…;“nD–òÇê;’xB 9¬þ YktµRê½·½­òƒš²oMý„¶dSmo n+ýÁ°øWì_S»¨±¼
+^Bö>’<Ÿ¹™\g¨rŸnP‘E«£¢ÏîèFÁAm›Ê.õÐâíëáý™ZòíoïæŸÈF üâgWIJ|jý‰+8öÏ•mÕâ"š¨°öµÑ¬òÜÿÚé·*¼,Ý+û0È =«‘¼"Åÿß^Ôfç‰t‘apü01¯#c7–ûõ£V9@‡Ð;Ñ‹/T1}?L0“Š8z|)ŠeU/áŸÍ·€Ô)¾›Ç=|Šf’P¢öÏx¦È™|Èw.¿žT¿6í¬(¯$·îÖk«´Mïäã2½‹_ON.²bS,§j‚ãèë{³/²è Üüƒòj‰vå¼&¿
+ dñ ¦Èx%Ä$j.\0g®©ÉãŸO~üv¤ø{ìÿ’´!5ÆÉEÙÁr‡±ûÇ·ñ†»ïÉšlzƒÃ
+ˆjÖ|ì~mUdpÕ5
+è‹ý3™ÖÀöÕó_°ÍKjäO–’5ÚwfI´;ºA¬²IzUlÑØÔ¨•“Z í¶¤KãÒx²y4ÝZ¤ ù¬®bjíFç¸Ë”n†)_bÃhŸâíƒ-‰LÀº•˜ž9A“J;~ò?Q9L×á/ö#QR“îiUö¡3$ßœ”3j¸åržÆpîóZ°Ÿ"eáq¼@ßØÅט¥±´h¾Uh=O\³{´S0iÖý<Šx;êSW³+á¢Ýš ô{³áÊJ«8W³£vÓD'òA»$p>õÁè4sæ+¥âÀ'[cÙ-Íá¸nÊ—ý¦Æ¥°k¸|&
+­¿–ÖTÓ˜¯­a=ŒKzÜ3?Èî4å=Ôµ± >ñ™ ×)UÉõ¨®š€çÌyæþ€ßQN‡ôñ´ôW•~‰I6²ã0äœXøðWóîX;‘ç<ø€H˜¦ësôÏOQR«ól9¨ÁÐPQÌÓôꃕ¶¬O<t£‰
+LUØÕÒgìŸ#~ÔÃ_ ø–ÁýKÏ™R‰/äØ"u½û>ÔÒ„ÓCø¨@Œ—„‡«ð˜Ÿ–¯ÿ¤‰žgÏ~Çèè>i‘±»*d~IÉJRiƒ¤‰q$ ,K¢?H*㼌; õ¹øá†ß±¨1îØI—'T†Ù}΀ñ“Ä÷md
+Ø%ùØ9.(ÀE>u¼”3Àa•ô3g×54z:,ïÏ m¨c5NjE|:oq3…²ñ>¸¦ý#xIùW·òZKDÄUƒI‰@ØN
+7)ìSÿãbº˜£Nw8YAn½‚vpaظJY¥è €~^ŒZÙ¾¤QšW±(B$¢%°§øQìMÄ!m*ƨziZ:_Ëo†<[ŸÖ‹Me½óªã˜}“v1˜V
+E}x
+—ÃïsT­ s‘+ŸºùB¦ŸÉ4C—
+Z÷úr—PŠ~ðí¼Gßtc‰¿ðýËûÃi”-e5Ãú>U½ +ôç>ÆŸÉ‚ß³à/zÿ˜“Í®­D;u$táL£ÛT‹]Êk¯RI_=ˆPž.àŽËC𮨽 §¨LæCþ+@o‚Î.`Q+´äWO½/¶´ À—›ç>ÅïXŒ»lm&¹«èì"©öxØ0¼^Ö³],³‰ ,ÐO:xnê¢#¯×¢ÈeLêæð¤D¿áÃÓÜsÇ\vÜ÷ðËn!.FXàÓÜ‘Öˆ? ?ø ”Ù8dRsx²àtE¾ G…â‡.÷Æé΀¹Û߈ÿEl®ÑJ`b¶ë€_…‡Ð¿1A™wW<Ǹãוˆ¨+ê)%ñ—¿!$Ž`ì-ž¥¡†õSèHSñiÔ[¸ZñWÅIL7…¼±žfÉ Ä²˜éÓ¥•×@&ª¹Ø¿Æ ÃÄßñ‹^dDìvºªaŒÊM—ˆ{싺Xn×ÉÜ3ðÖFÖ¬%ˆ¥ ¬Ù=8›Ç¬*iÔƒÝy@:¤±òD~_Â3Nƒþ°‚WØÙð±Á‘]M/k~pVæ)m^ÿŒ‹xž'î3=Ïin6Áë,a&ÙÁ– ±y ‹«¶0_…õ‰¤Ë#–áZFx†kLäŸÏ¼Ã¦Ñì<ÐCQƒî+k`ÚYš¿3pfÏÑâ"Q ‰Túó0íÃp2u<l/˜†§š€<²vç79¬yͽ¬»K>µØÕ ï Ñú»Ë ¤³
+?P¡Œ Î¥€ïi™4£¹CÚöKè8§â+ø¦•…Ÿþ½iŒ:Þo`‹iÿÓ{MY:=‰CãÉBMX4if Ÿ2÷ÊŠõ­Œù38Ú\8¶°á/S÷ùæÊÅ=~Â(»µxŠóZWÉ×|n8Ò!.ÔÙiñ{'¤SÆ[mZ“eyMVßêt,E/dU‚.ù¨+¶³Ìt¸rÛ‰_êqW¤jŸj×ÛPä—çF©p ¹iwÔÅ0ìMÎÇ
+æåï.M9®âõ‰Ú‚Ü+Œ8Ú¦Ž¶:üäõç`mr‹ßÄBÙ°¾Ò,ýy™e‹ÜÐ0êûö|B@ò=åÇöZïEumv³‚’Vóûc 0‡aï<–õéèŽjÄV88ýÒÖkÀÒ>Á›p‰·7;âýB&Ù"׿CÚ˜‰¼wuLv=Õ3Ž$~ˆW»ú—‘N¹œêçÖ¥Ë/â\MkÍÎÐ6L£ÝÆCÓ<Y®–Ÿ´÷\fÿøÓ½¢}MAÇÑhÁ´,p‘|kÝhî¤ñó'D²!·¤ëU«fWÿ{÷e5öóÅêFu˜ÞjØÇQÒ(\8¬¸I¹÷€áV·¤qǼ;Bæô.x–#Ä{@ñ\éÅôî(<%)ÿ(‹¶hwξL¦|tÎÏ–1©Ü—ëÆN” 2žhÄ¿U'Äî‚áÐèïÙý—t6ð߇H]ÏØ~0ÿ²QGà(ižžU¹*æLoyxÖŽo}¿bÛv{?©ëUÑ岓ÓI¼)wÆ.-Âæ³K6»ü.iÉõÓ0°LoÜË €ýËJKÀ<ÑZå/Ë…^ O®-ÀïËX0Š`š—#Ù¨ÀïÕËÁãœ÷9ZÇGUhY¢‚Ð<õ¢žÐû.ývCÄO¥ëãT$õI*‡x??ÈçèÜN_ŸÉÒ‹DaŒ#^ydŒø«}·Ðèóƒêµ*š²íP&ŽG{žô;A'Zì¯çRH‰R9„™•ÚƳ$¢ÇçJăv
+e;–VÝ;ÏüÛòyù<V›S¾#aêA‘ñÀav?TˆÃ<¡„LþW®¸¢°ó_£[W¿öY;Šºrù3|Åp¶uV
+÷1HºÆ’œtÃɆãî¹jÖn\Û@~“¿b÷"ùEì|9¥Ô¨ h¼rhâ_Î39`,: ¾*Ù‘3ôÍI·¡ùKc8`XMå >[D6ÓÀ÷™ô¦µ¹÷Ãc¬±¢Áê
+D½·R{¿lÉDHh-¤´Ùm³µL™bnyË4J«_L“·)ùg2œO°§‡Òîˆ/1Þj¿Ï\€5“ª)fP` á#áÂg+nÅÜê÷*£ãÖ–å#È» ÚæD?úeUi¤ïÀ°‡¿UÑ']¡ÅuÔ³´/qHIK\RX 0§8î· üˆ“éÁñ‚BâÐWI=·¯¤')tÉŽ¶ÞשÏS}q°´v¾ŸWõNV`Tüú§Æmw0àn£Y
+åßbœÏ'2›­ÕïhË37‘ ㈤y€GÒøzÌ#äÍ~ãxý²‡y‘cšªËªÛ7¸—ؼ’œdÒ½3ã¼ã'fœIŽò6Ýûïfª#ð
+Í6_Ï—Ä}Øß85ŠÏ÷ëÅò=­•êª‰Gf!Žúš Ýc´@y÷Û(6\%gš÷d,Bÿ%®û]/[jÆìÕ镘âò‘|úkéèF
+
+tÒvdô
+Z°–ÜŠb“ÁˆSW#O«CCìÄ,´MSíåsêA— y®%«+Ę®¡ä¡÷¹ˆ0rŽ¡oà,é%dK6­%3¼ñx&­‘ôBX±Üß$eûß‹ÈoÙuSzûëK›«ÙFœϲP"XQHoª]jåZ®X{7“"µ*_-G'Ý
+ îÄ‘v­¶Ù/éåÙl$‰/…'Ò —¾tRʶô±Å{#þ”¤WZPíb¶¶íÙÉ}dé’\À¸.Dh˜®i^r6±Z·ùuÈŸû{&Rij2ˆV
+͹¬gûn ž6›·Ó
+Hs×t?I•ö²ºÃ£¢©¤‚Æœ³Kå„ùšKUúd$AGÊɇv}ýò¡y%(|j¸µÅ÷ɯ×$|¨;¡åbº 6Þ'ß"ø“Qô¾d€ ”DA‹ÎÀø‘V÷.Ïèvžaðš;}Ÿ˜©Öeoa<·gÐ3¾Žý6öšÝÄú]x.íR”u‘ÚzšÀeÑw[¸5¼þ¥ØÒ)ñ
+ƾåè(ӫĘ{'
+endstream
+endobj
+3196 0 obj
+<<
+/Type /FontDescriptor
+/FontName /PEMYSJ+LMRomanSlant10-Regular
+/Flags 4
+/FontBBox [-457 -290 1446 1127]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle -9
+/StemV 89
+/XHeight 431
+/CharSet (/A/a/e/exclam/i/l/parenleft/parenright/u)
+/FontFile 3195 0 R
+>>
+endobj
+3197 0 obj
+<<
+/Length1 1887
+/Length2 24779
+/Length3 0
+/Length 25954
+/Filter /FlateDecode
+>>
+stream
+xÚ´zsxœÝ×nl›ÍĶmÛhãLlÛ¶m4N7¶m5lì4iŒ“¾ï÷ãùΟçškæ™åµï}¯ýÌ\3äÄJªôÂ&vF@ ;[gzf&€œ¼Š¡­ªµ¡­3½
+ÐÌÅÚÐÀÂÀÄÄGN.ê4t¶°³3tò
+jö?u>ÿ„Ë‹« «i+‰33þY€à
+tt²øSö¿z£øè ð¯Ö>BMílþ*
+ü¸Ày9ºÎŽ.@¯7ü§ÇÌ 0±0vþ üÇØÀý•]ÚÖÔÀý·ú£“˜þ‡ T,õǼšØÙZ{
+vÎÔ úÿ3qÿUKÂÅÚZÁÐHõ¿âúßΆ6Öÿ·û¹iÿtM¥`çhchý_6 ' w ‰’…³±ùßÿ­—v6ü˜a[3k €ž›ƒ…ãoƒúŸA³þ`ôÇ©dñçPÐ3ÿù?ld5¶²:9Xÿ~Àò_½ìÅŸÎŒ
+²Š
+j2´ÿ;‘þò·5¶3±°5°°s
+¨iaòq'ú7yCgG ÷ÏL#Àü¡ÿxüãî ÿ×ôþ[´ˆˆ»=+€ž…›ÀÌþÁffvŸÿˆ5þû`ükü>HñùÏ©
+”Ü!1¨Ðš-Û¢ùÊ™ÈÙ!ü´u:"Nrgctƒ˜#dsæ>ÇYpG
+‡ïVÑŽd™¿m w‰Y
+‡Ø¥°ÃÑfœ}®2òÄÊC÷Ü6þ(?Šýd8ûC„œWb÷Œ©D›¶✟l³Ôæ[çÓ†È&ÏÃ$dÄV>Ûjj`®‹¯²6…n·É›“Fž%*t=XgOÐþ~1oCf Ž¤Èpï<”WĦù<Ì„t±ÞØ9bþ檻•Eå®™=ìfõPÝ…bƒVi@OÊS
+?ß8úÁQßà%1'Ê䜭-Á!H¦1»Z¨mÔìÓ˜¯œÓDºãjdIs[‘B6jÛBOŒQµ·ŠÆi_·rh58“6Á5;OPWžu͹¦ÄÂñû™l;á – }½(|ø»o/\7ø)™ý˜Œal¢Ì$üæñ)|6<rUBí¿Hp ~fºæ$²O;é\}Nu°Õ((Dø~³B»†ÄÂÓ«ýZt³C½˜½¬ 3¹8
+ÅÎáHìÀpTÂúNÛ‹O;]¶û¹cµÕìœXœ§|Áʾ7E("h{»©¼l2fæÎñ´!Uˆ æR2Ñ„ïÓ~¯KT„ô †Ód8ëñj÷5¿íøÖH½ÌÓ‰’ÔåEm”“Ù H†êíp®D¨Ì…·›DºfdþpÜ;·ñäÙ“h.¥Ë†]Tƒq\¿”íRLëì9¦w¸ IŸ¯yv¼'žÏI/ãÜU2—0ˆŽ4z·YXü;Úø‡Û™#½áÔÜu">m÷÷m09˜£@9Qø÷BÓáIJò0§eÉ͹æ—]Ûo2%<'·ëëwWþH]'îÞ Šx2¦ ÅßRó@íP~ßTr_UzˆÆQuÊS"k–kÿ²HKÌš}K™Á¥ñß ªuzZÏ’;ùN!ýŠ ×Î_WóE;Ÿ~\6>3nJÁ¼à2éSûkÜÅÀ²<TPTº_Ë¢è¦%¬|ÏOQ's)mËW-ÈNõ˜»$MØÍȧBúûÑ™÷I‚r»À¤ìûƒ×
+†0ê¡[¨}øUÊ¢õö\chpúkT€lrKœ>%$((õB®oæKy0¢ª\W¡žÙV‘‰?쯂Òðx*h:E2ÎC¨˜jEÛR«ÍDÁ;iünÃèdlߌy’<!Êí¬'¦v¦àO
+/¹³!AªUBÆîY–B¾µw\¤a•Áº”'®äúhíý9RIFn;C
+lËB•Q‚&Å5Š~’h€F„ÍÙŠ_á|IvúÍDB•Fìò(ô]ßï ez˜›lî§ä;ªj@í[$ÖǸ [ôµ?·ZŽÃ'õ+w¬Û†ìp/êš[û¦îíçHÚͽh¼¬uóbîn$ù´áÍÁöµÿ:§œž®$‡DŸ³Z玔ŠÁxJ|ËÉ0ÌÒN^ÇG«ØBS÷
+bÚCج†t`MPúñÙÌdÝI\+¿1¨öÖ˜4˜câ&øÎÑƧ—³bÔ¶¥aŒx§Â"‰CJ™ªŸ¦2¤#ߤѷ¡üFöSAZ]²O—*駙¨¾zá’õñëÅçd-ve:ËíêÂtLç}.7À'¶oZ: ǯ[ã^Kc¼HÔÁw ¸YóóRvù
+…›{ŒÁ²OÉ98]ž”ua Få‘{DZ¬òG×’ë„CÐázhÏON¢p˜“€Ræs=GUàô ûŒ›&ÇA·Ó±—‹žؽqùnžð‹;ºayãÍeÝÞäÛ©˜ûï#Q=Ÿ£©¥n¡)Q1Nwìèå÷RLFUåÅ/æÌs’E..Øh W!Úª˜,lÍi¸¤¿¾Ë&Ö+¹u•$¾æIí²0¼H¹wÔq~“º’V«l/+qr27•V2R}õ+à}{‡Óö®aüÙpÇèþÅ6(¾‡ykàŠñ¸½ÑÐ&Øt¿ °Ìµ:Å¢éHoYWTÖ.†öXN3ŠßIè+‡vóð³yû>]G|NÚÖ÷©kK§mGXz{yHÂiÖj€…l²žÚä¼q0{ž.œÈ|k¢LÞÈa™FÏ[;}œZÌÙ²u÷û]R† g÷#÷hï>zR;r5Âs|2-æLŠ_~r›+y¬Þ Ç÷së Î.ù sªç¥¡p™÷Ij¬3·èsƒÃR¥©•ÔT—G|Û•ð¡¦ÞQlsR Ù#ùMÙžf}C)
+~fÖa
+î±TÊÐó5Ñïn=#A•²àe‡bñI¯­ JÞ.ù´z06%Zú¹³Œï¨LÍüîW%6Ú`µûWµ›vJÙ³æ~Ù ñ‹Ë²Ð%zŽ÷k£[)­ˆâ'$FŒ¥Ë*„>²‚}¥‡Yˆ·äˆ¯VJà«C#nTˉDGUß÷-+_؇Aqöˆ«Mç+òÐA±ˆê¾Áp7'´H1’Ûä´n“an½ëqŸÇŸ³#SÒu <U†ˆã|1šMº17"ò6Ý›6jË
+*àZí*ÈÝÖ;5Mb¹ãt )•Kê)Â…¤ w¸„œº~ck»Ùì÷ZV¤ì–xöä*ÆÌ'VãÄé-NäàE?‚yê×X#­j+ª) ™úàÐ<æÈDòŸìv¥V
+Þ6·'•uaí½pâO-P‚L @D
+ ;Ჟ*F¡Ô¹èíÁWšCà ë½ÎJäá|=àµú62&OPL#Ÿ@B鄸å'!ðéÇ1ÖÙ¤$eö¾GÊrÜj¶fp}Ëð ìq+ï5û$ õ•jaédµqþº–u¢?Œ
+fl Êý¯½Ä°cøäÍmè™äøÓlq4¸ç§-°PÑÛ¦)ŸËº.}Ž·E(”sÕíBŠ”b/=)– «ô|‹{šh¸Ÿ¹”ž*±³ƒNÊã ¢¨ò Þ†YuóË£Ú‰ÞÙŸ]ËkDVúV¶StA2RXù;‚ w—ëâ#; ö¢§Wwªx7nž-ʈè9Pñ§'ˆ·×ë¨?Uö gƒdêp*Yõ9à ª8ñ6[¶œ)§¬‹ÖºFŒÚ*‡_Iê«à‡³Ø#˜ÒÁПè8f;|'Á,·2Î^$ðµ¿ØwÀÌC`´áJC°›­
+ÅÖ c}RãÌß=:uü:T>?bŸ¹¿ãµ”oš
+êÅq>úm¿-Ÿ¯j7ö™ø¡n#˜šy9êìFöå–lø„É!®ù‹üùE‘ÄbÓŒý­8mÏ`SûªYáÔ*œqÌ \`¬’Ì(þœû˜ÚÍ~Å|BÛÖÉS…íøSù MèM’ºÄÔ\?ÑLóvQ~Æ4¬ë²ZÈ©I04^+ü/ßÔ´K¡¶)ßìÓÆU™ |Âs^Ÿ^Ž|jW´T¸UßãÃK¸M³™ÒM­·ê~bKPH2çr”ü>IRŽØçžï›Áœ"È?ÕMM»¨0âY¦~ZRÊî”gÞˆ§:Ëš»ÁhÔþ‚ÓRØsI¤Ãú½Kó&­\Â÷zGÝÌ¥¬H[½mÝÔ§4ÈÏÝ—¡RŽo¾ñ”ä&>î,=ôIdM&»ï§Ó9‘@M'A´ª@2·ÛWq(}s¼ õdei‹ð:sz+ÒªŸ('››Éèö­S¾ákBÕÙHóV{jêÕ¼F趺Áv ¹=&Vˆ3°’= ŒÍýý,˜Òd·NÙ@¸Ø‡9®aÞ%óL(ͱ“× ¼±-Ô*»ZN¢ŒîÖ›‚³YbÔÊуá!½4Ö
+ó›zÍ>!6|²þŠå˜wúÉÞ¾Â`lKK1»)3êXŒ“Áy
+Vä  ž:Åza®ØÒ…î5]z £ÎT±‹3îåj”&!_”ºEyÉשtÉcÌ€…)äúú3ñd¸I‰|ëO'aÈÄ£ûú¦VÓ¡þ¿Ïdkê_$~úÉ_œº®Ía³nª?Aö•$Î(Íqø ÕO\þp®Ú€Óf|¦¿6#i_§X’uÂáɘŸõ_æÞMMHXÌe>dÁN]䇑‹†„qSNÄm˜®›ya+H¦RU)ÔÈOö‹ØùœV‚n>eŸ‰´¤ûó‹Ú`ŸÑö4G¦ß´.9:=ñ®Q»Ò·ÏŸ–MäóŽJfE><ÁÏkÖŸº"'ÆT4Ú…é¶!Î]Üìï'.i~ç3uóD%»³Ï7– bˆ†+=x(¤3O0Z"$¿cÈ+ ÅÏž=÷Ÿ•q‚%€4òEðïmÜÉú„ ŒçK‡<×Ì@ÕþDK7|DÌçX&Ü öÅmóÅûUP¼·ø†u(|ÀÚ»ôBaZJÛ9„Ç1Þçi=Œ
+¦Û.»·z¾ßK¢.$!Z½LYp¬®Dq7˜îðÒ,áÑÄ1“dÇdW:õOÁÅU"žä—«þ®òþ{Ït&ÃÙ
+^n÷HBlõwƒrx]ž«Ñ²ï‘¹¬^³6ЫaW&¯ZãN)¦'eo·}ÓA¿Ën+MÒ_WP’H¶¦â¶…tUxW ôwùš-÷˜ân^³z"W*MH)îü­kÕs'á¨ù…HL9¦£ Iˆ¶™ýÌ=;û•gã» {¿ƒºÃà½,€ÿdü}§/Õ>ÅÙ©|2L!/>Iû½Ý…Æ€ì¨;µkÈ•]ì’_×–z L^~e£1øŽ¼«É—JHT!Ö¿1I)6G?dm·b´
+4U›ÛöRVÖÏ UkÛz̧7@•ALŸ¥' »CHY†˜)FSG(÷¹bÕè&Ðcñê«òn.B·Õ “vE'Üj™Ÿ”BËÀQ–Ró5‘=Õuè™*C­ê„‘Å’‘gZÑTøucË+œ7Õûý®ì§éÖ
+¯<$k «žßlüWziÄð& MЭ [÷ë4–/n×ËwÓvïÍXQÞãªó
+á|V<|4ÅK?£4—ÜôÄA¹Õ0D[¹X
+I›e¼'kiº²g%™æÜ^x„Io2÷SÆ‹ü¡45´¨w'pèã|sv”©‚Ɉ¯^cúP#)0\\; g FKX‘=ÌÙ‰ì>OºkDäþ›ë?ƒÖ*ižÐ—‡$‰ªQ¹+î7È7||øje],åk×}‡#|ßd - $“yïIü äo” “×7Z[¼Õ)õÙ¿p·åÄÎz}û'—ÓíÖ7U¹ˆêC$`<½bYÀ›áb¾³Û3´$¡í1~#Ò…ßl» ûu2Ò/×›º+•îP‰éaV=$o
+djví|Õ¸:æâ¬A”=ë·*÷¾
+›ØL£ÊeÎ*nOKI úª@Ö@Ëz¸
+ÆËýl<mùhÄ-®¤$ò¨­˜|ìtüe9ÐLm{ôÑ©YéDx_É\¤=K(Y sìhŽ`»a¸,ûó¯5h»ä¼½ó#RGœz½œ‹ÖS²Ì—8#ÍÆZ=cïwP“fTÇ»CãÒTÁïš:>¸‡x¿'™¨8Û¤÷ãbá_„tp {áëÇRKÛ+h¼z0I…VÂù> ´ÒóýR4í9¬»þí²æ‰þŒ†bÔ ‚@¤]@øÝ`n²ì}Š_Ø
+ ‡Ú¡@ÔÉGYoøt­±öÓxÁÐ1ìE‡ö:)Ý-í«~„
+ÎÂ0…¸ÉØáîä&KìdÉínûÝ©#}Oö2£Ÿëvã¿L©?ÓÉNÙ_\¥D¼U‹2P­eŸT@ÏwOA6v‚ú•Ur‹, ·øAÇG±u*‰,zAˆάóˆžodÇúU³Û‚M(ùŒm8=ñ[Kc·µÝ³ív™¼ãhЂŠÎë|q¤øt˜.Çsn¾Š}5ҎЀ†À·,êž+ªu”Ó”6þTþ5e]Êè|n
+–9ÙÅ_±Æþt%iê~4uñkÞr%ç(Lw!ûÖŠèÁ8¥
+k éçœ<ŠXI­õ“æôˆ¨hq+W¤‘ Þ8Š·Xê1Á>pr¤DÛ°qZRÃ.?E‡p8;mUS6'gË W…üB ˆòŽp)9‘V²(ظ&Œ˜;&ÀÄèóÈVÚ· ‰n=éš•ßeÉß$¡•c~?‹¹.îtŒ<EsœM
+D
+¦£À™[®;#ˆÏŒcy†k^ïKù7âVÛï²*õò(ÝÍ¢°ðÆ’¥ôp±7‡·ähØa« F]»é¢êÈo5œë –¢+°ä*ÂÐ</óöØ„ì}-ífÿši1ÙÿÊÆ$÷С1€Bï5š¥DDL±1¨|LÊ9 ÖykJçîõ`»œØO°wT ‹nìKö™SwŒ'G¦Z‚Áµ‹L즂ÃqÈ: ¡å„1ñ÷ 
+…ûFØ®yÏSžð
+8ßBQ´„gÐÏßÔ¸)jo.ÒEêá×&»|T´oBÅøùÍS워šßŸ;Ò:YËɬ‚Q+”PñçF³n(ìUH¯Ã©E„¾1`0Àòh?B¨ÞQ°¶ê%B?¤²Á’ÐÀy°Î×Ö; –ÿã7L¯ŒÄœ;¥.Ú Sãr¿Li…ûȤïGb–ë7…ÖZ w©ö-4ºr‹+†¼]¤”Ì î¡Z=Mð‹ÊðiÓ4äƒÕH¨°^Úg­çòX—ÏïwRéøß"«rÚ¹“«—øD)£©^ñ¡¿3‡e…á¡nzìÀ‰mVU (Õì#×Ób© ö¡ÕŸìm=tÓäøâ.N¶Ý®×CLšðdeüë 'ž#¶ìjÁ3©n·O Ÿ½Íߊÿ|–—ã›|ÛªN=žk[γ²&U hóÊ9øNg9Þõ±¯ÖÑ>j”Ðf5É2 æ/ÿwºKãAÕ/ðìgu;ÑšÍbîçkîKu6:8‹R_è+4°—ïþ$‚ÏNt®¼âùŒ¡ĵj\¥þJÉ­¢®ÔH3Ðc(}Jì\, “{> ¼Þ]x{¹…è–
+ˆ7t´M79÷ü¶ßÂÅ?BûwùžËèÛ'ŸÕ“ÞÄÅÌW‡DøªÁ²ö‚4UOŽ íYÌ~ÔÚ¯èjÌúDü¯ô_¶ÎðÔi#Ñ<†xa)ÞvFH™lq¦ãæu‹rE…ägn0C°{'§ÎãG„gš ºüŠ›ÅzÓ‹ÍξãxYOq¶“«Å‘µTéa ,§éïPpYˆyúCC¥I}!]2‡*T?Dü.X4q3Ã6Wé6 ³s²rá2¿Øï1½ûuIl,Œ½øØD¼-û´™Ò!.$fP¾£²êvƒMˆ¿ë$]JP¢ü'Ю»aæÑ8‚ÎT†çaƒÑjö—aQ8,óZhûÓ:53ý–÷ÝMþžL£_e¹Á©²´æô‰Ç—Wko|# ߪ\jB%Üeµ¢·7#ºö·;l•º©Îð,áô"Ü4°‰~Ð…ûE|L:Z„îñZ~ß]¶I‡­s©!-§ÌÖæ½èDÞT$×ÿ 3
+äv7ôÜïÁAðøáPÕÊ*ËbÞ÷Ü“ôû1M†g¼àŒô… 17z
+·H5l vŸgeãv"|º‰Z~±¼(o¦]³9ml«¨úwÍÙb7¤P.—«|+°µMý*v©XvÛâ1^K™dšOqá|Ô8Ñ¿ì;)Oì™67­¯àÂi3§ó‚¬þ=(BÒÐ{“.r±ô"òbZú-!t&Šù/ÍgÊà‰8ScŠ”¦‘Euæ7Æ:Ô–½/l—[™:çÅÕ'Æ(ãŸ߶‘] >ykX$:Êb
+ŽyeÆSk!ö]¯Ot‹ªa(Žó¬fˆ¤¹«}|;ãXDJ°(‰FÞù#—<8 ´õªkðm«HX fF‹Ø\ÌŠDw*ƒ×XÌC0DiÀ}îÚn®#œ˜g'—¯¹5Æø£ñ’Ô«ÄØ 6ߊŽS»;eWiö'‘)8H³^~Bùì @ˆíG ÃØóà©ûXž±žCØèÓ¢^ݾS/ðÿ5»«Ã:›Í³ù¬¹‰Xv ›xž5EiO†©÷ó«·(v…Ä`ü·Üñ%×¹Ÿ§ê¶Y:ÐcjeR#%­¦Ë‚ ¦TÚ+=w‰…¤•­ÚÆøH½(.ê_[ë>¿r
+G °Ö•Ð¯±lr¿·ÿ¬
+,†-Ô'z‘·^fNz—âJœêÛsŠp•¼HßÃP#µ’Ü…»—y”ù ™7pŠ.šÙPþ©ìÌ0}Â"yå™0VÊU?=Áæï~)%7Å9£y†ÇPCZMͨâ”_ÇEW¢ÏÂ^çebá­˜Y¢ÆoÙäKD{BBªþÁ(-ìá~[·Î·>™;Y²Áà»(ˆ+3ˆ [@hlZk®¾šÇb¯ÿü…9>!^&^‰O¥"Ík§‚U»†í¶dˆ‹wº[5W/÷qÂ-(Q¼¢šWGí)fNóZJx/Vµ¹Í½L,2ѬÍ, `ÑPö&žh›ß7]'ÞŠoÔqºcÔm ðTr/U6³Òýqq×üÉ0$ô!ÅÈÌýœTeRO›1­²‹QhK’ ë'
+*FXêfj²ú®XIåµÛ¸†A¶Ì½îõävAtr€ŸšqfP#¢KR×åâ;Žµ{„¤KxÃúx<ä„S½WSšiã嬃¨ §´WöŽÿ†‹’ÍÏí‡^ìØ·Se•Se²fþÓ· .TªŠ\œEýãÝæìýnbÝx ü€…¸¼)Þ/Ñ>¥f\vÉÍo¿°Ð.=r“•Ð%²ù_k¤®¯™•Ú˜åòk%ìJšá¤áJÖq¾Jˆ|µf†j
+R>¤|ñ¶÷ÈŽˆ€¦=mL_ÜgF÷B ±d4s¢´ôÖËÂB¾FbqÞtðjlè›ú%‘ÃÇ“ìÚIr.dùÌKõz+tCo@yë¿îÈ
+>Ý­0«Z r‚ ¡s%jadïR¹°;X¶ð‹û8﹞ç*—`(1'tJ yÿçˆ!Ç
+Õ9’¹ŽÜÖ‚ØpÁ/d˜;Ú_kïž"*A×ঠåúò÷ÖÆÆ9cbä$úÛƒ…¤îÝ!Õl›Š@¶…Ęnj<Ø–nZ Ƚò~Ÿâ´ûÑkïw(%Ð!¡=BmüžÏ5‡‹šÉß«½ÔÙ8¸öË?SšqûšÞPV4]œUôâlòA<¼…Š ½½ü}ŸFÌ.8AŸïËà{…º@[pÄ(™kPNlrØû³œúë…I„Ô#]‡~9ØO#AúØ/Ñh™#þÜTn’>Ðí{rìДY¿}$Øm©z{è<ŽOÊ.‘ªÒ#žY 0èÌg}·Š/˜3qN>ˆeãþD.ϪŒšs?pMEEÛ‘Bn<B„`ÈNTQ B,‡Í4§À¦ò5»C犽¡OtÌÊ&6â]|/’
+(
+“Zù„šufÆj²ÙþÇT¶ãùϦÓy†Öߦ‚¸« –Ê ‘tÀ~êë¿<;2Ä´Yo–yê@ ³VO x9,[ÏyèÞ„ˆƒ[³¬|GŠûY¶3@Bôco’™ßv o¬‡c£¨¡ó—#®ò˪PU ‚~IgÇ%ÉW1áw é²lU*Þ_ÇßÊ ¹Ë†­>µä“¥gÚ$ÀbôÈØ#¡‰WW#8µ:“·”drТö—(È€¨\©S6Ïs,åžÈš‚o‡ûÎpÖµq¢#ç’¤¸»aÅF¸M–㎅®P&_)ø¦§. òã6ò(2Ÿ…k”nN2e#b„&Z$n×Îø¯!¬ ÆÜŸŽät‚÷ÐjÆs`z²Âø¦—  í!Áÿ†¡vH*èv\úÉ°k-héÌ&Ć®U}7Išº\êŸò”=²•1C×ò”ÑJzŒv¯4…LNiw{W»Â˜ æ¥„ô9ÂŒéÕ*Û”ƒTߢ§çY—óì
+¸PûÌÝc·ˆÔç$*)¸Ûƒ¯Z“@´Å¦ÂŽÌ|™Eeœ†j`û}m(¨¹2ó:nÅ ¬·LéwÀýq\ ùò+°=Üüû턹U¢r©­íîÒ}ÑÿèPÞcó%DùÍgÝîÝ“ê×]›`¤³€i{ÿ.V)(hxUÄVee—Ü»*'OϺ%Ö¤užê1®ìªn@ ­ÆtëÜú¾ì«¦eJCׯdÒú¢Ô$,R£à‡’"(¾ŠœUºx©ÓÂ
+fÚzìàÐÄ/kÍÉ”$[$h&@”Í™LœPVÊ0jËz#f+ëBAɬ¤¯Œ.UCo Ì#.)hÍ 7%]Ê Eê•FsáJU-A{$¾o÷w,…B´€ŸÿËWûX‰7*µ`gtIŽþ—êí„:„îNøÆh›”n‹Á¬:n¶½<äWßõ‘
+ŸUñãl!_‘j¾Qt5ÕÕŸ[h¥„GAkH“J °_‡\F¬ºáþnïæs˸>>ÄFr`X°!n¥«YÓBVÿ‚%ÛP†Yïõ,[&nÁQÿýt¤SÆç*\Ñ—^ãk€z¨[iõûøÄ}ˆ U$ÎV¾èæIÀa‰ÿDã¦ww©Öq|©o{ÀcŽ”ˆÃÁ½!Âmª'´ï–D´¸ÇHè74UYèˆÀ_=Ê݉8^¨É€ï4†y´ÞZ]°ã/sN—Ø8|O&.žvZ=‡á½Áì…‡ïmÚú
+©b×ÄÜ¢´j|asáz—ÔvC6h gQmš2n*ÈÇ^±4/Jb«5m4ÜÓ'çì¡äF»ËC"Je¿f^üî8Ö&@_NžÂZ½Ã¸-.ó¥BãL–% ¾>]Å™M´L€dÇñXxËÀ?›ê©ÿÄuþ‘ô|Ñ€yO}kÆÁu¦ûš6™l±yñí“œvŽ§Ã[˜ìôÍ+Kvé,È^g‘Í‘ñ ç»÷yfžtï
+E[¸öÀY _–~a“G=` 6g!…‡LAç7ýÀKós<š"¢‡( „ìÐŒG•J§D´üxÇ7þk:‹ìšöYgÚ%¯ßÖ¢„i®¨!Õû„¢êí·ç™À°œn•+¹iU†&ô>G›'!².&«¤a¢‹Ï§š
+õ†nª¹G‡xÕ\45dPþ×bJÆiÔ4F9ñ«¾¬ëã´V€ñ©Bi™¦;‘Þ6&ò—¹[hèá³
+šÈmâVqq丕Uó©’t°>Wýiî%.S>ôð•“ô~ÿ^éj-Ûªª¸èÔ°2“‡F–æ’QÄÎTjÃ=¹Ò@Ö[‚ôt߇wNȯV½[¡Ž?ræY³_øÇ––“wÙ©ÃÈv]k°AÃtc^°©¥&Ë&3NÌè+^ ÅAèV˜ C‡›Ó42EÎ;^¥#˜8™ù ²0>ÚŽ>ýs5t(‡P¼µä;ëĦR¯ÎuÐndp_k×mG…P‚7úÄñökJ\Èrm¤G"/òU½cIP
+WcäáÃYØ5:¢‰¹" ëIÕ@¿Y°×b„®4öŸ@©ïyå§Rn:ã™<ƒƒÜ¥žj1êÕÎóD…-äáÕ<IwÆ`}¢Ü hänÌÜåÉ@)gçãò^–ˆÈ“ñ”uø†a›9“ë¹È,aáÁ>æÙJ`¶1m¶`dÛ¦´¨'öØtÖYN£ê\-¯ï.“¢­&W=ØŒ,èV½ÐV›½7?¾Ú*©`Kë÷øC~-wÖö&´»ÑzS©Ù缨ßȸ]sÌ6;Gª£C?Åï³0ˆ"Ñ_°Ú'ýiV”F²Ž²n½TqαQ.§£»‚°ÔW£ï 3ük9ûƒötCðÌÓcMÓÉ]E"³ ÜK•½ TMoÌöB)hxJ3öyR`jÌëBÖ
+ÐCÇ®w
+cš¼£~gõ´­·ÑŸÁPJy¹ƒcë.D9ðÓ®wƒýí â?… I·)¿ªä}!úqVWüÿ¤®ª
+/oHŒ¡ùt !@øÕccugš¶ýDŽ6»12›Fù zô¾+4‹šWB§Ô/a„ÀÕÜûîaÌ&º×ÓFà~ëm6š‰iÕ1”2%_…ƒ|BrRv~^$y±Oòzêî{i+®yÀâ¸ÚÍÆ_¡ü`ò±ó¶ŽÓ!šÌÿîa•DO5e~µƒ+Z1åØDDš˜Ó&¼)tj’©}•NÛMEY gCxµ,dÝ^Èó`®PÝ! ÇÇŠÆ‹â¢ÔŸñ
+jàv÷Á³?ÕñÎS}
+ܤÉq˜ÐÆZ'yšï
+"-¾î›eçyóIéXË—Ÿ¨}ÔŒGðê¥À–À%aØKÄÎ6Þ`Øcjërh8ÃlŸB3#ûÞ#/êØÊÌò„Ý’¨·z‰t¹‹Í
+ àÏPë[c‘âìÜ÷ê=%snˆó&èò>î]ô5jŸòÛæŽz ù¨&Ø«e8º†ºŠp]p© Ã$Á¸cB|¿ä³k‚wâ± ‡²Škš1wÍjZ›ü¸"u¢#c§½@ë!M:4 
+™›ßšç|pEçW8¦€CÒ€Š ÚÙæ—«·F= ÒǤ5Œõîší|¤9BöT/H*>çŤE ÿNš§’ÿ‚“Sh%¼
+9½€_2po°™8n€È¶Ã#¹m‚«ÿH2å,mŽ›†v€Þ+Sn6ÖÌÝÂket²¨‰ø¼äb?§š¬mlS$Þâ¾É2L§² v5é"üKH&E÷…ã€ó2R»ì‰ñ©n^¨o`СTÂ-Þ +«>9§ª„›,øÉ Î>°¸»2$0Ô>’難°=_Å¢Ùåð‘•ÇŸ²‘W.â-š¹Ú }·[š"†H
+2Zö$§Ù¼˜Ýç"î$ŠûÓgø¼{Êy#QÍ_-Ì#©s†Å@“}¬fí#ÄŸ8êYxU,)Xåv ¤•¤Œ-6¾Eá«qˆJCÁ5X•\üWþÑ¡tZ
+•·õ»<V
+÷Ì °±”ÕC½¸JÈ‚z&\U0Àƒ!z2½ª–½Z'Ë`lÒ–ëX૧Žz—žïX¶¨ ¹—÷7ÈR•ñ/Ž²p%”6–Lr£×x‹X+wEçÎsÞÝ°íC`À„å–ÖJGïΪ"ÜÄAÚ€éHæË }èÓ×_Fá]l?1Ojô6ö¿G>Ò8%À³&¸XýÔÙŽWŠîcåg u*ÇѺC…ŽìõZº)Tò´ð|Ó5—³*=ø}p¬Kb,&@À5ÿÐS´ÎþB#kýÿ3Ái5Á=¼P$§¡}›È:ó Fîn©¨‹ÌÅ+õ6öŽÄ’7VKD¸\WMWä•ÝÇþ²”
+\/~Ý—˜˜xréÞ4Îõ·ó‡–Rºjç¦Þ(¯+žjm×+Œ²&©ˆ±Š¨ÆÔëÂv/jçÓAX”üV»Ì° )J]•ë‡ qŽ4=ä Á‘èpüõ¹tþâ¤U\ ^Ñ#}·ü{wfq]«Jüרˆ<&>ƒóZѺ<wÐœMRº§ŒA¡Ž…)6/xFU:\ÑÞ_Spw§õÖ‰DžM\!˜ÌOþ#¤ª!uÂj§À” ÏÂrs:²Êfоúñ“ƒ‡ð¹r¿¼ÀεtÓf¶N8DoT0ºƒÄÕlö
+ÝÊ*w°»…¢h—§®€¯äeóÀpÕú}\…'xãï;Ëi:` LÆ‚û~ŠyÈŒ‚K)÷ŒÀË3‰¡¤µàwWÈ
+0¾èí¬$¬!~¿¯C=Ò²ËV €8–H
+ŸGûçÓšók
+ï’¾BÉç…¡ÔÇ­·6¬
+é$«=%©WTªÈÊÑSìBì,%Ö2l28ÚæØ~½
+wâ;Ç©óËaJÕÞŸ (‹ÂGÔAqó®|ëûÿÚó1;°ºö©ÂNæÅÐQ£Jró‚[öýrð9“|™hóâÄ7wÓémZp¼æÿº¤|ï{®ÖÅ7è kÀLù888yóERåISøäªÀ³eÙP…§$TFì¤4Åìâüü^XeÚˆ³O°* ÿÁ’ÈP
+9tœ¬›;ÚŽË
+GHÓN‹GÏôqc³ë~²n[^÷áS§çÖtë/äÜÉÍs9W‚Få3FPƒ°Q)þ4g"º$$„aƒQcµóeœ•ôhÌ ‡ŒddžsÆ!€Ž-G8FfÉoä•¥ÆËÚ`¨D¥ A‘PÙ )5CÅœw_Þþý»¥ÅC{æl47)‡_ãHšéq¡Äœ§¡˜1}Ü~ãdšø
+;A»™ôö]{Ãsã]W³ˆDq•>'®Ì?ÔL¡£4iGFwÛ§
+ÌšõnRÈL"§ ªÆZÆcs×'ø›ÌçâJŸ(ãoÖ$MǘûUûåĸ1>Þ¿8ž?Ê76¾ôÆoœßé#ÙHKð¶Ï©d‹<‰Ä~›E™‘¤Û$uX]…Çs_'5&)µÊÉO‹€ƒÐ\ƒVç¡qíÉ9_‘|`?$Ôìƒ\ùv(9G“«½¿·e¯R榷I˜é;%#ä›[]
+3J„rÉÝ¿UÁ±ÒXÌýv/š¡?è£n ôjgÃäõ‰Ñ|6(ïõ•VÖ^s¹v%dÎD„_j&¤1)¤Â@Ëë¡O·¶[ˆXÛaÖJœ2ƒ˜ƒÝ\¹½¬¼¨8)ïÍ㜷r2…«ù¥Éý1Öèœ,O ŽR`7ô ß'¹F“Ê'TÙÕß¾ö'ûG1Nß@ìŸ.éÆHn ~
+`Y¢Â6CŒfi7Vÿbûj/ /`Èof¤öUD¬u¢Yü~ŸÞþ&—AlB¢Æ¼?)-^»8ÊO°Ìhã.hçݤÝ>èâP”4‡Ü3&u¢zóûLš£M©®ÉÉ@¾³ïRȨDM£ZµŽ_\1R*‰çIÍ‘©'K¾S®¼~Ä[,Rfš-ªÍÁJÖ«Ä<~ûõ¥%îlvö(ïИ”Ù{BþRÀã=R°nïTà ¬«®—ÿ©¨&)ÌÁ%8°÷Õ`›3±-µ˜M6X Òÿ¥/P¯Äz#yð.)8\Þ/AP¨·ëê
+?|ìßrÃÇ& °Þü°/ NúâbT\yýAÆO×c<<]X¡qvvÁr*ebq›­G1·ÐóuÙ%‘ú¹;™×*W3v™ªñ2sÕ8m¶fÀ7ï^{å¢~ââñ¿ åx™DC˜Ý+éŸpÌŽQò8ÉÕz s2sÎ:ëÇ0ÐÃrÁ[Š¿$7`²+˜þþ¦:¹4(Ó–¾óst¸Ô«=Õíu{«„"?/‚©3¬°›M©L¸}¬r>†˜31”Rî!ø?A+¹XÇ‚C1k%ÏJo¹\L<0}TìÆq鶤Yt—p
+§ ÞÝsÃ6ÔáÀýn•/:€
+úð ˜éÃ(m€ÀÜ}F¼R&û¾ÍöëV÷á©¡Ì}è%ÛÆmû§W9ôö;<7ƒ†ÅØ”ÙLª}¡½ÍýäMC˜N›š¹Â>ÒZó‘$ÝÎ_bÉu-úNõø‚:'Y»û˼݅¦’@šA鶻žé¾Z§{ȸ%xÉ©¥¿ ëÚ$2·Z˜ý‹ º.ôá¬(iýŸ®<üø bSŽí;«ë›™ÆNdœG“.](iæN•-^Ǭ;&ú(·ÚAï¥Í“Íýiî$Ï×I¾b ,Hÿ@Ìû9éH¡6Ùç@fãœâ”³Ó…½‹¨$Ø’– þ`–1Öølu‡Š€ï8$í\•¦fDH󱃗ÒÊ¿’ËÖ½àÆ™t7Ó÷Ü–©>€óŵ/Ðͨv°˜>”SÙ¥ø“è[&¹‡V„Eï3±]*ü±/û|•HË#o@5iêÃ<е–ÍEFç
+¹æzXíÛøu ðò0þ`óu-â•hÏHù‰g߈¬wÜP®Þ/˜˜/$úø‚‹ªÍ;ï)‰I@Sï‘ù‘2pÌ$:jÚo›KéÆü¼vtìdA°` 'šµ'GtB‹<eªzÁ±åƒ“4±Å?ë‹ÞrJ~çY%-‚ø1ö²ÅÚÖîyh/Ͼ0O€7«VŒº7Ñå¬õÇ;aõal¶7…>¦J8«¨¡Ê\dÎSºó$‰5û {E’¢O=?zÞ‡ñ†sY9}Ë“Ÿ³2ì>hqQl8|ÇQYÀ(;ŽNu!X^tÑÑ!¸ØeÆê¹³ÓYæ>ý1™}¶j¥èò@DÆ59x;:ïd`JÛ*ÑÓq¨}†(²,Ñ54ŸU{ª6 ÅLQ™Àºÿ•£¿Ëʽ9˯=?2°r}¢÷@²}²³¹´°ÁQìo0‹<‹ËrUQn_7¤ %ù¨ÞŽçïN’:2\¸Äôæ•–™ë‚mJ¶lšïz ÕlJ‚7Gùâ‘ŒE#£d|ÂŒT&1¸f‚Ïýs+ù¯-&ÝÙŸ<*šáÖx]“;ûj¸ÑCr¥åsçÀyíóÚ¿è„6Hµ¡»Ë¿.fšØ Ù—UÖ¼ÕÜ°ª¸TˆŸBÈÓh@w·Þº<hiŒ\`µHÛ:T,åeëI$ õR3úºš®ŸÔt!åË?u¤`3…°ã˜˜ÐgÌhæ\íƒãÓ#;±—9g3ßuþØbÐWÂc/‹¡™pØe*(’ÔôBıŠS<¼Ï¥<ü 3ð5?ºHòþ¢%9íÕ`Ø:åë÷ L¤»
+h¿ó"žcmAX‡{·ö©Ó£Ã6¾ržI½›@aKŸ^¡û4%‹_•Ï²¤„m½Ž ˜¸¼ûVE/pÔ„ icA¡ua|á„)
+Ý…z&ä*Km˜hÑU£ydct&kÓ¦’¦ L>­ßf`Þ5‹ë¿ï óóÝ4õ çË`ÎøD+6å˜<ÍÞ°M‹/äMKƒæûi,Kâé:y¸pú¶[ÆÛ 8M—¤¸…[Èd’f&i#.ÔðÄÔ \Aeë!^OÛm‘åBC¨pGöf¤šìÒÌÑ™yÍwÂ4[°vFÿÌ&ð_Ñö}ÖM¸l{I¸XŸ§$žÚÈj¾”}c“øJ€I˯ꄭëzô”98·À:e¯?g—_¬ÿp¿iPÉA¶Tÿžq|x‹î:m!ÁÚõžˆ2
+Ø„û#³Æ u–‹3$hÿ8i[-¼Ðø\Ï;wŒcM­T×öÂáÄhj‹ŽýØ‹¦$6;¬†­öÏ0ÂòâÍ€X.y—?ûQn. ÿ·á¶/ËLÌ™ù+ò–ä;vg´[ê1¢·Y¢‘>00¶û¥èŒyµÊ쯟qÓ&Øã3écƒCAƒû™L‘/®Jmë’§XlK4‰m—Ýž-s°‰—fbI±Êî ˜dh*œx#S)Ù»Ï?ÓRKĉ¹Ášà¡¬øö¾ìø=2|e.ñg8\³ýW¼i{rà¹øXò¼¤g‡LB»÷º‹ej˜OÅT·ôù :nJv ŽiQ ºm2g³¢é[Óá?åÿ±ï
+c\ꉾ°ÿ‚œæk_‘¨ú(f}§›B9,òÍ(´±ÊÂcÅê"¯?é'Çà DŠ‹†bAÎDH%Sôf+è#Žn…5ùm>±–ÞOëºÃq·NênT‰æzºÀAåìæ7%Ý1ÿ(⪠ƒ"àO­ÑÓ<eõSr ÷ç½Y¥Û”J/ˆ¦|e®«å<ñTL«þ/ÜV+–¨js¬›fvù}CWÚµ¿¹AÒ2O
+×°¹.½ˆ~‹'3„¡ÃÒÔ/4>¯ôŠ¯JØÀ&wGÿÚý|í–SÀæÚ àÅS¥jèéWA'†¶£Ø¤þò;Æp|ÐÄ(yc£¡¿:EDÊ%ù` ¾dæ`¼w|ªÿž0Ë?
+Ÿ¶¶Öähõ7#Ö¨"mY]'aÆþf\»Áòd«Â†ƒP…-ËÓî~²·$!ñ:®‡Éé­ð,ñ™‚j ü5—XJ
+VøZ TNø™H.Îú¥H¨ôÏ|„>ÝŸÉô ‘ê 9Ó¹5Ê9ª8i]÷~]ßßÖ=Q·cî’1eà(õ¤Ä¨l…Ç’MLBðå£o¬lñ*.9TÉF¹¡ÀÅk²ÍQ
+ jôûô%
+ÅÃÏ’•Ì,s´ë-á+¨ÌP„ÚCWºÐ$šbó$ð½<ìk`ÀÈçàH"‡?[3ÜÞ&PÜYßË(||ô8 ¯1®ÏþgSÂ$}ši´kF>DÁð(!§öÈ7ÛàÇ«’ÇÚv“x›ÿ5—P-Òœù¦þc—Óð‰\©ó7 ?ß³"Êj&gÞý÷ÏסÌÇ‚ŒVÇSÔƒÂÝ8VcÓ+ @_¤3»,ŽâŠÒ¢#eŸQr9Ž¨ó[½ÅŒh›­+æzåS¨yà7 ­„ü`Sâ–ó‰oê'5lÌèlUÎeF•É§~•½ƒ±^v½Y<Ž–Fa™’I7„CB†±'TÅúx>§ˆ‰õ7…䘛°…‹P·†³ä[›±Ô͵êë´ÙEþÿ
+endstream
+endobj
+3198 0 obj
+<<
+/Type /FontDescriptor
+/FontName /NKONTJ+LMRomanSlant8-Regular
+/Flags 4
+/FontBBox [-483 -292 1526 1125]
+/Ascent 689
+/CapHeight 689
+/Descent -194
+/ItalicAngle -9
+/StemV 92
+/XHeight 431
+/CharSet (/J/R/a/b/colon/e/five/i/l/n/o/one/t/three/v)
+/FontFile 3197 0 R
+>>
+endobj
+3199 0 obj
+<<
+/Length1 1799
+/Length2 15838
+/Length3 0
+/Length 16971
+/Filter /FlateDecode
+>>
+stream
+xÚ´ºctäߺ-œtرŠmÛ¶ÑI‡Ûv:¶m[›tlÛxÓÿ}Ï9ûì{¿¾£FáñüÍ5×*Œ"#RT¡2¶5ŠÛÚ8Ñ1Ñ3rdåT l™锦ÎV
+ø1Î6ÆŸt:™ÿÕàï¢
+ZRùYôéwúo`ŸD8ýíiõ¯t€#ø¿Æ˜8þS+«¨( °60·qÚØ}&:89;ôÿñ}ÞÆÿˆ8;8ü!÷_!‡ÿó_Ð…m?¯LÇÊÃËÀå?WÌÀÆÙÑý߸ùß—mdkãhîèäø¯Ž@€‰¹ð/zÇ¿kfnóONH^J\LE•NöSx6tr¶ŸìØÐ;¹:ý“ý·Ÿ¨,7€“‘ÀÄÅ
+`ü©˜±ˆ­µõ'jG˜¿ô‰šòädëàÆðéÚÒÆÖÅÆãÿö›˜Û›üeÞØÙŽAÍÆÜÞ(%ú²?]0ÿã3:@{
+ ~Mé8ð•´é\,Ñœmb @_‹o:y­¬$·®w’ŸM‘&Y ºÕûzkbåÔ­±’àŽ·œ7.‚˜ÐX¶:½šºÜ²oY1Õ‘tvžV1ëlz[\@mìX„«£û)Šyòù:™X§¬m-Â¥pž©ÍÁ
+Åu §wyºÔéã -&Ò Oh…zN?/cLÒ®·u4²Pàe¹€ óL#º;“ûì”*¾:ä:øD§£¹\U5ÞþÐòך ñqÆ`5¾ýc$qŽf¨Ò÷ѳü‡©4’ùÙ$æŽÁ¼•u•5اtÍz°”Àˆ·×5؆±ì Æ'ö»¼`¹m_Œ1"z¤»Scìö êX¦­c"4wȶnÂMuÖArí9—&^?$
+èÄ[Õ0Û*éï8éàíÑ{¼W"ËùÍî½­ÉUÏ'ßK3ƒ´U¾Ø®ï—¨ÏX{¸&·2{e©MòO„ºô»Ý÷½1 ™ ³Á>ùVóymy ôíÖƒW_4ÝæËÖkYz]a£yj•QãD‰F×a×™‘„>‰$LÉ9©P‘ŸéÑdRÜ0 k>ÍèOGuC£xï[ öÿ’I)#n­´lB}”þþ&åßÝ¡è…‚¾”ÖŸ‹B‚¸¸ñe )£–Åy$^о$Í-í¹‚6f˜^¸£ó’hdÃavš¡“vnË Z0íš2IæÎ}«¼ÇO{5ƒTæÌG&Mu*//øE.s½¥1$Q´~?àµ,iúJÆÞòšùû)F»Žn£>Œg%ò%vå7.`Zâ,e¾³únKµ ô¥ZvVtv]Ó¥ h“‰\Ò»g†q4˜h‚ jGh¾
+=]!óÌÖɵƒêÂP¸WÿÆ£ÇVìATÐØòý&Q»£ËÊ_œ¾ñÇü*]" 1A®'99Š Vh×Äf¹êo[šöY Hæ¥
+ÜÒ@“½Œô KêFÇ #å-jÚÖDø¡
+W5„â•c-M¿lMž K­&sfÁ é²yÛ+à;+MG7D ÇE€äQ–`µq¶by„S @ïºrP^*5–ç_Ú9Ÿ›þuÔæ@+… ‘w‰<öË%¬ÈýÏå°i–L†—Â+ï«oP종yÄ·ií$<õ|:ÆIànuÑäÂkqŒdá×[Î殨Ñ+ÍnÜb³)à³7¨²)'ÝPŒ|¬ê¾Ñ‚2•LH§¼ _c¤>$Кó Gsy Ë¡…ûòA4ÇÆ[<yšÂnDÞœ1¥Âlo›§CY¢<§=?GúE‚ H%ÌV¢*£4aƒßÓ±ŽG•Ô1+6µ 1¢±o¼”sU$œJèÛ‰ç(‘fkú„ÈÅšHû!Â"a‡:ik øî[2,M–ø$W¬{]ã.XŽ ÑKG ¦<ÏUÙÜs³,MšÄC~tU¾õŒ!‰RÑ
+Ö±¢¨kø+Õ/^ªÙ M B97n þ‹kû5I$é*H±ÙàÌ©fê«–
+jþ¬ç……Ò?hɺ
+VÎÃ
+¹3Ìžáe'±+«¼ÑYgrÀŽShqÉÐx;".|R˜r6s9NG"-Ã2|D"7ÂDÿhCjr;CÅ%B(D‚¼Ûc­ŒŽˆh Û‚U‘X¦i>7)”)ô\”HcÝjV×h |k©ÆËâã=Ò37ïºÓ5ãæw¸UÀÕß×FØ{šó–%ÉK%HB/L—àr⃿¯¬½ÐÚñ$r†„3ÒÈ£Ÿ)^)ý³ÞFZijºýKÙ­ã¥B|™X>LyC«wÊt4⪖B4qǨ:öC‡°¶5¦u09‚mw>yŸ)‰Cú)"3ü¥‡ ,-<—Ö>ŒëÁ¤ËÐY r‰ÂÞ¶/B•uñ‡àœï»H¦Qû‚kÜÁ--ïý¯ø(,wUJ)k¾MÙîÈá‚Ñ(f«ë(-÷—`X\\u§Žž†>„ʨå2)*VðïòCJ§ê”Ðcð)¯!- ³MàKîú銧 Dòm­}©ÏLÕOdå1DuÚ3µ Т\ ÐäkMC¡èËߥ˯
+BgîêfÈp|7)D¾¿Øv‹¾•¼xyÅ•SßñR¹»iýh®:ÇžÌh3~=‘Xù†)´™KòÒ™?*è&ÀŽ8»X껿ûà‘PJŽ«±¿Á>g÷Ý… ቄᄭ¤ÂjhŒv'‚W;¨XÍ…M,bÊIj¼¿‚½=Ým«sÞ7ŽÿG—BâÊMôÖrŽ-\×÷ ËéÂ/7ª»¦¾Åçz ÅløÕhVRfq­7‚N:Sl˜£ň‰\‡mOÛ'`—>_¯œP¶³wÚÇb"%øíL춾cbÜ`$CëNÇF_á ¯%X“ü9ÕGê~Ù
+é2yVÄ×=)I`Λ«/
+ãùÚ.P2!Ç_meá”ì/O‡­~žˆMÖ×jwšL+Þ×õx³Æi<ª¡|,ï„ÍÊ3Kj v˜ÒW¶@å Ù[q”!ÝÄÌÛQ×àŽNíª{Ï{<É-ºÇ¡ÆãT”c6ƒç Sò沦qÕßåÖú&“0¡™é_zÚH•ïjÉstöôücÅ Ñ.¸˜ûø`+_¡G­|Ô+n¢~“²ÔÓ5{ãçm?Ñ׆!î·C ¦ÄÁüæØño”Šec×ðéÊdèPþ3ÞbkXža¦Ò“˜„ˆqsc
+øÞ†´RzºfcÛ¨TÉ®ù`Víbä„1[ØöMLDÚ¦¾]Þk@˜Þõ{ÆN [r×´¸-‘àö]^¿j˜µ*ÁI¾MDT/q­µeiI‘Ó(ßV3V’!û—ª ·»¤§ ¾ºý•¡y6ð’ »€ÀycAã%^(Ý–=9™•ýª‘¼±`Š{Ö»p´·K^{¶ }8ßE›JèaúÅÀÀÍMjëzZÏ+M~ÈâÒ酭Δùp »x‹K5òÆ.ÿ°ËóÇWl³Öµx)·®›Á$k›‚쯧8®?龘g²Úš¿Ìä)mM‘ƒQ¯ÒÏLùÝQ™öå |9¦7¡è‹Á§,€¤|Ì„‹_7‘Œ†G¼ÿ ,§˜½bîv¸êBù:õ+Qš›#t<× ¢©ÒÕházýôua³$
+nCƒ”¾¤øw†¢%^UK3[šB¯ Â/ïN²ƒÙD½e‹QÏ”ãÝ=ùÁèææ6&”—³b/U„ß>Z¥‚³üŽbxÉÎm¾QÝå­øªã~ɾÌôå[d0?à›*›¥ Ô³¯V ­9Ûübí\ÈzyÒÞ›O–°HÃóŸUZtù÷7Ìc*o‘v±ÌÌZ1ÑÜÌ/°û0Îø !BKæføžÊç­æÆNá\ e:4|P0Òuûn:ѯ2:öž˜µŠJF`ã‚»Ñ È›†˜éåe} Uç_æ¢ï!C£MMÆ£ìxŒYqÖ|â(é7>Ö­Y~â…=YiNTwâ—P<
+’å•çýÁÔBˆÞ(þÕçÒþ´<§—ddÓ—|§hñUkå—gÝwp~å/q óµ0«¹A¹UèS5ï;ƒÆ4 ´¨+KõFe:¿ÂOpÎ0oúl5QwîÝ?|MµÚ`òÔõ¨Šo]}jSWÏTBG#E˜ ¸ÑaÏÏ=î.ÊYìô,2È
+zl+7Þ qMÝÑL Áàœ
+
+F‡&¥¡´°êmLùžìc,úÀÒïßžâØ*Wrñ·$ß{ÀQ‘ÔÌ&)¡Ÿoðâ9ñ)‹Iåd=ìñžÒ´Ã‚¸[Z¢i©ú‡þðFEÅ8Ãbÿȃ!^«^bÙ+
+±ã;ÌÙ~Ù_÷…ýî»J›qfáN–®¾ñ
+9*YZí²D O?KÏ^œ·\ƒ¾EÜ3jF^“ N‡•÷[è¥(¡íõ3úË\÷«]v|EÓM»ns9ñeÚ¤ ÆðûxÌff‹ÔXVݺ;É“ìÀÚTñݱ¢·î‹*h3²Ø›(ø?:V ¢Ýôrª¡°ÕäÒ¢L¡âŽ/Ï¥é4–ó(#òçÔ¡5./öÑt_dúƈÃ._¡m¤E„¡nÝZHlÅy•ýIFåÖÙÊ‹]í^¿Êõ_•YZÂQÂØ‚ý6åLËž±ÉSïdàjï{†ªj=<ñáK¦¬e`±Ø“M5,MoiÉoħÕf ù³Ô»áçTí”»֚ŔÎZ81-ÙÒÒm8LâlÑ–” ‹è—£ÐJ‹ÖUp0Odì”áínµY‚ØžZ”ÜÝÞ…šŸõ7I ?<Ú ¤è¬õ´0T VŽì@cß• ±RæhC&ÃÎäü1¯.W9vž¤¸[Ýæ”–ˆ$K•] ‰Èjñ´É¾šà’•kI)(òÈ6~‘qìe,â’û±±¤Ž¯6²Éß®éÁ
+ì\=:f òg7ä`8æ˲Ô\o/³ˆÎ<0ÌW®¶ZóQÒ͇QÛ)‡ÊÐX›¥L Ži§
+Aø\ü®Pªéæ‚ù·h•£:[Oáùç”Xåìv>R †ñ¡ŒÝYi£d¹{-ë3¸ó|™ìdŽ°ŸeuO™Ì–vs-í4vCµ³¿œSÊ^7W䯞+®íkƒöÈŽe9® DØ"§±¢ÓdnwŽ1Äa§#ègЉàÕ4$v2°’úÞ\b”íÓÑaô$,WGkÖˬŒ¡Hù}Uùs\½dËP<*—G°äþI¥ƒ®5„ýÞóZ¤Õ×¹E{Á+ 6‡ŠYæî Eÿ=þn„žŸ"sÕÆM¿¥ì#Æe¹PÕØ„í;˜SjÏðõ[nF÷—–A®À¥¿Æ<bâ¯ï¾”w7T,­ºCñPAùäZtPF^#ä²!ap™{\Œí«ª£ÔÁ–k
+"ï±uþäÈ£‡Ø‚­GEj
+ïtHºU¾ÔˉPå°ÈBšžª3cô‘´dDõS–^¯÷8ýÂ:˜¤Úø’Ÿ;øl¬@¿ÇCc'“aÖ4:°3AÇ©VBxM&ŽãGMþÑ< ¥é³ÛÝ̉°É¸¼­}Šu¤™w°„±qpáÌñúaFkà
+¥9ɸ£Ðpµ&ÊÀ÷ÃHÏ^þ÷ýZ9ÑÅ ë#TwS]DìÆæ»R¶?Ó+R&c/âGþÁ‡åß:K˜–—Z~S¬:àt"[šÇ@«¼A©º&º£@ _H7OàÁÿt_rϯM«,®òÊ«Ä>Ñ*äÕSh¬!‹Ñz¸AîÐýàÐãîÞó©çù1T ÂÓ
+ólC¶¬n¦®9 Âbcc1[Æ(~¥ë–±e䯼Ú6ÙmnW'¯"w½„?}”¤ŽÉž`éЃã3*·+Ê}:›8]l¼ý¡ÑÑ`—NÍ®%j‘mÁÍpðŒE¾÷{°g¡xÌÅ5õª«éæÖ…x7B Q.SˆÁkêûx@ˆ E?qµ§þЗœ§L¸<w¼*’j/ü·Wö Òk(ƒÌæomA”xBÌbmSû6%­·q¥=¼j¶ý.‡T'zwÝj‰ ½…²!vsû´ÞÇ?µæ8ÊgÕû…4ÕŽ_.$@cSQ)@ôßI¶Ö<Öoú‘?š„³qøö”; ¯}‘wåȺù„VHÉŽd§uCáäÓµ²¿ WÜç)¸´³hÒGŸQÍäEÚ9RŸª(fÁ×`¸%+…(@¡Q"[5“ØÔ'§ün7~mñ3;ó“bÍ“èãºöÆi%sÍ^ w¥Ez¹!¨c‚úê©^Æ›îó|ÄÝ:] ;8ùÜoûÎUûÞ¹r»ä¶WZPƒËË ù
+tÎ瑪fC"Õ4b ƒ3Ų…øÑÛcŠ[c5½ªßŽïŽ”µŽ–}sé¡uVÈN»>ÞV\KKe-z%B€×ïÐÃ|ØÜñcc46fH dDûzÝL8Cõv$àƒs¼ˆÖ™ ¡jJŽSŒ q½OÕÔU’Êî6u]"à ¢¸Æ {>YéÓ÷Ø“€ïh$3ÐvMxr®cÚ%Bf6Ä8Ò…‘èÝo|
+Äbu¬a>&2±àå\¹}™s33ÜèŠYÒ”c|ÿ€•Þ
+Ç>åf#~Ðå«T%|.ÊVª¨7œ’åŒëm­ê­ø#›Ä.—™3wŽÛQ¢ ¤úðÈÚ8” ;²®µXó†9Uí¯8a‰ žþJã&·dnÙ&r–BâgÃ*¾€ùuˆ1«ƒ>¢<°@ƒ0ÛË“>çÛ¡º«‰¶Á±†jyíz@ ÿÝ㱪ÀÃy˜#d)Mwz
+·o†Ô^aVSXCäE‹bbL~Û»ø0Kv‹æû2£ý¤IyU×Ütú…—‰š
+u—½Ôâ¶2›?¯{—k£J†E8´÷ñ?ê°D‘èj䛤e†Z'9y<5÷»©¶:A©G—U{Ù·zÔè.Ýá⌞É} sÞgv °3µÉý;(·l'@A³ŒsT÷Ž¤»•ÿ¤•Jà"¢ª§©Â¾}c’ŽKÓ;ã^q þ¡® R[ñÌ©›Q¡¡n`ô:Ù‡îþ³âB©¢e×ќϴî&fSÕDóô˜µ¾©>Õºº#sÈ5w}c³™t€[p†€œ¥=õdfVÒ1‚öü½…îFuKÞS$XQªÿå7Ëc2ÉÅEë˜n ®g2¡²aû½ òÃZú^˜ú›.÷î¶:à£î›oj•aÒ¤±òkŠìŠæ5">¾6œ¤‹<=?*ôö]1ÁV´—ílê]ÂpkÙcI怾ýoWêM#^–á]v¿ž"‚å”A{CP4fO60ˆ:G°òPKb«H–omð~Yûp@ŸjEN LÊëÃuGì;ç~`°*ö}ÏÄh÷„ž(ò­…e/>­ò¼ ”ûÇ„Ý?ñFwe1„< ÷Â0 êH‚$LºM®#^ùM÷PkÀƒ{O:±ø·SeänÓÍê1`œ–ìmÌûBB
+?#GhÜ®éî™vSsx¶¹1µ9¡Ì¿ª”.dœòBêo`ðÉß÷%v ^™è`­…ŒÝæ±`‰ú~$oŒúX ÷iœ~mŠW€¬¿z‘®5ôÕÇ~aÙHÚµ^5r
+¾+¬Âh©óûjh€VXw9. ýŒ5ÞÊ·Á8­Zö¤;½ûD(3ªû½~)”Р,¾^#MDÙBþ³Õ2ZNÎz3 f‚ä϶îÏ^sú”ùálÍaU1$43BA‚¨Êµ¦Ð6Lj¢à:l%üœE=¢€¬€Ú¶!*ÿ³røŽ0jjn³ˆ)lñk®Å‡™õr6·F;ÆËÝÚëv0žfW­&¼Ãl¿ÀJ3áõk÷R;Çú³Y¦Êp0× ÁúRîüGSýg`·fŒW¾ãåßšùÅÀ·yøÛ‹wM4ÀÕ#ÞñÊ 5jÊV
+³„Uz„QÏóÅpqtÌaK–a5¤ÔGBXû(ñ¦ã‹(}P]mïz,Y(?ãRt¿ÁªÓì•°_éy‘¼½íHóäòᜠ¿î<.áú<—馩U!wÆà–• üG
+=ü÷ñ|—Ên
+FüLÏ6ÆÊgŠ›b’H~
+#%週èÆfu Þï@Τ:gJ'øº ®A­ä)µç;-Êhò}íÔ~KSæWÑ >þÔß6¯jsÕHMP‘E6-ÑÇÑ×Ïïµ¢»JC`Új3Òæ¾:‹–fåSÂg³
+
+. „Øm".ÕD7ï[4*ã„ÉV;Aµ`ÝÎè‡_çõJçLšW”0çù»˜ætä˜Uăž_¢
+‘:ÑMÈàÖ%­—ÈTTëϯ«bÛ;e<©Eƒuž·^Ì—{
+}ËN^mBv?ïÍn4©q¦vЇ :—Î×:æ¥|ï?Cä "uýÝYò´žp¯Bt†2\pIËØÑ—‡=*‘ªã} êôa=M‹×'ÿŒ“®Omx:…’ñæéuîÏoÇŽãè_k{\Ê`@ô“†k,ªIYžEGuBý’–NS_
+B\0þì7lº6•ÄwëH7¡·Ú·°6øËݬדכedjï˜k;|†g)x¹_-÷ƺ5‰$st,ȶA}7Ýoö²Òé7áu­'Öq5Ëaûv›üàÝ$–mÖ* ß3SžÒÝËj &HÑ< ¥EµÏ{è?æ½5uaþœ*$õ—81×Ú‚¥RE˜ÿ *ä‚aÂűç¶ïJ­)º6eC£½ç 4QL- ³
+ÙaŠÛ1‹¶@èÙ×S41\-àÐL¬šIû(}*ÉÈ c9·´öêt=bn:`BxxøÆ‚‘^)8]˜:ƒ¥ÆÅ]@RôåÜ-µ¯Ô›G°þçøüá3Ó8¸8O}G_ý_¦£UœNèv.qòë*vÐ& ºj£Ù1RgM¯dMú7àá o@bÕ{#¦m˜lénY¸¯P¾¯Í±oŽ…BÈcGù œøâbçÚ¶¬°Ùºíý½ž.žýꋼÑ/µ9) lqè)„"´‚¸v#Ü#²ä܇~Ï,t ÷)Ÿh ‹PiŒø
+­è+‰[ß`Cb2W·éb3V ¼¾€\í=^y'2SýlEû<7 Ÿìu4e†d¹8¶ßÏE;;+–Eéœ žåGk‰¶o
+¶"pï.êþl¹ w> „
+()(LXªB©Ua}-šen50íU(8FÞÉ3•Mh~Û-f©…óå£õ»âZ,9קè&ÿafnðõTYd§Èñ“_%õ‡ò« €IÜ›IB»üü†¤Œb””¶ó±öuáâ0U}ПêÌÉ0ûñœ­”Ç›¢´›ËQFeJ¦þ¦x+ìxˆâ¬²‘`D÷qSåzµEu ›½¹kÒ©¦|/pÒwÌÝ›Áç^º¸–“”b}Ëœ\‹þëÜ ÑB~¬þSÖíÝý¥@â^ÝXbž3iAŸ’…Ÿ¡€’é©Oõ£qÆ^ÙÚÜ8‹eÊMZïË
+ÑåhXy×^s¨-\££²,w„ð¤ðGc‚¹‡«ÍÔ13Ü|
+gãï¥ëÞ€æ
+.bš~¹> ‘-‘|^ð#쨹1Ûü7¨ôÍù^¾ì&‘¶XÐHe<ØåY;äÝĶÐV;=É Î_l™\Öñ´#^¸§›Ÿ X®)ª›[:vc‡uíÂdžÓîpèš.y!·Ò‚¬RѨå!½6+àzÁ1ÿ:m ÅH%†ö·”QCm×}‹a<²pá!ÀŽ‡ú~x‚hsTLšÏÇ{ÈŠø«0¬Rù;¿è2aªö(õvs‡ªVoürˆ¼ÕàÅg¨¡zEinïì8”D2´µ9(… d‡ú©üÃ@
+ VÈã#áªÚ¡
+6ŸXÂȆv
+é= ÂÞÊȆ‚ñ»ûvýûÛŠ„T¿ºñwûÝ_fÞ æSð¿ /Ä‚8 þDÝïµkç‚‚¹aÜœÐîòL
+0¢×L_g¬¸JÈ=Àùfò¿æ^õãÞ<íp /)8cÈcü,{B‘¾©zVÌ¡Šõ¤`0ýübέ}Næý3WÊ<@áœjoâ6crÊÏEëÞ”UŸ– Ügºí9n–3ž‡œ^óÀç‡Éšk9[9}ª»ã÷dÉïÖl­òSlΨ°~GžÔé}èyÛù2'Ú÷ß¹Û·*ν¾üªÀ@Ý[½7RÒDl°ñÊ™ò”––
+ôöÙ.ï(ò%Z´%涙=ÞR‘FM4y¸§ï>s Às‰,çz +
+¼ýÚiJËoAÞpKsáòî»´éä"VB¸Fqà¸ÿÍŒ—?æ´Þ2sØIž &Õô v+MÛY;<×þ#˧¯è‡"¶D¿›R¢W@Œù=U<H‘T â&[æªåÚlü9 ¶©ZEåQõv‘eDJ×ý)&œ×Λ†¤˜Ð3jö¹ž*i?î>dýZ22ºÔ™šôɨvÜÛZ@¸¡0Äñ þèõ•™Jó‡†èÞ- ¢nµÉ½ÿ|Y<ß”4ÎJ%LŽ†™Êûô›Ó€ÖÌ• ©Øƒ©m\ö”àÁa5Y9ÓZeCfßG%fVþhXP²o,Mºvèø*o\o…Ù(È%Oc£‡sz‚Ž=$™þ L±«€‹Êø…Kº!H.¸ÀسƒA˜a= mE!Ü,¤mA.t0„ –s¸ßýr9^Ü-SÙ2_%$†jó¥H:tókXË›¬˜kZX¸¿qâ­æ=ˆð¡Ì¬T–;¹~Þ8X¥LŸLIúK£úð~&–¢ï È‚¤w ;巼ݹÇmñ*ž0‘>!±Qãëç@\Ñ[-.×1úʾ “¤M¾ëΉ¦:UvÆË89©°4U´Û‰0mE¥ÕÚž
+ÔÁê)×Ã&ü*-—R ßÝ ó$ÃÊ
+Ž4L^ùGS1rÆôË¥7âv_˜ä:*“8ÇZrÊžGÎJïeÆP#0€×½ÉÜöA¹üvüð:xˆ1 önÄ` ç?¼ýfAæTñ­?LJ¶Âb+áË»Ð4ôOˆÉ·+‘KÖ -ÂwBÓkŒr5k7üïârÒG=ž]¾Ô5‘¶8×ó¿ÆW˜¤H£×åû§÷S–)Òê­,0m­$O’ÄËëÒ« 2gOVvè%Y…‡±h¹=‚x—©¶>8,mñèpI#„Ró¸âàäÒ¾C8WPȾ8vÏ̪jÀ¯Tn(jó0)à%WÏþÛ$LÐb9dKµa…Žæ÷¬á«à¬pͨèËi0óÃC8Jy]s›Âv ¡)s\c^ü*YZo>ðTUG2²³Ï ru—çÐ[A@Æ+qEÌŒé-äyúÎwlH„„Le½(P4<öxÿ'÷k*šók…PcŠCñžNô0ú® meÒ}sÿØx(á|4)/ìÒH÷0¾7ãUØñŸú#Á”Òy’†ö…Q s`ò·$Á Ë„ÏÈÆ y§clM æáe\qžZ‚‚!¡3Žé}4VOxá4HÛNœJï„´(%bÚ0]+BV${V½ÀŒ“ø¹U4ìx+ÍÄCf PÛA~¶ UJÏλq ð\¹…}ÇóåÊöž"šªŒ$9)C¼“$‚|ûîAù£®þ‹®š;#Mu\ÀšÉQTÖµ9²o
+%"2¨’]¾¡IZðiƒÆÔ\Òì ‚®D‘ÅSâºýn‰á*‰>“µàOhðÞ ðÖfìªdß—Íx; !µÚÞÁA(׳Õï0D‘n†ª)Õ
+”¿´:\2È7A°ƒ´.QÍVÑ.‚EÕD ¼L¬¡n¿lŸK¨V‹¯@Æ7d»‰AöbÁ³B)£Uä;½_"ãsf&N'@¢B ´mq£–jpŸ\„úŽÎÕ,<–²H¡3øè3G}Ú0%q—žoöXƈ›Xš9Œüÿ(Ç1ða¤Å>B¤R&Œju:£ÿýÌ_Ä<q·ºÙóp5=Ì?¨1rH+ÄZòåqæ.«c¼ÆÒ
+u÷Cöx+Ÿ¬å„µ9¿@îºV`v+Á?·¨&’bcŒ›+͈\R¯»{«.çÉz‰¶MGŽ³+ yQ”RCuш3CF;4îT/ÐgFÄDÌÀª }ö]®_¯T¬öë&ÍÈôh ƒjogsÇ[
+3af«„•Ü~~x/&~”°Ô"2ûäw™
+GnÅ Üß›¼²/n¿Ü¥8;{²s (iu#à±ÎµD‰W¤zF/º®vMŽ|#௵^Ü»Êçf¿lön•›i'›Mò%Oj"Ý”teÒÍ9ãКVß¹…ëda/4~¯—»2bÕbr8f±{
+MØ.ñ%džÅ$¶)ÙÑ Ý—æœ!àŽðÿÀ&ÃÅç`kò¹5žÐ Ò ,ÉتùÕØK„ü:Mk{Ai¥lš„”òGY–iDΩþÔñR; ’±?Ãûɶ,!*¹è•"¨dÑÑb…B+“¯{Þ€gz•Únϳ™÷|¿ס‘¤].ý¥2°öt-$ÓGf-½N]¬cp6;´êH©OŒŽ¸,Ù‹¹ÿÆ=6dQ­ t”ípOÝK’OyÌ5ï>–Ÿ!ᕆ åµÉRöZËõñø¼” —Èt>¡ñ²%¢3g‡A)úñ¬[îI…œ+j‡ø2…1¬þHÖå&gkóÅ’Š
+¿ Åâ\kMÛ¯—ã1!sÞdK.
+ ©0_‰”f“Á Lôªkq. ££±qÄ×{Žyj\‚H2ºQû³ºÿÞÿ#z¥~Þ»åÓË7hfv„.Å°ãZfÓæÃ2‘»uÓ †NÀ»û†/ŽÛðžK‡]lê`á,iŠù¥.¸MV'²‰yÿ1ã¥N¼Ô>'ÁéæcëÀ1à;¦*ÿ{ŒŸ}û¸†"2oM5”ÇpÒô$3vùðÿýþŸä¤«/iƒŽC¯èR×i$.ŽmMkïpkJµîü{‚uÅ[ì}ðq‘Èm6 œk•÷•¹Š:Ç´aàûc×B&Ö1´h^O–€19?ø¶ô@Žê5CÃr¯Ïn´;ügEc­ï¿ß5Ñk xûÍU¯Õû0(å#¦=Ë°"v’ÐЖèåˆ-Q½ÓH
+endstream
+endobj
+3200 0 obj
+<<
+/Type /FontDescriptor
+/FontName /ESHKLK+LMSans10-Regular
+/Flags 4
+/FontBBox [-420 -309 1431 1154]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle 0
+/StemV 78
+/XHeight 444
+/CharSet (/B/S/a/b/e/four/g/k/l/n/o/s)
+/FontFile 3199 0 R
+>>
+endobj
+3201 0 obj
+<<
+/Length1 1666
+/Length2 14527
+/Length3 0
+/Length 15607
+/Filter /FlateDecode
+>>
+stream
+xÚµºeP\ݺ-Œ îNãîîîܵqkÜ
+¸ÿ«µ©ë?¹ŠªªŠ
+Ŷ]oM®œ¼¶Pýmê¯äOˆ"%6š­Å¬œ®´XÖENw(Ÿ§[Ì9“Þ–ÐFÐ=’àëè~øÂ>ñ†~ù•Ü ¬m5Æ£pŽ­ËÅÃs “pqªüö€cÚ'¶D?k’Ž3*ëÔÛf¨…ùM³xc‚zNE|Gøy”ZÉ— «@¸üÒ*,Lpß-/$¤ÿðå5G9þÉr†G¥ñšâ~F%=Jï»y>Ð~“/Iëa›9¡î,çm5eaMß1:¼bZ[¯©õËëòˆâ€`Ã÷XÓ†N
+$¶ zŽÜäbïû:SRy[…ÂÛ %t¬Ã,A¢h•õ[]‰`OפñÖ
+(Tf&è¿ÏcÛÒ"§vNêé×úÕDý—ø‡²™O˜'èèm6®¹Ò
+ÀЖòY±Iñ)Œ¾ûpcŠ¿Î1 Ïß ‰âê.W*PøV~Ù·©O;$î­xòâÕk8\ÿ€Î°Â©Ð3Bb9Õ4þÂÞËÚß0_²]ñQŸ5p¦æ×
+\gV‡l“$µÇËݦ‰Eí1þ˜Vtúiè(ò’æî¡…ãO]¢å¨‚Õ$‡õ&{MWrê‚9ø°¿¤Ã_î ×+”5í<ùŽ
+Z’*»x2GI±DÁŽ¯ht=áÔƒ¸ðj©@^|)u)¶›ÿZ×3¯u™­íó³éœµ6ÿ¾’©Q;­qÞc Tºµn}ƒì«fñ‹gC#ÿRI€¬úD3á¿ýiJ¤•¯Ú+þ °'‚žáBŽƒÍÿ£ØçM…k²èfŠpp²yŸ 2vù­PT8+²2¹ÚO¾t¨
+ÿXyh‡{l°êyŽôbÖçg<Õ&C¶Æ¥|<<îeJeÃ'Ô:<ÏaÕk†Ï§…îø›Ýt¿—tÆZA|]«ñ=4èYÚàÏu”çÚ~£÷Oã/È7mx.Mž_e7.äÐmr˜óí«<ø·áÃöoµ;#>80Š¤ï4Š.™_6¡<bPè03ˆE`ØéÝ°‚_µß42QÓOoGwÒ¦ÍkÙj3Q^C’À`vBEs:ÝÔ5YŸ^¦¦ÁÕîP«Ùì<'³ðT§ó Æ]íô?lî3ÀvâCi1œ´ïá»I1rRèÌujR’bX¯w¾X­–š’@y1l[8xüÃ/®¡«—ˆ¬!ß >ÛIòÍýXî°ü\Š›’·ÜиÖÖüÈ…–ô$ò$­> Æ—„<V3vÂ$‡éü-™9b®Ã{YiŒö§,fwÃ`¹È·¢_ùg¦zHMH†!÷/¿—¯»E™>ù‡Ä"wÍ4_ ¡¤+¬=Có5ür>ð¦¯bØXÞbJMI»’8”Àzž|Çi·8‰Ðˆá^æR fíõ×5D± 8±O£êþRD<û¸Ñ!¡É gpÃ숕$õbyiÞõ°C!»Þü›T,¬ñ÷ÔŠHKŒSŸi^*ýÜ´6býs8W1”T¶Å'Ô„Ûø‚òòr—œî
+â[ŠË†Úp‰QÆBØFœB£IäšÌã¶ûÜsnqßÊÜ;^¨‹)1½úR ÓsÑmjm;ýž Ü{Dx&T
+(
+ß,©ßañíê·ÜC³—Òj&…®-ý«¡dcª†lvT㙈å3ž¢cÓ¶eÔlâµÜýô¸ü%Ê{³ïòîCùeÃhn|䄘šê’”±CmËØ«p%Æ ¸] ‘0W&ù]ÂœYÙãjF>Xm¸Ý¢ »«©KsÛ}è m3mÿÇa")nÌ2äÊ|7#•„g±}º ûÆ‘>™µanÝ—‰ãàQ è'ï3@Æw£­j\¸;ÜòÄãÝ(™RIíïÀ¸ý;Þ&Ò5sí¬ße
+¾j.Cƒ kæäÂÏZóÁ½Áôæ©ŸUŽë½ÎóÝ®ä"Út쯬ËW¥6‘£Õ¯6›œB1ã-å4¨—NÛ°¹ér0p>‰†i‚"™¸g{_-"ý¸a¢a¯ÊÚ1ˆr5>æ JlD©Ä®”i¼¡Rå
+UJP°øï,Š6p“¹<0.¸LšQŠ„ )§EA{H‚;ÃÏCNˆ}HåÒ÷Ý"þ̆…ˆÀ—^˜*ß¡‡¥ôÔ±b)ëÀôs³H¥'îþÙIÚû!™mín^™ï®‚Þ^÷ºÍ>‡OCùÖ –jŠ§4
+ªBäµÆ+"øx ¥CrºfË,lRéN,ú¥·X…‚ëœÔ5ábs'Ëé•ê5 =¼ÁßÎsN ò¦´óHÈák|ó=Arv³©Ð(©zJeF]øPSs³Ö!g[ÙC×ü×]&‚^÷ØXÄpA÷º‘ë¹)·´á{rQAÉû_F/ ÏûÐ䃌uö'¶9¥ø …Êl]8-7‚‹E8>5¨­¬ZõŠU;$îx"õ…‘þe¬<¢"(! âK4øá~)¦z˜9§©}—5E!]pìJßÅH~Ôhžtª…×À ¥ÿŪK/<Ï…‡]ª “
+$|š2¤Ýuû(½?RÑ®sš¥0Úž¤7ÂV/-õAä+éêˆ*ër"wm\.„9æêqŸ–[Kšú~ÓˆŠíÃ
+ÎöµúžÈ9 u!7ôÕ0OzšŽH$-…K„BW2ÝÝËÍ@±“ æ!×é™:Ý‹9æ.GIÏM^)cþ,`u[DZï¹,67J7Ì…âÿËWC©q¼¢Šo
+ù!<çñ!}õ1ˆŸûøOI›ê°-s5“r<ÍšF5g¸„lÛ— hÍÅw(ˆbôV8h†õ§¨(èÓ•§ýÒí߃î×Yû1ˆ×šërÈ©ù!î‡ZÇJ˘¿Õ­rr)l7kÃÈÃìW÷@,•µÚ:ß ˆ*ùÂz¾Þˆ›²¼}™–ª1*M¢¹Ï?Û¤ÊH’2ov¿)ÅZL8ÉTÔξ:+ô2ë¥ýñ+*¯ùUÛQI‹8[:›j—CÓÌ Ã¹:kÓ”[œ¢úºž,ëýik[Ì%®v«ò¹Ó‚þQÍö;ìBñHâ‹ŒÐUíÒÏYQÜ\¦â—ñ•Qä7à‡¶†qOÙQëBth´ŸYáòàïFÚ`cð¾·óXØŒ‰mâ¡$VyËks©³,gIhAŠºõôÖµ•ø*]×2Ñ|,ö¶pÓ[OCâfŠÜDaܶT¶VûzŒð¾V®cxÌR•xøüd«ô:‰öV3oåí‹Ü^¡ÀuŒ=½+”%j±ñÏ'YöàyÌú¹5
+Í Ë{»ºƒ¾¢­]øTzÅ–' YIÑBä+c¼š{¹ÝXèšú§E·ô!O;ßr’6ŠæŠ¡½ácä— €åŠr1JâÐB&a@ÓŸaèŸÕîaÒY:…»øWJÒF¬¤ŠYS„U6ç3è:ãx·Ÿ5 !¶UBŒGÃØï{Ñ€®V*r\±‰8 úIBȇ¯ãò¸°'$ȲÕTÏÁº¤ƒÛÜŸu§FÍ5e`Ô‘‘’$EP[ŸÁ{<Þ¾2¸”S/LJÒÔ„­¦Äut¤ô3:ú7º{¹Öz´1Vµ:WÊâ pá¶näGê YŸï÷âUë NQ«Ÿrüw­ßÛËØWs%j°A?Åô’ML(Ì|9TóE´gA¬¥¸t”,WÝ$FðgÌq?ÒsfS!½=ýôó‡ f
+³Ø¢£us¼ë/æšËÉdåšÈÍ×G;²¨ È2?i„ çŽ"¤ÙµöQòŸñÊÒŠŽèÇÃÔÆ šŽ&!Î'ãç
+^†CÔÏ|®Z‘t-ü‘M­,>„‚ý›¶¹ó-?XxL)wi¸Á3†‘›§O1Üße,º]΀5ðºî}Í2ó÷¡—dá¬ë#ñ0—¬AZø¤pN}yÓQ‹UÞ!*'.Ó{ãj…¾¢ÅÑ(†í/úš¤Ú Èxs“'É}ÏãöÝÈqLŠƒI ¤V^Õí®‹h† °Ý¼½0ì
+ö?ÆšÖz1Ñ^Ì–­ŽÝ„© dÑnt<eZn;$"dÒõ™äìÔG&ŸsQ»¯™
+ÒÀ¸’ã ÎŠwp¾ÉX:ªÉ£íZ°¢–Nc”w·3®Üq‹¤`Ä“Á"Öò%Ï­É@ü<eöæoĨý˜jV¾("«3K§Ü´Ç%þ4 Í$¢L èâlÈ™²%7‹¦þ!d7âk&ïÒPã4ËeÐÀjr%Ül VbÌÔ·ï¾(…Vå…?Õ)ÉYs?ê•ñó$ÞÈšö¹èÆ`†ñ M-9^‰¯Åqåøà'^ Ê0ÐÖ¬€h†ÚóB7em“„ñ<œ §&‹3‹÷uÁqú¼¾}ðHÖžep¿ÒÕX€)nŽRfIªÅEtÄ¥*2Üìf©‹ÒU]PÉ÷zRÉ©Ì¡Nû>¯Êm!ø§`°u¿ Ú^í›W'ÀõVÊkBïåm!ƒ±tw4ÚÕBDÚ˜&‰­ú¬=ŸzJöÇFµX³?’ÇCô9#Ñ£5Û&aÂÈf"½ «Hëœq›ïsìB[£e‚ÍU™Î … g†0¸ýéVVU[9úe–n{ìsö,ÎO!Íóö‡èìEì+b‹~PÀp·le©e„·ÆžxÁöL*z“æYï”Ä`ûwOàBǨß>œVµyV í@pmU°îí–ëRSƒ‹eC.¼Â–ó÷×êGo ¥¤¡°ØhÌòñ}v
+Šú¼úW‘éJÏ•)c§¼7'¸ÈO^LLËþÚ, ³Ïmr7U§X£Ñ;™;¶q¥'[ÜèâÁ¸×ÕŠZ·£¯¼ÂtoÖbE¬$˜¥‚é1NÓJ{p€_”Õ²Š0‚Y²<+0ùøsk”þlØóÔMÏóa,µ/ñ±ËÌq5ú¹¬xŒÆÓ÷wZC?`׶טM¸€Ð@˜<¤ScÅÃÞÁœ*V6:£û'åò]Óª}Øšèóäk?;I,QèŠMÅ~åö ” &µH,ŽGé-ê‰íÜ~}ÚYæ›o-Í‚qÓÙ]V²e”…C&<ô9³Èê(d×!«+m£ðƒŽ¡´åaö­ÎEë„ebô:ò¬¾¶›…!U´ûib$ rûµvÑ[£è 0ÙJ íjlçÅ!>Úô@Gä¯ö}Ö–åP‰Jo‚kYض¢~aGaþ„+¬&°T]ìáŽ)¼Iïm Û-¶Ï–,R¬ùõ€WÔµë»@×Ãa·×¶,e»Ð»'3Ö9 söM O錋ºÇq¾­éR<·|U‘˜ŒáÐV×6#ß=,'J2–@ RŸ•³4K¾¾ÐýÃõTŠµr{IRI΃»gÅÝÌÜê^=‚ÿ;©ÿŠCVãç/9-Ïu7ùóª)n¸
+̼I¨ÓòéXGö_GXö} åpX?^›Êl­Ø‰—-õ€Æof³1¤ˆ³)˜°ía‰1ç¿=SŽ‚d)]ú%›Ð—’‡§è—ïz>O´jsöCùúìU‹¬#»#Ý«U¥Ä‚sšYtÈ>RÚ/XF%‡2mA%‘Šºÿ“»ý¹Ÿmز4¿]b9ƒŠÂ¹‚úè9Ó£šë;;´Ü‹Ú¤$úÜÉ^ÚS
+½Qæ3Iïäº]-v³·¸¼¾kÁ÷$$” .éœÔDÏ8DQ×Gù®Ÿ¦- …J{gÂ.t¥´ÃòÃWibâ\Ô=²Zg<!ˆ¾æ›ÞT¯L@Ä¢`¨àŠöâÃLš<ýÐOî®ËqHù»R?wŠrtÜ"JI§Ðå‹Õeí’Ed©lz§ï:!aZÕ/I‹{‹nˆÌì,Å£>/4›¥ ‹ Rz,Gý+Ý,‡u/@ b=×ǯ"µýÊõ†–^¯ŒöæSO ß[–ádï1ki°háJÛôc»4Dæ]Ÿ¥µ–äÿk/.÷$¸Åe?‡P¾Ô]ÜïLq¤çf¶Q÷nö\Æ
+(4$ ñŸ gŸØô×H²‡\–èà1??$`]…Ö-d¸0€}3¿˜n뻾di´­Ç…&o¸3r]¸,X°W¶iè»%ņ(Ö$¼!D}¶ì(«dZX–:¦CáGë«BVô$úA6«ò­)ûºŸ«ÕXœ¼¤­ÙÝ4|/SÒfÕ_/A¬’Q«?eºVƒaí– $(IðymÌ…?ñç"¡À#ŸÙ!¬-Ÿ?ßuÎ'¿ÜG.(¼#+]S„©*µY]鼎†¥ï/ò¯Zd÷,y7rÜæû}}ù¬‡²ŠÒ…Þö6Ÿ¥â_ òîÏlCÏ{`¸IvÈÓ8ZôÒž
+)ªKDD\ˇ¥"÷ìû¢IVž+¬`ZÙuQ@D·n.ýÏt Èa<ª´ÈZ:¯Ö»\™ Ò¦ßH¢½zú$Õ«04¬ ¦Ž’‹xW:‘ai
+«Âêk¬¼#±bÕÏ•sÕ-…ߢÌ!½§vI¢Ž-E~¥d8È¡¡=¸Ï ±õ~¦Y‰Œ&¾L§¨ÆWŽûƺåýäðAÒc Nsí¶‡QÖ}<¹ƒúûÚlØøLÿТ’Ó¢±(R¸ûëñôunNù§¯g󴶫&–6Ê«pˆ¤Ëy"!=¤0Ì
+gRgh›^/›Ýíìá¬u0Ãð›öÏÅ1%ãÔòÀØÀü5U§cÛiêsò^´Ç?U> ÓñB,Û³PÁÅYqÍkò‡I£ßÎöíÌÌùÃXVÄsC e ·´iu/cä!4ÄY•aÓ—äOŠPz~jÓš7÷ËÉû¬ÉÑÑÙFR‘hñR3ûáád¯]|I3é,{žä›,FcÕÜìÆGâÝ÷§s¯ÂuàqH 9ÆÔ‡XŠÚ5˜¡ÏSdóÏü.^\ˆ%ŸYÉ"9´ž½‘!’lHzú¹Í¨m´/»”cë°Ü‹L)·•è_ë^$|Œ½ßu‡#l‘*{c%;‰~À:—VPŠÚ©=Z,£^Çî‰2f7û©wì½r¯ÓTkAÆô¢_3®pm”x©¤†(ª|h)̉Zç39ÎŒ¯°xb”2ÔÛ.jäzVjœ«ÀŠSE‡‘“ÍE-ñß©`Z–<ÚÌMßÈŠµBöÐBPz£ =,“·"A Ìo ͧ~‘@©à5)Û†`ÍœÝñ½x”<k+ÖªaI3…ùp‹XIØõG5ÖzŽP1±6%.BIÉÑ©·i¿:½Mæ[ïsó܃|­~ØãZÄŒêl‘)²wñ#PÎZã’7RX–ð¨Q”âÏR{ò¾'òi¡Ge)ˆîv/‚/5_Ájõ©5ûQõ:g¯ó‡‚Þ×ã™-!i™ÌŒì^üUd$k¼+6عM/–Í2Þ–+ž5ó{u?rv½òú*v—*á·öý.K®-z‚EÛ½±ðƒ†$n_Ârž~Qm±‘y‡§ƒÀ#è+ì6¬!”@ÊHüŽÉ²x¿r2k‹+@áL0¯Šé
+Ò|¹7uãÃhmÖ0=qyöð¥¾íG:ñ8X'#‹<¢ÒþþøZ+]pˆrµtPäˆòŠ8sš(£ÎšñuñůšÒÈLó.YéfmíÌåËCTg¦{uñª¼(øû\Fes X²nýÁ°Àâ3¯Ti_*%ð<¹8u#H/ýy³©YÅ_ø“Ë®ßqy ž® Hm¢%1ÓLÖƒXÏÛ¤MÜêq¦ú\®6W¡4 Á=z†1YñÖA,Nh!Æ Ž²âÒ,ß6f *§%q»[GxÿóW"Ôзòû [f0„X;m“ìJˆ{nɸí®Q)‡'ŽøÔÃ'™ª•á& óRœK)]<*XæÐnýç‰UÒÐM!¨¼**¼×^B¾§Ùx²­¦›û‚¨ŒoõJ^CÄïôâb9îÔ k›.C!<E47Oà9]ç¥[¦¾xƒy}éÄjÒ€G 6á{–óØ¥šïô½œ@†Û4W²É²§#©QõͤZÊ’‚úE\ÉÛs&ù¥íýœÐÜ‘7¼³K¾ôc¯±I&G:”/¼AëwôܳÎ% ÑA6+-Äþ¦$^]è×<£4å4}†ÀÈø¡¬
+ºà
+p½7&Ùb‡ˆqØÉ 5",4×ò¶°lóG/
+™müz‹3ƽ+‚Ø=(^·‘i$ßÍ<Ø5«‰@þxù²úå˜"ŠJ£H9ÒBsËe)Ž
+[gs&y6ŒÉÚÅž‰ [)=™#zÔ­¨€T3k4›ê„±Õ΃ù „Jù—3ýG@5÷y&;òà"†Nê3wTS¾N3&U®ŸµÐ´\w¬ŸfÛ8{ø÷2ai±Þ¬ Ë8šŒ¨µ¹߆áÊB‚å"‰c6Ò çiF²Àe‹~d®Zè_lîC[&¶°$–°~ªýýc[/A¡ü÷»Þ>l˜˜ãù y´Ý æÃzáf%BÛeO _®ƒ·"Ä)¤zìbÆùáöO­|̈„£÷ˆz
+6 “wúÈÕåz†eYƾèÄ(Alšµ°‹f牰jå’;uÜäN?ÜdÇ»ý„²2í4—¡Õ*äJöo­'Kê.Œæ<¬ø_¶#ö™2{ØxHí8áBÙuçSŸeÎ;”N)?É”wyÏO¬²ˆÌ(yáø>2a IâsÙ¡)r(^q×· {?§|/C•b‚ŠSY‹§÷·´y|Üb›>ÒŽøÚ˜²Oóa1\™HÕH
+ á\§ýÞÅùÔoœÂf_™¹•ë;Q¦wˆQKtr]mʆntÛ7?KâVÚ=ÙT]~âz‚Õú‰^)#¼|U"Žj¬«é[þE몃É2ø“ty„Ȳ¹¯Íé•[¸ù¶ðãZY¦2wúüéBûÛ¬c²÷­ê„6æž÷Úd†éL›ú¹,—Í„' –¯ 2"­„yêmÒ켂Èïu¼v•è¢ORb`ä¼<ÔE3FCÊ @žŠ¸5ᢈéH¦ë.¤vI£ÌáÌßÝì­¨ø¯(§ô¿ðgc¥Mxy‹t¼ÿD®ª—r?ä!ª&Aóõ¬@ ÁïZ³F ±+¤±}~#†uµ ”d˜GïCúBßÂv +kdééZÆtäX¬Õ
+XÏúwAØ4#%m!ÍïÝã–Cš¤g s_×F£Ç à<;ræÊ<ÅÖ1¥_H»u5RÖíˆ`}¬^HÏHs¢D#YF¢M—ªm
+ü®ø=³ï5O.«-”WrÅcœ”ËKr4ïó~ ÓrÊ{g ]ŽŒÂ•tHFFžÜJ¤3ê–°ny«­ªÞ$Ç5î2èø¾IÖ¤SÑ
+k\Ì°#›Ÿ®Ügý¡ŠÌýfjÕ‰&àKÌf[®æ¦s6fèmµÿ|4UzPGP[»r*øJÛ‡Û
+Ù™ªÒëðȬ¡lÿieÏ!×ëCÌ<ß³óº=íÅîLÃÂZ˜ùüÆ\qØ
+È¢†MÊþÎö%5$—|¯ÇïÛ+ß*Ùÿ²ÐÑô2d£ðC4=-u¬<³pÐT62ŽµêÃàé7ËíÃ
+"¦ù_‰´rÀsTÝnúPÞlU¨RùXþ†þR¸‰òÇ~y\øö¡ê¯Ôµ°¤/ó‡.þ‹XÒuÀQ·ýå“\ 3C:8õûI»æ¶ï1–›µcHî‚kÜ4ù®~sX%w“i·*¨fíe“Â$}¾»2vÖ lrèüÔÏ6eÐXãhóDö‹7”÷flÓœ@ùÜ÷ß'õ 5.0îÊ
+šªBXÇ'©_‹ !û#âNkò?Sˆ¨…òFéÞM™ƒ‡y!õ%…yäD퇄?õ‚Æ>¿’ä…h< 5SÙ4èµ³/¨<ý–ÑûU¿Þö3Iøº×d¿®“ 1ù7²—[ÐMÎAÍ]MõéŸÇ
+h£_í+pŸ?í(Yy,Á>ìÖòVh{UÝòæR›9ˆÂ?¼aÜvî >õæ:Ó¢Ä]W +F‘}?¼øN…ncë-ôce3$IÜ0A$ý¾uºàÿ Âõ¸5ôrl§ÒJè4ׇŽj\.ü!AŸO-ÑU#\%ÿ›ç0ÃÍ’¦~Æ[BO>”ºÅJ æ Üød$ÍÉ\Œâ´?X/¶:ºHUý&Ku)|Å„mþ^%¹Ø€.™Gãï¢0Çí^üµ}æà{ È>­~ZBMR3búÒ¼¬®.L©ô{…ÏžøÔЭ¢zñͲÙF‰ºàäø¦n;-l«BÛ›Sú¬ò“ sª %åXø¥Ö³,¦äÖÔb”åBÃÝq’‰L,]l6ÃZ…€Yø‚ÔÔYËemp¿Ùi(½ _"øi²—Ä+æl\G—4)k6ùå—“ès_¯¨n˜®…#*!fhòbŽR¶ƒj,2''^¾fxÏ-WÔž|û£ñ«‘§5™¯ñ íaûú<
+_ä”–ù7hÊéÚç–Äx‘¹AìÝrBÄFzÍ› Æ®ó/ÒŸdÆà1|MZåñˆÝž8±üRB’VaW@T2õ-Å–Î{iò§=¿¾èf^T%6ž³\Ê)¾}Ûû“¹*Ùƒ$Ét†Ð”1•‰µ:'iÁ5I^RÝoxh=(¹ ‡%9p\ôK¤Zá8BŒÏä®Çõ"Sf§ê¦*÷ Øf5s¬ñæ[ÿäá°?‡²©¡¤‘Ø/’¯zëéÝÁ
+13‡Gw–OS‘}]#ü¥ÉOCî-Õ$Ì‘K»ß¹ñÌì×9aèsÚÙùpŸ Êx¼¬ž¯%–‡ÑR?áil³y·›.]ÃYlѾâj^©£†pö¡/@ß›|ž+æÉ´,MÆ~bYR¼_éJTB.Y<"ךD ¾stZñˆ5aÿMÉéÞ–·©(ì» g.'ÿY9/Œïå,H9;$Š¹*7P•%³À±Úkh<+û[²Èëþ¡…Ú½Á¶’ò:u)© –½hÝ0€ï›U(n|tK\Ƀ+ ؘ¡äO4Ääb©
+ÙiB`Ëàæ¥[·&|ÐëQîºE%Ü/M?¯R)X 7¶ëÌü8’$Ë!Jnœ:ôPn'5ë¬ktÞ“åvQCɳëzp’^)´Ò5•YÈx ¿Š¢šDÜ»Z§d~§n‘Ê×­ý÷_lùâ¤íŽ[;~¸2¸XàL­~¾­†ïß(…(FÙtŠ«¸‹þqØÖP¢Ôå' ¥QíìŒç|Š}â5sóç«ùöC¥À8ÏS*ª:¼«kÓœÀÀmÎü}x|Lðˆd}m&÷ÝG…é8pz·‰Gç…o™ê=zõƒ«å
+?ƒu*%¢a8iYû'¹oßôVÜm 7]Ô/1kupDé¯ý°h銔_-yTÁj^³÷ 2³d¸8$îs…¶ÝUƒãB±[5½Ÿ$R"sÿÆcí¢Ä1:Þ…‰{ÖR¨‚LIÞ|‘ܾcŠ]˜KBÇrºÌyYqì3pÛ÷ÊŸYUn„$§Ú=¢ÍÇ´=5ò Æ-(£,ÍnMÙzšR_(ÅQË1UòdáŽ]ü)‡‹tMP‹°…ì§v€wW·{įÃÎ’†®Ä-üÞèÜ¥2^’21œGÓHŽÈjüæ(¯Cðæ(*`ß>±.ùähÎø£pÂ¥dŠF{@¨Üò£㩇QÖ •ŽT*’^ÍÆÐH>¶IHX*êUúOٯ蛻b^w/qÐynK»ˆ)À™Iª(`™sm)ã& Ò[ýù h0”TR~³•G”~¨¤o‚>÷ú™0áK'?$<Œl ¹Ö†TˆædYê8N8èN¹†àîŒ.¯™vÆ7¯k<8mÔ^(îÐ=O<` -bÜÙYòÓRÑYÚÀ—HeìŠü®œ«Ø*eu¯r¹‡­¹…e~v•…2©g¹»Ñ£Õa¬ ÌeíߥSˆÄîm™OjÚ´ÁM‹ ·:K .ý‚´ðYó;B jr||­Y§3ñGYRyèþ_wò;g¸þ^ß49”*xLŽuÒ5Í®æÂ5˜vn$]Âù%^¾¥ 2„¤qã’`dÏ®¶Úà*Kè\>sUqïånSiT³;l„ÂÚ fï”Ë~"{i¥EÒ4:ð$ÀËü»“—çÅ"=ØÁn¯Ò%>¡vþ“® ’¨Çºžä¡D¿ýá˹z‹ÂÒ7vÁ;à¦Â‘Ëå-7qÈ^ÄZ‘f„¨u°c9q”l¾Sœî:ÔÚkÊë÷e‚4œåÏØ!Åš­2˜ãÎ æ?–xðm»Ãø7ºF½(°Ë…qÕÿìH­¡¿Q~Ä¿}²WS¢(.¸‘,{à-»©y?®JûÈ~²1Õ:MƒËgh@»¶N°€§lö¼½‹êL¬y®D_é‡Éþ¾7Æ" C¾¶7liÍÜìÄûŠ`¤×}šø˜²4©É¯Z˜*«¤˜]„†ÀR‚“ÔPkJa­kÅì¦?r[§Ÿç“Àk¤†´Üq$==%èø½ËþE$ݹž1üÍ1³³ŠÉ,ªP_ûr16?§é­¡UËeh0Pâ­¡Yu`ø#LÈÈ*Œqº÷Ïz.ƒ>‚"ÜÉ3-VÝĘúšDÞ¥9Ÿ¨@èÂm¥ŠƒRp-²Ö¨~™£Ìmù÷‘ñmsÓAˆñÒ´_28v ­&­?4Ùó˜´óOS¾…øú)Â+]¦&Ú”Ÿžœå#qÝÂÝô2–«Ág1Úµmä l>n7ɸ–ÏIûéf˜ÖŸ+~Ƶînåð³£¾x‡æPEÂr V5¿=NÌW7’„JÂmŠ¡dŒì^ÍÕ’Š6ˆ¢´ŸYp—å|94 ÃÀxg*\§Q:Èà$]nPÃ÷…б™H©µ8å¯Tp”ñ–}ëŒ>ÀÃ|šÖ†JAYÙÖ¼h1Ö¶´ß|¶A)-êÞ-²Ã,„S [¡vœj,åóž
+ÎÙl+¤f6¿q¸é”ñÅòtSIR´üfÏ|XˆVx;Ž_g»ŒÒÄÙax–ÏzFuN2ü£w1sÕ@ðÖäP‚–Uöñˆ\©šÍ FÃÀâ¸4©hãGï_à}«ßöt–R]‰u瓨°óÿÚX)½óú¬Öÿ‰OKäN¾Õ!ÙZ–V´eM#Èd«Þ’JÄ÷7ØøðQ¥ûmd[*O8„ð9TwälÍ#Ô.3§' ÙÏrÖo€_ô#>¯qŽ£åÌm_~Î*‡4‡‘ÞEUz^Qæš
+&¹,˜Ö=…‹z_“ šnì5*ÕÆ{%„B&®/ÐTÙ·pTØgF•­™ö÷H?¨‰æ¶~N]k£«æ‚Ö¢ŽŒèÝñ+èÞÕ4­¡T:E\ã‘rõ°ðÚ™‰`Ë0å4‘;Næ§9ܦÍÙ Ž~ɦ†‹ü¤1¸AÇ88˜‡'œÄEöéöøÜ
+áÉÅv5ßxO$L¡dózé°~—ÈYXšÖ¼å)ÊÀàÕBWû.CóÑ߶i \†SQÖëv'›O/õèêyäõ°«2êì—5–ßóˆê ƒ]*nAdéèœ.lg¢:T/²1Ö„âÖÒ7/ƒ•+­¯Q:ê
+;xÝÙ§Y¤¾ÿY’³"a&ËM½=1ñ;Æ÷Íáçé!QQ¥Î¯Ÿ?(8ß¡MÍç7{[:gêz>ïHb^”Šú»é1¤=ŽW^GK#‰"Î¥?l0Ff&ž)[£c¢3£†½¸ åãG‚D^Ÿ›ÍZNuEÛìx™üdzƒ¬¥{ Q"¤ìÕ„¶ÛdL*ŒiÚÂLø‘ÅÏ.ßãÌ}ƒ”ØBçÅ‘@ò̳×
+•ƒº«.çÁ`ŠãÏåáBí E8ÔšY?ãqM
+ûªä^(X0@S½ü‘ííâúç6ÃÛ¼ÎAz¥«[’* [ÿ@OÐu†ÆGÑdéãóõúáyÀº'|˜öÔï rñ‡1¨µÆ•·}ö2ªŒl¤݉My£OœÔÜ»h{9<fŒJçL×èdsLÝdÍåKD'Õ ¾³Ù»ÂÂij¦_Ú™>R[jË¿HœIÜ F¨T/CëqnÌ&akóÓêÕ…©ÂIåõÔAG[1 ß”‘ÅÂðëñÒü³Ë*D"y4Y§ræN;=5”ÉîÔg†´ ÁÛýÉhDÇÑrجM³¼tU-%-v œ¸úÚn°|ùÈr­å4AWIRú7ÊAïžD¬ÏVè6ñ(«Ì‘{¤­¹ }ú³é‚.eµÑÏ}\znüi4°HqS‡L ºfÐBëVåþ‚y¡|÷
+endstream
+endobj
+3202 0 obj
+<<
+/Type /FontDescriptor
+/FontName /ZXGXBT+LMSans17-Regular
+/Flags 4
+/FontBBox [-395 -305 1355 1159]
+/Ascent 705
+/CapHeight 705
+/Descent -195
+/ItalicAngle 0
+/StemV 76
+/XHeight 430
+/CharSet (/g/n/s)
+/FontFile 3201 0 R
+>>
+endobj
+3203 0 obj
+<<
+/Length1 1776
+/Length2 13694
+/Length3 0
+/Length 14801
+/Filter /FlateDecode
+>>
+stream
+xÚµºuT[Ûº>Œ»{‹—âîîîî‚/^Ü¥xq)î^¼¸k±âÅ¡¸Ëî}Ï=çìïþûŒdåõw>ó™ïYTd*ꌢ 3 ÈÌÈÊÄÂPPT7utåaTZ¹Ù›º
+ÈÌhfêúf:ZÙ8éÞBÄAN^.6VÖà?9Øÿdú-Æ35·y¸ÚÙ
+oÄsdT½¡ãÈöÿåý'Ÿ¨„€‡… ÀÊË`y#©¤£…8ÈÁá­kW¤?ðIؼá¹x1ÿ“ÖvŽ GŸÿÚÒÆÑÂòînNÌšŽ6În@Y‰ÿq~S!ý[gX
+ôµ±¾]|\MÝ
+*ºþ:C e*è\~¾ÃÇíy
+Üj˘±dIƒ°$Ÿ#¡Õ€ùI&*÷ïm>ú{’‹¢å}£ð¥4Žýù[*F~Ðá£b V(4¡ý/˜ÞKCí%r7m/_ éaüœgªãê¥é[+g52Øñ
+‹Y@y§¥XhºulY¾°×ð™¬wvû£O*¾–õŠ‚Å8Q¯°3ך…׀ǧ‚±­Ëeµ –Š/\•±ÉÞ·ÚšT3 ’´´¨HAï;Ç æeGržÂ?K}IKÁ•
+Xðq‚ŠÞíþFíŸ$|¸x\†)q 
+~‡4•éa´rsãaÛ›®T&¢ÓÈ^7PlĸlnyÇ8qóc¯+"‹b¬¹ªÝÐä sû]¾ £†¶m¾ƒ7yÑaîЕ0×f)øÐ'…•4öuð^
+‚Ñöhhç.]¯7;àÕú4°sα¶¢û
+|xn2BëµFùUöÉŸŠy¥õ¬No„ÜĘ (&ñr™°ëÙØûÉ3žßq&Ð
+aø˜X0·‰ÊNZû>ÈK¾|n1P^=Ôº»{aÍófxk‡^ýJê:Š{Pà"ÄÛ»û‹è…€G?<-b]`&›tÜ|dª¸yžlœÃªkÒE¦b;œ—€›(&Œ’-ã‡9d?±Štyý2%MþG²¬\ÑÈÒÔ{ºðß~2yëàeè¨dˆØå–ŒÐW0
+ rZm“rþ² ¨3Œ:p¾?ûLµ8¢;6«C„–‡›Ny »&owá~yžíµzY’XÉÒÍ´1æÑNFsÛ ·)"XÞ
+øÆÿÜ'\9V¾¶±˜->Õ¼p«Ý fC V̯À€Ã\yÐéðK2¸¢ Æi‡J ¸&É.oìÛVÛ»± )õÈñmü–Ê`X“ÿú]êt;y‰„~¦ÒŸò éÓ\Š`ßÏâ­©õ
+ºß¢·Nœ¤yš¶Á»)âl¶,¡Ú Œ}×ôîÁ4^ÏB2¡2U¬á†-SÍôP{Ï
+B¯bKJûÃØ^Ï¥·]_×ðõN`U#d…•"x
+}«v×?vÀfÑ×DƒÞoHî«,÷5õÊŸ¸«qâ¹7A@ã¬wß“Î3¬•<Ü›ÂR
+­K4À~áüfO`úåKkÇ/7ýn\× ½!Bñ£Š®/LPøk. úÈ°$-´6=UN?®aâ5V¬LŶ’àÉ÷ÑH~c­~ħ&Ĥ2ÜfñLµ
+åâèRÐ~²×±2õ»‚b+*¿Œpˆ– ¿6|~­D ¤•ÃÁw|Qae:ŒÈ+r3äñVh{÷1~±â\vƒžGûÈ”¬ i³‰•qÅãdˆð _‘h‰fI¹ç¨KoP›Þ³û`F]g®uófï7 Nbe#É°á݆úÅJ‹Æ÷.®Â&?[øé×½|à ïÓ²] Á ;Dã•Òù­KÖÊ;pÆHÖlzaù$í#»¢$EÌÔCŽUŒ,Ý—w4ðµm¶´" ØgÃú@c%’GF¤)ªóJ—Ô&‚>—»;È"™R–B‡.è±r79÷{ãÖlŠƒÛä8©…M·þ¦kÓô±÷˜ç²«¸Uݽ—jwÄØ¥4TÚëPïÃZu.œY)½Yl¿Èí¾üТiÄj¹ —óÑB/÷Gk¼ypYî
+&ͳ$6ªî·Âà,"‹PË~ú ›½ !}‰Ÿ\ž)‘›±ÿþF‡¶´]c.­sZ±2 ‰˜¥Ç‰©y`ñؤ Q%^ò>=2÷•Ø1À‡­éPkìNs­ÁyCÎO?9/­$PpuW[}ŠÈðÝ!+ÿ]:TÚ AÈólÖÓÔ~1¹üôþÀaù8h¦2ëßØèé…ͺL.ijUV›ŽFôžW+
+"c—Fw³gãÈP¹ÛMt™¡£ù¹hÁÄh.ÄÒ,í<ÌnA0A§Ôö”ò:î#QÅ=ð¢&Ž>H-ê‹Àª•ö£·nsžR#t¬0 ‹h†óN·#Ðu{¾€â«§iŠ ÚÙÜÆé^uêúÔ(KÕ&Z…÷±ƒñfÅgÛ:í)C¸åØt nIædSažÐO#¹¼ófeŒ¯åVÛ“A÷òï |Ñ6Õ*_o9GÉ-ýÀ Õ 4¶\7!Ç– :TôŸ0–&ÙÎòVjúÕxZknRJ[¡ÈŽ¬ýçú:ÒNCiéÜö
+‚ŸçªÉ¥c¢ â(+.Ì
+lƒ`"s[·MÔI…˜qx^Ò&;—¦[¼c‰¢T9ãW4C…0óq4«PË Ð_d˜ªçpÏ©|<줙ŒÇÇ1gq*G5ø¤øŽOSËwX¿N×èîf£5¥\¼ß¾ûÔV¿-.ÂÑÒ•Åîà•ÐêË€A_cL1#jÊ+µ‘:áñ•Ùz˜1øúèÓמl‡&¬WÞ 8Üc°Á¤úñÜ; JÜÛVÓÞ=Ž^¤nIcŽ»T raß~ýb›/a™‘hò•¿çÏÆ!ÂQ¹Ý–Ú mc(è·™Ji²<ßuéü…P{¾í"8Z0û•x¼.P!"‡õ«I5A'ÌO¶ÕG™N¢Hñ&7hƒF`£MmoGäæ4Jæϯ"Â3b½áýªù!dŠí£Ó‰=Ú9Ä ª4?î u8÷Ä+j4VúŽ;÷²;AËv•¿ モâh4ñꇽÚø#½2Ãb…špý4-Éý>Í.-£cäE-ÏF[€ KK2¨³ôñöI¶Ÿ+:ÕWþh»ÒöÛQ˜b€sùÜè C,Ëšn#,ùPÕƒ†ê=k:}º‹ïi®÷Я†3)C뤌Á£1Â:\ÀgMØ/1€0ž¦C#Ñ‚ÝÝÃ=4“Ò}2‹"ÃŽ«Ó‰{ÅB3bQöúžÅk2ò–öfþUÖï%çO® épë+„*ÒÒ›Ã9M­‘€~–á˜ïªt]2ÛíÅø¦‹1ûˆ¶¸‹ãà~ÈBZ¥>b?Ö!Ôc¯ê”1U›¿—)ßN¶ŒsUB×Ðyj+®U5©\•µÂÌYè_ÓçÿŠÆ¯ôú•üsëõÔL›šÔ=Í\¡’<ð( ›,HJ×VjA)óǬ…Œ#L@Š8äÖ¿/ Ý ÏŠØõÑ¥ýöµ-´ñÎ_Øòz9ð³‡ÍXÁs1Êðø‚g”
+úBGû… g›Í¸¦ ‹eaÕcs^+N7 =,r7’õv¡(—Tó){;[Ί$ÓÉæ66+×]ç)ì2¿ËépO}œX¤ÐÒéçªT#QUÒ*Ûq`.“7:ß3ÜEÝ»â þö3å«{1Vá'Áy®®i§®~3?rE`fÊ#”|Ç|Ñ™b±áùYî‹Ç#7.í¬Ë¢g6öWfÌ"lËàÛÒ|-‰[iweRuù4JêßU \8%f¤¦‰Á¥„âèø¶?i8FdEMzù˜cëÌ>A¢p]ŽU¯¡P"lá¼¼AlÛ‡\áÂü‘üøž8,ê¹]ö9æ§ï¦[‚nÎÙM3F—Ç"k@»´hqRê”ßÎÆ+5ˆsOBüfh8ó˜„eÑÔZ_ݲu¥²©Lxáà‰bÛA3[¹ê nôÓaž;”~©4F!i>«·cä§yì̤kŠðÎäËûúªM“Š°mJOFëÌØñÕ¶{ØžL™Â
+º€rDã³]WÓ5x ûòÜÓ(¨€HlÂû$ëñ‹jþ›}0Ÿ;¢zfí6vÛ‰â3ǧM2ûXaŽg㈳LªÛPö»›£¨ÛGr~Á€FïÝŒ¢C[c‘µ|°Ã^ü'*Ö†R¶ü…A²¼-²ªvÙ’ùÅ‘Ílå¹ÈèOKØþœÙfaý\)*¹ §i.NvtÈÑÙ¥TÕ'Y +ëPbAP+²‹Ý”¬ EjŸ»P°—Ôû¨<–÷·¥âÉϪ^®ðq4 6zŸX…„€_$ü ";ì³R߃3$=®¢ôº®?88ǨL`¼‡Mɪž­Õ¾ZCSŸc¬A*$Ò ':á->œ"ÐX/ƒèXÙKêe¡<h%I¼ÀÕ$Õ*,
+¾ãcÎwîü
+—¤ËCZØ4D(ø:ãQ(~jU=\£Žéü‘OÄ eWÄêC®¿¥rý"áMÜŶgG°ö8¡ù˜p‹`?±O婲ñƱ…û·&Étÿ5I6±à±¯‚rµæ¦j_Îï(é F(ãëØÃNE,óÏÕß:àùÑGXŠÚïª#É{ƒßÝ&â Ìi|µˆˆ=¸ãÚ]÷l_Òì½ä¨ðèh*t°!Ýñµ½ ó]ûfWIwÞ€ö©)VN9ççü.㲇ƒåb²2¹2Õ3OwºÒ/Á쟜Ø;ïZÂ|Úop|Òäßñs4äUy€$Ϊ9`>fx¢ó«!źA±Ìè"f‰²gSÈ“¬Õ!ÂÎp%{î„
+9‚4ßÚ²8†_³”VЛ.]¥Ó%
+ {%ãÍJó›‘
+ù›·¢”>sÀQõ½Ú»3è2ÜYÛ+væ6„¾ÝÛœÓÍz´éÃüœ²/K£$úݶ4C„ŽÈ§³‡=5PJØÝcu*„5\ˆƒè6£ÉÓ6-zlßáv)¢yó‘ iöéõ\¶ÄtÜwÙ§š}§cás)ï»ÞZ|âlc¿¶…ü
+aîº['Üè¶ÛFWÚa0q×:e'"s³¦”cjoeEÉ>SMRSP
+)Ë]+H8xaW,Á;[ü}ù›eD)þçüå. cõfSç°~´©ɤ¢˜
+àŒ×c‚"Tç毗(üæ]‘eÈ.|I¥˜!Ô£ ï™zZ\~²‚à²Äç›ß$“#
+Že+²WµßÏûèFW6rzCŽ ›63j ÏHô:£¼Îz!ìÇ“ûÎ’¤Dc¦GnY?ø9¸<a{6™3º”PW)ÞCÏã¬Y­Îü‚3B‚™2ª+.&GÎT=uz#)ŸDë²yQ¬šˆ‚ÛèÎCº 0ef–­XêÞñíPè¢OŽ‡‘B÷2¾ê¿w.B®siƒÌóŽÌØV®
+€Æ¤qQ%˜ëêÊÓ­ñ›Lµ™K¨qY9&iß.©åä=€$cŸVølJG¡ímF¹+{ÿ6`¸’‚5:—ÿÊÖ´~åÅÊ6(›³CKÌUÈñ0°ço‹
+ïæù?¯A8oòNµúUäÎÄØ¢S~„R‰ –%ÚP|øJªUÔ·ÿó:‹Ã¹£WþÌJ<£YC¤]DSÏ4gÓ~+ṯ{ͨšóÏ™ü/\Ö·;¤J7_‰Ð³»2Î({|ðJT%ö¹"9“ý0§Y %×tt3?RW¼\{Q
+ *V¸SYV¤«tbë
+ßþÒžFŒ>­P9lÊ ‰K{ÐŒž©¸$,ÅËns\{mÔT<l‡‰m¹ì°çPóeç©ßÏ è/X¹vë`œø¶•îMN‡"W7Æ ¿ÕGB–Yଗ5òtU€AA2fßHÀ½ƒ£dáäˆP<ë>h305Øfí©a*¶+êç@6=oÀÞŽIŸ€.LW¶}NÊ?šåé^mÏŧv×á^³JÅýš7gçû»×µk.Š€õg¹ —ħï_õã R×:ý¦¡=Ù*
+Úˆôív0 +ø8F<Y çóF~!@æJÊbºBM1®ÑÏNºn[IÄÀì ˜ õ¾»mnïúW¦oË,>Ä^¦z!ˆ`oèŒv#T ÏÞm?JU($ÀýsÆy$vB$¨G4ÚrUîH¸ç)ñÕb¹¢sàAí€5á¶E NjœI~^Ÿ¬Ñ(&ä:åhÎ>Œo_!èZ
+¨ÆóûSV€¾h
+Ox\¡»£¤ÖO@¬ÿ¥>¬Úgûe¸/‡‹@tdòä—™yáq‡PcÀ$ßà,‰¦äXmÌÅO†C§d*!µ\4A•€…‹aV.Ÿl Jë´B•¤)Õ·€¿i)Ò3bÝí 8˜¹Ñê&nÎÜW¢\ü¸¢!¢£IY Ñ-ŸÇKiô¹Äõ¹¦‘°«SÆ…ÖBF$To«xá$âˆïæBþÛ
+x"ÊÙÚÎþ”¶Qþh 08`›[E(éWZ›*3¬L‰\/™è7-÷"/ÂkÞlB‰KŒjm$ñ
+ÍæPDó\†Ü|‘_/Ñ-{¡y_N§Ž­ÆìüYâCØ_"XŠï‚'•˜ºÍ
+VªCâtýmbõŒ&±|Uàl¶|mÃ{ì (¿©î
+.%kª‘Ä]‰£!F$VŸ4 ¥€¸v7»‰_1“?>Ñ<*?9‚|‚ªüK£.Í„Çúúîkp©—~¼§I’<VÛϸ5‹G;aʼ<Ù
+H¡õ¡ëDwb >/q<´'*pþì€aŽGz«„Šüq¶¾Ò8ïr>²£–›°S̨wӔёõ4²mêîŒ5«¹A+¦õ@¥Ùµµjo]†aÖ-´y‘žhÿÈÉfx×/å0Ȩ½”i€ Y;|0û¨ð!
+UÍèSöR,¾|È_qDÒ%záŸÄd)Q‚§Ör]ôÇOöšN_.F¿ôQüSþDò
+¿ë”má¨\(qцŽVræZM ‰ì5"if·piõLFêŠæ?Ù/—|%]êì¶ìZ’‡Ð›hxlâHQwØUòY¢6ÿVkñýÈgQ´ÅÏÕ qF9Ogf)8“÷ã¾lQŸËOñjexa`¿ºŽ½$Æ&b“%8Þ;9ÌñŽÎsËGXØ,òÙâEqÔœ¿šæ/åDC®;ßã:LS<Ôñøp!2
+Ûïóo´èLlcåiR·u2(Ó^å@q T$Š·ñÈ+‡Ê3¥H˜Ñ¯mñsoµºû„°îBÓÖ#^…·z§g²¾dò›æpÚ5Mgx†h`v=–ãT˜?Æ ÝçÅ~‚û"J¶P\Þ‚7c£•lÂt¹Ù3¯§Hù2%×±ã÷2H"ëzCWŸ8ÁᆑMñLWH¥…¥€"6öÎpä;Õêµ÷à‹kÊ)Ðdc ¿¹qsǼ\alLŽ³ ¨qvõ]æeÖ²¾ò£ôë¬q¨uœUi~Q—9rØø²~Ų‰¬m¥)5
+õˆ¦¯X+o¶Ì.(hߤ5‹Go¶íZ0ˆu-R/ÏMG3L-ò­-\l ¢œ;ÝžS#'ÔVÊ%@¶ïÑv)íE>IÍ€3å˜bú×i¥õ}N,篯m–ÝwsyÌ»*U˜ehN_ût³Ñ­¾šÊ©–@L¦¡u\!ê‰TäËû¾ëkÄ¢CÔBI&tl#|Éâô©Üû&j;è*“ NùŽ@ãÉ`wr
+Ù5ã5%ûC/^ÙIá¸^Žkvª)­ðÞÐ99zëªTÁFâ5äaGö•¡ðœö赨1hœ¸9›…È—Ç?Mœ]l2þ‰Š ÃXÎ ª göYý׎ðü ŒSQÞDírÁ’®‡ÔVò Øå]á ÄC5P,ק
+Ðß]³ÜÀª¶6TwÀµ%ûÕWP>BcŠx5lƒpÒDÕúdapTWmsƒµ¥àåTØÍ炲‚]úº-£áW%gz{:FÎPÛ͹*ëáó£©Cë÷R
+AûU?v*B|}Ä“—‘¹!¹ùÛÍݽëNLã.˜n”.Θñ»[ÂûÆ:> ä;ê
+ÏÓë¢!æÐÿÊóÜöW~†H°|ÿˆHóüó\;3ÊC™K‰Óûj¦#ˆg¡yô^¢×Ç‹sNYK e°˜¹üËãyCyNñ¦–ÜœÀIê·B ý“/»^.'Óë{u4Ý_yL²k¥£ï?¤dÁó¿ûdW½{D7®¬2Eˆ¸ÕÓǬQ~Ìb"î.|<~razõk}^—ãæÓç¬KX(¸£æÈýßUš¬ê?V) ±‘Ò cÍF|³`ÊêÈź÷NØRfGTMbÕKQ¼¦Íû“¬¡r¿ÎÝÀÜZ6ç nD°£ed nö7(OEª]à@ݯ¿óŽháƒ,ÑTìB¡'7Ái©‡RØHØOâÀQ*I´æ £$¹Pº·ì/be`îŸ ÈàHò¡–Ð?íš6ª¸:9BøP61Fú¨=ñÓŽp}þ ’IáÛÎ~¨~îv|øCUª"þpZ”Û ËôûœŸ§èøB»yhÍ~ÑG¾“ìßC‰¡ã¹Õ™Ä'Ãühz¨
+Ÿá\UÍ´qÛ–ï!ˆ° ŸNÙ’®‡š”F±ì£ì[OÎÝ°\W±mFª5Æ#ž#¦ÕûãP­ðq¼T:ž—Ü!F¢ÃÖÚ«VŒòÛ†ªˆ‘7© c©PÒóòv^´¦s”KÖ‘.×Å•òØSAµ§+*áWÍ2Õ.=­~¦0.¤7p2OEŽ(H‘vy]Js U]Œ•Âg
+a¼Ä‹‚R’$Ôœ•—*”T@ê (Kéü$ »­åÚ“*“×÷%ò¦÷f=^4€ !†•˜ëQH$0b#¨ÙìƒWRn˜"%Ç¢÷›Cgûjà¹Q®‰|¾²ûÎÀq  >Þ£=EìÞÊDÀcT”W÷rBÈ×»ÅvÄ rÉôú;i`ù}äÑ(!Hû’`7±"•6²×£MVo7Á>p_ri˜ÄÖ©7S¾Äû=Àähͳ¿0D}ÄÆâm&ó²l½œ¡VžAÊ/¦áÏDÂã>‘ä-á³bƒù¼) ÅŽµbîô`ªöAUÝv!'µ²~¸~.Ø×ÀT‚Ñ{[CX¨¿OvU¡1#¸|.HÝ+ßëþÍØ¥[üTöÚøWN©p+5vŠ»‡xú¶SX¦ºŸÈ£
+"”'»Œxø„iG£{ÂŽé°´ƒ$T„»s‡è{îp© û·9ðwP ŒÔ
+`y.§<í_*µ¿ŽŒ”àB#MÛXï:|«×"G>)ÎÊ1õ\÷º\¨:¹ <kÁ„ˆg(.;ëaj´±åõÇ»¨3SÍ{P;‹ª"¶h}b+þTÀ?FÎÙ“-‡ÎÉO
+=Ôë4^p8ÇShy™Á5Ï`DdAĹô¾R^îÿãéü_HôF¶dX ‚¨Æ.tñFpÇJšè
+'á|ì`]´âc³qС¢—›µ;Ñ·x#Ï¢µožwD %ö?Š± Œªh'qyÐì~¥Ár÷Ç´lƾ·(ýäÝônšE?ùøµpÃJL?ENgS±âú·©ký…Û2’ Wê €-£[*(…QŽ6µ¢¼ŸéK­T[Á×ÜÕ‘OX"‡<¢ošP=µâõ =’ãPZè¿râßµ]Û_Å8=¦õßöVÖ%‚Hí$1+/õC3ë0vä´ñӪɭWÊ~ШÜÆApšø¬ôd¹¦ßÃ"\öMÄ@ìã@$rl8>.jÜYK‚œåÏÕ”qÂuZÒbµ>³9Üê da/š›ÈÐ-pp–VxG‹X~¤€‹ «’ T]Ÿø.ã@D½µ’9‚©CæÇšËo=˜Ö—ÈÙTÉÐPäOâ)¨¼±ÚÎQ\ò¹¨»¬eŸ‚æMÂù`8ˆáÛqöœéE­„%–™H|E×áŠÿzp±ðéý÷|ž<ÿâšðÿãqaž\½žâèžô£`@µ¢7–ó³Co]Do΄ô½òâèؽ9¦ž›ƒ„&ìPjÝò58zجwƒ­Òþj¬Á(¯e6`ív•x0”rPæsÙ°Û²ÿHp@I3
+ÃŽäò`Ž’²ˆGC|.IYÕ™èCÝ?լȟ®0±ù÷4Ä­°Dm÷)ðºT·Œ×ÖLœruO’µ êxðöˆ"•ç˜…šü-I TÇqb0ö.û·«\¯’ÿnŒt+íjC1s1V=‘ÇK-y`™¥)‡pâõl…‹ý
+?tÕ邵Ш•Û5-q¦¿rkœÒ»bcí5Þö*­©Òð@3dûZ¨Ä\ Ëc¯ñœ|ëäy R%ýùKÜEŸ¡;EÆâ2ùˆµÿi½ƒK.ׯm ‹MÜ|·³‡¶³@ìåQ.¡š?mv kGBl­²J; ÿRÚýSŸ‹\tf4N‚;Àz ;€cOÄŽÀŒÔerS=ʆc€wH_wÇÑú8aW¼÷¥1ƆbLlË.d Oˆ.rZéž&ÿ¬ï+r~4¬ÛŽ€·;nHµJ›à®m”[<¨éd€B*ˆ6߉UéÂ#ñÍh¿ŒµîÜd„R©rún.jeö6êû§ñ4*‘2=7Eœ\ž¬+F‘XvƒáèbLjF¶ëIó6öùcF¥Uµ9B,¢T:®G§êƒ³Ó][(÷’ô„çúÛpËuíÞûöÆNp L4NwA­…ÕãI[51A˜Cÿs9Ø…¨® Èb1IãN)IÜÙ@çãåЋ'kÅ¢¹cùŸÃ¾
+endstream
+endobj
+3204 0 obj
+<<
+/Type /FontDescriptor
+/FontName /YLRECP+LMSans8-Regular
+/Flags 4
+/FontBBox [-446 -314 1510 1154]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle 0
+/StemV 87
+/XHeight 444
+/CharSet (/eight/four/g/n/o/one/s/six/three/two)
+/FontFile 3203 0 R
+>>
+endobj
+3205 0 obj
+<<
+/Length1 1979
+/Length2 16117
+/Length3 0
+/Length 17373
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸eXœ[ÒŠ Ü»;ÁÝÝ%hã4îî·àÜÝÝÝ nÁ=¸Ë%g¾™sfîý{žæíUºvUíê2"e:AcC ˜ È‘Ž‰ž‘ #«l
+ôÎß” §ò®ÿ“çÝ𻬨Š Š¦‚(ß3
+
+2
+ü_Ñ%A&6
+`úâd0(üqq
+Õu·oqªÜñí=: Gp‰zVÿG0æ¨ÔÛîN´ðˆ|þ§Å<6¬S=hÌâ+ºi²øC±ERe~•³¸!™ñ¹Ï!é $û_-Q†˜THBH½ÙHÙ ÖÐößÌùž”.ôHŒª ^ø~GÉŒ¦ZŽÑß’V ¥8e^7õF¦Œe¨¬äÇ’L655¹ŽVZÝB—]s0ÁŠ÷R‘©ì– ‰4ÈÊ%.›ùuíÁ”L5¿’Dellì7kùÊÀ¢1—ú
+åG‚>3Œß¥Ç=°8fûü6¢:!ƒª;ÆÉ÷ex»-.vT)Ñ^â·>çî›1¡}Ûøš%Î
+·6H¿ŸÆ:2àçøq*1€0ôÙå‘‚â+†V'O§þø0A]³d|Q£Â6¦bo= uÂüá‡ÜÒù×Jn{b uf¤å¬Šóæ1—&súø|€f †ï:L-ßÏnÑ@íß<æJA û^ u>wNï†0SŸ&" ~Ýó¸lBð `Œ¢ÛÜsD>š-ÍSüÕÇ ý8×õ
+0ãÀÎÔÒwbÕ].;'ÆÒC“o¾_:ßFtLÞû!ÉV+Š¦!zj˜0QÌwâò¹"
+u +S¥[
+Û¾lekS¥ÿ!5ÙŠ,¯öI#fÚì¡N&4fj:&à-+5m/¯1ø‰­y¯;½£¾dõæå˜Cô·çÈš,º‹%Ì¥t‘’–Ÿf멆(UR~
+Ýë1¥âž*¾i¶–“Z/'änéafXà«ôºP iuPk‚VîMãçzvpIæûuÁüÔ¾u'÷órüÂÑݱY­…œ8|ß8²Ó׈/Èuiý‡~ÎÖë˜ÌS$î[KAå[öä-ÈSôÃòZöÆÐåä¯0ecª,¡¾Å_QfÇëzÆ
+ðHå¬Ê2°/H Õ¯Ç)¨÷±Z%Èaæì=¡l
+=>j¨ÇÅ4ß°Ø\aÏV%3¨ÀÎŒØó’ÚNâã`Rc§„6;K­[)wL:³f¿¾¢Í©ýL¶¯)O ÂbF bp"À°A|äüBZè–ê¿pÜB¥d:G. f'Æ@zèÏû³Œš4Cd²›Q\h>0­¿vJD›q)ð©2³Éñäu3¥–¿/Ö×9‘CJJ¢¬¨ÇÈhõ÷ÌU¢ïy‚ŽÜ™fwSåPAÍðÃÙÅ£ ÃY!ãëÏÉ¢K@~z¾~ˆÉy56Uû‹Ì| µÿ~/Ê\¼8Š¡}YŠ.³ìY1šbUz–Õ ™ƒèÀ$K ‹^9ƒ8»}ç«[«uJ¹Ö
+‡·J¿{míüs|3
+¤KU‚{FÌY ½6æW`Ôl
+ãÒQ[–NIh”áôH9B’:¸(;™fIåïºð¬Ýœxõ>è™<àò§Sfgäí$—}¶ó›çÈ7À(ãˆ]Ü…¢ô*¶xšƒ½Ýi_Cñ¼ óÁÇÞèMö)gAŒ)xû¬Ù>òZÉZ×AÒgw4¶v‰,V fW§ïˆJÆÈx¯!âZŸðŠ¯t}¸ÜK/ƒûò(&sµµ,±dfèì(ÅüÐ4ã{«{©9‚l¿3ÚƒÅÒ¾ ¬ú­·Ô3©qÞn°0šH+Wàæ—˜ÙWJ#ÇÙ^þëì[Ÿb«ù òËt(Œ ªž4l’ëÏ_PcTûÇü .Uâ11
+.­ƒõé:B#5‘î’˜{{+•¨4µîg+áÐÛl-§zWVóé' ®Ÿ@CÜÇvKšÔ¯Ÿ£õvì#qÑ‹kÕXËR”Í©D§évÝ dÃøVË7¢ÇA+â×IÓpJ+Êr™w©d«B´P³G7(è¿¢S‚%4FPŸ·nùÙ’4¢HåA!KÓKMŒíxDƒïªbe®?]‘"+H?bñœÍ¥sÃëp–uðñ¾~¦n%àŒåèå<‹£õÂ±Ë çì®ÈyL5“Eäÿê©8ÃùtÝ.ƱÌê(=Ã.3Ow¾ÅN;~mÖ,®.ó¹&@$ O?¿F(u.mÎèB2ì˜Utq2âÈgR-ìZŽ~ge/ãy$f!Š*cͤXp‚QÓ@Åjâì­ÅSL€•’Q5ÏdÅQJ¨ê%þÃf1zÑ×(á²äû93,åÀ‚
+—ûÎöB!Qì¹³ÑO GÞQ…?¡¶Ù®VÅõö±¢t©„ÊŠ[\¾¯~æ{ƒZÃÇ/Ÿô¶£ü滜øe¯„>Y+]Ä…ÀÒ1…ÂWãW¼QÆÜ\C^Géõ‘ÙXˆd•#ßOÛ!ø{º¡±A+01ÓéR¯ÙÇÄ«(½/±@›‰#“xiÒ’©™˜¢Fø?Èüð°$5»VÛ¿_4¹ÚCÛq§1AÑÔçä6
+¿/w·çëFDʹË¿;ž*\_ŽÇåç®É§^»Ýf¬mZœñ.ž¦ xÄ`Ã1°=~9Îç…>#­–½~Ë·Ú4ãš6/`cTÍ(°ÙUst'¢²"4
+bKqºÿ7ùQéÇ\åzá%Á¼Q‡ÌIâ‹éEï·qÅýš¶g%‰ž{£V-Î9ˆêRëB% Ó« ‰}jM·FæOÄÿ õâK[‰=sâ&˜¿¿ø®^Tz)’id€¢Bðµz}E‹‘Ôî ¦£È¼8›u×¥‘ð+2“†K¶•š3k­ª*ž¼¨£jGjœ•{ôõµÖkÙÏ°Ââ·€3Iö<Í
+‘1¸×D38þ
+þítDœfMË#
+s†:‡hföÈ¡¥žÿ…mÀ}¸·ùóCÞtXm‰‹&1u–ê‘ j+d=XTYèO³oÅáKo[#¨¤ÐæéFæ¥kmì¡ 8 O4Ú-ÓáßÏ™Øiërçg_}’êsô£E`vÕ²PÐ'GtGýBÑ}k·ä–@ÞûÔÜ?Ë€ÒT:Ú1'õ_ï¾ÈØÀ'evzÍÜXÅÏÿŽ±¨YkãäBØ¿}pŽÒÞÝ$†>_™ä«Ó2P¯ˆpÒZ§ïzÛÿdðÀr<W&—D{ày@Žq+pÀÕ¨wWà5ªƒ[é›ä~–^Gˆ—mÓ°¬r>”_o˯˜áx£ÁA‹«˜˜šl*áÊ‘/ÑÍ£<ðÍ€^pÿ5jõ@dÇç6 ‰n§F² ju¡¢ýMÆbªV=,"
+·škš§ÞÀÒVŽ8vºÖ/+ê†wE°Ÿy6Ãä"ÜVkÅ¢&{P¬Ý‹Oú#Å×*´An«v IØ7דo½ým½ZŠ×KZ9¾?×L’A.eá#‹±Â¡5ìÔÜÓ÷Üè- sF
+«éÄÁ…xMš$^>Jع¦Eí§+—WdwƧ^Þ¸ùT›äÔøÃÝ“d‚Ü«>g½ç–M}h‡_‹Ö¸÷AÇKaB¤œ«‚­zZ=>Ý£5‹/¸oΨkú~æü_rKuÑF¡ÁP,3NƒD_FM&êp¯ŸªGî÷sÜ £4!Ô¾nGê {³|*þ‘îä7„‡j鱂P­a¹!Ö%õóÂgœ ÄÍÒÆ”¨l÷‚@…Qµ‡$”ä¹ÃS\aÁœOñ w÷ ØÄ=-ýÌ l1æÛÖ\[%Ÿ[¯Äa_šà—:×.ÍÕÊL9(5û ñ/å*Ù©"gQ1½åçð×ôçwРS5UAW†1„¼=&(Úd¼ËÇýæ$å$qÃétB›RóŠ0R>Mgåf¡w¤(ZÊ“ûzvÚ¯9‚›ß5ìo¹Éûl‡Ì]»/bçßèù\§aw‡°tü9ÚnêÆó·’ʳ,tTÀò¼ë—¶]Z» +}Æýõ:¾gf ͆âõN‘ñf$þÌ•I79WØ°ÈŸr´ œˆŽˆŒØ,¶DšÊÑ£ù‡bk0l®èÅôR†+Ü–G¿Y‚¸|óæB"`–ÁHµ yʾ¸»Åy*€9§0ûH=fÒ‘$ EB§¶V
+ƒ#'oûZ¼˜&’êg¬Y-µQü(ñuî#éÚð~¢ÀÙ³t²Ò bü@ Z¥//º¨5¨W¦À
+ª3;3äÃÁ°X`%²ŽT®_“Æç«{2×2›ç8ÌlP¹Mý©†“û´åüìÚw‚F6) »/Ò!,âЪæ(˜ñç3äìÙÈÂäØÊ!&ì‚ÂðáÒbN»ÉFY!>(wC]'¸[’ˆRTg ]ød±_údÍk+¶Æëz>÷õÝ.*)åÈCÚÖÉßüÖi1˜áá)æ;¨ñQÕìª3®öúæÿíW¸'@ÆÚì*»ñB©øhü+ÒG¢qËÓQ
+c€%9J«Ã3
+ )‘.¥jÃwuÛ{|%RÁ›nµq,¾ ^bƒ’4~*óïãɽ_ÕnT½à£C$>ÔDÎKŽ²-!‰V3ˆ5}•DããS‡&á’üßšOŸCµX-¦ÚêÞtyщõù§‹[ZçœÍ~š×´dÍ}°X"û‰W =F(Ë<Í—Ãú:ËÉ{Iäë TõõˆuŒÁ¢‡NÿŠKÈVøŽ’½2oØ3þ¶çøÖæR+ OÛ,žÛ£q‹ñ Ï©æpûµm+$¾Z¤ø[pf“¸„Z4âý¼Q²ðTt[å&µ|ék&ZS²Tõë§!¡‡¾.®û#m´ÜbU9y×ôW~´õ3j¬ãj7LÆÐ=VfKÒ>»rÇV®Û’0‘ϧgšW¼¤!¥r†§“ˆ+À”åË@òݭ߶&z…Šhγ—„uCcEY§Ð–‡U}‰R~œ£\ÇN­Dª‚Ûy®çñ|ÕTG;"›íë^Dì×zQ’ÍúDkÁ‘ºˆ\Pí´_•qM£—µøœÎ?°”a²HP',¢‚ΔÉ5Q‹ °?ošÂaô˜×í{Ö&Gkò*ëJì’±~ÿT?¶‰C*êÈ÷AJ9?hèísk¢—.ãt²Õ¨:aìhh£”TèÂWáᬠ¥÷s<xò—‡¶0å5>£ù®õ²8vjú’Ú7…U>suÂ%æK9GFü@¶™TQëyrÝÈ/‚€N¢É96”,._ O¶¦æÂzÛþœKcÚÕb6õ—S=ñ)ž"Èàp×Ít¬â\á„m
+PwXÒ‘MÔå ){Œ×ƒ8DßÀ Ê=2äŸCDL)éW•òð#ï5‡vPrÖçÕ?Õ»m6 ‹í&AšQé$½ÜÅ& zÄ¡Y=µ¼}Ê|Xv 6ïòuÛMÛ—í
+
+B]·ò-€GV³;wVë7Å"©LÚq°ÎASßd†ïXVøÌms•5q!‡°2ôÝá@zl3áçøL}nÈC,0¤dÈÖ»ÖåŠóÑϳë¬ã>ò-{<¦Bj“Oi]h³¥_|ˆ8óøJE¹Ã+å,wg±b
+ž¼ÕÄc˜ÎA”_Õ%Q飫¦í4«yì
+'ooùð„¼‹Ž­GXÃBÇØ ÏAÉ2Á•HyTËùøš?ZøJmš,FæV¶‘ü’sÚàcU¿ÕÀ9¦/j‰%«b8~J’œ<§ÉóÛÆŠ!nâ-F¬ºÔÈõ5TæËžbøå&S'XÓœ³T±¬»ž K±OZ«ŒõQl®†uDëBˆþFÐí‚”4‘‚ûâéØ¥é†Ü •t?6Áž&}y8¸5§X#U2~AUÓÈÍ¢‡/{ÊfGåÝã à1˜V’ë»IbĹ®’ˆ43Êâ}¼6•Œ–ro.¾¼í„ÖRÐH@˜Ä/š¶N¥÷”S—’‘…ÙÔ‡eU«è¥*Œæ Â’ÇkâvJ’TX7¥Èέ|¥ß3‡ÿ†·¡÷óØ¡y¢49·FÏÐÃ=ºbèŽ:„L*T û¬Ýþ°ùÚbœÎåÌË›EÕ°Æ8ìYÇŒ—¸7ç€&d•–VUÎ7¶} ,½7zôhafvÑ¥JÄM¬÷ R”©GÆZKÇ]¦ÑÓFµ³}äÜ嬴X¿ŽbÌÖÖÏ@Hñ ¥P”ﳞv‘„ž¦ii‹ðÄÙ…æCø¦»rò „7‚Ö0ŒÑ -vN?¯Ô‘·F£ÿçC«—ìɳ~šs{^>DG ¸p
+æ¥Ì2ú=¶@bpüüð”Ñy‰ÅŽYÎÃ: ‘<|×Ý8F_’M ʼõº‡šh¬ÀἘEÝ’U¢´ïJ•kf§ÕG¬n½½VTm ¹˜™6¦çz@ð>Ï1®ìÎZÆ=÷é•¢z21km/Àt´ÃÛWléF0ð}— ù²ƒÓ_þ?þ…­õƒ­ª5™Á©ìŠ î¾Â}]Reªú—/ù Ά7ÝëJ4JLJןœ<31Ž‹4ö½ŒŒWå~†û§{–¿TÇžŸäL‡¨8¬Ì–Í«{ü¶$æ–î}3Ö’¿Fô‚:µœ:†n×ô@f‰2¢ ^ø\ípb! :9ÌΖú¾Ë‰ìôéqFŸ %ó:Ù’"$ÙrJ+K7›§´ÅÎH’¥I`ß<þD¥°Sdæjqδ]Ûðe˜zÈÉíÍ>ºÕ0ŒAü¯ƒßbàŸ4ÖM8˜APž«ö™3Çøšðl˳–d ÎD]7PäáÝ1HS"Ò¬ÊWš{ŽËIÅátèÈi^íîâêDªª6i#H ÐûƒfÐ}a.õåÏi~èv¡×AÄxc³ž’’¾ ¤ä1ÝïÀÑŒ’&-)ô«4Æ…l¨$¾Ü`]?êV•5”Óýµo¤³¹tÑšÎw#™v¼Ý¯J‹ù^nútÀÖ\ÔM{8ëu ’c0.áõÖU˜fjcQ*´G
+ ̹ñÚ¡~Y×£„&Ìݹšxßâ€Õ8ˆÎÁT$Á‰ˆÆ\VË oì@ðñƒË¸Y3»Jœwú›-"[ÍÌŠ…ßÈó‹¼=Å"2‚fõ,U‘á*W½¾¸ÀFµÀ6±pMnùGˆ¤Õë‹ü”•«óؽ‘‰Ò…nˆòL=™<³[dÆó6ó˜†Î}y4,‚^ÛÂzú'SþëF*ÿÏÚkT­±kMî9ŸSJü?eFý.Ô“ŠF[aዤ=
+
+)àoôL­>»fêãÁbfgdæ¨"@›)©@
+#öž»6Bh6lÜ
+sè@Ðd¦­ÚFd¶Î“ñ(_!Õ,™ŸªÒ OÜD§Žê[Ì$¨Š4àVóqÛìBK1@ÑøõŠ¹rÔêÏuñ,B« F”çk¡)È°Ý_‡ðë-(ß ü($n÷™Ã©ÙB"¹‚°úÝ`²‘â‰S´ËçÜ ñ24­ÇƒE±IkØ7aŸ«}/Ï#Uï…1?è§|د̇Ç‘ ð4Ä •rvNa>¾n“)õ¡K£ ÅÍC_ûBU`"ò\Þó]±1”¹O3‡~sê>NÅöp|AmÔUÎIGÖzÎ"aÑ"ØEA¤¦B§ºOŽD‚fÜÙy DWHìeª+“ÖoqøBÉG­/æ,¶Œ%…U?&šÜ!õQå§dô7­¨¼H­,[Ýî7›~3+¾Éí.äNDRÁ4*âú]n‰;ÝÈFÞ+j@ ¢/wðÉûö›Ù&70™Üùå è2£*þ«Ê'–ŽGeþÆÎmÁ¦´ñÝ¢…%Ö€eê¬\¤fw‹‘™þ
+?L¯ø¦M òm¹"K*Lê•Ðar’ÓÑn¾ T)˜ýhŒ¾Ì¬^ÏO³G‚ñ9Š]¬Ì$P‘ø­=ELJûÍz´ø
+ÌthþùÞîÖ<:
+›º®%˜/؈RÈŒf\.¾G>aÞ+
+Ÿù¸9ÓGïŒ+GGHa]/¡£S¬›Z݃¤‘mh(–óñ•Û”­¥„sR©:—1)%Ûg˜KçÀXzÑvè[nB%œÂèd*dý®Ã’Ñ‚z~ËØ¢ ¿ÐwC€‰I ¨äÈI:F©‰¹~ªúÅúËýPMQÿ›NÑÏnœá=ÉoYæÉËØDC@ÿõl+By"½ÚÞ8~@Ùé’ßm4FÙ¯[B+Ô«UaF|§±m|”^_wpŸ¼_B M|e-Š²ÉˆO°¯ Â_¸ÛAýÞsº½@¨6¼ßG[ÖÆŸ%s%‘á:1›¦½·Ù%Š á1rbÅvç¾5RMÑ£¹D*E5ÞBеèh¨
+qËÙL¶|ß& ùî“ÅFþöÍ´6Ðõ%û³-Š2AopôŒëÏóK£G™à£Åȹªï*‚¤Ô`áöÍ*±’æ9—Sàù ÃEk1Q±J¹*¾ª¾Œ‰¿Œ-ùcÎå ‘¯by,(‘;¸b¦R… °¾¿Txð3#¬áœ\‰Aušó¶Í×mz5Aù =K´œÝBY}v¼œ
+/èvÌA€*¨¦q”:¦Ží^Lù"DSˆíî—4ò†!2h…ÌœÏq8dgàz:¸X°°ø2NCIv”TŽUöª;ô‘¡èx¹×D‰O ØóËåAgŠ•j½š»^¯‰ðohkÚ0f‘v÷7©½—N‚’³0ˆ[×FŒ"›k“•¸jf¾:u£}¾)3ðêdhÌÝÉömRé¼#øÚ¿ šå¦yp¦†Êjtß*—–EàÜüº·`™QáîÉE×±ÌU©£ýæäÈàÔÖÐ5vö‰ýÙ­À•ñ<§R“!Þ¾’bíè÷}®|Û(Êgv,át0ózуés%¾ÉÛn{˜Õ Ðl>ú9áÖ Ýé\
+šŒÆº ÞƒÉæcß”W¶EUZ M;•ëýÏdKF·héÁ7ñ8É Xq;dÊç7µW±r=­(¼ˆ%gB6$ÊI&bôéíË3ŽU{–Ðâü ÿ4š¯oˆMèåxô»%7ñ mÌ2:ZøkŒ+àYVc=õÞºL–éÀï–<Ñýù—®¶# +’{¸äÒO¾$Ùú4Énô¥Úr‘ºÎ«ô̤2ûàO>n|ˆá»v±ÓÕfW†¾ës#¯Ø:èV_È$rÁÃÊT³Xžã\0¦`¨·åµFY|zWËìóh" 8‰.Ë\TlV —ƒ»LxZ€ÁÁ'qrj×´XÔÉð&’®à±Ë;¶Pð„þÒÉîÄ,Ô¬6Iãž8¡@"%&wƒPb9øMwŒ¡=¿^øàó5ÒV´8¾V瓦©? gˆšAèâ‡îí8±¬˜ßkö§iˆÀa‡þþ©ã³Æ #çõ”éáŒ8Çö°™™[;¢–J ÝϳÈ~ñª=¸ 5ÊÕË#bò`Uò½|N:j,Eb8W>©XGc'?Ônø;}iîÞlâ)•fãQ„/õ;J.êyqòøó¿¥ð[G$ÃÚ¡6§^°û½ý.$ IYªW½6÷«C… sÌv;…N¿1é,ß7ã±>éQt¬Lóª˜Øá䉣ZVRÒÜY>Kœ“$àÆáÊBkæMSgP¹½ÊR‚qúö[å0)R¦\Ÿ!…áÑ7¹j#d#”?ó$³ó ©¬¤¤ßqƒ>7;È/Øvß69
+*¶D¥Rñ§¥xEÌ£.s; 'ÔɃt7é7
+\ÖýäV«;ê`ü^I¯ báª&“Öxk2YÿJßæê‹&o½a©O²uú
+,Ñ7ƒ=þ¯( cH?L-‹>«HF"w,EŒeiu®Ø•™–:'Ö¹±CÅœÀö1P"¤ÌèúÉ+2ÂõÝ!y|Lé™QØküÞx‘Q+þzf3º
+ý<“êMuR£\IŒPüU®5…'¤C°×Tõába슊#V`¬©îf?²ú)©”bÓ6ŽÛÞˆÕÀÿòö5}»‰­F©cJ̆Hà çæG¯JÄã»üS^x“H½!—Âô0³6ãìyª"®ÃË@Y¬ÖU,w\©Dµ» Ó’ŽfWù´>°Ù*óŒHÙRÌ!ë/]öúÀpÂqÇNöÅþ®¶ñ²s(}
+’Oð[A†Ç„éô úvzü’õMé;Óò©‹Ruüœ³m“ÂZ¶ø‡áw;Óè:Ohjú9´XRwºã›9 ~>*F©„3¿pcš»’Ο>fY£@Hž%-¬rdK,Ú•Ù°+zÏ€c¯Z£eç_ãP-è~!°Ãß.* ]õ@)üù˜äøÅ…|vd·m6©…p5÷5h9««ûÔ>VÈóÐäÓô=ó£uM“ùwx—”Ù: ŸéÉZ£Sëu…ôA¦½zp}ëh¶ßÞ^ŒÃ$‘;Ñ<­{‘Sížáb­â{<§XiÈñ·ƒ!â›:YßÔc,ÿˆW°SvJ'u?.êñN¦HVÀ‡ŒcN¯¾9«ë°Oþ-ß¾;$=GHÎÑö6oíV3ÃÕJY%¯Pík»õF6à$iôkm\JD ö¤Ú©ýY2ÞÃÊ»dšG„4´Í_7곋Úþ¾-%¸K4×’
+ë®Fðx#x|áœ=]‹5Æ´Z 0Ê _S—Q…Ï –)gØê'ÝZpC-ØríÀÛF’ÙÕ9Ë”Õfè… ¶òéÏ)Êû”ŸÄòÕrÔ04lH9mIŒälf!â§?7ñ.ù7ñwE$„9Ô,´Ÿ"¥2å·z&,Di”“©açžÎ´>Oúîž  ÜëAMZqÂFFñËÁ6>q¼´·»Ø>¥ó䫃òPô¶Nú¥:¥äW†9AâÝO»O «í·1¨“™ “»˜©{ôf»xœ}êYÍÊâT[•wß›¹lÕgË5HÅvZÁØž5
+”+¶:pÖœ:ÉÝæÔ¨R•|©kv>vwø„'jî›Ðž+pM Í\ âÒíÖï]À&¾_âËà§3سKÁ¥Ê¦Á&Q¨üšŠÙMSëÌN$ 'öZyâ³™óXÛž¢ódA¹º6­ñêJVAõ9ÕIÝŽ'4@špoóT߈º+Ê&ðô„ò$/‡¢v*ñ”O‰¦B”ªã‚Ù„è% J˵ÓJy¾ì¦:nÝ®‚ì¶l›+{>pj+VE¬EŸcƒŠûwª¥/-tû _é×îU‰­k¡0€/¹G0[]BäPjBLE W'¹‡âYˆèâª!_òB4d×åCžuÏKñ†V÷ˆWùKµ‘áÕ¤<hú>ÔÂƆˆÁ ÿ¸¥êµõ…tj¸±¹Yãžf]d«÷ï>§´P¦§Àt©âõ°ƒ[Ø
+¥Räо?<¡®NúøÓ~\_ï«ñsu–éÊéŒod I_‡»2CÄ'ÔI©À²@­ñ>|«2‰ÕPž‡•Üdf”°Jc¡N_R"j&'IÙ¬zðaB´l½fr
+ÓìŠÈ¥·»ÐÂ;aôlrU•ZsK†¶Ôã¯ÆEa!KcTÛ¾ç&„LVÅã–&×Ñ6ÆcØæi…Döã.¤íjÔ<6TÕ¬ÏúHsífksJHÝQEˆz¥-–™É‚aÐHŠ«nU0©d*‰Ù®Ÿà+>x;œå ¢ ãs#ó.—¤‰:K¼9ιüVñ &N]îûÎwvç§:]Riñ¹ŠV.ûgÑþ#%CìâÞS¸Jº&‰Û®¹â AÞ4•AéþW & k”Ž ·¶¨Y¤YiU—êxá½Q÷FýÔÈ}åÖs LÌÝ-4,öEÝ´*jQ³CÆÅl§çÂöñƒ&ÅÍ®
+”ìc¨•uºÙ¿R–ÞÇñðZðB‹Á™h_šk‰Ì‘œDtÄl}#E Ç±bUh]Î
+ñ®ÜvN.6e!‘Á²Î4l}ÖÕèûþÍÒu
+6Ûg3ÐYÓ=@Ü <Lh]àçÇÞÍóMÂH ½¤~Ç[g’¢£«AEc¯‰4# ê¼zW&K8耂ê8X­óÖ+Gþ'`èŒq]ÏÔª˜lŒ/Ñ›gQ~¢>8\4P1UÏüÔÜÿO
+œk'ánðÈîˆÅÓ }`³Fá¾Ú0Û=(O©‡ö†²ïœPȹG·êD’ç<ŠHìW)±k 4»QÆõ¡þ‘ Öúw-·ÈÒsÌKÆxnß΂ØÍ‹ÆÞˆ”$¯“ÛfÉîéÍHh™9r9·9ÿ™@Ð3ÞÖVÕ¶u²aüéE^rl
+‘°»~Ô—–W—²ô
+èu`€>)2ÎÕ£L·CA§ºt]žÃ½ š3Ú+fAš¯˜¶bGYÎKhöåWy—«÷Þ2ýŸ žµiwyÄý4'Äyy€f9çʼnïWm“%xî¡' j;‡]7õÇ»Iö5Ä9€‰\.ÝJCÏs—QŸ?M`*±OÂ3ñÏ/­ˆT¤|ÚŠƒ1ç¾Ó,i ¹ú+HT)¬ÍÍJSÒºu E¬¡{Í…|L¨ok1²Q~`½Æg -óqyÒ jä8ì¡Új¢Úc¨d8jV5­j³?“‰ZGçqL!^;ÈÁÈ™(ï%õ{žÓ4ÍKG¶ÙÍdt—Ód «½×·öÌbÜï„
+ÕäƘç`ÓqŠ·Ny~Oxù#íDßJæ,4yŸÿ±žL‡á lª“£pËyýsOÝCÚg¡ýä,u7ÐzŒ<ceQŽ­uåÎQ"g
+endstream
+endobj
+3206 0 obj
+<<
+/Type /FontDescriptor
+/FontName /VIBPGF+LMSans9-Regular
+/Flags 4
+/FontBBox [-433 -313 1466 1155]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle 0
+/StemV 96
+/XHeight 444
+/CharSet (/H/J/P/a/b/colon/e/eight/endash/five/g/l/m/n/one/r/s/seven/six/three/two/w/zero)
+/FontFile 3205 0 R
+>>
+endobj
+3207 0 obj
+<<
+/Length1 1784
+/Length2 20364
+/Length3 0
+/Length 21477
+/Filter /FlateDecode
+>>
+stream
+xÚ´zeT[k×-PÜÝ%PÜÝÝÝÝ-¸¬¸»‡R(ŵ¸»»CñâîZäÒs¾WÇû÷ŽŒdgùÜs­çÙÉN(H•ÕDÌM’Ž Ff^€¼‚š‰ƒ+ 3ƒ¨£9€•‘™™ž‚BÌh²vt7y\ +€’è=ÎÀÊÌÌO:
+ü$éø·ÑþÊ÷ w=èŸÀÞ‰
+"Š2’jê òïƒçÀ àøÎŽ#Èô—÷Ÿ|"âò¼
+EÁÃxRŽ-¨-›¹œ9ÕF€+þõP¨ °) ‹²ÀQ^š×À/%СP›"Ëîu½ùsÅ乊𶉟‚²„Èh®&£FP–ÂR@iÍ¡ln¾NûLVKb 1@côHŒ§­ó1–uâ í*•L¿´e5ÊãûK#¦‹ºç*~;ÁÒT;8èí3>ƤGd™vÖ8? {TÚ©»c<æ»ÐEíÌ/<§‚sÛ9‘®P¾â h°C¶!D8l8Šï‡•BÅ ;‚àNShb©=Ó^xö ÙjÙI¼‰·3A“#\™vö{lä²c4)RK`­ê¨Çß´a‘Dd—4#»Ñêû+ž;T.[)ŒøVQFÕl$*žo€PÄo¹/D€¹‘¡ÀW>Œ¶ð~g¡ß\Üæ܆Êö„ ºüM[ðž=ÈzÛ€ô¬Þƒ¡ƒíŒgòÍvQç}äØOñîÁn6%ýû±g”FxþM¡5_\Ó)o1¥ ĉü­ÐHžbB¹ÊHâ´ùÒ;«ôÍhtÆúD¦Ræ$œªQ__º~
+ºÁæÛ ¼¿µÂŠ!•kÕž¤;.©û€Käf Rý°.;µuÍK¸·×q01
+nATõ—*w0㸇54Û1K£°¯)dû!xÞQ‡JÍó±ŽÅ `¾gˆJß”´؃çÙ5Õ{ûDgRR¿ÑÞ‚ø`‹œÔVù4«öJgµg»öz{e_%En‘$fŸ‚à6p©­åyõý­£®D[Š"¢R¯E¢^`ÇJ`.?ɇœ"ÜágPÚ¼"ô$œX’ñöP"M«¬»iŽ…¹›%Vu¾ù—cÜ¡41‡-TÎI"9wþÐr£×=Ëô(IÄ·¾Ö›‘ ’#£™R*wÈêêÞÅä5ÁníWÃ~¼ú)“5™€3M˜Ydr=p—5•zj•‚MU†P›Pª†¾•ÔSÕL/çÍ ØQg`þu´30—ÿ áäÈ&7éøîŸÝÞÞO|¥žÚÀWs¿à¹œhbÍ#b†¤R¥X&Ö­?a^¨Õ/öÓ]ÏIÍ<’iÑ’¬8t 狯Ùn~
+òrEq/„0>¦¤•3‡SŒí¦s=ɺ¨.üw™°ÉO´Y`âÕÊ ?_¦lK»FŽ>lÉGææåa+½‚•ÙÂqÙ»'‘\£§!lVˆY|lfO/ÊÛ·†>^ž ^[ |ÔE|#å0Î:8ÈAGu6显°qjmÖ@KV_•M>ml¸>õnÄ-b‡(AR1»V~ÈY!"ÊwS€ìÀæû’ªdiÚ~Õ?Úü…DûäRsà)‰Ó_ ›÷r˜ôà ­ønÂSk~_!!ÿ
+´vS|±/eÅÛ­Š}‰¦¨6·Cžûf…2í$’E”dļ‘’}¬ÀÛ§sꉖJ;…äxíY™‘œü¢ Ù_B•¿†Ã¼8Äÿ=5jÓtåÃÃ,ƒ®³×E:Qõe)×±ÚÇF+7§vCº‹µõc™{Ù˜©ÅEVëõ•¾¿…¦¿~È ;Nøð £²f™¿±»NºÇŒ®»ÉÛZ¤Ç¯ê2ߺ8¤EZk;Á6ðXtmð9ˆµCw¦ˆmÛí­!cògÄ…HÌ6e8º{s[8piÞLÎ-ƒ“i5ë6¡r_ zâU ¿4Õ,œ¦\4Ãã©{È£ü˜úYŠ°búLÊ'çÛ’óC™"‚‚¦goë.MÍ6‡Ó’Õ˜Žƒë'UöCâ’~Ú°ëÔª«u¯ðV)}a1Îóø4?ŠQ"ÖÑ[Óh4ø6¯
+—P>¾-KKWcQ}¨¥ÐïEY-ÌãÆz€ƒ˜[xí$4˜‰¡‹é:ŸÎæ܆Üw+›õÉ_µW 7¬žÌ ŠúsoN…°ãplYã$ÝL+QÀÄ©k Ŷk\¼¥—Wžr1d郊òºGD—eÎJQ½€Äª;戃Ϝ5›¥LË'ßÑßöر»¢!¥åôïžß8£Óü3¢³£ñÑ¡zAú®OªûDB×ôbvßá”EM±?8œ.±§‚r€—'Áø0³1¤‡ÿ¥ÊRVŸ¶Ônyk©¸ã {„Eš«kM´¹è,~ Œ9‘D—ÞÝœÃ4þÓ~l¡!£ø;tóº”ßg^Süº¯ŠÊfæbm!Î3‡É·4Z×ÍÇ@jÏ™ÅíØËŒžóÑ.e¡‚¶SNJ£@£8 gþu,Ì(•©gͼD ÝE±=qàgy­ŒROS®‡åеJpU£°üÓ i£1¡Ÿió+ˆ<<Œ{*±×S¡œÆ¿èv
+zUMízšwÁb´ø¡ßêd$
+!ð)—­‚`ŒT‡Ì$/°<Ì ª­pwŽ¾Œ~¦ ¶Eö—Ò9å~ñ™}8×'§[ ‰ƒà°LqÏס/R’
+-g.#ÿÅKsB ¾>Û1bý2¬7<xW¶‚0ŠCu‹È`º°í_'iB M$Ý…¸3¢1Vôdg]Æ€¯3…_€¶s~›¢7mÞ²³zq …aD uh©&”zYžÂhçL¤ áM/"œÎ'ÏP7éÌè>ˆeFøÞ,’rk¡3¸-!~[4²{fï^ ÄÀ5yÕs!Rò–y˪/3øÕ»ÓøÆÏAß…ûѤØÞþf#3b(ÉSPO–×Tt…Œ­!Ý·f¢ycÅ—Ê /uo·†»\Ë«òŽû[
+Éê64<ºzi,!<ê?
+qWâ 4•'Cv;àС«W«¾v´žs…n8Fá¡Û´1™©w¸!­.˜÷5Q ±7Þ’k¼³þ;-{Æ\pKHãp53½™
+¨§4fôŸL–÷j<âó¨!¸,öN vFx4[*ïúDs÷¸©‰¨Åt ˜a0rG9²ŸÐ«¢Ÿ]ýÐfEõîSDS
+sLŸíÈ씓°L}SöδRæZ³ ŸðÇ8볬‰çÀ ùöèX•v¯hyd&°@špÚlóÒÕ@úpãZ_p+µ•ÈôÇÑM)&sÂ; x÷aš]+˜R¯é8È»-óž‘\Í6EA3k”°v±:rgh¬•D<Ü‚ˉWÒv ‚b…¼Æ«öÙƒ“ ÌŒë$ƒò18+²’&—è}Hƒk·vnC¹¾¯â¯·¨Ì*Ç_Û|Í¿„èá“i*™ ñêLpvKŒQ<hoËÙSmñ*zðÅšP¾†ˆ3Èè“\Œ
+ÑÏM‰)ü^¬×Ë¥DÈìü‰Ž»fªwŽþi‹ßo±Ô£Tu5—šª¥›Y¢µ"íµ©Ý3#ݲÿ" ¡ô7+Jø³懔€¶ò\¤cXºêK ¯5Ž¶gQ•’þˆ.òÆ®lmF<‰ÎXÀHÇÍÕmQ”ÈNG‰¼\±x:Κ¶~n…·Ý§CH¤—®Ñ·Z•2£#?+}ñÛªrÂ.»¦/Ѳ¬Çsë<lë Ô€­[¦BQY*ÏNˆãÎ ÖÑäȸ*¦ì0gõv´ñÁðžòJèËkc/Eõæ*Dk[
+žø@Ǭ"äj8òpÝîš×vD¤E­5f=æÉeÿ¯HªçôÚN`£cåãtUD'æ¨xj§8&¡ q+6ÆÐ×®d
+1;¦
+gQ(¶QÓ¿óp٣ɲ—=*?^
+œ›@ùñãD"~\ò«É—åè±t0n’‹<2ùv¨»{'vÌÇúü¡×v±š>Ñ?•å+8]¢TÌžÁ!­NH¹íÔ¥¥9CscZC°Y²ss?ÿ^pð!Ö¬‰Ré¡™…Ãþ¼»P'”Ë%Ó¤d^ó¢“Ô}WÉ(NÜR­ì‹þ¨ ™Ò~¢a_b×ë©pdÍñi\A:¼Å‚âÙ8Rû‹£¿mY=ósœ~ܱéMòÐm£5á¬MÀ'æÑt°â„@^&ÎRõ}Rå þ’r«¼WüïKÜüµsÕùv£bÊ*7¯„Jvâqç)Õp‰MlvV¡ô—/ÇÅíz8ÙúBLÅ%Kâ6ñ.8 iž£}%š,‹'çMŒ‚¬ ‹9byJ&]ïFcžúDX8ya‡:-³Øñkõ9Uÿ¦ GœÝÛùá˜T!O×<ócMÀäqk©±¸¤7Cç³Hª"ºVr=^GË]&Ù ‘ì\¦Ö¹½XN¾ž™Gù<.¦Â©.ZlÍ–Ê»«Õ7ÂûQÂÌ=Àµ©ïc¼J÷?å™9ì`ÜÅu›Œ©Ô?”2D6}ËÌšÿ9ºo=[p)ÓS/³ö¤bÕLSbB¦ƒJ0öš–S€ºY^ŸsÃæ2·­— h Ï jï̦T0Ìq ®·Õ-3b/OÙ
+ª“F„>!¶n«­ò^Ÿ½¦«ˆž®©µ5 ¸Rq’æïà)¹ÈÿfЊÚrqP2·a%8Óä©,+~/’­ âsÌL ÿœ%uÊX…Åäèï@ õñ°ú|NçM£êyL&˜Êî˜[t³ó\vÝN­czÐýëë+Fèœæ,Ñà ƒSzyTäl£ ZÒÎÇ8gd“yéÙ*Å
+ª·>]ª JÈ%uÂ!dt…ùùZrIì¾gqŸàÌxïluº©Xᶚ—Õ—;»úHÇȉi‹Ü±Î×z uRgH±¶õû&E7íÛŸ@ ÕÏG0‘ù¾VÌ ³ÞæhœŠuÁÔ‚…¬Gý,Y®Û¶¸Ó}]'Š¢(ç1ÛàŠe%m¯‹¸ÐÊWA’ËfŲ·¼/\¬¿GûU[ŒiûCfRx)¥¼|7ÌØ9: œÖêÞÇõ¬¼ñõ<ÉÞöËzÊC@Šrñ*ž?£U<mä
+œ²\,ÔW•fp ×ö’Ñžš¦ÓPzü6g¦—Êo×ÐÓÒõ1ž¶ö'•-ãHnÆ·9ôkêñÒrw³5vuؼvñ æ>6w_šéÕŸàJZö‰~NE¨¤®m³<Ý7n="ó$~Š@µ¾@(‹^«&æïC4¢;¤d@¯ÍÛ¬¾n°6-ÐÊÙ*¼úr¦çráÇ3×Ôæ”Ô\}È” ¼à$#ÆüØ WÉðK}<ýĨ0¦Zo¸LG5Uô èwjÑ{‡½:¬¶Œ't«cÏ ÕxýñÁËÞL¹ÞÜ;ìöNp°°7ïÜ°üJxܺ8Ç„¬ñŠ_Þ–@¼ñEê
+½òu˜´.Òr ‘ÏNÄ­»»§ÙÊ«Ü2é
+Ô/ñË(Õ%j~Ä&ñ:Ýœo—»ÎÙ8)ØR;£¿±¥Ë@ò‹6-zöîMh/óø6;žfí6äJ¬bÀ¥ô'„*,A¿Å<P›þ@„¥¢òÓ:LÌš†ÒI¤D—gÁ
+îV
+ëDõï”Ûú=>×Nb¯¦Døv$Z ‘§šnP*áé rRæeq&®Ipïü«!{w¤¬tÎaþd%­Ñ›lK»‡ÎŒ|º²ëæÒʤ¢ Ü„ìX×¢"{õgqž‡cé96S¾bOÆ•øËÿ¸dÚŽÑ»ZûÕ©nõ¸ø ;[Ñ)Ì¥Y%Jç kq}QŽ“šº‰´@¥eGÛHýxfö‡ÐüŒ£{í§Í O3ÑÐ{"à1Vðqàé†2Àƒž È-o·-À(€Eo´»®ËÕ¯ÕTÈ«vÐlâ6& Æ“™:²¯CÒúˆœŠ‡A16Kgfû*s¯Krä_ÍÝÎ|ì.‚òæVÃ’53}³ÊT+üu„“LÕ cëèlµÔQDô»êŲ׋µQBãÑTÛˆÖü"|ק~ç×´ ¸
+a®£!—ùŒø‘ ir]ºY‚¾\!{Îï^ÏŠ«ò
+)¿£ø&ȶùÄ›° ‡¬æ®`1ã¥<¤Rh¾³š'ÍBû Ÿð|[äõé|)&¡⢥W*¨k˜ÆŒ\IhHCêÇoI8lÐ+ÙÃø:p ÛmÜ~Á9ÄC°é‰ð!B‹ ¶ ï“îÅ ˜ð6º"™¶³.VÆx¢ÍÎOŒF/V ¦v¾h$l²1*~1CÜH[È}'ˆ‰çhlj6ágQê{ÿç&&Ÿªeþ¼ z8“;IˆÉ •¦–]xÍëøèIÔ?¨W:y2·ý…PBÊ¿–ïÃl‹é¾œ>§WÌI
+³Çëû$ÈÈØ°]U,2’‘ñ•¼²2 PK$€*süd¹ 3¶öUëZeQZÛ´OßCØèB+£ô•U)ñ{Ã6·ÉVT¯ô ãJ®‚ñᄃ[|Üp®sJl-çÉ3A‘gó7êË{%‚#BsðÀ„  Œ;÷\É ˆIs§7 ä‹Ë$¦€Åã}‰Øç/W˜xªkÝ”:~êÿqsxÆÂÏnf˜ÇÞ…ƒV%¨— ‘»YH[Ç%Éyµ»ó€
+]?m¿â=çkÁ™C _:3(2ÌÓiKÿ
+¯å=4W_žLý˜8î`Áæ+ñªÓÁ z(4g3²l^Û¶oñôÓ_…†mNt2É-×'بG(öPÁT+Qß*¯Ñ—)tß±Z²µg»
+èÄFʽ.¦p/á*‹>Ø6šÞÏ·ÙHÓ :‰Ž¤"Êt,R/!S±±¤?´î—Ñ`,'Õ©Ë&ª•£°¬GB@¡+c]K—èìP¬4^x†úzOHÂ{ü«§’Û¥&ÛñS[S´/?í£ ÞMó‘…µ… #"žf3²îo¶2˜âǯþµz„{É6WÞ¼>IͶ’+{&Ã7–OÞRM*ª*ÓìÙÛ«iÊf£=hI=ñéˆÚ §hY‘BoP,1½Ð»›2¨šþçô{s¾Þ2_2š}TDf6õŠítÔôÙ[’Tx¼ÂtWÜR§~Y…kUu‘è–þôý¸½+Ö¨›VÔ–
+$¥fÏÓÈj† +™½®‰`ué¨?N´Ü vi÷™}¼ìkÏŠLÖ]ê~f€Üéñ5üêᱎ¼$F:nÆR͇1(±X¤¹ràŸßü¢ïœLºý㧞EÚ³#r̹ș‚¾*j˜Þ;ÊB“¹Ø"[ÌÀ ©lÉ‘;J¦DoÓ¤”ŸŒE–››ðÑé uSXXücŒ¸jR|mÝÚ Þf8@TBªÛã±Û ´mv© «Y_;‰gÔu!%ŸÚ/}ìŽ]]n…R&ñDÁ™  A~ÔÇPï?\4_ðïï|îŸÈöìÌobfÏ´¾¹ª®f w‰ºÔ;wh;]Åk¾_¡ÀZÛ­qW~‘Ä €ì~C¡„®t"ûÆ¢Íx&ÛÂÉVÒªãkb2ú£ccÃS¹×~\Ÿ.JVsÉâmZ}h@Ošèùyéñ£–ÿ¸ r(¡¼sa!mWÇž Çü›S`1”@ƒçз² QkodZ»R>ŽÜ3?H«CܤI‹ëõÖkísȪJÍ’cè@ WJggºª» XMˆKÒâÜàQ{õ´HÈÊ#k±]ãu|^\Î$êGÈ«Û\Ý>T×58”òØÍ(OKCŒÜHU[ð¤!Fó¾$ùDýe®‡¼s盲‘9‰íøm£šx;zɃm•«jÎÐ=µ«¨å‘“&ôÂuó0+ì¦ùæ ´×ñn½¿ {‹þ¯ônŠ¬â“zã%Ñz á¢Íº¯¼K]ò:EŶ—í¨‹ûÈÌÑ tEø1=A{;ÀòøØ[›
+·àp|°åI~ þÜý­D#•ib›UÆ ê:8ƒÔ`L”‘hÿ“:ãXèŒ7±7uÒ¡8fYû™o[›ò0¦R.”вˆ'Es9bÞ¤Fã"£§ÿ°ž+ nðI^DÞ#y—Ì:/ÂÒýÃ4*m”•îÆJWƒ!KUz$§Kïú}Û)ýd²‰g±r¤+l?ò[´*«JiÞÄúY}®ÚÙó’~›fOðè@ƒ%[UÁkHÀÃX¤®Ú6Ϙz¶ã+oùÀ[÷+÷51Lˆ’»ìšÄ_ÏoŽ¿xyÛb¶¸Üpß^T1£¦.‡šjÃ…P×ðš0¶ ¾YJ¢!»úJé}ºÕþƒ•vÊf
+\;¢’àqåókWz ha¾mbI ×-“‚Ò}—+' …À#$o]S1¢¯
+ÛXuçîÓ7 ;Ö 9¶ìMO)Ù!&ûø&Ž?þ©{»+÷G¸&18gø)gF9æõ2ÞX7k
+‚vÉÞ‚`ª»±t¿E'½¢yÀií×·$™Ì‡‹WœŠQ†n|z“CG*Ç^j¸©¥šË_f7\­]®6 eïôDí刮Ìfg`ÜúÛ8¶ÎYØ=a6*§_iÀ+ ½©Ä"Š:65VZžÚ<<ä$Þæíé3Ö§D v­6†YmeÒÕÛGÇs3âÂy2}7òNNP~*W\äÄ}€€ë Û,¢­ÚÉø  yyÉÊí ¯²–tï¡>yG4ë‰#¤üµ‰»p(;·—Ux¨Y#Ðs‚FË£?a–häJÌLooÚ«9¿æ ÅDQÙ¦uÈ´ˆuæYäŸ%€½ôTuyÍ¢AÚµ9¡•Ó¯
+4?OtCý†ôA\'¹
+ØUàúüî’¿YCpíZlDPuo:Œ7_õ‰ÅEöˆE ?Bµ%<´t„<’ÚÆÁ4¢}êEõÝæáRBTã \¶^˜®7óTFm÷Þ¡ºã
+x)€3j $‰^¦Ükk´‘”=š8
+£+àO*2v™lçTæ«#jñQŽÛÝÎG3w·à„¿ÉæV¸pTõ¸fçV÷èú1áëºUsh¥¤½Q[‘Rž ¿¯¤h÷Ÿ óv^P¿'9•¯4bû—M¬¥°~°Ÿ0mÑ!9ýˆ>¾ô{ã7•1Gõ.Ë¡ÐæxÝó#Ï­ÅLÍg…¶ÒŸûö&±êx"öµj'‚B: ãªéþíJ›õc#d›‘´ûfÅan¡Ü'¤
+-
+T«Ü•Â΃Ŧ")âû ~•aŒƒ}lATÝy¡büê©Å¼GŶÌw’™u@¦FÆZ§H”ïšÅg×v¤C Цæ"¤
+Gƒ¿OJàbôjpb°ÇëG}b¤ÏÁ¿TzÓ‘²þ<@( ¨ÕNyb¬=ÚëAèz»;>+¿Çx¬*.ÄP­Keêuå<N~êǦ
+¤…1¤5z¿²ÁçMn¡}*­c’Bû»Ä¡mPžªþJ!ùf‹¶;9»ê“[ÒGI)äcó@KiŽB1 !f?=+°‰‹ÿMŒ§š¯îÖ6S^ŠŽ:óÌ,Z“Ü×ÁÃ9Úó|ôË‘Êèápñ1$8ž½Ý¶”üàÌ^âxf^
+Êîì)­n Ú&W‚ ÊÓ`ˆƒþ€:J[Âdø#"§­É9®¹bÀ®ï°¯Šr´£\V¾óº=©`ôÀ°¾µ€o
+c©¤¸·ò¬ÊƈÕå‘çÔ :Hȶ'Í4#ƒ´˜–óèóOpbAƒÓg«òsK¢SÉFí¬òõÒ×¼ñO­Wƒ2¡*Èè«fiešjUÖéOsøU#w =Ž?ܳArÂ0Áߦנ¶¹ôcr4ñ”†ûJ¡32\_ å~¬YRÙ«R
++E(·ï/÷[çV n(ùFÁõ47©qÔ5~Æœ_,î @ã`Hj0ü¾}êæví±^Sî{o¸kõÍõŒi¤¼ÆÀ®"Œ…R ^šÌ½·¿dð\žm;^œ}ýÖKŒ÷}«êú9o…¦%„ÝãIä< Sê0/Ë,çY¢r m_Ŧ–ɤo¦Š ÿÔ1Š¡ZëíåÏ=§¸èÞçBÙ2XŒŸY8ŠY€l7§‹­åÌmáƒãïhMcÞ²T\…-O‹*”?d^w”Êå "ØRKëÕY¬›#d ˺=ëì&fˆŠ¼¼7¿îL’g+Øî`´*„î
+ç¯Ì1_mq|âžc®ò€Ýœí†&ãD1¡¢ÝÀ\$ôlÆEýd¹©w-–óañö\JõUékc²B”Œ„Fc¤ì<é!U°Wb<ØCÊ U¾Çž&†›æ7|cÝÿ Ý=,Ö½%ճؙì·ùðx®ƒ÷‰P?»!ù alí-Vv÷²ì|–ùw…’Wyð㊙”›Ä4y”‹Åìøšïë~2þtl—V‹;˜)¢Fð%›˜’ Y¨º´]_ÝW@*‰gç@­ïOÌ—é©xItŒ •\H~Ÿ¥'F;PN„g¶ÊhªæÜHq­ i þfUI+Œ›?Ĺ©óñh9šªêœÕؽëõüM4¼5 ¢é1ÂëvÔêIÞZˆ/,-laæG‹¸íß(žƒtøHÄÕsFjNšiHc²˜L"Hp€Æwȃ† Ã-­Oµšâ¼„Á#±®ùK–V¥7~˜Î¦¿wÕøÃSuˆQ‚ô8V:ÃŒ¸è»TJfž~ªöbxqã7œá¸§—áƒÎ~7
+ž¹óŒžô¨¿¯)…jF¦"9 /ÒÄÏjÜ¿ ™$œóRA§ß5Db”Q„»õb4*åÚ‘$ì>%x=}ûʼnõA6 jq ;…L»ë5y\ÃÛáÓèÿ ”kí}2µ¹ÌÊPa ’k_UÉË(UÕÐKµÞÖ¹aCà«x
+H·_–ÿÅ}—`€Vm“í³wgHŒæ¦÷ˆºßÎ`Ò¨™nÍÜa8G‹)ñXŽÍd3â#É£yý©÷¿¨Þ,ZíQ‰I<"YˆI§§åˆE“ ÐÁ+Uì!¹Þ,A¿¤žså'é¦HŠ°tº~¨1'/ÊW®x¬hŽâŒ1Õ—¼„–?¥J‰/S9P³¡;ÑD½úª¾>?š+5T ²Î±.PþóõÅa@–jäkq={¥‡êáXxÕ3”ÀÇÕwžhY°æW–þŒ¬\üã†[ ÇÙ°¬¥üî¸T¦ºÜ˜–>¤p(tÞ¯\†]êPÅ7Ôö‘HxrX\4LÄzdž/2…ž}%L'èO\Çw’SÏÕ±óÄoè—ƒ ú>k8yË9v\-uÛÐŽ|Ì7—ö¾ü”,&sŠrÙíõ? G†EðŸ®Aü20¤[Ê=H ‹™Ï)ªtPu+$Ž «ðÂSï‰Ð÷òÆñˆl¤V†k*0ÖÑïÓCõÎUHé ä <?…p‘Ô:bf´žT y
+7nB †®k+Cû4 çðGH5‡Ø ™ƒäfFY«áŒÀÈ”@d!•x„f…˜E ¾™#øH/ïu¶gRž8:¿c„Ý£Öî}?·,™'P%¬Iµ»âNh¢­ôÌËÎ6´,¾&Nð“Qž‹»uT0
+q„¼uNØÖ4xáßR³>í`w‰}sõ«cü_(/²8gÙ(¡OÉDhds\Ѩx¨±@!yqIÂÓk1X:&‘k­T6Aàø£ç1IÃT’tÁ’šOM<r4Õš·Ñr½R¬xÖDWtŽ Ê¿$C`˜[7my÷0,6ù_P//8ÀÚ}"bìzóÊÁvÑë6©“¶d1u:-pužÀ_Ù‡ U·™qb´þ=·K‚8;‰#A;GcËC›2j/ Îmsój[Q®Î„ÅàKk^¹âP÷S¾Ã¤C¬›èÊ8uÙ?fpá["óJB²ÚÇQ4^Z åx_.J›~D˜öД­iãâ‚´-"¾å9²R÷C¨’` Õ\uhFNðKœi®g$‚Nþ`åž`9bÕ>È1ŠZq’wú÷MîÐÂ]¶y/ PQ˜8„!=Õ`ÀõÅR Ê
+1{µEüñÔÌ)È3/Fðˆ÷^ex?ááŠ|þ›¥žã¸ðkÙqýÛ”LV<[1ËõPî~d£hK?+ÿ´›K7ÿPƒÕ…ØiÚøó/oî ›;v°)Ñ,Ëm5*‡‡[å;<ÅÄáÿøžS»™Øç]©…OÃ÷® ².r¤}1eEãK{ĆºÓU|ŠYVôíY÷7!sh%HÀŠ¶ô?~÷òâDa¯Võ‡4:¶¬íp!£ Ñ-iƒú•¦~âÁÀu•À à2ü
+×}°Ø5°MÃ(P ¾.f¢Ùœ/åYÇW©-_0»Ö˜î¹WaÞ4/p¯ß… â¦)ë÷Y–!ræLv½Æþ~S_'ÐU­f.$0mÚí®¯aÍò£À²‹i,—›E%èAebǼo¸ŠPÍ(Ùj‹çÆ}ÑH@Lã é!=eÈÕÈ‘|$,£1î( 쮧þ—P°šB‚¬VÀ›EÙD?Ð]×V»]íîX1%´nëÉ’W ,iQCŽ8L`ÇÅÜ]ít:~Ô…-Ä[ÊkØ(
+ÅrC$Ò\m=æ&—g¬ŒŽPŽ`RÅéÀ:á‡9Åf•ÐZ”‚ÿ­¨Üu„z×l™zZº"Wéû
+YÝ€gë?÷+¿Ëtbc.²øìB¥Z!òRZŒÝv.ÝŠAîNY
+ä®’$ZÃL•·Pd@ó³L2žoØ·ePŽé‹õvï1ÝrcŽÈŠWÂÜû*=2!Š6<ÄÚF
+¸÷J¤dá±þÚ’ «ÒÞXNZ¥WØG)5ø^TÕd&Šéµ‰‘žæ(r)š¶§¶yÛ«Æ‚òÜ/ðä Z:.[zöJ3¹èn¯ÄŸa|ü8H»W`Ë¡Ó܃µé$½5³}RÏŽdØbR¶š(ã;ËOFeðz¸'»,¾zþ¶ûÏèõÐ{R°ð†pM/t“€ëŽˆ‰9Ú¬J.ÅÄE‘ý¹JìÅ FãZ²Þçô[ËË‚óZè£cPˆäqFo4ët3t`v€½I^)€ ‡"V9YL’‰çob»]YÖ‚Á6±›*ͱúf_±seŒ1¦š‰[涰°:ãs`žç¯Vô}¿ç€Nìôî¼ïâ0íRhSèýÛˆg̬ð`a½×%I<ß³VY9& ‹¢q¦=«öê©I[)ÌLÕ;•Þ
+¦ôoÓjq{ûÛW.f
+ÔÈÆïQ¢¼wCò›FÍk·¾\°½y<ó³[0ê3!CåÑ©J0:½`ä<NÁš c-v·#Ñʪ½cÄžf^ž›"A‹3 $ T•ÈzDUä’ƃ›…© #ø*ÿµ˜€Œ±vÁÛ:k2· œÄ²}¢Ž—̨¨†¦­­ø@KéEè&²mæ—”éÇéÙ_v,ESäâ6§¨sót±@©t” ½$”›Äa ¦ú8ϦŠÍ5Wœsë‹€PŽ€bœKâ>ä$JvhMäD¨µá´7Ù4Á5b7ÊâÇgñ„Ëß •%îA Ðúm7´5ÿc[€¼Ä´‘*Ãk†=†]€å¦äÿ$ëë+åô‚Äùö<BSƸ>ZEü¯RQ]`ŠIzît´
+¸W—ÃUƒ¯SIÒî˜x{åE˜/r$ñO¹Q0Sé¼ûŽ›áÜûx âØXˆ5œd1â㊺<!ãj-Ñd[¿<eZÂz؃£pAÒ±‘á7¤ÔÔÉom>º¤ï9Ì'‹(´­†¥ôÞЂ÷>å!$ñ$t,V¯\OÜŠì΂ÍÏF:J¦áÛ<IµgÏžŒë¡U¥ðëDØ«…(^Y ¹²¸,˜Ú*&V],PUì[$™sO.é#ëŠE›{@ŒO»—ù°teÄÇm‹éÅûrrR\f 26$èBøŒ"&'೜ü¯ë¡@(¬Æ
+endstream
+endobj
+3208 0 obj
+<<
+/Type /FontDescriptor
+/FontName /FVVRLF+LMSans10-Bold
+/Flags 4
+/FontBBox [-460 -297 1761 1134]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle 0
+/StemV 136
+/XHeight 458
+/CharSet (/S/W/g/h/i/n/o/one/p/r/s/two)
+/FontFile 3207 0 R
+>>
+endobj
+3209 0 obj
+<<
+/Length1 1902
+/Length2 20038
+/Length3 0
+/Length 21221
+/Filter /FlateDecode
+>>
+stream
+xÚ´xeTœë’.îîkÜÝÝÝ5¸74® î<¸wMàîÁÝB 8—ì=söœ3ó÷.|<Oé[oUµP“«i2‹[‚Ì2 '03; ›
+,Ê,
+þ!±ó,m-Àoþ6,Hy—w²øÿ¦ß2ùoѵ
+‰U~kºÿ?sö±dÜTÌtÿYÒÿÔ3s´uðþ7ÍÿÐxü“+
+ÈÕÑÌá?d¶n2¶^@K5[°…Íß…ý›—›½õ¾¸“µÀÌÎñ7©ýg Þ:÷mûØþY^o".žÿ½5¥…½ÐÍ ÀÅö—øVˆÿHù­ú°j©hëÈÉ0þ¯®ùKMÚÉdiëd àà昹ºšy#±½µ77À—ý­«-^õ
+€•Å ~38»ƒýV W¤?÷Éà `ÿCýx
+¹z¥\3Yí‰í¤
+ÂDg·ƒðFÉ?²`ÜœZvl2$°o“ûâøÀµ# ÖÕáê§ÑŸ%{Ü5z5E¤×¾–h#ýм4¨Ú•x[ `,)hò´†bY+óO;÷óFý{Œ¸ˆ0Ì%<OšJM²@ÖûÖö¡æàº}Ç à̇TDéqÈpu‡G®’NØ\g›Rïã
+ùT©;\0ðK”Aë#V*Ãú¶Šè†9>®dîöuÖÅ¡ì—¥C¦OB.1¦ÎÄ¡‡N¦’Þ\P=Ę((gÚcMäÅ)$01EÔ¢…s%W<5lÃê-¬_ر“–, ƒú±MàÜrÊYð>$µÜý®Æ­p)–gâ6+CqÕ!-— رfÜ?îT¦AqE”t 5`ánµ>‡p9õŽE¿ŸÚÉÓúTl1à´X'SÉ^B–VnŽï®äÞ‡Ù”§ö\äÇ`ie¢&Vas¡“Çósœ”rX@ˆ¢CÓX
+!²üúRí—·ôUIší·xqDTÅYnEX¤ý<¥°t¡];ä¯Ô›Ùö¨^Õ™qÿ(ÌËô³Vô¨< r´ÌÜ–´kÞy&‡b¦BÏ{«õá9®°ÍG'GÙ
+ž©ÐLö†Ɖ‰ÃZŸã®Ÿì⊆¿ªÏ'=m,ùä‚{ây(l}Ø,
+°ÚiMfʼnEYQ ¨Ö² É'‰›Ý€o$çB¢¹ïZI‘£qÒò­)¾ò «Hàxo@—øâ[Çèt &³4pûªþ.¡Ô­Ü?R§Äðö[¬(}¯ZW
+Pë¡”§NÆIŒÖDM§w3fXE0SñmO¦Ù‚¦ŽrŒWÖèæ0÷cÜè¨üjx0HØ{ʹççTù#Ôª#‡&}')À›ìUvWS¸Äa9ÑßoéðÁ#“DXä¦Ê›÷@‹èk- ÈÄ> ,¤'ߥ”-þW%ªRyÆùÃx±»—S:ãyü
+¾×Uš÷Œ*­ ÙGŠ;íE„x• Öœ•U¨Û¶¹ìpSóžÏ¦ÌFzî—ïš=ö!>ŠžÒõ¡R ”Ùœ¢Â Î3
+ïñÁ±å§Ü­›VAò]J )âñ­Í’ÕÓ šÒ»W¬:Ñ>x{¹?±þ˜­%1↗>»8©x嬸|R‚ˆ´6ão30sε°>íèàÀÐéÍÞâ…,š›õCõ×f!$dè“P2sŸšpÏWÁsùÚ®ö;Îÿ%¾¿üX͸|Àó3C8&8¹+¨ƒR›©ñz§LEÑôÔáÆçÄ=:m-š«QF±P²·¦²ý™9§â²ævÍøªjß_à÷M
+šÙ¦ḨûLN…ÊaÎˤ}Ï?Ù2R` /ÏyÂ;oñ¶>L€ôèKì釈ÍQ¡à¹ ØQC‡ƒ^òè³HÐåI/KîÇÄÅÞ}»ŠâØXî=¡‹ž±U—Å©¯sD,_!|S{
+ IŽ!qÙװ΢tDmzz/ Al5Åï½K‚XèëØ T&³>Óöû©ûïqb uv2¶œfœÑÍ4–6‡¶Õ{ Þ©Ñ›VHÓïqH
+AôP®¡œˆ­1t¢|¤b÷="Y š1Äï&vªW^´W9iÄwϵé¦gTËíû Éü2$hAö {--úñEÔ fèRŸ ¢-¨MŸÕóT&GÃWH]F"ß}­ÍP^õF?ØPŸ ù¬²(÷P¢Á/ÿ
+U6^ëË•ú7Æ®:¾Ío„<T6IYÁ`whÄ$,ZWð—„Åï²
+aŠfþ¾–ÁGNxIšl÷ÕuÇzâr{E)„aÒÑ ×D×—¨cd¢ÍLâÙIýlÓJ³Èq‹â¦Ç‰Ëv¢Ítݯþ@±Ù9]™³[fÌx1ñkrQ•Gü:Që³^­]?ý
+YX̀ȲÓí¤:á†Z¨Dþ©ç³ÈÅî¾ùîUµ‰ÝÔÙ
+E±Â…¨€A­Ltvhâë°Þ]L`»náT¸Ps'¶¸ìx”S³8-Ù¶ †¼Hf=™qÚ¿ZqQ…3]®ò2Þœqª)†|­èà Ÿ«Ýñ@`2!ŠŒjÎ1|T¥ï–™f¥ík}þÅ q0—a/ßk'Põ"ÀöÝ97®R-¦±khU÷Ukˆú Ïöt•%´á§Ü»’B~ÀÃréï’1|ès8.HÙIMÍ6ÉkAÉeqIAÌò—#…ÌFx•¥xC¾®²@“²X|‰¬l“£à)ÝŒöËâ¹…‘™V/5©ËAö{„ ¨o$ZbþE$tù
+…TéªÇÅ‘¹E¶›~Å÷‹*¸%2eyd{²6F  b€ƒF¤ ²–
+ë¸_œÕJÖ“FA§ˆá2»Å¾«ü—¬6Ž»MHßí¤#ž!£5ZÌ(»•DH…©;¾ñ÷Ê`›3›醴4†Ôb9åP@–Éúóå¢"&Ä 4kÑš «ª·½D\1-.Èô>×D«Œüå¼Ðl3ºç¡¸‡£Ý+\9¡Pd߉/ǾÃIìâÔ,^ÑÓÈ.]¹ÖÀütVN¶¦$"Š‡*Ž_°Â‚µËÉ@©|šÆ©•õFWRÓ Ô]H$Yº#t¤Çݲ×Á©hw( Rˆòæ7bô»ëju³žéø¤¦v…N4-#éaaÓ„—™Þ³Žõ8`‚±]®˜ˆu†L6ÌI'HüŒ´“|òeæ|@°ãx/æ¨Àöýuh3›Y{„bG5 óÙšd/ñªÉ°$¨ôª¿ÿ ¡féÕƒ²ÕV™¦èôä¦~;3è¾'cf-È×® ‚ñ+&¼ô+o·
+âÜ$<{­žÞÉrs³z{?ÿsSÚ
+ȆuÈŠS·¬6˜Îûü¤„›ßÀ“§e§¶uMæ²K@O—×Þ[ Yº²w!ºë†*0T?\ãW{èäsTçÆ=f°C„6K‡è¾áÉ‹, ä‹×ÿÚç‡<¤ãù²PŸl•õùSð‰’´uéWb`8áÀ/“A{·CÔPão·Å§rÊÜÇï#üš¤~@‡ŽUˆy 2⥛i-XåÞSXÆ9š%~Ëçhm­¿×²'í{yI ¤@Ù¼j×ÕID‘o{úB5q“Ø¢-q|;ÂT½…Ï.duA¬3þþëⶉeóÇ€Üëüø¤«¤è´KÁ„.ÖbVàh’ÁŠaúQŒoñ¶ñ–Ƴlví!¯Dè‘ÿš ¢‚={ôrínÅוN?YMFÅ ß¾·ç’“S1©H¬4"0±±_\‚¨«Ù¯$1Œ7žÉŸ6 ýŠòq¦rÑ­p…¸•®¯bQ˜ójºAÌTÚ#ô}’=ÙòÙÏEæÏÉñs7_ÆJÏ_º®–pñcÊ@ÓŽ„¹7²ž;n¼šŠ‡ÇœËÉ»Š ™˜eT½íAët-æí¸nû}ÛÅÍÚÔ§Õ‰!=;¡dŒåev$Ç[|Ãb.{¨úã£äæÔš©Å&ŸÛìùFfZ>ñ¿W>’ˆ‘­G¦Hü¬ôÃ.:^† xÝÁµËC•Ô¼É’{t!Ç5À>Ó¶ÓWçj5¼%ù¡ô9«ÝÌLP,gVÔÃÉ;–œw¿¶ãç,É‹Ú‡ÛSITª0*sT ûùEE‰Z¾¨4jõÅÞú7+µLÖç°Í#
+ w˜nz6]hp²ñŒrYhY4L¶ðSšÙ§~?[ª4ÎÅسî_‚²±¿zÅHÉÜ)
+ïé [AÄknÇìôXŚǪJõ!Ýq1NJà×عófPž€¯Fí»Þ‹ùᶸT°‚¨AÔrîoÂ…·K&ÉÓvÜ0˃‘"¦¹òE§^…ƒ^cæçXJX Óþ§d'e•Â_‰ºö¾Y2Ta¬â®b¼qÒÌ]ìPWÓ¤æ®R0cÖµ+¡"í[‡b…¹%Y(Íè“YQØÃámCÙŒ¦AŒÚð[›ê®Ãˆô¹Ê•Y‚2ÆÁÇÓÏ¥¡Bí
+þÅ›´èÖö_Ä~nªØÍV¬€¨pË:ç‡Ã›¬Õ ^ÀµŒÂ(öY
+«9¨²·rÒ›‡ÿ³õD%l |[:§$„Ãã*?GˆÕï–dO!ùwç$%û?±Ò›Kf\.³¡Æ«¸rá' .jâöà ˜wàÂû-ô«ÉLÁFQr;î„öJ[ Ã:¹}:|(HMgW{rJ‰CbVj'>Gÿ:á”I×b¦¨fÃÇäa)EQM‘û›ŽuCøš§‘nT!íå$N50£u ÜÃÁ̯D[õkN¦'êÚ ù#ª·žNÔѾóì+Ïtf“mpÛ!B®iJî+æéÍ¢ÆêL·¶²”a’üŽ¾´#X´½Š¶*ñ»ÝÕ¼wzNŒ ‘Ý4žL>~@8é]N\%Ò±‰ríMbÜ}uV{Í©7¼=›Øã Dtöˆùë‚6uÒ.ìýâù}%ñæ.2¼…÷Ã!2ÐûeR ÉÏm‰j~.î"û0yt\õk3j÷Q9Zm?k>p´îÒ=çç¼cD‡Œ)!•»/Âf–Ëœ
+ú;Ì
+®œ©°Ã‚€E¶FžÄ-y±lŒUx\NÌÞa"A©å½ß‘-á>›]è—KN¨ƒM ^ ?|®fá¸îgQûHTÀÙ²Œ*Ø'UäQy“%¬g4+ ÿ9_[Aá%EFç¾´A<r¯ÿËäé´
+Z¬yò¥nżª=0ý®–°†Û³vÉÊϧ££+ë†î62*—ŠÙ8¶ïª­¨>ª@¶|Þ¨ ;çB Á… ™½8AÚ¢‰’È©ÜÅŸ˜(Xâÿ€ªÃ8ô¥
+/‰;óÝf¨¾ýÅ0yc¤#Ì>Q¢ ƒ¸{ÏÌ%R©øvjP€cg:¼ÿåÑß’×ÅžŽÕÍîüª«›Ôhžò;äeñž_ѥاy{~¾k-Y#)‹Næp¤¸âøÉj±¿ü™¿.e Ã4ÿþQâwmg ^=ÒÿCÑÞ¸m[í·&æ×¾<¨×¼c¥ËõÔôrh{p‚<ET³Ì îç¥!É슫*B¸29¼½T¯÷wÔ$C&ÈýƒÅYaë“ÒR‹02“³Ž¢NlvŸ%óØ¡ñ~ĬªxWžª#^3~®úk°Oƒ-êÈÌ
+¿àÓ‰[ßdˆ¥ƒÿg8!¤)OcG\çËh¶ b®Ø"Y5»Î¾ùsò0% Ç]]Lñïž@Ù[‘ !´Yò¸º,êM@ÏÇêÜÊŸ¾ÒÖYÚáìÖë=$¼ôc5°­¥îrN¦{×yšÑ †K鲜»<-ÌÎv’´Bv¤¹”gçfK¢}‚J¥ÊŸwUÓ1yÈb”C ÚÊAnîý8h|ê3Fèt½Ž—þÄðŸµòn6ãÝ`jÖïâ¹·~Ñ­¨8KxX(}ôêÏJ$…ç<Bßµ»›^TI|Ö…L8N/Ü·°šdvaè¿H+)†d¼{ad\^/îv¥…ä+Ë5yUõ2¤<-ÌrÄ6ú˜+A}*«\\*!'PWÍ™I::¡¦ÐÎÛ÷;&¥ÕcbÚèã`qY›xOÊ,F€„à‹dÌ
+k˼Ï9~˜¼ÒªUJõÁ‚ GI!S²¬Ï¾»#IeÓ#©£K¬ÚÆ;ØOÙ5³•£Úøʆú€M64ÿv çÆ-²¼Âô91ÅN˜&ï•Îˆ¿+6çÌ‘ìÁŽú&W+Ò½Ú¤zK¬,‹68j×;Ç*_f-ÑÞŠíÆWëÊûe-,´¾g…fðe
+Û{Ä='HW—Òs¥±6nË: üa²zEMÊã9Ô
+»È $o!œaŸò‡²z¤¬ƒã…à¢y ƺî/2œ¬ëÜPP-ç\ºf”'òت*ô7ý[v'= VOpß¡gwAlïEÚ[<ýÜ¢^ «Åú–éýk=xžc¸?&+[Ê8Þògr%¿+äksØÂÅ”–).âá±$c{)µ\.,ÆšCÕÏ©ŸˆÏzL¼g¿7Ýq i¿Ln>ÔˆG-¶æÙwäd8¨þäÙq‡q2fƒ~Åý™à7@ÚG¡ÁÐ¦Û 'Àðô~Ð.DP@_Ä?
+³›UN
+VªæÂ(ÜcqB³—èÞ¾hPš4.ÌAF­åijDvb…ÕYóÊÈã߸x~§÷àQöo±â@Xú]É܈!R%3iž&äy¨$Ð.ï%Gc‘2'}–l.üqƒuçâ.k‹Éú ¦µÉNCFšd·“*Ïÿ–ç|Û,d!Öˆð½þÜm<tèŠyå&ÉW|WVkWyJÕÂú‡’PD»¡d+x²É»|¤èÖe§¥ìÈ£„¸1c¶ƒèöIä£Øݵóæ!r¼‚~šÎ€U6øÉI¬ò+‘òbG]‡˜}ݱ³ôhÍõ\–EX+µ%£ÿt²²ïýéý;~¢ õrñÚ!ú©L·-ÕRùWÊÚúæïø+NfŸå±]ó÷¬Iüå`œ(&0‰M|IôˆâõNÙ‰ìlÍ^g·
+Us‚ÑeP8oAgWD3c¥á(3.†#1¾ž¦}a7›ø-±Ìb¦]zÆMËWåwuÄ¿q¢N\¨à¼,¥CFrB\¦¼ßúIΫ›’®‹-„*TáY`™­FÞÏ» ¿®É6íiÃB²ó2ÛÀDOì‚Õű2ôŠ÷f‘üä ÓœìÚ™sDœå‡¾t.Zþ§¤ÔN‰±înÍ”b“ÊhnÅÏò{ÞêVÂ_غ¥Eĉ“Ó:³`™Ý®užE…Dµñ@}ž‡ô'&¿"á“‹[To%‚¯Œ+Ô7•À£Íæt"…Ͼ£K|û|Héï8
+¸ö $]”Å>[bü¦¼¢Åa†wII¹#>‘?)éÒ±¬Fj͹ 3Æ)àUîGô¯ÀMmÿùðÕ/嬶"N’©·k×ç=js&WÏ•Á²Ž¥ç/=~-×Ú™KýšÆä¤lpžîñCØ2«zÞƒ:Œœú6Mî ¨÷WD>Éý51¬Öƒ&ÃΤ½Ò÷¤DŠ…5!uÁºd®rHª|9\‘ñ
+’;…æ t:ο´îª?™îô.¯}FM7RrC[›k¿ÐßÞî|x¾vzØ’To7å¿òöŒÕ¤5eJ– v ©béUцc ÍšoÇÒØ”òŽì‰6Q³ˆD#V_$•‹û}w2R¸È³f;‹¤
+Í~–—û{€ y2›/æG%BU¶2ßµ/”&ìÕЫYŸËL&¸ƒ.@g\
+T Hš<7€°‘ñ²þIŽÚŠ ^¦ÚÉ!W°Ì,”­}ROÓ¼çÇm›ÐD¬ô:·?¹Œ~d>_ŸÖ¸žÀ7cþZ¸ªo…æî½N]zJîA™wô(¬‡5ƒ­à®@ÖLÈ~+ãàø däÙˆ,㺾oÞì‹!_ÒïÁnQY¹¦Íž»ÅðûdØmøsSÍ
+&´«ßÙÇH»ŠÏ=\§L«Ê¹‰îì¯lNèé/yÚ('–~œB°—h.>)>4:•„ñmØ5q'=4k_PóÉ»-‚Q¤¿<¶$…É´·cÒ[o;ùäÓ{œèðNÛÇß²Q¤Fa´RŽ®fN÷rMTJ·¶lé“àì_Ù­…%õx›'Í°üE5›tG(œÎ¼øƒÑ˜ãëXó®åIgן.*i²JÃþgX=!ðý\s?ë,pÜE©\c¼,#5¯´¢/7iœfk’ ®±ŽèxB°f”‹1ô $\'ºÎr¢3Ù›Äv¢¼iÐoË‘©ÜŒ’ßB.kĨ¸VÃ’”¹Œ\t;,Á¢ËóVâ†|¿à^°s€|€G‘ãŒÖê“çU¾Í†$Ó £Ár:EŽÁc ¨¯Œê)ÉÃGûÌ®|”§©è6öÚ3Ìx¤$öŽuèp÷csp‚‘!}¹9+€°ƒY1¶}SÛyÐÛV¨YMó›½ë†[þcßË!uÝꂈѬF«_rõ³Í´ßÑ [¬Jm¼øuï_•]ƒ+‚:t©Uú²VHBÛqXÖœäçLIyýûòÍÇf»ñ•³_±72¬ýt›ËÃj>ý¥ÐïÃdÎAãõ9Þ1\`E´›o0Çu½Rç ™NO4©ºÌm¢©²z¼·ëë$Aµ=ƒœf™ þæÝdz¾¦mIix¯mGß«J„®Ž`õÁ›žî¯ÄÐq%´g–À`ͯą b—ÐGØ‹9÷.Þ(ó7õdÛS»i›NÒ̺a°þkŽTŸü3(JuYÅñìttQXõ s££Øá*ƒVC'¬ØŠÄ¤@¬Ò¯TÌEÉŒiìü×tGt,:³’q3ÆUÑ_\”³o}ŠgbºÙ[5ÑÚ%qGÒã‡ÞÑ“ŠkŽVÓWPÑð½:dñ<<c?
+’ïaÓy¡îJRâ"(¬Pd†kNT~7ƒÈ4N
+¤8Sa22ÈÑÊÙò£edýûYe…NU¸ùÀæ¨
+Ä©ßœn]¥\c4…¬¼„ÝÉd­®…>ý'*À½þm¦X63Cžgú=ýÿ×w
+y:p¿¿(Çy›ñ³Ö3©†Ä…÷—ôÝzä’7h³@|£¨vDqÏí¾çF] ~‡ºÖÌa]^êL2âái™I³¬
+‰yÓڧ呻Ñf!ÌT|aã2ø«lI̽͜Òá#Ÿ·¶4éýð6Q¶é­" ›yš9,t |÷ ôrW£x¤ Ñ‹Lñקõ:X[yÙð€ºë¼«tuhbp`‰+5W;WÆ»ë«ol™›‡òÔ+šð(ŒR˜Ë¦ñª—õ[.ñ±°ñJRÈ•é(¯V_s
+ºˆ¬ 0ÆSåÖFîÀ¼|a¯Y/j1îïÙͲÜa²Å…‚cÛ·ˆØõíMz¸‰Îßkµ¥`LuØ´¯w;ü®Ç!VâäI¸Š¢r‘¿ÍV=H $Ù‡óxÙÃEš,w€= Ôðº½üœ‡ álöóTÄî9Ǻ‘|} ãÓ%a–°İ†hJç²>½lfôƒ²`~Øí£-b‡¾­kDØ‘ŠÆ×iÜûû˜…õ˜4,¶Öt›¹ßÀ²U_‘ PLj¢vR9!b˜Œ/n?3
+çU1ü(kóNH{t§ò|.D`v€ ¦¢1Þ~i¨ËbI,5ÎlëÛú¹œÓJal2™–’òÏRÿÈýbQ€³—mÿ³Ø²XY(;ÊÂüH67‘kZôÔì’$^Èq]l†Žã€Óíãöº+¯Üï¼4·O“©ù·.˜Üñ¹‰;Qïfl»Äƒ¯bñ¾o0æÿ]‘Gñ´Ô˜JÞ™ÎÏËÕYõê‘/­Wq¦3ÏŽÝKÛloy`c'¹ážeÃßß¾“LdÆ&Ù*…2Ñ yljíÿE˜»‚´éº›ùdbýõÜ…?ÿV“&¬•ÕžÁ‹Û6eb ê)ÉÜÑ»³À-Á½Ì6®‘̉ßèž:bYܸz6…mƒ
+ZÝÊüØä)®™§õQŽÔ(•ËÚ)Æ#tÿŽ]N+èe§‹s3é˜ã0äƒ+Ù1eijÓ j¶äÜñÜ®Øc-’R†0IÎL‘îfÇ=“*ýÊôym«íWÈšÕ.…F·Á2ãbÕNæ±±˜êØ>ŠgL¡ïOÉ›-ƒôí:¦0– ¹õg,x¢&‰­¥~ßzw&¤Gù<
+øA~BŒ c¿ `’”Ãá<IV–¬±Þ†»ûØâ®.þîälP¼>±\j$µ(ˆK‹½àÊóÉÌäsŽÝJ‚Ñ•‰¼áÿæ”}£ú,Òª¹ÃüÙýÃüÉNk&g«•MH[e`Ý2"’¢¤•Êeÿ€ @ÿ½d¼„ ®ô¦wä8ˆ/|yhÇfìÈ\…ˆÛÐÎí¿{šà|"O-ÅäÒøªå5Ð6qkžò4­‚Ô÷al¨Ýb”WǤËͼËcüÑ}K·s¾mUó¬vWsŒL?Œõ§š˜ª¦´ƒ nUŸc~'³ÈÜ_ø@µ±¸ãϯÆÍ
+Ç‘_Sá}¶aÉ¥·RªQÙ!ûÀÕm“.³ç{ëO–öå¨÷´ƒ;SkÞFv4X´7‘^ж²$ø:'¿âŸkC[†zŽM÷VÓ!7f( !"ºâ_f]£ DŸAî}{;m>àúú!©gõÚÏ[™@s½W"l>¶ì†?‘îÂ9`9(ã#+Ûº'ìAðšó<ÕÕÐUÔÈW¼—V}#DKûf(_M³´ŽEw‡g-O4†Ø]2Ëx…hƒ(† ô›Ij¨0q˜£QqjÆŸÙ+‘=\ŠçxkuE®ª ÁÚä(Ñ8/æôÃ'˸‹{±žþš¸MË°@2¡¹Ñ$ þ*‰<‘Þ
+n¤ãäÒèÞœ8ÍËÆ6ÌžÀú¤¬²On–©€•E,È8‚ð&ð,®ÜGuíIvyÞ7Rv©‹¯Ra}zïF
+`­Œ¡¬äcAª—çê£.s>шÓ[²¬§íÝ1ÔºM¾¨Í…•¨š„ŽÒÈ0I4˜¾Ðëy) ½Ú¤i ½Ë÷hઠZÞÚFÁÿ„wHz¸óÄ‘“ÔØ{ì6œ|¥ô9®Q9‘,df²1’¶ú˜ÐÐ|•'áT…óÕË/:µÇ¾»²ä¯ØÙ›ÎεÂü“” mdØï»an/DƒM J9fö°÷£rM¹u¾F¯íâ5=q«¥k‘í“øz$ž†öäìY°$±—ÇÎ>3óÍm\š{ßJš
+¬ä)R€Ù É“_Wx|ÓêO“¯WÛ7Á&^×Ýõ÷P<™Ñ÷Êû²ÇG¸«+t<¿µE’èðŠA™¶VQPb•™þø<t
+ƒÈJ-T—{ã·…Ü÷"å/Õi-*‰œ–6“³ª—aýäM³(Èð{¾’6|¤«1¯ðТzqÆF¥ÈM®NaµÉÁ_LI:®fžz¬"Î(2º„¦_~4ÜðGÔ.µ•äq£æ²U æOÈÑHu„ÊX‚Rå®e/‹óņ1é üLA Wz!T…X¥¿,&²K4,EX°9Pì4øëC
+·*Týmƒ¿»)ûŸÌª6çÆ-KCB®?£á üHõ|îõn­ôp³êclMˆ-;/úÕw/Qÿ'lñ|št¯ïžÞ3¾ j•Ÿèðn>ÔÊtD*‰…û쨺±QÜ[Eps©‰9w¶K’«§õç¿Q_…©¦NSŽ¢ýÃðg<†ììDÜéöÏå*8x7¥>‚ƒŸ ˆDˆdÄ NÌVŠ±C‰Žôª&­? =Ín5d¾
+R]­¿ HÆ¢× „›*#¶LýâKPl“=jl>Ö»ÓÞhtùñ.À %?½{7xšha€/ì·E˜©ù§Dö—ÚrR{Û‚vå™TV'Œ,葪«ÄF™ ,•4!
+ÙA²wO}½a–8ÇXõªî›H«º^úâŒÓó10 w¾¸)¨èÝCK©:ýªýFЂ‰¾l•ŸHüGð49ÉÃh¥&³!¿÷ »Fñe& ¡cùºŠI¯ï„’•Þ¶:qP~ZwŸ£2wj ‚û\©[jáB µ¶òl²¸¼sKÇóº×Bc`¶ç%‚ž?—;à
+v.ζÔ­Ì^î qjµ(ìáŒ~:ávv¢6‰öö÷}b¢ûaÈ™ü„ò ‹ï‡Éób[{úºíGÁ7Ý9Ý‚Píp|¼óó,,*éâûÜåt€ éã²øùÉÄ mz2\ï:„îAVmòü“²Ø8ÐÉ!¥¤‘41‚òIC÷ E^JÉ—pÅg,úó“ VO(WÙü8çó—eÈŠÖB¶{
+9¦{ÐŒ­ÜÇ/bCJå
+P‰>FÈš¯b¸óì>SÀqšÞ,oe†ðÿÕ²{ †PzÛâH®ËjÃå¨UÏ=œÃ܉Ñ2qHuæ(7øGq‡’²3ù׈R+Þ½Ð)ÖÂ9åT}±çSÔˆÑJÕ—ñ_†=YC¡ÖS#Ãs–\çÀžîóã‡+ß5G9z­ñZ¸CºåKì³uç¤ÞoòÛS9k0DµùK€*?ìq‚ G Ú(²ž—0’)6Q&âˆi.Aêõ„I/¿4ÌtŒŽ[|ç²jÝD4†®?A›¿åÄOöMhÕâWhËùAI¯„¼IoÀàèLÃUär_ ~gœöeKü1“‰LZZㇺ¾Ù9™¨³1Jí¤ÄNÒT§ƒç+ã·-îM£­¤i¯é8ǦPHÝdш÷$Ú1Ì“&Ë_Ð}é<ûÏB—šÕ˜˜ÅÃ~²Þ½£Š³IB–˜äÖ¥t‰º.ÀŽc¸Í° êJ7ü"ß$mx'•æ¡Q4æ?V,osˆT »‰œû8mÝT“Çôº¿Xiˆ¶^u¡¨\£•bK4“%5VAê¸âÉãʸí}uÿä÷]#€µ‰|‰Á)„a0AŠ8‰>(7²¼>D¡‡Þ)(4ƒ®â– cÜz’¬HU†#Éæ—Ì98û`d¬z5ß.ƒÅ>¢7ûõ)õÆ çÀEZ#OxùkÝ¡ a
+¾ÑãgÌ·šâcñ1®áhÒI³§L–ÖƒÕ„1"ÆËÙÚôh´¶¹h*êWœã‘¾D`j+R
+°(Zƒ|ÈÉ\)ŒVqìW!¾îªq­Œ3ìMuÖø¸}‹žI]·•<*ÅÉ›^ å©Qï‚ ûMí)“K³µŒö‚]³qà¦Å \j™B~gÆwïÙoPðàVbã³VfÄFØLH4ÜÙŸÄàMéͼxè]ÝNÌ]ؘ6ÙÿÅÑÞJ?*‘j4OD]C˜8¶b‹/mÿ½ñø6îD\XÒµãH‘ƒMþ¹ RktþÕ†Ì#n#×ԅϲ­ ø¢°9‹Œb8™"v‚©:fæ`X84é]­{½B§„ B§ÈrDZß!4" 4‹ï_…QïU·Õ`y$£¹=ïB ”Cç̨jŽÓáõRϦrè4¦wqÓªvnEÐ8éªé6Ðã…Þ0ÐM9{Åþ‹Ú‡>«PàNl²AçÖ‡aP]Šx¥6|î²­ÿÆûÎ/ͪgXâ%1æyÄ“B:Ž¤ËÎQ{Õ ­xiqèºàyÒåÿ~î Õlücã ûÅÝ crS’«øóeRb
+?@-=NÉ‘Oh–ô
+KŒz±Ê|’FüCy-¶û¢¤p'‘âž=0‡ØÔÈG‘I¸÷yHDwž>u£µ‡ìë€Æ7(!ÏÂòÍCò¸AÙ?u„4I$-Áôwãï †‡9âù‡u4Lóôþ­ªyz:î³E¸c|lIâW«f ‰šñªïeÑÍãvG… ª8T)M¦/WøÀÐfËÓq¤ ÿdX;Æä üº­þø5kÎî½ð`ZqžÚ%Ï:šmåÉG
+Ä‹"ï®>øþÕ,·äÁÀ`p±¢ÒÓI1éiPè>A‹Rž”_§ÿ_‹ò`G Ylx2œµê÷€·†×ó‘Í‘¶".ˆÀ¼ÿf ˆ+Äò
+]2Û\h·yÅ¢(Ózí$¦·n ¿Ù€‘ B*¶;„ðÓÏdž?{Ëã¨S fî˜îÈ3ÀÊW¤>t%]l»Ç²9D#nVʸ˜n¨\_`$mGìÉqNp!ëJÅ $j}Ç ™·ÛúÚ¸IîI  †3¢'R…Úõ`tp+ÎI)oNpõȉ{-ùûKq.ΡY·‹ÄcÏÔV#^Þ¥.dÞd¬ì[ú87X¡ =èËÎΖ(-ßI·ª-Êw¡I-Q³I¥[áÜdi>Zm×Æö‚nid¡³É²Ø(D£šÿ_æ„ûDŸ¶÷°O¯¬Í§ƒ:!?ŸßÆÕמ
+b^Ìà¸IËžµcÜ®eUSíéÌÒ}è}é9bÓÊŽ®ÇŸèÇ<Ñ`{´à¡§¢D±³ ¢…Ž§µ±Û°‹2' ™´ƒa;T¦ß܇'F‡–Ñ­\$h³Q[N\jD/ìÖØ;3ÜÖ#~ÁØu™&ãIñ‰ðæ+Š¤ð| ÈùL[É»ë2´
+‡­tïbœõL‰üBíÚ~]¾€)ƒ)0©7[>‹?È‹Âá C«GZØÿo‹aªn¬EáÙVá%IpÇCˆâR„ÇÊ¡áñËx “µ›ÔôA¤,‚ÿÆRÓÏü|²¸ÞA‘^TßgŸùBØpL»–b•Î!|4XrA<‡hpšTÇò<´€^?WªB_Ë…aÄ }±+aDÙÊú ®¯
+’}\}Üà=̲)ÄF{Þ3x|«Ðû}¤õ¸­¨3+b.°ÈGuGÙšhâ–Ý>tàßVày#Z‹8ò[É!0[E±¸ÿÞ* Ïcô…È·Ü/zƒÉ@&l¹”ë—q¿G2zp9?9oŸ
+ëÀDÜÈËP¤¡d/wØÄ 8—Ï5ä[ü<„ÿúP\0MQNTs¤™ä…« žŸæn~“ñå™yõã‰&¡ÖÕ1ºí©I[)ÌLÕ;•Þ
+åcVOÁîg¨¯fXDýíÍùÆ“Åç¼âTy{”P¸… X³«ß
+͘G:íµØ:DÌN8ëfûgÂ%‡ü‰€QÄýâðÌÞSi\è·F2éoæʲ%•)YgÇŒyOw½"<ñDÀý¿v¼!‡]uð¶væ
+E³¬Áhe»î,PÛE¤.öûõ]ŠoÙã; æÒ1Ö†Ì+Pžpª_SÙ2ǧjÇ^涇@ïüÀÕ<®R`1´´ÒzêP3ø¿1ö;Éöd¡ôT4ÊDùrE@5™ÓJnªØÑ+'ÍiÂõwOŸ¶0øJõÉPDýâ9/®ã‹áëmo*¶œÀfü#fÔ!óª# ºÈÊ›?SLtšÎ½½§”(†‰øê{¡bãË{¾Í9ûX”ç£u)cª`C@>ð"QqÜ|ó:{YA*còˆøVE°ÞGÑú™i–ºSi
+{è 1µèíÕ]"ßê.Öh•Êßp3Oö×´Fö{÷
+ëóZ*åVbbN;£¸TÂEVšâ9÷S/.›¬Mþ•.=¤Z$¬ä§Ìã®Ò•i:Ôºþ]·°P}ùMF•½ìUm÷©mÃxHã‘Íé`”°>4N;)©Ý“›¤Ä³!Ô (\˜˜Æ<«…N€°ˆk§+vt¾×X¨9p²²È~]Ã*pñ ¼ª.A&À1ϱ>é‘3TAÄ4)mÞödp­oR_šz4¡Š«½ì çp†þ3É#½–†xË8÷M|´?ó}ƒO¬8ãZ;b®« –Ÿ¦»7ä-rÁ!#…*2Å?z[66ºLœÓ²gi­¢ÔvíOô°åºÛnV÷´³¹Q;¼Ž:WŠ)m7гñ ‡•³B1¡ŠSÿçöæåì(h dêbÎô
+zzëO£Fì…ƒÝZÃRR™{%hû}(Aa›¿M&{Iu[¨¹³ñò
+(e‚’
+9‰á‚ärÛÙxÏ/,ÜPüìK]cÔ÷Hð@ŠÒ£K,œÀöãˆë”'Ô›às~kˆx˜&íÂ"n³¯0&­|àÜ ÿz×ϵÆ,B¸°¶è‡Ë´µ²xnw¶žÊ†KO(ˆ,p¾d 4ÿ/;`PT°‰¶*.™tæ…¥ó«øƒ"*…–µBëõNÎ2{V„ YlAQß}]µ­w‡©b+j6“y›aú‘×@?Þ1¼iF(¹–aß2òÔ½áöWÚ‹ËüâÏâÛ¨cCºÚ\‰5Z‚ê@4Ü`tRÊ«•o£Çblp±j4•óþ¶>Äi5SQ–Ê)ú!ny€fZ5‚3Ã5´ú•{–îþ® êÔÑh~H²˜ê–zÇÈ g'œÖf±)ù—¦¨¿­ý½,ÃÄ÷z– ÿ%]Èé²ÇI߆Ýö{R·ª=‡Ø…ϲÄÍæ Yµ÷¿Õ^´¥1uÏ€-køMisì kQÂq}XÕ©neìóÂ
+´ÔùÝPH¾1òœ¾S CŠNnä·DJ}´P¾.nËÝ{ü—/­/µÉZ_\ÎëW&«ü»kìùß8¢:Í”íŠdýý«]B2Ò-.ÖL6ŽòªÉ³hu¥Ä;
+endstream
+endobj
+3210 0 obj
+<<
+/Type /FontDescriptor
+/FontName /TNUVHF+LMSans10-Oblique
+/Flags 4
+/FontBBox [-460 -309 1469 1154]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle -12
+/StemV 89
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/I/L/M/O/R/S/T/comma/four/s/slash/u)
+/FontFile 3209 0 R
+>>
+endobj
+3211 0 obj
+<<
+/Length1 2146
+/Length2 22104
+/Length3 0
+/Length 23408
+/Filter /FlateDecode
+>>
+stream
+xÚ´¹st¤Û¶>Ûv*ìضm§cTl[Û6ºcÛìØf'»ãtø¥÷¹÷ì}ÎýýûUo=“Ïšk®¹jŒ¢ QR¥6µ7JØÛ¹Ð330ñ
+
+Q' ‘‹¥½˜‘ ÀébP4qùpu°01qÃQ
+ôõþ§â?3'ÀÔÒÄå£Ñ? Ü_Ñ¥íÌìÜÿ0ù_Õÿ´
+ö. AõÿÏ9û¯\®66
+F¶@ªÿ.éÛÙZÚxþ‡åYhÿp¥R°w²5²ù/¥³„¥ÐTÉÒÅÄâ_…ý—\ÚÅè£÷…íÌm€
+tŒ½ÀKp·#å¬zvtÊ¿Êë6¨.B*½¾ê<Ÿêá`£~æR!ð¤ôTPÚm“¿d¶¬Z¸&óÓ*9‚cëF­N¸:ûÂiŽ½±-w+”Ç›êKÀ}[1K•6ö³3“+`´ g¡¤Œ ]lGè¼\Û\…<ÞŽŒƒÂ¼·‘r90äQ8ÂUÞ+° åC%é‚í»Ç«nÈÑæáG©6XM$ã@h¤d;Kx!ó#©—ížwKe¤[Kç3è9oÊkÞ¤$`,Ôïm”s
+äl³h4î¿'Ti'zjoYh¨¢ ‡¥…jjLȈ ô>ÝTqw ¬­¦ƒüöôRGf¬@9«m ÊwBj0DlÚÓRòuvÀyÏ+$†@•Ïœ–×|û®Ç˜{ÉCóÛ•rªÝÙ]˜âàåà·!{A*Ø.(2Ó!<ûùm¯ÜN¾°õ\tü8‚ Ò%|2ÚÛꆇjŒ?k¤&Žj¾Û.\jlŽ¦'†7r]·%BÅ>ÍIiCÑïÁÚ(5ù*Øœô
+gª¾^²G'¬«‰d0;-ñ Ðð;È^wÔ‘ž©|j•ßškGGƒù¿n’‡>ù
+—sª@^A<îÍ8ruXe¼Sïq½®Õ™A,0¢Ä *ܹ-i)½èk¨iºpÒpßu“x~>ÒÕõaó>¼¡ (F/ò²ˆì<,˜ÿÔ‚<SþBp¡‹2À¯x+r w/×biô…È€v&ꀚ<åü€õZ”GU˜Ûá7aOœ‘w:æ~ߌÕUHž8ÍÒA«ÿœÛ>aìüœ3©Kó÷_«eš!ˆ§CI­b->l-}^m-ë‘WÓLh:ýþe ƒlîóœ,ûE‘\QÁÍâð›™( 1Þ_ÙàÀÓXK8׉åt.?k¥K¶%õÅ
+ÏL^
+±T«¿CuÜaSU›“s ¤M}êAÜPÇFW¹ å¥EáÎ.ðvÔ´-†Í9H{Kñ+ÐI ¡žúÂKtV“ìg¾þ ¢| É@²=½…V“;+¾éecÍ=áÃ#îî _b9Ã!E)Îáïç…¿7æ¿K?ˆOXIÂï'°OM ¯ë.‹Ý`/”X`%”Š¢‹†Ü.ø1ó '>rð•Í †×[ÁRb.ù¼úÌ©ÄÐR #ldV•ICÀ‘ã)éIŸzSV¬,€RÚ¸ÃMU¹g%åŽ9‹„ÓcÊê³>sCh»¯
+#iÅy0–À¼iµ¼¿‰,Eÿæ¼ï¸ó| =•ß/‡Ç« &„rî›nWo0rŠñÊJç䙢qámQˆUg_j!3YwNã\)Çc ùÒWúÿôg ý<Æo™ *?'ŽVu¬T#Ê1 êºÆ‘öJw¾»1c_Ì+†&r{"[Ãó/=MCÒ3 5H8•ûÃj!Cî­ 2Ñ;4d½ç!7ÝæBt6Žç‡Ï'2\8*¡øñHœ<$F¶m”ý bÏA•CÁÜš<4]*lhú¡+¹Ð‚FÃÝåo<ýèÀä8ñ;Öˆÿjƒ6æÄϲ!m+e…ð±‚ÊŸšu ÊKK€ù¼ý^„x6ÛŠFìõÛ*Ž(N6·~6[ø¼0?+úa/äÅ:GÅ}|³:áÓƒí‚.qxÛèu¬Bl=†Û7Z#òŸò4oõ¯¢¾l§õ'ý’]9ŸÉ-Ÿ-NE”‚ý³²Iî–ð„à7fõ«º·¸\Uø~¼#s…:µ,•´‹AX …+2^v̧aÞcº¸z
+Æn¼u.dnX2ëuóg7Å4¯
+·7Guý—eõnÒ#‹*£g|QöqudúUŠEáÜQD¼±«W(S;á(ت9’š%Ø3ï>‘ ­_~0¶æ»‰ÄÏ&©Úâ:œ
+0B@uGZIxwÝ3¬£ªk‰‘Þ²8„Öyó.hr»§ÕÝíüpF¸±óCüö;@-´ç°Ón ö‘ôÜ¿aI©ÆáQF¢uLé(Àyn£•“Ð?ØRûº@Ö×—êÚ
+Ñ-a^°–­.ŸþhN\Œ §JõÞ‡¶´BOîMļ¨H澊r2˜þ'ÄýËë×v®“Ž–ôƒ#.lF¨+Èú&¢Ÿ0зÈ$øg|(ß±-‹G
+•£ßΔ‹â¹ÒÉF÷8â}sü&R'Us:WÎk‚ìWµ§ÌrÒö´ØÞ†F‘Æo7ÛM ~`çd^P O{-Ë´`nf?»£3Τ÷ªôô6"÷Œ¹ùó¸Õ©@;B —Ùcµ<‰òNjRš°%š”÷ð@´ ˜E9IM®T@NU1«ìQ»X¡ð° DúYÀì´Ã
+ϨÕFeÎâ)RLq¨ä8°Znïé]rô›-p¸¨•(¼rÝ“FÉâ'›†íK|ßc-j{öÕI»n¬»Õ;Wßoò×î˜sÎ6Ç'†tš4jYöÛÝ gË¡&£'Æ›uóŽŒ?öSèíõ²Ï1ñ|µ½RÔ)|FDŽf”:ºq@fwk´Õ¿Q
+#)> ìÆÔ)šù‰âšþ^M`äô¨©*wÕ­Þ‚kt’ô¶Bîº+ B¯îPÉÐ4Ä+©eH¡è?JϤ©âÔ'8œO-DQ…["®>Û™—¶Û<ô‹H¯ÙßP+Ñ5´SÒ“Îv{8i(ÒqÌ ­á]Äà}ÁÈZÇ*¨9\N¨õkÉ€wTÏ,ài§Õ­€7¹j,ᇉ#¶-úŽî‚Ç”Ks°¹”±Zí´¦QêÞ|A6NeMÒ ¹²ˆ7ºE/ºìŽÈdÞ{]»`j*ù©õwºðÉåÕ,zN$û±Ú”yëð÷
+Ë JpÜ1äÀŽä¥Û%ƒmoãtpxðA8]ÜÊVüSCÎ¥W¬´VÞ§¬_ùƒ}‹ïpZ‰«Jq0XiZÌ®Jì­/$oƒÈBÚý'üÉË™1PâzT[
+U<×±õ¨§”ÚßxWç ™²ÃM_ìV”Ç‘Õ部£¤×)V¹{y¯¿‹(íŸyFÑnƒa ÖÙŽoº~Ǫ̋³æ)ØbÛ|KÈ×q[L¹Š‰`fpyʦÊT5õk^vÖÅÂÓ`Ã)à7¸<R¯RÏ5¨³Ä¿ˆ¶Ã8KU(±óϲÑž*žÒæÂg ¡à™¥h¥t©Iì'+1è1‚ÿþùm>«/˜Iõ™v9a¨ lä9發v³ka"„Qà-CÏ—1%Áù:øîáj`\ÔhšÏ‰¾.Å®Ãã°¢=¿ÂŠ˜:gá!YÇ€Æ3’—J“‡Ó x ýÌ篕 ¯“?‚ÊœBÍi_WÝBsL½cç®´…®ÐWï§FÞs“̶û Ï›i HH:·å€,B/‹‘F`Ïí
+Áœudw€Û —ÝãïyF°Å¸ðx ®ë2¢”Ôå°†_ꋽ~m:Sž…¸½eQr“-Ê;‹JèšFɈ?&Yž›_q¯óÇ%JÝÅšUñV¿¦Ee”]wÀo“•“f„?ÀäåF
+ßC3‡òØ-דzT÷ã6¸&xZ&Ê[ÔŒ8 õîí­½†½ê±imù)ÐB‹ºØ{Ïg~¾Û7ÞFö0¨ üײÊáûï»Ût½Õߦz´W}åíD4ÏXA'Á°ÇOØHÚñ`Ûfç¯_|ÔZÒÕY¾ùyu›Ù)ã´ÑÑ蘤Å* ˉî"p|ª8ìhëZôN»›Ô˜G%È%*Ó =0vn
+)Îäœw@m4L’Û{£‚ ½Í[Åᮜã³Z-ªFýÞá7>&àv0Ä«j-›Év?#ý úݘ,£X„gý÷i8DW{:׃îö‡Êò|ˆ!õÄœüÍÛy½ûV›T.Úš?-µžETë¨>0XGJLJò}%Q€f&©îv9€îÈvM;*ºz±y-ðëÖ°¤F â3”Xawü€m¡ÅCS¬b»OâõÙÄÎõ*(üo©xÁ3Dt-«Å]ÇÌ$„U7UùÖÛrØŒeHò/]³ Ê-±.bÚ
+tWw,z
+ ÄÒ4ecaú#îmÓüMþ@xùo«ª
+Cò‘›|ÉßOÒÆÑ4qÄ=0#JC°ïú§
+q¿/—–:Ì 7ú6°9_Ö¶)Ê14$éÇ qZjûï,!úƒóü!»r•¨›‡sŸ|âæl–]4å5th©+eÛ‡ž>ÅâC&óU—ÞÆV´y\,HlxüÄbüœÃ\š¡“Êì +ó é\I¹¬^IpcðyW<}[â[hâs.ßôi¿:t—)“FÆÅ Uæv
+-Š6ùv©Ðcß4ÒWˆ7óÊ`%§
+qëõzIçbé‹v‰7ŶofÎà˜_Ò$`Ùíb¥C(sH9]!¥.P¨¢jËrc?¾Ô]úU<Äî#óíÄGžK‰ŠΪÕ×&/…æÏBÙ5/ÒevÀ5¢£Hר!v€RÔKï ÕN›vn„òÉ°é2>ÈÁ ­sBÎm´Ô}„œábŸ¡k6©¨ÓÛî»t["O"ï[ËNqB°—&^óÏ
+0gyà7ÇV‹´«$Š}äf™1ëWE…NO; …Ž•¹é’ûÁW¾å»„n
+[ð¾%Z°M]+ü6*a¦cš^l¿f@(à{=y°•ì0ùª–Šš¼ï78Ü1p*]aÅ’𠶄ª˜•f‡"…†Ú0…½ôÓyMµ¡ÂÜ)ØhiÀú n¾P ìðPiâÏ„ù ³$aF¦kÏïm˜HÚùžº!qŠÍ%—t "yðW¯—Â_Ý €
+±O‰àqÀÌÒ ™w ‹5i²aãy9UMs±Vv÷tÉ_‰ô×°øâKáfè´u¹ì ú4ÛXt“À{§—¸º>åpJ õÊ•‹ó
+Ž)´ö½¸ü@óßëÖA„*µÜêa —B|} *Ž9æQj‚ÕÑ嬘ŸOíbÊ®¾CU×h`f9ÉšŸRs69z¤ÑLíËìXªð
+Åbm$‚æ²^[L@3r\¢±¥ÿð÷Ëi ¥E”†¥¢—>y)sû9§×O·EWCÅ6þÍDùF¤Û.õ|âkU¢‰k0eìwf—DqÁRsb/'•¶?ñ!T¨ŠPòƒ¸l3u+j,T&è)û߃å†Ùó¶*Ï.¿ß~ñsºðJ/?ùÝÊS—ãå©O» ¹.²g¦*–{ì*S®cÕëÒ"¢K‚ó†í¿«0 ¥s.­n!$†Ä¡…ãR€ýèùžj\Ÿ«lõm±3žå{QÙøkŒgÊ€­”¿˜sOÕ力m 4z»¥v+‹¹Í2Áþ™åoÏ| ½Ÿ¦k½êsæ¯l³ÑÀñ
+X¤Ä :¨×N–ÆpËâ€2š"õŽâØϤ¸v¤ß‰X¸Äo¡0²Ä9
+¦b9¼šM°o<ûZÀx:^Nµ¢Â+háŸâ‡M‘çÑǶÍëyï“Gó( \Žˆ.ˆýsºhûâD:qš  Jà#!ûîÇ°>{8Ö?± o6EXuû°!Üê¼'‹uM´±Ö
+BáKÖ@W>
+G¾Û¥p·^¨–ßc9„xìoX[Ü°k¨,¦ˆo×XM²µAôá{6°ÐrQ–…2×)·júêÚhìCVrÅMêÅíx ^ç¸M®9¾'Vl+ƒ0Å$Þ]TÈå†ÍªÌm‡gñØ;ñÚ‘ÌÛírˆƒ0–²f¸ ÂG“¯ê-paÛ׌¹güçÊÏÞ‰AnYò—9lQÑpƒ’8h»õ\¢Ý€l5Î9p%“¨º<»Œz¥ŽÉÙJ¬ÛVK£¤'÷k…åfž8¯mM£&V…áävÉ]¤Ä1Jpª½‹u\?â¼bLAv9ª)¬ÆîÌ7Ȇõ´± `¿®˜!ªÌÂ?ƒêI6Õ9é¡ ©<ÀÝ4MW.û3kPo
+"«e™‡52@,®'ò1ÆÐçTðÀþÞÆšåfI4°™t + ÃÈ”„@Ó‚*Ð-VÿÚ2ú<\0º­d$âS–†[æ½L6+~Ì‹ö-£m†IÓô2üð³‚J@ ®q¹&Ô²ÓÈöuWÊ(%dEªójél7Bƒ¨±ÏЉé‚w
+²RÓ{f/Ú€þ%è0¿s3¤ÿ- JëðG6>¯ •šŽ4,!V„§“Ž ²‹Y—XCP‰û‘XüãäÑŽ'$¾r¸~ãpCn¼ v |,·r­—ëÜ÷}dŠûÖ£]µÇDr°1fA¦)ZíwuòÄŠÁea\‘ŽÒiL’%>L AΉ¦ï·y©Šmçq[Ÿoj?áC›–ܸZ‰Ý¥>¼Ö{Lo„ëó ûüPùº½•ÐG ½m¸Ñ1Û®ÇZ÷Ú¡•Q©&6‚8¼ÜYO5õIU›ƒî$äw?Ï”r­K³@[…M¶¸[$iÂy^ƒ*/÷Y>«ÑÞœh”T[У¯ÈÖW}O`—@(’¶i„¤‰%Ì|c‚Q]¨ä4 & Ì‹@Ì2¨ky|>òa"ó”3¬š Ý ˜„²EÁµÌ¿\õÛ÷W*>ɵnöÖ½¶¶2Z rçç€ôþ½ZžNˆï™ÆD+NŒ„ÏÆp6¦3!ѹUËŠM) 馇ò¨º“ùj;ˆ¯¢ ‚iµ×m-”‚h81‚Á7)ÃÎÄXÙG¼‡á2R£…6¨íÓ'ðãí Å|ÕØḇb†…M|¹vVj'˜Ÿ]þäzhð™ šd[ í‹y~¹S²nrr)þ2íÁ÷¾ºHæ/Õªê+]ôÂÛZļqX*ÇN¾m{jæˆÊË!mµpŒJ¯ifÖzÔev¶Ÿ6£Èˆ~Š)0‹!Ò÷)¥Nãuñ(œÍ·Îk ö>EélÞ'ãê³FŽÀðÚQñ0ŒË±Ãpjð›⻓zG©^W¬Ë®¨JeJ§1'’¨ÙH}Ö«hßüÞùÂr¶ÚRØ÷™‚·UMBµ\¨ä$:¾ì9Å<îI;¡®íh]o6—Úˆg¡²µ\RÎ"mk„œÈ2ïsÛˆ÷{·!xˆ—rÈ®*l®‹Oiyð
+Ö=WÌ©O ¼‚É7"%f6ýªr¬ge6V>‚KzûŠcÚùïûM™GïsXb{u7aòªøxLòÞà%h!ç)§<A"„¬‚ê‚ùÌ›„¼Ø˜âïˆâeüÞ'ÛŒ_ üƒYBæ¶Ú»¤*jÙSÓ’º—Ѩd”(ˆõpÃR
+
+—ì«ád•n7¢(FÓòÓÓ+¾VL_©Å™ZÆû]œ²1h f…À¿;ÖÈÒ…”cÑ`ßßçôô`liKÂß³ êíë峌Óæ>”fr¼~
+M¹¿~δO“Æì¢èŽ«¨[Å­gó›™^Ž¹Šª|«’ÔLS鼩…
+²=åBüyµòæH²à‰0Ž7å.µ•vpN²±GÐeØÄž/Þþæö…„.|èÄnær+ rÀò{§2ùºs¢> àã
+üQüþŽ½7{€Í;7Ø’4uO×¢ÙÞêñO8ÝØWî5G8I¬öj…Øîö|æás™§úñ"a\¼á.öæð– {ìaµ¡¨+w=#T½¹aè@GLJšv“œÌ^[é…ÛUFß„Ûšý®²$#3ÃÙN«X÷¾€MéLë¦×‰Í¢9Æáúåqiª H DþÒeÿó;çkž92«ê8&Åþ±g7<Èâ%Å™
+<v2P2YN‹\8ØQrræ=rdôeæ _b(ÄïÛôÙŽ£§îçê63X®% #­(2÷ú'‚(½ qÈà|Þ‰k‡}Œ´£’NÿÓØœÌ:Ä —5˜SÊŠ¤Ð˜5<+H™[Â~ÙÅ‚nYŒ÷‘Cä€OÆ­}
+÷ÍØÇÄœkG QÂ
+ ½Æ
+¡`““õ|Vƒ¾w7`9PIᮯa0úJkš•ðžÔë˜<‹qÔ…•TÉ¿Û{dÜ£ož¨zª†  ·nš‡vÕ|Zí3°#oX2˜\•‹‹ñ˘D¡¤YÜ¥àpÆ}Äa'‘]b‰i\&_2Mì1èÀr-Àã@Õßå2¾@ø®Û¿Ñ!ß*¬lÿz{€ 0Ù~ié›Õ¯h«æ€­~I|F¦­Xå&^÷RìßëC í¯)ÓÏ
+Ò¸èŸÃ V58òêäøZÁÊ„fASKé×Á»6qºŒ]Ã⸙=y ç±6õY­×ˆKYḨ!Ü X±¨VH&-ºA`ä÷ !††XÜL*RèàÄq *«æ['ÑoÎ$«ºy| âôÒ¹ˆÑ”€G«Ë^'륦?°I¶å¾jmŽ³·¦ŠÆH³[ÃåQ¯.Bê
+Ù˜M©:T-a;ZQïî(vD‚ƒðs„üÍÕ—9j ÄÐyò4GÓ”m±•ïH˜ž¥ =Bé˜0»"ä\Éa”'èDÞÓÕ KÂæÇ–1YU²PÈ}»èTóŒg»¸–ø ì#až&lE²Rxˆý¯®‡xjJX´Å‹ãÞ[_¡Ÿ&è ïdy¡v'Ö“ »ç<¨Ú¯ûëNwgð§í–=šPŽÆ¨²‚,K3b#XrWF3¿ÆÒI©Ü!ݤ¸áª1’|¬{~w†ß©K⪅”ï_ i~åÛZáÌZg°—Sü×ãS»â@§²~¥Ÿ¶
+ûË?àg©Óø?¥­vúÖø>‚­½³@?$¨XäFòS^Ró«é}ß»o±`ù€5í.8®ŠE·4BŽ=Ù RÕï.é¶)PM%ðÀ¬.ŒÝ4rÈöšìulÐF ëƃ°è•³÷õD÷ž®¹Lš`Åt hú]¢d:Ú0úP%m0?¥˜£ØƒªhÖ”0uóÀ­P–Qÿ2x– ûø/%FÊ=š9ÝÎQ²¿[ö>¥ŠÛs„”檲Ÿ É uCúvü®í-q¿˜Ìég f^’ðFËÂûö¥$Î;22ým $¼¬¹u:žuJDRœf†:õ0a
+áÇ'X2y?rÊ—·|Þ(põgs8ÁCxÿGÑï³ß攼 Fì´»à×M~º5¹…°È~‚!yc
+ž› Twv“-Ôo ù<<'Ð:ù”²/@”;ê[Ãݾ zsƒœ)ãÓ„.} =Þ/øÜ¿
+Oi@¢ËE ,yïîNòE"ݽØ)oØÒïrWìÁLOK*q%)B<?Ί*7EöjœiÉ”Ä1\b7–S~×½Odû…ù +ÃWþÛ<ß<H»
+'naf61# \hç‹EüÓŒ4Nˆcã[}>1 öÐ+„Þ{y(Ìe¤’?gqÜ©ÑKc£ÔÞT;TjrKsÛüÚ0A×qÍ÷§¼ëOdϾ%"|Ê¢P%\2ƒ†©XÕ¯ sÒï„¢~ð ©RŠÌV±´øiO6h‡ècÝe5ØÖ'pv[©E[ë»–Á@ÅDó¥Í°™|˜>4‡…¤:{ç°©fr8ÔÉÖHëg0ÏÖ"ìŒ)¶Õ`´NԭÃפ}sÞPÍ<œØ§„mOlI£öL:3·ïñhï<)Cr.Éþ3AçöÉ䶭Hi°VkZhÿýªMãt bm5¤Üò/ÝçÇU¥Oˆƒµ½†tÛ#xòRØò»ƒYCŸ5$Žµ ’Ç­ÂðÞÎH¾ÖFY_ùv;qŠh»x"Š;Ëè÷Üì‰l&(tîh:E|uÏa׎JíðUÁgÞú)'dtãÉó ì¨7:RÑgÑ6©Š‘_·´Iç:¦ Ë ¾n.3!+-ÄiY
+±Ãè
+¥Ÿâ<F «Y^Brt$’}þ[ß5ÀàéØOzM¢{8Â*æ…Dù¾«×+[Í\ŒÞª`'6ˆ½ bêA@êÙVëÊŽ#7uÅ(¥Àé‘ç”[†B€}‹ê¿1T-춹BH#è‚ x‘
+“Vö̸¥¾¸#Ye8MÜ°˜†o6,ÖX…ì5Zü`bØGüz.»¤Å
+æ™kÜ—¦„§?g1|™ŽNtÓã­<ÙS'Üñ8&KCË•™S¼ç²mkžÒËËÇcõøîÓØ–͵§„ïOEó§s¹}zÃÅÇþêh
+{ѱÍãµìœæÍ<¤ûÁQ’Y…zé@!ŸÞsßïÂì
+I¸ÄŒ"oqF¶Nàlµ?Ü}y„K#|pÞû÷ýYüc+ñÖ·cý¬(˜¤Ï÷űÛeðD{ü|‘ñ!Á|¼@ ÏeÕwd'¿Ã¯tÍ^k˜'÷2¿Ü— žÏÁ((Ì<âTi‡$ ˜IÈó‡U¶d¿ê“,çyâG|´öE¼P¨ÌR‚|’R0& Ò'áWqFú:*è¶Y@x¹oôÞ"‰È¨ö4PÆÚÉQ‘b7•§«päÇ~G, ÛÍ!~iÏBçX†ï7žço@­m>ŸOˆF°$t ºuÂ:ñzѾ¨±çö0Ll}B¶mÞÝ—AÛŠ£÷ÕO4Yùî¬_~ÞõIxZ0:Oq‡£¦ë"œ,RLèÛÉuŠA#ç5²äUäãPrú°Cyù˜‡œm·ììÇê¦›„æéÓ•úu2•—V§} Ä/ßÿò­ZÎæÞ¯ŸÃ,ÿ ‚´˜ƒ&bÏÞw_ÝK.ôKµzÖ„pÉX·ŸîÕ÷É79Km2ñpäÍÊɤ9Žùœãr'>ÿÞ–:+ç4~ÁòŠW7Æ'—q ô+¾è“½‰LEˆ£’鳯ùºæßÅ,]Ó•W©H}\ca½üg¸Xü>.Ñ"Á[˚܅9k‹¸ú½ÅBÇ%þæ&0ùþdHëñ$,c:vH)êa†å
+uÜv9‘å äÆî1a]‰òçØùÖpKWÙ´ãÑ¿.®´=½þÒ×êÍrÅ+¹»à+¸iºëc¤Ãx'Ø­…g¨ŽSW M} Âz )Y¥Iá!\™Â5f Ÿ×©¹¢Jô«r%A>DÑ•óÊIgr;ùœ,Âq¼8§ÖbŸ\M…c¸<à­*˜§þ\s®P`  ;â[¤éßà¯&â¯B,‘¬9¡–!G´Xc#Ùã*`ȼWµ)"9L@D²ä˜]‡$0óþ
+h`Ü“ž–þü[AOS‘PŠb€•°‡S½Sl-£ Î1ù×fdžY2pAþ:Óy¿Õ>”Ê8ê+L“GøéÊ¡%¾F¬¤Ïõg¨ŽG”-|?Š««8¥‘YÒŽì|ÖyžA>·²xG@‡.;‘”Ì-r\ž4”zvr£Óãù°Äïq²£ˆØrêa~î›oD[@~³jô¼&6k©¨¦tÊ-_:V™Zy)>øFë}çkàÓo¢ñÃ@m?Û±{¶Ä¾9·Úâ—ÍžÔ¥Ÿç¡è(ÁCR¡Ùâ¨DK•©.ÙXV°H4›‘}s‹óéR‰Ÿš<¥W(\‹G)…Eâór,9[/ ´à_†Ã³B`núL»p4Õˆ‹»]˜-n²JÇ{$BWHØâã0âþQ·ôß>O÷ƒµAÇeÓêcåî²8J¹ææU¯áþv³ÎSåÆ¿¬+ï6cñÂ5 dyXÏ"GéŽÅ[ÚGuëõ¼$¨’°åS–Ó¼úŽL½—å“%ßspB ‡ª_Í­ ®–]®%@Ùß[ÞŸO]ÔkâÎUBùýi©'Óʶ0©¢Ó"𭮧jƒjóµ t*Þ‚dßWýyD¤Á< ZŒ¡TSÚ¼¨Ñþ3€‚wÙGЇC´FJÏk·ëmÆHÝY… Oü-{wéYtÓ³‚qÐ6bíH–¼ÑrtïÄÌdÛsEX ´•eTþÁ‚“Åg…€ä©¦Ò„ë“ÄÊ(peŠ6÷«¬nÒϸ‚˜ðl+3ÅvÚ¶†ª²ø<3Àh22Õ s73±EÕáû™QtÁœxÑvs<¡B|ãÔ êœÌ^‡˜UD'>̲{]â)¸ŠiB7:žÙ«(¢u:M`ǤçþPŒÛyZ;ýÌgx–ôŸ¯2*ò%n gRd’/š˜æûÁ½÷HÊëâñîåš=n?Â;e®ÒE<Å*&¡A7 ¤†b
+­ÛÏ„KHpÝŠ•E³p¼:JYáoz6ÿ 
+‚G£(U¢¿ò±µ Ïï˜%ö²
+\`'Rím™X€y“«EïÍ,q2¦M¬Õý&”Ç:øAùãÓƒøœÿ\ž÷µU
+˜ÀjÓÜhá5>x`%nJÆØPÆ`cÿì(¹>¿`â5áQœ’fÕßhìü¯çÕ…öuÇ*<ÞÑøœ[I{E³êšG›‘R^u?᜸Äó#õVݦ²º!§I¹ûiI`'ˆ_%öu’Å~Ì íÊà á4²„æ#ŸÇ±ž§‡†íÁ6Îù_ -ä’&Êgíæ/üIý¸´¿[U‰šq¿ûÉm ÊËÏïQ˜^†ž‡çÎᦈÀüÜïû£·°Qþk«¬f
+•wùl2›¤È^µH‘f„%U+F 3”è•
+`~ÊÚò•WN¾Ö…ñ®ÔÄ4bZñˆ„·Y¬šUåÔÛ€ETÒ<ø$šY
+m¤¢g±*V¼B9;×Û›­΂«OŽ}€ mÆi”Zè†a©û{Áá/š¿N Ü#ÍÔìÞgÜÖ6°èiÓå]Ùu•‡òƒÜ`¢p~¢0fS9“*ÎNr”YÄ:o ØïïöÀ.UÊ:&üiªí0(¢?ç§ßNæÒoεÀî´Ç^·³§¦ÔGÚï¶%
+ºÁk Ásñ*Rû¡ûÔ+T@2>›Í IàÕwÿ¿­+¿ˆh×R&êº7Ê2¾5^ÚÉc.²û;
+#ê=\ Ð)K«–¥ ´I¶I¦Ú’–ÜVGðØÂv«±.׆©<c¯0ù=²šËÀ7^/7i/Æw A»s*Àl8{‚KüvN¨X[õ6kÓí?Ì/ü5"QÅ7‰çk€ã¸šÏ°×r3¤®´b'×÷WWeСhL”¼– óœ)~oàÐuãH¨x/4æèž‹ˆL=©ÌGµ`yÈ¿(™G2¼Å}’‹Èƒ¸ç`hâª×ÛQp0ÐŽyxtå(is¼âÛ
+¢‘†¼Àx¦åFüÎ"ä•yœäk%oËÜŒ«¹ ¶þœ*/^“…ºŒŽC+ •Æ€{hRJm$(ŸöÎ.µ
+ô¢€.ɨ¶ ­Â[1Í”‰hëßú¾JÞü·îZÄ¡À8ä¤2V!^¬˜AÏ5ÆÆ.œñYž%¨<i8²Ì`TÍYƒ¾ÕïŽZÛcTÍì£ý,°=éÏ€šeoøA•Gß/7DPî~&ôcý`ÜÙòvvg‡žÙ”ù" #c`ÝOI[n\½LÅ—³•ß]¿ñz¹¨µ„FXg#ÄmAÚCK¬Èì¬n«Þž%÷QŠÄ
+iXŽJÓÁ ’Ôrqu%¶‰N1hrhèpe&¾ó=ã@øïæâ±'YØvé>xáO×k—'0ï Å"¯|`ÆÍ9M|KÂa :’TTÄœ³èhRì Õö˜)•Ø§-¯”¤dI;“å&ð>*ø2‡‘©~àœSïpˆ„K@ë
+R=ËI«¸Îû*.ÜŽ/–ëfMÛ¶'%Jôþ ’Q.7ÁµM‘êÊ6&È<2sÚè?Ü™#ׯï{;†¶5Ù: øƒÜW›âxWùN…ø®ƒ™ï†*\6´i§h¢F¶õ—}$qµäƒ¿Âx`kÃþ=)×/gDô
+7•ðÕmÑ. ‡×W4Ü=¨è¦&”
+a±ÖáHU7ÿã”ëéPk ™5DœÂ«|Ÿÿ _öÂy­ßf
+óÌOÀ´hk³R6‡²ZØ0µ¸ØF=fj:(sy‰FÝpeˆ¸Q
+&] Ûþ|ýŸ¨“ø™iÍ3Ù¡h—©[)Ÿº–¤ˆo1eùÙùK3öðfeæ¤÷j
+ÕßÛ¦1²¾b¯¯§ÏIGÔ2‰³äy1]ÊTY˜ŒgÜË„Pz]Ý×MDË;º­;¤ÔJe¥ð‡˜J;,íëÕ±•(o^µÁÓË*m ýqéÆÆüÝà®L Jª‹uþo±´ói= +‹›8ÔKx½ª¡gêóí…䟿ènW“ 1¥"È°Ý@œrŒƒY‰/ö0«F¿ivªM€äûÐ3)à[­–6…‚m­„,["÷ÄÀÞ6Á(þlé<KÒRXø¤
+R#ø«Íîm·ßCLFO
+ò³ŽQjÄN¤”sØT'ƒ™ r¡jšA—í{Rcˆ=ÚÁ›Í:I}0hÊjÚS…×)\‰¥»ûÉÖrVëe‰˜Ô†$_ùAÞ7‹> {ËÓ5­oJL–ë>Š'…Nö¶‘s<íÁK}Ìû¢ùfÞž´”4´Eê+$ËÓ‘™í„¸µïê£÷Øíº¢½—#‘Œ&÷¨T>ý”ËõÅ“Mи¤$1¨þ­§/Ÿ%}‰0#ÃY,ñ?ŠæmD:.W8 -œ] 2>ÂÖ"ÛÑ=AbÄ#hÚgýùüïvœ¼™¤i7ÝF5/cìäbû{ó[(Iôâ¦ýq»É·"Yïïæn/ö7çŽ$~œH#S•#X 7½HzÖ9Õc¯²lOCÞŽ A™Ãø¯;uz
+Lƒ^о8{š ¢Šñh8y“8H9§2^ýßð¼áäõ“«sÚ^ûÌBs+jà¤h­ûlõþ+ª­Ãl‰DWzBi àªX½ñ;ìÜoFô‡Ñó¯Ï½½HvBNt„@¯vk^òh>rrÛ5+“ÔÔ¦³ÏÖŠÒY“¶Á20æ Ô4„ÛìA²
+æóymHÄyˆ’šècˆžÒÔ)ÎÊ\˜iЉip:˜¬±Xóxß7Ñù;×ç{“7®QÄè…Zx”‰Ž:¨¶ð•¿ôàL&úªPn]³X/;V6›¸×D<x_ªˆ»’ÕvÑa£ê´Àò)Ft£q{ûCž‡eI)}ì‘t*Òg†·£7¸ñ9Ô ZWéMøý”¸o)Ôûq#À&ÿ¢ÖD…œE¸ ÙÔ¹–ÒÐ*¤ÈBtÒÐA]´œÞïü[/äó‡ÆÇ›
+`ôã»(¦¢¬ç1ôyžU?fMUJTZ ˜µÁŽ³‰þQ×Ôœþ’<gi¨¢±DÌÖZ«
+íáÆ®r”ð¿Ê&Îóhj¯ªÆ¶]“M‰]V:‹R¾õb‡ÀêËn0
+ú¦5ïo‹%l©¬”FÍ8=8Wñ2âç´Œ»¦ýçôû|Ü^Sñ­pÊ™êÙvôùi–Ek¶ï=~-ˆLqŸzWTU
+endstream
+endobj
+3212 0 obj
+<<
+/Type /FontDescriptor
+/FontName /HWUVPY+LMSans12-Oblique
+/Flags 4
+/FontBBox [-452 -308 1445 1154]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle -12
+/StemV 86
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/I/M/O/T/a/d/e/four/g/h/i/j/l/m/o/one/parenleft/parenright/r/s/seven/slash/t/two/u/x/y)
+/FontFile 3211 0 R
+>>
+endobj
+3213 0 obj
+<<
+/Length1 1680
+/Length2 1428
+/Length3 0
+/Length 2473
+/Filter /FlateDecode
+>>
+stream
+xÚµTy\×®X¬5u¬"r£Ä’ BYZA–à@\;$7ÉH2f&&@´´
+Ö]D+*ˆ ðÔçCä¸T«BZPªÕŠˆ¢D^©[g‚Våýý~ù%“ûsîùæ»ß¹—9/P…'ÂP£x"¾ÐDÊäFúò¢uh²¾P(fq8ÁD(ÇB
+úoJ ¢•]I
+A
+Q¤ ¸!ÖE NR¼D„¤ÃÓ äÒ%Á¸!…@5ZŠÙÓÇcvbªƒø Q&á&2 ¦|Dá&DŽD¨Etj€«ƃ8¹$V¤±Ñq1r.ŸÞXn4pâ—`¹"NêB£
+•È¼HÚxO†Óê`|ÊLY³™ýC"ý€ð3 ò!mR ¦
+Æõzš5Ébä Ai(œH ¶u†›0ËÿÀjS©ÝUFƒ c°ðWÉ4Äzƒi „
+5êtQˆº Rtp¢Gu)o'J˜¦nQ8¡Gtƒb(Šš¡*¥”ÚYðp
+¡}ˆitðD`3L:Úµô̓2ò ŠÑ†T&a$§5i1¦µgøL›ñé`ËX³$˜W¡˜xx}‚@RXBÚ^^À"¢ ­‚f«Q€€á] F*¨q‚ŦX„ž6TSLh
+^ö•”PŠÒy­8¾XxÈÔÊùWçKNÛve wZ-w”9͵ð÷g8QéXªJ>ÝÙ0æ·í¶ßsKÓÂ[ïmš|b¿¬vÑÂO¿ÛlŠ~yVg?<ôãæJl‡©b ¯Ó7o~sñ„ƒCÄÝ?—o™¦˜0lãé/–œ9]@E½·íŸA¼a+*Ór CÍr?†Uú)r\NðŽÌ½|è#×›Q &Ü´Ôvµ÷d·Üúva¶§Ã%Í£Ö%9«J«.Ì(õI®ü••›°—{éîzÙ·Ó¿Ê]í±Ë¶Ï¦¿ÑO¢ÛÔ4·Àµ¾pYJ}ß{*ûmÆÅÚU¥×ïKÏ[¯ºuI—ÖèAL\ÍxðüýM=Š…ÚkC6Ü1é™sì—›KÝ‹î íù?<ʘe÷"ÉG]wÿÑ’úNí““`û£8ûãëîtß±HVYüåö[~õèèÍ}i+Îõ¿6ôžÝO碤-¬=þEtû2{ó©l›•.ß©_¥­¶Ûöl†7áØs[¼JúÈœÚÛÓdߘž=.–Kní—6 =陹Þ1âɆ>øãÝrðK ‡¥äpýÚ›O•y Ó|ãc°_ð´Û­n†ÌÝ™{[ô W:B—µ»?O”?Â>íš5v\ïýÍcN7\J_öïö²I¶ }ã¶ämhïYy†8”×>(<¼þây¹eµ4èšfß}Œ¹{ú¡˜ð¸‚‹Ï—^ÃÙ?=5Tÿ›"kç¾ÇbÁPiU×ò¤¶GøÂX·ê5gÁFÿ·žh«ÿã8û¸±\œ¶ÿÃëÉÃójŠv¿<•ì|¾¢DÊrûGø‘½.Óœxš‘Pxî¨Sò³^W'q´cO5ññ¼Ì-çÝR{æ×ÈJ?ý§”]Ý:ûêÊœ°âÎoÌý tYyÞv¯Ù;x÷$ÜézŽÍÌŠŽeÏœýsœ-c½œªÎ$nŸP±3ïLRsS‡ýyÁ vxz<U?w̮ۇ—Ç?û¹÷ׯ?ô9<Äpîô…#ÔˆØåÓKXìúâ®ìžÃí뎘7rOü̃æð٣ݯî!Æýô~ñжñù¼î±ÍßÖDÊý¨‚ÆgÆÿ´ëxì¯0{§ïÏ ¶Õ¶;ŠU³œgzÕ_›'5;w÷w6Œš¡Ùw¼kïÈÇ>WfÜè~2Ú´œ7³Ö©Cí•8û¶ý•}÷Æ/žÓ7Û³<AkSÞ™uøÀHMuŠ{—Rµz›Í­¡5IÅâ=ã|§–)¯Õß·KñÉví‹Í*:¸ôû‡"³Ãù¥Ô–+ŸÌh5ùÞ<Òe.¶­?¢¬Žœrìè‹»GÊÏú5h®®|pcëã‘öw?ØÜ&ë½Û<ïbMåÁÉA¿>™6lÊ„ó‰¦ýœCãK{›_ð kv)iÿÀûÉÜ<±wJE‘¥Ã±ärªx¸¶ ÿàœ k[£Ê]àéi#·¦ªÿܶóÇ
+endstream
+endobj
+3214 0 obj
+<<
+/Type /FontDescriptor
+/FontName /MERYHJ+LMSans9-Oblique
+/Flags 4
+/FontBBox [-473 -313 1504 1155]
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/ItalicAngle -12
+/StemV 96
+/XHeight 444
+/CharSet (/parenleft/parenright/slash)
+/FontFile 3213 0 R
+>>
+endobj
+3215 0 obj
+<<
+/Length1 1926
+/Length2 3024
+/Length3 0
+/Length 4210
+/Filter /FlateDecode
+>>
+stream
+xÚµTy8T}ûO¶¯d‹c+¥™1Ö†$˲$IÛ˜9ÆafΘ9šAc)Q–D‘%DI¤åI"RRI$[*iU¼„Dïžž–ë÷üù»æ:sÎ÷þÜËç{o:®î+ì ÚÁ,ƒÇê›NÎÎÄß=„é 3¸x}ŒHfP8
+AJ ,ƒâ4À7p
+9„ â]ÊÜÁæ"_
+…AbkQ˜ÂèþˆÐ‡!#ô$´¶Æ[(Ô@˜Ç „
+‹lÁ:c˜‡
+!@f¾ ?…áÀ~
+ÆlßѶm~A wWYJ´jÌõÄzÈrîŠ,®Ñ\ûfKn¾w¡QkVer¥àÑøÖ†Pus*Ñ ù›ìhšæÎâÊž<q^A;¾\žÃãw-W®Véj©A¾MÉ'%Pn[=]׶7?F¡q‹ûÖÍå>_T‹Ó‡’Z?+ÞŽ7~^táò£[‹¥-¯ss»£|©-’ü˜'’¢3àºdpïᜠ9‘þ­Y{wÊhîËé!&¿`™Î IV[×Öjó?&Öezêí\epw,¢6PVp,FÁ]ù`HÏ
+?½ŸÀz³kdzÍk‡HvwEÎÑ+}>’ô:˜bç¾¾t¢’šž-¯8»hë¹%‹¤¨´ûôi]MqÛÎŒx,‚{Ø\(ÒXû55áíäe¿Ž;˜´^5V'\®¹$%NÒf\¼f­T»@yZÑéÛ5ÙðUyüä¤x¦O^X· ;ç×.¶BáÂAÇw­²Cj¯L×÷îÝ·óv®Y”~bÏ•/;/z÷QåøäÙSN'Ö3sûÿ¸Ž†/Ù(>1¶”0iUÿ6ø~ã‰z¹±b‹ãUÐÿÐð=GgÇ!q{_‘š—uÃû©ž_"ÚÝ”·5絸¤p8A+“ô¥Ô¢K÷ñ'q¯´R|Ebc8YÝG;O«˜Ì¼Ùhݬ¡°éÜñôí"GßG´<©ÏdMïš[¹¬gÜ%sYÉõÍqû¯ˆ§_ÜZû½"§-Ú4é?Ò|ÿt}|Ð'U:“æ3õáhBôwyÌØýÑ•Å$Í RRÓ‹‘yÄ—ös/µ½h_ËE^–Zp-¢ÆÖ’­œ­¤õ_ÁTI%nv4ò®Ê+¡è~Žö¬~ãoÔF“=JíÛôxˆWe1ÕÅRxsxüÏÛ¾Çú›éî‚ûŽÞ8ã‰- º#‹§Ôß‹•ÝÒÛÜÛv‰—åE0½ã6±Ë+ã9ŸÎ׌ó)OnË\2U1¸›þ>a÷á¦ì¦PÑQò› ÉØ‹a›HõÏ/Öí¼ïï}s²Øϱ ëä†É€róc]ê• G®*o47VJ¸¡5•’yéâ
+endstream
+endobj
+3216 0 obj
+<<
+/Type /FontDescriptor
+/FontName /HRLEVR+LMMathSymbols10-Regular
+/Flags 4
+/FontBBox [-29 -960 1116 775]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 40
+/XHeight 431
+/CharSet (/angbracketleft/angbracketright/arrowright/asteriskmath/bar/bullet/circlecopyrt/dagger/minus/multiply/openbullet)
+/FontFile 3215 0 R
+>>
+endobj
+3217 0 obj
+<<
+/Length1 1687
+/Length2 1275
+/Length3 0
+/Length 2303
+/Filter /FlateDecode
+>>
+stream
+xÚµTiTç®u%*ŠZ\@ùDPP1hÅ
+IÀ„9î âdü(H5 ¤™IÀ±b Šæ¦"ㆸ
+á'“BèL$¦RÓl _.—­Äfó@$¢H# T‘< Dƈ©Ph”€P”ƒx©8N
+Âãbâc¥ž<¦°T¯Óä;,!RY|¸EËÄ
+„Ÿ´Q#”-7*66
+h §!Žà
+&Fh=Rl6æ Ñ ]
+£hª«"JLYô;3 ·Ù$¢èˆ0±TÆb´‡s%ÃΣ´-š­'
+
+¾~@
+NÓeB1uñ‚’¹;,âÍ ;{» yw9N—GöjZÛPã4"tãW´%ëPféø-DÔÌÀy–UYøV¹ûâ¯4ooü¸²¢þ :{F3b‘XœìÅ¢ÓxñÙ¥’ÆÌG\=ïEnØ”´ÍïBiuaõú~ˆ°æèË¥>ç:»ÎÝY}­¬·áû‹‚ƒÃHÍcãàQµN µ=èΗÖç#u¢¦‰Ö”M¹Ž§#ûèŽ<ç•ó¬Åi­Ë/<Q·ÄÿÎŽò=õÇíUÄŵۚ);oè±Âýé‚Øþ-)yë× éq+¦4eî@×ôõ×d-…Íx@˛־µÁÇŽ¹‰%›ž ŸO\›0iîhŸŸž,:–æQë(•cºv[ç²hÄÌ$„»añKûæQí¦ÕCv†o?Ë¿ôâEGëðêz§=m²šOúErSê¿»ÿô(¥žf.ZÓVž½uÇêöÌÍ΢ªŽçÍ…Â!û&njKßÑ<#ïFõ¥¬qÉõ9wú¶Gê]¿·ÒE|÷‡_GmŸÖ`¹]hÿ0ëÜ^t”úëC~Åug‹&'a'r‡¬xn÷}¶9ù´ ë€Åwøè}ýµÃ¬n(ºÕgńʸq Âò^/®šÒ±¢Âé»o®¹´ð®¢N!)#ÿ|1\Q&2.ú¢|å0-à&iÕñ ´ÈZƒ |Óüè’ÇñFÎÛtSš÷Cè€×k²¬³MBç6eÐÂ+#gÈW6¸y†k7ÜÞã»Ä¯.l¾Þ‰¿àºÞï ¥ž††Ò:«G÷Gew.\Ωؾ€N<ôó²9û¿M *­î&8T ›ï}2gô‰¶uî:}¨ï1Üû‹Ë5-Í«Å óVz¾µÉî­³›ÁuÚ"Ç“Ï‹œvݺ˜?† Èíoÿõ¼%¿:œ}u½Ó'#=nŒcù~¬éžOØÙÈâ¡}^ÿžSW2ýfràù„'e™Ã”ƒ Ê¡e漂¢öVú»´"‡ùo~F®Þ®Yf¢g:ÊÏÄýn´+™*}x¬$¿Èq÷¿úöiDή.Îï°î>yñ5¹vñÃÒgýôÕÐ~o–YZ&¹¼Ô—Üp¯)[ÐZIô4tþHóŒU¥„½Óà°uw¬Æ­ò*"›sçùÛÔ}+Û[ò7öt®kE«¼Lö5oªO:7néù›ê̸šäáCéÕÿ«òÚãfîk]•z­]£šY¼k¬çYyÚ;;»8¹¾—ðnÑkÔin]E¥ó
+ÂEc0vêÑÜ +õ¨|\¿Î"eâÒšžávÛö¥~úqù䬱æûy³¾<B‰ö?i9?ð†ëôtP1ÆðøÔó^q‰,•µ-“ÿàAýçÌ¥—öÞƒVínJ±Ÿ™yU<\/º×ë¡U´î›1¹Œ5îÊ{փɇbö.<çù˽î;³¯
+AïÎ/ûõ×ÞX¿óQAî(sñ¬* …$ zðÛç5G_ŸšYÄùW¤6/¬¸KZþÚ‘Ü•N>jo]g´ÙzŽtK…JÙüÈöÙxyOó“Æ8߬ípö=g½Ü™˜¼'`^çø¢¤ÊS=ü²Üòò–¿òŠÿ³CÚ*6ÜQÝO,Ù¼hé^q/]Ú¦¸–Svª¯ÿ›ˆœTçíüåw ;š¹íé•åÿ~<`Èém ¦6N¡'>Sªƒn6_Ý9åHŽ'/Æ.óþ¶ÛšŒÆˆìrù¬ ÃÇÀÛ¦Â뮵r£çÁ©íÊueéµÏÜb¬±ÿlצÃ
+endstream
+endobj
+3218 0 obj
+<<
+/Type /FontDescriptor
+/FontName /XPGTXW+LMMathSymbols5-Regular
+/Flags 4
+/FontBBox [0 -944 1448 791]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 56
+/XHeight 431
+/CharSet (/circlecopyrt)
+/FontFile 3217 0 R
+>>
+endobj
+3219 0 obj
+<<
+/Length1 1689
+/Length2 1347
+/Length3 0
+/Length 2378
+/Filter /FlateDecode
+>>
+stream
+xÚµTyT×v5µîR
+U.ÔhPÕ"„ ‚‘$Å…!¹IÆ$3qfbB)ˆBqÃØ‚l±‚¨ˆÊ©*îk+-®©¨¨UÚºàâ»´*§þÙ“3™¹¿õ»ßý~—ë.“óC5dŒ †/øƒ(©côòDSi¤ø1Pg1b
+|}|8\®ˆ‚ƒ“D8ÆÀ` `ô@Í 4%@
+  L‡¤_2˜"Ñ …€‡Ù2’fø ÜÐáôD)"ÒœHá:=ÃÖðãóÙJlv˜
+H ü:/­@~¶
+dÓ¥bE¨b®L,ôf÷
+WC‚†lRÙí4!*Q²3CD0lMcw8 !|«£í¹Q2Y0a8Á@#Ô(Á âí6ô@Íøn€ˆ,Åö¾rQ·y=ŒD;›oLJƬ=O #,ôgopóö¶Õ$Aã4CwW„@‹!‹žfÏ 'ì6ihô̱\ÁBÚ#øR±Ccfë…†GƒIÂÉ@ˆV§bB#"M&„šæ°ô…ãˆ'†¤½ß!pAZ‰¤wyµ8¡Ñ²§ ±˜½•¾Äg†¿ÌA&Îk›2ÀÀ%
+B?ß 090 ù­Du÷ub—,¢ñÕše
+cÊÒk©¥G<<[$…[æn›t©à`ÎÁ1@Yó‡(èÐÑÎu¾µ/†=Êó˜_z°á;ëÖ+ª‘”q¸íÚP—î×.îͼ處‰­Ÿp9~K†SÄÑ|üèи§E–æîd]jw>±Ö¿iÇÎ=çRžsÊe÷åTÅEkïõܶŲ÷nǯúöëá½ÿ;« ~þûK¿mPÜÎi&&ß~~§ÿá°cÇÆŠ¥[ÚƒžLÈ8´ï™ÇËŽ†%gg8É]ÒÍnËœgÌÅø…郛]$n¾#gúöŸ}~éèhm–j¾ªVëžNü
+ñ3EymR𠦱ºu\FZÉŠ5cb¸~­wÇÒ$Õ…•¹ínQæ<:9/gTÖ$½ZÆdmwn~h~É—+ùê~F¯<ÙÈ&¸=yt§êþ ¦¢ßÈỦE ŸgžP¸i…Ö…7­¬Ì(*kkûïcáeÚº¬üñ¦nH‰ŒàÿeÈÜ[@U>8"Ò·Šwsè°Kç“¢4[ƖΘɳÖæ:~eË]dÉu~Vy¼3³¥ê³ ºí¿«¢=?iw¼0Kª
+¾ýArñOc3Ýwîú«¾×îèQ9’eºÑKöf
+¶zÂÿòÔFåŸÆÛy¦«õ£rÝ®,º×БÝÒ9÷võBG/ý§ëNrþáÍÁ
+endstream
+endobj
+3220 0 obj
+<<
+/Type /FontDescriptor
+/FontName /DTFCKV+LMMathSymbols6-Regular
+/Flags 4
+/FontBBox [-4 -948 1329 786]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 52
+/XHeight 431
+/CharSet (/asteriskmath)
+/FontFile 3219 0 R
+>>
+endobj
+3221 0 obj
+<<
+/Length1 1691
+/Length2 1271
+/Length3 0
+/Length 2309
+/Filter /FlateDecode
+>>
+stream
+xÚµTyT×F\°‘¢ ‚E­· È– Y\6 ¦&AD<!¹ c’™83"‹àZ+¢â†bkµ>+X•§¨€"‹–£u­H•^‹ Šâ‚uAq{w‚Vá´¾“3™¹¿õ»ßý~×å ©Œ+R‘É0œ$®'1 ƤÈLúdRGOáΆ££€ç-p\\B)ˆ18I„a B?&È údHÀq€ò«@² H ƒÉM(n˜y!%i†›ŒÑÈ N@w”JL®IaØ“¹\¶›ÂјRK¦ÑZ`„
+Dó$<K¦!#ÜH$ÃL§¤Èa<PÈije bö,…TæÎC…eFƒ¤Þa •É^ L+ç"29û/‡¯ñ±rägû @6]"–‹äs¥b!ŸÝ‚THÑ8Û¶6W„ |€†RÕ©77
+ì-ÀžˆÁ• !›Nö:õˆJ”„ìÌ_À [S×hû´IÁhsnŒTôN0À%
+d0ÆHƒ$³ =P5© ¡FŠb{HÞ»¨¿Ú¼‡B¢%ê2²°´þ'†FzÑGÜôݶ’$hœfèÞŠ¨qdÑÓì™á„Ù&ÅF…‹ern ÒÁ•ˆ‚Ǥ3æh¶ž(,&øúú!zXŠ U(©×#Ô4‡¥/ G<1$eâÿƒÀµ™Fdü“W*5{
+*£¯ ð…Fö.™8lÈ
+OŸ'@Ò";ú½ÿšß§ËÕ”B¦gp'
+endstream
+endobj
+3222 0 obj
+<<
+/Type /FontDescriptor
+/FontName /AYTHZL+LMMathSymbols8-Regular
+/Flags 4
+/FontBBox [-30 -955 1185 779]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 46
+/XHeight 431
+/CharSet (/circlecopyrt)
+/FontFile 3221 0 R
+>>
+endobj
+3223 0 obj
+<<
+/Length1 3120
+/Length2 31780
+/Length3 0
+/Length 33454
+/Filter /FlateDecode
+>>
+stream
+xÚ´¸uX•ÛÚ=Lwƒt,º»¤»»¥sÑ°€E—t‹ÒÒ]’‚tÒÝÒHJ#ßrïs¶îó{ÿý..XŒ»Æ=ǼçóL ¥T×b•°Y
+ £%£©ÓTÓQ×bdƒÖòpq¹ý§)-m9€´„ª¶
+¢Ž3›»·û_Ñ¿êIH+CF‘ÿ%€‹‹ ÀRg+)“¤k0Ê/ù¤í :¹ƒÜ|ØÿŸ¹vpy9ûý¿vk;g+ë_Ê[y¸°ë8Û¹z
+rs2wüŸXÖÎh¥nçniû—Š›ÜÍ!£/álã„ìÉ_&_§É2¶Gݯ'€•“ÿ|‰´tp‚Á
+ÿÓ/Dú_ÝØõt•%T•˜ÿŸ‘ù+LÆÙdeçlàâ嘻¹™û p@怋—àÇ i+ ÷_ƒ`gs¹CR
+$ÂÚÎó²¿Ü ?tငØü&øm~]C€†@zÿ--D1[[ ó›ÝÒ¼ý2(@ˆ8¿ÁQÁñ×Óá·"å+â„ü¦â…Ôr†<U~‹
+sbÿRðNŽ‹yspC)’"Åa;:Î:1*†yžùÁ|®þÍ9Ûø;JØY”rQ£Šn·g‚Ë•EÒ:•×ì•HkÚLÖ$›žó¯ð/$6ƒ>žä¯²zÝ/b¹Mªeס@I`ŒìÚ0(Jõï+Ü.÷ÕSΖ÷îÉv}sÚ æŸŸm~ê†VRMø‚¼h‚O7;†8K Eút÷_º9=ÕV½Rý^â«âI‰(Ý8¹£Î÷Ϋ$(X_¬Èà‡º•”äzû-'.ømL~©nîg ÌØpMÅn˯t†+W£’²EË&—6÷D÷…ŠÃ#OÖdŸx‹6~|Á-žQ!Õ+3®k»Ò A§Ó4àbC,ï“Ü|·#81(–?]¦•æ¿û’y–8[æ¹Í µÉ µº<9ý2¶LxR0~NǧÎÑ'¥ éø¤H0Ng¢ÛËzÉnã)m£þÚfy¿že\»¥’‰u7ŠœßåQ š4½„Ù×À[gžÑHxG#]b`‘Ï ‹IN<"lóýó‡zçhƒzbR¬|—i™ÛífR䥫d˜•ãýòÆú–gH‰žŸÖ„êóN˜YïJÒ4£Qt¹ú‹iKª­úN™p—,|¦¤Ÿy5Õ KàoYNUø– æëåòà›B”K,Ê}ë:ÜF姒—šñ)ö݉ôcÄ$ö $†
+oc
+jÞÄ=«|ÆÙ-ÒÖ7œÚ÷²IïÌ«³’sMóYCåk5U7¯ËP‘8=,7`"•Ø¾Çí¢ù¢ðúÌêW<“ð‰ØV/7M(ÎÝ:Hž,HÂߺ?¼ù²Îœº×AÒç³_Œ]¬®-†hÍÐ¥D»tžuÀbxó2ÐÔj‘zM$*TþÇO’÷¯º‘”< ”Ž‚¹¿J^ìÚ—Ç‹?L o‰Ð
+‹&ÙÑÜŽ\Ã2ŸôÉRßÖKsQ´%N%=‰9ÏúžìA)€¢Ï2¿Ž‡‰S°sb½¥æj&§ܦÀr¬¾)ZÈ-e9ûÔêÂIý@™ŸßFÿgÒkçû‰z†À(§¼œ:Œ‹P}ÐÖóƒ\ÛÃ=Z¾ª‘6Ï<gÌ^ÂÉ ±ÜE…ÀûŸÖt_•ØÖ‰¨_ɶ_Ý•œIõ¥V¸ŽA¿‘^Ç®<Uhý¦ý„›L+aˆ¤æ!­]Ù-½r•Ja»\k¥Ö²›‚çĤ¥åiäµ{ö½Î÷ŽuO]øùñÛØ™D>ƒW‹™z­—¢Üšˆ¼o¬å±0©öøj)jÐþç…²§"±±¹MT®D×qΛÒ:Ïz¯žÑðÛÑ¡š·$ñÆêb“>d öÝ\*׶•ß .J½0Ô¢
+œvøñlÐŒÖ">Ü—»¸¶ce1‡ò>÷ͤ¥ÜœlqîÞ™“T‘ítÕ/Aél–˜›\¨R¯ãGÎY"À’ ìvmœ(m7/À<ÝõMÓq–3ÙUÏdƒU¡±Ñ¾ó ÆÙ7¹NñÃÑ'FÓ¾Æx„1%>C“ %.&SµLƒ‰<ÔFæufÝÐW~oÝ,Ïj|½-—VÇg?ŒÐ&ݾèÞ̵(ì@ËÀQÿöé‡×"ãJv†L}©œiTÊÀª*ɉ`/Â#‡³¹e*ÒX¾ P½C]O1ƒ¡l2Á—À"ü“Ùá„Ì †W ®0_<™óè%ŒZÔ‡N¢D¬„å÷£Å>ß™ünìÌCz—‘ù“3uU¤#àÁ‰üB>‚CaûtâÜqU—ÏC›¤¼°W³¢º§»HQÜL¼¸7ñxéÔÚqÌß'îòwžuu]'ª+ûD¡-ó›çS&3R`–¸lËBÑó²JËšg,6Uâ*õ‰ge¦UäšËG½å¨†<¤8I)=þœ߉¢©…Ÿ,ìŒ_Á|KR6ÁzAO+k
+­¦|éïxÚ†„Wt#=ò2­ÚÍz ù§V, ÎÚ•Ñ’®!€µÛ'®«§>½ÔÅ]žUèUø©ÆPªþBE]^UZÛO¦'ÇÜp65RJû͵  òw<¼v7N ¤±œµˆjo¡\<¦y6E^Îó첋²1·‚ñ|7ÆhMà¬ÀxjÓßGÅbõ±µ|ò3›oð Æ)M L•%# '´“ÔG1 ß·w{ÿs_š\?•0JîóÚ÷³2Jóe°“-!zrÔªŸ8Õ+B/ݨÂ/øFõº,¯-#™yÁq§ôc «bÄ?KE: mWºÆ ëÝ5Š÷x¦óÖîk,›¹J<T¡ƒÜ"7e/Or7§‹K¶­ç‰Â>ø†ðÕçà<ˆUÐUµ—Àt­†<²@¿’¤…3p]IiçÚ)Æ€Á†­f‚jQ$Z93_Ô,Lõ$–ø·2SÂÈß{6â8~ºk/_ðÎXïª=+‰óWèaPmBÙ‚{ä+fÛÓ{Fâ¨)Öó) b£c= ¾ÿt²âz(Ç•–K§ä´ñåâY+(Èvçk‚bàJSØ“·Jöús.±Ò{2Ä´ÁÉu2§¨ª¾g;£‘zcb€Ä|÷׈…˜Ö€®<Æjä¼Ù4\‹f´9;©•÷Úyhù3]ÍdÄÈyM—Ѷ‘gËhɨ³›(¦{ªVyê”ÃÅLHar¹WÇ_š¬Ï7Òx|à:Fæ™÷ns(JŸ¸U-JÊKqý•bQ9}3l½Ûà}Â:Ît˦cOë õYÔK¶ç¨ÃîŽ{l²€x=ˆó %$Èôä±h| 25|Œ(iBK`½Y3ROúâ¤28”ù´®
+@ú uýõRÈ´·rÈapx$æó&TUnCiïéîPhüf˜õ
+ÁŒ®M€íð,e¢ký™ÞZD2¹]Çi¶M1^êKS_gq~ÒUÒMïXÚbT
+¸:¤< [^%kýU]Ÿê±Ð¡Ó7^]âÙw7
+Ì`Ý%XSV{oÔcW3—†Up`(TômVüËÌÀVMHE·þÞy󇇢›­QDzÜl~6šÂûq=2ýüóY±Ÿä+JDz^_~&•w9ôåÖb!™ã]Á2¡.Îf¹L`
+òz#™ªèššÉ L• S—ÌûMü ÖíÈ”ñ_†¶3&‡Ø'£H³ž"7gOæà­ÌJ[ñNP•VÆlx÷5¸sÔD½¿ÕàZ‚¢¥0P\Ì•ÛN±Â‚óz‘¯¸t}JÒ¡›”J¤&ùóKùDABd~euÜŸð¦piú8Á»U÷9^M„’Ž´XàXó~ÇÓÛåŠò|%ð(›jÇ tXÿæâðöºJËÍ×{JÁn œqç­ÿd—3´ˆCssj׋󩌂6ËnÒ,ƒÆ9ÌÀËï1w²üH)_­Û‹û,2«®žœ ª¼±ÁöLÆä’×#‡e/u‘Å6t …ßÚ_ˆX“±„ãëø|[õÕb­Ð&@vÆ»šÙ¡Ê·J ±úu'sãÓÛ!ؽ²{´pº®uºs×þ«!$×Êùq.ÿz\hvë•qÑ2å¬Ô±Â7°h¤Í?Þ¾I_šºž.Z¾±Pxs$×°Rv»ÈpÈ'0™È>Œ3ٸ⚳‚ö!h’Û>ð›{a& óì6ª*16êÍI#ƒKt¶þçˆõùhÜ’Ïg=!ˆ¢Þúsqë¨+›m½]ÆòìÝ£º1R5Çyÿ½;åt=ó;‡è>ÉU;¼¾xÂå)øt³«–uêo îÁ7a8Òe¶¯M‘šœö´¦é±2†û…-oüM`»g3#ë8Ó©6º¬9.&jâ5‹c;”ÓÙa:ñŠX«'OÛC‚`$×ìDË朔·òˆ)ÆMè%c÷GãDÄð÷tú¬ˆ–Ãoo°Ð;‡ûŠã˜ƒ3ö¬k¸ßm? —Ž4–{vÆ-µZfÍN ê0ý0|Íç¸rŸðro`§ŽpÌÚT)‚ŒßºPBqðMMœH_ò[™þŸ%7(â˜?„ų-œœs¦t³„Ÿê? ÐŽƒ¿°X“™¿‹\¥øòU_0:C²ÉÅ{ä>ÉÁ¬`Е'Sð4ã4÷€™º1ó2fHÍ./Ž½×ùµ?;ߛއzQÓž”ü“ð¯ã=TÐXP* ¬ÅÍN>(@)c5ÙR¢ý„ýþ*1¸õF˜W?„zYã{0úæ{O­¯•5ÏêÑ–Úç¤57"”)Zü€j¥÷›ü(‡X2‡o?­¥ÒÐ`岇2Ïð`SŒ/MËÕ[Z«¤MШÎÄhÁ`nìò ]¥eSð4å÷×(}`
+¡’þ¡ƒ¾ºu›ÓrY,²ÚQÍÑÌ説[Ð>…›Ýl‘ž]½þ<m"`°¿RJ¡cïû–ô
+³žÔ>”DƒÐÐÚv±#k¾ƒÏ§íNÄâT¿Ð
+yxBkt.ÐóË8ã‡ì…›1ßþ¯á»"§Ìš`+$dܳ`jy¢ó™ su•;&¿|¼?ªHð1úbµÏr¶ôÑò%§š&ó„Jš¬sñ³ô#íòþ‡å¯1±¹!Ž 2Ü[‰¹uv~iõïtW–OÖ÷9³ÁæÖ¥d·:æëòK}ýËL%µ$“Õ*Ö;¸ Ò ÊÝØ×aë8æ´4P·ºE¯q?ë¼ü1žUÏEª›Þøö%1Á‰•v!2C‚__ê\9SYû"I_Š¿oËè&k™º‹à»Ïšé" ¨ÂS!;hQjOÕLã.+´²ðð%&Å»5uY¨zÓW½¯{Fëüž`‰Ÿ=qVÍ‚íx?ehZ½j‚Å*Ù·úX³æ³²÷{›ï£Û]HÉŒ›åRá÷ÁµHÁ¬«ð!õx0ç~õ"åÊ‚®q)ø,ó'½1ž¾YÈ!´oFhõ­%†õKÐël­S«;þQnØbפ|÷F í`Vd8½µÙ`€”¯0Z*¡© ÅKiTœ61wÒÉïq
+{:ºû¥¥ˆ°nèàa]9”E},­fNø4
+¤¯àƒ¨ŽêÏyLØÂEnY“ºÊݵË×^Œ¡Å¹C }ñZoC=Í#ÜÓíù$· (ƒGÁ~ïÚþ] ú†.€z¨ú°×1ppšeÕWlB I(z脽j›µ''ÐCl®SúV±²P*D^p½Q,¸ËÄ”¦‚Ö0EJjNÔà®N¸»ø9­RóEdª®µL$´=)qI(%æu_ýâ‘€H ¯V1W0ã!µ‡¯ƒK–rì-Š÷­“°¢dBì¾ö™&]’¸jùP©aj%Tëûþí¥f ¡{
+ê¼'ù·5=Ö€5Ï-GzÄsºï‹#NHÑÛÇŸ×ä¢+^Œ=ƒå{8ë´_C]°˜Vz“lI-Xj/
+ç¿Ö¹ð•yˆv ¦z“?k€Èwz„Ë?뤔Y,&zhlúGzpŽ“ôàWªQ>]ñ[õ´(/]·Œ{<‰D8ír›ÙÒvÞ2ߺ~(®0¶%†OïúæŠgkBCªOËYEµî诳eÔ·=xZŸ„¹E¹÷–;Õs¾=óN­ §F;j¦áGcÑàëKãWo…Ê:’Ï9O ±†eg(©uß¹dWlÒÍhc~Ÿ/§2SzH)RÒ9Wây,²ïLkªÎgÚDP’‘S}Ó‚Ëæ&/p÷öm‹í()úPÞeaÖpó¥§!^w‰¸µn}ZZ“;_µ[){–ÚhØ9”‰~núî|cwù»á’˜ØKÉ_â©ýBGb¹#L6ÓH|¨w_i­'8Üÿä–˜(Z%]üÑî"ZË’Ž¦ÈÂ!'v!T×úY-£kU³9±ˆ+°ø%!i‰Ò‚òVò SϦ֌dò;ÓGX2Òô‡I)J¬2kǯMØM5Æò0¾á%Jœ²­4¶¦ÔÅ5|ø}Ùˆ]KöÔ
+ b(×ôpW¾iô”ûm³Í
+J'Ûóçv¿âã9GQëTt–Gøp`Zð»ÅâúytFGSáÀ†aÂúIÈ^´Õ¤lÖJfbæŒpáß›†¥?<ú´x‰_]‹†è’ ƒ®,帼§CI´kµ#‡ÞÔ:sn‰jª#4ÑU+dôÇÄp1ául  úb>Å+~›?É­*EÂð2Žîù
+²W79ÑùÖôZ¿`Ãÿµáà]bxûžÃQ°˜ºô‘’y±*9ûyßXÓ¾‚¿ÕFÓ¥¯/ÍÈ´ø§ÖpÔiâXyz61Qçi%¤qz‹‡æ g2ˈ0Xèz&1Ü7B2SàœãÕñ“ø¬šNŽW]xý™Ä_O;QC(Åf,;<|ïüMdÅ;È6BÛTBXÝ{äÄŽú΃{2Öªîׇ:ö™•ïVû|hY“õ
+eßò“˜=Ï^žLÓca©´ÙäU–]†øË»®œøòŸÜÍŽ'ÐÚ;ô´
+@“ß©JßdRcë0Oú輸Ÿ¾#Šée¬\”Hˆj¯ŸQ‹?Íá&veaº…†ñ]¿YÞªŠá2ïÏ~$ÿ$“d$˜A™P\h®ýE»fqY8>÷Deö„åÇUº8ºS@Ü°sKÃðZ5øPÒ`Q#¾<{‚“K ×ü ?˜'nËÝ›K„ÈÚO1¯~cBsåîã˽Ì#±À®‚À8C ešƒd­½¥k¶´ó²”›‘iõ{ŸT¬K\~;ýwå%idúwšKÇ6UõU›ïuQ¿}„êS'ìÆu™ãŸw½NeûȨV"p+©²N…"Æ^°Õ¤øpÜNÿ+ð)9dÁ’ÇÌJ¡ršîƒ4YÞªu¯²–ä‡A*7áJ«Yjkp*©Á¸ÎœOUGÍÕˆ…‡’¬ ÎK73UbÄO×Ë bð6îc¯©Bëj=äR*µëTûÚœ°y§›¦J­"4ú] )´Îøa;‹÷¾È©YÌf”éX0’Yv–p´»¿Ä>Š||ÙwÔGXJ—¹i%Õ¿‡Úó&Qjî:¸ù-Ũ¼BÃÆþŒ=Ç»Fèjß´å¡6lè ¥^`Ÿæ2’³¢”$â•OûчM8QÛçT¹kª³¥K™~%”oÝl‘Ûð¥»G­bÌ©/
+ÆH]“p¼BøÉDäÚ0pRú u[íŒM“
+œjÒ—e+¢Ãtª‹œQUÇãräP1RØ#ðz—ÅŠÄá9F@e>ƒKŸžÆ+¶1·
+ËRÇà/”îÔTÞ‹D@·ófè«B§<*zRÁ¸Í*d¤Mq¶#ÚäÖW¬E›àÐá¾ø๥÷îpéè§üJÓŠCùËÆ—ð
+Gg‰Cbž,iOMΉÞ2>®à:K©¼îßs…×ÿH […íz"Ê#.¾ìí̈ì~wÏð˜Û†ˆ0IÓW6«ÍººÍJZAgioí^¨âá¬À0ŒŠ¸ˆaˆîs^³Äâfô”¬Š¯…Ê1dKgÙ/ÌžÏêaÔOáÇ_<$û«dÃ#3EŸ ¯aX-Kr†Em±ã/é|&ÛÓ&amþf…ÇÀíÐúFÝ™ AÏlÜN_!€T†©†.ÜaU˜mVVñ¡]ÈS.ª¹ás¯—“ÊMEæã¾–OMsö*éU¬³ 6TþH¾ÿÇÿE^`ºm(çòO¾ÞW"ûòš µ1¾¹#‚HG(nû=ÔŒ¯ï°ƒýùÉRÓ3"µ-ïµ?Ttp¼XȽäœ`{.Ú÷@jåpͯis=sv¢…š’– ʧ–äh’‚ýþmûw·lÀ“ŽQÙlôÝ#‹ µCu±¨îuh<¾ÅY¤h| ñŠK«´ðë´©uS‰OFÒ9o¾)ŠÍgq»
+769…¥ŒïâKðeZˆˆä€€X5“g¶ã-n?~tf¥ûÑ-A³!ïÍ.a\
+%¶£UÔvp*ý>¢Àª[÷ËcLĄ„—|T,ÜevM´0HÔ,˜¨#uFZ¾XÑÆo™ýÂ[¤ÕŠCÐjùù‹cÉ7Ál¥Ž ¬ŒÜ^rA¾ÃxNŽþÏõ
+N³ÔBï¡yH¯âªS7Æ@“¥‘M]fŽ(”§»ábÕBî06h•«{12MšóÃa¶•%Ykáú%™ß9=.´ID•<K¾=}g˜ÁĆhžÁu!ü~=Ümað"õÃû¶N ú#] Ô(=»O5¢] ¡¼ÀýÙåÇè‰5t©4qó#ôA ˜)Ÿ“±2Íñ Ò^H&»€ýĨJ9ËBðiJͨúç¾ðîÍÊbœkðM°­5‚Üf)œæ)’®Ò¯ö
+ “éÓ_EÄ´³|«ï‘YÚjƉwLŽ"àVŸÖÂ×k˜E]¹=ëÁœê=cÓ¶QRà[µfµ2Ì”úÙ$鹋ã íQŠ–‹ßwF³Ó~UÜé4£°F]¢°¶Êi/C‹<¤d¸qÝ?p°c*îµ+Ð=G£gØù–¤(“v‹¾G@ iL2ýs<×GcXêÆbWQ;M²ø˜b„5”¹e$îÇ/rJ‰éÀ¬•[{~)TÏÈç³×Øû•ðSÅ“ú¹?ĵkÙb¤uZÉ{
+¡Žvpõ¸JùŠc‘Eø¹æœªeÉ—ý‹ôõ:ŒˆÁñÞbqÒ¤p%Šh·Ã—òˆk«¨uœâ7­_%³Ý¶ì
+[ò§[ á½”Öã=’FI ŸÍž(~âÀ¼ö¹À9ÏfÒ°Ê"÷?oÖà= ¬Ñ^”.oñ3¯ýp$ž”A‡©iȃÞ3Dqb@] ÖiÝ£
+¨€Oɵ¯%JÉ'd« 1m/¿&OѪ޳N’·šN•ok”›TÄ}nòOQ–_B ¼ÁòLãÔ6äØ¡¦æž\Ðh×)õ5®uÃLnÓ.÷ 'A§1QX>d¸U-®Ùøä⥥UAîåö‡Ø;˜jÊö(òƨåÁhŠÆëªcš„3ƒt2Vãñð2óÙ÷ÒkÁú œãÔk}@ {š)MÆÌ|)¹‘&Aƒr_ªf0ÃÑI…îø0š‹‹®]•î¨*p±`¹ÚLòÛ›šÔãå Ð à=¨ô®¨ÉÚw SXb—¾n9Ýó;0N½‚yÅ.7¸àlƒõ ðÛòã›Ð
+õœæ#!}ÆÃm[F€z¼ÿzëjÃóaÌÑ~ÎjSÿ'gzróhƒ¤ú§Ç†ŒÌ‘cÔ;M¸åK¦ûœúO¯n&¢¾[ª¦æ˜ËÊódÝ"£¢†ÍD»"Åß{dL¦>&†¹NýdTï3«Ç¸â1øxTÚaÁ±ôž_{HIóc{ÕGâVĹ3t¸4Ÿfm½Ã
+§õ–{¯í”;Ö:õ ¹=Î&ƒq>H â1Æ<vÅÄðhÜEFÆP•OÖq˜ h¡N­û/D&Ñ嫯=©Q$Ú×ý‘]¹å©éSMÓ4TsÄQ›t{W5~2é/|t‹êñ ž^úQ'–þe«@Ͼѳçk²J •ÌE j”L~†É¤û6¯WZ±[¬lÛï¢Ä‡‡yþxd¾þéüPÎôYƒš¶=ó|SÏ«§u‹í¬VƒNÛ¾On1†ü·oýä1ˆ‰2&”ÏÏù†ú¤cì_$½,®‡üÉzeV'vúý=.û=«>Rž ªÐPeÁõíËÒ5ÜÏüïà,î4ÛWØêîPŠiYô˜ÊëLO“ÔŒáÒûºTàX[¢õ@
+µ™©ùÏÈH‡)}8Ïï\¿i<ªÙ+¯ó²¯ÏÄ{öƒÝ´Œ™¾]<gp>•ßk</båjeZZn„Krh'ÿ¯=6Aš(
+ÎÁeÝzÊ`†þ|+³„‰wZSãëŒsu;f9UìT\s.[¸2›ÆS`U‡ ‹‡Î`ö‚AÀ¸¬©“®‹‘kMÆŽ.è²|x™¥¨Dã?æ`1Àø
+ú¯ª‹¼,ØÊz¿ÍÊ‚}ÜáaÇXÌöƒ¯hÖ¬(`”;nê¶VBžôR~@„±ó˜èe53öÔªúmð9ÂÏíKZFÓ0Éus{èqO-w€žÛJ3q'ˉÆÿñ‡¨³>ph1jÙ|’™Þ·öí—®(nh>ƒ*Ü$¦)ô²· Š3„DÔ{Ò{2ã `gV÷¹Mž¡#wå×=à~Œƒeíx‹ : -Wæ‚­”ðYi³Ûž (ˆ./Ô>„t~V“ÎüÑèðúÔÎf×ÜþŒ®æPbd_®ø=…c7åv€ÂúµÌŒ í‡êóÙ˜;t¨ŸX6ôú å1$nÆîÈœB’Ð&šŠÆ@ýÛk( "ï²£5x3 Øé ¨a<ÅDjÚ7ýyŠ|}Øjþ'5oˆÜ1‚Åp?z—¼ÎN¤jxiäCc맜Мª´¹bÉ5ùQè¡&ܦ¨»DvÐê·ô±(Ó[TœáÉ<íÆÓZH~t·4ÝÀ!Q2ƒO¯ãS|~ á'P—ïlUÍ‹šµ!m7ªOÞìJ¶«R&N ¦Ö>yX˜$F·¾ŽfLå¾lŠòYWEBá2%+˜Î¤~ÃþùæÅÙ<~T•_7Åæè?ÍE0ð!ŽaÔ“3‘çÁ+¹" )M0t;¹¢ZDW¢í™ìttÌ÷—žôù¸•ÁÈ@é¼y’ñÑš)7æær
+
+7ʃ•Cy6'Œ9—IKüÙm>~H­H>GWB‡ ¢ŠGÀŽCsž"|žì0ãéÒOE¾ËS}ÇŒ/êÐXÿVp;}ìqÚtÂà›¹Æ›Ê
+~!µQüîúy”1ʃü¬¡Ì,ØÆM­°§ ¬Hó\jÿ ÊÀí‚W*ŠÅk˜;•aºeתϊ¹˜ª|L ×QóÕ?xú^y¤Ì•©º\¯•Ù½Q qûîˆ_Gòˆ^c+¬´_Ñð=™o*,GPÆ ÉÃi9¤a Ç\gÍR °žñŸ7©²`}ÝkXµÏ=AJdamÉr66®¡šZÆlLÖMP™=Ùámyùz¦ä@*Æ<Qá
+U½#‹ZµÕ{H
+J*VÕåÓôœHxQõÓ±½v%rç}}÷Vù“#‡¢o%ªo
+?Û»Ìë$ ÂxŸy±Õô¢–4ž‰e±Gä¡^æÍý“=+Ýõ[t¥/žXã÷ÝP˜™Ì"ÚSûyb8—×ÁgŠÓy•Ç{K^VÞ—#¨ ŠIYÕT-¹øÜç–º`ÒÖ}äEsRÍæ$C1QFæüÃñTj.üÚ¶À·f&4–óNfÊZKèjf¥ö7ظ߾D¦ÿv ÜÅâú&4‰vyâ {øÞ—zÏn„ê,,Wh¾íG{ÊŽú¢dyòB§Ž¹nê'öʇ¢MnkØ„wd2|-îì ç þ§¼€ØÏ2£¯y)Ä]l¶ÊhÚQèLèÉÕ) íô¾»ÈnSg(Ç3:ãÓºü´öÌ M‚×´^ìÀ{d#¢iYIC“c%ÚšT/½˜|ôY½\Ö
+dëue©þøšM|æß„Kø)+K÷¨ Kl£Øc]”ÙFN#Îö©äp_<ÛøÈrõÝÕ´E"êXäs$ ɶe¦Ã«}þó׉µÈ_­àB]W•C¡ó¯e`÷%\x'úJéC ¿«ÎÐ8æ¿0©:ÿA/nSÙϦ~¥ª=œŽ8õBÚä2zò¹~ÿ==7¨äª£iÀósñsÉu‘—ÒÊëogVÏ5I¢ö¯L?±v'Á8,ûüNa.½²ÌQXÝ- e[½‰‡á]7xÖ‘KNã¸#e—l°ð‘ÆAƒ°Ò¿ø;œ§0pT·á  4ì ¬fÍ“–ö~SK!|5ÉUÉ„¦XGeÜPÇt+T­®:wmúäBq¬ÅˆGБ§í$$©™—l½íqŽ-WFNŠ$óŠì}ÃÝdr׫ûAé÷¬î¦{,“ ˜2¼÷ªÀ0°ð½TZ㟌'+g¹Ì<”\®Fxƒ/‹Aò©ìÏú
+¤S¯Ç™Þù/
+ÙƒS[É |9ür5B€Øy9ìb™ëb†‘œC!&ÕDQÂS=&RÝ’[ËáÓƒ™XZ½¥É‘
+Ùw\›‡|ólšmîs e™A¨€C¯ÑN–[rä¿Ð<Ê=¯° @3¹tß­Y…ªÑVóRsûXg ÚJùV¦b_ߦ½Ž6‘!º½jÞâIîWk!ãô—¢×d¾æ+ës¨–“¶Øp|·N‘Ï€Àº*>Çåðu»ÕwdèÛš“LëaðÙûƒP“Qoý
+‹îD§AËšB!·‚™ÿˆg„tù<Xø8O©o¤¦ #LçÏúG­ízÐüQá~ ³dè>e‡çm£»âîdÚËãVW‘=ÄΚ¸^‡¡%e:›rë‘OSˆ
+2”ï¾Í†ïÌ`PÚ¨A¯9'õŽG­uòF㤮ý"Át”
+¨+G'ÑøK*è—´YŸZ×3ؽöŸjµgí—~‹ZÙ(÷ÓÕwÉ©%ÝsÄÉ\ò`(àŒµ(zv¤S~>÷ õ4g‰4¤6-² €ˆòíû$-3#_Œ(Àµ¦„ížïGÌ!n;Ý@ï,8
+—?ÁÂ/·!¦œËñfmaÂœLdÔžK;øýØ»Wš¬rååßÒÜd×X˜ó÷A<hE)ƒ/ÇœÌÈgËŠÈ΀öÀQ­p-hN–\BpÕƒÐûþê|Ì$Cʂݬ½iÆ$¬ çVfŒ$#W"æÍ…Ã\ŠZ'ºð¿µŒ¸œDOEdÁì¼L£Î‰!K‘c{™“Ptµ>ÍÐï¿äÖ’‹HÅ\šQ*ÒÇË•ÉåJ¨½ài×I”>ð4ÉL•6obà,”t;
+¼©ý?øàšƒü+@²±¶Æ¤Jz"Ð÷IsÁ
+¢îó?
+ {mÝœAL\(Ï ÄÅæ½z ¤èÅÔƒ>꿸]]Q<ÌH*Éß}¦vuZž˜H×¹}2xþ¤b7C›Ãsâ/“<nç+&«~{&”®
+ȧ䘸4
++=>Y¢Ôˆ©]³“ÝŽ¨`W¿u-Øv§˜ôvò€z®Ïà: f2öç ãФ£Ôf­ùKAÞ—ußSyš®½aó i"œÏ‡½,ÐQ2ƒÎ’ìêÈ<øEiñý…—­€­ä>졧k•ä*¡¢IÞüÅ ÿÆÝyÎj`ò=VÓ ¯Ù²‹–ÝØRÛ~ÎÏ•âhÅܱõô·hs›!~Ï$¶÷GcåhˆÿǼÌL4Ú KAåçgùuw¥få×^‡Ã' d¦a°œÒ©Ô%M ¸’ñܤÑF¾ KɯÍÈp*v»{N7 UùW²&a˜ôÜ54¶8œ>Ó…ïѵ®:›?V&¸Ú~ñC&xj9ø¹%14Í-†;evÿ“Îiƒy%„G²yÀ‡ô™šW¢1#X¯/LÞ9h6À=äaDp
+Þr^¿c;€tZ.è»'Ý«Ru;6pVU«àï˜r#.jç>Û2êXîH Ÿõ_ ¤2þ ÃÿS¬Ë)*†¹¾Òü]—.`â´fo«Ûʳu¹ƒîqA{ņººµKíÇ]WVÌRÊžÝï$ô Ú8&Uÿ>‘º¦à¾¶Ãã`§¥ÄÇöËÓ™—š}®xTc ßîå&ÙH; 50ê”v8Gól¦Q˜Ò MYt´ò_4 }æÌQ§ã,„+íÅ‚Û‡R$1Cå êl–ˆÒᄯo Úa”Œ¾Ï¬*q¥É—ò#)c÷CêgóEÄVvòhHóÌrŠ!–w¦èõg¼£ß®Få4qc9ÓrÝÀ4œGQïo ?@Ý}R¶Ý&>¸ýÃlÝÁŒh¦6AÈøYgИöÌr³Ò‘öª3,?P‹ñws6Ƹ]ÃÞ¯‘¹ûD“7}k‘Ð’jPêq-øS;+mÂ=Y|òyÕb7|ìöSì-&Q$wíÇËodG’–]µž¢¿Šèæ|«ŸpÜÃè umø$Y!2&pÒu¢6G.3Í,Å9,¤GFjkØ7‹mºýÓµËüJ‘êzNh’gcÙÌòdyp›+ ólZF%#šåÒixÖ|ÌûÑ£‡ª¡XaöyU']×-—†þ§ªÀ„z«$pù#KíŠXØ»ã÷³~’é,|¢›îqbjغu*|9µ\ƒÂe/ š0PÑ®NÙ fî±jÃôðp9¶ù×æp‘<þ”h{[8uöÚÚ9 FAòq2-e7H·K³! 3c²_Ãð©©ey·ò}5
+ðõ'30þ³­,ÌÊŸ‰'Pª-Þ½ÖËÛ`®à<`³ïË!Õy›D¸mèÜKÐVçwu{4¥z½•B‚¯ÔÆn—ž\Î# PR¸9÷¢©ä|êì»ïõöÉ•R0ëH‘¥4òÍ*wª»ÖÕhÑŽ;©ÞÈ+ÜŒóÙBÚÿtÁkÀT®‘¼2©:B/W¶Ì’+›èÓr\ŠQÉzªR.ïBª˜’üéI¬U3úâÝž g÷O“¼|Ó¼•çU°Æ~—óèÛU|NŒ4= ’ÓKówTKœcB^9•äLÔÜY^»ýá±#I\r¼dhl¬ë0ŽÃÒ H¨V2Šv¨·><°yb°®:Áß_19¯Îj
+óÃJB³§èf1%κ0-¡;\ËG>1<ê¿\rn‘ ðÇß| Å„Hèß«e_jûÊsÙÄOÀ-qQîW( Ȧè19hÓõUÊ›³,ÖAÛáN ‰kɹCN¼õ’-}0ÕâúŠÛÂvÒP•´>EÏXL¨õ»£‘ãÎð.äTZÞ Ý‰¶ _Iˆüòöáû†:9m¬O˜°(á6Áâ´…%ž q¸#Zõ
+A¿¸•,¥ œÔ™ô=$è¡®7'ÏÙ$?në&ý
+Újqå~„û5?ÿ¶˜Ý++A:A4LÔ"eb«å¥Ùƒ”$´¨sñìæ8ëÄA}Ú )À¨%±yþâP º<SÇŒ¤ˆ5Œñ´[gKaëÈ+'—‹»¥bQ‰ˆÉÝ'4ì£Þ¾°–LaP«½[:Kˆ¸òj]Ü̼øþ »0'þ«—|:噄ðH©4˜0„°(Ù?©ç}ðʈˆEj¦ú™0îA$&pê 'JÓEÆÉlu߳€°×8žØžïù£tž±›pl0B8ùrLz±A^µ{¼v˜ËÈOÛÙ#‹ƒŒü¨:D_ €Zé`Ðl‡fæú†¡ZÆ`€÷E"Ž¬›ÂÃöPK È.á9GU;®ÍWôëÚ¦s­>Õ÷çk®wœHÆuȹ9‚§í¢Š©ç±ä¡ŠÅpGÈ:ؤ)‚vñO…pDbòî9<÷t6¼ûŸaŸ9ìm7|QôS_;ëÉ"¸ïöiÊŠ?RÿRˆí“¦Z# ¸GLæf8ߧжPÜ“™ª„價J$á:;ÛMy‚¢¿àÈRvbÌ
+»ë­ÈJ~
+¾ÑŸOMÃITai[~»»é¦êù0KÞúœ‹Ih°ó*ÁùKÏ‹ßV¦ÔZSHÜ9GDš—¡“,ÍŒRï:A V®†ò§{æÛ­|ò ¹|{p–ÖŸfü^¿ ‰Â탺žr÷C»àJWe$p´ãÅ«‚åCj~(ßra°eUÒöékãV¹Äz|í³KçÊW#&³í¥Ñj†‡b‰ëÁ]5—Ε¢‡“_zöÔœ¹ÜYBz§Xïc˜¢/Bý%.še´«ã}}o_ÇCåù#eч3'Z8ˆm-Á‚\³ï*x2Íñ.Ìn¨½“‰ICŠ=5Ò‹:œi‚1–?EÍ‚æ‰$¥aKôïÒý1ÝïøäAlº;¯¦ÕÓ¥#žs±ùUL0µÐ#@K½å ò÷£%Bÿƒáú ¡“‡ÇÍÇÇ%Êá™J
+yG\IpèI/ŠVÉXw#OŸÖ»—³«\'ÛÔÝ„“[Ži ]àØ[6@ñ‹›UÌ€§ÉþÒ’ýG½ÌNÞ¢>KMà±ïΩkâsòL¯c¨xöøû>:î21lNÖv±&<Þ°ò/
+ÓáKúÍèÛ”èjÞ­<ÿ‹ð’[3ãÊ#.^ÄU ùÈ¿G­,û“‹
+ÜC6Tsçúo½ô±ÚAhÿ{QB^e¢§ü·ˆ+¦¹<K‰áº%ryv%¬ ¹'±7ƒÇ+Á6Õ#_ªÞ¡ˆÛ—+ 6‰~¶Ò)a³û¥R¤»Ã_<®>Рq JȪŽMò¤Œ£Ó 0…ííY¦6“‡§Œs:’d[–>gÜÜ,]¿„m iÊÚ¸¾C>.ÁX-òô¸*í휲Ÿ@áC5·˜„|ªfSõpèä°D<ŽÊ¯¿>k˜45.ªÞŦw-†Ðî[Ú??8BÎŽ#n{ƒÊ‹3†^ä!á«cdâút~騑aù?z$«,w„òFRGÌ|`¹Juû4}•9pá÷9/
+úÓ{Õ°*¦îýWçAMÚœåé·M:Ú»HD%bá1„óh¨ú
+S¢aŒĶ£Dxz3ç ??G¡€L ótNh?ˆ
+œÇj×:݇62fX¬hÕ
+\š9w2˜b¯V»
+¬ oØHlM÷‹wH.Ù ¼²:Ü«`­væÌ¥æåCw¦†kðÁ†D”.“±Å ÷²=Š"çææPöž‡o;¸QÑ×ÿôƒ~rîz’¿Â;Ï`ð^vý³†Ã5§ÉßÆ©ˆ‘ óš­ðEà¯<Fâ
+C'?èÎ*ÔÕ`šc5x•#»­Éf‚“täÊUÌqnìÁ²Eþ¡bÊ°§_\cÆmE(SmÔúìDÎj¥¶Ù#eÒëгWÙbw7Ðn3¦¤1ÿa1ÔË؈Ë ‡{Ë£¦Ë¾&_ û–ÓfùWo³«¢ï•*)Ïxã}¸¦6jwwÊm#ã!áét@$ÏÆZ¯2ji⃕
+Dèœ9Ò±2 íLŽy‰Ï¿ò–å‘
+úV ů·ø²Ži¿ðÄITN|ƒVF3Ý€ûlT&¦¾äÏâêT‡ ŒŽnïwµíÙÍÁP7ö_Yìc~/ÿo‹ÐÝÚ$y³SA ‹¾¶á¼¹Ÿ±Õ|®Ò)“¨cLLMh™‰,ÈùI·ÿ|°©e4Óº½i…ÁO
+ÍZÆÁƤÄÚY`ò©ù&¥…]îÏÜÌ‚v_ûæø%›s¹ô¿÷¨ŽÝú݉mY&ŸÖÙMvASéä¤r^oª«ºU©V•Ö.ÀŽ; çh$Œéÿ“žKcefMÎfŠch9—ÎIª@~Üârϸ:â¯aÁHŸombÁ“ìÙô1fòƹoô¿¾œ/6ù,±i°õ©©CÃœþ²øù#¬ûÉ°©T­å€2r¤Ð%/Å"4`µ÷WpçóÑfÒ5¸¡EÜЇÆfK¬Å.`ùV=­™3Å3gl—-‚µÝÕ
+ÏÑ¿Ö¬k0xvw½¼œPi¦ìwý>ïÜæbäçf®_jÐíݽð[*Qfúf6•û<×V0ã«ÞˆÜl^dMœè)G!¯…#™AJ›ÿÝ“ž
+óñè_F©ÙÜãn¿õ•C(,€ZôY0ŸV®¸ï5™²ðݶ²ÎnðÇgtT²¨R ³?q!¤PßÅ¢>ëê¦@Ï#Ø/ú³8ó«Í.™Q-xD&*¬äò¼bw‰ã¹Ü&œU' ®»u þb,G4¡â7 ðâc$ fTŸ•Ëw³-jOc ï;{Äp'­\.Ÿ™ÒŸ$Aˆ]FT$˜]´üàY}™í4-àĵТס{{© ³ëjð¯¼X»­ê†T% jÒIn& d¨”ªžcïbµóæœÐÞÜ5‰ôKlÖf¶mÚçOT‘Àϳ%Ô=\§žï=It±i²‡Üð2p‹\ÕàcrH+Ùsn^팜EQ¢ÒÉG#ùŽØIþÇ eFqö*VU\®kÓMy¥›2¤]Ʀyý±Î1°QÕÇ'Ç,íì•Ðå«ëÈu<ÃÍäÄ×>wAsÒœ@š™¬m¦@}&)‰'u°°ÛhÙuz¢ ŠªÊ÷áð« *+ÒDI€wþW=«§a¸ÏõÕÊAºù‚¨þý4çIBo¢ ˱$ÙTkxºßž7pÏ 8ÃÛ‡¾9iGûèi+wé¦öe_+“ŽØÚ1ºî¾sŸú2TP‰…nT±±w3XŒÆCÂ%ÆöŸÞ4<ã>=JþŒkÀ餗SC8À].ls+têfG^}µÿ ÌbPî¹b}Õ Ù¸ð*Øsi|§¶Ö’c“ØU¬UaŽªbÓakÁû;|_>èð'Lx3’Õ’4E¹rµY¬Pîs4bÜlß·ÐÓÿ>£ØYés»ç&Ûå☥5“©LtXùê°³;£úÄÀÔ].b„á©ïÈ÷¬a}¿/¸Ç£áL0áoâRÇl!GèI\³Â¿-çÚCûÉïUÔ`WÇ<±[ŽþÝY1LµµUMdYh˜ßáMd‰6itžZ—ùÙ'ÎpmØ6«(ÎRJÖÁpÊÊ嶌¨`¤ã©•Žâ´! I Ë@V 3MǪÎl>˜dKì†[irùé’dé›M†òʲ¶e,É]–ÓäѨ¶Åmýè‡àÏoÞ~U8‰¸›ð–3D tëÁ ¸§(ì
+Rµ¨öøHÿËinŒÇSœ«¡<mè¦K¢UÆd.‹ ­Çu6GÔ »H]¼NUiÕ †%Âǧ`:kd¯<»Õ°eã¹î)Æ©æsM²ÂN¢ÒØ íXŽ^µ½I“º%C&žÅQcA4©iù¹¿¢­–Ã6f¢”Pd\6ÍÎJ¶çgBvæˤë¤æ¨E 5“p`vÖ/L@{âRµó9Ïõ-±™ÆJѵu‰'Ͷ2~v¨ØÈEL~š¹OÕ¼øþ »0'þ«)áûFƇ“BÿÇ
+@vp@Vméôã  Ä+’W²•àAû]çKĸʶ¿±c%+ëñ½?Ö¬ðÌ&§àȾ'IçùŽ¡ÅÅœ,ø»|4ÆÐ÷: ί[X¨×ÝÀ®M‹H¢Ô‡Ö«SDÞÏO/)µ<dG: i·3ø€0áb…’ÕÖ{Èp3eäû¸‡{»ö{˜K;4²ÏJÚôÜ®RÑÙxÆ©¡J~<Æ$|Ò™ÙÝØè¾L+¡ºÝ¢²FÙv›F(€ÊŒÉ¯^=
+mkVÚê5wÛùß=Rq»þÖ;Ûf3„IÎà[±”J²š*—¡Ì©…$®‡k­ëï Ø)++µt^s›L4½Ÿ*ƒ}•H"\zžä´×µÍbö <1Ùʲfè¹ N«SÚÕ¶c?
+¹‡,Œ  íš'6Çèâ|óK—*Ñ ý&žv.ƒÑúõZ¯Þ›nqü<*&g«Bt¸Z<‰Ü¸üNÌj}ÃÛûFHDùÖ¦¿A]õƒD´'ôÐÐ}4*%á/üŸK€V+!ÆмðT÷îÙ4%t-—Ì#ûÈŒÔä¬4©°f% ÞHm×%T´S0³îò®º±cOåakU±u%ãvH²EDÔÐÒ<žRàAyµ­Çq.Š_-ñïûÔtP»’õ3ÐñÏj =­ðõø¢ÂüTOšÒ†în×—Ÿ7j‹=~ÇR-•~˜æX>‘äûþ[´*qPs{Ÿ¯~ \›|=jàŒMb,9SOaN ñU×/²P‚yb,ì›J ˆäªäI–C#·›­á£ÎnM]Ni_L”ümªÿ*?žœžSîéSK‡FËÊtW‘ò§A¶ú&5Äæ^×ižŸóÔ0÷øF1\›z€|h2HâØŠ6lFC)_vœKóT(_3Ã=¢‘Þ~*=DXÐBQŒCÜá”öÇü Ýeÿ}5V+ÝmPàŽ ÉZk
+óšÞ•É‘w"”’å¯ý‹&=°`XšÍî6m,ãmdîjðVf0„NÖŽò—û‘O¡Š¾{ž¸æË6F Œ™• ºÉ.H÷2¬ï]'£ðrkV؉—L ,kž»:Þ#}ä⯠§{t«÷Z¯•„m]ƒVíçHiƒüÄ•lÿqÿ_±Œƒ½F7Ú4tHÒ6LÆ“-ðâ6,Íó²$0‚ÝuƒþKÀ££IHl
+µGå«ÿ~¼@‰0Ú—J_¾ ihçE— É^K£~ýS¾bÕ¾)^·GÈ©‹hÒRd‘eeòG™vëü'‘³Ú8ˆ¶¶2ìð³}«üo«çê´'¯Ûsš žHÊ­dl'ÀàEc˜\ÃðG=? Q°*òoŸKŽœ1nýjqP©Ç.›~°@Õ!Ó‡´t‘AC´ûxì?+Yóéy@FØU¶ä°áë7Ož8+ÚÅ~•eN»p¿ þ²NL÷-Âü*.èLÑB~„•( Šæsï‹X;C\µPÕGª•ºxñÑÒŒªK:E¢#¨Pu/ûƒ€AŽV>‰.˜×ÑC—°vÿø`mF Pã݇¨»áÚÓaò¬TVôÙZ¡aƒ€Õ˜Û süž¯œ7ôÀ>%v$°rBöje€3aÞ‹G8|—9°iùíÍÁЗ¤
+UævÐãt߬¢7‘ÉA•1>ì°í“¼ºÑG$*HL$•â ÍúÙ{ÈÅ =ÄJ#äëê/͸*ªÏ5¡ô]éj;Œ³›ÇÿDR„Ѩ}ÞÖŠþ4 ÃT?=R—œíhüNž¾•sKX-Ž‹©•~£á×ó©Ûu¹åX `$úˆX5bwÑ-ö™oTïóC_ùêû„#Õv!Îpõÿr¬ë$W¯ õB(ù½4"ÞˆM,‰Ã}>B®Î×¼‰ñõÞËC®;=Ò×.C„ Ä‹Ý+¼">‚ÁWànŸ
+f~
+¬ýQ|¿€4;¬`¥>Ȧ@„ºÛwĹ“«:ÿU*uøN’G7 6‘‹qM¾w[Àï®’Åëš°ˆÏ»6¼7W»bãg`v|’$¥ôå—v
+l«+Újy¤ngBù œxº¹/ïUIŸORä©Ó
+8Ê"™?~.Ûµ•t9þî;ØN.Væ_Í~û¶ÝÅsu ¯d,j
+Ø¡¢ç÷Üÿ»èÅjØÉàkçP@`]Ê$E%¼òq lW«@ì5»GUÆ8‡.Ìc˜T[€½g`=Ì(—¿'W&¢g‚5^f{¼%ÄD;Ž6FÛ榛Ù<.ƒri¿<ã>¼ÂUYñQzæ~ÐTOv]áþåjÂàÜzX– a>¤Ò-¬Ù‰Oû³ïž™ÉÔ÷ìTW`d7.'
+ZeE]èz/nÏ·ÓÛÄ:üº‘ã'A
+ wã
+wVGÊ4s}˜²ãT›3˜ŸÁ}ù-x®b‹5Üãa±ž¿ýzEC00ó;Ÿ¸Î+á¡:Ùÿ3¢Ùø4Uøç
+æ—)°©Ê ÒqŽ¤î4™Y\.éaX~–לÖA»t²ÖÈÙµÎlé)—}—ÉÊèA™%C C|‰5mMœs°Šƒá­I•§í²²=i»iâhåŒr‘ë(ˆ®÷S1îJò6—{@£°Ð48EÚ-U…Ó¥ ‡ø”ÍäÏQþ¹&óL÷s~èVÍ“e³í#å)Î KUÇ[ Sdö™kµþð¹#4H²ö Q)·tÛ°ÕöÊðvZŒÇ
+W}ò$sÈžÛWŒïÝ™0<*"|º½`àHRçÛÇœüÊДó‹°&€‚§²}?r­Ú/Ø•€¶˜²¯©w,¨`ÃS)~+·Œ!Ù—+¡#G òøo&.òÕPßø•îŸé |
+d(N<p²ƒÜÅ{¬Ër¼ 6½bNyÀr[À¶üuM´Ê—57û*GúÔ ^Ç>‡ßÜc¯L3‹îF:iÓ½]Þ§ó4|ÀÒåñ} G¬MŸµŽ–@Áfår£î‹÷ñÖQ‚¡
+‘‰“>mšú–i YDÞ¤J¼Yé÷XàiNQ"1¥`SÚˆŒÂUŸ-Ø"}ö꯲£šmZcz(¡5Ž¥1™ÊõY=UæÝÃÉ›D6šÚß'zôs¦pVäê¢e+ÍMö×
+¬}^Á”ßÍåÇ>ÍÜÍ?Qìsî
+­¦‹èöÑ«-‘¬úã’3âM9Ü¿ Ñ\ÿn†¯ù\GüF[@úŸ©C‘‡êȺ’M8ŸOþ;:– `Xš‹ÒÂMHŒŸè]&¨±àì ¢HqZtà4“¯FF^‘³H?F._•zF‘­ÄPƒöä†ò¡¶ª_ý mZîk+-Öf¸Ÿ¡M_´
+•ÙvŽdÄì
+y–䄨y•Ö^uã-J<¨Žò}jÍñîǺW#/]¶¦fäªh3La¼DT‘ƒ;CŒ!½ûÐ 8ýêq»FΈ×~êxéª~[ʼnÃü÷Tø˜¦T76ÚfÅѽC±]¾7\ɪÜ6¿%.m¡Ý4ýqÓé¤ÍŒº‡)²—„˜æò g³ìH•U¶hasç‡Ë¾5˜1q„ä´A"çë1½¾©ÇÉ€!óß> AžB;‰7éIUØ뤸wþKü™ÒvíÜ"(ð䡊³þx mÈ4mU‹¹ppz×æ¢(Åõ98Ô¨t¹¬üié±Ó½µhSñI @³B€ M¹òãV—wU“c ©6k×Ø›ZRìúÃÁ~ $ f»N‚#·¦ä¥Ô’Fò¨´à냨-x¦É°GP˜a컊^¶°ç߈PXçÚv?¸¢/g!Ä¢ç~˜ªÆÒ[ÞuÒ&’ˆ”CåPÏé …Ê´ëýò…ÒÒøö™ÓV;ºîô:Ê»—wËŸ_3ÉÍÞÙðw=:ƒTiV‡nè›øîk×-XS”2Cu¢€œÅíƒÔVÊÓ›ºÇrÉj
+r"!K’8Ôþ¢Â8O÷r]mÓFÝPµ ]§ÿ¨ºè»Œ@5¯›Õéï›Î›ãl&‰‹~`R+úç@ïqŠ 1aG£ºdrlz]RËNÌ‘ yz)‘³¼¨§§<O®¡G Å®>õ‰<A6 r#8à ‚øPÇ…äS|"mÅmöP}ŠLŠ“eÚK˜‡)Xðõãê-í?ž£.[x ‰5f=¸{¿SåwÐ^}8!•Á€yÞº˜9ÒÅQÀR3oxÝ›vÍAI¢â(@î¹m U빧!”éÕð¸åø‡¹º·ÝcŠM)òJë‰ÅÙõ-d´xÍì™säJ±&F³¥þê
+Evr÷›ËT
+endstream
+endobj
+3224 0 obj
+<<
+/Type /FontDescriptor
+/FontName /WVLANK+LMMono10-Regular
+/Flags 4
+/FontBBox [-451 -316 731 1016]
+/Ascent 599
+/CapHeight 599
+/Descent -222
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/CharSet (/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/a/ampersand/asciicircum/asciitilde/asterisk/at/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/e/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/q/question/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/underscore/uni2423/v/w/x/y/z/zero)
+/FontFile 3223 0 R
+>>
+endobj
+3225 0 obj
+<<
+/Length1 3110
+/Length2 30179
+/Length3 0
+/Length 31889
+/Filter /FlateDecode
+>>
+stream
+xÚ´¹uT•[ûJww»éî.éî”îMHlº»»¤»Aºé¤CºònÏù~GϹ÷ß;°™OÎ5׳Þw1 &WÕ`³
+sðQAú«ºœƒ%Àÿ·Ìäÿ\ÿ
+ÀÁÍ0uv6õBb77À‡<Í@Ï¿¦ÀÊâ
+¿˜‹âoæ¢ô¹(ÿF`.*ÿ >0ÕßÜ]ý7w×øÀÝ5#pw­ßÜïÍoî§óûéþƒøÁýô~#pžé?ˆœgjï>&¿FüŸp_Sssgs7ûìì<ÿs¸ÚØY
+àÑÿëªðO(Ï_6Å-ÀÊ:ý΋èä¿ŠÍ~/žý—˜Yÿ=¨¿Êýeþwgvvp‘?6†œý[8nð]€ö6ÿžEî_1@÷?v‹\ÄÅÆó7wðzþs ØÁý·åëàjí ücŒÀz¹z€þH
+‚A³V½ ~dZe‡oˆ[u†±=huð?øaÙˆ,~ªéÖ+k0®û(5c¿¶¨[¸.dÈ·¤‚7ÿäã·Kò2-õaC™»yŃmä'†i扽âO2ÑzP#T~Í«Ç\gÓ C¦^] ·¬wMDK) ÖûslDf2£úI}WÛ*{›/Ç?ßH„,)¨-‹ ¤DsŸ½÷ʬw³j­[†<û$ìôΑ»&µ=Œ]ÿaa-˜ÊŽC3ƒ–_V¢òƒiz`-éPTà“GfCt]”Ö9§Qº„WNòü²ŸQËÏ´°>TŽ|±àÎ׳2¾[);D²,÷„‘†­òÔ
+ðÚ&[|›p"=áƒt“lSw““V×ßCŽ]™Uâ4yQ׶¨(äMAè | ®›µ§1Ý}Ð ,Ë÷CO“ ¡—˜÷‰Àå—ICZ<<ŽÄ›³E÷4ÌëÀ•Ãª“—›w›ô¶ùŒ;wYš=º”J¸Ü‹¼uqFs¶oÇ^‚œÍ¿hÎJZ”zåò7”³VîKaOåÄGœïÍÈåð*ø"^ŧhÜÖô¯÷êÛñ„|Ý ?®º+ÅFRðÝTÑ6!5Ûؤ•Zv û‚ŸYnxÛüùf•!hÖôúÐò!><}ûè¥ÿr)Ò§Ø%Y¡y€Î
+Žç»jÄ[EfÈ-½
+Ÿ¬ bªü)Xѳž”4÷œ/›â2™\7Ç”58¡“Ì ‹կ:’Mó« ˆ7[+<Ôp4Þ«Ïóø«ïø£ ‰áÂõù½us6« òÂèÏ9]íÆÊ:±|ùä†èÅ8r‰ÄûC‡•³ñkÆ;ñ”=j<‘M
+ʼnfÏ:“Xáç›Ód_¯t†YTåh9³û:Þ‰LX|yÿ4ÊÐ`ãýÀÆ ¨«,„–ã©E\Ò»zÕ>ôFý?@dg|YCùI›.@ÜY—ï…öç¤.ŠÚ*0‹V­Z.¢—ôÉO¶Ì ,›p·üå?·2Ò±ciCñún‘·|;Z–6ŒI(¤ØùËpEp$¡ºck%ñm–’bÊ!!àJ¸ì?Kó‹ÑœòGGC†ÒFÏÃV5±o8Þ\J4øA}që´ãS›¯ˆBøºçg-âw§'»Ÿ…Zºbjÿ{3 wî†~§5;Š5=²F¢ìÊŠ‡éF0ÔR5³2Ê.â|XL;˜cúžWþ@£Vˉ•ÅÀøëȼlÛ1 ðÿPß# _ Æ÷9dÿ³ñ †Vrá=7~7c.ŸÅ¿ ×G…û@þt’^ä ÒÒ)^H~áB(㧜-eïc&ÿþ™aÙѽ~çxŠDøb“å"”üÛ¤4S›&¸¼Ðs"oO ˆ–¼+®6 Êz5B -(wqˆÎ>a¢ç¤‰º¾¢ /GJ8ƒ@}ÂÕ“Ýñ
+¢!6-èÔ›"Ò˜c9ô_>RáJ Ž[u*œÝë2E¼ ù$»[twD­³çûzéY'o@"ÏoÎ+ÓYZñ@¯Ê=cÏ{†úJ*ioàæUFñw¢)çÍ`‰ì®AYú‹fÑô“ã™ãu±Ÿ©‡yâs}klÁsÚøXy5¾1÷O•{c¯£E20¬ß®º¢HÍ|Äó9‰|s{ Ò¼3_AÅ•¥-l3ÜNjÍЪ‚ö- Ʀ”æÌ=¹ƒÙl õ$•´ö<ô4ß`ã*ñ>ÿA2éªÝýðõê^;K-³f½OÎS‡N«·ÑnÞJ–Œ!ÞÕ8ì[½¯2Xl‡mˆp±[–Iç(+(ï³Õ$ß8àÔ2¨{OoÅçxi¶`I „7˜ .Hˆ
+}%c3y]F2fÜ¢:Ôò*>T-Y–¼‚1šŠtÎr0³qÕu:ÆÉÚÎEád$($p‡½éÕÄ—¶rZW–“ÖWµŠˆ¶a•¡û&÷hÏGü¯
+³Þlö¤”<õÃ}_E­k=c£÷Øߧm€'gäɚ܄«proá«úî 3·ÎÖüÞ¡¼îŽ.ÛTä=ã¼ÐÏÛ™Z‰^ ôuœôP3„AiDѲÍK¿¡ñÙˆQ ߀V+xI‘€X{»öŒ@kXÇÆÈ #õwMU¥Wê—Áû#BŸBS—KH®«º 5ÆS§¯Û1ËÊ5úÅ5ÒäÆts-\¿Á£ïùáMaá
+^{@Q#½í½ðJñ{e÷rXÌD7òâч·ŸºˆÎÉ$ÑaèÍ¿Ó#ëP" [j,-z-+™y¨6äbNþes€ÍÏ83)J —ÌÃZV£L$ÅOcrQòÅ\6öj´“lƒ_…Ó«—ägÓP)h*1(D«G´´EìR"B²öÃà«PBBµ4‘Ñݯ XăŒfäyLW&5 |á¾\Em¼{ápÕÆ}wÍ@õæÊvs{—|r¢x°É©5—©˜Ñ'c-…[G¾ñN¹RôÚþÃú飷7ûñMEo»æ67œG”áÈÙÛ·Y;´ÑìÔ´;¶­cü3ªZ^3?•ÞÏW¦ã¸ð•O÷eP%'-ûÎp½3@½žä²opJ±£HK'cÛ7z)IòPÂ@¯<Iɳñ‘ÁÿÀ µïnIÄÃ瓦RĽüôÙƒE Qí$ÿ‹æE@Ó6SÝ€f v!|¯¾®m]"cœÃ£Øÿm¯ä.
+XÕ·Á~ôOÄ'ítV$ãîfÜÅMóY®¡n²°<ü8>çˆ7¸äc:š!ºÆ«õßp>ð;àû"Jû?\x]à\->J£;Ç ÙŸ¼úT:–Œ6%Ä\+>RõºI…|NɈá±ê9pê6“R ºlh¿e‚ž•cbKJÔÅiôQÙ›­bžæÍp·“g Nü  ð¥‡1Rl
+z©½ûœ…PÏîghî¹Ü
+ú§7Q´…s8ŸözýF¥ùZ4lËì ÊAf¨9’E2˜m
+¾¶e¼
+m¬¬!’} ý%ÅD±Ï&
+»§ºó’à¢hc& †&&d…¶ÀàªÖû½¨(Ó!¦êiê³Vû7«¬zªMKÛÓì Ÿ6b«„Ó tƒ.s’qbûw–¸d”‰ÀFüZ VVÉüökÆŽ‹—çïóIfß&ÝGØ3¾ñ` èúÑhåD‘•²bŽU5ˆRg\Ë-˜u§Îø;O!;±úÍUßßlãžÈj´<ÞîKðˆËF…P½5^ÞïÎpfæÙèaÜîû·®C YꟋeÞÆž<ݾŒñŸàIÐ'¿M#‰Îú$Ž’¯Ç&çH4­â5Ûµ‹ç1]î´CË®hEè M¥ÜPœ=Õ¢ô,³HK½µ9åJÿ¼¤@xßëDý• cY«PŸò-¦Û¤e5—0ÍÀ•^*‚M.Wêá+:])E…±ºì‡¸ Ìç
+Ôqk{úCßÌ8ûôLýsõê'Z¶~H—~™õ,¤ÏEørûøc¼SPÚT£xïcž¹‚pi´_]DiI\"Ö÷/«2(Ñmý ’æ•ý3cn[Q=…µõ =RQ:Œ*¸±n˜Ü™ª7vBL•´•^7”¬ç*Jw¬NXM·ÊÉËãu#*TO téL…z‰I‰
+¡¬ê¾#u4ðÝ4wW{çÖ÷ÜŽÓØ)á¢%©±yE¬Åô®?^l`+uP¬â#˜ÔLÀÈÙKZöÔŽkÆ0Îf‰ß4jün*.Èft ñ*t#™ÙæpõÝK@œ±„þaq^³æR‚þ~1úõ9ß3{¨³Éš¡ãÚ¹-+våî l·àœØƒUæ®Bn!)ºå ÎÖ%¹Ñ òŠ­a¿ó¢ î‹5Ÿ8ZT»qø«¶¥aöáñbL¤®ôl¨ÔǃNFTâr¦:-ø1e£))ÒëÛáY¦CáüPŠ»Rù€Ã-³ËMëîa´*F»xÿ¶Œíîִ©þøÊbEÏ-;E¶ußzëÄX~«ÐuÄ2g3]“ Ö
+¾¤HÁˆ
+®‘^-M‚¥a±|ãýœ›<äQ¹±Î´HY€Ã5 @éºÃ±z÷8’Ë@[Ò­ ]ªƒµsœ¡Hñ!žôÀ€%:ç~K—†ÉÉá+¹¯s°rRfèLÄ 6´~ä‘­Ó#]ŸÊ/Ç5öÚZ9C™ï+„ké™ÍÝk£˜hcqQõÅÍ\ô‚ñ»q—U1kÞ`Xîh%Ý Òœœ[Õó, T%Ý9•· a³•ßÇZÝG'i®û8è:°"DX3ÔÓøw ®Lž,â×q8­çÂG^ù…Tè_ó~É%Ñ-˜¹f£ ˆ}¾¬³ÅFò³k^°¦Û£9ç XX˜¶4J"?0wŃÿ¡eiKpé*äÑš£Î8¸è½4‡×§çÁhõëÇôá\·p4T›Ðï yÉXvµ'm˜ïÚÈj„Wa~hß]¥=†
+V8NšäÊ0K8§c=dï:¡Šj…祩?Jù+Re’¥â–gËð»
+£ÞÖH&Ü‹`#ÉËs“÷òçå_<9ûÃWÚ˜ÉÝšÜõÞ9²±Þh[ñ#]íàtÇ£N>×·YeîtÏrÓˆ‰yMÎßlgZñ¸p_¶B}Š6´mÚƶ¡µ#&"´WæÒê<¯Ê©z€9IgüÄí°lBý“ñ}ô=·¯6b^±k×Õ´v%£B˜ÆT£ù)U¥Tì&’¶f¯¡8â‚<¯¦“Kš¨¬Òlgû±‹Š/°õ½`ßcºtS6Í}óâ>®´P|ý^'[iç†Á‰Žƒ¿òª/þŠ žCóZ›è¶óµÙ£ 1£tFFÖÃÅÛè1è•,›Ú\q­ç§íD]~ÁÈ|™,f^ŠºÂM¹¾ý‘ÁA9&«$Ñ®é”[ˆ÷ƒª4d¬ho³$Pf<“ETid–ÖdŠ¸â¯ìƒ(´–ãXbdÜfP`kÇ÷Æ-ΔZ\)gÕAË hŽ–Þl>×BläŃŸáojß‡Ï ñ͈åÏ°P™à–¼ƒ[1ßG'sA“x¶Êc‡*«™<°4æ©ŠÉͬúIØ[à矀ñ$ãO;X %™5GK‘Z8ü`w F¥¦dÙŽ@pÛ?°…í¨"}?“¾ P¯l%TV.—½éqCò$>MA
+“yTo7Éc`”Aqø ByzRé‹ðÄdŽÿ•E[a±ÆfÍRãz¯¤`Ô®jéÍñ`mÚTùã}Ô´vô9Ú+<Š ÙïþGÿž‘5©§J˜šâvÛ’—Ž×ÇO¸ÎŸ÷@¬è6tì‰Â€ô´Ìòh±¬Ÿw›ŽÀLF%mw©s%Ö¬p:ñ>a±gi-ßÂ&[¨ ì¢%6¦ô[Dõ˜2Ú`@ÀèûÈ!5‡¥æ6QxA/±Ûx㌈ä“;4hßÞr]¥Ÿc"ÊcoQG·_qèò½ªcÑañ¦*Œp™&DFõfXå;kKœ””z®• ëJ/Ó8À¼ ÂS9¾æèÏnÉ‹G„En4>™&+ÿÙþÌÒ1R¼Õ8&ø-ìcëœg_]xàR¼«¬)7¥ZЫc%‡Ûì/Ì÷%ýÁ™¹”D¬È¯ÝòK(„TDûù«¢ˆÄF:5øzÂ%±êÝâÕpÞ7isww*lo~+)µª1¡}ËAÛ! ð>Ø*r«ì^MuÃ#²ÏÊe°wípUãúq+-®‰èÂñ0Ì©Ú/ò8)]W¿zªTf…p¹îm÷~À€Óå1t‚³´À"ƒ#o©ÍEfYVsbŸwâg ›ÍèLat&ƒnL=ÑIÁ†u˹°içÈäûš ‡”ª<á#ÑÁ|¬­7ì¤ðI±(6Ë?®îÕI豨¹”Ѿ6‹Ò‹«Ï°Ò¿†ax­=&‘m|}q`.\2s³G¼ñêH1øÉÊRá–ÂL0€¤bqW7$ýíjÁM eØöë
+vì¸ÊO=„=ÆjÑ‚
+‚Ž7¡õí©tí4b¬¢jö$!¼$USš% ø9v‚ø•ý ¿a¯´ºI4{áÞÒ@DîxoŽa}þ’Ãw>»Ì:¦Qç“´‡Þ{ÒŸã\—G)d]»ÈÏ6>zó?cfØM5•»zHCsH™¥ ×)¾Â~¯U¢¦ï(m¨ó¹/#¨/btêK˜ìئÅÛ[Ÿ(rû4uüþY±X”î`[ú¾E
+ꥆ÷‰ŒÛ}zè±Ó©{ Vùñ%w'\Y×SϬnn`Þˆž™nY!\¼´øãù¡j†¡ìaeƉ?ðaø5ôäHÞ¯L|GÑršõ±ÃYh, ÇU¢Upxoc1Òäô¸¸½A¹!ܶ\]$üeLzÑû|ײ˜ûfZ-Ò©wãaéMZl{ºö×^6í~ב§Fžý>µÖØ~“bÂ^YöŽ×Yšoú&[¢U ® Ù”`x? UÂsï’Cz¹4Õ½áªS®)äsÃ:\6ܬùAyg^q}W½0XK~¸µ·Žç¤3…ùy^Rßø‰!¿‹»‡Ý™Qœuç|w²»(µ-;ÊæÕD‹™R+“J˜*Yû˜]qÏõ×ñ{ؘ¯Ç^ßã‘vdý7p˜½œô"“ø,UØÉöΆ”Òh·ÝžØÖ™Ú½”Dò†VõÑ®.tV0©j¾ÿ¨v'‡È¢8@^Ü2W°3ë\¿ˆÆ‹.{á{‘‚”!„m ÐåƒYd¸F‹IogOÑÚù”ð:üé©4ÙDFx“²Â õÃÆëo³?ÆðL{KÉí;° ~¸°çud:zS䱌4ÍsËår—æu¸De²=mH¿Û™tv;C‘–Ž6£¢ë–»y~ªøÀ§™µ'âÜ®‚n‰ÞÚvš#1 Ì—øXt¤©¾±SƒY,èyéÅ;ã”Ìwí hÞF¬Bò÷}âiêyúzÙS^„\HHi›cç=cœÞ£÷™@'mhG Þ£™30ýØkÔмÌ=€#Š‘ææ“ùwEª; Qy‰ºÊˆÏoß¼l=… Ïxá '¹Å,¼0ý¥X)¿ØU!frõó‹&¯ß„¼ìQbÄìvߺ ¼6ÐÅM`!y«“¢î0¼Î=,—Y÷[¡¨ßòíe´SÿµÚ+
+'ÂÛX‡¯’0œŒÛÇr•nµçÃë_—z­e…„©=
+ÕÇIÞ¥ï+¥(Fâ5Ni•Œ„ñÕª{úƒ
+¶&ì„ÇÆT&}/¤ç‹g˜zù&éìgç†;™”»,2ÄÄ:ôTAdç™D¶ù0Ú–3}UØ;!ÄFÚ¼OÎ_O½ŠO‰]‡«Œ=‡´e3o6³KrsiÖXŸ!Ÿ°!>F ûuê:…Þlé017"Êä©©Ì“¸ÄýHæ~Š¾«/‚Ø”Oç<qÏ(}n¶6 _¬Îü¸M Ñ5é­ÖïsßmÕ»”¼cd#z$ûîëÔ3í»eŠ×OktßéTI·]‘<ÉX«`< ç]ÂBQÞvÐä½z¶à $•irÎȼbñ€f`Êsï\UkR[â;Sút) GÙjJÁô=Ã9ÌÒ•œåÓ¼ö|“æ¡û„;ièüŒS¿´Aê–þìm+t|H´¢L…E´¶w”ú÷o—uM…wopˆr-Ze£¤Îýø¹ü+m)çź/GñoQ!Њ3»a;æ®4úZ±;þ±°Éã\?†[u%N·I³öàLž)»3çT>²
+õÃG+ˆd%ÁÚxïXÅ\áÑÝz.wBqÄÄ뙌V(„ ¹
+>ËËË…úlW›þÌ;‰¢Ü'8l0=ÞÇ Öw¡(Z~G¢³ÒwS¡@î3Ó¦Ü}Õl¸ˆ){°Or•h™øùžCDðýÝ™ÎÎã•KPrO
+ƒ W@ Ú$m\& ò}1c¨3-Ÿ{´“•u
+[´ŠH«H|}C†H|ü1þ³åG ]”d)7.+ n{ å&Rð¤,YcåûÄåöÒrËOD(Ó– õlhžðþë¬Ø•AÅ£¢Û;ƒ%3AÒ¦›ÎÑ!&ý=·gé
+}½9‚Oœ±ïLÑ$áî†ùo‘q«È9¿`¿LÞe}×ÐÒ]("7¦öˆ£ˆéÝ
+'÷gik/ìXÊ©ª£íQ~)Ó’kz:ÚC{å7Þ;S X¸‡_¸U$Õkz)B°(IìM÷ÍQµA­|‚—e6Y¿0£‹WöDÇuÍIã0Ìrivžv G¼\cµ œzÏ0.\f¶H?´vu´uÆMUÌT3ƒÖ¶€cÌ~ç“Vx#%è»LO't„n`ŠU+}[ëD»'ó®0é°+!Á “¸b'Ö?r.ß›VP¾«{:Áž‰Ïæ2x0±û*íDÝv"”w¡ KDsMè@•;#’œ ËSë“Gíßè`~L–ñ]á„Ê€NŸ´Òö
+§]u>@APÜKZîôD¨–—1E‹hiG}ÂÐ`9Böö­Ö£.¦7ÙL”ÜáN4´Ûê ÔQ3]—n/\—ÔÅN•½?ñ·Z „úœº·ó¡e.Ρu¡IL’ðæP]²àõ”¢ÿ®/l.Ú(­Ó•óìäB3$œ/KU†kæ…¦.(Ä*öcê7M€Ê–˜t6Lø|åHWÅÛé5Qh3ˆÁÎ- ò êÔd]âÒ3áq2#ÕiÝ^˜Q–V×½Á”™Í¢6½'巡ΚîBlUtd½°’ý„a¤DN§nbq× y8cëO¿#qE{zÏ Â±šxäßYÕ1ý¬,¿z$½@­,…|U
+¢X±9ý# 22‹ˆoÛ`mí# Y#UúF5i ÷b
+ÉdÄéÞ“Í|Ê¢O´om¸úÎYE«0A‰wYe­sfaTý¡Ï{Fz©B0œ‡Ö =‚+‹ÐÆâo (ŒŒ9E±´[aºñiŽ)û*)Oþ áÑQ=‚ŒÔrå‰R/u¶¾±|?¨†°+k^¿…gé’§@}›ˆœÁvp¯5’Þ¿û±Ð|¼:­~µcp¨€}Ô¬éä-F¡7ò`Óí{³ m%ÿɹDÔ 7Áo5>dGÅètÞõŽ•½C¤¿çݦϾ²x¤Îš©7ô]ñG=}÷k¥¶¡ÖŸíCÒFƒEæß‹…×»:Eò¤FSêëƧ¹½ä#ÉÉ>‚H@&ͪ¼­˜KÛlC:1<SÐHpÈã¼Üoߌ€îËÜ“KH`b=7ì…î\*z h]6ɧèynVu@Ã]§XÎØöãmÆV¯;ÐùÑΠȱ(—»Ïì[«âõg-ŒV&˘å¦ß
+J"Þ–Û6wøñŒµ,7JAP$S:$ã±^û Ý蘤ÃüèÑ…»”˜Xyá±Ño0–>l¾¦°&"ËË+@<_ÄŠ«öc‡Ä© þægâúQˆ/Œ ¹N)!Êw3ìw½ñ/ü†q„
+ÓËm]Ý]ï[xùQôq¸9ž=‘ZH„æ÷X½ÚÝú§>RÂ8Òœ^Юgˆ9½® .J‡äí
+wÜÂïQk‰jK˜€2Èqã´#iàÜøÝ0lQ®Âhm'«b%È0^)ß<¼|>>.Bsêì¯h°¦/k8^j&ø8 WßÎ>‰ÜÇi l_‹Eý)5ÑUà#û@¤Z˜a:mŠŽÖ¡™Š ƒó™Þgn P×t‰D
+¯ÒÍ.Á³ hàW©·o\ÖFSºâ&~ü(§VrDôê•Ø7UšÇ°¿¶OÂàYJ.ÇÃ+R}1N“˜z‘¾‰ŸDÛ+B=Nzð~•»þ¶ õù|®é1K_D&Qå4wú=UM¦„£5OçK>:î`02r7=ƨÕmx,ÈwÀPÓÌ5!™õ¿F+«Ymê5}á’®]ÿ‘)ðmuòœ3§þžø“¤:¼á~z±¹d%Oò \9 Ë×Ããñ½ÏŸ²&åö¨¹R1[&·©¤\_ÃÉk”†=° š¬í§ùÚ1íFaÌö«ã!† tbì<ìœÞˆ¯Vq·X×HA{vãtu˜úë«AiŸ±ôjìÑ,w1 ÿùYÅ‘xMoUÁã%ñ“mìGwREeinª®¯2±4Ò5ÒŠ‡ò3ÄÈÝ»…w’:ê’Â˨祲Ý8§Óß<Jªr£Å…P0÷:Š>ªÀŸsÖõ¯ &‹Êg&,Ðg‰žU¬oºµáS Þ?~Ègî-©ƒIüJwÚ·98.ü–”@rʉœ¬ò¬”\íB\tÎ7Øè{Ï­s…êCÂÏVG¯`¤ö¦ì§»‡5²b*EðT.‘ò`.Þ«ÕÛ‚åNÖ`lîž®Y”)Ì2Õ°XÀmN[&ô-ûüŽ-¡žS”S݃U‰ywö¾ñb”œ• –¸×.\‰¬ÛüP"<‚‡mÉM˜Í”é! T¦‡Íñbÿ5^ÊÒÔ¥—“ªÈc>Xmƒ.‰¸åÆR(+¯åi°ÌÀ×»yÝuv˜dk‰^†÷}ÁTŸ#µæX©§rÄ#ÈYÜž Ù/³|ƱŽýªã¹UHŽsÜgÑÕ1šcȈ>::齋ƒ<û¢ [èC&¼Úè_J¸J»×å½=w99óý'JTy£â³_/TúµíKË­³ó’ùŽYQœÅSй+Áã[ž™@à@ 3'RÖ|¢Ó#;4+ç5Ÿsñ¾oÁ(- lÁS‡V4v1`h”íDôé½q؋ᕽ”}]ë š/'š@ |V®(I“öÄ\ÿÑÞ Örp6ÔQ1œK`0a–+’c»,ï›®›bnWâãÖšë­™Ô‘Ù†…u— L¸¶ ô }S,‡ÕœøROïáKŽ½Aïøà˜@OüÚz;¾ì Ú‚p»ù‘Ko<mŸ2WÔS®JÅõg‡Œ—¹ÍþÍLª q­Ûê.å–?ûÞbF9*î÷XVSß­oQx„h«.”ÞHdö­@öUkûY«Â¨\ª˜*`*:;•¸æK|jÔ)(B[y!œ2« òFe@ãÛ«Ï‹(‡gùÐÙGX'†êƒ ÊÔëÚXûð—J´D3Ÿã¸H—Bó]ó¬5öCúªy!:ÔØl¢­µÅoψ¶N÷Kp¶/5·žÇ…ÑÏG©Æëúƒ¬kýP
+SáSq‘å¤?ÐËR2õCצ‹ûqúÇ–:¤,*çªvTG\nÖIußu@Èr‡V%”9k!Ä{ {¾FÕn#Q+þÞá@GŸÜÝxJKm•Wª\B2òeÃ"ܽs†ˆòÃgŒ+·þƒ³0ùIÂŽ)Ee©¹ïR¡ÆGþor “ÊDªÄ½¥¦•Z¹Q»šßã1™ŽhAƒJtˆ3K›ÐÚËys
+îöéêgÎéµÊL,¬'!ÜBŽ¢‡Ã(@ŸôBa8©låh_ÉÉóìܶ¿Ò%Þ¶22“põU—’
+æð‹¸Ä×Óê÷X5‹±‚È{µˆ¬‰d—ŸØÐë¤>/NúAT3¾} ü²Ô}²Gx’O‹Ðà
+ÜvrÇ
+øà>Òhå‰ÿÂ;{ûÃv=è°E
+ÝÑÆ"’“âs8A‚Ð#5Lÿ­{F3àØÅë/èÅϾzÁËŠ’SrBCOE™ u²ç ›bŠ[^ú…¨ÅŸ5Jg?€xÎÇ­áÕ*6”u5²vàÏ…–ÉǧÍ<TÐ0X]ÆÀGº‚¬×çÙŸ·(iõm®zÌ6Tƒƒ'}Ze]ÂÍùjø³è ×÷nì]ÃCWÙ© “å`G…ßM¹ƒ1PÆ¡qš*ƒ FðœÓ
+¡h_’3i>Wèð¼ýCp‹cqãÀ‡DS;½­ÙÈ"a}I®-š¯E«º°êWÃ[RR“±þïmžœÎ…²<ÙVÏšS¤Ma*4×/ ¾s¿¡ÐÉËæóÊÞ¼…Î>µNfoƒm©çóþ
+­½kz¸Zùå†Sªq[D¨ðãÐ9<E´Óá7ž¨íN ÓSo®¿ .-Æ ¥ÕcIŒ‹¸Ñî’ü,¿`ß:Ý6äa©•Æƒ£ÚÆœ@κà`9Ùïú÷ØQ¯‘›ØJ(±ŽpôÝ×!ë\s(ä¨K'i«q±^*³|†K
+颋‡ù(E%ÚŠÙ~&4k{‡K<мs'»f¬@<{Y+!JcYKå-ŠÉjè)Èê¹_§Š~%Ž¬£–Šoè¾Á»2„›3 |o.†
+C_êƒði–M¬ºø(F` WOÞ@þ…ú²˜3žm\½löp‚0¡œ%ȯjgQ>³Ú?þÖ\3MD¯°%
+&Ä¿qôžšÏÌ’ÒSÏ2ͺŸØÁ…1Pñ"ƼŒpªk
+ÞHÜZã·Wë–5CzÄ Iýí?´ÔÏÞNÄ+ó÷§æ HÞÿÕ”~AÜv¨ ”ÆÝ{Þ¸ìFbø·’5ííB9â¹µøÈÚ“QŽt…aw»nI.LJdºŸ–Ǧ7˜$Iž™㶠ä†æO3Ö)2¨{9¶Xîë§p=Û§µï\ì Cu8GáJ h5ñN;ÕJ›ý(ðzúì@T¸)’à2|xVmšÁ+¸p׈Œó¨ƒ¾ÂlÇÜ£²IÆûoõpwá’! uéóÂã;ÓFG´ H{™¡~–… ÛI¸èùsd̶ô¥Š;4ðßV;À¯Ø ´ÿr‘j‚Æ«såÜLº„ægÜ~ET–y3Љñ¿ûŒ2 #—Ž¤ß9 ÷¸«í-EÆ;ºÃ\½SóÌ.+~žç‚Ž)U¥à˜=44”ã;C;cL°†s¡—‹bRdox§ì˜oýÉ\pRHÈÝ!2ÞíÓ‰4ÎÞfÓè-6ÙÓËUDöÄ’eÙÑ—YO 8›Æ—d$0Îé0e^­O§•»´×ÅQÀÑî¤Úgpá^BE4á•&ÇÌ̳›¬8@-/‹-SfãÒ ‘Äê•pàŠaGjF7sü';[€÷ï2Emö\ù#¢-ä2ÀˆÜšÏò¯z™«}˜JÙŽõk'ù$ùÊô hq  0 ¿ù…ˆ€æþºè½É“Xôýf¡·ì91`±lÓ:cõ›)ö™.v µ báL¹A•‘|‹hŽ…¿tª
++lo2°)¬Z*ì¦)ä²³@ˆvùÞ±Ïw™â#^PV]ñ¡Ì#zç3Æ9¤îCƒâ즰Å×ÕŠ››ÈOËñäþêäg<8Z@ÊjÔRçZ£[ÌÙ»ò. á¼D<e®²øª¥ä]4‰|¦T»ÂÝ=lî2ÅÆà̇¢d÷I¼L½õ¼wß«lÞJÖøDÅ
+¸]¿(X[ä6ü7-”êEKH+i%ú+öK±ÿúZ$ŽÀÓáU©UŽÿÁƒÝ|Ð[
+U°£üñþÖÉ®nÿ\à3Lå¬(öàÈ#Ç K¨Â®ŽkQ܈¼”j±gd¼ÊuÎ䳊ÆË?îjšž-…âÝbA8eTÏ€Aº¸„᥆”yÞ*¹ ]6žÝ:"Ï·DF‚.¢vk…ù±ªiמ€ïÜCñOpC“&FדþÆr™ª;È5¨ÓQê«%°<švÕÒG©‹‚’ݬ¿©®ŠB•ΠEw"Ññ-sáñ ¨âN »]jå•ô¹3ã@<ý\«·b¸L—¥!àB\Yç¥6ÂùʹÙÕ+0¯Yîmv¢Rá `Š±Òä±­BkœNHkŠ@nUô¨wGÝ‚9Ô–õ-î=Ž*Ö9dÕÚ @+Óâ”duÁ áÞÛhÀ÷¶Æ®7=ù•½ÚÐI³A5n÷«×Ex "½Þo&].‹s¡z GV¢b}#²Iq퀼&Ž®K9$®B b-×MÐ\b ‰œÌ`xq¢^lW˜œm%9ßõ¯gúV•_CiLðz€G¹Št•øâÉé
+ÎÎÅÔ¾ÁÕ;kO 3äÎÍàÄôZÊ}ËÐxTHJ?óÙ4ÞèÞÞN…æåòs“ŸR ûRBëaHA?.€o³T“å6Q yªMe›í ïVë—*…˜™`äðmœD9U(…ÕgWAõtêfåC ¹ç5¨îVåéðmÅqsâOŸ†-|ÊT˜Gë§W..¹{ñvÌ#k{“"Llœú¹?Î]#Ô–I1;¹>W)¡^Á¦Ç?ŸBœ5èK¹ñM–çXT7óXNܱìûíÞ­ñ®ùÀËx°Ò¾,z ÷=3N[Ùmël懜êsêõÕ~¸^Ò­» ÌQƶ †Ù6™l^§üòÍ„q’/NE w?ôµ&ÿJ®O±]“M‚~ǾAuø›ZZ=!]Bÿ¿ÂœZùH¼{Öª¢ú[­zä8«WŠd~Ê‚3Êð(¥ ÔØJ®»9ŠàØ5JOxŸ‚¦ü“Kox;¾•P×ã9èËηˆWTQ¿6_|„"ÌÕ-­ë²5pÇw bÝóR³C‚Ìì‚)e F2¾HÁú[ Ðð®qÌ/NÍW Ûõ¾éÞÛã“V˜ë’ ¯n½žCøˆ $Ž%$×3FòÝÉ4¶®A˜408lsÁ[OîÞ‹GYÇ‘¸&2nœ…„…íÎ`ƒ¸ììwÓR&dËcKlö
+›…a;pÐy†Q…ɨáÇ×\ó¡GðWZmb)¶8uý·_kÄ]nćÇr>¦. yÉÉ%o;ãa•¤@ŠïBÛª´:98ÐQmŒ/·*Åd4üÓv̵ïõÉnNr¡rTíÉhBÈz·‹u5YÈú‹sQ[m½ë”› EȪÅн·•X®ˆy¤Èˆ >1©Aô;'-ÌO•Fýf?Àð£Â•A­`_i,šÆe[ €*h¼<Úl× Áˆí`9ò”‹r‘ñWxÏEUÅ­‡IBtÁ‘Pz¼Â±yÑ(ð {Z&¹¹=Èò±´¬¸²Â«f˜† þTTŽ‚
+¹ƒz,+@9ý¤áejEKÕI»ƒ <y( fÑ>NäʉÂgQ# pˆ¼…`“̉J4P¤Ç©PÞ¸ŽrH« :ߌ‡
+ÍmHÿÚc¨>ì  Ãey¤UùÐ2À¬'©¥oXt27–X÷zSa*œ!tÒ7Γ´fͳðýž(QZûÆÝ…¶õŽ
+V×H?ñÍ/{Ãèý~"ˆ«áNÆ1dàe×ÅuƒôR6²ÀÕuªR^$^—éÉëìÁ›å×!ŠËñC¼ÏD'‚>oï‘«S{ßJêÿ´¿iO5h¦j¿-”†™é‚Ó™” Ekg溔êÍÞÃý1w!C
+È«óžÍòjm<óƉY{6 ѽów­¹<g“/¶ºEäL+Ri$ã-Þlmœ§Žý{Ùî½5G?í­ô\Bµçú&vsƒñ–'z±ª8#ÈÎp?«–”Ã.‘/Þý>Õ©«p{s7MéÔæÛ†áÛ`³æ⽉9
+@Hª‹a,b‚hý `|wõ3AÃÖÚ÷g$áXq­?BYÅŒÕÐÿØå¯|H¼·¥$¼qõ éûÙŒ#áðL
+i’†d<ä5bckˆÎt™BM-Pë·ý›òŽ2Ýj«Í¥G1˜|ÁâPo
+êc\?KYzcc¡LþAÄ„©'’îïg}ÀŒ• ¿Øô"Ô
+êp0thó .ýõq5˜³kôC>³ÓN†ó¬Ä &˜Ú{³Ñ“F‚|‚j™Óæ<1"µ\œedñž‡/fK¯ýRj‡‡ÔŒ ÁšïËRÊÊdúýë›:Õó-:™¾Xi«£,ÀÂ0ë4Ä„&Á³K“V°uâ7¸ØÂîˆ
+R»¦ðÆçMÀEÀˤ°?dˆŸÜ ÷ìäÿì$áR·ÏÆ#ÃŽ:õí»)-RªÓÏA?؉ Àvý4¤ýпÔØ¥»lò&D ÜÖ¡Œ)8õ=Ka[°"–Œl
+·ûkXì¯ôð$Td¯Æ¨ûm»ÉsrRF¸wÖµžy˜:àpRér¿—ÃÈŠ™N³*”ÅlO ˆª›’Q¡K˜¥,¡yÜ#`gþ°ˆðÖ-+°íð‹E©ÂYcÿÐä…Ómd›ÔUŠ¢ÅèüÈZÖÏÛÚ’ŒÈ@ɺxÕnS B§“+„…(ÜÁCŒ]Úd768ÃNMÒAÔb×ë*’Õ¬êw_t²›âþ@Ì7¸‹N ð©ÿ똑yS¥®eq7×gÇ2[jêÙ´}«WðÝ{ŠPÎܲ ¤­q/X‰T a‰‡À—”¥ß²?ð€íÊ.Ð6^Óœ»KMÐwIµõÉfÙ3¶c&xYHŸè&°„³îDwd/4ŽF[îÉ:{ö'c˜‚òª­ÛÅwÞe[†ú˜
+Eªê–È~²<ØzƧ± Úê'š; òypr‰îœqºeek ÐÅd»×§>„ƒ“RXò‹ø wâÖ•œ—|"$·•vº8x}R>:æ*Jåi±Xü“è²ðŽä$BBçGÙ Lò­^!¶dÞÊ‚ ßÁòD[:zr¡|Þ`€gŠê6üê;?oh€ƒ›§;yZbØÛ=»()Ç©‡’PGÿÖ&g'ðH/ZŒR£NV"ÿ âRªkv€#OJŽ‹6šÿ»ë/^¶6q">Ž<‹:kÒƒ@æÅ„[þ"èèáûÕò¨¤ú¢ÃU
+^®ë2Yšs0©71°NÀH/l ä̽Šœb=É6ƒ«WàÀ³¶ŠÜO),KT:ÏÛÁ"æÍõ2§ó=½p^ÃÀðÜλòºÑÈ•¤ËØîÊ^‚”-©¤ßÜ'”Á„VDþY•ñ¦P|Ed<ûÇyóG´È¼Ò,h§'sãò‹Û~ùòˆB‡<X!à›z,ö<úE)£âJ0ðÅ
+m&üŽ^{I3n„2!›Thö8Å ò¿€Opdäø ~¨Eþ ¾7G+©òMä"ÿó iÅ‹á“»›û×/lYK[rAR0×µ§m'H‚eÀä yÿz€6n}vÒöè¿G½¹”£Ö‘æP­‡h×þ9=©í¸”d¥±|+ºÛ…ùw妗Òê<<=‡¡„´/‘AàAÿéù/®V…‘çuªC_e†¥¥'€98!roÆb"Cs÷Î~æ5®;l=£§Í«>„DŽsx»;»S P£²ð I]å†rqŠÁÞ„¹¢Z®5ÉÀØ«ÐŒ -´T1ÛåB—µòEl3Ógÿ A7 ’ÊB€3Ø#™×5ÀoT˜NÊÑA Â
+••ô‹J•YÒPò&Üð¥ò†Ü;ó’F_‰•Pó<I¨†k
+sÞÀý¡ç }¤z»¦¾Gx½ƒ{à  }S‹:2ZC­EÜ÷&Š(J~~Éj‹º–
+”d ÑÌW !ÿð"ŠˆP”Wf498Èñè=pÔˆ©Køö’®áe=&™\×, ¿ñOæ÷J
+KvYÖÃ+³ašÊaà
+úLÓÚü_+Þ ¦éxü-À¬-¹Ø¶ôˆl[T£°Âøj«X<§?ÏÖ˜FÛðÙFh?»w#ÔM+3›®ß¹R{m¾Iˆ84øssNˆŸ§­Kb2‹Ä¯Ö0¨óàwóšÆczö‹¾T&¾ªB#c³æ/bYæ–`]® Ó{†›²‘ú±n–•³#§*è}Ú‘½ÏË‘6¿³h’£`rxlñœ`ß ãÑë\‚÷â+᤟¨Žß‹‹Ùe∻´8.E;´ŽÖ±ŠÀÚ§)mºf×t ÑìÓ‡ÁœÀ“|úœî%öbø6gú6tÉ·hi«í·×J·<Žy• ¬Ø»™ªLæÖ˜ú»>
+5žà8?_r¨ˆþ°˜E«Ýµ½D‹~ñJÏŽ?•5³./¶ ˹Øg°
+¤œC¡+å¤ûŒª’1‹îߺøòÑuäN0,W+c£èå(- e â眰ßÀô`¢n$¤Ÿ¬†Œæ:/ŸU¹¼?_Jn‡‡¸nÓ¡© ÝXáâ‘uaúN½EDüAüX1'ùcJtWûõ™å
+¢›Ùø0 g9†õ ”˜ðǃn®ŒÔ_ˆ¡T¿æˆA”®ƒËhüÈS‡ýŒß9ýfbPOR€q‹•hügÿ´=àgQ?¹ äÏÉl­êÈõ!<}@+^M¥b11Yʆ1¡õÑb§Ÿ³[q`–|U¾Ìðظ¶©zíÙ
+‹¬iÕ#Mü,“là ½l¹­³@VREšá‚,êQHLe9Žß˜®ÅÂp~ß]t7¿³×9I@ˆx'‚ š\¦¢)ou^À•ÔÞ ‡af†"s©c¡Á'yZþ}ýýÂÞ0"ºÉcTW`êj{‡,‰P½ÃÚEK òX‘/c.Óé±Y^%]‘ós°•SÛ,…79(ê ; 6Z˜ší¬pAÃû÷â¡ÊS ÒfjYtœR’52}i/‚]#J¡gÚ§qÀÃãHc[dûB jÉO|Œ­œ³)=TrIàvs"4F[Û q+[³!¼Gù5¡gÏqÌ߇‹'Qµ­Ô6^W{èÖ2*pÝ2ÞïÉ5v |Ù3ÿÑÀæÈ‹•$¯„èIìgû}„¾a˜¼$jÆ-`”„_ë€Ã ò[áË^aÛ@ÀÊzþ(¤4ÚtÄ£°é3¡$Ùͬwý/Îî1Ç,Çž¤W7£”ͪØn¬ æÐçBþZ³Î|²ù º :ôåà|K )Ÿ‡ê@4JNfÕ™ ‡Ÿ¢åÑUº¹ß‚*ؤ8Ü¿IÐd-!%çÇÕZºG
+‚ôœ"ÉíùÕKYBÆUÔÂðAøh4Ú›À±Èó‘ùžaM}–5Åå_˜Ã‚ü„V°a–(¹ 昸ûVÿ/ãüd4¸kŽýoðž² Ý-yg{^}, 5„b ¯fbºW®yƒÞ…|ª¤í–ž~ætç×–ÿ³–i™2/ó@·<ˆ°«¥ )?b>×ò Lr3Ì'ýg=Ïœ-Ó¬!xöúIÞyº3áL)õÉàGèzŸÖ‘¯€ºDqóm_§˜ÿ'{"vȈ­CRx–u­›ËcïÖ3×Eø¶ìø™ O{Q-#‹/òÚ’c¶Ý|­Íþ”deÇ¥ïx'­
+e,®³@?084kL>rêwÈŸôhóªÜ/è¬UÌJBX«,i“>¿K`è†D¹÷A»ÐW"-îåAx+š¦íëŠæ¸5åÀ‰ë·ûBIb–L÷†ê“Ù€IÐQÜäpàJ0·aEÏæ÷í¿&eP]úZ›,þ${Æ9 F½æ¬UG)MÄý(Ý΄‰ü­`c Eõ8­ËZÁ­·Õ>(Á[[\‡‹˜¨p^~q¹c{—?Bx’„t›J½™móá`]rW#q]½$iš‚b¿Ùýæ 1?>ïåJ§ãïüuZq ¾QF>Œ8_®f‰3liö8ÏÞ%"¬Ÿ*Do\$_ F&
+w~5v€¿Xe:qëÜàGâSosS%ŒÞ€ÆÀ £¹M~gÁ·U:„vúg¬éš|z1ºÁÂ#>ëx[\̘1lž¨°@ ý „Üë?7D­!°-jqß<0qQRmb+²ÙäâA?¤ /û„wUÔ1Ù³ö6&ø}ôÃFkæ­R&Þ´EV’«xËœo“ äÑ~öûäÎQV¾cPZRí?°`?r·ÁÇwdÞk¥b})ÃÌÆYÕ¾ƒÜ_õÞ´ÂÞN_@1 vå ˆ¢´þ‹ŽÎÀ•Žn¬ìçó”°'ô|ÁcÛ×úÁ kÞ”Sòð÷Ö‹gÒa6³8Â(i®zãLà‘%™Ú9n’G*îBQ‹<í>–9?½©SÖkMRlLEm"ùQ^Ô¶ú 6ÞЋ J>Ÿ]EWÚ_üh7,LÂ0n{ê§þތĖ‰Ã÷Án-ü#IŽ‹À’6²ÇŸÿ¨Rmè~ëzzâß]€/Ç*˵6Ñã\í.É®åïØ÷'=RÐALÚÖäW+Ú8³"ûˆ'{ß Þ$…%r
+ÂâH.Ö#`±D»Â¿0”ˆÛ¦\˜}ÝÃû"<
+H 5ãÿºÓ7BÐß3à¬Ô9dÇëàºæÔ±R ¤º)â WèþÀóüØcéïуI!ÜhÍjŠÄ“–šüdžãÉwœ]…kü™qJ”Séýwð¼6¯œ$-AË6I áÑOBÙ˲*òÚⓉþƒÙh˜-KB„Å8
+±‡N8Uî‘¥œPÑÄ`£…:H‚ON˜ªØû‹vŽÏo³»Š°K,éËí19þt)7Ji©‡o@a'êÒïök¬(»›ˆÔѦ®'¼ó¢abu®A>w
+# å´†jgùóé„Æ]Oóê[rs;•gßb)9ìD…à¶gvÑÝ…ŠÿÏCÔ®a
+$õä~‹$€”Þ(@É>Ž" šG„>r² w¿ m2Z íÇ6xK²1ç! ¤-DÛbB©óãЃà4¥j47§=k–Gð‰u›› !š8'uÉ[Òa±Ñ1äÞžÚÑìe[aåïÁȉs†µÝ*5•¾¯½™‡óv‰Ií`Ò¼I‡?U/@#o³‰œ*‚+8ôak¥~¢F&;©êÿ}=ù-l€ìuÑ *
+ÃÁÌï­^òôJlB:ÚWíÛ ‘ K2à™qð¦c^tãj›Ê @%¾
+ :%Åe^bÚ¥ŽÁÛ"©ü•4Ês”øìëÛc[‰,Ss‘ Â$‘&ôGÌ3gŠc;.'ŽµÈv·C‰\ä&Ú#c¢ïwO©G”V‹±.lÿ÷7¹Ik)Âõ ‰Óþ%™2¾ÉÓ£ˆÉ
+ØN e²=z3 <±9b0‘Ö,ïíþ¦†*†Ée)!…¾îØW\÷‹àáÁ>õ¥ººõR>émP©¯èÍG÷À.0iŒ¥ð¬,ï6?´°-¿·_ -Ìmâ<ºØçk'4°¸DóC8¬ŒãU @„…!N(*×J–OŠíCBYÚ2ŠÈ­í¬¢}tÇêÂ] çÊ–±ç+øö¥ êòt+ñzgÖ2⯠HŸÚ¢[¦vþè"‡åw¦/«Ês×5È÷Ï›ºÑbsÝã¹­)õÉ9ËçÏ}Ó<æ kà€Un†@»èñ§…`ͳ"Ž®7¯äÓ½Ëc<%Åk;‡6\F ꎓèô”'ܪ_:­@qd®ˆŒ4z™½r#grØjåÅú©"ËÄÆõÃE¯^Vÿ€:q”·Œ<ó‚ @´È­i¡2òõÂù•šlP›ï"UIÄFÏkóÉk§?…8íªnsjÓßœI?VË`¸Š
+œ ­ãÞ{äX&«ø!lot`Ö]Ú’«Eú
+Ç…ÍùÄR›@ÊÛÌ°¨Ä=@ýüz-;2u@$¥mâ=ÊÅæµ8¦rO{¨ô™±Œ¿*õ—Δ.H”<ÈÁ[­¦ä<N‹1ØìáüÙ¶ Òƒúå[ÿ:ZõÉ&ì|ºöÏcž]¹pPÓg©‚à8½ÖÊ™­ ]”à,¸å›ä¹‹ Œ¶¬<KølëŽÌJ難Þ¾ð*”Jª‡wÔÓ„uÒ+œj¥!÷ç ÑA¨ÐtjB‹>
+¨¥´E‘LY×o3»:7‘ÜoÒ¡q B5+:‚NîK9Pj·yêîóê4,¶çäË'=e꧇kÍð- Ëiƒ3ð aiÐ퇆th“Qǃâh ùö! n „CL^»æÕú=ï·¬ÈjÆôc%~ v¾im‚îžk)ðîÏNlY£~
+^2‘«ÑSÀY°ÇbíQ=SªB%#’+c™âƒ¶Þê4FiÒ÷ô7oà ˆ•ó‡u”'£ÿÚ[Ie¿ g‹¤¼v 3µAÃݯI€q4&Ó¿º-ËŸ
+KÓ”‚J¼]o˜ãÒjžs‡ÑI&<É1ÞØ›´„`ÇqJ6Ž+÷;$AAÛnáîÞÆ8RãݸâV¹#!- *^XÌ1Ÿl”xýRlj£ƒAwA;vâàå«ÎG"z–Ûe¶E!ÿ0übïÛÝ,<µOi­LVµãÔfûëêÛùXËÀd®rT½&Š ØÚJfu¸l Â.=:pùOb<äįæ»ÅÑsfÖ“½yîëŒùI„–,kîO¨£ÌM‘ `¢#rÉj€ÀîÅ>äþ°ó¬ 4Ëá•âor
+RÈj«-o"g6L]^bØ‘s²¨Í*m„ú´@í@¿5^S˜…5=4äÛ‚(×N ¾ããß¾»‡Â9ƒ$âéØγg(mì6Z/…„s¾J얳ؠÉbUB†U¾þØ–®1ƒM‘4þƒ¡žtäæ]ü
+èZNòÓ»¨ͪóU.5€Ùâÿ+3ú²¼#`8Bóëµ÷©2}]ÇÿÇÌ>GWÑD´ƒ–f­obÛž$WÝ¿&±7ø0?‹à“ThÏP :kö/yÚy-ª‘-"?x†¬w—ì~Õ¶3t.ObÓá]Ï–†m2'GØJ„¼XRB¼:|–‘±—VÑÙƒÛfèíÝón‰*(ÝÖõ5¢Ð3œÖÿNë©%5‚THl<Ìøÿ‰iÍÇ€7ÇÞœT¸¼uà×Ì¡§}s«Y–¸ÄÞû˜ÒSúiµ—rê?ñ®V,ÌÒÇÞáPh~ê>Ÿ ÝǼgŠqR>´Il$µÔ¤ŠÕOo•²¤@cÞš¤9;µ“5³ƒb>S~Ñ""ÿd¾”fý–•]0óxÀu*Äö¥AJ á$$3M¾.sAÛ÷j‰¸µˆlèÛfv@š¨ŠÑ“½ÂeVÖÕ³j õúï?2üVˬ!TÑ’ZvBpx3îZÌÄ-¿¡‰1GßÂR•†ô_ÆwºlÁxkßoÉÃb¾ÆARQI®»ëÓ/Ë<OböøŠ‹¯É/·¾T">øµm±WÙjeí¢Nì— OÀj›j:Ø@wÙ¶PÛÐW¯]?Ø@"X­ Ìoqi¼‰µûÍ4á–Ž6s5ïGtä“ÖU"ð¥Vùµ}‰§ÅtiI;½1•-awlŒ
+iáƒÙ«l|Tc|{£±móÑ眻’°ágÇa_Îkèìªó0§ñ>ó<N> SHCÔELEaõ“PÖe&Í«²Ët6—T½ôŸåKÌÉ(óü`ò¬7ḹ‰üõÊÍ¥­¶êݼ-7—Ób›«-¥øšÿ”tdÞâq”ˆ8w‚3™C}¾àþŠp
+endstream
+endobj
+3226 0 obj
+<<
+/Type /FontDescriptor
+/FontName /NZLMBC+LMMono9-Regular
+/Flags 4
+/FontBBox [-451 -318 734 1016]
+/Ascent 600
+/CapHeight 600
+/Descent -222
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/W/X/Y/Z/a/ampersand/asciicircum/asciitilde/asterisk/at/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/q/quotedbl/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/uni2423/v/w/x/y/z/zero)
+/FontFile 3225 0 R
+>>
+endobj
+3227 0 obj
+<<
+/Length1 993
+/Length2 1133
+/Length3 0
+/Length 1785
+/Filter /FlateDecode
+>>
+stream
+xÚR{\gD
+1ò(PºkÅ Ò$“ðByÉk! $qÕÉ$ŒÌÐdÀ Šb‹UªXª€€­, 4®PuA‚È‚­¢  ‚AZRøhéPÔ®¶ûÏþæŸùî=÷ÜsϽ¶Ñ±L ‘ˆ8Éä°  ¢Hal˜ˆãÂŒAd)¬
+\‡Ëã@<®+àB·8BÁD"ÅãNÒ‰dµ•%‘< &ðTDA"¢DqÙLR‹
+‘D£¤8 HaL‰ÌÆ…¸Q`(ŽDJtæj)«!赜 €#J%eçó¬SçÜÝfßåÆ«VàbÊÊ6j_
+©Ô-ÒfvåØrX¬ ôPaÚ+Ôâ…‚êýûZ©¾/ÞR”šATˆ˜võ2!öÎZ_›Õ0Uí¿ps¤¥¦Ó²lCžòRV˜×p¬Ï»#ûïÁ#åú¡¹Zä”è$‹ÝÑu*chzï½2g£Bh'l‡Qg‡É ‡öËU[¯‰ûýÎ'É[–õ.ju.0;<zj%8<j¦ýܪ=ô?y½8ïJvNHmî lRg¼siUSÅÙ³‡Ñ³iü_®„õ‰ô¶«zûò>‹Z;U~äzÚæCüåáÜ[Â:Ë:gÿÖSÆÞEz o´==Óž‘6Êt-ÛtßäzH;³sCŸá§Gcê]}º0·´a:SÝwœgò£N˜þ¶ã:oíŽ7LÚ¯Þ|_jôè‚e§UãDóšl‹Å›Ë×´eGtÿ¢_¯ÛÍq᪞٠Â;>»¨C›L¿ùúI~Sô…JvÜ—û«ê\ƻڇá{,bjòÿah’èƒù†¶w¥ÄošÒó“åŸY˜—ËHHn®ÛXâWîgi6Nlÿ®cìË3®²ŠiÕd
+µi…v‰–ß]γ6,îŒøœënÙ)ÚVóá;Ó¢}%ö«‹ü™W³ü²éæÚD‘ÓǬ²ÜOžñþ)tÏõ(Î0/ý`e㇚ºoïÜY@8÷Ý{m—öÌÝsŽ¸[Œë²¥y?ßó„x¸pÁu·±,L³ýÓ›=õ|Û¯…¬„¢­EÎîú–Í‹ÓSûs•i£Ì?êÄôb-•¯‹ïˆðùÛ
+endstream
+endobj
+3228 0 obj
+<<
+/Type /FontDescriptor
+/FontName /FGOBTD+TeXMUSIX13-Regular
+/Flags 4
+/FontBBox [-619 -2558 5000 2562]
+/Ascent 375
+/CapHeight 750
+/Descent 0
+/ItalicAngle 0
+/StemV 0
+/XHeight 250
+/CharSet (/macron)
+/FontFile 3227 0 R
+>>
+endobj
+3229 0 obj
+<<
+/Length1 1635
+/Length2 12818
+/Length3 0
+/Length 13659
+/Filter /FlateDecode
+>>
+stream
+xÚ­vcxfݲmÒ±m½±Ù±mÛ~cÛîØNÇê˜ul;éضÑñÍ÷í»Ï>Ͼç×¹ûÇZÏš5ªFUÍ1g=‹œXQ…^ÈÔÞ(noçBÏÌÀÄ PSÖ±0²3:yÊÒËM-¥\Œl
+.ªž@ÀÿM¤!goú_‹¿˜„…í=
+Ãךo “Üï¿<Ÿ8¼íIÓìwcÚPv¥/òñ}I©{
+PÖ)Ú8h÷ƒõK2N5¢½/çe7ÁµÙ™Ô÷·Ç•”õ¼BL¶}u‚¾|¤ u+@'{p@ô3I«ÃhGn
+XüVæT
+Ôòme ¢°¶Öâ&çN xVh|zñ
+¥ÐYM® Y³R‹Þ3Äy{¦‚ö ñ¿Ç|’½>/4ì¸:)vV9RÛú}ÛDY-“/~¶¤
+·5ö¨:´toå"Ch^.&çwï…Q¶gv¶Ìl„ë î‡ËØŸœGWha¯ÉôøK¥\¡³FȺFœ©´Žoøä3‡G´yÑäW ñh½7]ü„²CþE#RzR.ùÍÕ—Š´×qàµÒ!yíW~VÁ×Ö÷Ô¿F
+kÛØg™6²ñyÅSYlC†àÏ+†˜
+Ų$ÎÞšjðŠSH‹#-4æ­5+¬%ž’ÔDäãˆ
+5¸!ZZ¥ <¢÷ÄŽÐU¯JDÖˆdçŸJwÈlÓ‚äW™D?ÌÛ^RiÙ†ç™ÃØ, ǾŒ¡euu„¨r,PÞ¼ŒfÜÜ7% ©A¢œ]+“=\¿)ªÖ䱌ÎF±sœ´Â°ô¬šÃï±B»&Ю¿¡µë˘ #I|*€G+ãh|ñ¬ž‹2¾fYr®.çšd¹\õ£´JìM¾u3NCcKù¹6Y>æM ±ýËmOÞé…¨²7‡,‚T¾Æùt+\L]º|›¶W'
+SïOEÄ„ôßã‹•4ØÇ5žëˆ׎¢ÑÏǼ~À>>€)»Ôì ›ÄÈ®¡u«ƒQìª"㣮™'”†u Ý¥Ma1GIG|9Û}ÆT9ópÊpÉÑÛÜäõËÐXè#Õ
+㾇$Æ×cKñí'ž­c6`_¾”oÖøŽï¼‘v³e’¡|~ìM˜r<´§ûýÈoj[°9£¢HêYÇmAû…êwá³7 É8±‰«žç-Ë)>'" *®Ñ!)Ö ±Ža=3ƒU×1†¿¶¥+¯%œQ/éÝâëTç°´@Õd¯Ã0cö
+iœE"(!L'ë$
+®ÂUîA±­¡…7¸¤Ëµ;Çï<ËÜ‘6'áOÀÍJ¬úÏï+füxÜhÿÒ
+¤_yNNÀøÀ2«w8ÌÃrß@\]ZâßšQc¶s™U´®²ÄQGv«b±Í,} ­©[y™% L½­×
+JëãoÀÒ^àõ×%T¼ú“(­J7´!‹UY:­êÉ=ûºn ý»!<Õ‘ÃT+«b³±Ý-ÄIÖ˜Oϲçwoù&b*„òì;å¡2Únƒ‰.w»ü—'»Ê
+R–ÌøKbŒ¢DI‹·*H_ã`GdíÐp4ü6ÑÜÌS·ºIHTy†6p$ÑlÉÿUÞ¸ˆ¨¬2oÔíA¦•õ}¥<É׌|˜HqÕíd!-}'öží
+¨ñ£x@+
+‘òi Ž$9|úê(¢-gc~(‘V­ïuŽêi¯©g¢dHÎ7ñk€tÂÇU~‘âÇiÊ©ÙÉô×è ð·Kä73øø风²4ÞRé œ ð¢Í*V®|Õ‹6§µ×Xá«×¿W'°_ê§6KÖ/ˆÜ¹¸…á781ûÙÿpV¹Ÿ¶h@¾èX?ÏßÂöüÚ©é{*¦µŸ%•®º½#¦‚šZrWHƒçù¥ØGHñ`¿±ÛØ“ðÄØš¥†ìŠ>b§Ê¥Ãíù<°YzóÏ¡ÇúÒMÈ9ͽŽÄ©r§žxå9ÞŸ¼ÈQ
+ŒúéèŠë– uô¾ã¼Ë8›Ò`Ë€®œ}´ਕwA˜¾BrÌCAîZRšñqÊx¹ÚKòó«Yz—œà
+œ`1Û÷pÞKw´…Ž-½Ã’nÁöÊÁüȪö3ËÈÆé{4´„”ʼo¾Ëú¿s°~ðÖc©Ø~ˆÌ’ô2u6;~hÒö[tŒNøý& c8>²ôð[™ö&úøéQIÒ³ª‹ûú
+í½DOê]ƒK£VïmZîÚ·ÿ衃˜i|`5“úÖß\–’±óö]½o×隢€æF#.?`Í7xŒ¶%¿`rI,
+gm×MÖ6¶^ Ï>Fí`P¶ûîyÈ«A—é»”.±°³öp¸å…“¡5§ð#º¤450%ªëO§BŸm©K^ñLA m¦ˆ!U±¢ÓÃÄ)XÊf U5%&rï
+o¶Ó-wª!ÎÑÚˆH½+UÇù†ŸãóŸÆ/ÏdX«Ù¶28AHb¬°ÝBpJ†| u0ƒ…øi¦1¿ƒ3?»í¦¨†h׃‰hsÞ]íDÅêBŶî/ë[5PÑìªù‘3è±™¸9Ä®%œÞ6L\‹ãÆ> [ 2†Ò’•L•»¢Ê±RÊš$©zÒtù½0/Xµø-ùÝ¡G‰ù× ¨@Â3R§ùêïcœÁ£çç³Æ—Jœ@K‚nêÍXS>kþ¡°m
+Ù*LN1êã$ð§î¸…d9áÀ‡g06—§6,l¦óFšJRªÆ™[ÍVuð ûkà-žuhà S+ zø÷©×7GBƒêV‡r,g'ÖÒ¤Ô€v5aU“ÄÔúâ3cç¶ü]©ª‡°Ã3&â+ØŠ)uú‹>Æ u1Ä5)·"j¨|s=¿ùŽ”;T~.Û V@ØÅ'fÜ8Š¼Ôå*„àpfróQ?ß+ÝkY<pƒê }m†h»³ªþýPç[³a,c7Çjjw§ƒO¾Ø¾þ~1¡ üGã1[£€ËÔ¢ÌZ±†ÚDçïíAÃ_,ñãO3î£fí^#{öÏ…¡M9ÍBÒæÚbsÁU_únšaÚuY_;âÜPK ¹¥÷h”×´UKÇdRÖ \þ0"þ8Èéà7zÐgóAÍ;e1œ- l> ¶AäÙJ‘^°•÷L˜9>òAZh×^“þ9Äß&ˆ­Y'ÊQOºN /Iz¾ zõ.ÔI‰ AoÏr^Èn‰bXÓXÔ_U¬úÐ#Qnk°h³Y–pžÊš/´¨¯Pªq£vž£Ä—î>%X8ÈgUå>Tˆ "/]Õ½^¤_lf£˜ûcc¼Dà× .ŠÑÊZ2%¬N[MGõäxyñ—Ó|rMqgQWJ€vòevXfýþ¦cøšï¦œO3Yù;>MùÙ ’H™ˆòË8¹õZ`Ú0TáŽmj`7¾t kѽÙÉÍnô>©I½øÄ% 3øw¥g”µÞÙïh÷·Z$8èÔ\U™T(ú*ÕLç\/ý;ù
+Er:¨$/ í2%mLñ"b…ºê¨85]ÕÒ·ÛÎËÍ€*IËÚA㼺¬=!ø´È÷'ëf}Ð~·(a~ØHú>˜uD,ºR¸›à&ÔJ1$¶’¦2JÊ£ñnÿyÉ€Ï_ʳq{/|ß`æ>øûùØ u /£;ºÍRç&n0çÇq=ÞÞ n%ò\
+ÉõËÓ„ ãÞ8µøO¿rõÍaàú…–OÑã{(ò
+DZyñÄá%9|lYHç ´kau¥þ‚ŸÈÇL»sx"UÞêZ}1°¾½Ôe!ÉËGÁã¿÷ãwÙ³vžEF ØŽ
+£‰ó*H^z+Y^©iÕ·Mà#žzÁQë
+{œ¡o]‚òÒ3êßÌÊ¡cÉÑhÕV ápçTŒüç.Þ!Øg3$Óñ*!áCÜo0ÄN}¹ÐeXŸ†é÷ÕÀ—¬¨¨RA*é^×=Ù
+:‘b-þ¾Î–6D¶ Ÿáê°ÒW®õ"0ÐDI ÀR×ËÇ•ç”û ® Š¦~ì!a–›%|òÌ•l>íGžÁªÙûŠæ7
+‹’0z1Ž#ðÎ$:r3/5=»•{ÈêéÑÊWŸ³µ ²´zÏðtË•ç Kç‰v2Сܫ»ìI~+Ç>ÞWª=F2Òs© 03Yˆ_ú¾ho¶Ê½¼Ä2#˜se¿ØŠ’y²2¸Èa–-;2v.ÅÏãTF«ûíKe·ÍéuÈKÝñ^ßÒ3$d`ù}¿7ÉxÍ,@2ÑýdEyz±ûƒ,aKê
+E'’_þñg%ùEôÔƒrý2C%*¯Õª#µø®ì¶ºíWÆ÷Z\$d‚ç‘>!¯d¸üÅ–ðèd.¿@Ð’]ÂF9ó5ñ矲/#ã ”Þœjš’H–óÉ ,ļ= †IùÄoø®ðY"Í«l©ŽÓ?›bÂ¥ ëzUW\>¼êâÒ9ÍCRIefã":focHਠÈE“Ëí\·;n´"-2n—ßoòТÃÊ!©§ó™"±¦Q¨{;NÐhn² Gþëåï3’nus®¬VìžÆŠ¶/FQh*}”šßŒAŒNŸí­m)¬"…Ÿ2̦P…Õì›q™òþøzר?V>úïÑÅ¥ã:0¬8˜C¤+Tü=0!;Òö½¶@Ù¶õ¿·H6Â}"i˽' ¤Hns¡Mn½?çG¦™nt|´ñÍ«ÃPð~A„$S^äÏi”Š(,*zÏ°ÀŸ”ÕãC2§¢8K”n'hÛN”è'ÎÓËÙõ—2áC1ýÑaoý}«ŒË÷h…ÄÜg÷C2ß¿Ñÿ3Ôôù‰ÈÑ&siK¨Ú£%l gœXäÜ£¶y„”b%azçªLÃoyFvPÄré·ûèðèj¾ÂÔÃÄŠáÈÌW6õä»#±
+ 8eJJ‘;̶=ÆF„S×’Í=œÚÏç—kçQ"NÅ*t\YFö*¦s¨qÙTÜôT¨9Lyø‡ÐXÇx®M:~Ëøq¯…BŠ³8XÀV°Þt&ærÕÓ˜—0$¤­¤b¯o–8_®Fd+o|± &ò »ÑRãÝr© _ ÿþuí}oÛ‡$'¦‡R!¾7«c™wØŒaLšU
+Ù!)ßð^Q®ºÄFSqóÆ*C\´š­ê›¨LÛL £¿ÇžÞÕ¶ëÝâ¿ŽÌSJ1ämh³X«8òIyyìaHÅñK»ÙÕä«!ÊË@‰‹â.–¨!luÇ\ªø̘¿/?ûTéIØúSЪ2°éi½.™R½~cíÿHu¨w$꼓/ç°äŽþ,Ñ|¿üá¯(h ¡wwgÖÝŠà+ã)Íl*ËâSÎA¡˜“íPn ²¼ª¸YËJúÕ,ãKå>GPœ"诖fÈ|÷ʥ̚À\`¿ïþð/$Í?¯Šün¯ucYfÅ%þ°IòjÀk$5Ÿ=#OþØ…Â%ãAo8¶œ0…^꓆.t–^¶ugE‹D1Ö‰íÀÆz+üô©$s€#!Eàø
+{Ž.›Ñ¬-€Ø,?ãbK•G²—×nŸG?”ãyHÜ¡rrÌ Éœ¦ +O6MÕëòö-rìÞ~/<v¢Fj)ûö¤Èƒ×Èd;QgµÑcõŒQ£òÔ‘ûS’ؤßL èob…ŠÖ±v@Ó@ëÛ{ÔNkš­efÔ é»ë+I'žª•÷×RJ’”‹v»/
+7 …¡+£Jrkfƒ©:BsE3p¦áÚ©ýÑ’È`C3# @1a¬± V¤ŽëÓÓÌJñ::1ðŸvó QújšÓú¼9™º‡Ò¯¦©,?ô¿LäÁý
+s,v¬e/z
+ªYßO45>wþeŒ›r
+¥}Àî CÛô™ÁðÞXò¬BÜiÀN*ÑGò'˜"©’jŸ%ðª³p9YX
+ÉÀKR^U49¸YPüÓ®8zÖðbüâÇÓ«X¢jaf-“²\=@.
+{ïißt·º
+?nd8:b%Ïc0ÅÅ7^ð’Hƒ8ï.ʾu’k£PsÈ ¿0=ë…· úÎSS" *ˆt3õ%§÷®bS“<ånŒ¼D.e×ܦy‹Jôgþ•îBe{eN/gëæÖè2ƒˆËõ%rñ%žÖZ"µ ñå´€Jó‚9V‹ZÃbBÃÃEJñ½q˜íD3”2Ó5LQeŸq/scŒ5 ˶Aq´{ìM0ã¦ö4ùTq‰¡ £÷3¥媋ßì>Ý3¬²¨cí,À¢K!a‘}¥Z f¿¡ˆíó s‘ïØÜbl híÚµÀ´©iî±h@:Ú¦4.
+1<qj˜ÚpDf"Eá¨ËsjõHî{±“D4q…ƒ~ï=P8mØ®D®ÁÅ@æ2ÐlÅš_òûšgou+UÆd SkOÄ=:%“ß¿¾BÌti8a5òòä„&èk¥‹ÌšD?œ¿™†šéž·ß†¯yüòŸœÇñq_´‹ÔHµãòXeoéI ð5½®eNh¬8û%¡v²(ÝBøÇŽ…ݪßPNÃéLÒyÓÝCÙ¢oײÁ¯f4„‡›c´—‹Û‘ÅãÞ¶«7ƒ®íâ½!/(µZ
+ªnÅÄ&O{²Ä¡vÒ•PHö×Æ„æé¸YŽ&O¹÷³±850|skП‹¼Ö¦Ú”àã¡öú€Ûáü–JÉx©??Æ`5açH~ÍòŒØåE·õIOÁ”^¹•á@ ˜µ{ÃÑ1B0´¦µjFØ6”§o‡©jUºŠØáf'En ~¡e<ã›u õöe^ïÙö¤DŒ·íâe ±‡å¤Á©š7Ÿzžæ 8\os4õ8‡¼ØÉ­Ô‘Vùã}ØGHÎáå…¸:XŒÝø ã ¸ ±c³£T!xìïJ Î?œFFëRC u`³«¨ dQ@Wš}eÙþã=«Dd r²|HãýÊÐÆÖ#§g€‚–íÙL‰Í@+¸´T¨RÄØÄVÒnD¿ ÃÎåe1Š¢•#?­dIO#¢8ኅŒ˜ ×CŠÚU•g’¼aõý¦øæáÑ™È÷Àm¿Ÿ &ܶNWõ‘k/»ÏŽTFî”e$z’Œxv»zW^*àêAl¨!T„Óo&%O¨Š^ 6Ü:£@Å5†¥{¾Ï¥UÓ/¯¥
+.1J¼1KE^ü­Ñ'À½úpé„>hJ’Q.íX_„}èŠa§S‘mŸ®šOtÇ\á„;ÔK0‘Kœ.$C>£Fˆ–e7àJØ!‹:´Y+©ïWգ㗇íuÀÀÇúÃC熋ÍõË0ká’“vØL»ýb‰¼`‘¨·Ÿ:_±˜"ÌÃa46ø: œ„hS¸èp·D±©OÅGkâl$o¿Yªï…Ôy>à«lM:ãTÞÀ_/ËÙ}lŠ³”¦Îâõp²“Ñ—:µ“æ0URAŠPWG ª d˜¿D}¤Ü^qm~·|Û@%¢Ä¾ìÔ™ƒoj–•e`ÞÕ`ÓKÚê;æý¦.üÆd×’ìù¬v›ÊlRú­r˜›Qû·ÿ˜Lì¶ÞH³ .þÂ×Ñ×@^2"šè1Ñyˆ[ît×ò!ö%<b£f¹Âé´ö…RC‰i7m„RWíß9°ÔãVg¤ß=eܯ!ó,Ü¿WJJs/OM@šð,MP½I
+-ÊB×¼ôÛ%@ŒÓ—Ñ€e®oäS®õ Âÿ­«Z£t¯ÖWªÚ205šðW|Ã^ì ˆM¦¬Æ¡è™Lωå$ÔTÔtLXzŸ¦éγˆ[Yµ÷_†Bý€vŽ¾[~³…»Æ&\›šÀ›@ìú–ü(ðalÁÏrÑX‹å!€E•1 sRTrˆ“Íö‚Ôd“«|f»õë~#<b.¥ç“‹tø‹œ€w¬;@ß*9DqÓ¬sÃçÀºµïä»DDQ`´(£Þº6:ð;¦*NPT ‰@R60À ±«×=öâ½èÂÏôÅ*l¡â¡1è6/GFßPGt0y·EÑà{öF¹–KŠEÄf=Oi 2ÏΕª™ã>ó*gýòÈ›’ïµ(q9·äí(ßï1_ø’a4±`r^(•íÚb+d$¶ƒn6š7©óƒ4ûãàû0N¥,÷ñ¤|%~š©F`s%Þ@½˜K8_ ¡Ü±ÓÊL Ý3%7[
+4]^–åé‹ûäÆatTÙ\óÜ|¦+l†ßH…½p9kÚrÁ²@G,}muZ aª^ŠS\¨~!C·ƒèÚéàRj×·í˜,`3›ò‡ŽoLŸ(Š÷TXO k)ÂåBÁ ¿@M{
+endstream
+endobj
+3230 0 obj
+<<
+/Type /FontDescriptor
+/FontName /CZJAVH+URWChanceryL-MediItal
+/Flags 4
+/FontBBox [-133 -290 1078 913]
+/Ascent 712
+/CapHeight 712
+/Descent -307
+/ItalicAngle -14
+/StemV 78
+/XHeight 438
+/CharSet (/A/B/D/F/G/H/I/L/M/O/R/S/T/a/b/c/colon/comma/d/e/f/fi/g/h/i/k/l/m/n/o/p/period/question/quotedblleft/quotedblright/r/s/semicolon/t/u/v/w/y)
+/FontFile 3229 0 R
+>>
+endobj
+3128 0 obj
+<<
+/Type /Encoding
+/Differences [2/fi 44/comma 46/period 58/colon/semicolon 63/question 65/A/B 68/D 70/F/G/H/I 76/L/M 79/O 82/R/S/T 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u/v/w 121/y 147/quotedblleft/quotedblright]
+>>
+endobj
+3109 0 obj
+<<
+/Type /Encoding
+/Differences [16/quotedblleft/quotedblright 21/endash/emdash 27/ff/fi/fl/ffi/ffl/uni2423/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 159/section 230/ae 247/oe]
+>>
+endobj
+3111 0 obj
+<<
+/Type /Encoding
+/Differences [34/epsilon 58/period 88/X/Y 91/flat 93/sharp 98/b/c 105/i 110/n 119/w]
+>>
+endobj
+3123 0 obj
+<<
+/Type /Encoding
+/Differences [0/minus 2/multiply/asteriskmath 13/circlecopyrt/openbullet/bullet 33/arrowright 104/angbracketleft/angbracketright/bar 121/dagger]
+>>
+endobj
+3113 0 obj
+<<
+/Type /Encoding
+/Differences [35/numbersign 43/plus 48/zero/one/two 56/eight/nine 61/equal]
+>>
+endobj
+1966 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /DQPOIA+CMSS10
+/FontDescriptor 3156 0 R
+/FirstChar 58
+/LastChar 58
+/Widths 3117 0 R
+>>
+endobj
+1963 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /QSKIJG+CMSY10
+/FontDescriptor 3158 0 R
+/FirstChar 2
+/LastChar 15
+/Widths 3118 0 R
+>>
+endobj
+1996 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /HDBZDK+CMSY7
+/FontDescriptor 3160 0 R
+/FirstChar 2
+/LastChar 2
+/Widths 3116 0 R
+>>
+endobj
+1758 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /KSMHBV+LMRoman10-Bold
+/FontDescriptor 3162 0 R
+/FirstChar 28
+/LastChar 122
+/Widths 3125 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1710 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /VPLJCQ+LMRoman12-Bold
+/FontDescriptor 3164 0 R
+/FirstChar 28
+/LastChar 122
+/Widths 3145 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1738 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /LKWVSN+LMRoman5-Bold
+/FontDescriptor 3166 0 R
+/FirstChar 46
+/LastChar 121
+/Widths 3131 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1706 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /HPMHXS+LMRoman9-Bold
+/FontDescriptor 3168 0 R
+/FirstChar 65
+/LastChar 121
+/Widths 3149 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1727 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /REALNE+LMRomanCaps10-Regular
+/FontDescriptor 3170 0 R
+/FirstChar 16
+/LastChar 121
+/Widths 3137 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1711 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /JLCQTF+LMRoman10-Regular
+/FontDescriptor 3178 0 R
+/FirstChar 16
+/LastChar 247
+/Widths 3144 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1705 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /MWYZYS+LMRoman12-Regular
+/FontDescriptor 3180 0 R
+/FirstChar 44
+/LastChar 121
+/Widths 3150 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1701 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /BTIPXM+LMRoman17-Regular
+/FontDescriptor 3182 0 R
+/FirstChar 84
+/LastChar 112
+/Widths 3154 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1739 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /KZCXKX+LMRoman5-Regular
+/FontDescriptor 3184 0 R
+/FirstChar 46
+/LastChar 119
+/Widths 3130 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1709 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /ZQWLWE+LMRoman6-Regular
+/FontDescriptor 3186 0 R
+/FirstChar 65
+/LastChar 65
+/Widths 3146 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1713 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /UVTZRK+LMRoman7-Regular
+/FontDescriptor 3188 0 R
+/FirstChar 48
+/LastChar 65
+/Widths 3142 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1715 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /LYHGGH+LMRoman8-Regular
+/FontDescriptor 3190 0 R
+/FirstChar 44
+/LastChar 121
+/Widths 3140 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1707 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /PRLDDU+LMRoman9-Regular
+/FontDescriptor 3192 0 R
+/FirstChar 16
+/LastChar 122
+/Widths 3148 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1756 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /MYHRCL+LMRoman10-Italic
+/FontDescriptor 3194 0 R
+/FirstChar 27
+/LastChar 121
+/Widths 3126 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1954 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /PEMYSJ+LMRomanSlant10-Regular
+/FontDescriptor 3196 0 R
+/FirstChar 33
+/LastChar 117
+/Widths 3119 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1737 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /NKONTJ+LMRomanSlant8-Regular
+/FontDescriptor 3198 0 R
+/FirstChar 49
+/LastChar 118
+/Widths 3132 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1712 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /ESHKLK+LMSans10-Regular
+/FontDescriptor 3200 0 R
+/FirstChar 52
+/LastChar 115
+/Widths 3143 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1702 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /ZXGXBT+LMSans17-Regular
+/FontDescriptor 3202 0 R
+/FirstChar 103
+/LastChar 115
+/Widths 3153 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1716 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /YLRECP+LMSans8-Regular
+/FontDescriptor 3204 0 R
+/FirstChar 49
+/LastChar 115
+/Widths 3139 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1708 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /VIBPGF+LMSans9-Regular
+/FontDescriptor 3206 0 R
+/FirstChar 21
+/LastChar 119
+/Widths 3147 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1735 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /FVVRLF+LMSans10-Bold
+/FontDescriptor 3208 0 R
+/FirstChar 49
+/LastChar 115
+/Widths 3134 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1903 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /TNUVHF+LMSans10-Oblique
+/FontDescriptor 3210 0 R
+/FirstChar 44
+/LastChar 117
+/Widths 3121 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1736 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /HWUVPY+LMSans12-Oblique
+/FontDescriptor 3212 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 3133 0 R
+/Encoding 3109 0 R
+>>
+endobj
+2465 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /MERYHJ+LMSans9-Oblique
+/FontDescriptor 3214 0 R
+/FirstChar 40
+/LastChar 47
+/Widths 3110 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1728 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /WVLANK+LMMono10-Regular
+/FontDescriptor 3224 0 R
+/FirstChar 32
+/LastChar 126
+/Widths 3136 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1729 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /NZLMBC+LMMono9-Regular
+/FontDescriptor 3226 0 R
+/FirstChar 32
+/LastChar 126
+/Widths 3135 0 R
+/Encoding 3109 0 R
+>>
+endobj
+1860 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /ZXDMYM+LMMathItalic10-Regular
+/FontDescriptor 3172 0 R
+/FirstChar 34
+/LastChar 119
+/Widths 3122 0 R
+/Encoding 3111 0 R
+>>
+endobj
+2332 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /GSXSSH+LMMathItalic12-Regular
+/FontDescriptor 3174 0 R
+/FirstChar 58
+/LastChar 58
+/Widths 3112 0 R
+/Encoding 3111 0 R
+>>
+endobj
+2029 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /AIFYNL+LMMathItalic9-Regular
+/FontDescriptor 3176 0 R
+/FirstChar 91
+/LastChar 91
+/Widths 3115 0 R
+/Encoding 3111 0 R
+>>
+endobj
+1704 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /HRLEVR+LMMathSymbols10-Regular
+/FontDescriptor 3216 0 R
+/FirstChar 0
+/LastChar 121
+/Widths 3151 0 R
+/Encoding 3123 0 R
+>>
+endobj
+1826 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /XPGTXW+LMMathSymbols5-Regular
+/FontDescriptor 3218 0 R
+/FirstChar 13
+/LastChar 13
+/Widths 3124 0 R
+/Encoding 3123 0 R
+>>
+endobj
+1714 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /DTFCKV+LMMathSymbols6-Regular
+/FontDescriptor 3220 0 R
+/FirstChar 3
+/LastChar 3
+/Widths 3141 0 R
+/Encoding 3123 0 R
+>>
+endobj
+1717 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /AYTHZL+LMMathSymbols8-Regular
+/FontDescriptor 3222 0 R
+/FirstChar 13
+/LastChar 13
+/Widths 3138 0 R
+/Encoding 3123 0 R
+>>
+endobj
+1703 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /FGOBTD+TeXMUSIX13-Regular
+/FontDescriptor 3228 0 R
+/FirstChar 9
+/LastChar 9
+/Widths 3152 0 R
+>>
+endobj
+1740 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /CZJAVH+URWChanceryL-MediItal
+/FontDescriptor 3230 0 R
+/FirstChar 2
+/LastChar 148
+/Widths 3129 0 R
+/Encoding 3128 0 R
+>>
+endobj
+2210 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /JLCQTF+LMRoman10-Regular
+/FontDescriptor 3178 0 R
+/FirstChar 35
+/LastChar 61
+/Widths 3114 0 R
+/Encoding 3113 0 R
+>>
+endobj
+1904 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /UVTZRK+LMRoman7-Regular
+/FontDescriptor 3188 0 R
+/FirstChar 35
+/LastChar 50
+/Widths 3120 0 R
+/Encoding 3113 0 R
+>>
+endobj
+1741 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /LYHGGH+LMRoman8-Regular
+/FontDescriptor 3190 0 R
+/FirstChar 35
+/LastChar 35
+/Widths 3127 0 R
+/Encoding 3113 0 R
+>>
+endobj
+1718 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [1694 0 R 1724 0 R 1731 0 R 1753 0 R 1791 0 R 1820 0 R]
+>>
+endobj
+1849 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [1839 0 R 1857 0 R 1872 0 R 1878 0 R 1897 0 R 1917 0 R]
+>>
+endobj
+1939 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [1931 0 R 1947 0 R 1958 0 R 1980 0 R 1992 0 R 2004 0 R]
+>>
+endobj
+2033 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [2023 0 R 2047 0 R 2071 0 R 2085 0 R 2096 0 R 2105 0 R]
+>>
+endobj
+2137 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [2129 0 R 2151 0 R 2163 0 R 2181 0 R 2201 0 R 2236 0 R]
+>>
+endobj
+2276 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3231 0 R
+/Kids [2264 0 R 2300 0 R 2329 0 R 2343 0 R 2356 0 R 2376 0 R]
+>>
+endobj
+2395 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2390 0 R 2397 0 R 2423 0 R 2434 0 R 2462 0 R 2475 0 R]
+>>
+endobj
+2488 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2481 0 R 2490 0 R 2499 0 R 2508 0 R 2516 0 R 2529 0 R]
+>>
+endobj
+2536 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2533 0 R 2538 0 R 2542 0 R 2546 0 R 2550 0 R 2554 0 R]
+>>
+endobj
+2562 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2559 0 R 2564 0 R 2568 0 R 2572 0 R 2577 0 R 2581 0 R]
+>>
+endobj
+2588 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2585 0 R 2590 0 R 2598 0 R 2602 0 R 2606 0 R 2610 0 R]
+>>
+endobj
+2617 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3232 0 R
+/Kids [2614 0 R 2619 0 R 2623 0 R 2627 0 R 2631 0 R 2635 0 R]
+>>
+endobj
+2642 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2639 0 R 2644 0 R 2648 0 R 2652 0 R 2656 0 R 2660 0 R]
+>>
+endobj
+2667 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2664 0 R 2669 0 R 2673 0 R 2677 0 R 2681 0 R 2685 0 R]
+>>
+endobj
+2692 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2689 0 R 2694 0 R 2698 0 R 2702 0 R 2706 0 R 2710 0 R]
+>>
+endobj
+2717 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2714 0 R 2719 0 R 2723 0 R 2727 0 R 2731 0 R 2735 0 R]
+>>
+endobj
+2742 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2739 0 R 2744 0 R 2748 0 R 2752 0 R 2756 0 R 2760 0 R]
+>>
+endobj
+2767 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3233 0 R
+/Kids [2764 0 R 2769 0 R 2773 0 R 2777 0 R 2781 0 R 2785 0 R]
+>>
+endobj
+2792 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2789 0 R 2794 0 R 2798 0 R 2802 0 R 2806 0 R 2810 0 R]
+>>
+endobj
+2817 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2814 0 R 2819 0 R 2823 0 R 2827 0 R 2831 0 R 2835 0 R]
+>>
+endobj
+2842 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2839 0 R 2844 0 R 2848 0 R 2852 0 R 2856 0 R 2860 0 R]
+>>
+endobj
+2867 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2864 0 R 2869 0 R 2874 0 R 2878 0 R 2882 0 R 2886 0 R]
+>>
+endobj
+2893 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2890 0 R 2895 0 R 2899 0 R 2903 0 R 2907 0 R 2911 0 R]
+>>
+endobj
+2918 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3234 0 R
+/Kids [2915 0 R 2920 0 R 2924 0 R 2928 0 R 2932 0 R 2936 0 R]
+>>
+endobj
+2947 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [2940 0 R 2952 0 R 2960 0 R 2964 0 R 2968 0 R 2972 0 R]
+>>
+endobj
+2979 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [2976 0 R 2981 0 R 2985 0 R 2989 0 R 2993 0 R 2997 0 R]
+>>
+endobj
+3004 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [3001 0 R 3006 0 R 3010 0 R 3014 0 R 3018 0 R 3022 0 R]
+>>
+endobj
+3029 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [3026 0 R 3031 0 R 3035 0 R 3039 0 R 3043 0 R 3047 0 R]
+>>
+endobj
+3054 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [3051 0 R 3056 0 R 3060 0 R 3064 0 R 3068 0 R 3072 0 R]
+>>
+endobj
+3079 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 3235 0 R
+/Kids [3076 0 R 3081 0 R 3085 0 R 3089 0 R 3093 0 R 3097 0 R]
+>>
+endobj
+3104 0 obj
+<<
+/Type /Pages
+/Count 2
+/Parent 3236 0 R
+/Kids [3101 0 R 3106 0 R]
+>>
+endobj
+3231 0 obj
+<<
+/Type /Pages
+/Count 36
+/Parent 3237 0 R
+/Kids [1718 0 R 1849 0 R 1939 0 R 2033 0 R 2137 0 R 2276 0 R]
+>>
+endobj
+3232 0 obj
+<<
+/Type /Pages
+/Count 36
+/Parent 3237 0 R
+/Kids [2395 0 R 2488 0 R 2536 0 R 2562 0 R 2588 0 R 2617 0 R]
+>>
+endobj
+3233 0 obj
+<<
+/Type /Pages
+/Count 36
+/Parent 3237 0 R
+/Kids [2642 0 R 2667 0 R 2692 0 R 2717 0 R 2742 0 R 2767 0 R]
+>>
+endobj
+3234 0 obj
+<<
+/Type /Pages
+/Count 36
+/Parent 3237 0 R
+/Kids [2792 0 R 2817 0 R 2842 0 R 2867 0 R 2893 0 R 2918 0 R]
+>>
+endobj
+3235 0 obj
+<<
+/Type /Pages
+/Count 36
+/Parent 3237 0 R
+/Kids [2947 0 R 2979 0 R 3004 0 R 3029 0 R 3054 0 R 3079 0 R]
+>>
+endobj
+3236 0 obj
+<<
+/Type /Pages
+/Count 2
+/Parent 3237 0 R
+/Kids [3104 0 R]
+>>
+endobj
+3237 0 obj
+<<
+/Type /Pages
+/Count 182
+/Kids [3231 0 R 3232 0 R 3233 0 R 3234 0 R 3235 0 R 3236 0 R]
+>>
+endobj
+3238 0 obj
+<<
+/Type /Outlines
+/First 3 0 R
+/Last 947 0 R
+/Count 15
+>>
+endobj
+1691 0 obj
+<<
+/Title 1692 0 R
+/A 1689 0 R
+/Parent 947 0 R
+/Prev 1687 0 R
+>>
+endobj
+1687 0 obj
+<<
+/Title 1688 0 R
+/A 1685 0 R
+/Parent 947 0 R
+/Prev 1683 0 R
+/Next 1691 0 R
+>>
+endobj
+1683 0 obj
+<<
+/Title 1684 0 R
+/A 1681 0 R
+/Parent 947 0 R
+/Prev 1679 0 R
+/Next 1687 0 R
+>>
+endobj
+1679 0 obj
+<<
+/Title 1680 0 R
+/A 1677 0 R
+/Parent 947 0 R
+/Prev 1623 0 R
+/Next 1683 0 R
+>>
+endobj
+1675 0 obj
+<<
+/Title 1676 0 R
+/A 1673 0 R
+/Parent 1623 0 R
+/Prev 1671 0 R
+>>
+endobj
+1671 0 obj
+<<
+/Title 1672 0 R
+/A 1669 0 R
+/Parent 1623 0 R
+/Prev 1667 0 R
+/Next 1675 0 R
+>>
+endobj
+1667 0 obj
+<<
+/Title 1668 0 R
+/A 1665 0 R
+/Parent 1623 0 R
+/Prev 1663 0 R
+/Next 1671 0 R
+>>
+endobj
+1663 0 obj
+<<
+/Title 1664 0 R
+/A 1661 0 R
+/Parent 1623 0 R
+/Prev 1659 0 R
+/Next 1667 0 R
+>>
+endobj
+1659 0 obj
+<<
+/Title 1660 0 R
+/A 1657 0 R
+/Parent 1623 0 R
+/Prev 1655 0 R
+/Next 1663 0 R
+>>
+endobj
+1655 0 obj
+<<
+/Title 1656 0 R
+/A 1653 0 R
+/Parent 1623 0 R
+/Prev 1651 0 R
+/Next 1659 0 R
+>>
+endobj
+1651 0 obj
+<<
+/Title 1652 0 R
+/A 1649 0 R
+/Parent 1623 0 R
+/Prev 1647 0 R
+/Next 1655 0 R
+>>
+endobj
+1647 0 obj
+<<
+/Title 1648 0 R
+/A 1645 0 R
+/Parent 1623 0 R
+/Prev 1643 0 R
+/Next 1651 0 R
+>>
+endobj
+1643 0 obj
+<<
+/Title 1644 0 R
+/A 1641 0 R
+/Parent 1623 0 R
+/Prev 1639 0 R
+/Next 1647 0 R
+>>
+endobj
+1639 0 obj
+<<
+/Title 1640 0 R
+/A 1637 0 R
+/Parent 1623 0 R
+/Prev 1635 0 R
+/Next 1643 0 R
+>>
+endobj
+1635 0 obj
+<<
+/Title 1636 0 R
+/A 1633 0 R
+/Parent 1623 0 R
+/Prev 1631 0 R
+/Next 1639 0 R
+>>
+endobj
+1631 0 obj
+<<
+/Title 1632 0 R
+/A 1629 0 R
+/Parent 1623 0 R
+/Prev 1627 0 R
+/Next 1635 0 R
+>>
+endobj
+1627 0 obj
+<<
+/Title 1628 0 R
+/A 1625 0 R
+/Parent 1623 0 R
+/Next 1631 0 R
+>>
+endobj
+1623 0 obj
+<<
+/Title 1624 0 R
+/A 1621 0 R
+/Parent 947 0 R
+/Prev 1607 0 R
+/Next 1679 0 R
+/First 1627 0 R
+/Last 1675 0 R
+/Count -13
+>>
+endobj
+1619 0 obj
+<<
+/Title 1620 0 R
+/A 1617 0 R
+/Parent 1607 0 R
+/Prev 1615 0 R
+>>
+endobj
+1615 0 obj
+<<
+/Title 1616 0 R
+/A 1613 0 R
+/Parent 1607 0 R
+/Prev 1611 0 R
+/Next 1619 0 R
+>>
+endobj
+1611 0 obj
+<<
+/Title 1612 0 R
+/A 1609 0 R
+/Parent 1607 0 R
+/Next 1615 0 R
+>>
+endobj
+1607 0 obj
+<<
+/Title 1608 0 R
+/A 1605 0 R
+/Parent 947 0 R
+/Prev 1595 0 R
+/Next 1623 0 R
+/First 1611 0 R
+/Last 1619 0 R
+/Count -3
+>>
+endobj
+1603 0 obj
+<<
+/Title 1604 0 R
+/A 1601 0 R
+/Parent 1595 0 R
+/Prev 1599 0 R
+>>
+endobj
+1599 0 obj
+<<
+/Title 1600 0 R
+/A 1597 0 R
+/Parent 1595 0 R
+/Next 1603 0 R
+>>
+endobj
+1595 0 obj
+<<
+/Title 1596 0 R
+/A 1593 0 R
+/Parent 947 0 R
+/Prev 1579 0 R
+/Next 1607 0 R
+/First 1599 0 R
+/Last 1603 0 R
+/Count -2
+>>
+endobj
+1591 0 obj
+<<
+/Title 1592 0 R
+/A 1589 0 R
+/Parent 1579 0 R
+/Prev 1587 0 R
+>>
+endobj
+1587 0 obj
+<<
+/Title 1588 0 R
+/A 1585 0 R
+/Parent 1579 0 R
+/Prev 1583 0 R
+/Next 1591 0 R
+>>
+endobj
+1583 0 obj
+<<
+/Title 1584 0 R
+/A 1581 0 R
+/Parent 1579 0 R
+/Next 1587 0 R
+>>
+endobj
+1579 0 obj
+<<
+/Title 1580 0 R
+/A 1577 0 R
+/Parent 947 0 R
+/Prev 1547 0 R
+/Next 1595 0 R
+/First 1583 0 R
+/Last 1591 0 R
+/Count -3
+>>
+endobj
+1575 0 obj
+<<
+/Title 1576 0 R
+/A 1573 0 R
+/Parent 1547 0 R
+/Prev 1571 0 R
+>>
+endobj
+1571 0 obj
+<<
+/Title 1572 0 R
+/A 1569 0 R
+/Parent 1547 0 R
+/Prev 1567 0 R
+/Next 1575 0 R
+>>
+endobj
+1567 0 obj
+<<
+/Title 1568 0 R
+/A 1565 0 R
+/Parent 1547 0 R
+/Prev 1563 0 R
+/Next 1571 0 R
+>>
+endobj
+1563 0 obj
+<<
+/Title 1564 0 R
+/A 1561 0 R
+/Parent 1547 0 R
+/Prev 1559 0 R
+/Next 1567 0 R
+>>
+endobj
+1559 0 obj
+<<
+/Title 1560 0 R
+/A 1557 0 R
+/Parent 1547 0 R
+/Prev 1555 0 R
+/Next 1563 0 R
+>>
+endobj
+1555 0 obj
+<<
+/Title 1556 0 R
+/A 1553 0 R
+/Parent 1547 0 R
+/Prev 1551 0 R
+/Next 1559 0 R
+>>
+endobj
+1551 0 obj
+<<
+/Title 1552 0 R
+/A 1549 0 R
+/Parent 1547 0 R
+/Next 1555 0 R
+>>
+endobj
+1547 0 obj
+<<
+/Title 1548 0 R
+/A 1545 0 R
+/Parent 947 0 R
+/Prev 1527 0 R
+/Next 1579 0 R
+/First 1551 0 R
+/Last 1575 0 R
+/Count -7
+>>
+endobj
+1543 0 obj
+<<
+/Title 1544 0 R
+/A 1541 0 R
+/Parent 1527 0 R
+/Prev 1539 0 R
+>>
+endobj
+1539 0 obj
+<<
+/Title 1540 0 R
+/A 1537 0 R
+/Parent 1527 0 R
+/Prev 1535 0 R
+/Next 1543 0 R
+>>
+endobj
+1535 0 obj
+<<
+/Title 1536 0 R
+/A 1533 0 R
+/Parent 1527 0 R
+/Prev 1531 0 R
+/Next 1539 0 R
+>>
+endobj
+1531 0 obj
+<<
+/Title 1532 0 R
+/A 1529 0 R
+/Parent 1527 0 R
+/Next 1535 0 R
+>>
+endobj
+1527 0 obj
+<<
+/Title 1528 0 R
+/A 1525 0 R
+/Parent 947 0 R
+/Prev 1503 0 R
+/Next 1547 0 R
+/First 1531 0 R
+/Last 1543 0 R
+/Count -4
+>>
+endobj
+1523 0 obj
+<<
+/Title 1524 0 R
+/A 1521 0 R
+/Parent 1503 0 R
+/Prev 1519 0 R
+>>
+endobj
+1519 0 obj
+<<
+/Title 1520 0 R
+/A 1517 0 R
+/Parent 1503 0 R
+/Prev 1515 0 R
+/Next 1523 0 R
+>>
+endobj
+1515 0 obj
+<<
+/Title 1516 0 R
+/A 1513 0 R
+/Parent 1503 0 R
+/Prev 1511 0 R
+/Next 1519 0 R
+>>
+endobj
+1511 0 obj
+<<
+/Title 1512 0 R
+/A 1509 0 R
+/Parent 1503 0 R
+/Prev 1507 0 R
+/Next 1515 0 R
+>>
+endobj
+1507 0 obj
+<<
+/Title 1508 0 R
+/A 1505 0 R
+/Parent 1503 0 R
+/Next 1511 0 R
+>>
+endobj
+1503 0 obj
+<<
+/Title 1504 0 R
+/A 1501 0 R
+/Parent 947 0 R
+/Prev 1451 0 R
+/Next 1527 0 R
+/First 1507 0 R
+/Last 1523 0 R
+/Count -5
+>>
+endobj
+1499 0 obj
+<<
+/Title 1500 0 R
+/A 1497 0 R
+/Parent 1451 0 R
+/Prev 1495 0 R
+>>
+endobj
+1495 0 obj
+<<
+/Title 1496 0 R
+/A 1493 0 R
+/Parent 1451 0 R
+/Prev 1491 0 R
+/Next 1499 0 R
+>>
+endobj
+1491 0 obj
+<<
+/Title 1492 0 R
+/A 1489 0 R
+/Parent 1451 0 R
+/Prev 1487 0 R
+/Next 1495 0 R
+>>
+endobj
+1487 0 obj
+<<
+/Title 1488 0 R
+/A 1485 0 R
+/Parent 1451 0 R
+/Prev 1483 0 R
+/Next 1491 0 R
+>>
+endobj
+1483 0 obj
+<<
+/Title 1484 0 R
+/A 1481 0 R
+/Parent 1451 0 R
+/Prev 1479 0 R
+/Next 1487 0 R
+>>
+endobj
+1479 0 obj
+<<
+/Title 1480 0 R
+/A 1477 0 R
+/Parent 1451 0 R
+/Prev 1475 0 R
+/Next 1483 0 R
+>>
+endobj
+1475 0 obj
+<<
+/Title 1476 0 R
+/A 1473 0 R
+/Parent 1451 0 R
+/Prev 1471 0 R
+/Next 1479 0 R
+>>
+endobj
+1471 0 obj
+<<
+/Title 1472 0 R
+/A 1469 0 R
+/Parent 1451 0 R
+/Prev 1467 0 R
+/Next 1475 0 R
+>>
+endobj
+1467 0 obj
+<<
+/Title 1468 0 R
+/A 1465 0 R
+/Parent 1451 0 R
+/Prev 1463 0 R
+/Next 1471 0 R
+>>
+endobj
+1463 0 obj
+<<
+/Title 1464 0 R
+/A 1461 0 R
+/Parent 1451 0 R
+/Prev 1459 0 R
+/Next 1467 0 R
+>>
+endobj
+1459 0 obj
+<<
+/Title 1460 0 R
+/A 1457 0 R
+/Parent 1451 0 R
+/Prev 1455 0 R
+/Next 1463 0 R
+>>
+endobj
+1455 0 obj
+<<
+/Title 1456 0 R
+/A 1453 0 R
+/Parent 1451 0 R
+/Next 1459 0 R
+>>
+endobj
+1451 0 obj
+<<
+/Title 1452 0 R
+/A 1449 0 R
+/Parent 947 0 R
+/Prev 1407 0 R
+/Next 1503 0 R
+/First 1455 0 R
+/Last 1499 0 R
+/Count -12
+>>
+endobj
+1447 0 obj
+<<
+/Title 1448 0 R
+/A 1445 0 R
+/Parent 1407 0 R
+/Prev 1443 0 R
+>>
+endobj
+1443 0 obj
+<<
+/Title 1444 0 R
+/A 1441 0 R
+/Parent 1407 0 R
+/Prev 1439 0 R
+/Next 1447 0 R
+>>
+endobj
+1439 0 obj
+<<
+/Title 1440 0 R
+/A 1437 0 R
+/Parent 1407 0 R
+/Prev 1435 0 R
+/Next 1443 0 R
+>>
+endobj
+1435 0 obj
+<<
+/Title 1436 0 R
+/A 1433 0 R
+/Parent 1407 0 R
+/Prev 1431 0 R
+/Next 1439 0 R
+>>
+endobj
+1431 0 obj
+<<
+/Title 1432 0 R
+/A 1429 0 R
+/Parent 1407 0 R
+/Prev 1427 0 R
+/Next 1435 0 R
+>>
+endobj
+1427 0 obj
+<<
+/Title 1428 0 R
+/A 1425 0 R
+/Parent 1407 0 R
+/Prev 1423 0 R
+/Next 1431 0 R
+>>
+endobj
+1423 0 obj
+<<
+/Title 1424 0 R
+/A 1421 0 R
+/Parent 1407 0 R
+/Prev 1419 0 R
+/Next 1427 0 R
+>>
+endobj
+1419 0 obj
+<<
+/Title 1420 0 R
+/A 1417 0 R
+/Parent 1407 0 R
+/Prev 1415 0 R
+/Next 1423 0 R
+>>
+endobj
+1415 0 obj
+<<
+/Title 1416 0 R
+/A 1413 0 R
+/Parent 1407 0 R
+/Prev 1411 0 R
+/Next 1419 0 R
+>>
+endobj
+1411 0 obj
+<<
+/Title 1412 0 R
+/A 1409 0 R
+/Parent 1407 0 R
+/Next 1415 0 R
+>>
+endobj
+1407 0 obj
+<<
+/Title 1408 0 R
+/A 1405 0 R
+/Parent 947 0 R
+/Prev 1375 0 R
+/Next 1451 0 R
+/First 1411 0 R
+/Last 1447 0 R
+/Count -10
+>>
+endobj
+1403 0 obj
+<<
+/Title 1404 0 R
+/A 1401 0 R
+/Parent 1375 0 R
+/Prev 1399 0 R
+>>
+endobj
+1399 0 obj
+<<
+/Title 1400 0 R
+/A 1397 0 R
+/Parent 1375 0 R
+/Prev 1395 0 R
+/Next 1403 0 R
+>>
+endobj
+1395 0 obj
+<<
+/Title 1396 0 R
+/A 1393 0 R
+/Parent 1375 0 R
+/Prev 1391 0 R
+/Next 1399 0 R
+>>
+endobj
+1391 0 obj
+<<
+/Title 1392 0 R
+/A 1389 0 R
+/Parent 1375 0 R
+/Prev 1387 0 R
+/Next 1395 0 R
+>>
+endobj
+1387 0 obj
+<<
+/Title 1388 0 R
+/A 1385 0 R
+/Parent 1375 0 R
+/Prev 1383 0 R
+/Next 1391 0 R
+>>
+endobj
+1383 0 obj
+<<
+/Title 1384 0 R
+/A 1381 0 R
+/Parent 1375 0 R
+/Prev 1379 0 R
+/Next 1387 0 R
+>>
+endobj
+1379 0 obj
+<<
+/Title 1380 0 R
+/A 1377 0 R
+/Parent 1375 0 R
+/Next 1383 0 R
+>>
+endobj
+1375 0 obj
+<<
+/Title 1376 0 R
+/A 1373 0 R
+/Parent 947 0 R
+/Prev 1315 0 R
+/Next 1407 0 R
+/First 1379 0 R
+/Last 1403 0 R
+/Count -7
+>>
+endobj
+1371 0 obj
+<<
+/Title 1372 0 R
+/A 1369 0 R
+/Parent 1315 0 R
+/Prev 1367 0 R
+>>
+endobj
+1367 0 obj
+<<
+/Title 1368 0 R
+/A 1365 0 R
+/Parent 1315 0 R
+/Prev 1363 0 R
+/Next 1371 0 R
+>>
+endobj
+1363 0 obj
+<<
+/Title 1364 0 R
+/A 1361 0 R
+/Parent 1315 0 R
+/Prev 1359 0 R
+/Next 1367 0 R
+>>
+endobj
+1359 0 obj
+<<
+/Title 1360 0 R
+/A 1357 0 R
+/Parent 1315 0 R
+/Prev 1355 0 R
+/Next 1363 0 R
+>>
+endobj
+1355 0 obj
+<<
+/Title 1356 0 R
+/A 1353 0 R
+/Parent 1315 0 R
+/Prev 1351 0 R
+/Next 1359 0 R
+>>
+endobj
+1351 0 obj
+<<
+/Title 1352 0 R
+/A 1349 0 R
+/Parent 1315 0 R
+/Prev 1347 0 R
+/Next 1355 0 R
+>>
+endobj
+1347 0 obj
+<<
+/Title 1348 0 R
+/A 1345 0 R
+/Parent 1315 0 R
+/Prev 1343 0 R
+/Next 1351 0 R
+>>
+endobj
+1343 0 obj
+<<
+/Title 1344 0 R
+/A 1341 0 R
+/Parent 1315 0 R
+/Prev 1339 0 R
+/Next 1347 0 R
+>>
+endobj
+1339 0 obj
+<<
+/Title 1340 0 R
+/A 1337 0 R
+/Parent 1315 0 R
+/Prev 1335 0 R
+/Next 1343 0 R
+>>
+endobj
+1335 0 obj
+<<
+/Title 1336 0 R
+/A 1333 0 R
+/Parent 1315 0 R
+/Prev 1331 0 R
+/Next 1339 0 R
+>>
+endobj
+1331 0 obj
+<<
+/Title 1332 0 R
+/A 1329 0 R
+/Parent 1315 0 R
+/Prev 1327 0 R
+/Next 1335 0 R
+>>
+endobj
+1327 0 obj
+<<
+/Title 1328 0 R
+/A 1325 0 R
+/Parent 1315 0 R
+/Prev 1323 0 R
+/Next 1331 0 R
+>>
+endobj
+1323 0 obj
+<<
+/Title 1324 0 R
+/A 1321 0 R
+/Parent 1315 0 R
+/Prev 1319 0 R
+/Next 1327 0 R
+>>
+endobj
+1319 0 obj
+<<
+/Title 1320 0 R
+/A 1317 0 R
+/Parent 1315 0 R
+/Next 1323 0 R
+>>
+endobj
+1315 0 obj
+<<
+/Title 1316 0 R
+/A 1313 0 R
+/Parent 947 0 R
+/Prev 1295 0 R
+/Next 1375 0 R
+/First 1319 0 R
+/Last 1371 0 R
+/Count -14
+>>
+endobj
+1311 0 obj
+<<
+/Title 1312 0 R
+/A 1309 0 R
+/Parent 1295 0 R
+/Prev 1307 0 R
+>>
+endobj
+1307 0 obj
+<<
+/Title 1308 0 R
+/A 1305 0 R
+/Parent 1295 0 R
+/Prev 1303 0 R
+/Next 1311 0 R
+>>
+endobj
+1303 0 obj
+<<
+/Title 1304 0 R
+/A 1301 0 R
+/Parent 1295 0 R
+/Prev 1299 0 R
+/Next 1307 0 R
+>>
+endobj
+1299 0 obj
+<<
+/Title 1300 0 R
+/A 1297 0 R
+/Parent 1295 0 R
+/Next 1303 0 R
+>>
+endobj
+1295 0 obj
+<<
+/Title 1296 0 R
+/A 1293 0 R
+/Parent 947 0 R
+/Prev 1167 0 R
+/Next 1315 0 R
+/First 1299 0 R
+/Last 1311 0 R
+/Count -4
+>>
+endobj
+1291 0 obj
+<<
+/Title 1292 0 R
+/A 1289 0 R
+/Parent 1167 0 R
+/Prev 1287 0 R
+>>
+endobj
+1287 0 obj
+<<
+/Title 1288 0 R
+/A 1285 0 R
+/Parent 1167 0 R
+/Prev 1283 0 R
+/Next 1291 0 R
+>>
+endobj
+1283 0 obj
+<<
+/Title 1284 0 R
+/A 1281 0 R
+/Parent 1167 0 R
+/Prev 1279 0 R
+/Next 1287 0 R
+>>
+endobj
+1279 0 obj
+<<
+/Title 1280 0 R
+/A 1277 0 R
+/Parent 1167 0 R
+/Prev 1275 0 R
+/Next 1283 0 R
+>>
+endobj
+1275 0 obj
+<<
+/Title 1276 0 R
+/A 1273 0 R
+/Parent 1167 0 R
+/Prev 1271 0 R
+/Next 1279 0 R
+>>
+endobj
+1271 0 obj
+<<
+/Title 1272 0 R
+/A 1269 0 R
+/Parent 1167 0 R
+/Prev 1267 0 R
+/Next 1275 0 R
+>>
+endobj
+1267 0 obj
+<<
+/Title 1268 0 R
+/A 1265 0 R
+/Parent 1167 0 R
+/Prev 1263 0 R
+/Next 1271 0 R
+>>
+endobj
+1263 0 obj
+<<
+/Title 1264 0 R
+/A 1261 0 R
+/Parent 1167 0 R
+/Prev 1259 0 R
+/Next 1267 0 R
+>>
+endobj
+1259 0 obj
+<<
+/Title 1260 0 R
+/A 1257 0 R
+/Parent 1167 0 R
+/Prev 1255 0 R
+/Next 1263 0 R
+>>
+endobj
+1255 0 obj
+<<
+/Title 1256 0 R
+/A 1253 0 R
+/Parent 1167 0 R
+/Prev 1251 0 R
+/Next 1259 0 R
+>>
+endobj
+1251 0 obj
+<<
+/Title 1252 0 R
+/A 1249 0 R
+/Parent 1167 0 R
+/Prev 1247 0 R
+/Next 1255 0 R
+>>
+endobj
+1247 0 obj
+<<
+/Title 1248 0 R
+/A 1245 0 R
+/Parent 1167 0 R
+/Prev 1243 0 R
+/Next 1251 0 R
+>>
+endobj
+1243 0 obj
+<<
+/Title 1244 0 R
+/A 1241 0 R
+/Parent 1167 0 R
+/Prev 1239 0 R
+/Next 1247 0 R
+>>
+endobj
+1239 0 obj
+<<
+/Title 1240 0 R
+/A 1237 0 R
+/Parent 1167 0 R
+/Prev 1235 0 R
+/Next 1243 0 R
+>>
+endobj
+1235 0 obj
+<<
+/Title 1236 0 R
+/A 1233 0 R
+/Parent 1167 0 R
+/Prev 1231 0 R
+/Next 1239 0 R
+>>
+endobj
+1231 0 obj
+<<
+/Title 1232 0 R
+/A 1229 0 R
+/Parent 1167 0 R
+/Prev 1227 0 R
+/Next 1235 0 R
+>>
+endobj
+1227 0 obj
+<<
+/Title 1228 0 R
+/A 1225 0 R
+/Parent 1167 0 R
+/Prev 1223 0 R
+/Next 1231 0 R
+>>
+endobj
+1223 0 obj
+<<
+/Title 1224 0 R
+/A 1221 0 R
+/Parent 1167 0 R
+/Prev 1219 0 R
+/Next 1227 0 R
+>>
+endobj
+1219 0 obj
+<<
+/Title 1220 0 R
+/A 1217 0 R
+/Parent 1167 0 R
+/Prev 1215 0 R
+/Next 1223 0 R
+>>
+endobj
+1215 0 obj
+<<
+/Title 1216 0 R
+/A 1213 0 R
+/Parent 1167 0 R
+/Prev 1211 0 R
+/Next 1219 0 R
+>>
+endobj
+1211 0 obj
+<<
+/Title 1212 0 R
+/A 1209 0 R
+/Parent 1167 0 R
+/Prev 1207 0 R
+/Next 1215 0 R
+>>
+endobj
+1207 0 obj
+<<
+/Title 1208 0 R
+/A 1205 0 R
+/Parent 1167 0 R
+/Prev 1203 0 R
+/Next 1211 0 R
+>>
+endobj
+1203 0 obj
+<<
+/Title 1204 0 R
+/A 1201 0 R
+/Parent 1167 0 R
+/Prev 1199 0 R
+/Next 1207 0 R
+>>
+endobj
+1199 0 obj
+<<
+/Title 1200 0 R
+/A 1197 0 R
+/Parent 1167 0 R
+/Prev 1195 0 R
+/Next 1203 0 R
+>>
+endobj
+1195 0 obj
+<<
+/Title 1196 0 R
+/A 1193 0 R
+/Parent 1167 0 R
+/Prev 1191 0 R
+/Next 1199 0 R
+>>
+endobj
+1191 0 obj
+<<
+/Title 1192 0 R
+/A 1189 0 R
+/Parent 1167 0 R
+/Prev 1187 0 R
+/Next 1195 0 R
+>>
+endobj
+1187 0 obj
+<<
+/Title 1188 0 R
+/A 1185 0 R
+/Parent 1167 0 R
+/Prev 1183 0 R
+/Next 1191 0 R
+>>
+endobj
+1183 0 obj
+<<
+/Title 1184 0 R
+/A 1181 0 R
+/Parent 1167 0 R
+/Prev 1179 0 R
+/Next 1187 0 R
+>>
+endobj
+1179 0 obj
+<<
+/Title 1180 0 R
+/A 1177 0 R
+/Parent 1167 0 R
+/Prev 1175 0 R
+/Next 1183 0 R
+>>
+endobj
+1175 0 obj
+<<
+/Title 1176 0 R
+/A 1173 0 R
+/Parent 1167 0 R
+/Prev 1171 0 R
+/Next 1179 0 R
+>>
+endobj
+1171 0 obj
+<<
+/Title 1172 0 R
+/A 1169 0 R
+/Parent 1167 0 R
+/Next 1175 0 R
+>>
+endobj
+1167 0 obj
+<<
+/Title 1168 0 R
+/A 1165 0 R
+/Parent 947 0 R
+/Prev 955 0 R
+/Next 1295 0 R
+/First 1171 0 R
+/Last 1291 0 R
+/Count -31
+>>
+endobj
+1163 0 obj
+<<
+/Title 1164 0 R
+/A 1161 0 R
+/Parent 955 0 R
+/Prev 1159 0 R
+>>
+endobj
+1159 0 obj
+<<
+/Title 1160 0 R
+/A 1157 0 R
+/Parent 955 0 R
+/Prev 1155 0 R
+/Next 1163 0 R
+>>
+endobj
+1155 0 obj
+<<
+/Title 1156 0 R
+/A 1153 0 R
+/Parent 955 0 R
+/Prev 1151 0 R
+/Next 1159 0 R
+>>
+endobj
+1151 0 obj
+<<
+/Title 1152 0 R
+/A 1149 0 R
+/Parent 955 0 R
+/Prev 1147 0 R
+/Next 1155 0 R
+>>
+endobj
+1147 0 obj
+<<
+/Title 1148 0 R
+/A 1145 0 R
+/Parent 955 0 R
+/Prev 1143 0 R
+/Next 1151 0 R
+>>
+endobj
+1143 0 obj
+<<
+/Title 1144 0 R
+/A 1141 0 R
+/Parent 955 0 R
+/Prev 1139 0 R
+/Next 1147 0 R
+>>
+endobj
+1139 0 obj
+<<
+/Title 1140 0 R
+/A 1137 0 R
+/Parent 955 0 R
+/Prev 1135 0 R
+/Next 1143 0 R
+>>
+endobj
+1135 0 obj
+<<
+/Title 1136 0 R
+/A 1133 0 R
+/Parent 955 0 R
+/Prev 1131 0 R
+/Next 1139 0 R
+>>
+endobj
+1131 0 obj
+<<
+/Title 1132 0 R
+/A 1129 0 R
+/Parent 955 0 R
+/Prev 1127 0 R
+/Next 1135 0 R
+>>
+endobj
+1127 0 obj
+<<
+/Title 1128 0 R
+/A 1125 0 R
+/Parent 955 0 R
+/Prev 1123 0 R
+/Next 1131 0 R
+>>
+endobj
+1123 0 obj
+<<
+/Title 1124 0 R
+/A 1121 0 R
+/Parent 955 0 R
+/Prev 1119 0 R
+/Next 1127 0 R
+>>
+endobj
+1119 0 obj
+<<
+/Title 1120 0 R
+/A 1117 0 R
+/Parent 955 0 R
+/Prev 1115 0 R
+/Next 1123 0 R
+>>
+endobj
+1115 0 obj
+<<
+/Title 1116 0 R
+/A 1113 0 R
+/Parent 955 0 R
+/Prev 1111 0 R
+/Next 1119 0 R
+>>
+endobj
+1111 0 obj
+<<
+/Title 1112 0 R
+/A 1109 0 R
+/Parent 955 0 R
+/Prev 1107 0 R
+/Next 1115 0 R
+>>
+endobj
+1107 0 obj
+<<
+/Title 1108 0 R
+/A 1105 0 R
+/Parent 955 0 R
+/Prev 1103 0 R
+/Next 1111 0 R
+>>
+endobj
+1103 0 obj
+<<
+/Title 1104 0 R
+/A 1101 0 R
+/Parent 955 0 R
+/Prev 1099 0 R
+/Next 1107 0 R
+>>
+endobj
+1099 0 obj
+<<
+/Title 1100 0 R
+/A 1097 0 R
+/Parent 955 0 R
+/Prev 1095 0 R
+/Next 1103 0 R
+>>
+endobj
+1095 0 obj
+<<
+/Title 1096 0 R
+/A 1093 0 R
+/Parent 955 0 R
+/Prev 1091 0 R
+/Next 1099 0 R
+>>
+endobj
+1091 0 obj
+<<
+/Title 1092 0 R
+/A 1089 0 R
+/Parent 955 0 R
+/Prev 1087 0 R
+/Next 1095 0 R
+>>
+endobj
+1087 0 obj
+<<
+/Title 1088 0 R
+/A 1085 0 R
+/Parent 955 0 R
+/Prev 1083 0 R
+/Next 1091 0 R
+>>
+endobj
+1083 0 obj
+<<
+/Title 1084 0 R
+/A 1081 0 R
+/Parent 955 0 R
+/Prev 1079 0 R
+/Next 1087 0 R
+>>
+endobj
+1079 0 obj
+<<
+/Title 1080 0 R
+/A 1077 0 R
+/Parent 955 0 R
+/Prev 1075 0 R
+/Next 1083 0 R
+>>
+endobj
+1075 0 obj
+<<
+/Title 1076 0 R
+/A 1073 0 R
+/Parent 955 0 R
+/Prev 1071 0 R
+/Next 1079 0 R
+>>
+endobj
+1071 0 obj
+<<
+/Title 1072 0 R
+/A 1069 0 R
+/Parent 955 0 R
+/Prev 1067 0 R
+/Next 1075 0 R
+>>
+endobj
+1067 0 obj
+<<
+/Title 1068 0 R
+/A 1065 0 R
+/Parent 955 0 R
+/Prev 1063 0 R
+/Next 1071 0 R
+>>
+endobj
+1063 0 obj
+<<
+/Title 1064 0 R
+/A 1061 0 R
+/Parent 955 0 R
+/Prev 1059 0 R
+/Next 1067 0 R
+>>
+endobj
+1059 0 obj
+<<
+/Title 1060 0 R
+/A 1057 0 R
+/Parent 955 0 R
+/Prev 1055 0 R
+/Next 1063 0 R
+>>
+endobj
+1055 0 obj
+<<
+/Title 1056 0 R
+/A 1053 0 R
+/Parent 955 0 R
+/Prev 1051 0 R
+/Next 1059 0 R
+>>
+endobj
+1051 0 obj
+<<
+/Title 1052 0 R
+/A 1049 0 R
+/Parent 955 0 R
+/Prev 1047 0 R
+/Next 1055 0 R
+>>
+endobj
+1047 0 obj
+<<
+/Title 1048 0 R
+/A 1045 0 R
+/Parent 955 0 R
+/Prev 1043 0 R
+/Next 1051 0 R
+>>
+endobj
+1043 0 obj
+<<
+/Title 1044 0 R
+/A 1041 0 R
+/Parent 955 0 R
+/Prev 1039 0 R
+/Next 1047 0 R
+>>
+endobj
+1039 0 obj
+<<
+/Title 1040 0 R
+/A 1037 0 R
+/Parent 955 0 R
+/Prev 1035 0 R
+/Next 1043 0 R
+>>
+endobj
+1035 0 obj
+<<
+/Title 1036 0 R
+/A 1033 0 R
+/Parent 955 0 R
+/Prev 1031 0 R
+/Next 1039 0 R
+>>
+endobj
+1031 0 obj
+<<
+/Title 1032 0 R
+/A 1029 0 R
+/Parent 955 0 R
+/Prev 1027 0 R
+/Next 1035 0 R
+>>
+endobj
+1027 0 obj
+<<
+/Title 1028 0 R
+/A 1025 0 R
+/Parent 955 0 R
+/Prev 1023 0 R
+/Next 1031 0 R
+>>
+endobj
+1023 0 obj
+<<
+/Title 1024 0 R
+/A 1021 0 R
+/Parent 955 0 R
+/Prev 1019 0 R
+/Next 1027 0 R
+>>
+endobj
+1019 0 obj
+<<
+/Title 1020 0 R
+/A 1017 0 R
+/Parent 955 0 R
+/Prev 1015 0 R
+/Next 1023 0 R
+>>
+endobj
+1015 0 obj
+<<
+/Title 1016 0 R
+/A 1013 0 R
+/Parent 955 0 R
+/Prev 1011 0 R
+/Next 1019 0 R
+>>
+endobj
+1011 0 obj
+<<
+/Title 1012 0 R
+/A 1009 0 R
+/Parent 955 0 R
+/Prev 1007 0 R
+/Next 1015 0 R
+>>
+endobj
+1007 0 obj
+<<
+/Title 1008 0 R
+/A 1005 0 R
+/Parent 955 0 R
+/Prev 1003 0 R
+/Next 1011 0 R
+>>
+endobj
+1003 0 obj
+<<
+/Title 1004 0 R
+/A 1001 0 R
+/Parent 955 0 R
+/Prev 999 0 R
+/Next 1007 0 R
+>>
+endobj
+999 0 obj
+<<
+/Title 1000 0 R
+/A 997 0 R
+/Parent 955 0 R
+/Prev 995 0 R
+/Next 1003 0 R
+>>
+endobj
+995 0 obj
+<<
+/Title 996 0 R
+/A 993 0 R
+/Parent 955 0 R
+/Prev 991 0 R
+/Next 999 0 R
+>>
+endobj
+991 0 obj
+<<
+/Title 992 0 R
+/A 989 0 R
+/Parent 955 0 R
+/Prev 987 0 R
+/Next 995 0 R
+>>
+endobj
+987 0 obj
+<<
+/Title 988 0 R
+/A 985 0 R
+/Parent 955 0 R
+/Prev 983 0 R
+/Next 991 0 R
+>>
+endobj
+983 0 obj
+<<
+/Title 984 0 R
+/A 981 0 R
+/Parent 955 0 R
+/Prev 979 0 R
+/Next 987 0 R
+>>
+endobj
+979 0 obj
+<<
+/Title 980 0 R
+/A 977 0 R
+/Parent 955 0 R
+/Prev 975 0 R
+/Next 983 0 R
+>>
+endobj
+975 0 obj
+<<
+/Title 976 0 R
+/A 973 0 R
+/Parent 955 0 R
+/Prev 971 0 R
+/Next 979 0 R
+>>
+endobj
+971 0 obj
+<<
+/Title 972 0 R
+/A 969 0 R
+/Parent 955 0 R
+/Prev 967 0 R
+/Next 975 0 R
+>>
+endobj
+967 0 obj
+<<
+/Title 968 0 R
+/A 965 0 R
+/Parent 955 0 R
+/Prev 963 0 R
+/Next 971 0 R
+>>
+endobj
+963 0 obj
+<<
+/Title 964 0 R
+/A 961 0 R
+/Parent 955 0 R
+/Prev 959 0 R
+/Next 967 0 R
+>>
+endobj
+959 0 obj
+<<
+/Title 960 0 R
+/A 957 0 R
+/Parent 955 0 R
+/Next 963 0 R
+>>
+endobj
+955 0 obj
+<<
+/Title 956 0 R
+/A 953 0 R
+/Parent 947 0 R
+/Prev 951 0 R
+/Next 1167 0 R
+/First 959 0 R
+/Last 1163 0 R
+/Count -52
+>>
+endobj
+951 0 obj
+<<
+/Title 952 0 R
+/A 949 0 R
+/Parent 947 0 R
+/Next 955 0 R
+>>
+endobj
+947 0 obj
+<<
+/Title 948 0 R
+/A 945 0 R
+/Parent 3238 0 R
+/Prev 943 0 R
+/First 951 0 R
+/Last 1691 0 R
+/Count -19
+>>
+endobj
+943 0 obj
+<<
+/Title 944 0 R
+/A 941 0 R
+/Parent 3238 0 R
+/Prev 939 0 R
+/Next 947 0 R
+>>
+endobj
+939 0 obj
+<<
+/Title 940 0 R
+/A 937 0 R
+/Parent 3238 0 R
+/Prev 899 0 R
+/Next 943 0 R
+>>
+endobj
+935 0 obj
+<<
+/Title 936 0 R
+/A 933 0 R
+/Parent 899 0 R
+/Prev 931 0 R
+>>
+endobj
+931 0 obj
+<<
+/Title 932 0 R
+/A 929 0 R
+/Parent 899 0 R
+/Prev 927 0 R
+/Next 935 0 R
+>>
+endobj
+927 0 obj
+<<
+/Title 928 0 R
+/A 925 0 R
+/Parent 899 0 R
+/Prev 923 0 R
+/Next 931 0 R
+>>
+endobj
+923 0 obj
+<<
+/Title 924 0 R
+/A 921 0 R
+/Parent 899 0 R
+/Prev 919 0 R
+/Next 927 0 R
+>>
+endobj
+919 0 obj
+<<
+/Title 920 0 R
+/A 917 0 R
+/Parent 899 0 R
+/Prev 915 0 R
+/Next 923 0 R
+>>
+endobj
+915 0 obj
+<<
+/Title 916 0 R
+/A 913 0 R
+/Parent 899 0 R
+/Prev 911 0 R
+/Next 919 0 R
+>>
+endobj
+911 0 obj
+<<
+/Title 912 0 R
+/A 909 0 R
+/Parent 899 0 R
+/Prev 907 0 R
+/Next 915 0 R
+>>
+endobj
+907 0 obj
+<<
+/Title 908 0 R
+/A 905 0 R
+/Parent 899 0 R
+/Prev 903 0 R
+/Next 911 0 R
+>>
+endobj
+903 0 obj
+<<
+/Title 904 0 R
+/A 901 0 R
+/Parent 899 0 R
+/Next 907 0 R
+>>
+endobj
+899 0 obj
+<<
+/Title 900 0 R
+/A 897 0 R
+/Parent 3238 0 R
+/Prev 499 0 R
+/Next 939 0 R
+/First 903 0 R
+/Last 935 0 R
+/Count -9
+>>
+endobj
+895 0 obj
+<<
+/Title 896 0 R
+/A 893 0 R
+/Parent 887 0 R
+/Prev 891 0 R
+>>
+endobj
+891 0 obj
+<<
+/Title 892 0 R
+/A 889 0 R
+/Parent 887 0 R
+/Next 895 0 R
+>>
+endobj
+887 0 obj
+<<
+/Title 888 0 R
+/A 885 0 R
+/Parent 499 0 R
+/Prev 879 0 R
+/First 891 0 R
+/Last 895 0 R
+/Count -2
+>>
+endobj
+883 0 obj
+<<
+/Title 884 0 R
+/A 881 0 R
+/Parent 879 0 R
+>>
+endobj
+879 0 obj
+<<
+/Title 880 0 R
+/A 877 0 R
+/Parent 499 0 R
+/Prev 863 0 R
+/Next 887 0 R
+/First 883 0 R
+/Last 883 0 R
+/Count -1
+>>
+endobj
+875 0 obj
+<<
+/Title 876 0 R
+/A 873 0 R
+/Parent 863 0 R
+/Prev 871 0 R
+>>
+endobj
+871 0 obj
+<<
+/Title 872 0 R
+/A 869 0 R
+/Parent 863 0 R
+/Prev 867 0 R
+/Next 875 0 R
+>>
+endobj
+867 0 obj
+<<
+/Title 868 0 R
+/A 865 0 R
+/Parent 863 0 R
+/Next 871 0 R
+>>
+endobj
+863 0 obj
+<<
+/Title 864 0 R
+/A 861 0 R
+/Parent 499 0 R
+/Prev 763 0 R
+/Next 879 0 R
+/First 867 0 R
+/Last 875 0 R
+/Count -3
+>>
+endobj
+859 0 obj
+<<
+/Title 860 0 R
+/A 857 0 R
+/Parent 843 0 R
+/Prev 855 0 R
+>>
+endobj
+855 0 obj
+<<
+/Title 856 0 R
+/A 853 0 R
+/Parent 843 0 R
+/Prev 851 0 R
+/Next 859 0 R
+>>
+endobj
+851 0 obj
+<<
+/Title 852 0 R
+/A 849 0 R
+/Parent 843 0 R
+/Prev 847 0 R
+/Next 855 0 R
+>>
+endobj
+847 0 obj
+<<
+/Title 848 0 R
+/A 845 0 R
+/Parent 843 0 R
+/Next 851 0 R
+>>
+endobj
+843 0 obj
+<<
+/Title 844 0 R
+/A 841 0 R
+/Parent 763 0 R
+/Prev 839 0 R
+/First 847 0 R
+/Last 859 0 R
+/Count -4
+>>
+endobj
+839 0 obj
+<<
+/Title 840 0 R
+/A 837 0 R
+/Parent 763 0 R
+/Prev 827 0 R
+/Next 843 0 R
+>>
+endobj
+835 0 obj
+<<
+/Title 836 0 R
+/A 833 0 R
+/Parent 827 0 R
+/Prev 831 0 R
+>>
+endobj
+831 0 obj
+<<
+/Title 832 0 R
+/A 829 0 R
+/Parent 827 0 R
+/Next 835 0 R
+>>
+endobj
+827 0 obj
+<<
+/Title 828 0 R
+/A 825 0 R
+/Parent 763 0 R
+/Prev 819 0 R
+/Next 839 0 R
+/First 831 0 R
+/Last 835 0 R
+/Count -2
+>>
+endobj
+823 0 obj
+<<
+/Title 824 0 R
+/A 821 0 R
+/Parent 819 0 R
+>>
+endobj
+819 0 obj
+<<
+/Title 820 0 R
+/A 817 0 R
+/Parent 763 0 R
+/Prev 767 0 R
+/Next 827 0 R
+/First 823 0 R
+/Last 823 0 R
+/Count -1
+>>
+endobj
+815 0 obj
+<<
+/Title 816 0 R
+/A 813 0 R
+/Parent 767 0 R
+/Prev 811 0 R
+>>
+endobj
+811 0 obj
+<<
+/Title 812 0 R
+/A 809 0 R
+/Parent 767 0 R
+/Prev 807 0 R
+/Next 815 0 R
+>>
+endobj
+807 0 obj
+<<
+/Title 808 0 R
+/A 805 0 R
+/Parent 767 0 R
+/Prev 803 0 R
+/Next 811 0 R
+>>
+endobj
+803 0 obj
+<<
+/Title 804 0 R
+/A 801 0 R
+/Parent 767 0 R
+/Prev 799 0 R
+/Next 807 0 R
+>>
+endobj
+799 0 obj
+<<
+/Title 800 0 R
+/A 797 0 R
+/Parent 767 0 R
+/Prev 795 0 R
+/Next 803 0 R
+>>
+endobj
+795 0 obj
+<<
+/Title 796 0 R
+/A 793 0 R
+/Parent 767 0 R
+/Prev 791 0 R
+/Next 799 0 R
+>>
+endobj
+791 0 obj
+<<
+/Title 792 0 R
+/A 789 0 R
+/Parent 767 0 R
+/Prev 787 0 R
+/Next 795 0 R
+>>
+endobj
+787 0 obj
+<<
+/Title 788 0 R
+/A 785 0 R
+/Parent 767 0 R
+/Prev 783 0 R
+/Next 791 0 R
+>>
+endobj
+783 0 obj
+<<
+/Title 784 0 R
+/A 781 0 R
+/Parent 767 0 R
+/Prev 779 0 R
+/Next 787 0 R
+>>
+endobj
+779 0 obj
+<<
+/Title 780 0 R
+/A 777 0 R
+/Parent 767 0 R
+/Prev 775 0 R
+/Next 783 0 R
+>>
+endobj
+775 0 obj
+<<
+/Title 776 0 R
+/A 773 0 R
+/Parent 767 0 R
+/Prev 771 0 R
+/Next 779 0 R
+>>
+endobj
+771 0 obj
+<<
+/Title 772 0 R
+/A 769 0 R
+/Parent 767 0 R
+/Next 775 0 R
+>>
+endobj
+767 0 obj
+<<
+/Title 768 0 R
+/A 765 0 R
+/Parent 763 0 R
+/Next 819 0 R
+/First 771 0 R
+/Last 815 0 R
+/Count -12
+>>
+endobj
+763 0 obj
+<<
+/Title 764 0 R
+/A 761 0 R
+/Parent 499 0 R
+/Prev 731 0 R
+/Next 863 0 R
+/First 767 0 R
+/Last 843 0 R
+/Count -5
+>>
+endobj
+759 0 obj
+<<
+/Title 760 0 R
+/A 757 0 R
+/Parent 731 0 R
+/Prev 755 0 R
+>>
+endobj
+755 0 obj
+<<
+/Title 756 0 R
+/A 753 0 R
+/Parent 731 0 R
+/Prev 751 0 R
+/Next 759 0 R
+>>
+endobj
+751 0 obj
+<<
+/Title 752 0 R
+/A 749 0 R
+/Parent 731 0 R
+/Prev 747 0 R
+/Next 755 0 R
+>>
+endobj
+747 0 obj
+<<
+/Title 748 0 R
+/A 745 0 R
+/Parent 731 0 R
+/Prev 743 0 R
+/Next 751 0 R
+>>
+endobj
+743 0 obj
+<<
+/Title 744 0 R
+/A 741 0 R
+/Parent 731 0 R
+/Prev 739 0 R
+/Next 747 0 R
+>>
+endobj
+739 0 obj
+<<
+/Title 740 0 R
+/A 737 0 R
+/Parent 731 0 R
+/Prev 735 0 R
+/Next 743 0 R
+>>
+endobj
+735 0 obj
+<<
+/Title 736 0 R
+/A 733 0 R
+/Parent 731 0 R
+/Next 739 0 R
+>>
+endobj
+731 0 obj
+<<
+/Title 732 0 R
+/A 729 0 R
+/Parent 499 0 R
+/Prev 723 0 R
+/Next 763 0 R
+/First 735 0 R
+/Last 759 0 R
+/Count -7
+>>
+endobj
+727 0 obj
+<<
+/Title 728 0 R
+/A 725 0 R
+/Parent 723 0 R
+>>
+endobj
+723 0 obj
+<<
+/Title 724 0 R
+/A 721 0 R
+/Parent 499 0 R
+/Prev 711 0 R
+/Next 731 0 R
+/First 727 0 R
+/Last 727 0 R
+/Count -1
+>>
+endobj
+719 0 obj
+<<
+/Title 720 0 R
+/A 717 0 R
+/Parent 711 0 R
+/Prev 715 0 R
+>>
+endobj
+715 0 obj
+<<
+/Title 716 0 R
+/A 713 0 R
+/Parent 711 0 R
+/Next 719 0 R
+>>
+endobj
+711 0 obj
+<<
+/Title 712 0 R
+/A 709 0 R
+/Parent 499 0 R
+/Prev 551 0 R
+/Next 723 0 R
+/First 715 0 R
+/Last 719 0 R
+/Count -2
+>>
+endobj
+707 0 obj
+<<
+/Title 708 0 R
+/A 705 0 R
+/Parent 551 0 R
+/Prev 703 0 R
+>>
+endobj
+703 0 obj
+<<
+/Title 704 0 R
+/A 701 0 R
+/Parent 551 0 R
+/Prev 699 0 R
+/Next 707 0 R
+>>
+endobj
+699 0 obj
+<<
+/Title 700 0 R
+/A 697 0 R
+/Parent 551 0 R
+/Prev 695 0 R
+/Next 703 0 R
+>>
+endobj
+695 0 obj
+<<
+/Title 696 0 R
+/A 693 0 R
+/Parent 551 0 R
+/Prev 691 0 R
+/Next 699 0 R
+>>
+endobj
+691 0 obj
+<<
+/Title 692 0 R
+/A 689 0 R
+/Parent 551 0 R
+/Prev 687 0 R
+/Next 695 0 R
+>>
+endobj
+687 0 obj
+<<
+/Title 688 0 R
+/A 685 0 R
+/Parent 551 0 R
+/Prev 683 0 R
+/Next 691 0 R
+>>
+endobj
+683 0 obj
+<<
+/Title 684 0 R
+/A 681 0 R
+/Parent 551 0 R
+/Prev 679 0 R
+/Next 687 0 R
+>>
+endobj
+679 0 obj
+<<
+/Title 680 0 R
+/A 677 0 R
+/Parent 551 0 R
+/Prev 675 0 R
+/Next 683 0 R
+>>
+endobj
+675 0 obj
+<<
+/Title 676 0 R
+/A 673 0 R
+/Parent 551 0 R
+/Prev 671 0 R
+/Next 679 0 R
+>>
+endobj
+671 0 obj
+<<
+/Title 672 0 R
+/A 669 0 R
+/Parent 551 0 R
+/Prev 667 0 R
+/Next 675 0 R
+>>
+endobj
+667 0 obj
+<<
+/Title 668 0 R
+/A 665 0 R
+/Parent 551 0 R
+/Prev 663 0 R
+/Next 671 0 R
+>>
+endobj
+663 0 obj
+<<
+/Title 664 0 R
+/A 661 0 R
+/Parent 551 0 R
+/Prev 659 0 R
+/Next 667 0 R
+>>
+endobj
+659 0 obj
+<<
+/Title 660 0 R
+/A 657 0 R
+/Parent 551 0 R
+/Prev 655 0 R
+/Next 663 0 R
+>>
+endobj
+655 0 obj
+<<
+/Title 656 0 R
+/A 653 0 R
+/Parent 551 0 R
+/Prev 651 0 R
+/Next 659 0 R
+>>
+endobj
+651 0 obj
+<<
+/Title 652 0 R
+/A 649 0 R
+/Parent 551 0 R
+/Prev 647 0 R
+/Next 655 0 R
+>>
+endobj
+647 0 obj
+<<
+/Title 648 0 R
+/A 645 0 R
+/Parent 551 0 R
+/Prev 643 0 R
+/Next 651 0 R
+>>
+endobj
+643 0 obj
+<<
+/Title 644 0 R
+/A 641 0 R
+/Parent 551 0 R
+/Prev 639 0 R
+/Next 647 0 R
+>>
+endobj
+639 0 obj
+<<
+/Title 640 0 R
+/A 637 0 R
+/Parent 551 0 R
+/Prev 635 0 R
+/Next 643 0 R
+>>
+endobj
+635 0 obj
+<<
+/Title 636 0 R
+/A 633 0 R
+/Parent 551 0 R
+/Prev 631 0 R
+/Next 639 0 R
+>>
+endobj
+631 0 obj
+<<
+/Title 632 0 R
+/A 629 0 R
+/Parent 551 0 R
+/Prev 627 0 R
+/Next 635 0 R
+>>
+endobj
+627 0 obj
+<<
+/Title 628 0 R
+/A 625 0 R
+/Parent 551 0 R
+/Prev 623 0 R
+/Next 631 0 R
+>>
+endobj
+623 0 obj
+<<
+/Title 624 0 R
+/A 621 0 R
+/Parent 551 0 R
+/Prev 619 0 R
+/Next 627 0 R
+>>
+endobj
+619 0 obj
+<<
+/Title 620 0 R
+/A 617 0 R
+/Parent 551 0 R
+/Prev 615 0 R
+/Next 623 0 R
+>>
+endobj
+615 0 obj
+<<
+/Title 616 0 R
+/A 613 0 R
+/Parent 551 0 R
+/Prev 611 0 R
+/Next 619 0 R
+>>
+endobj
+611 0 obj
+<<
+/Title 612 0 R
+/A 609 0 R
+/Parent 551 0 R
+/Prev 607 0 R
+/Next 615 0 R
+>>
+endobj
+607 0 obj
+<<
+/Title 608 0 R
+/A 605 0 R
+/Parent 551 0 R
+/Prev 603 0 R
+/Next 611 0 R
+>>
+endobj
+603 0 obj
+<<
+/Title 604 0 R
+/A 601 0 R
+/Parent 551 0 R
+/Prev 599 0 R
+/Next 607 0 R
+>>
+endobj
+599 0 obj
+<<
+/Title 600 0 R
+/A 597 0 R
+/Parent 551 0 R
+/Prev 595 0 R
+/Next 603 0 R
+>>
+endobj
+595 0 obj
+<<
+/Title 596 0 R
+/A 593 0 R
+/Parent 551 0 R
+/Prev 591 0 R
+/Next 599 0 R
+>>
+endobj
+591 0 obj
+<<
+/Title 592 0 R
+/A 589 0 R
+/Parent 551 0 R
+/Prev 587 0 R
+/Next 595 0 R
+>>
+endobj
+587 0 obj
+<<
+/Title 588 0 R
+/A 585 0 R
+/Parent 551 0 R
+/Prev 583 0 R
+/Next 591 0 R
+>>
+endobj
+583 0 obj
+<<
+/Title 584 0 R
+/A 581 0 R
+/Parent 551 0 R
+/Prev 579 0 R
+/Next 587 0 R
+>>
+endobj
+579 0 obj
+<<
+/Title 580 0 R
+/A 577 0 R
+/Parent 551 0 R
+/Prev 575 0 R
+/Next 583 0 R
+>>
+endobj
+575 0 obj
+<<
+/Title 576 0 R
+/A 573 0 R
+/Parent 551 0 R
+/Prev 571 0 R
+/Next 579 0 R
+>>
+endobj
+571 0 obj
+<<
+/Title 572 0 R
+/A 569 0 R
+/Parent 551 0 R
+/Prev 567 0 R
+/Next 575 0 R
+>>
+endobj
+567 0 obj
+<<
+/Title 568 0 R
+/A 565 0 R
+/Parent 551 0 R
+/Prev 563 0 R
+/Next 571 0 R
+>>
+endobj
+563 0 obj
+<<
+/Title 564 0 R
+/A 561 0 R
+/Parent 551 0 R
+/Prev 559 0 R
+/Next 567 0 R
+>>
+endobj
+559 0 obj
+<<
+/Title 560 0 R
+/A 557 0 R
+/Parent 551 0 R
+/Prev 555 0 R
+/Next 563 0 R
+>>
+endobj
+555 0 obj
+<<
+/Title 556 0 R
+/A 553 0 R
+/Parent 551 0 R
+/Next 559 0 R
+>>
+endobj
+551 0 obj
+<<
+/Title 552 0 R
+/A 549 0 R
+/Parent 499 0 R
+/Prev 503 0 R
+/Next 711 0 R
+/First 555 0 R
+/Last 707 0 R
+/Count -39
+>>
+endobj
+547 0 obj
+<<
+/Title 548 0 R
+/A 545 0 R
+/Parent 503 0 R
+/Prev 543 0 R
+>>
+endobj
+543 0 obj
+<<
+/Title 544 0 R
+/A 541 0 R
+/Parent 503 0 R
+/Prev 539 0 R
+/Next 547 0 R
+>>
+endobj
+539 0 obj
+<<
+/Title 540 0 R
+/A 537 0 R
+/Parent 503 0 R
+/Prev 535 0 R
+/Next 543 0 R
+>>
+endobj
+535 0 obj
+<<
+/Title 536 0 R
+/A 533 0 R
+/Parent 503 0 R
+/Prev 531 0 R
+/Next 539 0 R
+>>
+endobj
+531 0 obj
+<<
+/Title 532 0 R
+/A 529 0 R
+/Parent 503 0 R
+/Prev 527 0 R
+/Next 535 0 R
+>>
+endobj
+527 0 obj
+<<
+/Title 528 0 R
+/A 525 0 R
+/Parent 503 0 R
+/Prev 523 0 R
+/Next 531 0 R
+>>
+endobj
+523 0 obj
+<<
+/Title 524 0 R
+/A 521 0 R
+/Parent 503 0 R
+/Prev 519 0 R
+/Next 527 0 R
+>>
+endobj
+519 0 obj
+<<
+/Title 520 0 R
+/A 517 0 R
+/Parent 503 0 R
+/Prev 515 0 R
+/Next 523 0 R
+>>
+endobj
+515 0 obj
+<<
+/Title 516 0 R
+/A 513 0 R
+/Parent 503 0 R
+/Prev 511 0 R
+/Next 519 0 R
+>>
+endobj
+511 0 obj
+<<
+/Title 512 0 R
+/A 509 0 R
+/Parent 503 0 R
+/Prev 507 0 R
+/Next 515 0 R
+>>
+endobj
+507 0 obj
+<<
+/Title 508 0 R
+/A 505 0 R
+/Parent 503 0 R
+/Next 511 0 R
+>>
+endobj
+503 0 obj
+<<
+/Title 504 0 R
+/A 501 0 R
+/Parent 499 0 R
+/Next 551 0 R
+/First 507 0 R
+/Last 547 0 R
+/Count -11
+>>
+endobj
+499 0 obj
+<<
+/Title 500 0 R
+/A 497 0 R
+/Parent 3238 0 R
+/Prev 451 0 R
+/Next 899 0 R
+/First 503 0 R
+/Last 887 0 R
+/Count -9
+>>
+endobj
+495 0 obj
+<<
+/Title 496 0 R
+/A 493 0 R
+/Parent 451 0 R
+/Prev 475 0 R
+>>
+endobj
+491 0 obj
+<<
+/Title 492 0 R
+/A 489 0 R
+/Parent 475 0 R
+/Prev 487 0 R
+>>
+endobj
+487 0 obj
+<<
+/Title 488 0 R
+/A 485 0 R
+/Parent 475 0 R
+/Prev 483 0 R
+/Next 491 0 R
+>>
+endobj
+483 0 obj
+<<
+/Title 484 0 R
+/A 481 0 R
+/Parent 475 0 R
+/Prev 479 0 R
+/Next 487 0 R
+>>
+endobj
+479 0 obj
+<<
+/Title 480 0 R
+/A 477 0 R
+/Parent 475 0 R
+/Next 483 0 R
+>>
+endobj
+475 0 obj
+<<
+/Title 476 0 R
+/A 473 0 R
+/Parent 451 0 R
+/Prev 455 0 R
+/Next 495 0 R
+/First 479 0 R
+/Last 491 0 R
+/Count -4
+>>
+endobj
+471 0 obj
+<<
+/Title 472 0 R
+/A 469 0 R
+/Parent 455 0 R
+/Prev 467 0 R
+>>
+endobj
+467 0 obj
+<<
+/Title 468 0 R
+/A 465 0 R
+/Parent 455 0 R
+/Prev 463 0 R
+/Next 471 0 R
+>>
+endobj
+463 0 obj
+<<
+/Title 464 0 R
+/A 461 0 R
+/Parent 455 0 R
+/Prev 459 0 R
+/Next 467 0 R
+>>
+endobj
+459 0 obj
+<<
+/Title 460 0 R
+/A 457 0 R
+/Parent 455 0 R
+/Next 463 0 R
+>>
+endobj
+455 0 obj
+<<
+/Title 456 0 R
+/A 453 0 R
+/Parent 451 0 R
+/Next 475 0 R
+/First 459 0 R
+/Last 471 0 R
+/Count -4
+>>
+endobj
+451 0 obj
+<<
+/Title 452 0 R
+/A 449 0 R
+/Parent 3238 0 R
+/Prev 439 0 R
+/Next 499 0 R
+/First 455 0 R
+/Last 495 0 R
+/Count -3
+>>
+endobj
+447 0 obj
+<<
+/Title 448 0 R
+/A 445 0 R
+/Parent 439 0 R
+/Prev 443 0 R
+>>
+endobj
+443 0 obj
+<<
+/Title 444 0 R
+/A 441 0 R
+/Parent 439 0 R
+/Next 447 0 R
+>>
+endobj
+439 0 obj
+<<
+/Title 440 0 R
+/A 437 0 R
+/Parent 3238 0 R
+/Prev 387 0 R
+/Next 451 0 R
+/First 443 0 R
+/Last 447 0 R
+/Count -2
+>>
+endobj
+435 0 obj
+<<
+/Title 436 0 R
+/A 433 0 R
+/Parent 407 0 R
+/Prev 431 0 R
+>>
+endobj
+431 0 obj
+<<
+/Title 432 0 R
+/A 429 0 R
+/Parent 407 0 R
+/Prev 427 0 R
+/Next 435 0 R
+>>
+endobj
+427 0 obj
+<<
+/Title 428 0 R
+/A 425 0 R
+/Parent 407 0 R
+/Prev 423 0 R
+/Next 431 0 R
+>>
+endobj
+423 0 obj
+<<
+/Title 424 0 R
+/A 421 0 R
+/Parent 407 0 R
+/Prev 419 0 R
+/Next 427 0 R
+>>
+endobj
+419 0 obj
+<<
+/Title 420 0 R
+/A 417 0 R
+/Parent 407 0 R
+/Prev 415 0 R
+/Next 423 0 R
+>>
+endobj
+415 0 obj
+<<
+/Title 416 0 R
+/A 413 0 R
+/Parent 407 0 R
+/Prev 411 0 R
+/Next 419 0 R
+>>
+endobj
+411 0 obj
+<<
+/Title 412 0 R
+/A 409 0 R
+/Parent 407 0 R
+/Next 415 0 R
+>>
+endobj
+407 0 obj
+<<
+/Title 408 0 R
+/A 405 0 R
+/Parent 387 0 R
+/Prev 391 0 R
+/First 411 0 R
+/Last 435 0 R
+/Count -7
+>>
+endobj
+403 0 obj
+<<
+/Title 404 0 R
+/A 401 0 R
+/Parent 391 0 R
+/Prev 399 0 R
+>>
+endobj
+399 0 obj
+<<
+/Title 400 0 R
+/A 397 0 R
+/Parent 391 0 R
+/Prev 395 0 R
+/Next 403 0 R
+>>
+endobj
+395 0 obj
+<<
+/Title 396 0 R
+/A 393 0 R
+/Parent 391 0 R
+/Next 399 0 R
+>>
+endobj
+391 0 obj
+<<
+/Title 392 0 R
+/A 389 0 R
+/Parent 387 0 R
+/Next 407 0 R
+/First 395 0 R
+/Last 403 0 R
+/Count -3
+>>
+endobj
+387 0 obj
+<<
+/Title 388 0 R
+/A 385 0 R
+/Parent 3238 0 R
+/Prev 335 0 R
+/Next 439 0 R
+/First 391 0 R
+/Last 407 0 R
+/Count -2
+>>
+endobj
+383 0 obj
+<<
+/Title 384 0 R
+/A 381 0 R
+/Parent 335 0 R
+/Prev 379 0 R
+>>
+endobj
+379 0 obj
+<<
+/Title 380 0 R
+/A 377 0 R
+/Parent 335 0 R
+/Prev 375 0 R
+/Next 383 0 R
+>>
+endobj
+375 0 obj
+<<
+/Title 376 0 R
+/A 373 0 R
+/Parent 335 0 R
+/Prev 371 0 R
+/Next 379 0 R
+>>
+endobj
+371 0 obj
+<<
+/Title 372 0 R
+/A 369 0 R
+/Parent 335 0 R
+/Prev 367 0 R
+/Next 375 0 R
+>>
+endobj
+367 0 obj
+<<
+/Title 368 0 R
+/A 365 0 R
+/Parent 335 0 R
+/Prev 363 0 R
+/Next 371 0 R
+>>
+endobj
+363 0 obj
+<<
+/Title 364 0 R
+/A 361 0 R
+/Parent 335 0 R
+/Prev 359 0 R
+/Next 367 0 R
+>>
+endobj
+359 0 obj
+<<
+/Title 360 0 R
+/A 357 0 R
+/Parent 335 0 R
+/Prev 355 0 R
+/Next 363 0 R
+>>
+endobj
+355 0 obj
+<<
+/Title 356 0 R
+/A 353 0 R
+/Parent 335 0 R
+/Prev 351 0 R
+/Next 359 0 R
+>>
+endobj
+351 0 obj
+<<
+/Title 352 0 R
+/A 349 0 R
+/Parent 335 0 R
+/Prev 347 0 R
+/Next 355 0 R
+>>
+endobj
+347 0 obj
+<<
+/Title 348 0 R
+/A 345 0 R
+/Parent 335 0 R
+/Prev 343 0 R
+/Next 351 0 R
+>>
+endobj
+343 0 obj
+<<
+/Title 344 0 R
+/A 341 0 R
+/Parent 335 0 R
+/Prev 339 0 R
+/Next 347 0 R
+>>
+endobj
+339 0 obj
+<<
+/Title 340 0 R
+/A 337 0 R
+/Parent 335 0 R
+/Next 343 0 R
+>>
+endobj
+335 0 obj
+<<
+/Title 336 0 R
+/A 333 0 R
+/Parent 3238 0 R
+/Prev 323 0 R
+/Next 387 0 R
+/First 339 0 R
+/Last 383 0 R
+/Count -12
+>>
+endobj
+331 0 obj
+<<
+/Title 332 0 R
+/A 329 0 R
+/Parent 323 0 R
+/Prev 327 0 R
+>>
+endobj
+327 0 obj
+<<
+/Title 328 0 R
+/A 325 0 R
+/Parent 323 0 R
+/Next 331 0 R
+>>
+endobj
+323 0 obj
+<<
+/Title 324 0 R
+/A 321 0 R
+/Parent 3238 0 R
+/Prev 103 0 R
+/Next 335 0 R
+/First 327 0 R
+/Last 331 0 R
+/Count -2
+>>
+endobj
+319 0 obj
+<<
+/Title 320 0 R
+/A 317 0 R
+/Parent 311 0 R
+/Prev 315 0 R
+>>
+endobj
+315 0 obj
+<<
+/Title 316 0 R
+/A 313 0 R
+/Parent 311 0 R
+/Next 319 0 R
+>>
+endobj
+311 0 obj
+<<
+/Title 312 0 R
+/A 309 0 R
+/Parent 103 0 R
+/Prev 295 0 R
+/First 315 0 R
+/Last 319 0 R
+/Count -2
+>>
+endobj
+307 0 obj
+<<
+/Title 308 0 R
+/A 305 0 R
+/Parent 295 0 R
+/Prev 303 0 R
+>>
+endobj
+303 0 obj
+<<
+/Title 304 0 R
+/A 301 0 R
+/Parent 295 0 R
+/Prev 299 0 R
+/Next 307 0 R
+>>
+endobj
+299 0 obj
+<<
+/Title 300 0 R
+/A 297 0 R
+/Parent 295 0 R
+/Next 303 0 R
+>>
+endobj
+295 0 obj
+<<
+/Title 296 0 R
+/A 293 0 R
+/Parent 103 0 R
+/Prev 275 0 R
+/Next 311 0 R
+/First 299 0 R
+/Last 307 0 R
+/Count -3
+>>
+endobj
+291 0 obj
+<<
+/Title 292 0 R
+/A 289 0 R
+/Parent 275 0 R
+/Prev 287 0 R
+>>
+endobj
+287 0 obj
+<<
+/Title 288 0 R
+/A 285 0 R
+/Parent 275 0 R
+/Prev 283 0 R
+/Next 291 0 R
+>>
+endobj
+283 0 obj
+<<
+/Title 284 0 R
+/A 281 0 R
+/Parent 275 0 R
+/Prev 279 0 R
+/Next 287 0 R
+>>
+endobj
+279 0 obj
+<<
+/Title 280 0 R
+/A 277 0 R
+/Parent 275 0 R
+/Next 283 0 R
+>>
+endobj
+275 0 obj
+<<
+/Title 276 0 R
+/A 273 0 R
+/Parent 103 0 R
+/Prev 255 0 R
+/Next 295 0 R
+/First 279 0 R
+/Last 291 0 R
+/Count -4
+>>
+endobj
+271 0 obj
+<<
+/Title 272 0 R
+/A 269 0 R
+/Parent 255 0 R
+/Prev 267 0 R
+>>
+endobj
+267 0 obj
+<<
+/Title 268 0 R
+/A 265 0 R
+/Parent 255 0 R
+/Prev 263 0 R
+/Next 271 0 R
+>>
+endobj
+263 0 obj
+<<
+/Title 264 0 R
+/A 261 0 R
+/Parent 255 0 R
+/Prev 259 0 R
+/Next 267 0 R
+>>
+endobj
+259 0 obj
+<<
+/Title 260 0 R
+/A 257 0 R
+/Parent 255 0 R
+/Next 263 0 R
+>>
+endobj
+255 0 obj
+<<
+/Title 256 0 R
+/A 253 0 R
+/Parent 103 0 R
+/Prev 235 0 R
+/Next 275 0 R
+/First 259 0 R
+/Last 271 0 R
+/Count -4
+>>
+endobj
+251 0 obj
+<<
+/Title 252 0 R
+/A 249 0 R
+/Parent 235 0 R
+/Prev 247 0 R
+>>
+endobj
+247 0 obj
+<<
+/Title 248 0 R
+/A 245 0 R
+/Parent 235 0 R
+/Prev 243 0 R
+/Next 251 0 R
+>>
+endobj
+243 0 obj
+<<
+/Title 244 0 R
+/A 241 0 R
+/Parent 235 0 R
+/Prev 239 0 R
+/Next 247 0 R
+>>
+endobj
+239 0 obj
+<<
+/Title 240 0 R
+/A 237 0 R
+/Parent 235 0 R
+/Next 243 0 R
+>>
+endobj
+235 0 obj
+<<
+/Title 236 0 R
+/A 233 0 R
+/Parent 103 0 R
+/Prev 207 0 R
+/Next 255 0 R
+/First 239 0 R
+/Last 251 0 R
+/Count -4
+>>
+endobj
+231 0 obj
+<<
+/Title 232 0 R
+/A 229 0 R
+/Parent 207 0 R
+/Prev 227 0 R
+>>
+endobj
+227 0 obj
+<<
+/Title 228 0 R
+/A 225 0 R
+/Parent 207 0 R
+/Prev 223 0 R
+/Next 231 0 R
+>>
+endobj
+223 0 obj
+<<
+/Title 224 0 R
+/A 221 0 R
+/Parent 207 0 R
+/Prev 219 0 R
+/Next 227 0 R
+>>
+endobj
+219 0 obj
+<<
+/Title 220 0 R
+/A 217 0 R
+/Parent 207 0 R
+/Prev 215 0 R
+/Next 223 0 R
+>>
+endobj
+215 0 obj
+<<
+/Title 216 0 R
+/A 213 0 R
+/Parent 207 0 R
+/Prev 211 0 R
+/Next 219 0 R
+>>
+endobj
+211 0 obj
+<<
+/Title 212 0 R
+/A 209 0 R
+/Parent 207 0 R
+/Next 215 0 R
+>>
+endobj
+207 0 obj
+<<
+/Title 208 0 R
+/A 205 0 R
+/Parent 103 0 R
+/Prev 163 0 R
+/Next 235 0 R
+/First 211 0 R
+/Last 231 0 R
+/Count -6
+>>
+endobj
+203 0 obj
+<<
+/Title 204 0 R
+/A 201 0 R
+/Parent 163 0 R
+/Prev 199 0 R
+>>
+endobj
+199 0 obj
+<<
+/Title 200 0 R
+/A 197 0 R
+/Parent 163 0 R
+/Prev 195 0 R
+/Next 203 0 R
+>>
+endobj
+195 0 obj
+<<
+/Title 196 0 R
+/A 193 0 R
+/Parent 163 0 R
+/Prev 191 0 R
+/Next 199 0 R
+>>
+endobj
+191 0 obj
+<<
+/Title 192 0 R
+/A 189 0 R
+/Parent 163 0 R
+/Prev 187 0 R
+/Next 195 0 R
+>>
+endobj
+187 0 obj
+<<
+/Title 188 0 R
+/A 185 0 R
+/Parent 163 0 R
+/Prev 183 0 R
+/Next 191 0 R
+>>
+endobj
+183 0 obj
+<<
+/Title 184 0 R
+/A 181 0 R
+/Parent 163 0 R
+/Prev 179 0 R
+/Next 187 0 R
+>>
+endobj
+179 0 obj
+<<
+/Title 180 0 R
+/A 177 0 R
+/Parent 163 0 R
+/Prev 175 0 R
+/Next 183 0 R
+>>
+endobj
+175 0 obj
+<<
+/Title 176 0 R
+/A 173 0 R
+/Parent 163 0 R
+/Prev 171 0 R
+/Next 179 0 R
+>>
+endobj
+171 0 obj
+<<
+/Title 172 0 R
+/A 169 0 R
+/Parent 163 0 R
+/Prev 167 0 R
+/Next 175 0 R
+>>
+endobj
+167 0 obj
+<<
+/Title 168 0 R
+/A 165 0 R
+/Parent 163 0 R
+/Next 171 0 R
+>>
+endobj
+163 0 obj
+<<
+/Title 164 0 R
+/A 161 0 R
+/Parent 103 0 R
+/Prev 143 0 R
+/Next 207 0 R
+/First 167 0 R
+/Last 203 0 R
+/Count -10
+>>
+endobj
+159 0 obj
+<<
+/Title 160 0 R
+/A 157 0 R
+/Parent 143 0 R
+/Prev 155 0 R
+>>
+endobj
+155 0 obj
+<<
+/Title 156 0 R
+/A 153 0 R
+/Parent 143 0 R
+/Prev 151 0 R
+/Next 159 0 R
+>>
+endobj
+151 0 obj
+<<
+/Title 152 0 R
+/A 149 0 R
+/Parent 143 0 R
+/Prev 147 0 R
+/Next 155 0 R
+>>
+endobj
+147 0 obj
+<<
+/Title 148 0 R
+/A 145 0 R
+/Parent 143 0 R
+/Next 151 0 R
+>>
+endobj
+143 0 obj
+<<
+/Title 144 0 R
+/A 141 0 R
+/Parent 103 0 R
+/Prev 107 0 R
+/Next 163 0 R
+/First 147 0 R
+/Last 159 0 R
+/Count -4
+>>
+endobj
+139 0 obj
+<<
+/Title 140 0 R
+/A 137 0 R
+/Parent 107 0 R
+/Prev 135 0 R
+>>
+endobj
+135 0 obj
+<<
+/Title 136 0 R
+/A 133 0 R
+/Parent 107 0 R
+/Prev 131 0 R
+/Next 139 0 R
+>>
+endobj
+131 0 obj
+<<
+/Title 132 0 R
+/A 129 0 R
+/Parent 107 0 R
+/Prev 127 0 R
+/Next 135 0 R
+>>
+endobj
+127 0 obj
+<<
+/Title 128 0 R
+/A 125 0 R
+/Parent 107 0 R
+/Prev 123 0 R
+/Next 131 0 R
+>>
+endobj
+123 0 obj
+<<
+/Title 124 0 R
+/A 121 0 R
+/Parent 107 0 R
+/Prev 119 0 R
+/Next 127 0 R
+>>
+endobj
+119 0 obj
+<<
+/Title 120 0 R
+/A 117 0 R
+/Parent 107 0 R
+/Prev 115 0 R
+/Next 123 0 R
+>>
+endobj
+115 0 obj
+<<
+/Title 116 0 R
+/A 113 0 R
+/Parent 107 0 R
+/Prev 111 0 R
+/Next 119 0 R
+>>
+endobj
+111 0 obj
+<<
+/Title 112 0 R
+/A 109 0 R
+/Parent 107 0 R
+/Next 115 0 R
+>>
+endobj
+107 0 obj
+<<
+/Title 108 0 R
+/A 105 0 R
+/Parent 103 0 R
+/Next 143 0 R
+/First 111 0 R
+/Last 139 0 R
+/Count -8
+>>
+endobj
+103 0 obj
+<<
+/Title 104 0 R
+/A 101 0 R
+/Parent 3238 0 R
+/Prev 15 0 R
+/Next 323 0 R
+/First 107 0 R
+/Last 311 0 R
+/Count -9
+>>
+endobj
+99 0 obj
+<<
+/Title 100 0 R
+/A 97 0 R
+/Parent 15 0 R
+/Prev 95 0 R
+>>
+endobj
+95 0 obj
+<<
+/Title 96 0 R
+/A 93 0 R
+/Parent 15 0 R
+/Prev 91 0 R
+/Next 99 0 R
+>>
+endobj
+91 0 obj
+<<
+/Title 92 0 R
+/A 89 0 R
+/Parent 15 0 R
+/Prev 87 0 R
+/Next 95 0 R
+>>
+endobj
+87 0 obj
+<<
+/Title 88 0 R
+/A 85 0 R
+/Parent 15 0 R
+/Prev 83 0 R
+/Next 91 0 R
+>>
+endobj
+83 0 obj
+<<
+/Title 84 0 R
+/A 81 0 R
+/Parent 15 0 R
+/Prev 79 0 R
+/Next 87 0 R
+>>
+endobj
+79 0 obj
+<<
+/Title 80 0 R
+/A 77 0 R
+/Parent 15 0 R
+/Prev 75 0 R
+/Next 83 0 R
+>>
+endobj
+75 0 obj
+<<
+/Title 76 0 R
+/A 73 0 R
+/Parent 15 0 R
+/Prev 71 0 R
+/Next 79 0 R
+>>
+endobj
+71 0 obj
+<<
+/Title 72 0 R
+/A 69 0 R
+/Parent 15 0 R
+/Prev 67 0 R
+/Next 75 0 R
+>>
+endobj
+67 0 obj
+<<
+/Title 68 0 R
+/A 65 0 R
+/Parent 15 0 R
+/Prev 63 0 R
+/Next 71 0 R
+>>
+endobj
+63 0 obj
+<<
+/Title 64 0 R
+/A 61 0 R
+/Parent 15 0 R
+/Prev 59 0 R
+/Next 67 0 R
+>>
+endobj
+59 0 obj
+<<
+/Title 60 0 R
+/A 57 0 R
+/Parent 15 0 R
+/Prev 55 0 R
+/Next 63 0 R
+>>
+endobj
+55 0 obj
+<<
+/Title 56 0 R
+/A 53 0 R
+/Parent 15 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>>
+endobj
+51 0 obj
+<<
+/Title 52 0 R
+/A 49 0 R
+/Parent 15 0 R
+/Prev 47 0 R
+/Next 55 0 R
+>>
+endobj
+47 0 obj
+<<
+/Title 48 0 R
+/A 45 0 R
+/Parent 15 0 R
+/Prev 43 0 R
+/Next 51 0 R
+>>
+endobj
+43 0 obj
+<<
+/Title 44 0 R
+/A 41 0 R
+/Parent 15 0 R
+/Prev 39 0 R
+/Next 47 0 R
+>>
+endobj
+39 0 obj
+<<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 35 0 R
+/Next 43 0 R
+>>
+endobj
+35 0 obj
+<<
+/Title 36 0 R
+/A 33 0 R
+/Parent 15 0 R
+/Prev 31 0 R
+/Next 39 0 R
+>>
+endobj
+31 0 obj
+<<
+/Title 32 0 R
+/A 29 0 R
+/Parent 15 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>>
+endobj
+27 0 obj
+<<
+/Title 28 0 R
+/A 25 0 R
+/Parent 15 0 R
+/Prev 23 0 R
+/Next 31 0 R
+>>
+endobj
+23 0 obj
+<<
+/Title 24 0 R
+/A 21 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/Next 27 0 R
+>>
+endobj
+19 0 obj
+<<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 23 0 R
+>>
+endobj
+15 0 obj
+<<
+/Title 16 0 R
+/A 13 0 R
+/Parent 3238 0 R
+/Prev 11 0 R
+/Next 103 0 R
+/First 19 0 R
+/Last 99 0 R
+/Count -21
+>>
+endobj
+11 0 obj
+<<
+/Title 12 0 R
+/A 9 0 R
+/Parent 3238 0 R
+/Prev 7 0 R
+/Next 15 0 R
+>>
+endobj
+7 0 obj
+<<
+/Title 8 0 R
+/A 5 0 R
+/Parent 3238 0 R
+/Prev 3 0 R
+/Next 11 0 R
+>>
+endobj
+3 0 obj
+<<
+/Title 4 0 R
+/A 1 0 R
+/Parent 3238 0 R
+/Next 7 0 R
+>>
+endobj
+3239 0 obj
+<<
+/Names [(Doc-Start) 1700 0 R (Item.1) 2493 0 R (Item.10) 2506 0 R (Item.11) 2511 0 R (Item.12) 2512 0 R (Item.13) 2513 0 R]
+/Limits [(Doc-Start) (Item.13)]
+>>
+endobj
+3240 0 obj
+<<
+/Names [(Item.14) 2514 0 R (Item.15) 2519 0 R (Item.16) 2520 0 R (Item.17) 2521 0 R (Item.18) 2522 0 R (Item.19) 2523 0 R]
+/Limits [(Item.14) (Item.19)]
+>>
+endobj
+3241 0 obj
+<<
+/Names [(Item.2) 2494 0 R (Item.20) 2593 0 R (Item.21) 2594 0 R (Item.22) 2595 0 R (Item.23) 2596 0 R (Item.24) 2943 0 R]
+/Limits [(Item.2) (Item.24)]
+>>
+endobj
+3242 0 obj
+<<
+/Names [(Item.25) 2944 0 R (Item.26) 2945 0 R (Item.27) 2946 0 R (Item.28) 2955 0 R (Item.29) 2956 0 R (Item.3) 2495 0 R]
+/Limits [(Item.25) (Item.3)]
+>>
+endobj
+3243 0 obj
+<<
+/Names [(Item.30) 2957 0 R (Item.31) 2958 0 R (Item.4) 2496 0 R (Item.5) 2497 0 R (Item.6) 2502 0 R (Item.7) 2503 0 R]
+/Limits [(Item.30) (Item.7)]
+>>
+endobj
+3244 0 obj
+<<
+/Names [(Item.8) 2504 0 R (Item.9) 2505 0 R (ampdef.3) 174 0 R (eimpl-chorded.3) 1206 0 R (eimpl-chorus.3) 1382 0 R (eimpl-intersong.3) 1414 0 R]
+/Limits [(Item.8) (eimpl-intersong.3)]
+>>
+endobj
+3245 0 obj
+<<
+/Names [(eimpl-lyric.3) 1210 0 R (eimpl-noindexes.3) 1190 0 R (eimpl-nomeasures.3) 1226 0 R (eimpl-nopdfindex.3) 1202 0 R (eimpl-noscripture.3) 1242 0 R (eimpl-noshading.3) 1186 0 R]
+/Limits [(eimpl-lyric.3) (eimpl-noshading.3)]
+>>
+endobj
+3246 0 obj
+<<
+/Names [(eimpl-onesongcolumn.3) 1254 0 R (eimpl-rawtext.3) 1182 0 R (eimpl-scripture.3) 1418 0 R (eimpl-showmeasures.3) 1222 0 R (eimpl-slides.3) 1170 0 R (eimpl-song.3) 1354 0 R]
+/Limits [(eimpl-onesongcolumn.3) (eimpl-song.3)]
+>>
+endobj
+3247 0 obj
+<<
+/Names [(eimpl-songgroup.3) 1410 0 R (eimpl-songs.3) 1618 0 R (eimpl-transposecapos.3) 1238 0 R (eimpl-twosongcolumns.3) 1258 0 R (eimpl-unouter.3) 1178 0 R (eimpl-verse.3) 1378 0 R]
+/Limits [(eimpl-songgroup.3) (eimpl-verse.3)]
+>>
+endobj
+3248 0 obj
+<<
+/Names [(env.amp) 1868 0 R (env.by=) 1828 0 R (env.chorded) 1760 0 R (env.cr=) 1843 0 R (env.hash) 1867 0 R (env.hat) 1905 0 R]
+/Limits [(env.amp) (env.hat)]
+>>
+endobj
+3249 0 obj
+<<
+/Names [(env.index=) 2134 0 R (env.intersong) 2076 0 R (env.intersong*) 2077 0 R (env.ititle=) 2136 0 R (env.li=) 1845 0 R (env.lyric) 1759 0 R]
+/Limits [(env.index=) (env.lyric)]
+>>
+endobj
+3250 0 obj
+<<
+/Names [(env.noindexes) 1795 0 R (env.nomeasures) 1767 0 R (env.nopdfindex) 1798 0 R (env.noscripture) 1800 0 R (env.noshading) 1804 0 R (env.pipe) 1968 0 R]
+/Limits [(env.noindexes) (env.pipe)]
+>>
+endobj
+3251 0 obj
+<<
+/Names [(env.rawtext) 1762 0 R (env.showmeasures) 1768 0 R (env.slides) 1761 0 R (env.songgroup) 2088 0 R (env.songnum) 2167 0 R (env.songs) 1808 0 R]
+/Limits [(env.rawtext) (env.songs)]
+>>
+endobj
+3252 0 obj
+<<
+/Names [(env.sr=) 1848 0 R (env.transposecapos) 1772 0 R (env.versenum) 2173 0 R (envdef-by=.3) 122 0 R (envdef-chorded.2) 22 0 R (envdef-cr=.3) 126 0 R]
+/Limits [(env.sr=) (envdef-cr=.3)]
+>>
+endobj
+3253 0 obj
+<<
+/Names [(envdef-index=.3) 478 0 R (envdef-intersong*.3) 398 0 R (envdef-intersong.3) 394 0 R (envdef-ititle=.3) 482 0 R (envdef-li=.3) 130 0 R (envdef-lyric.2) 18 0 R]
+/Limits [(envdef-index=.3) (envdef-lyric.2)]
+>>
+endobj
+3254 0 obj
+<<
+/Names [(envdef-noindexes.2) 66 0 R (envdef-nomeasures.2) 46 0 R (envdef-nopdfindex.2) 78 0 R (envdef-noscripture.2) 82 0 R (envdef-noshading.2) 94 0 R (envdef-rawtext.2) 30 0 R]
+/Limits [(envdef-noindexes.2) (envdef-rawtext.2)]
+>>
+endobj
+3255 0 obj
+<<
+/Names [(envdef-showmeasures.2) 50 0 R (envdef-slides.2) 26 0 R (envdef-songgroup.3) 402 0 R (envdef-songnum.3) 506 0 R (envdef-songs.3) 110 0 R (envdef-sr=.3) 138 0 R]
+/Limits [(envdef-showmeasures.2) (envdef-sr=.3)]
+>>
+endobj
+3256 0 obj
+<<
+/Names [(envdef-transposecapos.2) 62 0 R (envdef-versenum.3) 526 0 R (figure.1) 1742 0 R (figure.2) 1850 0 R (hashdef.3) 170 0 R (hatdef.3) 210 0 R]
+/Limits [(envdef-transposecapos.2) (hatdef.3)]
+>>
+endobj
+3257 0 obj
+<<
+/Names [(macdef-Acolon.3) 418 0 R (macdef-Bcolon.3) 422 0 R (macdef-DeclareLyricChar.3) 182 0 R (macdef-DeclareNoHyphen.3) 190 0 R (macdef-DeclareNonLyric.3) 186 0 R (macdef-MultiwordChords.3) 194 0 R]
+/Limits [(macdef-Acolon.3) (macdef-MultiwordChords.3)]
+>>
+endobj
+3258 0 obj
+<<
+/Names [(macdef-[.3) 166 0 R (macdef-afterpreludeskip.3) 614 0 R (macdef-alphascale.2) 358 0 R (macdef-authbyword.4) 854 0 R (macdef-authignoreword.4) 858 0 R (macdef-authsepword.4) 850 0 R]
+/Limits [(macdef-[.3) (macdef-authsepword.4)]
+>>
+endobj
+3259 0 obj
+<<
+/Names [(macdef-baselineadj.3) 622 0 R (macdef-beforepostludeskip.3) 618 0 R (macdef-beginchorus.3) 154 0 R (macdef-beginscripture.3) 410 0 R (macdef-beginsong.3) 114 0 R (macdef-beginverse.3) 146 0 R]
+/Limits [(macdef-baselineadj.3) (macdef-beginverse.3)]
+>>
+endobj
+3260 0 obj
+<<
+/Names [(macdef-brk.3) 238 0 R (macdef-brkpenalty.3) 678 0 R (macdef-capo.3) 306 0 R (macdef-cbarwidth.3) 630 0 R (macdef-ccpenalty.3) 666 0 R (macdef-ch.3) 314 0 R]
+/Limits [(macdef-brk.3) (macdef-ch.3)]
+>>
+endobj
+3261 0 obj
+<<
+/Names [(macdef-chordlocals.3) 890 0 R (macdef-chordsoff.2) 38 0 R (macdef-chordson.2) 34 0 R (macdef-chorusfont.3) 566 0 R (macdef-chorusjustify.3) 690 0 R (macdef-chorusmark.3) 874 0 R]
+/Limits [(macdef-chordlocals.3) (macdef-chorusmark.3)]
+>>
+endobj
+3262 0 obj
+<<
+/Names [(macdef-clineparams.3) 626 0 R (macdef-colbotglue.3) 746 0 R (macdef-columnsep.3) 742 0 R (macdef-cvpenalty.3) 674 0 R (macdef-echo.3) 258 0 R (macdef-echofont.3) 574 0 R]
+/Limits [(macdef-clineparams.3) (macdef-echofont.3)]
+>>
+endobj
+3263 0 obj
+<<
+/Names [(macdef-endchorus.3) 158 0 R (macdef-endscripture.3) 414 0 R (macdef-endsong.3) 118 0 R (macdef-endverse.3) 150 0 R (macdef-everychorus.3) 606 0 R (macdef-everyverse.3) 602 0 R]
+/Limits [(macdef-endchorus.3) (macdef-everyverse.3)]
+>>
+endobj
+3264 0 obj
+<<
+/Names [(macdef-extendpostlude.3) 650 0 R (macdef-extendprelude.3) 638 0 R (macdef-flatsymbol.3) 598 0 R (macdef-flt.3) 202 0 R (macdef-foreachtitle.2) 930 0 R (macdef-gtab.2) 326 0 R]
+/Limits [(macdef-extendpostlude.3) (macdef-gtab.2)]
+>>
+endobj
+3265 0 obj
+<<
+/Names [(macdef-gtabtrans.2) 382 0 R (macdef-idxauthfont.4) 802 0 R (macdef-idxbgcolor.4) 798 0 R (macdef-idxbook.4) 810 0 R (macdef-idxcont.4) 814 0 R (macdef-idxheadfont.4) 794 0 R]
+/Limits [(macdef-gtabtrans.2) (macdef-idxheadfont.4)]
+>>
+endobj
+3266 0 obj
+<<
+/Names [(macdef-idxheadwidth.4) 778 0 R (macdef-idxlyricfont.4) 790 0 R (macdef-idxrefsfont.4) 782 0 R (macdef-idxscripfont.4) 806 0 R (macdef-idxtitlefont.4) 786 0 R (macdef-if.3) 726 0 R]
+/Limits [(macdef-idxheadwidth.4) (macdef-if.3)]
+>>
+endobj
+3267 0 obj
+<<
+/Names [(macdef-includeonlysongs.2) 98 0 R (macdef-indexentry.3) 486 0 R (macdef-indexesoff.2) 74 0 R (macdef-indexeson.2) 70 0 R (macdef-indexsongsas.4) 822 0 R (macdef-indextitleentry.3) 490 0 R]
+/Limits [(macdef-includeonlysongs.2) (macdef-indextitleentry.3)]
+>>
+endobj
+3268 0 obj
+<<
+/Names [(macdef-justifycenter.3) 698 0 R (macdef-justifyleft.3) 694 0 R (macdef-lastcolglue.3) 750 0 R (macdef-lrep.3) 266 0 R (macdef-lyricfont.3) 554 0 R (macdef-makepostlude.3) 658 0 R]
+/Limits [(macdef-justifycenter.3) (macdef-makepostlude.3)]
+>>
+endobj
+3269 0 obj
+<<
+/Names [(macdef-makeprelude.3) 654 0 R (macdef-mbar.3) 290 0 R (macdef-mch.3) 318 0 R (macdef-measurebar.3) 278 0 R (macdef-measuresoff.2) 58 0 R (macdef-measureson.2) 54 0 R]
+/Limits [(macdef-makeprelude.3) (macdef-measureson.2)]
+>>
+endobj
+3270 0 obj
+<<
+/Names [(macdef-memorize.3) 214 0 R (macdef-meter.3) 286 0 R (macdef-meterfont.3) 570 0 R (macdef-minfrets.2) 330 0 R (macdef-musicnote.3) 302 0 R (macdef-newauthorindex.3) 462 0 R]
+/Limits [(macdef-memorize.3) (macdef-newauthorindex.3)]
+>>
+endobj
+3271 0 obj
+<<
+/Names [(macdef-newchords.3) 218 0 R (macdef-newindex.3) 458 0 R (macdef-newscripindex.3) 466 0 R (macdef-newsongkey.3) 882 0 R (macdef-nextcol.3) 242 0 R (macdef-nexttitle.2) 926 0 R]
+/Limits [(macdef-newchords.3) (macdef-nexttitle.2)]
+>>
+endobj
+3272 0 obj
+<<
+/Names [(macdef-nolyrics.3) 178 0 R (macdef-norepchoruses.3) 230 0 R (macdef-nosongnumbers.3) 522 0 R (macdef-notebgcolor.3) 582 0 R (macdef-notefont.3) 578 0 R (macdef-notejustify.3) 702 0 R]
+/Limits [(macdef-nolyrics.3) (macdef-notejustify.3)]
+>>
+endobj
+3273 0 obj
+<<
+/Names [(macdef-notenames.2) 362 0 R (macdef-notenamesin.2) 366 0 R (macdef-notenamesout.2) 370 0 R (macdef-notrans.2) 378 0 R (macdef-noversenumbers.3) 542 0 R (macdef-pagepreludes.3) 738 0 R]
+/Limits [(macdef-notenames.2) (macdef-pagepreludes.3)]
+>>
+endobj
+3274 0 obj
+<<
+/Names [(macdef-placenote.3) 706 0 R (macdef-placeversenum.3) 546 0 R (macdef-preferflats.2) 342 0 R (macdef-prefersharps.2) 346 0 R (macdef-printchord.3) 590 0 R (macdef-printscrcite.3) 718 0 R]
+/Limits [(macdef-placenote.3) (macdef-printscrcite.3)]
+>>
+endobj
+3275 0 obj
+<<
+/Names [(macdef-printsongnum.3) 514 0 R (macdef-printversenum.3) 534 0 R (macdef-rep.3) 262 0 R (macdef-repchoruses.3) 226 0 R (macdef-replay.3) 222 0 R (macdef-resettitles.2) 922 0 R]
+/Limits [(macdef-printsongnum.3) (macdef-resettitles.2)]
+>>
+endobj
+3276 0 obj
+<<
+/Names [(macdef-rrep.3) 270 0 R (macdef-sbarheight.3) 634 0 R (macdef-scleardpage.3) 250 0 R (macdef-sclearpage.3) 246 0 R (macdef-scripindent.3) 430 0 R (macdef-scripoutdent.3) 434 0 R]
+/Limits [(macdef-rrep.3) (macdef-scripoutdent.3)]
+>>
+endobj
+3277 0 obj
+<<
+/Names [(macdef-scripturefont.3) 714 0 R (macdef-scriptureoff.2) 90 0 R (macdef-scriptureon.2) 86 0 R (macdef-sepindexesfalse.4) 774 0 R (macdef-sepindexestrue.4) 770 0 R (macdef-sepverses.3) 682 0 R]
+/Limits [(macdef-scripturefont.3) (macdef-sepverses.3)]
+>>
+endobj
+3278 0 obj
+<<
+/Names [(macdef-setlicense.3) 134 0 R (macdef-sharpsymbol.3) 594 0 R (macdef-shiftdblquotes.3) 894 0 R (macdef-showauthors.3) 642 0 R (macdef-showindex.3) 470 0 R (macdef-showrefs.3) 646 0 R]
+/Limits [(macdef-setlicense.3) (macdef-showrefs.3)]
+>>
+endobj
+3279 0 obj
+<<
+/Names [(macdef-shrp.3) 198 0 R (macdef-slides.2) 42 0 R (macdef-snumbgcolor.3) 586 0 R (macdef-solfedge.2) 354 0 R (macdef-songauthors.2) 902 0 R (macdef-songchapter.2) 446 0 R]
+/Limits [(macdef-shrp.3) (macdef-songchapter.2)]
+>>
+endobj
+3280 0 obj
+<<
+/Names [(macdef-songcolumns.3) 734 0 R (macdef-songcopyright.2) 910 0 R (macdef-songlicense.2) 914 0 R (macdef-songlink.4) 834 0 R (macdef-songlist.2) 934 0 R (macdef-songmark.3) 866 0 R]
+/Limits [(macdef-songcolumns.3) (macdef-songmark.3)]
+>>
+endobj
+3281 0 obj
+<<
+/Names [(macdef-songnumwidth.3) 518 0 R (macdef-songpos.3) 754 0 R (macdef-songrefs.2) 906 0 R (macdef-songsection.2) 442 0 R (macdef-songtarget.4) 830 0 R (macdef-songtitle.2) 918 0 R]
+/Limits [(macdef-songnumwidth.3) (macdef-songtitle.2)]
+>>
+endobj
+3282 0 obj
+<<
+/Names [(macdef-spenalty.3) 758 0 R (macdef-stitlefont.3) 558 0 R (macdef-strophe.3) 426 0 R (macdef-textnote.3) 298 0 R (macdef-thesongnum.3) 510 0 R (macdef-theversenum.3) 530 0 R]
+/Limits [(macdef-spenalty.3) (macdef-theversenum.3)]
+>>
+endobj
+3283 0 obj
+<<
+/Names [(macdef-titleprefixword.4) 846 0 R (macdef-transpose.2) 338 0 R (macdef-transposehere.2) 374 0 R (macdef-trchordformat.2) 350 0 R (macdef-vcpenalty.3) 670 0 R (macdef-versefont.3) 562 0 R]
+/Limits [(macdef-titleprefixword.4) (macdef-versefont.3)]
+>>
+endobj
+3284 0 obj
+<<
+/Names [(macdef-versejustify.3) 686 0 R (macdef-versemark.3) 870 0 R (macdef-versenumwidth.3) 538 0 R (macdef-versesep.3) 610 0 R (macdef-vvpenalty.3) 662 0 R (macro.Acolon) 2093 0 R]
+/Limits [(macdef-versejustify.3) (macro.Acolon)]
+>>
+endobj
+3285 0 obj
+<<
+/Names [(macro.Bcolon) 2094 0 R (macro.DeclareLyricChar) 1884 0 R (macro.DeclareNoHyphen) 1886 0 R (macro.DeclareNonLyric) 1885 0 R (macro.MultiwordChords) 1888 0 R (macro.[) 1866 0 R]
+/Limits [(macro.Bcolon) (macro.[)]
+>>
+endobj
+3286 0 obj
+<<
+/Names [(macro.afterpreludeskip) 2216 0 R (macro.alphascale) 2052 0 R (macro.authbyword) 2402 0 R (macro.authignoreword) 2403 0 R (macro.authsepword) 2401 0 R (macro.baselineadj) 2218 0 R]
+/Limits [(macro.afterpreludeskip) (macro.baselineadj)]
+>>
+endobj
+3287 0 obj
+<<
+/Names [(macro.beforepostludeskip) 2217 0 R (macro.beginchorus) 1864 0 R (macro.beginscripture) 2090 0 R (macro.beginsong) 1824 0 R (macro.beginverse) 1862 0 R (macro.brk) 1810 0 R]
+/Limits [(macro.beforepostludeskip) (macro.brk)]
+>>
+endobj
+3288 0 obj
+<<
+/Names [(macro.brkpenalty) 2274 0 R (macro.capo) 1774 0 R (macro.cbarwidth) 2240 0 R (macro.ccpenalty) 2271 0 R (macro.ch) 1984 0 R (macro.chordlocals) 2438 0 R]
+/Limits [(macro.brkpenalty) (macro.chordlocals)]
+>>
+endobj
+3289 0 obj
+<<
+/Names [(macro.chordsoff) 1764 0 R (macro.chordson) 1763 0 R (macro.chorusfont) 2191 0 R (macro.chorusjustify) 2305 0 R (macro.chorusmark) 2428 0 R (macro.clineparams) 2239 0 R]
+/Limits [(macro.chordsoff) (macro.clineparams)]
+>>
+endobj
+3290 0 obj
+<<
+/Names [(macro.colbotglue) 2347 0 R (macro.columnsep) 2346 0 R (macro.cvpenalty) 2273 0 R (macro.echo) 1953 0 R (macro.echofont) 2193 0 R (macro.endchorus) 1865 0 R]
+/Limits [(macro.colbotglue) (macro.endchorus)]
+>>
+endobj
+3291 0 obj
+<<
+/Names [(macro.endscripture) 2091 0 R (macro.endsong) 1825 0 R (macro.endverse) 1863 0 R (macro.everychorus) 2213 0 R (macro.everyverse) 2212 0 R (macro.extendpostlude) 2246 0 R]
+/Limits [(macro.endscripture) (macro.extendpostlude)]
+>>
+endobj
+3292 0 obj
+<<
+/Names [(macro.extendprelude) 2243 0 R (macro.flatsymbol) 2209 0 R (macro.flt) 1902 0 R (macro.foreachtitle) 2282 0 R (macro.gtab) 1995 0 R (macro.gtabtrans) 2075 0 R]
+/Limits [(macro.extendprelude) (macro.gtabtrans)]
+>>
+endobj
+3293 0 obj
+<<
+/Names [(macro.idxauthfont) 2380 0 R (macro.idxbgcolor) 2379 0 R (macro.idxbook) 2382 0 R (macro.idxcont) 2383 0 R (macro.idxheadfont) 2368 0 R (macro.idxheadwidth) 2363 0 R]
+/Limits [(macro.idxauthfont) (macro.idxheadwidth)]
+>>
+endobj
+3294 0 obj
+<<
+/Names [(macro.idxlyricfont) 2367 0 R (macro.idxrefsfont) 2365 0 R (macro.idxscripfont) 2381 0 R (macro.idxtitlefont) 2366 0 R (macro.ifchorded) 1889 0 R (macro.iflyric) 2312 0 R]
+/Limits [(macro.idxlyricfont) (macro.iflyric)]
+>>
+endobj
+3295 0 obj
+<<
+/Names [(macro.ifmeasures) 2315 0 R (macro.ifnolyrics) 2318 0 R (macro.ifpagepreludes) 2319 0 R (macro.ifpartiallist) 2313 0 R (macro.ifrawtext) 2316 0 R (macro.ifslides) 1940 0 R]
+/Limits [(macro.ifmeasures) (macro.ifslides)]
+>>
+endobj
+3296 0 obj
+<<
+/Names [(macro.ifsongindexes) 2314 0 R (macro.iftranscapos) 2317 0 R (macro.ifvnumbered) 2320 0 R (macro.includeonlysongs) 1806 0 R (macro.indexentry) 2154 0 R (macro.indexesoff) 1797 0 R]
+/Limits [(macro.ifsongindexes) (macro.indexesoff)]
+>>
+endobj
+3297 0 obj
+<<
+/Names [(macro.indexeson) 1796 0 R (macro.indexsongsas) 2384 0 R (macro.indextitleentry) 2155 0 R (macro.justifycenter) 2307 0 R (macro.justifyleft) 2306 0 R (macro.lastcolglue) 2348 0 R]
+/Limits [(macro.indexeson) (macro.lastcolglue)]
+>>
+endobj
+3298 0 obj
+<<
+/Names [(macro.lrep) 1964 0 R (macro.lyricfont) 2188 0 R (macro.makepostlude) 2268 0 R (macro.makeprelude) 2267 0 R (macro.mbar) 1970 0 R (macro.mch) 1985 0 R]
+/Limits [(macro.lrep) (macro.mch)]
+>>
+endobj
+3299 0 obj
+<<
+/Names [(macro.measurebar) 1967 0 R (macro.measuresoff) 1770 0 R (macro.measureson) 1769 0 R (macro.memorize) 1920 0 R (macro.meter) 1969 0 R (macro.meterfont) 2192 0 R]
+/Limits [(macro.measurebar) (macro.meterfont)]
+>>
+endobj
+3300 0 obj
+<<
+/Names [(macro.minfrets) 2007 0 R (macro.musicnote) 1773 0 R (macro.newauthorindex) 2111 0 R (macro.newchords) 1923 0 R (macro.newindex) 2110 0 R (macro.newscripindex) 2112 0 R]
+/Limits [(macro.minfrets) (macro.newscripindex)]
+>>
+endobj
+3301 0 obj
+<<
+/Names [(macro.newsongkey) 2429 0 R (macro.nextcol) 1809 0 R (macro.nexttitle) 2281 0 R (macro.nolyrics) 1882 0 R (macro.norepchoruses) 1937 0 R (macro.nosongnumbers) 2171 0 R]
+/Limits [(macro.newsongkey) (macro.nosongnumbers)]
+>>
+endobj
+3302 0 obj
+<<
+/Names [(macro.notebgcolor) 2204 0 R (macro.notefont) 2194 0 R (macro.notejustify) 2308 0 R (macro.notenames) 2053 0 R (macro.notenamesin) 2054 0 R (macro.notenamesout) 2055 0 R]
+/Limits [(macro.notebgcolor) (macro.notenamesout)]
+>>
+endobj
+3303 0 obj
+<<
+/Names [(macro.notrans) 2058 0 R (macro.noversenumbers) 1869 0 R (macro.pagepreludes) 2333 0 R (macro.placenote) 2309 0 R (macro.placeversenum) 2186 0 R (macro.preferflats) 2027 0 R]
+/Limits [(macro.notrans) (macro.preferflats)]
+>>
+endobj
+3304 0 obj
+<<
+/Names [(macro.prefersharps) 2028 0 R (macro.printchord) 2206 0 R (macro.printscrcite) 2311 0 R (macro.printsongnum) 2169 0 R (macro.printversenum) 2184 0 R (macro.rep) 1962 0 R]
+/Limits [(macro.prefersharps) (macro.rep)]
+>>
+endobj
+3305 0 obj
+<<
+/Names [(macro.repchoruses) 1936 0 R (macro.replay) 1934 0 R (macro.resettitles) 2279 0 R (macro.rrep) 1965 0 R (macro.sbarheight) 2241 0 R (macro.scleardpage) 1812 0 R]
+/Limits [(macro.repchoruses) (macro.scleardpage)]
+>>
+endobj
+3306 0 obj
+<<
+/Names [(macro.sclearpage) 1811 0 R (macro.scripindent) 2102 0 R (macro.scripoutdent) 2103 0 R (macro.scripturefont) 2310 0 R (macro.scriptureoff) 1802 0 R (macro.scriptureon) 1801 0 R]
+/Limits [(macro.sclearpage) (macro.scriptureon)]
+>>
+endobj
+3307 0 obj
+<<
+/Names [(macro.sepindexesfalse) 2362 0 R (macro.sepindexestrue) 2361 0 R (macro.sepverses) 2275 0 R (macro.setlicense) 1846 0 R (macro.sharpsymbol) 2208 0 R (macro.shiftdblquotes) 2467 0 R]
+/Limits [(macro.sepindexesfalse) (macro.shiftdblquotes)]
+>>
+endobj
+3308 0 obj
+<<
+/Names [(macro.showauthors) 2244 0 R (macro.showindex) 2132 0 R (macro.showrefs) 2245 0 R (macro.shrp) 1901 0 R (macro.slides) 1765 0 R (macro.snumbgcolor) 2205 0 R]
+/Limits [(macro.showauthors) (macro.snumbgcolor)]
+>>
+endobj
+3309 0 obj
+<<
+/Names [(macro.solfedge) 2051 0 R (macro.songauthors) 2277 0 R (macro.songchapter) 2109 0 R (macro.songcolumns) 2219 0 R (macro.songcopyright) 2247 0 R (macro.songlicense) 2248 0 R]
+/Limits [(macro.solfedge) (macro.songlicense)]
+>>
+endobj
+3310 0 obj
+<<
+/Names [(macro.songlink) 2394 0 R (macro.songlist) 2478 0 R (macro.songmark) 2426 0 R (macro.songnumwidth) 2170 0 R (macro.songpos) 2349 0 R (macro.songrefs) 2278 0 R]
+/Limits [(macro.songlink) (macro.songrefs)]
+>>
+endobj
+3311 0 obj
+<<
+/Names [(macro.songsection) 2108 0 R (macro.songtarget) 2393 0 R (macro.songtitle) 2280 0 R (macro.spenalty) 2220 0 R (macro.stitlefont) 2189 0 R (macro.strophe) 2100 0 R]
+/Limits [(macro.songsection) (macro.strophe)]
+>>
+endobj
+3312 0 obj
+<<
+/Names [(macro.textnote) 1971 0 R (macro.thesongnum) 2168 0 R (macro.theversenum) 2174 0 R (macro.titleprefixword) 2400 0 R (macro.transpose) 1775 0 R (macro.transposehere) 2057 0 R]
+/Limits [(macro.textnote) (macro.transposehere)]
+>>
+endobj
+3313 0 obj
+<<
+/Names [(macro.trchordformat) 2032 0 R (macro.vcpenalty) 2272 0 R (macro.versefont) 2190 0 R (macro.versejustify) 2304 0 R (macro.versemark) 2427 0 R (macro.versenumwidth) 2185 0 R]
+/Limits [(macro.trchordformat) (macro.versenumwidth)]
+>>
+endobj
+3314 0 obj
+<<
+/Names [(macro.versesep) 2215 0 R (macro.vvpenalty) 2270 0 R (mimpl-Acolon.3) 1426 0 R (mimpl-Bcolon.3) 1430 0 R (mimpl-DeclareLyricChar.3) 1530 0 R (mimpl-DeclareNoHyphen.3) 1538 0 R]
+/Limits [(macro.versesep) (mimpl-DeclareNoHyphen.3)]
+>>
+endobj
+3315 0 obj
+<<
+/Names [(mimpl-DeclareNonLyric.3) 1534 0 R (mimpl-MultiwordChords.3) 1542 0 R (mimpl-[.3) 1550 0 R (mimpl-afterpreludeskip.3) 1062 0 R (mimpl-alphascale.3) 1466 0 R (mimpl-authbyword.3) 1662 0 R]
+/Limits [(mimpl-DeclareNonLyric.3) (mimpl-authbyword.3)]
+>>
+endobj
+3316 0 obj
+<<
+/Names [(mimpl-authignoreword.3) 1666 0 R (mimpl-authsepword.3) 1658 0 R (mimpl-baselineadj.3) 1070 0 R (mimpl-beforepostludeskip.3) 1066 0 R (mimpl-brk.3) 1386 0 R (mimpl-brkpenalty.3) 1106 0 R]
+/Limits [(mimpl-authignoreword.3) (mimpl-brkpenalty.3)]
+>>
+endobj
+3317 0 obj
+<<
+/Names [(mimpl-capo.3) 1478 0 R (mimpl-ccpenalty.3) 1094 0 R (mimpl-ch.3) 1570 0 R (mimpl-chordlocals.3) 1054 0 R (mimpl-chordsoff.3) 1218 0 R (mimpl-chordson.3) 1214 0 R]
+/Limits [(mimpl-capo.3) (mimpl-chordson.3)]
+>>
+endobj
+3318 0 obj
+<<
+/Names [(mimpl-chorusfont.3) 970 0 R (mimpl-chorusjustify.3) 1010 0 R (mimpl-chorusmark.3) 1122 0 R (mimpl-clineparams.3) 1074 0 R (mimpl-commitsongs.3) 1298 0 R (mimpl-cvpenalty.3) 1102 0 R]
+/Limits [(mimpl-chorusfont.3) (mimpl-cvpenalty.3)]
+>>
+endobj
+3319 0 obj
+<<
+/Names [(mimpl-echo.3) 1398 0 R (mimpl-echofont.3) 982 0 R (mimpl-everychorus.3) 1046 0 R (mimpl-everyverse.3) 1042 0 R (mimpl-extendpostlude.3) 1130 0 R (mimpl-extendprelude.3) 1126 0 R]
+/Limits [(mimpl-echo.3) (mimpl-extendprelude.3)]
+>>
+endobj
+3320 0 obj
+<<
+/Names [(mimpl-flatsymbol.3) 1558 0 R (mimpl-flt.3) 1566 0 R (mimpl-foreachtitle.3) 1326 0 R (mimpl-gtab.3) 1602 0 R (mimpl-gtabtrans.3) 1598 0 R (mimpl-idxauthfont.3) 1150 0 R]
+/Limits [(mimpl-flatsymbol.3) (mimpl-idxauthfont.3)]
+>>
+endobj
+3321 0 obj
+<<
+/Names [(mimpl-idxbgcolor.3) 1002 0 R (mimpl-idxbook.3) 1158 0 R (mimpl-idxcont.3) 1162 0 R (mimpl-idxheadfont.3) 1134 0 R (mimpl-idxheadwidth.3) 1078 0 R (mimpl-idxlyricfont.3) 1142 0 R]
+/Limits [(mimpl-idxbgcolor.3) (mimpl-idxlyricfont.3)]
+>>
+endobj
+3322 0 obj
+<<
+/Names [(mimpl-idxrefsfont.3) 1154 0 R (mimpl-idxscripfont.3) 1146 0 R (mimpl-idxtitlefont.3) 1138 0 R (mimpl-includeonlysongs.3) 1274 0 R (mimpl-indexentry.3) 1646 0 R (mimpl-indexesoff.3) 1198 0 R]
+/Limits [(mimpl-idxrefsfont.3) (mimpl-indexesoff.3)]
+>>
+endobj
+3323 0 obj
+<<
+/Names [(mimpl-indexeson.3) 1194 0 R (mimpl-indexsongsas.3) 1654 0 R (mimpl-indextitleentry.3) 1650 0 R (mimpl-lrep.3) 1518 0 R (mimpl-lyricfont.3) 958 0 R (mimpl-makepostlude.3) 1362 0 R]
+/Limits [(mimpl-indexeson.3) (mimpl-makepostlude.3)]
+>>
+endobj
+3324 0 obj
+<<
+/Names [(mimpl-makeprelude.3) 1358 0 R (mimpl-mbar.3) 1510 0 R (mimpl-mch.3) 1574 0 R (mimpl-measurebar.3) 1514 0 R (mimpl-measuresoff.3) 1234 0 R (mimpl-measureson.3) 1230 0 R]
+/Limits [(mimpl-makeprelude.3) (mimpl-measureson.3)]
+>>
+endobj
+3325 0 obj
+<<
+/Names [(mimpl-memorize.3) 1586 0 R (mimpl-meter.3) 1506 0 R (mimpl-meterfont.3) 978 0 R (mimpl-musicnote.3) 1394 0 R (mimpl-newauthorindex.3) 1642 0 R (mimpl-newchords.3) 1582 0 R]
+/Limits [(mimpl-memorize.3) (mimpl-newchords.3)]
+>>
+endobj
+3326 0 obj
+<<
+/Names [(mimpl-newindex.3) 1634 0 R (mimpl-newscripindex.3) 1638 0 R (mimpl-newsongkey.3) 1350 0 R (mimpl-nextcol.3) 1302 0 R (mimpl-nexttitle.3) 1322 0 R (mimpl-norepchoruses.3) 1290 0 R]
+/Limits [(mimpl-newindex.3) (mimpl-norepchoruses.3)]
+>>
+endobj
+3327 0 obj
+<<
+/Names [(mimpl-nosongnumbers.3) 1278 0 R (mimpl-notebgcolor.3) 998 0 R (mimpl-notefont.3) 974 0 R (mimpl-notejustify.3) 1014 0 R (mimpl-notenames.3) 1462 0 R (mimpl-notenamesin.3) 1454 0 R]
+/Limits [(mimpl-nosongnumbers.3) (mimpl-notenamesin.3)]
+>>
+endobj
+3328 0 obj
+<<
+/Names [(mimpl-notenamesout.3) 1458 0 R (mimpl-notrans.3) 1494 0 R (mimpl-noversenumbers.3) 1282 0 R (mimpl-onesongcolumn.3) 1262 0 R (mimpl-placenote.3) 1018 0 R (mimpl-placeversenum.3) 1038 0 R]
+/Limits [(mimpl-notenamesout.3) (mimpl-placeversenum.3)]
+>>
+endobj
+3329 0 obj
+<<
+/Names [(mimpl-preferflats.3) 1486 0 R (mimpl-prefersharps.3) 1482 0 R (mimpl-printchord.3) 1050 0 R (mimpl-printscrcite.3) 990 0 R (mimpl-printsongnum.3) 1030 0 R (mimpl-printversenum.3) 1034 0 R]
+/Limits [(mimpl-preferflats.3) (mimpl-printversenum.3)]
+>>
+endobj
+3330 0 obj
+<<
+/Names [(mimpl-rep.3) 1402 0 R (mimpl-repchoruses.3) 1286 0 R (mimpl-replay.3) 1590 0 R (mimpl-resettitles.3) 1318 0 R (mimpl-rrep.3) 1522 0 R (mimpl-scitehere.3) 1422 0 R]
+/Limits [(mimpl-rep.3) (mimpl-scitehere.3)]
+>>
+endobj
+3331 0 obj
+<<
+/Names [(mimpl-scleardpage.3) 1310 0 R (mimpl-sclearpage.3) 1306 0 R (mimpl-scripindent.3) 1438 0 R (mimpl-scripoutdent.3) 1442 0 R (mimpl-scripturefont.3) 986 0 R (mimpl-scriptureoff.3) 1250 0 R]
+/Limits [(mimpl-scleardpage.3) (mimpl-scriptureoff.3)]
+>>
+endobj
+3332 0 obj
+<<
+/Names [(mimpl-scriptureon.3) 1246 0 R (mimpl-setlicense.3) 1346 0 R (mimpl-sharpsymbol.3) 1554 0 R (mimpl-shiftdblquotes.3) 1446 0 R (mimpl-showauthors.3) 1366 0 R (mimpl-showindex.3) 1674 0 R]
+/Limits [(mimpl-scriptureon.3) (mimpl-showindex.3)]
+>>
+endobj
+3333 0 obj
+<<
+/Names [(mimpl-showrefs.3) 1370 0 R (mimpl-shrp.3) 1562 0 R (mimpl-slides.3) 1174 0 R (mimpl-snumbgcolor.3) 994 0 R (mimpl-solfedge.3) 1470 0 R (mimpl-songauthors.3) 1330 0 R]
+/Limits [(mimpl-showrefs.3) (mimpl-songauthors.3)]
+>>
+endobj
+3334 0 obj
+<<
+/Names [(mimpl-songchapter.3) 1610 0 R (mimpl-songcolumns.3) 1270 0 R (mimpl-songcopyright.3) 1334 0 R (mimpl-songlicense.3) 1338 0 R (mimpl-songlink.3) 1630 0 R (mimpl-songmark.3) 1114 0 R]
+/Limits [(mimpl-songchapter.3) (mimpl-songmark.3)]
+>>
+endobj
+3335 0 obj
+<<
+/Names [(mimpl-songnumwidth.3) 1082 0 R (mimpl-songrefs.3) 1342 0 R (mimpl-songsection.3) 1614 0 R (mimpl-songtarget.3) 1626 0 R (mimpl-spenalty.3) 1110 0 R (mimpl-stitlefont.3) 962 0 R]
+/Limits [(mimpl-songnumwidth.3) (mimpl-stitlefont.3)]
+>>
+endobj
+3336 0 obj
+<<
+/Names [(mimpl-strophe.3) 1434 0 R (mimpl-textnote.3) 1390 0 R (mimpl-thesongnum.3) 1022 0 R (mimpl-theversenum.3) 1026 0 R (mimpl-titleprefixword.3) 1670 0 R (mimpl-transpose.3) 1474 0 R]
+/Limits [(mimpl-strophe.3) (mimpl-transpose.3)]
+>>
+endobj
+3337 0 obj
+<<
+/Names [(mimpl-transposehere.3) 1490 0 R (mimpl-trchordformat.3) 1498 0 R (mimpl-twosongcolumns.3) 1266 0 R (mimpl-vcpenalty.3) 1098 0 R (mimpl-versefont.3) 966 0 R (mimpl-versejustify.3) 1006 0 R]
+/Limits [(mimpl-transposehere.3) (mimpl-versejustify.3)]
+>>
+endobj
+3338 0 obj
+<<
+/Names [(mimpl-versemark.3) 1118 0 R (mimpl-versenumwidth.3) 1086 0 R (mimpl-versesep.3) 1058 0 R (mimpl-vvpenalty.3) 1090 0 R (page.1) 1699 0 R (page.10) 1880 0 R]
+/Limits [(mimpl-versemark.3) (page.10)]
+>>
+endobj
+3339 0 obj
+<<
+/Names [(page.100) 2754 0 R (page.101) 2758 0 R (page.102) 2762 0 R (page.103) 2766 0 R (page.104) 2771 0 R (page.105) 2775 0 R]
+/Limits [(page.100) (page.105)]
+>>
+endobj
+3340 0 obj
+<<
+/Names [(page.106) 2779 0 R (page.107) 2783 0 R (page.108) 2787 0 R (page.109) 2791 0 R (page.11) 1899 0 R (page.110) 2796 0 R]
+/Limits [(page.106) (page.110)]
+>>
+endobj
+3341 0 obj
+<<
+/Names [(page.111) 2800 0 R (page.112) 2804 0 R (page.113) 2808 0 R (page.114) 2812 0 R (page.115) 2816 0 R (page.116) 2821 0 R]
+/Limits [(page.111) (page.116)]
+>>
+endobj
+3342 0 obj
+<<
+/Names [(page.117) 2825 0 R (page.118) 2829 0 R (page.119) 2833 0 R (page.12) 1919 0 R (page.120) 2837 0 R (page.121) 2841 0 R]
+/Limits [(page.117) (page.121)]
+>>
+endobj
+3343 0 obj
+<<
+/Names [(page.122) 2846 0 R (page.123) 2850 0 R (page.124) 2854 0 R (page.125) 2858 0 R (page.126) 2862 0 R (page.127) 2866 0 R]
+/Limits [(page.122) (page.127)]
+>>
+endobj
+3344 0 obj
+<<
+/Names [(page.128) 2871 0 R (page.129) 2876 0 R (page.13) 1933 0 R (page.130) 2880 0 R (page.131) 2884 0 R (page.132) 2888 0 R]
+/Limits [(page.128) (page.132)]
+>>
+endobj
+3345 0 obj
+<<
+/Names [(page.133) 2892 0 R (page.134) 2897 0 R (page.135) 2901 0 R (page.136) 2905 0 R (page.137) 2909 0 R (page.138) 2913 0 R]
+/Limits [(page.133) (page.138)]
+>>
+endobj
+3346 0 obj
+<<
+/Names [(page.139) 2917 0 R (page.14) 1949 0 R (page.140) 2922 0 R (page.141) 2926 0 R (page.142) 2930 0 R (page.143) 2934 0 R]
+/Limits [(page.139) (page.143)]
+>>
+endobj
+3347 0 obj
+<<
+/Names [(page.144) 2938 0 R (page.145) 2942 0 R (page.146) 2954 0 R (page.147) 2962 0 R (page.148) 2966 0 R (page.149) 2970 0 R]
+/Limits [(page.144) (page.149)]
+>>
+endobj
+3348 0 obj
+<<
+/Names [(page.15) 1960 0 R (page.150) 2974 0 R (page.151) 2978 0 R (page.152) 2983 0 R (page.153) 2987 0 R (page.154) 2991 0 R]
+/Limits [(page.15) (page.154)]
+>>
+endobj
+3349 0 obj
+<<
+/Names [(page.155) 2995 0 R (page.156) 2999 0 R (page.157) 3003 0 R (page.158) 3008 0 R (page.159) 3012 0 R (page.16) 1982 0 R]
+/Limits [(page.155) (page.16)]
+>>
+endobj
+3350 0 obj
+<<
+/Names [(page.160) 3016 0 R (page.161) 3020 0 R (page.162) 3024 0 R (page.163) 3028 0 R (page.164) 3033 0 R (page.165) 3037 0 R]
+/Limits [(page.160) (page.165)]
+>>
+endobj
+3351 0 obj
+<<
+/Names [(page.166) 3041 0 R (page.167) 3045 0 R (page.168) 3049 0 R (page.169) 3053 0 R (page.17) 1994 0 R (page.170) 3058 0 R]
+/Limits [(page.166) (page.170)]
+>>
+endobj
+3352 0 obj
+<<
+/Names [(page.171) 3062 0 R (page.172) 3066 0 R (page.173) 3070 0 R (page.174) 3074 0 R (page.175) 3078 0 R (page.176) 3083 0 R]
+/Limits [(page.171) (page.176)]
+>>
+endobj
+3353 0 obj
+<<
+/Names [(page.177) 3087 0 R (page.178) 3091 0 R (page.179) 3095 0 R (page.18) 2006 0 R (page.180) 3099 0 R (page.181) 3103 0 R]
+/Limits [(page.177) (page.181)]
+>>
+endobj
+3354 0 obj
+<<
+/Names [(page.182) 3108 0 R (page.19) 2025 0 R (page.2) 1726 0 R (page.20) 2049 0 R (page.21) 2073 0 R (page.22) 2087 0 R]
+/Limits [(page.182) (page.22)]
+>>
+endobj
+3355 0 obj
+<<
+/Names [(page.23) 2098 0 R (page.24) 2107 0 R (page.25) 2131 0 R (page.26) 2153 0 R (page.27) 2165 0 R (page.28) 2183 0 R]
+/Limits [(page.23) (page.28)]
+>>
+endobj
+3356 0 obj
+<<
+/Names [(page.29) 2203 0 R (page.3) 1733 0 R (page.30) 2238 0 R (page.31) 2266 0 R (page.32) 2302 0 R (page.33) 2331 0 R]
+/Limits [(page.29) (page.33)]
+>>
+endobj
+3357 0 obj
+<<
+/Names [(page.34) 2345 0 R (page.35) 2358 0 R (page.36) 2378 0 R (page.37) 2392 0 R (page.38) 2399 0 R (page.39) 2425 0 R]
+/Limits [(page.34) (page.39)]
+>>
+endobj
+3358 0 obj
+<<
+/Names [(page.4) 1755 0 R (page.40) 2436 0 R (page.41) 2464 0 R (page.42) 2477 0 R (page.43) 2483 0 R (page.44) 2492 0 R]
+/Limits [(page.4) (page.44)]
+>>
+endobj
+3359 0 obj
+<<
+/Names [(page.45) 2501 0 R (page.46) 2510 0 R (page.47) 2518 0 R (page.48) 2531 0 R (page.49) 2535 0 R (page.5) 1793 0 R]
+/Limits [(page.45) (page.5)]
+>>
+endobj
+3360 0 obj
+<<
+/Names [(page.50) 2540 0 R (page.51) 2544 0 R (page.52) 2548 0 R (page.53) 2552 0 R (page.54) 2556 0 R (page.55) 2561 0 R]
+/Limits [(page.50) (page.55)]
+>>
+endobj
+3361 0 obj
+<<
+/Names [(page.56) 2566 0 R (page.57) 2570 0 R (page.58) 2574 0 R (page.59) 2579 0 R (page.6) 1822 0 R (page.60) 2583 0 R]
+/Limits [(page.56) (page.60)]
+>>
+endobj
+3362 0 obj
+<<
+/Names [(page.61) 2587 0 R (page.62) 2592 0 R (page.63) 2600 0 R (page.64) 2604 0 R (page.65) 2608 0 R (page.66) 2612 0 R]
+/Limits [(page.61) (page.66)]
+>>
+endobj
+3363 0 obj
+<<
+/Names [(page.67) 2616 0 R (page.68) 2621 0 R (page.69) 2625 0 R (page.7) 1841 0 R (page.70) 2629 0 R (page.71) 2633 0 R]
+/Limits [(page.67) (page.71)]
+>>
+endobj
+3364 0 obj
+<<
+/Names [(page.72) 2637 0 R (page.73) 2641 0 R (page.74) 2646 0 R (page.75) 2650 0 R (page.76) 2654 0 R (page.77) 2658 0 R]
+/Limits [(page.72) (page.77)]
+>>
+endobj
+3365 0 obj
+<<
+/Names [(page.78) 2662 0 R (page.79) 2666 0 R (page.8) 1859 0 R (page.80) 2671 0 R (page.81) 2675 0 R (page.82) 2679 0 R]
+/Limits [(page.78) (page.82)]
+>>
+endobj
+3366 0 obj
+<<
+/Names [(page.83) 2683 0 R (page.84) 2687 0 R (page.85) 2691 0 R (page.86) 2696 0 R (page.87) 2700 0 R (page.88) 2704 0 R]
+/Limits [(page.83) (page.88)]
+>>
+endobj
+3367 0 obj
+<<
+/Names [(page.89) 2708 0 R (page.9) 1874 0 R (page.90) 2712 0 R (page.91) 2716 0 R (page.92) 2721 0 R (page.93) 2725 0 R]
+/Limits [(page.89) (page.93)]
+>>
+endobj
+3368 0 obj
+<<
+/Names [(page.94) 2729 0 R (page.95) 2733 0 R (page.96) 2737 0 R (page.97) 2741 0 R (page.98) 2746 0 R (page.99) 2750 0 R]
+/Limits [(page.94) (page.99)]
+>>
+endobj
+3369 0 obj
+<<
+/Names [(pipedef.3) 282 0 R (section*.1) 1734 0 R (section*.10) 1823 0 R (section*.11) 1827 0 R (section*.12) 1842 0 R (section*.13) 1844 0 R]
+/Limits [(pipedef.3) (section*.13)]
+>>
+endobj
+3370 0 obj
+<<
+/Names [(section*.14) 1847 0 R (section*.15) 1861 0 R (section*.16) 1881 0 R (section*.17) 1883 0 R (section*.18) 1887 0 R (section*.19) 1900 0 R]
+/Limits [(section*.14) (section*.19)]
+>>
+endobj
+3371 0 obj
+<<
+/Names [(section*.2) 1757 0 R (section*.20) 1921 0 R (section*.21) 1922 0 R (section*.22) 1935 0 R (section*.23) 1938 0 R (section*.24) 1950 0 R]
+/Limits [(section*.2) (section*.24)]
+>>
+endobj
+3372 0 obj
+<<
+/Names [(section*.25) 1951 0 R (section*.26) 1952 0 R (section*.27) 1961 0 R (section*.28) 1983 0 R (section*.29) 2008 0 R (section*.3) 1766 0 R]
+/Limits [(section*.25) (section*.3)]
+>>
+endobj
+3373 0 obj
+<<
+/Names [(section*.30) 2026 0 R (section*.31) 2030 0 R (section*.32) 2031 0 R (section*.33) 2050 0 R (section*.34) 2056 0 R (section*.35) 2074 0 R]
+/Limits [(section*.30) (section*.35)]
+>>
+endobj
+3374 0 obj
+<<
+/Names [(section*.36) 2089 0 R (section*.37) 2092 0 R (section*.38) 2099 0 R (section*.39) 2101 0 R (section*.4) 1771 0 R (section*.40) 2133 0 R]
+/Limits [(section*.36) (section*.40)]
+>>
+endobj
+3375 0 obj
+<<
+/Names [(section*.41) 2135 0 R (section*.42) 2166 0 R (section*.43) 2172 0 R (section*.44) 2187 0 R (section*.45) 2207 0 R (section*.46) 2211 0 R]
+/Limits [(section*.41) (section*.46)]
+>>
+endobj
+3376 0 obj
+<<
+/Names [(section*.47) 2214 0 R (section*.48) 2242 0 R (section*.49) 2269 0 R (section*.5) 1794 0 R (section*.50) 2303 0 R (section*.51) 2359 0 R]
+/Limits [(section*.47) (section*.51)]
+>>
+endobj
+3377 0 obj
+<<
+/Names [(section*.52) 2360 0 R (section*.53) 2364 0 R (section*.54) 2437 0 R (section*.55) 2466 0 R (section*.56) 2479 0 R (section*.57) 2484 0 R]
+/Limits [(section*.52) (section*.57)]
+>>
+endobj
+3378 0 obj
+<<
+/Names [(section*.58) 2485 0 R (section*.59) 2486 0 R (section*.6) 1799 0 R (section*.60) 2487 0 R (section*.7) 1803 0 R (section*.8) 1805 0 R]
+/Limits [(section*.58) (section*.8)]
+>>
+endobj
+3379 0 obj
+<<
+/Names [(section*.9) 1807 0 R (section.1) 2 0 R (section.10) 450 0 R (section.11) 498 0 R (section.12) 898 0 R (section.13) 938 0 R]
+/Limits [(section*.9) (section.13)]
+>>
+endobj
+3380 0 obj
+<<
+/Names [(section.14) 942 0 R (section.15) 946 0 R (section.2) 6 0 R (section.3) 10 0 R (section.4) 14 0 R (section.5) 102 0 R]
+/Limits [(section.14) (section.5)]
+>>
+endobj
+3381 0 obj
+<<
+/Names [(section.6) 322 0 R (section.7) 334 0 R (section.8) 386 0 R (section.9) 438 0 R (subsection.10.1) 454 0 R (subsection.10.2) 474 0 R]
+/Limits [(section.6) (subsection.10.2)]
+>>
+endobj
+3382 0 obj
+<<
+/Names [(subsection.10.3) 494 0 R (subsection.11.1) 502 0 R (subsection.11.2) 550 0 R (subsection.11.3) 710 0 R (subsection.11.4) 722 0 R (subsection.11.5) 730 0 R]
+/Limits [(subsection.10.3) (subsection.11.5)]
+>>
+endobj
+3383 0 obj
+<<
+/Names [(subsection.11.6) 762 0 R (subsection.11.7) 862 0 R (subsection.11.8) 878 0 R (subsection.11.9) 886 0 R (subsection.15.1) 950 0 R (subsection.15.10) 1526 0 R]
+/Limits [(subsection.11.6) (subsection.15.10)]
+>>
+endobj
+3384 0 obj
+<<
+/Names [(subsection.15.11) 1546 0 R (subsection.15.12) 1578 0 R (subsection.15.13) 1594 0 R (subsection.15.14) 1606 0 R (subsection.15.15) 1622 0 R (subsection.15.16) 1678 0 R]
+/Limits [(subsection.15.11) (subsection.15.16)]
+>>
+endobj
+3385 0 obj
+<<
+/Names [(subsection.15.17) 1682 0 R (subsection.15.18) 1686 0 R (subsection.15.19) 1690 0 R (subsection.15.2) 954 0 R (subsection.15.3) 1166 0 R (subsection.15.4) 1294 0 R]
+/Limits [(subsection.15.17) (subsection.15.4)]
+>>
+endobj
+3386 0 obj
+<<
+/Names [(subsection.15.5) 1314 0 R (subsection.15.6) 1374 0 R (subsection.15.7) 1406 0 R (subsection.15.8) 1450 0 R (subsection.15.9) 1502 0 R (subsection.5.1) 106 0 R]
+/Limits [(subsection.15.5) (subsection.5.1)]
+>>
+endobj
+3387 0 obj
+<<
+/Names [(subsection.5.2) 142 0 R (subsection.5.3) 162 0 R (subsection.5.4) 206 0 R (subsection.5.5) 234 0 R (subsection.5.6) 254 0 R (subsection.5.7) 274 0 R]
+/Limits [(subsection.5.2) (subsection.5.7)]
+>>
+endobj
+3388 0 obj
+<<
+/Names [(subsection.5.8) 294 0 R (subsection.5.9) 310 0 R (subsection.8.1) 390 0 R (subsection.8.2) 406 0 R (subsubsection.11.6.1) 766 0 R (subsubsection.11.6.2) 818 0 R]
+/Limits [(subsection.5.8) (subsubsection.11.6.2)]
+>>
+endobj
+3389 0 obj
+<<
+/Names [(subsubsection.11.6.3) 826 0 R (subsubsection.11.6.4) 838 0 R (subsubsection.11.6.5) 842 0 R (table.1) 2321 0 R]
+/Limits [(subsubsection.11.6.3) (table.1)]
+>>
+endobj
+3390 0 obj
+<<
+/Kids [3239 0 R 3240 0 R 3241 0 R 3242 0 R 3243 0 R 3244 0 R]
+/Limits [(Doc-Start) (eimpl-intersong.3)]
+>>
+endobj
+3391 0 obj
+<<
+/Kids [3245 0 R 3246 0 R 3247 0 R 3248 0 R 3249 0 R 3250 0 R]
+/Limits [(eimpl-lyric.3) (env.pipe)]
+>>
+endobj
+3392 0 obj
+<<
+/Kids [3251 0 R 3252 0 R 3253 0 R 3254 0 R 3255 0 R 3256 0 R]
+/Limits [(env.rawtext) (hatdef.3)]
+>>
+endobj
+3393 0 obj
+<<
+/Kids [3257 0 R 3258 0 R 3259 0 R 3260 0 R 3261 0 R 3262 0 R]
+/Limits [(macdef-Acolon.3) (macdef-echofont.3)]
+>>
+endobj
+3394 0 obj
+<<
+/Kids [3263 0 R 3264 0 R 3265 0 R 3266 0 R 3267 0 R 3268 0 R]
+/Limits [(macdef-endchorus.3) (macdef-makepostlude.3)]
+>>
+endobj
+3395 0 obj
+<<
+/Kids [3269 0 R 3270 0 R 3271 0 R 3272 0 R 3273 0 R 3274 0 R]
+/Limits [(macdef-makeprelude.3) (macdef-printscrcite.3)]
+>>
+endobj
+3396 0 obj
+<<
+/Kids [3275 0 R 3276 0 R 3277 0 R 3278 0 R 3279 0 R 3280 0 R]
+/Limits [(macdef-printsongnum.3) (macdef-songmark.3)]
+>>
+endobj
+3397 0 obj
+<<
+/Kids [3281 0 R 3282 0 R 3283 0 R 3284 0 R 3285 0 R 3286 0 R]
+/Limits [(macdef-songnumwidth.3) (macro.baselineadj)]
+>>
+endobj
+3398 0 obj
+<<
+/Kids [3287 0 R 3288 0 R 3289 0 R 3290 0 R 3291 0 R 3292 0 R]
+/Limits [(macro.beforepostludeskip) (macro.gtabtrans)]
+>>
+endobj
+3399 0 obj
+<<
+/Kids [3293 0 R 3294 0 R 3295 0 R 3296 0 R 3297 0 R 3298 0 R]
+/Limits [(macro.idxauthfont) (macro.mch)]
+>>
+endobj
+3400 0 obj
+<<
+/Kids [3299 0 R 3300 0 R 3301 0 R 3302 0 R 3303 0 R 3304 0 R]
+/Limits [(macro.measurebar) (macro.rep)]
+>>
+endobj
+3401 0 obj
+<<
+/Kids [3305 0 R 3306 0 R 3307 0 R 3308 0 R 3309 0 R 3310 0 R]
+/Limits [(macro.repchoruses) (macro.songrefs)]
+>>
+endobj
+3402 0 obj
+<<
+/Kids [3311 0 R 3312 0 R 3313 0 R 3314 0 R 3315 0 R 3316 0 R]
+/Limits [(macro.songsection) (mimpl-brkpenalty.3)]
+>>
+endobj
+3403 0 obj
+<<
+/Kids [3317 0 R 3318 0 R 3319 0 R 3320 0 R 3321 0 R 3322 0 R]
+/Limits [(mimpl-capo.3) (mimpl-indexesoff.3)]
+>>
+endobj
+3404 0 obj
+<<
+/Kids [3323 0 R 3324 0 R 3325 0 R 3326 0 R 3327 0 R 3328 0 R]
+/Limits [(mimpl-indexeson.3) (mimpl-placeversenum.3)]
+>>
+endobj
+3405 0 obj
+<<
+/Kids [3329 0 R 3330 0 R 3331 0 R 3332 0 R 3333 0 R 3334 0 R]
+/Limits [(mimpl-preferflats.3) (mimpl-songmark.3)]
+>>
+endobj
+3406 0 obj
+<<
+/Kids [3335 0 R 3336 0 R 3337 0 R 3338 0 R 3339 0 R 3340 0 R]
+/Limits [(mimpl-songnumwidth.3) (page.110)]
+>>
+endobj
+3407 0 obj
+<<
+/Kids [3341 0 R 3342 0 R 3343 0 R 3344 0 R 3345 0 R 3346 0 R]
+/Limits [(page.111) (page.143)]
+>>
+endobj
+3408 0 obj
+<<
+/Kids [3347 0 R 3348 0 R 3349 0 R 3350 0 R 3351 0 R 3352 0 R]
+/Limits [(page.144) (page.176)]
+>>
+endobj
+3409 0 obj
+<<
+/Kids [3353 0 R 3354 0 R 3355 0 R 3356 0 R 3357 0 R 3358 0 R]
+/Limits [(page.177) (page.44)]
+>>
+endobj
+3410 0 obj
+<<
+/Kids [3359 0 R 3360 0 R 3361 0 R 3362 0 R 3363 0 R 3364 0 R]
+/Limits [(page.45) (page.77)]
+>>
+endobj
+3411 0 obj
+<<
+/Kids [3365 0 R 3366 0 R 3367 0 R 3368 0 R 3369 0 R 3370 0 R]
+/Limits [(page.78) (section*.19)]
+>>
+endobj
+3412 0 obj
+<<
+/Kids [3371 0 R 3372 0 R 3373 0 R 3374 0 R 3375 0 R 3376 0 R]
+/Limits [(section*.2) (section*.51)]
+>>
+endobj
+3413 0 obj
+<<
+/Kids [3377 0 R 3378 0 R 3379 0 R 3380 0 R 3381 0 R 3382 0 R]
+/Limits [(section*.52) (subsection.11.5)]
+>>
+endobj
+3414 0 obj
+<<
+/Kids [3383 0 R 3384 0 R 3385 0 R 3386 0 R 3387 0 R 3388 0 R]
+/Limits [(subsection.11.6) (subsubsection.11.6.2)]
+>>
+endobj
+3415 0 obj
+<<
+/Kids [3389 0 R]
+/Limits [(subsubsection.11.6.3) (table.1)]
+>>
+endobj
+3416 0 obj
+<<
+/Kids [3390 0 R 3391 0 R 3392 0 R 3393 0 R 3394 0 R 3395 0 R]
+/Limits [(Doc-Start) (macdef-printscrcite.3)]
+>>
+endobj
+3417 0 obj
+<<
+/Kids [3396 0 R 3397 0 R 3398 0 R 3399 0 R 3400 0 R 3401 0 R]
+/Limits [(macdef-printsongnum.3) (macro.songrefs)]
+>>
+endobj
+3418 0 obj
+<<
+/Kids [3402 0 R 3403 0 R 3404 0 R 3405 0 R 3406 0 R 3407 0 R]
+/Limits [(macro.songsection) (page.143)]
+>>
+endobj
+3419 0 obj
+<<
+/Kids [3408 0 R 3409 0 R 3410 0 R 3411 0 R 3412 0 R 3413 0 R]
+/Limits [(page.144) (subsection.11.5)]
+>>
+endobj
+3420 0 obj
+<<
+/Kids [3414 0 R 3415 0 R]
+/Limits [(subsection.11.6) (table.1)]
+>>
+endobj
+3421 0 obj
+<<
+/Kids [3416 0 R 3417 0 R 3418 0 R 3419 0 R 3420 0 R]
+/Limits [(Doc-Start) (table.1)]
+>>
+endobj
+3422 0 obj
+<<
+/Dests 3421 0 R
+>>
+endobj
+3423 0 obj
+<<
+/Type /Catalog
+/Pages 3237 0 R
+/Outlines 3238 0 R
+/Names 3422 0 R
+/PageMode/UseOutlines
+/OpenAction 1693 0 R
+>>
+endobj
+3424 0 obj
+<<
+/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.17)/Keywords()
+/CreationDate (D:20180921113030-05'00')
+/ModDate (D:20180921113030-05'00')
+/Trapped /False
+/PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6211 (1.40.17))
+>>
+endobj
+xref
+0 3425
+0000000000 65535 f
+0000000015 00000 n
+0000041097 00000 n
+0001359656 00000 n
+0000000060 00000 n
+0000000090 00000 n
+0000041158 00000 n
+0001359571 00000 n
+0000000135 00000 n
+0000000165 00000 n
+0000044160 00000 n
+0001359484 00000 n
+0000000210 00000 n
+0000000244 00000 n
+0000052929 00000 n
+0001359356 00000 n
+0000000290 00000 n
+0000000335 00000 n
+0000052991 00000 n
+0001359282 00000 n
+0000000386 00000 n
+0000000410 00000 n
+0000053180 00000 n
+0001359195 00000 n
+0000000463 00000 n
+0000000489 00000 n
+0000053306 00000 n
+0001359108 00000 n
+0000000541 00000 n
+0000000566 00000 n
+0000053432 00000 n
+0001359021 00000 n
+0000000619 00000 n
+0000000645 00000 n
+0000053558 00000 n
+0001358934 00000 n
+0000000699 00000 n
+0000000730 00000 n
+0000053684 00000 n
+0001358847 00000 n
+0000000785 00000 n
+0000000817 00000 n
+0000053810 00000 n
+0001358760 00000 n
+0000000869 00000 n
+0000000898 00000 n
+0000053936 00000 n
+0001358673 00000 n
+0000000954 00000 n
+0000000983 00000 n
+0000054126 00000 n
+0001358586 00000 n
+0000001041 00000 n
+0000001072 00000 n
+0000054252 00000 n
+0001358499 00000 n
+0000001128 00000 n
+0000001161 00000 n
+0000054378 00000 n
+0001358412 00000 n
+0000001218 00000 n
+0000001252 00000 n
+0000054504 00000 n
+0001358325 00000 n
+0000001312 00000 n
+0000001345 00000 n
+0000060883 00000 n
+0001358238 00000 n
+0000001400 00000 n
+0000001428 00000 n
+0000061072 00000 n
+0001358151 00000 n
+0000001483 00000 n
+0000001515 00000 n
+0000061198 00000 n
+0001358064 00000 n
+0000001571 00000 n
+0000001604 00000 n
+0000061324 00000 n
+0001357977 00000 n
+0000001660 00000 n
+0000001689 00000 n
+0000061450 00000 n
+0001357890 00000 n
+0000001746 00000 n
+0000001776 00000 n
+0000061640 00000 n
+0001357803 00000 n
+0000001833 00000 n
+0000001867 00000 n
+0000061766 00000 n
+0001357716 00000 n
+0000001925 00000 n
+0000001960 00000 n
+0000061892 00000 n
+0001357629 00000 n
+0000002015 00000 n
+0000002043 00000 n
+0000062082 00000 n
+0001357554 00000 n
+0000002105 00000 n
+0000002145 00000 n
+0000062272 00000 n
+0001357422 00000 n
+0000002192 00000 n
+0000002217 00000 n
+0000062335 00000 n
+0001357304 00000 n
+0000002269 00000 n
+0000002305 00000 n
+0000062398 00000 n
+0001357225 00000 n
+0000002357 00000 n
+0000002382 00000 n
+0000067285 00000 n
+0001357132 00000 n
+0000002438 00000 n
+0000002471 00000 n
+0000067476 00000 n
+0001357039 00000 n
+0000002525 00000 n
+0000002556 00000 n
+0000067603 00000 n
+0001356946 00000 n
+0000002606 00000 n
+0000002629 00000 n
+0000072728 00000 n
+0001356853 00000 n
+0000002679 00000 n
+0000002702 00000 n
+0000072919 00000 n
+0001356760 00000 n
+0000002752 00000 n
+0000002775 00000 n
+0000073109 00000 n
+0001356667 00000 n
+0000002832 00000 n
+0000002866 00000 n
+0000073236 00000 n
+0001356588 00000 n
+0000002916 00000 n
+0000002939 00000 n
+0000077835 00000 n
+0001356456 00000 n
+0000002991 00000 n
+0000003030 00000 n
+0000077898 00000 n
+0001356377 00000 n
+0000003087 00000 n
+0000003121 00000 n
+0000078088 00000 n
+0001356284 00000 n
+0000003176 00000 n
+0000003208 00000 n
+0000078213 00000 n
+0001356191 00000 n
+0000003266 00000 n
+0000003301 00000 n
+0000078338 00000 n
+0001356112 00000 n
+0000003357 00000 n
+0000003390 00000 n
+0000078463 00000 n
+0001355979 00000 n
+0000003442 00000 n
+0000003468 00000 n
+0000078526 00000 n
+0001355900 00000 n
+0000003516 00000 n
+0000003541 00000 n
+0000078653 00000 n
+0001355807 00000 n
+0000003588 00000 n
+0000003612 00000 n
+0000078780 00000 n
+0001355714 00000 n
+0000003658 00000 n
+0000003682 00000 n
+0000085420 00000 n
+0001355621 00000 n
+0000003737 00000 n
+0000003769 00000 n
+0000085611 00000 n
+0001355528 00000 n
+0000003832 00000 n
+0000003872 00000 n
+0000085802 00000 n
+0001355435 00000 n
+0000003934 00000 n
+0000003973 00000 n
+0000085929 00000 n
+0001355342 00000 n
+0000004035 00000 n
+0000004074 00000 n
+0000086056 00000 n
+0001355249 00000 n
+0000004136 00000 n
+0000004175 00000 n
+0000089711 00000 n
+0001355156 00000 n
+0000004226 00000 n
+0000004254 00000 n
+0000089901 00000 n
+0001355077 00000 n
+0000004304 00000 n
+0000004331 00000 n
+0000090028 00000 n
+0001354945 00000 n
+0000004383 00000 n
+0000004432 00000 n
+0000090091 00000 n
+0001354866 00000 n
+0000004478 00000 n
+0000004502 00000 n
+0000094894 00000 n
+0001354773 00000 n
+0000004557 00000 n
+0000004589 00000 n
+0000095148 00000 n
+0001354680 00000 n
+0000004645 00000 n
+0000004678 00000 n
+0000099478 00000 n
+0001354587 00000 n
+0000004731 00000 n
+0000004761 00000 n
+0000099604 00000 n
+0001354494 00000 n
+0000004819 00000 n
+0000004854 00000 n
+0000099794 00000 n
+0001354415 00000 n
+0000004914 00000 n
+0000004951 00000 n
+0000099921 00000 n
+0001354283 00000 n
+0000005003 00000 n
+0000005045 00000 n
+0000099984 00000 n
+0001354204 00000 n
+0000005095 00000 n
+0000005122 00000 n
+0000104398 00000 n
+0001354111 00000 n
+0000005176 00000 n
+0000005207 00000 n
+0000104588 00000 n
+0001354018 00000 n
+0000005264 00000 n
+0000005298 00000 n
+0000104715 00000 n
+0001353939 00000 n
+0000005356 00000 n
+0000005391 00000 n
+0000104842 00000 n
+0001353807 00000 n
+0000005443 00000 n
+0000005481 00000 n
+0000104905 00000 n
+0001353728 00000 n
+0000005532 00000 n
+0000005560 00000 n
+0000108825 00000 n
+0001353635 00000 n
+0000005610 00000 n
+0000005637 00000 n
+0000109016 00000 n
+0001353542 00000 n
+0000005688 00000 n
+0000005716 00000 n
+0000109143 00000 n
+0001353463 00000 n
+0000005767 00000 n
+0000005795 00000 n
+0000109270 00000 n
+0001353331 00000 n
+0000005847 00000 n
+0000005879 00000 n
+0000109333 00000 n
+0001353252 00000 n
+0000005936 00000 n
+0000005970 00000 n
+0000109460 00000 n
+0001353159 00000 n
+0000006017 00000 n
+0000006041 00000 n
+0000109587 00000 n
+0001353066 00000 n
+0000006093 00000 n
+0000006122 00000 n
+0000109714 00000 n
+0001352987 00000 n
+0000006173 00000 n
+0000006201 00000 n
+0000109841 00000 n
+0001352855 00000 n
+0000006253 00000 n
+0000006286 00000 n
+0000109904 00000 n
+0001352776 00000 n
+0000006341 00000 n
+0000006373 00000 n
+0000110031 00000 n
+0001352683 00000 n
+0000006429 00000 n
+0000006462 00000 n
+0000115212 00000 n
+0001352604 00000 n
+0000006513 00000 n
+0000006541 00000 n
+0000115401 00000 n
+0001352486 00000 n
+0000006593 00000 n
+0000006632 00000 n
+0000115464 00000 n
+0001352407 00000 n
+0000006681 00000 n
+0000006707 00000 n
+0000115591 00000 n
+0001352328 00000 n
+0000006757 00000 n
+0000006784 00000 n
+0000120229 00000 n
+0001352195 00000 n
+0000006831 00000 n
+0000006868 00000 n
+0000120292 00000 n
+0001352116 00000 n
+0000006919 00000 n
+0000006947 00000 n
+0000125169 00000 n
+0001352037 00000 n
+0000007002 00000 n
+0000007034 00000 n
+0000125359 00000 n
+0001351903 00000 n
+0000007081 00000 n
+0000007124 00000 n
+0000125422 00000 n
+0001351824 00000 n
+0000007180 00000 n
+0000007213 00000 n
+0000131173 00000 n
+0001351731 00000 n
+0000007271 00000 n
+0000007306 00000 n
+0000131363 00000 n
+0001351638 00000 n
+0000007365 00000 n
+0000007401 00000 n
+0000131554 00000 n
+0001351545 00000 n
+0000007461 00000 n
+0000007498 00000 n
+0000137504 00000 n
+0001351452 00000 n
+0000007553 00000 n
+0000007585 00000 n
+0000137695 00000 n
+0001351359 00000 n
+0000007642 00000 n
+0000007676 00000 n
+0000137822 00000 n
+0001351266 00000 n
+0000007732 00000 n
+0000007765 00000 n
+0000137948 00000 n
+0001351173 00000 n
+0000007823 00000 n
+0000007858 00000 n
+0000138075 00000 n
+0001351080 00000 n
+0000007917 00000 n
+0000007953 00000 n
+0000138202 00000 n
+0001350987 00000 n
+0000008013 00000 n
+0000008050 00000 n
+0000138393 00000 n
+0001350894 00000 n
+0000008104 00000 n
+0000008135 00000 n
+0000143243 00000 n
+0001350815 00000 n
+0000008191 00000 n
+0000008224 00000 n
+0000143434 00000 n
+0001350682 00000 n
+0000008271 00000 n
+0000008304 00000 n
+0000143496 00000 n
+0001350564 00000 n
+0000008356 00000 n
+0000008394 00000 n
+0000143559 00000 n
+0001350485 00000 n
+0000008450 00000 n
+0000008479 00000 n
+0000143686 00000 n
+0001350392 00000 n
+0000008536 00000 n
+0000008566 00000 n
+0000147754 00000 n
+0001350313 00000 n
+0000008622 00000 n
+0000008651 00000 n
+0000147880 00000 n
+0001350195 00000 n
+0000008703 00000 n
+0000008743 00000 n
+0000147943 00000 n
+0001350116 00000 n
+0000008804 00000 n
+0000008842 00000 n
+0000148134 00000 n
+0001350023 00000 n
+0000008901 00000 n
+0000008937 00000 n
+0000148261 00000 n
+0001349930 00000 n
+0000008990 00000 n
+0000009020 00000 n
+0000148452 00000 n
+0001349837 00000 n
+0000009073 00000 n
+0000009103 00000 n
+0000150455 00000 n
+0001349744 00000 n
+0000009157 00000 n
+0000009188 00000 n
+0000150646 00000 n
+0001349651 00000 n
+0000009246 00000 n
+0000009281 00000 n
+0000150835 00000 n
+0001349572 00000 n
+0000009340 00000 n
+0000009376 00000 n
+0000153551 00000 n
+0001349439 00000 n
+0000009423 00000 n
+0000009464 00000 n
+0000153614 00000 n
+0001349360 00000 n
+0000009522 00000 n
+0000009557 00000 n
+0000153741 00000 n
+0001349281 00000 n
+0000009615 00000 n
+0000009650 00000 n
+0000153868 00000 n
+0001349148 00000 n
+0000009698 00000 n
+0000009725 00000 n
+0000153930 00000 n
+0001349030 00000 n
+0000009778 00000 n
+0000009812 00000 n
+0000153993 00000 n
+0001348951 00000 n
+0000009867 00000 n
+0000009899 00000 n
+0000154120 00000 n
+0001348858 00000 n
+0000009960 00000 n
+0000009998 00000 n
+0000154247 00000 n
+0001348765 00000 n
+0000010058 00000 n
+0000010095 00000 n
+0000159116 00000 n
+0001348686 00000 n
+0000010151 00000 n
+0000010184 00000 n
+0000159243 00000 n
+0001348554 00000 n
+0000010237 00000 n
+0000010270 00000 n
+0000159306 00000 n
+0001348475 00000 n
+0000010323 00000 n
+0000010349 00000 n
+0000159497 00000 n
+0001348382 00000 n
+0000010403 00000 n
+0000010430 00000 n
+0000166181 00000 n
+0001348289 00000 n
+0000010487 00000 n
+0000010521 00000 n
+0000166308 00000 n
+0001348210 00000 n
+0000010583 00000 n
+0000010622 00000 n
+0000166435 00000 n
+0001348131 00000 n
+0000010675 00000 n
+0000010704 00000 n
+0000170656 00000 n
+0001347998 00000 n
+0000010752 00000 n
+0000010792 00000 n
+0000170719 00000 n
+0001347879 00000 n
+0000010845 00000 n
+0000010889 00000 n
+0000170781 00000 n
+0001347800 00000 n
+0000010943 00000 n
+0000010970 00000 n
+0000170972 00000 n
+0001347707 00000 n
+0000011027 00000 n
+0000011061 00000 n
+0000171098 00000 n
+0001347614 00000 n
+0000011120 00000 n
+0000011156 00000 n
+0000171224 00000 n
+0001347521 00000 n
+0000011215 00000 n
+0000011251 00000 n
+0000171351 00000 n
+0001347428 00000 n
+0000011311 00000 n
+0000011348 00000 n
+0000171477 00000 n
+0001347335 00000 n
+0000011403 00000 n
+0000011431 00000 n
+0000171668 00000 n
+0001347242 00000 n
+0000011489 00000 n
+0000011524 00000 n
+0000175964 00000 n
+0001347149 00000 n
+0000011584 00000 n
+0000011621 00000 n
+0000176091 00000 n
+0001347056 00000 n
+0000011681 00000 n
+0000011718 00000 n
+0000176218 00000 n
+0001346963 00000 n
+0000011779 00000 n
+0000011817 00000 n
+0000176345 00000 n
+0001346884 00000 n
+0000011877 00000 n
+0000011914 00000 n
+0000176471 00000 n
+0001346751 00000 n
+0000011967 00000 n
+0000012002 00000 n
+0000176534 00000 n
+0001346672 00000 n
+0000012058 00000 n
+0000012091 00000 n
+0000176724 00000 n
+0001346579 00000 n
+0000012148 00000 n
+0000012182 00000 n
+0000176851 00000 n
+0001346486 00000 n
+0000012238 00000 n
+0000012271 00000 n
+0000176978 00000 n
+0001346393 00000 n
+0000012328 00000 n
+0000012362 00000 n
+0000177105 00000 n
+0001346300 00000 n
+0000012418 00000 n
+0000012451 00000 n
+0000177232 00000 n
+0001346207 00000 n
+0000012506 00000 n
+0000012538 00000 n
+0000177359 00000 n
+0001346114 00000 n
+0000012593 00000 n
+0000012625 00000 n
+0000181694 00000 n
+0001346021 00000 n
+0000012683 00000 n
+0000012718 00000 n
+0000181821 00000 n
+0001345928 00000 n
+0000012776 00000 n
+0000012811 00000 n
+0000181948 00000 n
+0001345835 00000 n
+0000012868 00000 n
+0000012902 00000 n
+0000182075 00000 n
+0001345742 00000 n
+0000012960 00000 n
+0000012995 00000 n
+0000182265 00000 n
+0001345649 00000 n
+0000013052 00000 n
+0000013086 00000 n
+0000182390 00000 n
+0001345556 00000 n
+0000013143 00000 n
+0000013177 00000 n
+0000182579 00000 n
+0001345463 00000 n
+0000013235 00000 n
+0000013270 00000 n
+0000182702 00000 n
+0001345370 00000 n
+0000013325 00000 n
+0000013357 00000 n
+0000182892 00000 n
+0001345277 00000 n
+0000013420 00000 n
+0000013460 00000 n
+0000183019 00000 n
+0001345184 00000 n
+0000013525 00000 n
+0000013567 00000 n
+0000183146 00000 n
+0001345091 00000 n
+0000013625 00000 n
+0000013660 00000 n
+0000187123 00000 n
+0001344998 00000 n
+0000013718 00000 n
+0000013753 00000 n
+0000187250 00000 n
+0001344905 00000 n
+0000013809 00000 n
+0000013842 00000 n
+0000187377 00000 n
+0001344812 00000 n
+0000013899 00000 n
+0000013933 00000 n
+0000187568 00000 n
+0001344719 00000 n
+0000013993 00000 n
+0000014030 00000 n
+0000187695 00000 n
+0001344626 00000 n
+0000014088 00000 n
+0000014123 00000 n
+0000187822 00000 n
+0001344533 00000 n
+0000014178 00000 n
+0000014210 00000 n
+0000187949 00000 n
+0001344440 00000 n
+0000014271 00000 n
+0000014309 00000 n
+0000195517 00000 n
+0001344347 00000 n
+0000014367 00000 n
+0000014402 00000 n
+0000195643 00000 n
+0001344254 00000 n
+0000014461 00000 n
+0000014497 00000 n
+0000195770 00000 n
+0001344161 00000 n
+0000014553 00000 n
+0000014586 00000 n
+0000195961 00000 n
+0001344068 00000 n
+0000014642 00000 n
+0000014675 00000 n
+0000196088 00000 n
+0001343975 00000 n
+0000014731 00000 n
+0000014764 00000 n
+0000196215 00000 n
+0001343882 00000 n
+0000014820 00000 n
+0000014853 00000 n
+0000196342 00000 n
+0001343789 00000 n
+0000014910 00000 n
+0000014944 00000 n
+0000196469 00000 n
+0001343696 00000 n
+0000015000 00000 n
+0000015033 00000 n
+0000200598 00000 n
+0001343603 00000 n
+0000015092 00000 n
+0000015128 00000 n
+0000200789 00000 n
+0001343510 00000 n
+0000015188 00000 n
+0000015225 00000 n
+0000200916 00000 n
+0001343417 00000 n
+0000015283 00000 n
+0000015318 00000 n
+0000201043 00000 n
+0001343324 00000 n
+0000015378 00000 n
+0000015415 00000 n
+0000201170 00000 n
+0001343231 00000 n
+0000015473 00000 n
+0000015508 00000 n
+0000201296 00000 n
+0001343152 00000 n
+0000015564 00000 n
+0000015597 00000 n
+0000201422 00000 n
+0001343020 00000 n
+0000015650 00000 n
+0000015690 00000 n
+0000201485 00000 n
+0001342941 00000 n
+0000015750 00000 n
+0000015787 00000 n
+0000201611 00000 n
+0001342862 00000 n
+0000015846 00000 n
+0000015882 00000 n
+0000201737 00000 n
+0001342730 00000 n
+0000015935 00000 n
+0000015973 00000 n
+0000201800 00000 n
+0001342665 00000 n
+0000016022 00000 n
+0000016051 00000 n
+0000208401 00000 n
+0001342533 00000 n
+0000016104 00000 n
+0000016135 00000 n
+0000208463 00000 n
+0001342454 00000 n
+0000016193 00000 n
+0000016228 00000 n
+0000213049 00000 n
+0001342361 00000 n
+0000016287 00000 n
+0000016323 00000 n
+0000213174 00000 n
+0001342268 00000 n
+0000016379 00000 n
+0000016412 00000 n
+0000213300 00000 n
+0001342175 00000 n
+0000016469 00000 n
+0000016503 00000 n
+0000213427 00000 n
+0001342082 00000 n
+0000016561 00000 n
+0000016596 00000 n
+0000213554 00000 n
+0001341989 00000 n
+0000016650 00000 n
+0000016681 00000 n
+0000218258 00000 n
+0001341910 00000 n
+0000016736 00000 n
+0000016768 00000 n
+0000218384 00000 n
+0001341778 00000 n
+0000016821 00000 n
+0000016848 00000 n
+0000218447 00000 n
+0001341659 00000 n
+0000016906 00000 n
+0000016942 00000 n
+0000218574 00000 n
+0001341580 00000 n
+0000017003 00000 n
+0000017041 00000 n
+0000218761 00000 n
+0001341487 00000 n
+0000017103 00000 n
+0000017142 00000 n
+0000218880 00000 n
+0001341394 00000 n
+0000017201 00000 n
+0000017237 00000 n
+0000219007 00000 n
+0001341301 00000 n
+0000017295 00000 n
+0000017330 00000 n
+0000219196 00000 n
+0001341208 00000 n
+0000017389 00000 n
+0000017425 00000 n
+0000219323 00000 n
+0001341115 00000 n
+0000017484 00000 n
+0000017520 00000 n
+0000219450 00000 n
+0001341022 00000 n
+0000017578 00000 n
+0000017613 00000 n
+0000223191 00000 n
+0001340929 00000 n
+0000017670 00000 n
+0000017704 00000 n
+0000223318 00000 n
+0001340836 00000 n
+0000017762 00000 n
+0000017797 00000 n
+0000223445 00000 n
+0001340743 00000 n
+0000017856 00000 n
+0000017892 00000 n
+0000223572 00000 n
+0001340650 00000 n
+0000017946 00000 n
+0000017977 00000 n
+0000223699 00000 n
+0001340571 00000 n
+0000018031 00000 n
+0000018062 00000 n
+0000223826 00000 n
+0001340439 00000 n
+0000018120 00000 n
+0000018156 00000 n
+0000223889 00000 n
+0001340374 00000 n
+0000018215 00000 n
+0000018251 00000 n
+0000228117 00000 n
+0001340242 00000 n
+0000018309 00000 n
+0000018352 00000 n
+0000228180 00000 n
+0001340163 00000 n
+0000018409 00000 n
+0000018443 00000 n
+0000228307 00000 n
+0001340084 00000 n
+0000018498 00000 n
+0000018530 00000 n
+0000228434 00000 n
+0001339991 00000 n
+0000018588 00000 n
+0000018618 00000 n
+0000231931 00000 n
+0001339873 00000 n
+0000018676 00000 n
+0000018722 00000 n
+0000231994 00000 n
+0001339794 00000 n
+0000018784 00000 n
+0000018823 00000 n
+0000232121 00000 n
+0001339701 00000 n
+0000018881 00000 n
+0000018916 00000 n
+0000232248 00000 n
+0001339608 00000 n
+0000018973 00000 n
+0000019007 00000 n
+0000232375 00000 n
+0001339529 00000 n
+0000019068 00000 n
+0000019106 00000 n
+0000239304 00000 n
+0001339397 00000 n
+0000019159 00000 n
+0000019203 00000 n
+0000239367 00000 n
+0001339318 00000 n
+0000019258 00000 n
+0000019290 00000 n
+0000239494 00000 n
+0001339225 00000 n
+0000019346 00000 n
+0000019379 00000 n
+0000239621 00000 n
+0001339146 00000 n
+0000019436 00000 n
+0000019470 00000 n
+0000239748 00000 n
+0001339014 00000 n
+0000019523 00000 n
+0000019573 00000 n
+0000239811 00000 n
+0001338949 00000 n
+0000019630 00000 n
+0000019664 00000 n
+0000243438 00000 n
+0001338831 00000 n
+0000019717 00000 n
+0000019761 00000 n
+0000243565 00000 n
+0001338752 00000 n
+0000019819 00000 n
+0000019854 00000 n
+0000250916 00000 n
+0001338673 00000 n
+0000019915 00000 n
+0000019953 00000 n
+0000251107 00000 n
+0001338540 00000 n
+0000020001 00000 n
+0000020041 00000 n
+0000251170 00000 n
+0001338461 00000 n
+0000020099 00000 n
+0000020134 00000 n
+0000251296 00000 n
+0001338368 00000 n
+0000020189 00000 n
+0000020221 00000 n
+0000251423 00000 n
+0001338275 00000 n
+0000020281 00000 n
+0000020318 00000 n
+0000251549 00000 n
+0001338182 00000 n
+0000020376 00000 n
+0000020411 00000 n
+0000251675 00000 n
+0001338089 00000 n
+0000020467 00000 n
+0000020500 00000 n
+0000251802 00000 n
+0001337996 00000 n
+0000020558 00000 n
+0000020593 00000 n
+0000257190 00000 n
+0001337903 00000 n
+0000020649 00000 n
+0000020682 00000 n
+0000257317 00000 n
+0001337810 00000 n
+0000020741 00000 n
+0000020777 00000 n
+0000257443 00000 n
+0001337731 00000 n
+0000020832 00000 n
+0000020864 00000 n
+0000257570 00000 n
+0001337637 00000 n
+0000020912 00000 n
+0000020947 00000 n
+0000265636 00000 n
+0001337543 00000 n
+0000020995 00000 n
+0000021041 00000 n
+0000280633 00000 n
+0001337422 00000 n
+0000021089 00000 n
+0000021123 00000 n
+0000280696 00000 n
+0001337343 00000 n
+0000021176 00000 n
+0000021210 00000 n
+0000285426 00000 n
+0001337208 00000 n
+0000021263 00000 n
+0000021301 00000 n
+0000285489 00000 n
+0001337129 00000 n
+0000021356 00000 n
+0000021389 00000 n
+0000285552 00000 n
+0001337036 00000 n
+0000021445 00000 n
+0000021479 00000 n
+0000285615 00000 n
+0001336943 00000 n
+0000021534 00000 n
+0000021567 00000 n
+0000285677 00000 n
+0001336850 00000 n
+0000021623 00000 n
+0000021657 00000 n
+0000285739 00000 n
+0001336757 00000 n
+0000021711 00000 n
+0000021743 00000 n
+0000285801 00000 n
+0001336664 00000 n
+0000021798 00000 n
+0000021831 00000 n
+0000285863 00000 n
+0001336571 00000 n
+0000021885 00000 n
+0000021917 00000 n
+0000288344 00000 n
+0001336478 00000 n
+0000021976 00000 n
+0000022013 00000 n
+0000288407 00000 n
+0001336385 00000 n
+0000022071 00000 n
+0000022107 00000 n
+0000288470 00000 n
+0001336292 00000 n
+0000022164 00000 n
+0000022199 00000 n
+0000288533 00000 n
+0001336197 00000 n
+0000022256 00000 n
+0000022292 00000 n
+0000288596 00000 n
+0001336100 00000 n
+0000022349 00000 n
+0000022384 00000 n
+0000288660 00000 n
+0001336002 00000 n
+0000022443 00000 n
+0000022480 00000 n
+0000288724 00000 n
+0001335904 00000 n
+0000022540 00000 n
+0000022578 00000 n
+0000288788 00000 n
+0001335806 00000 n
+0000022636 00000 n
+0000022672 00000 n
+0000288852 00000 n
+0001335708 00000 n
+0000022728 00000 n
+0000022762 00000 n
+0000288916 00000 n
+0001335610 00000 n
+0000022819 00000 n
+0000022854 00000 n
+0000291367 00000 n
+0001335512 00000 n
+0000022912 00000 n
+0000022948 00000 n
+0000291431 00000 n
+0001335414 00000 n
+0000023007 00000 n
+0000023044 00000 n
+0000291495 00000 n
+0001335316 00000 n
+0000023104 00000 n
+0000023142 00000 n
+0000291559 00000 n
+0001335218 00000 n
+0000023202 00000 n
+0000023240 00000 n
+0000291623 00000 n
+0001335120 00000 n
+0000023297 00000 n
+0000023332 00000 n
+0000291687 00000 n
+0001335022 00000 n
+0000023390 00000 n
+0000023426 00000 n
+0000291751 00000 n
+0001334924 00000 n
+0000023483 00000 n
+0000023518 00000 n
+0000291815 00000 n
+0001334826 00000 n
+0000023576 00000 n
+0000023612 00000 n
+0000291879 00000 n
+0001334728 00000 n
+0000023667 00000 n
+0000023700 00000 n
+0000291943 00000 n
+0001334630 00000 n
+0000023763 00000 n
+0000023804 00000 n
+0000292007 00000 n
+0001334532 00000 n
+0000023869 00000 n
+0000023912 00000 n
+0000294362 00000 n
+0001334434 00000 n
+0000023970 00000 n
+0000024006 00000 n
+0000294426 00000 n
+0001334336 00000 n
+0000024064 00000 n
+0000024100 00000 n
+0000294489 00000 n
+0001334238 00000 n
+0000024159 00000 n
+0000024196 00000 n
+0000294553 00000 n
+0001334140 00000 n
+0000024255 00000 n
+0000024292 00000 n
+0000294617 00000 n
+0001334042 00000 n
+0000024352 00000 n
+0000024390 00000 n
+0000297851 00000 n
+0001333944 00000 n
+0000024446 00000 n
+0000024480 00000 n
+0000297915 00000 n
+0001333846 00000 n
+0000024536 00000 n
+0000024570 00000 n
+0000297979 00000 n
+0001333748 00000 n
+0000024626 00000 n
+0000024660 00000 n
+0000298043 00000 n
+0001333650 00000 n
+0000024716 00000 n
+0000024750 00000 n
+0000298107 00000 n
+0001333552 00000 n
+0000024807 00000 n
+0000024842 00000 n
+0000298171 00000 n
+0001333454 00000 n
+0000024897 00000 n
+0000024930 00000 n
+0000298235 00000 n
+0001333356 00000 n
+0000024985 00000 n
+0000025018 00000 n
+0000298299 00000 n
+0001333258 00000 n
+0000025074 00000 n
+0000025108 00000 n
+0000298363 00000 n
+0001333160 00000 n
+0000025165 00000 n
+0000025200 00000 n
+0000298427 00000 n
+0001333062 00000 n
+0000025260 00000 n
+0000025298 00000 n
+0000298491 00000 n
+0001332964 00000 n
+0000025359 00000 n
+0000025398 00000 n
+0000298555 00000 n
+0001332866 00000 n
+0000025456 00000 n
+0000025492 00000 n
+0000300929 00000 n
+0001332768 00000 n
+0000025551 00000 n
+0000025588 00000 n
+0000300993 00000 n
+0001332670 00000 n
+0000025647 00000 n
+0000025684 00000 n
+0000301057 00000 n
+0001332572 00000 n
+0000025743 00000 n
+0000025780 00000 n
+0000301121 00000 n
+0001332474 00000 n
+0000025838 00000 n
+0000025874 00000 n
+0000301185 00000 n
+0001332376 00000 n
+0000025932 00000 n
+0000025968 00000 n
+0000301249 00000 n
+0001332278 00000 n
+0000026022 00000 n
+0000026054 00000 n
+0000301313 00000 n
+0001332195 00000 n
+0000026108 00000 n
+0000026140 00000 n
+0000304198 00000 n
+0001332056 00000 n
+0000026194 00000 n
+0000026230 00000 n
+0000304262 00000 n
+0001331972 00000 n
+0000026283 00000 n
+0000026310 00000 n
+0000304326 00000 n
+0001331873 00000 n
+0000026363 00000 n
+0000026394 00000 n
+0000307439 00000 n
+0001331774 00000 n
+0000026448 00000 n
+0000026476 00000 n
+0000307503 00000 n
+0001331675 00000 n
+0000026530 00000 n
+0000026558 00000 n
+0000307567 00000 n
+0001331576 00000 n
+0000026614 00000 n
+0000026644 00000 n
+0000307631 00000 n
+0001331477 00000 n
+0000026700 00000 n
+0000026730 00000 n
+0000307694 00000 n
+0001331378 00000 n
+0000026786 00000 n
+0000026820 00000 n
+0000307757 00000 n
+0001331279 00000 n
+0000026877 00000 n
+0000026912 00000 n
+0000307820 00000 n
+0001331180 00000 n
+0000026969 00000 n
+0000027000 00000 n
+0000309835 00000 n
+0001331081 00000 n
+0000027054 00000 n
+0000027082 00000 n
+0000309899 00000 n
+0001330982 00000 n
+0000027134 00000 n
+0000027160 00000 n
+0000309963 00000 n
+0001330883 00000 n
+0000027215 00000 n
+0000027248 00000 n
+0000310027 00000 n
+0001330784 00000 n
+0000027304 00000 n
+0000027338 00000 n
+0000310091 00000 n
+0001330685 00000 n
+0000027397 00000 n
+0000027430 00000 n
+0000310155 00000 n
+0001330586 00000 n
+0000027487 00000 n
+0000027518 00000 n
+0000310219 00000 n
+0001330487 00000 n
+0000027575 00000 n
+0000027610 00000 n
+0000310283 00000 n
+0001330388 00000 n
+0000027668 00000 n
+0000027704 00000 n
+0000312790 00000 n
+0001330289 00000 n
+0000027765 00000 n
+0000027800 00000 n
+0000312854 00000 n
+0001330190 00000 n
+0000027858 00000 n
+0000027890 00000 n
+0000312918 00000 n
+0001330091 00000 n
+0000027948 00000 n
+0000027984 00000 n
+0000312982 00000 n
+0001329992 00000 n
+0000028043 00000 n
+0000028080 00000 n
+0000313046 00000 n
+0001329893 00000 n
+0000028140 00000 n
+0000028174 00000 n
+0000313108 00000 n
+0001329794 00000 n
+0000028235 00000 n
+0000028270 00000 n
+0000313170 00000 n
+0001329695 00000 n
+0000028330 00000 n
+0000028368 00000 n
+0000313232 00000 n
+0001329596 00000 n
+0000028429 00000 n
+0000028468 00000 n
+0000313294 00000 n
+0001329497 00000 n
+0000028526 00000 n
+0000028562 00000 n
+0000315009 00000 n
+0001329398 00000 n
+0000028625 00000 n
+0000028666 00000 n
+0000315073 00000 n
+0001329299 00000 n
+0000028726 00000 n
+0000028764 00000 n
+0000315137 00000 n
+0001329200 00000 n
+0000028825 00000 n
+0000028864 00000 n
+0000315201 00000 n
+0001329101 00000 n
+0000028922 00000 n
+0000028958 00000 n
+0000315265 00000 n
+0001329017 00000 n
+0000029018 00000 n
+0000029056 00000 n
+0000317528 00000 n
+0001328878 00000 n
+0000029110 00000 n
+0000029143 00000 n
+0000341464 00000 n
+0001328794 00000 n
+0000029201 00000 n
+0000029237 00000 n
+0000345406 00000 n
+0001328695 00000 n
+0000029291 00000 n
+0000029323 00000 n
+0000345470 00000 n
+0001328596 00000 n
+0000029380 00000 n
+0000029415 00000 n
+0000345533 00000 n
+0001328512 00000 n
+0000029473 00000 n
+0000029509 00000 n
+0000345597 00000 n
+0001328372 00000 n
+0000029563 00000 n
+0000029589 00000 n
+0000347728 00000 n
+0001328288 00000 n
+0000029647 00000 n
+0000029683 00000 n
+0000347792 00000 n
+0001328189 00000 n
+0000029739 00000 n
+0000029773 00000 n
+0000347856 00000 n
+0001328090 00000 n
+0000029832 00000 n
+0000029869 00000 n
+0000350275 00000 n
+0001327991 00000 n
+0000029927 00000 n
+0000029963 00000 n
+0000350339 00000 n
+0001327892 00000 n
+0000030023 00000 n
+0000030061 00000 n
+0000350403 00000 n
+0001327793 00000 n
+0000030119 00000 n
+0000030155 00000 n
+0000350467 00000 n
+0001327694 00000 n
+0000030210 00000 n
+0000030243 00000 n
+0000350531 00000 n
+0001327595 00000 n
+0000030300 00000 n
+0000030335 00000 n
+0000350595 00000 n
+0001327496 00000 n
+0000030392 00000 n
+0000030427 00000 n
+0000352565 00000 n
+0001327397 00000 n
+0000030478 00000 n
+0000030503 00000 n
+0000358458 00000 n
+0001327298 00000 n
+0000030561 00000 n
+0000030597 00000 n
+0000363128 00000 n
+0001327199 00000 n
+0000030656 00000 n
+0000030693 00000 n
+0000363192 00000 n
+0001327100 00000 n
+0000030751 00000 n
+0000030787 00000 n
+0000363256 00000 n
+0001327016 00000 n
+0000030842 00000 n
+0000030875 00000 n
+0000376440 00000 n
+0001326877 00000 n
+0000030929 00000 n
+0000030969 00000 n
+0000383606 00000 n
+0001326793 00000 n
+0000031021 00000 n
+0000031047 00000 n
+0000389999 00000 n
+0001326694 00000 n
+0000031100 00000 n
+0000031127 00000 n
+0000396008 00000 n
+0001326595 00000 n
+0000031177 00000 n
+0000031205 00000 n
+0000397804 00000 n
+0001326496 00000 n
+0000031260 00000 n
+0000031293 00000 n
+0000401208 00000 n
+0001326397 00000 n
+0000031349 00000 n
+0000031383 00000 n
+0000401272 00000 n
+0001326298 00000 n
+0000031434 00000 n
+0000031463 00000 n
+0000403379 00000 n
+0001326214 00000 n
+0000031513 00000 n
+0000031541 00000 n
+0000403443 00000 n
+0001326074 00000 n
+0000031595 00000 n
+0000031636 00000 n
+0000403507 00000 n
+0001325990 00000 n
+0000031692 00000 n
+0000031722 00000 n
+0000403571 00000 n
+0001325891 00000 n
+0000031778 00000 n
+0000031808 00000 n
+0000405327 00000 n
+0001325792 00000 n
+0000031864 00000 n
+0000031894 00000 n
+0000407704 00000 n
+0001325693 00000 n
+0000031950 00000 n
+0000031984 00000 n
+0000409658 00000 n
+0001325594 00000 n
+0000032037 00000 n
+0000032068 00000 n
+0000409722 00000 n
+0001325495 00000 n
+0000032121 00000 n
+0000032152 00000 n
+0000409786 00000 n
+0001325396 00000 n
+0000032206 00000 n
+0000032238 00000 n
+0000409849 00000 n
+0001325297 00000 n
+0000032296 00000 n
+0000032332 00000 n
+0000409913 00000 n
+0001325198 00000 n
+0000032391 00000 n
+0000032428 00000 n
+0000409977 00000 n
+0001325114 00000 n
+0000032489 00000 n
+0000032528 00000 n
+0000413125 00000 n
+0001324974 00000 n
+0000032582 00000 n
+0000032616 00000 n
+0000413189 00000 n
+0001324890 00000 n
+0000032674 00000 n
+0000032710 00000 n
+0000415565 00000 n
+0001324791 00000 n
+0000032769 00000 n
+0000032806 00000 n
+0000415629 00000 n
+0001324692 00000 n
+0000032862 00000 n
+0000032896 00000 n
+0000415693 00000 n
+0001324593 00000 n
+0000032953 00000 n
+0000032988 00000 n
+0000415757 00000 n
+0001324494 00000 n
+0000033043 00000 n
+0000033076 00000 n
+0000415821 00000 n
+0001324395 00000 n
+0000033132 00000 n
+0000033166 00000 n
+0000418086 00000 n
+0001324296 00000 n
+0000033217 00000 n
+0000033246 00000 n
+0000418150 00000 n
+0001324197 00000 n
+0000033305 00000 n
+0000033342 00000 n
+0000418214 00000 n
+0001324098 00000 n
+0000033400 00000 n
+0000033436 00000 n
+0000418278 00000 n
+0001323999 00000 n
+0000033496 00000 n
+0000033534 00000 n
+0000418342 00000 n
+0001323900 00000 n
+0000033588 00000 n
+0000033620 00000 n
+0000420703 00000 n
+0001323816 00000 n
+0000033680 00000 n
+0000033718 00000 n
+0000428880 00000 n
+0001323677 00000 n
+0000033772 00000 n
+0000033805 00000 n
+0000428944 00000 n
+0001323593 00000 n
+0000033857 00000 n
+0000033887 00000 n
+0000429008 00000 n
+0001323494 00000 n
+0000033938 00000 n
+0000033967 00000 n
+0000431723 00000 n
+0001323395 00000 n
+0000034024 00000 n
+0000034059 00000 n
+0000431787 00000 n
+0001323296 00000 n
+0000034110 00000 n
+0000034139 00000 n
+0000431851 00000 n
+0001323212 00000 n
+0000034190 00000 n
+0000034219 00000 n
+0000435044 00000 n
+0001323073 00000 n
+0000034274 00000 n
+0000034309 00000 n
+0000439692 00000 n
+0001322989 00000 n
+0000034372 00000 n
+0000034413 00000 n
+0000439756 00000 n
+0001322890 00000 n
+0000034475 00000 n
+0000034515 00000 n
+0000439820 00000 n
+0001322791 00000 n
+0000034577 00000 n
+0000034617 00000 n
+0000448727 00000 n
+0001322707 00000 n
+0000034679 00000 n
+0000034719 00000 n
+0000465868 00000 n
+0001322568 00000 n
+0000034774 00000 n
+0000034801 00000 n
+0000465932 00000 n
+0001322484 00000 n
+0000034849 00000 n
+0000034875 00000 n
+0000473114 00000 n
+0001322385 00000 n
+0000034933 00000 n
+0000034969 00000 n
+0000473178 00000 n
+0001322286 00000 n
+0000035026 00000 n
+0000035061 00000 n
+0000473242 00000 n
+0001322187 00000 n
+0000035112 00000 n
+0000035141 00000 n
+0000473306 00000 n
+0001322088 00000 n
+0000035191 00000 n
+0000035219 00000 n
+0000475959 00000 n
+0001321989 00000 n
+0000035268 00000 n
+0000035295 00000 n
+0000476023 00000 n
+0001321905 00000 n
+0000035345 00000 n
+0000035373 00000 n
+0000479938 00000 n
+0001321766 00000 n
+0000035428 00000 n
+0000035464 00000 n
+0000480002 00000 n
+0001321682 00000 n
+0000035520 00000 n
+0000035554 00000 n
+0000480066 00000 n
+0001321583 00000 n
+0000035609 00000 n
+0000035642 00000 n
+0000480130 00000 n
+0001321499 00000 n
+0000035695 00000 n
+0000035726 00000 n
+0000482142 00000 n
+0001321360 00000 n
+0000035781 00000 n
+0000035819 00000 n
+0000494589 00000 n
+0001321276 00000 n
+0000035875 00000 n
+0000035909 00000 n
+0000494653 00000 n
+0001321192 00000 n
+0000035960 00000 n
+0000035989 00000 n
+0000498306 00000 n
+0001321053 00000 n
+0000036044 00000 n
+0000036080 00000 n
+0000498370 00000 n
+0001320969 00000 n
+0000036138 00000 n
+0000036174 00000 n
+0000498434 00000 n
+0001320870 00000 n
+0000036232 00000 n
+0000036268 00000 n
+0000500533 00000 n
+0001320786 00000 n
+0000036320 00000 n
+0000036346 00000 n
+0000500597 00000 n
+0001320646 00000 n
+0000036401 00000 n
+0000036438 00000 n
+0000504850 00000 n
+0001320562 00000 n
+0000036495 00000 n
+0000036530 00000 n
+0000507262 00000 n
+0001320463 00000 n
+0000036585 00000 n
+0000036618 00000 n
+0000509748 00000 n
+0001320364 00000 n
+0000036673 00000 n
+0000036706 00000 n
+0000509812 00000 n
+0001320265 00000 n
+0000036766 00000 n
+0000036804 00000 n
+0000509876 00000 n
+0001320166 00000 n
+0000036865 00000 n
+0000036904 00000 n
+0000514040 00000 n
+0001320067 00000 n
+0000036961 00000 n
+0000036996 00000 n
+0000516205 00000 n
+0001319968 00000 n
+0000037058 00000 n
+0000037098 00000 n
+0000516267 00000 n
+0001319869 00000 n
+0000037157 00000 n
+0000037194 00000 n
+0000516331 00000 n
+0001319770 00000 n
+0000037252 00000 n
+0000037288 00000 n
+0000516395 00000 n
+0001319671 00000 n
+0000037345 00000 n
+0000037380 00000 n
+0000516459 00000 n
+0001319572 00000 n
+0000037441 00000 n
+0000037480 00000 n
+0000516523 00000 n
+0001319473 00000 n
+0000037542 00000 n
+0000037582 00000 n
+0000533144 00000 n
+0001319389 00000 n
+0000037638 00000 n
+0000037672 00000 n
+0000538943 00000 n
+0001319291 00000 n
+0000037727 00000 n
+0000037762 00000 n
+0000547207 00000 n
+0001319193 00000 n
+0000037817 00000 n
+0000037855 00000 n
+0000548770 00000 n
+0001319095 00000 n
+0000037910 00000 n
+0000037943 00000 n
+0000553816 00000 n
+0001319012 00000 n
+0000037998 00000 n
+0000038033 00000 n
+0000040679 00000 n
+0000040816 00000 n
+0000043766 00000 n
+0000041219 00000 n
+0000038085 00000 n
+0000040970 00000 n
+0000041033 00000 n
+0001308801 00000 n
+0001310571 00000 n
+0001313414 00000 n
+0001312691 00000 n
+0001308624 00000 n
+0001308093 00000 n
+0001309680 00000 n
+0001310923 00000 n
+0001309154 00000 n
+0001307746 00000 n
+0001308447 00000 n
+0001310395 00000 n
+0001309329 00000 n
+0001313054 00000 n
+0001309504 00000 n
+0001310748 00000 n
+0001313233 00000 n
+0001314276 00000 n
+0000043920 00000 n
+0000051610 00000 n
+0000051770 00000 n
+0000051923 00000 n
+0000044222 00000 n
+0000043620 00000 n
+0000041517 00000 n
+0000044097 00000 n
+0001308266 00000 n
+0001311797 00000 n
+0001311973 00000 n
+0000047460 00000 n
+0000047153 00000 n
+0000044383 00000 n
+0000047269 00000 n
+0000047332 00000 n
+0001311098 00000 n
+0001311447 00000 n
+0001310214 00000 n
+0001307920 00000 n
+0001308978 00000 n
+0001313570 00000 n
+0001314101 00000 n
+0000047396 00000 n
+0000052077 00000 n
+0000052237 00000 n
+0000052396 00000 n
+0000052551 00000 n
+0000052711 00000 n
+0000058311 00000 n
+0000058470 00000 n
+0000058623 00000 n
+0000058777 00000 n
+0000054694 00000 n
+0000051410 00000 n
+0000047651 00000 n
+0000052866 00000 n
+0001309856 00000 n
+0000053053 00000 n
+0001307572 00000 n
+0000053116 00000 n
+0000053242 00000 n
+0000053368 00000 n
+0000053494 00000 n
+0000053620 00000 n
+0000053746 00000 n
+0000053872 00000 n
+0000053998 00000 n
+0000054062 00000 n
+0000054188 00000 n
+0000054314 00000 n
+0000054440 00000 n
+0000054566 00000 n
+0000054630 00000 n
+0000110094 00000 n
+0000115337 00000 n
+0000125485 00000 n
+0000058936 00000 n
+0000059095 00000 n
+0000059253 00000 n
+0000059412 00000 n
+0000059570 00000 n
+0000059724 00000 n
+0000059884 00000 n
+0000060046 00000 n
+0000060204 00000 n
+0000060358 00000 n
+0000060511 00000 n
+0000060665 00000 n
+0000065961 00000 n
+0000066121 00000 n
+0000062588 00000 n
+0000058039 00000 n
+0000054898 00000 n
+0000060820 00000 n
+0000060945 00000 n
+0000061008 00000 n
+0000061134 00000 n
+0000061260 00000 n
+0000061386 00000 n
+0000061512 00000 n
+0000061576 00000 n
+0000061702 00000 n
+0000061828 00000 n
+0000061954 00000 n
+0000062018 00000 n
+0000062144 00000 n
+0000062208 00000 n
+0000062461 00000 n
+0000062524 00000 n
+0000104524 00000 n
+0000100111 00000 n
+0000104651 00000 n
+0000104778 00000 n
+0000066275 00000 n
+0000066429 00000 n
+0000066588 00000 n
+0000066748 00000 n
+0000066908 00000 n
+0000067068 00000 n
+0000067794 00000 n
+0000065761 00000 n
+0000062750 00000 n
+0000067222 00000 n
+0000067348 00000 n
+0000067412 00000 n
+0000067539 00000 n
+0001312873 00000 n
+0000067666 00000 n
+0000067730 00000 n
+0000071564 00000 n
+0000071723 00000 n
+0000071880 00000 n
+0000072040 00000 n
+0000072200 00000 n
+0000072354 00000 n
+0000072512 00000 n
+0000076584 00000 n
+0000076744 00000 n
+0000073427 00000 n
+0000071373 00000 n
+0000068030 00000 n
+0000072665 00000 n
+0000072791 00000 n
+0000072855 00000 n
+0000072982 00000 n
+0000073045 00000 n
+0000073172 00000 n
+0000073299 00000 n
+0000073363 00000 n
+0001314401 00000 n
+0000077771 00000 n
+0000076902 00000 n
+0000077067 00000 n
+0000077228 00000 n
+0000077386 00000 n
+0000077548 00000 n
+0000078907 00000 n
+0000076393 00000 n
+0000073603 00000 n
+0000077708 00000 n
+0001312148 00000 n
+0000077961 00000 n
+0000078025 00000 n
+0000078150 00000 n
+0000078275 00000 n
+0000078400 00000 n
+0000078589 00000 n
+0000078716 00000 n
+0000078843 00000 n
+0000176281 00000 n
+0000081637 00000 n
+0000081859 00000 n
+0000081500 00000 n
+0000079097 00000 n
+0000081796 00000 n
+0000085038 00000 n
+0000085198 00000 n
+0000086245 00000 n
+0000084892 00000 n
+0000082020 00000 n
+0000085357 00000 n
+0000085483 00000 n
+0000085547 00000 n
+0000085674 00000 n
+0000085738 00000 n
+0000085865 00000 n
+0000085992 00000 n
+0000086119 00000 n
+0000086182 00000 n
+0000201863 00000 n
+0000089011 00000 n
+0000089171 00000 n
+0000089329 00000 n
+0000089490 00000 n
+0000093101 00000 n
+0000093262 00000 n
+0000090218 00000 n
+0000088847 00000 n
+0000086450 00000 n
+0000089648 00000 n
+0000089773 00000 n
+0000089837 00000 n
+0000089964 00000 n
+0001311271 00000 n
+0001313926 00000 n
+0000090154 00000 n
+0000093420 00000 n
+0000093573 00000 n
+0000093724 00000 n
+0000093885 00000 n
+0000094044 00000 n
+0000094202 00000 n
+0000094363 00000 n
+0000094520 00000 n
+0000094672 00000 n
+0000098306 00000 n
+0000095275 00000 n
+0000092874 00000 n
+0000090437 00000 n
+0000094831 00000 n
+0000094957 00000 n
+0000095021 00000 n
+0000095085 00000 n
+0000095211 00000 n
+0000098464 00000 n
+0000098616 00000 n
+0000098776 00000 n
+0000098936 00000 n
+0000099094 00000 n
+0000099256 00000 n
+0000100175 00000 n
+0000098115 00000 n
+0000095466 00000 n
+0000099415 00000 n
+0000099540 00000 n
+0000099667 00000 n
+0000099731 00000 n
+0000099857 00000 n
+0000100047 00000 n
+0001314526 00000 n
+0000201991 00000 n
+0000103459 00000 n
+0000103619 00000 n
+0000103779 00000 n
+0000103937 00000 n
+0000104104 00000 n
+0000105094 00000 n
+0000103286 00000 n
+0000100337 00000 n
+0000104271 00000 n
+0000104334 00000 n
+0000104460 00000 n
+0000104968 00000 n
+0000105032 00000 n
+0001310032 00000 n
+0000108442 00000 n
+0000108602 00000 n
+0000110158 00000 n
+0000108296 00000 n
+0000105286 00000 n
+0000108762 00000 n
+0000108888 00000 n
+0000108952 00000 n
+0001307284 00000 n
+0000109079 00000 n
+0000109206 00000 n
+0001307138 00000 n
+0000109396 00000 n
+0000109523 00000 n
+0000109650 00000 n
+0000109777 00000 n
+0000109967 00000 n
+0000114054 00000 n
+0000114214 00000 n
+0000114377 00000 n
+0000114536 00000 n
+0000114687 00000 n
+0000114837 00000 n
+0000114996 00000 n
+0000115718 00000 n
+0000113863 00000 n
+0000110378 00000 n
+0000115149 00000 n
+0000115274 00000 n
+0000115527 00000 n
+0000115654 00000 n
+0000119402 00000 n
+0000119558 00000 n
+0000119709 00000 n
+0000119861 00000 n
+0000120014 00000 n
+0000120419 00000 n
+0000119229 00000 n
+0000115923 00000 n
+0000120166 00000 n
+0000120355 00000 n
+0001307429 00000 n
+0000124327 00000 n
+0000124482 00000 n
+0000124637 00000 n
+0000124792 00000 n
+0000124946 00000 n
+0000128886 00000 n
+0000125549 00000 n
+0000124154 00000 n
+0000120665 00000 n
+0000125106 00000 n
+0000125232 00000 n
+0000125295 00000 n
+0000129043 00000 n
+0000129205 00000 n
+0000129358 00000 n
+0000129516 00000 n
+0000129675 00000 n
+0000129835 00000 n
+0000129993 00000 n
+0000130154 00000 n
+0000130313 00000 n
+0000130471 00000 n
+0000130631 00000 n
+0000130792 00000 n
+0000130950 00000 n
+0000131745 00000 n
+0000128632 00000 n
+0000125796 00000 n
+0000131110 00000 n
+0000131235 00000 n
+0000131299 00000 n
+0000131426 00000 n
+0001312511 00000 n
+0000131490 00000 n
+0000131617 00000 n
+0000131681 00000 n
+0001314651 00000 n
+0000135700 00000 n
+0000135860 00000 n
+0000136021 00000 n
+0000136180 00000 n
+0000136340 00000 n
+0000136495 00000 n
+0000136650 00000 n
+0000136810 00000 n
+0000136967 00000 n
+0000137122 00000 n
+0000137277 00000 n
+0000141460 00000 n
+0000138519 00000 n
+0000135473 00000 n
+0000131977 00000 n
+0000137441 00000 n
+0000137567 00000 n
+0000137631 00000 n
+0000137758 00000 n
+0000137885 00000 n
+0000138011 00000 n
+0000138138 00000 n
+0000138265 00000 n
+0000138329 00000 n
+0000138455 00000 n
+0000141620 00000 n
+0000141774 00000 n
+0000141929 00000 n
+0000142084 00000 n
+0000142238 00000 n
+0000142395 00000 n
+0000142553 00000 n
+0000142716 00000 n
+0000142869 00000 n
+0000143022 00000 n
+0000146572 00000 n
+0000143813 00000 n
+0000141233 00000 n
+0000138751 00000 n
+0000143180 00000 n
+0000143306 00000 n
+0000143370 00000 n
+0000143622 00000 n
+0000143749 00000 n
+0000146738 00000 n
+0000146896 00000 n
+0000147054 00000 n
+0000147212 00000 n
+0000147379 00000 n
+0000147538 00000 n
+0000148579 00000 n
+0000146381 00000 n
+0000143974 00000 n
+0000147691 00000 n
+0000147817 00000 n
+0000148006 00000 n
+0000148070 00000 n
+0000148197 00000 n
+0000148324 00000 n
+0000148388 00000 n
+0000148515 00000 n
+0000150958 00000 n
+0000150276 00000 n
+0000148770 00000 n
+0000150392 00000 n
+0000150518 00000 n
+0000150582 00000 n
+0000150709 00000 n
+0000150773 00000 n
+0000150896 00000 n
+0000154374 00000 n
+0000153372 00000 n
+0000151106 00000 n
+0000153488 00000 n
+0000153677 00000 n
+0000153804 00000 n
+0000154056 00000 n
+0000154183 00000 n
+0000154310 00000 n
+0000157781 00000 n
+0000157940 00000 n
+0000158105 00000 n
+0000158269 00000 n
+0000158423 00000 n
+0000158573 00000 n
+0000158733 00000 n
+0000158893 00000 n
+0000163405 00000 n
+0000163564 00000 n
+0000163718 00000 n
+0000163872 00000 n
+0000164028 00000 n
+0000164188 00000 n
+0000164345 00000 n
+0000159688 00000 n
+0000157581 00000 n
+0000154592 00000 n
+0000159053 00000 n
+0000159179 00000 n
+0000159369 00000 n
+0000159433 00000 n
+0000159560 00000 n
+0000159624 00000 n
+0001314776 00000 n
+0000164499 00000 n
+0000164656 00000 n
+0000164819 00000 n
+0000164981 00000 n
+0000165139 00000 n
+0000165304 00000 n
+0000165467 00000 n
+0000165631 00000 n
+0000165789 00000 n
+0000165954 00000 n
+0000169482 00000 n
+0000169636 00000 n
+0000166497 00000 n
+0000163124 00000 n
+0000159850 00000 n
+0000166118 00000 n
+0000166244 00000 n
+0000166371 00000 n
+0000169793 00000 n
+0000169953 00000 n
+0000170116 00000 n
+0000170274 00000 n
+0000170433 00000 n
+0000174945 00000 n
+0000171795 00000 n
+0000169291 00000 n
+0000166658 00000 n
+0000170593 00000 n
+0000170844 00000 n
+0000170908 00000 n
+0000171034 00000 n
+0000171161 00000 n
+0000171287 00000 n
+0000171413 00000 n
+0000171540 00000 n
+0000171604 00000 n
+0000171731 00000 n
+0000175105 00000 n
+0000175267 00000 n
+0000175427 00000 n
+0000175582 00000 n
+0000175741 00000 n
+0000177486 00000 n
+0000174763 00000 n
+0000171928 00000 n
+0000175901 00000 n
+0000176027 00000 n
+0000176154 00000 n
+0000176408 00000 n
+0000176597 00000 n
+0000176661 00000 n
+0000176787 00000 n
+0000176914 00000 n
+0000177041 00000 n
+0000177168 00000 n
+0000177295 00000 n
+0000177422 00000 n
+0000180841 00000 n
+0000181000 00000 n
+0000181162 00000 n
+0000181320 00000 n
+0000181476 00000 n
+0000183273 00000 n
+0000180668 00000 n
+0000177619 00000 n
+0000181631 00000 n
+0000181757 00000 n
+0000181884 00000 n
+0000182011 00000 n
+0000182138 00000 n
+0000182202 00000 n
+0000182327 00000 n
+0001313750 00000 n
+0000182453 00000 n
+0000182517 00000 n
+0000182640 00000 n
+0000182764 00000 n
+0000182828 00000 n
+0000182955 00000 n
+0000183082 00000 n
+0000183209 00000 n
+0000208525 00000 n
+0000218320 00000 n
+0000185925 00000 n
+0000186084 00000 n
+0000186246 00000 n
+0000186409 00000 n
+0000186572 00000 n
+0000186734 00000 n
+0000186898 00000 n
+0000192101 00000 n
+0000192255 00000 n
+0000192416 00000 n
+0000192573 00000 n
+0000192736 00000 n
+0000192897 00000 n
+0000193058 00000 n
+0000188076 00000 n
+0000185734 00000 n
+0000183462 00000 n
+0000187060 00000 n
+0000187186 00000 n
+0000187313 00000 n
+0000187440 00000 n
+0000187504 00000 n
+0000187631 00000 n
+0000187758 00000 n
+0000187885 00000 n
+0000188012 00000 n
+0000251486 00000 n
+0000251612 00000 n
+0000193216 00000 n
+0000193376 00000 n
+0000193536 00000 n
+0000193696 00000 n
+0000193854 00000 n
+0000194017 00000 n
+0000194178 00000 n
+0000194339 00000 n
+0000194499 00000 n
+0000194659 00000 n
+0000194821 00000 n
+0000194981 00000 n
+0000195145 00000 n
+0000195299 00000 n
+0000196596 00000 n
+0000191784 00000 n
+0000188209 00000 n
+0000195454 00000 n
+0000195579 00000 n
+0000195706 00000 n
+0000195833 00000 n
+0000195897 00000 n
+0000196024 00000 n
+0000196151 00000 n
+0000196278 00000 n
+0000196405 00000 n
+0000196532 00000 n
+0001314901 00000 n
+0000251232 00000 n
+0000251359 00000 n
+0000251865 00000 n
+0000251738 00000 n
+0000257253 00000 n
+0000257380 00000 n
+0000199901 00000 n
+0000200063 00000 n
+0000200223 00000 n
+0000200383 00000 n
+0000205594 00000 n
+0000205749 00000 n
+0000205904 00000 n
+0000206059 00000 n
+0000206226 00000 n
+0000206384 00000 n
+0000206543 00000 n
+0000206697 00000 n
+0000206860 00000 n
+0000207018 00000 n
+0000207181 00000 n
+0000207340 00000 n
+0000202567 00000 n
+0000199737 00000 n
+0000196771 00000 n
+0000200535 00000 n
+0000200661 00000 n
+0000200725 00000 n
+0000200852 00000 n
+0000200979 00000 n
+0000201106 00000 n
+0000201232 00000 n
+0000201358 00000 n
+0000201547 00000 n
+0000201673 00000 n
+0000201927 00000 n
+0000202055 00000 n
+0000202119 00000 n
+0000202183 00000 n
+0000202247 00000 n
+0000202311 00000 n
+0000202375 00000 n
+0000202439 00000 n
+0000202503 00000 n
+0000208337 00000 n
+0000207500 00000 n
+0000207656 00000 n
+0000207812 00000 n
+0000207966 00000 n
+0000208120 00000 n
+0000212037 00000 n
+0000208588 00000 n
+0000205313 00000 n
+0000202729 00000 n
+0000208274 00000 n
+0001312330 00000 n
+0000213110 00000 n
+0000212198 00000 n
+0000212355 00000 n
+0000212514 00000 n
+0000212674 00000 n
+0000212832 00000 n
+0000216920 00000 n
+0000217080 00000 n
+0000217239 00000 n
+0000213681 00000 n
+0000211855 00000 n
+0000208777 00000 n
+0000212986 00000 n
+0000213237 00000 n
+0000213363 00000 n
+0000213490 00000 n
+0000213617 00000 n
+0000217398 00000 n
+0000217560 00000 n
+0000217722 00000 n
+0000217875 00000 n
+0000218035 00000 n
+0000219577 00000 n
+0000216720 00000 n
+0000213856 00000 n
+0000218195 00000 n
+0000218510 00000 n
+0000218637 00000 n
+0000218701 00000 n
+0000218820 00000 n
+0000218943 00000 n
+0000219070 00000 n
+0000219132 00000 n
+0000219259 00000 n
+0000219386 00000 n
+0000219513 00000 n
+0000222479 00000 n
+0000222638 00000 n
+0000222803 00000 n
+0000222967 00000 n
+0000227214 00000 n
+0000227374 00000 n
+0000224016 00000 n
+0000222315 00000 n
+0000219752 00000 n
+0000223128 00000 n
+0000223254 00000 n
+0000223381 00000 n
+0000223508 00000 n
+0000223635 00000 n
+0000223762 00000 n
+0000223952 00000 n
+0000227535 00000 n
+0000227695 00000 n
+0000227852 00000 n
+0000231709 00000 n
+0000228497 00000 n
+0000227041 00000 n
+0000224164 00000 n
+0000228054 00000 n
+0000228243 00000 n
+0000228370 00000 n
+0001315026 00000 n
+0000232502 00000 n
+0000231572 00000 n
+0000228673 00000 n
+0000231868 00000 n
+0000232057 00000 n
+0000232184 00000 n
+0000232311 00000 n
+0000232438 00000 n
+0000236547 00000 n
+0000236702 00000 n
+0000236863 00000 n
+0000237025 00000 n
+0000237185 00000 n
+0000237346 00000 n
+0000237507 00000 n
+0000237666 00000 n
+0000237818 00000 n
+0000237969 00000 n
+0000238120 00000 n
+0000238280 00000 n
+0000238440 00000 n
+0000238599 00000 n
+0000238758 00000 n
+0000238922 00000 n
+0000239080 00000 n
+0000242740 00000 n
+0000239936 00000 n
+0000236266 00000 n
+0000232621 00000 n
+0000239241 00000 n
+0000239430 00000 n
+0000239557 00000 n
+0000239684 00000 n
+0000239874 00000 n
+0000242899 00000 n
+0000243059 00000 n
+0000243216 00000 n
+0000243692 00000 n
+0000242576 00000 n
+0000240125 00000 n
+0000243375 00000 n
+0000243501 00000 n
+0000243628 00000 n
+0000247509 00000 n
+0000247672 00000 n
+0000247834 00000 n
+0000247998 00000 n
+0000248163 00000 n
+0000248325 00000 n
+0000248488 00000 n
+0000248647 00000 n
+0000248807 00000 n
+0000248968 00000 n
+0000249119 00000 n
+0000249279 00000 n
+0000249431 00000 n
+0000249590 00000 n
+0000249740 00000 n
+0000249899 00000 n
+0000250050 00000 n
+0000250210 00000 n
+0000250370 00000 n
+0000250530 00000 n
+0000250690 00000 n
+0000255982 00000 n
+0000251929 00000 n
+0000247192 00000 n
+0000243940 00000 n
+0000250853 00000 n
+0001311623 00000 n
+0000250979 00000 n
+0000251043 00000 n
+0000256142 00000 n
+0000256304 00000 n
+0000256464 00000 n
+0000256624 00000 n
+0000256783 00000 n
+0000256949 00000 n
+0000257697 00000 n
+0000255791 00000 n
+0000252135 00000 n
+0000257127 00000 n
+0000257506 00000 n
+0000257633 00000 n
+0000262159 00000 n
+0000261725 00000 n
+0000257915 00000 n
+0000261841 00000 n
+0000261904 00000 n
+0000261968 00000 n
+0000262032 00000 n
+0000262095 00000 n
+0001315151 00000 n
+0000266018 00000 n
+0000265457 00000 n
+0000262334 00000 n
+0000265573 00000 n
+0000265699 00000 n
+0000265763 00000 n
+0000265826 00000 n
+0000265890 00000 n
+0000265954 00000 n
+0000269945 00000 n
+0000269448 00000 n
+0000266177 00000 n
+0000269564 00000 n
+0000269627 00000 n
+0000269691 00000 n
+0000269755 00000 n
+0000269819 00000 n
+0000269882 00000 n
+0000273614 00000 n
+0000273180 00000 n
+0000270033 00000 n
+0000273296 00000 n
+0000273359 00000 n
+0000273423 00000 n
+0000273487 00000 n
+0000273550 00000 n
+0000277155 00000 n
+0000276657 00000 n
+0000273702 00000 n
+0000276773 00000 n
+0000276836 00000 n
+0000276900 00000 n
+0000276964 00000 n
+0000277028 00000 n
+0000277092 00000 n
+0000279931 00000 n
+0000280090 00000 n
+0000280251 00000 n
+0000280410 00000 n
+0000280759 00000 n
+0000279767 00000 n
+0000277258 00000 n
+0000280570 00000 n
+0000283057 00000 n
+0000282878 00000 n
+0000280947 00000 n
+0000282994 00000 n
+0001315276 00000 n
+0000285926 00000 n
+0000285247 00000 n
+0000283160 00000 n
+0000285363 00000 n
+0000288980 00000 n
+0000288165 00000 n
+0000286087 00000 n
+0000288281 00000 n
+0000292071 00000 n
+0000291188 00000 n
+0000289127 00000 n
+0000291304 00000 n
+0000294681 00000 n
+0000294183 00000 n
+0000292189 00000 n
+0000294299 00000 n
+0000298619 00000 n
+0000297672 00000 n
+0000294799 00000 n
+0000297788 00000 n
+0000303976 00000 n
+0000301377 00000 n
+0000300750 00000 n
+0000298765 00000 n
+0000300866 00000 n
+0001315401 00000 n
+0000304390 00000 n
+0000303839 00000 n
+0000301495 00000 n
+0000304135 00000 n
+0000307884 00000 n
+0000307260 00000 n
+0000304537 00000 n
+0000307376 00000 n
+0000310347 00000 n
+0000309656 00000 n
+0000308045 00000 n
+0000309772 00000 n
+0000312571 00000 n
+0000313356 00000 n
+0000312434 00000 n
+0000310480 00000 n
+0000312727 00000 n
+0000315329 00000 n
+0000314830 00000 n
+0000313489 00000 n
+0000314946 00000 n
+0000317592 00000 n
+0000317349 00000 n
+0000315461 00000 n
+0000317465 00000 n
+0001315526 00000 n
+0000321586 00000 n
+0000321151 00000 n
+0000317724 00000 n
+0000321267 00000 n
+0000321330 00000 n
+0000321394 00000 n
+0000321458 00000 n
+0000321522 00000 n
+0000323389 00000 n
+0000323210 00000 n
+0000321747 00000 n
+0000323326 00000 n
+0000325445 00000 n
+0000325266 00000 n
+0000323507 00000 n
+0000325382 00000 n
+0000327812 00000 n
+0000327633 00000 n
+0000325563 00000 n
+0000327749 00000 n
+0000329726 00000 n
+0000329547 00000 n
+0000327944 00000 n
+0000329663 00000 n
+0000331208 00000 n
+0000331029 00000 n
+0000329844 00000 n
+0000331145 00000 n
+0001315651 00000 n
+0000332940 00000 n
+0000332761 00000 n
+0000331311 00000 n
+0000332877 00000 n
+0000335059 00000 n
+0000334880 00000 n
+0000333058 00000 n
+0000334996 00000 n
+0000337682 00000 n
+0000337503 00000 n
+0000335192 00000 n
+0000337619 00000 n
+0000339860 00000 n
+0000339681 00000 n
+0000337828 00000 n
+0000339797 00000 n
+0000341528 00000 n
+0000341285 00000 n
+0000339978 00000 n
+0000341401 00000 n
+0000343760 00000 n
+0000343581 00000 n
+0000341646 00000 n
+0000343697 00000 n
+0001315776 00000 n
+0000345661 00000 n
+0000345227 00000 n
+0000343878 00000 n
+0000345343 00000 n
+0000347920 00000 n
+0000347549 00000 n
+0000345793 00000 n
+0000347665 00000 n
+0000350659 00000 n
+0000350096 00000 n
+0000348053 00000 n
+0000350212 00000 n
+0000352629 00000 n
+0000352386 00000 n
+0000350777 00000 n
+0000352502 00000 n
+0000354593 00000 n
+0000354414 00000 n
+0000352747 00000 n
+0000354530 00000 n
+0000356135 00000 n
+0000355956 00000 n
+0000354711 00000 n
+0000356072 00000 n
+0001315901 00000 n
+0000358522 00000 n
+0000358279 00000 n
+0000356253 00000 n
+0000358395 00000 n
+0000360856 00000 n
+0000360677 00000 n
+0000358640 00000 n
+0000360793 00000 n
+0000363320 00000 n
+0000362949 00000 n
+0000361016 00000 n
+0000363065 00000 n
+0000365630 00000 n
+0000365451 00000 n
+0000363438 00000 n
+0000365567 00000 n
+0000367738 00000 n
+0000367559 00000 n
+0000365748 00000 n
+0000367675 00000 n
+0000370769 00000 n
+0000370590 00000 n
+0000367856 00000 n
+0000370706 00000 n
+0001316026 00000 n
+0000372733 00000 n
+0000372554 00000 n
+0000370901 00000 n
+0000372670 00000 n
+0000374727 00000 n
+0000374548 00000 n
+0000372851 00000 n
+0000374664 00000 n
+0000376504 00000 n
+0000376261 00000 n
+0000374845 00000 n
+0000376377 00000 n
+0000379088 00000 n
+0000378909 00000 n
+0000376621 00000 n
+0000379025 00000 n
+0000381014 00000 n
+0000380835 00000 n
+0000379235 00000 n
+0000380951 00000 n
+0000383670 00000 n
+0000383427 00000 n
+0000381132 00000 n
+0000383543 00000 n
+0001316151 00000 n
+0000385231 00000 n
+0000385052 00000 n
+0000383788 00000 n
+0000385168 00000 n
+0000387899 00000 n
+0000387720 00000 n
+0000385349 00000 n
+0000387836 00000 n
+0000390063 00000 n
+0000389820 00000 n
+0000388031 00000 n
+0000389936 00000 n
+0000391741 00000 n
+0000391562 00000 n
+0000390181 00000 n
+0000391678 00000 n
+0000393850 00000 n
+0000393671 00000 n
+0000391859 00000 n
+0000393787 00000 n
+0000396072 00000 n
+0000395829 00000 n
+0000394011 00000 n
+0000395945 00000 n
+0001316276 00000 n
+0000397868 00000 n
+0000397625 00000 n
+0000396190 00000 n
+0000397741 00000 n
+0000401336 00000 n
+0000401029 00000 n
+0000397986 00000 n
+0000401145 00000 n
+0000403635 00000 n
+0000403200 00000 n
+0000401483 00000 n
+0000403316 00000 n
+0000405391 00000 n
+0000405148 00000 n
+0000403796 00000 n
+0000405264 00000 n
+0000407768 00000 n
+0000407525 00000 n
+0000405509 00000 n
+0000407641 00000 n
+0000410041 00000 n
+0000409479 00000 n
+0000407886 00000 n
+0000409595 00000 n
+0001316401 00000 n
+0000411094 00000 n
+0000410915 00000 n
+0000410188 00000 n
+0000411031 00000 n
+0000413253 00000 n
+0000412946 00000 n
+0000411197 00000 n
+0000413062 00000 n
+0000415885 00000 n
+0000415386 00000 n
+0000413428 00000 n
+0000415502 00000 n
+0000418406 00000 n
+0000417907 00000 n
+0000416031 00000 n
+0000418023 00000 n
+0000420767 00000 n
+0000420524 00000 n
+0000418553 00000 n
+0000420640 00000 n
+0000422451 00000 n
+0000422272 00000 n
+0000420885 00000 n
+0000422388 00000 n
+0001316526 00000 n
+0000424660 00000 n
+0000424481 00000 n
+0000422554 00000 n
+0000424597 00000 n
+0000426346 00000 n
+0000426167 00000 n
+0000424806 00000 n
+0000426283 00000 n
+0000429072 00000 n
+0000428701 00000 n
+0000426449 00000 n
+0000428817 00000 n
+0000430284 00000 n
+0000430105 00000 n
+0000429233 00000 n
+0000430221 00000 n
+0000431915 00000 n
+0000431544 00000 n
+0000430387 00000 n
+0000431660 00000 n
+0000435108 00000 n
+0000434865 00000 n
+0000432033 00000 n
+0000434981 00000 n
+0001316651 00000 n
+0000437553 00000 n
+0000437374 00000 n
+0000435269 00000 n
+0000437490 00000 n
+0000439884 00000 n
+0000439513 00000 n
+0000437671 00000 n
+0000439629 00000 n
+0000442156 00000 n
+0000441977 00000 n
+0000440016 00000 n
+0000442093 00000 n
+0000443702 00000 n
+0000443523 00000 n
+0000442303 00000 n
+0000443639 00000 n
+0000446715 00000 n
+0000446536 00000 n
+0000443820 00000 n
+0000446652 00000 n
+0000448791 00000 n
+0000448548 00000 n
+0000446876 00000 n
+0000448664 00000 n
+0001316776 00000 n
+0000451172 00000 n
+0000450993 00000 n
+0000448909 00000 n
+0000451109 00000 n
+0000453124 00000 n
+0000452945 00000 n
+0000451305 00000 n
+0000453061 00000 n
+0000455148 00000 n
+0000454969 00000 n
+0000453242 00000 n
+0000455085 00000 n
+0000457035 00000 n
+0000456856 00000 n
+0000455266 00000 n
+0000456972 00000 n
+0000459908 00000 n
+0000459729 00000 n
+0000457153 00000 n
+0000459845 00000 n
+0000461830 00000 n
+0000461651 00000 n
+0000460026 00000 n
+0000461767 00000 n
+0001316901 00000 n
+0000463552 00000 n
+0000463373 00000 n
+0000461948 00000 n
+0000463489 00000 n
+0000465645 00000 n
+0000465996 00000 n
+0000465508 00000 n
+0000463670 00000 n
+0000465805 00000 n
+0000468200 00000 n
+0000468021 00000 n
+0000466128 00000 n
+0000468137 00000 n
+0000470302 00000 n
+0000470123 00000 n
+0000468318 00000 n
+0000470239 00000 n
+0000473370 00000 n
+0000472935 00000 n
+0000470420 00000 n
+0000473051 00000 n
+0000476087 00000 n
+0000475780 00000 n
+0000473516 00000 n
+0000475896 00000 n
+0001317026 00000 n
+0000478201 00000 n
+0000478022 00000 n
+0000476205 00000 n
+0000478138 00000 n
+0000480194 00000 n
+0000479759 00000 n
+0000478319 00000 n
+0000479875 00000 n
+0000482206 00000 n
+0000481963 00000 n
+0000480326 00000 n
+0000482079 00000 n
+0000483852 00000 n
+0000483673 00000 n
+0000482338 00000 n
+0000483789 00000 n
+0000485803 00000 n
+0000485624 00000 n
+0000483999 00000 n
+0000485740 00000 n
+0000487334 00000 n
+0000487155 00000 n
+0000485921 00000 n
+0000487271 00000 n
+0001317151 00000 n
+0000489422 00000 n
+0000489243 00000 n
+0000487437 00000 n
+0000489359 00000 n
+0000492049 00000 n
+0000491870 00000 n
+0000489569 00000 n
+0000491986 00000 n
+0000494716 00000 n
+0000494410 00000 n
+0000492224 00000 n
+0000494526 00000 n
+0000496142 00000 n
+0000495963 00000 n
+0000494863 00000 n
+0000496079 00000 n
+0000498498 00000 n
+0000498127 00000 n
+0000496260 00000 n
+0000498243 00000 n
+0000500917 00000 n
+0000500354 00000 n
+0000498659 00000 n
+0000500470 00000 n
+0000500661 00000 n
+0000500725 00000 n
+0000500789 00000 n
+0000500853 00000 n
+0001317276 00000 n
+0000504372 00000 n
+0000506877 00000 n
+0000507038 00000 n
+0000504914 00000 n
+0000504235 00000 n
+0000501049 00000 n
+0000504531 00000 n
+0000504594 00000 n
+0000504658 00000 n
+0000504722 00000 n
+0000504786 00000 n
+0000507326 00000 n
+0000506731 00000 n
+0000505047 00000 n
+0000507199 00000 n
+0000509940 00000 n
+0000509569 00000 n
+0000507444 00000 n
+0000509685 00000 n
+0000512032 00000 n
+0000511853 00000 n
+0000510087 00000 n
+0000511969 00000 n
+0000514104 00000 n
+0000513861 00000 n
+0000512179 00000 n
+0000513977 00000 n
+0000516587 00000 n
+0000516026 00000 n
+0000514251 00000 n
+0000516142 00000 n
+0001317401 00000 n
+0000519503 00000 n
+0000519324 00000 n
+0000516705 00000 n
+0000519440 00000 n
+0000522132 00000 n
+0000521953 00000 n
+0000519635 00000 n
+0000522069 00000 n
+0000524732 00000 n
+0000524553 00000 n
+0000522292 00000 n
+0000524669 00000 n
+0000527394 00000 n
+0000527215 00000 n
+0000524864 00000 n
+0000527331 00000 n
+0000529457 00000 n
+0000529278 00000 n
+0000527512 00000 n
+0000529394 00000 n
+0000531168 00000 n
+0000530989 00000 n
+0000529604 00000 n
+0000531105 00000 n
+0001317526 00000 n
+0000533208 00000 n
+0000532965 00000 n
+0000531286 00000 n
+0000533081 00000 n
+0000535234 00000 n
+0000535055 00000 n
+0000533355 00000 n
+0000535171 00000 n
+0000537130 00000 n
+0000536951 00000 n
+0000535381 00000 n
+0000537067 00000 n
+0000539007 00000 n
+0000538764 00000 n
+0000537277 00000 n
+0000538880 00000 n
+0000540134 00000 n
+0000539955 00000 n
+0000539124 00000 n
+0000540071 00000 n
+0000541256 00000 n
+0000541077 00000 n
+0000540237 00000 n
+0000541193 00000 n
+0001317651 00000 n
+0000542502 00000 n
+0000542323 00000 n
+0000541359 00000 n
+0000542439 00000 n
+0000543706 00000 n
+0000543527 00000 n
+0000542605 00000 n
+0000543643 00000 n
+0000545106 00000 n
+0000544927 00000 n
+0000543809 00000 n
+0000545043 00000 n
+0000547271 00000 n
+0000547028 00000 n
+0000545209 00000 n
+0000547144 00000 n
+0000548834 00000 n
+0000548591 00000 n
+0000547403 00000 n
+0000548707 00000 n
+0000550011 00000 n
+0000549832 00000 n
+0000548951 00000 n
+0000549948 00000 n
+0001317776 00000 n
+0000553880 00000 n
+0000553637 00000 n
+0000550114 00000 n
+0000553753 00000 n
+0000558294 00000 n
+0000558115 00000 n
+0000554011 00000 n
+0000558231 00000 n
+0000562783 00000 n
+0000562604 00000 n
+0000558411 00000 n
+0000562720 00000 n
+0000567110 00000 n
+0000566931 00000 n
+0000562900 00000 n
+0000567047 00000 n
+0000571543 00000 n
+0000571364 00000 n
+0000567227 00000 n
+0000571480 00000 n
+0000575966 00000 n
+0000575787 00000 n
+0000571660 00000 n
+0000575903 00000 n
+0001317901 00000 n
+0000580385 00000 n
+0000580206 00000 n
+0000576069 00000 n
+0000580322 00000 n
+0000584752 00000 n
+0000584573 00000 n
+0000580488 00000 n
+0000584689 00000 n
+0000588953 00000 n
+0000588774 00000 n
+0000584855 00000 n
+0000588890 00000 n
+0000593507 00000 n
+0000593328 00000 n
+0000589056 00000 n
+0000593444 00000 n
+0000598097 00000 n
+0000597918 00000 n
+0000593610 00000 n
+0000598034 00000 n
+0000602696 00000 n
+0000602517 00000 n
+0000598200 00000 n
+0000602633 00000 n
+0001318026 00000 n
+0000604034 00000 n
+0000603855 00000 n
+0000602813 00000 n
+0000603971 00000 n
+0001306127 00000 n
+0000604151 00000 n
+0001306712 00000 n
+0000604219 00000 n
+0001307022 00000 n
+0000604243 00000 n
+0000604399 00000 n
+0000604425 00000 n
+0000604451 00000 n
+0000604477 00000 n
+0000604572 00000 n
+0000605051 00000 n
+0000605163 00000 n
+0000605597 00000 n
+0001306837 00000 n
+0000606089 00000 n
+0000606116 00000 n
+0000606654 00000 n
+0000607222 00000 n
+0001305883 00000 n
+0000607248 00000 n
+0000607810 00000 n
+0000608268 00000 n
+0000608760 00000 n
+0000609199 00000 n
+0000609681 00000 n
+0000610078 00000 n
+0000610478 00000 n
+0000610878 00000 n
+0000611504 00000 n
+0000611531 00000 n
+0000611944 00000 n
+0000612431 00000 n
+0000612457 00000 n
+0000612581 00000 n
+0000612965 00000 n
+0000614225 00000 n
+0000614777 00000 n
+0000614803 00000 n
+0000615406 00000 n
+0000616030 00000 n
+0000616388 00000 n
+0000616819 00000 n
+0000617522 00000 n
+0000617544 00000 n
+0000617642 00000 n
+0000617834 00000 n
+0000624906 00000 n
+0000625131 00000 n
+0000632507 00000 n
+0000632756 00000 n
+0000639831 00000 n
+0000640061 00000 n
+0000670819 00000 n
+0000671191 00000 n
+0000701068 00000 n
+0000701456 00000 n
+0000724691 00000 n
+0000724976 00000 n
+0000751956 00000 n
+0000752248 00000 n
+0000779135 00000 n
+0000779506 00000 n
+0000784795 00000 n
+0000785073 00000 n
+0000787420 00000 n
+0000787665 00000 n
+0000790082 00000 n
+0000790324 00000 n
+0000828362 00000 n
+0000828959 00000 n
+0000853510 00000 n
+0000853821 00000 n
+0000875314 00000 n
+0000875563 00000 n
+0000899923 00000 n
+0000900228 00000 n
+0000914136 00000 n
+0000914370 00000 n
+0000937081 00000 n
+0000937376 00000 n
+0000966105 00000 n
+0000966459 00000 n
+0000999259 00000 n
+0000999739 00000 n
+0001021397 00000 n
+0001021773 00000 n
+0001046778 00000 n
+0001047057 00000 n
+0001073133 00000 n
+0001073414 00000 n
+0001090507 00000 n
+0001090766 00000 n
+0001106495 00000 n
+0001106733 00000 n
+0001121656 00000 n
+0001121924 00000 n
+0001139419 00000 n
+0001139729 00000 n
+0001161328 00000 n
+0001161586 00000 n
+0001182929 00000 n
+0001183212 00000 n
+0001206742 00000 n
+0001207076 00000 n
+0001209670 00000 n
+0001209930 00000 n
+0001214261 00000 n
+0001214612 00000 n
+0001217036 00000 n
+0001217285 00000 n
+0001219784 00000 n
+0001220034 00000 n
+0001222464 00000 n
+0001222715 00000 n
+0001256291 00000 n
+0001256934 00000 n
+0001288945 00000 n
+0001289583 00000 n
+0001291488 00000 n
+0001291726 00000 n
+0001305507 00000 n
+0001318115 00000 n
+0001318241 00000 n
+0001318367 00000 n
+0001318493 00000 n
+0001318619 00000 n
+0001318745 00000 n
+0001318825 00000 n
+0001318935 00000 n
+0001359728 00000 n
+0001359908 00000 n
+0001360085 00000 n
+0001360260 00000 n
+0001360435 00000 n
+0001360607 00000 n
+0001360816 00000 n
+0001361069 00000 n
+0001361322 00000 n
+0001361575 00000 n
+0001361757 00000 n
+0001361961 00000 n
+0001362180 00000 n
+0001362391 00000 n
+0001362604 00000 n
+0001362841 00000 n
+0001363094 00000 n
+0001363336 00000 n
+0001363556 00000 n
+0001363837 00000 n
+0001364098 00000 n
+0001364379 00000 n
+0001364608 00000 n
+0001364875 00000 n
+0001365132 00000 n
+0001365395 00000 n
+0001365656 00000 n
+0001365918 00000 n
+0001366180 00000 n
+0001366467 00000 n
+0001366739 00000 n
+0001366994 00000 n
+0001367256 00000 n
+0001367517 00000 n
+0001367787 00000 n
+0001368060 00000 n
+0001368335 00000 n
+0001368601 00000 n
+0001368862 00000 n
+0001369143 00000 n
+0001369411 00000 n
+0001369663 00000 n
+0001369928 00000 n
+0001370193 00000 n
+0001370453 00000 n
+0001370732 00000 n
+0001370989 00000 n
+0001371233 00000 n
+0001371501 00000 n
+0001371756 00000 n
+0001371991 00000 n
+0001372241 00000 n
+0001372478 00000 n
+0001372735 00000 n
+0001372977 00000 n
+0001373227 00000 n
+0001373478 00000 n
+0001373729 00000 n
+0001373993 00000 n
+0001374253 00000 n
+0001374472 00000 n
+0001374713 00000 n
+0001374964 00000 n
+0001375216 00000 n
+0001375470 00000 n
+0001375723 00000 n
+0001375969 00000 n
+0001376213 00000 n
+0001376472 00000 n
+0001376743 00000 n
+0001376983 00000 n
+0001377236 00000 n
+0001377472 00000 n
+0001377714 00000 n
+0001377970 00000 n
+0001378230 00000 n
+0001378492 00000 n
+0001378769 00000 n
+0001379045 00000 n
+0001379285 00000 n
+0001379552 00000 n
+0001379813 00000 n
+0001380068 00000 n
+0001380334 00000 n
+0001380611 00000 n
+0001380877 00000 n
+0001381132 00000 n
+0001381387 00000 n
+0001381653 00000 n
+0001381923 00000 n
+0001382201 00000 n
+0001382479 00000 n
+0001382720 00000 n
+0001382996 00000 n
+0001383267 00000 n
+0001383518 00000 n
+0001383784 00000 n
+0001384049 00000 n
+0001384310 00000 n
+0001384589 00000 n
+0001384818 00000 n
+0001385003 00000 n
+0001385187 00000 n
+0001385372 00000 n
+0001385556 00000 n
+0001385741 00000 n
+0001385925 00000 n
+0001386110 00000 n
+0001386294 00000 n
+0001386479 00000 n
+0001386662 00000 n
+0001386845 00000 n
+0001387030 00000 n
+0001387214 00000 n
+0001387399 00000 n
+0001387583 00000 n
+0001387761 00000 n
+0001387938 00000 n
+0001388114 00000 n
+0001388291 00000 n
+0001388466 00000 n
+0001388641 00000 n
+0001388818 00000 n
+0001388994 00000 n
+0001389171 00000 n
+0001389347 00000 n
+0001389524 00000 n
+0001389700 00000 n
+0001389877 00000 n
+0001390053 00000 n
+0001390230 00000 n
+0001390433 00000 n
+0001390642 00000 n
+0001390849 00000 n
+0001391056 00000 n
+0001391265 00000 n
+0001391473 00000 n
+0001391682 00000 n
+0001391890 00000 n
+0001392099 00000 n
+0001392304 00000 n
+0001392497 00000 n
+0001392683 00000 n
+0001392888 00000 n
+0001393123 00000 n
+0001393361 00000 n
+0001393610 00000 n
+0001393854 00000 n
+0001394092 00000 n
+0001394319 00000 n
+0001394564 00000 n
+0001394752 00000 n
+0001394880 00000 n
+0001395003 00000 n
+0001395124 00000 n
+0001395258 00000 n
+0001395399 00000 n
+0001395542 00000 n
+0001395682 00000 n
+0001395822 00000 n
+0001395963 00000 n
+0001396091 00000 n
+0001396218 00000 n
+0001396351 00000 n
+0001396488 00000 n
+0001396620 00000 n
+0001396760 00000 n
+0001396897 00000 n
+0001397027 00000 n
+0001397145 00000 n
+0001397263 00000 n
+0001397380 00000 n
+0001397496 00000 n
+0001397616 00000 n
+0001397739 00000 n
+0001397867 00000 n
+0001398004 00000 n
+0001398088 00000 n
+0001398220 00000 n
+0001398357 00000 n
+0001398484 00000 n
+0001398609 00000 n
+0001398697 00000 n
+0001398806 00000 n
+0001398846 00000 n
+0001398979 00000 n
+trailer
+<< /Size 3425
+/Root 3423 0 R
+/Info 3424 0 R
+/ID [<14AAA6C4891BAE50A8C3FF163354FF2C> <14AAA6C4891BAE50A8C3FF163354FF2C>] >>
+startxref
+1399255
+%%EOF