diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/.cvsignore samba-3.0.3/.cvsignore --- samba-3.0.2a/.cvsignore Sun Nov 18 20:46:48 2001 +++ samba-3.0.3/.cvsignore Wed Dec 31 18:00:00 1969 @@ -1,2 +0,0 @@ -ID -testtmp diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/REVISION samba-3.0.3/REVISION --- samba-3.0.2a/REVISION Wed Dec 31 18:00:00 1969 +++ samba-3.0.3/REVISION Thu Apr 29 03:08:25 2004 @@ -0,0 +1,11 @@ +Path: . +URL: svn+ssh://svn.samba.org/home/svn/samba/branches/SAMBA_3_0_RELEASE +Repository UUID: 0c0555d6-39d7-0310-84fc-f1cc0bd64818 +Revision: 399 +Node Kind: directory +Schedule: normal +Last Changed Author: jerry +Last Changed Rev: 399 +Last Changed Date: 2004-04-29 02:34:10 -0500 (Thu, 29 Apr 2004) +Properties Last Updated: 2004-04-05 07:42:09 -0500 (Mon, 05 Apr 2004) + diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/WHATSNEW.txt samba-3.0.3/WHATSNEW.txt --- samba-3.0.2a/WHATSNEW.txt Fri Feb 13 13:02:08 2004 +++ samba-3.0.3/WHATSNEW.txt Thu Apr 29 02:49:22 2004 @@ -1,3 +1,504 @@ + ============================= + Release Notes for Samba 3.0.3 + April 29, 2004 + ============================= + +This is the latest stable release of Samba. This is the version +that production Samba servers should be running for all +current bug-fixes. There have been several issues fixes since +the 3.0.2a release and new features have been added as well. +See the "Changes" section for details on exact updates. + +Common bugs fixed in Samba 3.0.3 include: + + o Crash bugs and change notify issues in Samba's printing code. + o Honoring secondary group membership on domain member servers. + o TDB scalability issue surrounding the TDB_CLEAR_IF_FIRST flag. + o Substitution errors for %[UuGg] in smb.conf. + o winbindd crashes when using ADS security mode. + o SMB signing errors. + o Delays in winbindd startup caused by unnecessary + connections to trusted domain controllers. + o Various small memory leaks. + o Winbindd failing due to expired Kerberos tickets. + +New features introduced in Samba 3.0.3 include: + + o Improved support for i18n character sets. + o Support for account lockout policy based on + bad password attempts. + o Improved support for long password changes (>14 + characters) and strong password enforcement. + o Support for Windows aliases (i.e. nested groups). + o Experimental support for storing DOS attribute on files + and folders in Extended Attributes. + o Support for local nested groups via winbindd. + o Specifying options to be passed directly to the CUPS libraries. + +Please be aware that the Samba source code repository was +migrated from CVS to Subversion on April 4, 2004. Details on +accessing the Samba source tree via anonymous svn can be found +at http://svn.samba.org/samba/subversion.html. + + +###################################################################### +Changes +####### + +Changes since 3.0.3rc1 +---------------------- + +commits +------- + +o Timur Bakeyev + * BUG 1141: Fix nss*.so names on FreeBSD 5.x. + + +o Gerald Carter + * BUG 1288: resolve any machine netbios name (0x00) and not just + servers (0x20). + * BUG 1199: Fix potential symlink issue in + examples/printing/smbprint. + + +o Landon Fuller + * BUG 1232: patch from landonf@opendarwin.org (Landon Fuller) + to fix user/group enumeration on systems whose libc does not + call setgrent() before trying to enumerate users (i.e. + FreeBSD 5.2). + + +o Volker Lendecke + * Correct case where adding a domain user to a XP local group + did a lsalookupname on the user without domain prefix, and + failed. + * Fix segfault in winbindd caused by 'wbinfo -a'. + + +o Stefan Metzmacher + * Add shadow_copy vfs module. + * Fix segault in login_cache support. + + +o Tim Potter + * Relicense tdb python module as LGPL. + + +o Jelmer Vernooij + * Fix syntax error in example mysql table + + + +Changes since 3.0.2a +-------------------- +smb.conf changes +---------------- + + Parameter Name Action + -------------- ------ + cups options New + ea support New + only user Deprecated + store dos attributes New + unicode Removed + winbind nested groups New + + +commits +------- + +o Jeremy Allison + * Ensure that Kerberos mutex is always properly unlocked. + * Removed Heimdal "in-memory keytab" support. + * Fixup the 'multiple-vuids' bugs in our server code. + * Correct return code from lsa_lookup_sids() on unmapped + sids (based on work by vl@samba.org). + * Fix the "too many fcntl locks" scalability problem + raised by tridge. + * Fixup correct (as per W2K3) returns for lookupsids + as well as lookupnames. + * Fixups for delete-on-close semantics as per Win2k3 behavior. + * Make SMB_FILE_ACCESS_INFORMATION call work correctly. + * Fix "unable to initialize" bug when smbd hasn't been run with + new system and a user is being added via pdbedit/smbpasswd. + * Added NTrename SMB (0xA5). + * Fixup correct timeout values for blocking lock timeouts. + * Fix various bugs reported by 'gentest'. + * More locking fixes in the case where we own the lock. + * Fix up regression in IS_NAME_VALID and renames. + * Don't set allocation size on directories. + * Return correct error code on fail if file exists and target + is a directory. + * Added client "hardlink" comment to test doing NT rename with + hard links. Added hardlink_internals() code - UNIX extensions + now use this as well. + * Use a common function to parse all pathnames from the wire for + much closer emulation of Win2k3 error return codes. + * Implement check_path_syntax() and rewrite string sub + functions for better multibyte support. + * Ensure msdfs referrals are multibyte safe. + * Allow msdfs symlink syntax to be more forgiving. + eg. sym_link -> msdfs://server/share/path/in/share + or sym_link -> msdfs:\\server\share\path\in\share. + * Cleanup multibyte netbios name support in nmbd ( based on patch + by MORIYAMA Masayuki ). + * Fix check_path_syntax() for multibyte encodings which have + no '\' as second byte (based on work by ab@samba.org. + * Fix the "dfs self-referrals as anonymous user" problem + (based on patch from vl@samba.org). + * BUG 1064: Ensure truncate attribute checking is done correctly + on "hidden" dot files. + * Fix bug in anonymous dfs self-referrals again. + * Fix get/set of EA's in client library + * Added support for OS/2 EA's in smbd server. + * Added 'ea support' parameter to smb.conf. + * Added 'store dos attributes' parameter to smb.conf. + * Fix wildcard identical rename. + * Fix reply_ctemp - make compatible with w2k3. + * Fix wildcard unlink. + * Fix wildcard src with wildcard dest renames. + * BUG 1139: Fix based on suggestion by jdev@panix.com. + swap lookups for user and group - group will do an + algorithmic lookup if it fails, user won't. + * Make EA's lookups case independent. + * Fix SETPATHINFO in 'unix extensions' support. + * Make 3.x pass the Samba 4.x RAW-SEARCH tests - except for + the UNIX info levels, and the short case preserve names. + + +o Timur Bakeyev + * BUG 1144: only set --with-fhs when the argument is 'yes' + * BUG 1152: Allow python modules to build despite libraries added + to LDFLAGS instead of LDPATH. + + +o Craig Barratt + * BUG 389: Allow multiple exclude arguments with smbclient + tar -Xr options (better support for Amanda backup client). + + +o Andrew Bartlet + * Include support for linking with cracklib for enforcing strong + password changes. + * Add support for >14 character password changes from Windows + clients. + * Add 'admin set password' capability to 'net rpc'. + * Allow 'net rpc samdump' to work with any joined domain + regardless of smb.conf settings. + * Use an allocated buffer for count_chars. + * Add sanity checks for changes in the domain SID in an + LDAP DIT. + * Implement python unit tests for Samba's multibyte string + support. + * Remove 'unicode' smb.conf option. + * BUG 1138: Fix support for 'optional' SMB signing and other + signing bugs. + * BUG 169: Fix NTLMv2-only behavior. + * Ensure 'net' honors the 'netbios name' in the smb.conf by + default. + * Support SMB signing on connections using only the LANMAN + password and generate the correct the 'session key' for these + connections. + * Implement --required-membership-of=, an ntlm_auth option + that restricts all authentication to members of this particular + group. + * Improve our fall back code for password changes. + * Only send the ntlm_auth 'ntlm-server-1' helper client a '.' + after the server had said something (such as an error). + * Add 'ntlm-server-1' helper protocol to ntlm_auth. + + +o Alexander Bokovoy + * Fix incorrect size calculation of the directory name + in recycle.so. + * Fix problems with very long filenames in both smbd and smbclient + caused by truncating paths during character conversions. + * Fix smbfs problem with Tree Disconnect issued before smbfs + starts its work. + + +o Gerald Carter + * BUG 850: Fix 'make installmodules' bug on True64. + * BUG 66: mark 'only user' deprecated. + * Remove corrupt tdb and shutdown (only for printing tdbs, + connections, sessionid & locking). + * decrement smbd counter in connections.tdb in smb_panic(). + * RedHat specfile updates. + * Fix xattr.h build issue on Debian testing and SuSE 8.2. + * BUG 1147; bad pointer case in get_stored_queue_info() + causing seg fault. + * BUG 761: read the config file before initialized default + values for printing options; don't default to bsd printing + Linux. + * Allow the 'printing' parameter to be set on a per share basis. + * BUG 503: RedHat/Fedora packaging fixes regarding logrotate. + * BUG 848: don't create winbind local users/groups that already + exist in the tdb. + * BUG 1080: fix declaration of SMB_BIG_UINT (broke compile on + LynxOS/ppc). + * BUG 488: fix the 'show client in col 1' button and correctly + enumerate active connections. + * BUG 1007 (partial): Fix abort in smbd caused by byte ordering + problem when storing the updating pid for the lpq cache. + * BUG 1007 (partial): Fix print change notify bugs. + * BUG 1165, 1126: Fix bug with secondary groups (security = ads) + and winbind use default domain = yes. Also ensures that + * BUG 1151: Ensure that winbindd users are passed through + the username map. + * Fix client rpc binds for ASU derived servers (pc netlink, + etc...). + * BUG 417, 1128: Ensure that the current_user_info is set + consistently so that %[UuGg] is expanded correctly. + * BUG 1195: Fix crash in winbindd when the ADS server is + unavailable. + * BUG 1185: Set reconnect time to be the same as the + 'winbind cache time'. + * Ensure that we return the sec_desc in smb_io_printer_info_2. + * Change Samba printers Win32 attribute to PRINTER_ATTRIBUTE_LOCAL. + * BUG 1095: Honor the '-l' option in smbclient. + * BUG 1023: surround get_group_from_gid() with become_unbecome_root() + block. + * Ensure server schannel uses the auth level requested by the + client. + * Removed --with-cracklib option due to potential crash issue. + * Fix -lcrypto linking problem with wbinfo. + * BUG 761: allow printing parameter to set defaults on a per + share basis. + * Add 'cups options' parameter to allow raw printing without + changing /etc/cups/cupsd.conf. + * BUG 1081, 1183: Added remove_duplicate_gids() to smbd and + winbindd. + * BUG 1246: Fix typo in Fedora /etc/init.d/winbind. + + +o Robert Dahlem + * BUG 1048: Don't return short names when when 'mangled names = no' + + +o Guenther Deschner + * Remove hard coded attribute name in the ads ranged retrieval + code. + * Add --with-libdir and --with-mandir to autoconf script. + + +o Bostjan Golob + * BUG 1046: Fix getpwent_list() so that the username is not + overwritten by other fields. + + +o Steve French + * Update mount.cifs to version 1.1. + * Disable dev (MS_NODEV) on user mounts from cifs vfs. + * Fixes to minor security bug in the mount helper. + * Fix credential file mounting for cifs vfs. + * Fix free of incremented pointer in cifsvfs mount helper. + * Fix path canonicalization of the mount target path and help + text display in the cifs mount helper. + * Add missing guest mount option for mount.cifs. + + +o SATOH Fumiyasu + * BUG 1055; formatting fixes for 'net share'. + * BUG 692: correct truncation of share names and workgroup + names in smbclient. + * BUG 1088: use strchr_m() for query_host (smbclient -L). + * Patch from to internally count characters correctly. + + +o Paul Green + * Update VOS _POSIX_C_SOURCE macro to 200112L. + * Fix bug in configure.ion by moving the first use of + AC_CHECK_HEADERS so it is always executed. + * Fix configure.in to only use $BLDSHARED to select whether to + build static or shared libraries. + + +o Pat Haywarrd + * Make the session_users list dynamic (max of 128K). + + +o Cal Heldenbrand + * Fix for for 'pam_smbpass migrate' functionality. + + +o Chris Hertel + * fix enumeration of shares 12 characters in length via + smbclient. + + +o Ulrich Holeschak + * BUG 932: fix local password change using pam_smbpass + + +o Krischan Jodies + * Implement 'net rpc group delete' + + +o John Klinger + * Return NSS_SUCCESS once the max number of gids possible + has been found in initgroups() on Solaris. + * BUG 1182: Re-enable the -n 'no cache' option for winbindd. + + +o Volker Lendecke + * Fix success message for net groupmap modify. + * Fix errors when enumerating members of groups in 'net rpc'. + * Match Windows behavior in samr_lookup_names() by returning + ALIAS(4) when you search in BUILTIN. + * Fix server SAMR code to be able to set alias info for + builtin as well. + * Fix duplication of logic when creating groups via smbd. + * Ensure that the HWM values are set correctly after running + 'net idmap'. + * Add 'net rpc group add'. + * Implement 'net groupmap set' and 'net groupmap cleanup'. + * Add 'net rpc group [add|del]mem' for domain groups and aliases. + * Fix wb_delgrpmem (wbinfo -o). + * As a DC we should not reply to lsalookupnames on DCNAME\\user. + * Fix sambaUserWorkstations on a Samba DC. + * Implement wbinfo -k: Have winbind generate an AFS token after + authenticating the user. + * Add expand_msdfs VFS module for providing referrals based on the + the client's IP address. + * Implement client side NETLOGON GetDCName function. + * Fix caching of name->sid lookups. + * Add support in winbindd for expanding nested local groups. + * Fix memleak in winbindd. + * Fix msdfs proxy. + * Don't list domain groups from BUILTIN. + * Fix memleak in policy handle utility functions. + * Decrease winbindd startup time by only contacting trusted + domains as necessary. + * Allow winbindd to ask the DC for its domain for a trusted + DC. + * Fix Netscape DS schema based on comments from + . + + +o Herb Lewis + * Fix typo for tag in proto file. + * Add missing #ifdef HAVE_BICONV stuff. + * Truncate Samba's netbios name at the first '.' (not + right to left). + + +o Derrell Lipman + * Bug fixes and enhancements to libsmbclient library. + + +o Jianliang Lu + * Enforce the 'user must change password at next login' flag. + * Decode meaning of 'fields present' flags (improves support + for usrmgr.exe). + * NTLMv2 fixes. + * Don't force an upper case domain name in the ntlmssp code. + + +o L. Lucius . + * type fixes. + + +o Jim McDonough + * Add versioning support to tdbsam. + * Update the IBM Directory Server schema with the OpenLDAP + file. + * Various decoding fixes to improve usrmgr.exe support. + * Fix statfs redeclaration of statfs struct on ppc + * Implement support for password lockout of Samba domain + controllers and standalone servers. + * Get MungedDial attribute actually working with full TS + strings in it for pdb_ldap. + * BUG 1208 (partial): Improvements for working with expired krb5 + tickets in winbindd. + * Use timegm, or our already existing replacement instead of + timezone (spotted by Andrzej Tobola ). + * Remove modifyTimestamp from list of our attributes. + * Fix lsalookupnames to check for domain users as well as local + users. + * Merge struct uuid replacement for GUID from trunk. + * BUG 1208: Finish support for handling expired tickets in + winbindd (in conjunction with Guenther Deschner ). + + +o Stefan Metzmacher + * Implement new VERSION schema based on subversion revision + numbers. + + +o Heinrich Mislik + o BUG 979 -- Fix quota display on AIX. + + +o James Peach + * Correct check for printf() format when using the SGI MIPSPro + compiler. + * BUG 1038: support backtrace for 'panic action' on IRIX. + * BUG 768: Accept profileing arg to IRIX init script. + * BUG 748: Relax arg parsing to sambalp script (IRIX). + * BUG 758: Fix pdma build. + * Search IRIX ABI paths for libiconv. Based on initial fix from + Jason Mader. + + +o Kurt Pfeifle + * Add example shell script for migrating drivers and printers + from a Windows print server to a Samba print server using + smbclient/rpcclient (examples/printing/VamireDriversFunctions). + + +o Tim Potter + * Fix logic bug in tdb non-blocking lock routines when + errno == EAGAIN. + * BUG 1025: Include sys/acl.h in check for broken nisplus + include files. + * BUG 1066: s/printf/d_printf/g in SWAT. + * BUG 1098: rename internal msleep() function to fix build + problems on AIX. + * BUG 1112: Fix for writable printerdata problem in python bindings. + * BUG 1154: Remove reference to in tdbdump.c. + * BUG 1155: enclose use of fchown() with guards. + + +o Richard Sharpe + * Add support to smbclient for multiple logins on the same + session (based on work by abartlet@samba.org). + * Correct blocking condition in smbd's use of accept() on IRIX. + * Add support for printing out the MAC address on nmblookup. + + +o Simo Source + * Replace unknown_3 with fields_present in SAMR code. + * More length checks in strlcat(). + + +o Andrew Tridgell + * Rewrote the AIX UESS backend for winbindd. + * Fixed compilation with --enable-dmalloc. + * Change tdb license to LGPL (see source/tdb/tdb.c). + * Force winbindd to use schannel in clients connections to + DC's if possible. + + +o Jelmer Vernooij + * Fix ETA Calculation when resuming downloads in smbget. + * Add -O (for writing downloaded files to standard out) + based on patch by Bas van Sisseren . + + +o TAKEDA yasuma + * BUG 900: fix token processing in cmd_symlink, cmd_link, + cmd_chown, cmd_chmod smbclient functions. + + +o Shiro Yamada + * BUG 1129: install image files for SWAT. + + +Changes for older versions follow below: + + -------------------------------------------------- + ============================== Release Notes for Samba 3.0.2a February 13, 2004 @@ -24,10 +525,6 @@ ******************* Attention! Achtung! Kree! ********************* -###################################################################### -Changes -####### - Changes since 3.0.2 ------------------- @@ -72,12 +569,10 @@ o Urban Widmark * Set nosuid,nodev flags in smbmnt by default. - - -Changes for older versions follow below: - + + -------------------------------------------------- - + ============================= Release Notes for Samba 3.0.2 February 9, 2004 @@ -563,7 +1058,10 @@ o Remove code in idmap_ldap that searches the user suffix and group suffix. It's not needed and provides inconsistent functionality from the tdb backend. -o Patch to handle munged dial string for Windows 200 TSE. +o Patch to handle munged dial string for Windows 2000 TSE. + Thanks to Gaz de France, Direction de la Recherche, Service + Informatique Métier for their supporting this work by Aurelien + Degrémont . o Correct the "smbldap_open: cannot access when not root error" messages when looking up group information (bug 281). o Skip over the winbind separator when looking up a user. diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/README.ldap samba-3.0.3/docs/README.ldap --- samba-3.0.2a/docs/README.ldap Thu Dec 6 01:37:55 2001 +++ samba-3.0.3/docs/README.ldap Wed Dec 31 18:00:00 1969 @@ -1 +0,0 @@ -The schema file is stored in ../examples/LDAP/samba.schema diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/REVISION samba-3.0.3/docs/REVISION --- samba-3.0.2a/docs/REVISION Wed Dec 31 18:00:00 1969 +++ samba-3.0.3/docs/REVISION Tue Apr 27 05:49:59 2004 @@ -0,0 +1,10 @@ +Path: . +URL: svn+ssh://svn.samba.org/home/svn/samba-docs/trunk +Repository UUID: b188d75c-76d7-0310-bd5a-9f2eb9070937 +Revision: 53 +Node Kind: directory +Schedule: normal +Last Changed Author: jht +Last Changed Rev: 53 +Last Changed Date: 2004-04-28 20:35:00 -0700 (Wed, 28 Apr 2004) + diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/FolderRedir.adm samba-3.0.3/docs/Registry/FolderRedir.adm --- samba-3.0.2a/docs/Registry/FolderRedir.adm Sat Dec 13 17:54:27 2003 +++ samba-3.0.3/docs/Registry/FolderRedir.adm Wed Dec 31 18:00:00 1969 @@ -1,35 +0,0 @@ -CLASS MACHINE - -CATEGORY !!Shell - - CATEGORY !!CustomSharedAppFolders - KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" - - POLICY !!CustomFolders_SharedAppData - PART !!CustomFolders_SharedAppDataPath EDITTEXT REQUIRED EXPANDABLETEXT - DEFAULT !!CustomFolders_SharedAppDataDefault - VALUENAME "AppData" - END PART - END POLICY - - POLICY !!CustomFolders_SharedMyDocs - PART !!CustomFolders_SharedMyDocsPath EDITTEXT REQUIRED EXPANDABLETEXT - DEFAULT !!CustomFolders_SharedMyDocsDefault - VALUENAME "Personal" - END PART - END POLICY - - END CATEGORY - -END CATEGORY ; Shell - - -[strings] -Shell="Shared User Profile Folders" -CustomSharedAppFolders="Custom Shared Folders" -CustomFolders_SharedAppData="Custom Shared Application Folders" -CustomFolders_SharedAppDataPath="Path to location of Shared Application Data" -CustomFolders_SharedAppDataDefault="%USERPROFILE%\Local Settings\Application Data" -CustomFolders_SharedMyDocs="Custom Shared Documentation Folder" -CustomFolders_SharedMyDocsPath="Path to location of Shared My Documents" -CustomFolders_SharedMyDocsDefault="%USERPROFILE%\MY Documents" \ No newline at end of file diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/NT4-Locking.reg samba-3.0.3/docs/Registry/NT4-Locking.reg --- samba-3.0.2a/docs/Registry/NT4-Locking.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/NT4-Locking.reg Wed Dec 31 18:00:00 1969 @@ -1,24 +0,0 @@ -REGEDIT4 - -;Contributor: John H Terpstra -;Corrected: Stefan Kanthak -;Updated: Jun 25, 2001 -; -;Subject: Registry Entries That Affect Locking and Caching - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters] -"BufFilesDenyWrite"=dword:00000000 -"BufNamedPipes"=dword:00000000 -"UseOpportunisticLocking"=dword:00000000 -"DormantFileLimit"=dword:00000000 - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters\Linkage] -"UtilizeNtCaching"=dword:00000000 - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Filesystem] -"Win95TruncatedExtensions"=dword:00000000 -"NTFSDisable8dot3NameCreation"=dword:00000001 - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanManServer\Parameters] -"EnableOpLockForceClose"=dword:00000001 -"EnableOpLocks"=dword:00000000 diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/NT4_PlainPassword.reg samba-3.0.3/docs/Registry/NT4_PlainPassword.reg --- samba-3.0.2a/docs/Registry/NT4_PlainPassword.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/NT4_PlainPassword.reg Wed Dec 31 18:00:00 1969 @@ -1,11 +0,0 @@ -REGEDIT4 - -;Contributor: Tim Small (tim.small@virgin.net) -;Updated: 20 August 1997 -;Status: Current -; -;Subject: Registry file to enable plain text passwords in NT4-SP3 and later - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rdr\Parameters] -"EnablePlainTextPassword"=dword:00000001 - Binary files samba-3.0.2a/docs/Registry/Win-2Kx-XPP-DeleteCachedProfiles.reg and samba-3.0.3/docs/Registry/Win-2Kx-XPP-DeleteCachedProfiles.reg differ Binary files samba-3.0.2a/docs/Registry/Win-2Kx-XPP-ForceLocalProfile.reg and samba-3.0.3/docs/Registry/Win-2Kx-XPP-ForceLocalProfile.reg differ diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/Win-NT-DeleteRoamingProfile.reg samba-3.0.3/docs/Registry/Win-NT-DeleteRoamingProfile.reg --- samba-3.0.2a/docs/Registry/Win-NT-DeleteRoamingProfile.reg Tue Dec 16 13:23:36 2003 +++ samba-3.0.3/docs/Registry/Win-NT-DeleteRoamingProfile.reg Wed Dec 31 18:00:00 1969 @@ -1,11 +0,0 @@ -REGEDIT4 - -;Contributor: John H Terpstra -;Updated: December 17, 2002 -;Status: Current -; -;Subject: Registry file update to delete roaming profiles on logout - -[HKEY_LOCAL_MACHINE\SYSTEM\Software\Microsoft\Windows NT\CurrentVersion\winlogon] -"DeleteRoamingCache"=dword:00000001 - diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/Win2000_PlainPassword.reg samba-3.0.3/docs/Registry/Win2000_PlainPassword.reg --- samba-3.0.2a/docs/Registry/Win2000_PlainPassword.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/Win2000_PlainPassword.reg Wed Dec 31 18:00:00 1969 @@ -1,11 +0,0 @@ -REGEDIT4 - -;Contributor: Herb Lewis (herb@sgi.com) -;Updated: 16 July 1999 -;Status: Current -; -;Subject: Registry file to enable plain text passwords in Windows 2000 - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkStation\Parameters] -"EnablePlainTextPassword"=dword:00000001 - diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/Win95_PlainPassword.reg samba-3.0.3/docs/Registry/Win95_PlainPassword.reg --- samba-3.0.2a/docs/Registry/Win95_PlainPassword.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/Win95_PlainPassword.reg Wed Dec 31 18:00:00 1969 @@ -1,4 +0,0 @@ -REGEDIT4 - -[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\VNETSUP] -"EnablePlainTextPassword"=dword:00000001 diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/Win98_PlainPassword.reg samba-3.0.3/docs/Registry/Win98_PlainPassword.reg --- samba-3.0.2a/docs/Registry/Win98_PlainPassword.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/Win98_PlainPassword.reg Wed Dec 31 18:00:00 1969 @@ -1,4 +0,0 @@ -REGEDIT4 - -[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\VNETSUP] -"EnablePlainTextPassword"=dword:00000001 diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/Win9X-CacheHandling.reg samba-3.0.3/docs/Registry/Win9X-CacheHandling.reg --- samba-3.0.2a/docs/Registry/Win9X-CacheHandling.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/Win9X-CacheHandling.reg Wed Dec 31 18:00:00 1969 @@ -1,7 +0,0 @@ -REGEDIT4 - -; Contributor: John H Terpstra -; Date: Feb 15, 1999 - -[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\VREDIR] -"DiscardCacheOnOpen"=string:00000001 diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/WinME_PlainPassword.reg samba-3.0.3/docs/Registry/WinME_PlainPassword.reg --- samba-3.0.2a/docs/Registry/WinME_PlainPassword.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/WinME_PlainPassword.reg Wed Dec 31 18:00:00 1969 @@ -1,4 +0,0 @@ -REGEDIT4 - -[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\VNETSUP] -"EnablePlainTextPassword"=dword:00000001 Binary files samba-3.0.2a/docs/Registry/WinXP_PlainPassword.reg and samba-3.0.3/docs/Registry/WinXP_PlainPassword.reg differ diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/WinXP_SignOrSeal.reg samba-3.0.3/docs/Registry/WinXP_SignOrSeal.reg --- samba-3.0.2a/docs/Registry/WinXP_SignOrSeal.reg Fri Apr 5 11:02:34 2002 +++ samba-3.0.3/docs/Registry/WinXP_SignOrSeal.reg Wed Dec 31 18:00:00 1969 @@ -1,11 +0,0 @@ -Windows Registry Editor Version 5.00 - -; -; This registry key is needed for a Windows XP Client to join -; and logon to a Samba domain. Note: Samba 2.2.3a contained -; this key in a broken format which did nothing to the registry - -; however XP reported "registry key imported". If in doubt -; check the key by hand with regedit. - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters] -"requiresignorseal"=dword:00000000 diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Registry/WindowsTerminalServer.reg samba-3.0.3/docs/Registry/WindowsTerminalServer.reg --- samba-3.0.2a/docs/Registry/WindowsTerminalServer.reg Thu Dec 6 01:33:10 2001 +++ samba-3.0.3/docs/Registry/WindowsTerminalServer.reg Wed Dec 31 18:00:00 1969 @@ -1,7 +0,0 @@ -REGEDIT4 - -;Subject: Registry file to force multiple NT terminal server users to have their own connections. - -[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rdr\Parameters] -"MultipleUsersOnConnection"=dword:00000000 - diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Samba-Developers-Guide.pdf samba-3.0.3/docs/Samba-Developers-Guide.pdf --- samba-3.0.2a/docs/Samba-Developers-Guide.pdf Wed Dec 31 18:00:00 1969 +++ samba-3.0.3/docs/Samba-Developers-Guide.pdf Tue Apr 27 05:59:21 2004 @@ -0,0 +1,14439 @@ +%PDF-1.4 +5 0 obj +<< /S /GoTo /D (section*.1) >> +endobj +8 0 obj +(Attributions) +endobj +9 0 obj +<< /S /GoTo /D (id2427225) >> +endobj +12 0 obj +(Contents) +endobj +13 0 obj +<< /S /GoTo /D (part.1) >> +endobj +16 0 obj +(Part I The protocol) +endobj +17 0 obj +<< /S /GoTo /D (chapter.1) >> +endobj +20 0 obj +(Chapter 1 Definition of NetBIOS Protocol and Name Resolution Modes) +endobj +21 0 obj +<< /S /GoTo /D (section.1.1) >> +endobj +24 0 obj +(1.1 NETBIOS) +endobj +25 0 obj +<< /S /GoTo /D (section.1.2) >> +endobj +28 0 obj +(1.2 BROADCAST NetBIOS) +endobj +29 0 obj +<< /S /GoTo /D (section.1.3) >> +endobj +32 0 obj +(1.3 NBNS NetBIOS) +endobj +33 0 obj +<< /S /GoTo /D (chapter.2) >> +endobj +36 0 obj +(Chapter 2 NetBIOS in a Unix World) +endobj +37 0 obj +<< /S /GoTo /D (section.2.1) >> +endobj +40 0 obj +(2.1 Introduction) +endobj +41 0 obj +<< /S /GoTo /D (section.2.2) >> +endobj +44 0 obj +(2.2 Usernames) +endobj +45 0 obj +<< /S /GoTo /D (section.2.3) >> +endobj +48 0 obj +(2.3 File Ownership) +endobj +49 0 obj +<< /S /GoTo /D (section.2.4) >> +endobj +52 0 obj +(2.4 Passwords) +endobj +53 0 obj +<< /S /GoTo /D (section.2.5) >> +endobj +56 0 obj +(2.5 Locking) +endobj +57 0 obj +<< /S /GoTo /D (section.2.6) >> +endobj +60 0 obj +(2.6 Deny Modes) +endobj +61 0 obj +<< /S /GoTo /D (section.2.7) >> +endobj +64 0 obj +(2.7 Trapdoor UIDs) +endobj +65 0 obj +<< /S /GoTo /D (section.2.8) >> +endobj +68 0 obj +(2.8 Port numbers) +endobj +69 0 obj +<< /S /GoTo /D (section.2.9) >> +endobj +72 0 obj +(2.9 Protocol Complexity) +endobj +73 0 obj +<< /S /GoTo /D (chapter.3) >> +endobj +76 0 obj +(Chapter 3 NT Domain RPC's) +endobj +77 0 obj +<< /S /GoTo /D (section.3.1) >> +endobj +80 0 obj +(3.1 Introduction) +endobj +81 0 obj +<< /S /GoTo /D (subsection.3.1.1) >> +endobj +84 0 obj +(3.1.1 Sources) +endobj +85 0 obj +<< /S /GoTo /D (subsection.3.1.2) >> +endobj +88 0 obj +(3.1.2 Credits) +endobj +89 0 obj +<< /S /GoTo /D (section.3.2) >> +endobj +92 0 obj +(3.2 Notes and Structures) +endobj +93 0 obj +<< /S /GoTo /D (subsection.3.2.1) >> +endobj +96 0 obj +(3.2.1 Notes) +endobj +97 0 obj +<< /S /GoTo /D (subsection.3.2.2) >> +endobj +100 0 obj +(3.2.2 Enumerations) +endobj +101 0 obj +<< /S /GoTo /D (subsubsection.3.2.2.1) >> +endobj +104 0 obj +(3.2.2.1 MSRPC Header type) +endobj +105 0 obj +<< /S /GoTo /D (subsubsection.3.2.2.2) >> +endobj +108 0 obj +(3.2.2.2 MSRPC Packet info) +endobj +109 0 obj +<< /S /GoTo /D (subsection.3.2.3) >> +endobj +112 0 obj +(3.2.3 Structures) +endobj +113 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.1) >> +endobj +116 0 obj +(3.2.3.1 VOID *) +endobj +117 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.2) >> +endobj +120 0 obj +(3.2.3.2 char) +endobj +121 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.3) >> +endobj +124 0 obj +(3.2.3.3 UTIME) +endobj +125 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.4) >> +endobj +128 0 obj +(3.2.3.4 NTTIME) +endobj +129 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.5) >> +endobj +132 0 obj +(3.2.3.5 DOM\137SID \(domain SID structure\)) +endobj +133 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.6) >> +endobj +136 0 obj +(3.2.3.6 STR \(string\)) +endobj +137 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.7) >> +endobj +140 0 obj +(3.2.3.7 UNIHDR \(unicode string header\)) +endobj +141 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.8) >> +endobj +144 0 obj +(3.2.3.8 UNIHDR2 \(unicode string header plus buffer pointer\)) +endobj +145 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.9) >> +endobj +148 0 obj +(3.2.3.9 UNISTR \(unicode string\)) +endobj +149 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.10) >> +endobj +152 0 obj +(3.2.3.10 NAME \(length-indicated unicode string\)) +endobj +153 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.11) >> +endobj +156 0 obj +(3.2.3.11 UNISTR2 \(aligned unicode string\)) +endobj +157 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.12) >> +endobj +160 0 obj +(3.2.3.12 OBJ\137ATTR \(object attributes\)) +endobj +161 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.13) >> +endobj +164 0 obj +(3.2.3.13 POL\137HND \(LSA policy handle\)) +endobj +165 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.14) >> +endobj +168 0 obj +(3.2.3.14 DOM\137SID2 \(domain SID structure, SIDS stored in unicode\)) +endobj +169 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.15) >> +endobj +172 0 obj +(3.2.3.15 DOM\137RID \(domain RID structure\)) +endobj +173 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.16) >> +endobj +176 0 obj +(3.2.3.16 LOG\137INFO \(server, account, client structure\)) +endobj +177 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.17) >> +endobj +180 0 obj +(3.2.3.17 CLNT\137SRV \(server, client names structure\)) +endobj +181 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.18) >> +endobj +184 0 obj +(3.2.3.18 CREDS \(credentials + time stamp\)) +endobj +185 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.19) >> +endobj +188 0 obj +(3.2.3.19 CLNT\137INFO2 \(server, client structure, client credentials\)) +endobj +189 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.20) >> +endobj +192 0 obj +(3.2.3.20 CLNT\137INFO \(server, account, client structure, client credentials\)) +endobj +193 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.21) >> +endobj +196 0 obj +(3.2.3.21 ID\137INFO\1371 \(id info structure, auth level 1\)) +endobj +197 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.22) >> +endobj +200 0 obj +(3.2.3.22 SAM\137INFO \(sam logon/logoff id info structure\)) +endobj +201 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.23) >> +endobj +204 0 obj +(3.2.3.23 GID \(group id info\)) +endobj +205 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.24) >> +endobj +208 0 obj +(3.2.3.24 DOM\137REF \(domain reference info\)) +endobj +209 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.25) >> +endobj +212 0 obj +(3.2.3.25 DOM\137INFO \(domain info, levels 3 and 5 are the same\)\)) +endobj +213 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.26) >> +endobj +216 0 obj +(3.2.3.26 USER\137INFO \(user logon info\)) +endobj +217 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.27) >> +endobj +220 0 obj +(3.2.3.27 SH\137INFO\1371\137PTR \(pointers to level 1 share info strings\)) +endobj +221 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.28) >> +endobj +224 0 obj +(3.2.3.28 SH\137INFO\1371\137STR \(level 1 share info strings\)) +endobj +225 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.29) >> +endobj +228 0 obj +(3.2.3.29 SHARE\137INFO\1371\137CTR) +endobj +229 0 obj +<< /S /GoTo /D (subsubsection.3.2.3.30) >> +endobj +232 0 obj +(3.2.3.30 SERVER\137INFO\137101) +endobj +233 0 obj +<< /S /GoTo /D (section.3.3) >> +endobj +236 0 obj +(3.3 MSRPC over Transact Named Pipe) +endobj +237 0 obj +<< /S /GoTo /D (subsection.3.3.1) >> +endobj +240 0 obj +(3.3.1 MSRPC Pipes) +endobj +241 0 obj +<< /S /GoTo /D (subsection.3.3.2) >> +endobj +244 0 obj +(3.3.2 Header) +endobj +245 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.1) >> +endobj +248 0 obj +(3.3.2.1 RPC\137Packet for request, response, bind and bind acknowledgement) +endobj +249 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.2) >> +endobj +252 0 obj +(3.3.2.2 Interface identification) +endobj +253 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.3) >> +endobj +256 0 obj +(3.3.2.3 RPC\137Iface RW) +endobj +257 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.4) >> +endobj +260 0 obj +(3.3.2.4 RPC\137ReqBind RW) +endobj +261 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.5) >> +endobj +264 0 obj +(3.3.2.5 RPC\137Address RW) +endobj +265 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.6) >> +endobj +268 0 obj +(3.3.2.6 RPC\137ResBind RW) +endobj +269 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.7) >> +endobj +272 0 obj +(3.3.2.7 RPC\137ReqNorm RW) +endobj +273 0 obj +<< /S /GoTo /D (subsubsection.3.3.2.8) >> +endobj +276 0 obj +(3.3.2.8 RPC\137ResNorm RW) +endobj +277 0 obj +<< /S /GoTo /D (subsection.3.3.3) >> +endobj +280 0 obj +(3.3.3 Tail) +endobj +281 0 obj +<< /S /GoTo /D (subsection.3.3.4) >> +endobj +284 0 obj +(3.3.4 RPC Bind / Bind Ack) +endobj +285 0 obj +<< /S /GoTo /D (subsection.3.3.5) >> +endobj +288 0 obj +(3.3.5 NTLSA Transact Named Pipe) +endobj +289 0 obj +<< /S /GoTo /D (subsection.3.3.6) >> +endobj +292 0 obj +(3.3.6 LSA Open Policy) +endobj +293 0 obj +<< /S /GoTo /D (subsubsection.3.3.6.1) >> +endobj +296 0 obj +(3.3.6.1 Request) +endobj +297 0 obj +<< /S /GoTo /D (subsubsection.3.3.6.2) >> +endobj +300 0 obj +(3.3.6.2 Response) +endobj +301 0 obj +<< /S /GoTo /D (subsection.3.3.7) >> +endobj +304 0 obj +(3.3.7 LSA Query Info Policy) +endobj +305 0 obj +<< /S /GoTo /D (subsubsection.3.3.7.1) >> +endobj +308 0 obj +(3.3.7.1 Request) +endobj +309 0 obj +<< /S /GoTo /D (subsubsection.3.3.7.2) >> +endobj +312 0 obj +(3.3.7.2 Response) +endobj +313 0 obj +<< /S /GoTo /D (subsection.3.3.8) >> +endobj +316 0 obj +(3.3.8 LSA Enumerate Trusted Domains) +endobj +317 0 obj +<< /S /GoTo /D (subsubsection.3.3.8.1) >> +endobj +320 0 obj +(3.3.8.1 Request) +endobj +321 0 obj +<< /S /GoTo /D (subsubsection.3.3.8.2) >> +endobj +324 0 obj +(3.3.8.2 Response) +endobj +325 0 obj +<< /S /GoTo /D (subsection.3.3.9) >> +endobj +328 0 obj +(3.3.9 LSA Open Secret) +endobj +329 0 obj +<< /S /GoTo /D (subsubsection.3.3.9.1) >> +endobj +332 0 obj +(3.3.9.1 Request) +endobj +333 0 obj +<< /S /GoTo /D (subsubsection.3.3.9.2) >> +endobj +336 0 obj +(3.3.9.2 Response) +endobj +337 0 obj +<< /S /GoTo /D (subsection.3.3.10) >> +endobj +340 0 obj +(3.3.10 LSA Close) +endobj +341 0 obj +<< /S /GoTo /D (subsubsection.3.3.10.1) >> +endobj +344 0 obj +(3.3.10.1 Request) +endobj +345 0 obj +<< /S /GoTo /D (subsubsection.3.3.10.2) >> +endobj +348 0 obj +(3.3.10.2 Response) +endobj +349 0 obj +<< /S /GoTo /D (subsection.3.3.11) >> +endobj +352 0 obj +(3.3.11 LSA Lookup SIDS) +endobj +353 0 obj +<< /S /GoTo /D (subsubsection.3.3.11.1) >> +endobj +356 0 obj +(3.3.11.1 Request) +endobj +357 0 obj +<< /S /GoTo /D (subsubsection.3.3.11.2) >> +endobj +360 0 obj +(3.3.11.2 Response) +endobj +361 0 obj +<< /S /GoTo /D (subsection.3.3.12) >> +endobj +364 0 obj +(3.3.12 LSA Lookup Names) +endobj +365 0 obj +<< /S /GoTo /D (subsubsection.3.3.12.1) >> +endobj +368 0 obj +(3.3.12.1 Request) +endobj +369 0 obj +<< /S /GoTo /D (subsubsection.3.3.12.2) >> +endobj +372 0 obj +(3.3.12.2 Response) +endobj +373 0 obj +<< /S /GoTo /D (section.3.4) >> +endobj +376 0 obj +(3.4 NETLOGON rpc Transact Named Pipe) +endobj +377 0 obj +<< /S /GoTo /D (subsection.3.4.1) >> +endobj +380 0 obj +(3.4.1 LSA Request Challenge) +endobj +381 0 obj +<< /S /GoTo /D (subsubsection.3.4.1.1) >> +endobj +384 0 obj +(3.4.1.1 Request) +endobj +385 0 obj +<< /S /GoTo /D (subsubsection.3.4.1.2) >> +endobj +388 0 obj +(3.4.1.2 Response) +endobj +389 0 obj +<< /S /GoTo /D (subsection.3.4.2) >> +endobj +392 0 obj +(3.4.2 LSA Authenticate 2) +endobj +393 0 obj +<< /S /GoTo /D (subsubsection.3.4.2.1) >> +endobj +396 0 obj +(3.4.2.1 Request) +endobj +397 0 obj +<< /S /GoTo /D (subsubsection.3.4.2.2) >> +endobj +400 0 obj +(3.4.2.2 Response) +endobj +401 0 obj +<< /S /GoTo /D (subsection.3.4.3) >> +endobj +404 0 obj +(3.4.3 LSA Server Password Set) +endobj +405 0 obj +<< /S /GoTo /D (subsubsection.3.4.3.1) >> +endobj +408 0 obj +(3.4.3.1 Request) +endobj +409 0 obj +<< /S /GoTo /D (subsubsection.3.4.3.2) >> +endobj +412 0 obj +(3.4.3.2 Response) +endobj +413 0 obj +<< /S /GoTo /D (subsection.3.4.4) >> +endobj +416 0 obj +(3.4.4 LSA SAM Logon) +endobj +417 0 obj +<< /S /GoTo /D (subsubsection.3.4.4.1) >> +endobj +420 0 obj +(3.4.4.1 Request) +endobj +421 0 obj +<< /S /GoTo /D (subsubsection.3.4.4.2) >> +endobj +424 0 obj +(3.4.4.2 Response) +endobj +425 0 obj +<< /S /GoTo /D (subsection.3.4.5) >> +endobj +428 0 obj +(3.4.5 LSA SAM Logoff) +endobj +429 0 obj +<< /S /GoTo /D (subsubsection.3.4.5.1) >> +endobj +432 0 obj +(3.4.5.1 Request) +endobj +433 0 obj +<< /S /GoTo /D (subsubsection.3.4.5.2) >> +endobj +436 0 obj +(3.4.5.2 Response) +endobj +437 0 obj +<< /S /GoTo /D (section.3.5) >> +endobj +440 0 obj +(3.5 \134\134MAILSLOT\134NET\134NTLOGON) +endobj +441 0 obj +<< /S /GoTo /D (subsection.3.5.1) >> +endobj +444 0 obj +(3.5.1 Query for PDC) +endobj +445 0 obj +<< /S /GoTo /D (subsubsection.3.5.1.1) >> +endobj +448 0 obj +(3.5.1.1 Request) +endobj +449 0 obj +<< /S /GoTo /D (subsubsection.3.5.1.2) >> +endobj +452 0 obj +(3.5.1.2 Response) +endobj +453 0 obj +<< /S /GoTo /D (subsection.3.5.2) >> +endobj +456 0 obj +(3.5.2 SAM Logon) +endobj +457 0 obj +<< /S /GoTo /D (subsubsection.3.5.2.1) >> +endobj +460 0 obj +(3.5.2.1 Request) +endobj +461 0 obj +<< /S /GoTo /D (subsubsection.3.5.2.2) >> +endobj +464 0 obj +(3.5.2.2 Response) +endobj +465 0 obj +<< /S /GoTo /D (section.3.6) >> +endobj +468 0 obj +(3.6 SRVSVC Transact Named Pipe) +endobj +469 0 obj +<< /S /GoTo /D (subsection.3.6.1) >> +endobj +472 0 obj +(3.6.1 Net Share Enum) +endobj +473 0 obj +<< /S /GoTo /D (subsubsection.3.6.1.1) >> +endobj +476 0 obj +(3.6.1.1 Request) +endobj +477 0 obj +<< /S /GoTo /D (subsubsection.3.6.1.2) >> +endobj +480 0 obj +(3.6.1.2 Response) +endobj +481 0 obj +<< /S /GoTo /D (subsection.3.6.2) >> +endobj +484 0 obj +(3.6.2 Net Server Get Info) +endobj +485 0 obj +<< /S /GoTo /D (subsubsection.3.6.2.1) >> +endobj +488 0 obj +(3.6.2.1 Request) +endobj +489 0 obj +<< /S /GoTo /D (subsubsection.3.6.2.2) >> +endobj +492 0 obj +(3.6.2.2 Response) +endobj +493 0 obj +<< /S /GoTo /D (section.3.7) >> +endobj +496 0 obj +(3.7 Cryptographic side of NT Domain Authentication) +endobj +497 0 obj +<< /S /GoTo /D (subsection.3.7.1) >> +endobj +500 0 obj +(3.7.1 Definitions) +endobj +501 0 obj +<< /S /GoTo /D (subsection.3.7.2) >> +endobj +504 0 obj +(3.7.2 Protocol) +endobj +505 0 obj +<< /S /GoTo /D (subsection.3.7.3) >> +endobj +508 0 obj +(3.7.3 Comments) +endobj +509 0 obj +<< /S /GoTo /D (section.3.8) >> +endobj +512 0 obj +(3.8 SIDs and RIDs) +endobj +513 0 obj +<< /S /GoTo /D (subsection.3.8.1) >> +endobj +516 0 obj +(3.8.1 Well-known SIDs) +endobj +517 0 obj +<< /S /GoTo /D (subsubsection.3.8.1.1) >> +endobj +520 0 obj +(3.8.1.1 Universal well-known SIDs) +endobj +521 0 obj +<< /S /GoTo /D (subsubsection.3.8.1.2) >> +endobj +524 0 obj +(3.8.1.2 NT well-known SIDs) +endobj +525 0 obj +<< /S /GoTo /D (subsection.3.8.2) >> +endobj +528 0 obj +(3.8.2 Well-known RIDS) +endobj +529 0 obj +<< /S /GoTo /D (subsubsection.3.8.2.1) >> +endobj +532 0 obj +(3.8.2.1 Well-known RID users) +endobj +533 0 obj +<< /S /GoTo /D (subsubsection.3.8.2.2) >> +endobj +536 0 obj +(3.8.2.2 Well-known RID groups) +endobj +537 0 obj +<< /S /GoTo /D (subsubsection.3.8.2.3) >> +endobj +540 0 obj +(3.8.2.3 Well-known RID aliases) +endobj +541 0 obj +<< /S /GoTo /D (part.2) >> +endobj +544 0 obj +(Part II Samba Basics) +endobj +545 0 obj +<< /S /GoTo /D (chapter.4) >> +endobj +548 0 obj +(Chapter 4 Samba Architecture) +endobj +549 0 obj +<< /S /GoTo /D (section.4.1) >> +endobj +552 0 obj +(4.1 Introduction) +endobj +553 0 obj +<< /S /GoTo /D (section.4.2) >> +endobj +556 0 obj +(4.2 Multithreading and Samba) +endobj +557 0 obj +<< /S /GoTo /D (section.4.3) >> +endobj +560 0 obj +(4.3 Threading smbd) +endobj +561 0 obj +<< /S /GoTo /D (section.4.4) >> +endobj +564 0 obj +(4.4 Threading nmbd) +endobj +565 0 obj +<< /S /GoTo /D (section.4.5) >> +endobj +568 0 obj +(4.5 nbmd Design) +endobj +569 0 obj +<< /S /GoTo /D (chapter.5) >> +endobj +572 0 obj +(Chapter 5 The samba DEBUG system) +endobj +573 0 obj +<< /S /GoTo /D (section.5.1) >> +endobj +576 0 obj +(5.1 New Output Syntax) +endobj +577 0 obj +<< /S /GoTo /D (section.5.2) >> +endobj +580 0 obj +(5.2 The DEBUG\(\) Macro) +endobj +581 0 obj +<< /S /GoTo /D (section.5.3) >> +endobj +584 0 obj +(5.3 The DEBUGADD\(\) Macro) +endobj +585 0 obj +<< /S /GoTo /D (section.5.4) >> +endobj +588 0 obj +(5.4 The DEBUGLVL\(\) Macro) +endobj +589 0 obj +<< /S /GoTo /D (section.5.5) >> +endobj +592 0 obj +(5.5 New Functions) +endobj +593 0 obj +<< /S /GoTo /D (subsection.5.5.1) >> +endobj +596 0 obj +(5.5.1 dbgtext\(\)) +endobj +597 0 obj +<< /S /GoTo /D (subsection.5.5.2) >> +endobj +600 0 obj +(5.5.2 dbghdr\(\)) +endobj +601 0 obj +<< /S /GoTo /D (subsection.5.5.3) >> +endobj +604 0 obj +(5.5.3 format\137debug\137text\(\)) +endobj +605 0 obj +<< /S /GoTo /D (chapter.6) >> +endobj +608 0 obj +(Chapter 6 Samba Internals) +endobj +609 0 obj +<< /S /GoTo /D (section.6.1) >> +endobj +612 0 obj +(6.1 Character Handling) +endobj +613 0 obj +<< /S /GoTo /D (section.6.2) >> +endobj +616 0 obj +(6.2 The new functions) +endobj +617 0 obj +<< /S /GoTo /D (section.6.3) >> +endobj +620 0 obj +(6.3 Macros in byteorder.h) +endobj +621 0 obj +<< /S /GoTo /D (subsection.6.3.1) >> +endobj +624 0 obj +(6.3.1 CVAL\(buf,pos\)) +endobj +625 0 obj +<< /S /GoTo /D (subsection.6.3.2) >> +endobj +628 0 obj +(6.3.2 PVAL\(buf,pos\)) +endobj +629 0 obj +<< /S /GoTo /D (subsection.6.3.3) >> +endobj +632 0 obj +(6.3.3 SCVAL\(buf,pos,val\)) +endobj +633 0 obj +<< /S /GoTo /D (subsection.6.3.4) >> +endobj +636 0 obj +(6.3.4 SVAL\(buf,pos\)) +endobj +637 0 obj +<< /S /GoTo /D (subsection.6.3.5) >> +endobj +640 0 obj +(6.3.5 IVAL\(buf,pos\)) +endobj +641 0 obj +<< /S /GoTo /D (subsection.6.3.6) >> +endobj +644 0 obj +(6.3.6 SVALS\(buf,pos\)) +endobj +645 0 obj +<< /S /GoTo /D (subsection.6.3.7) >> +endobj +648 0 obj +(6.3.7 IVALS\(buf,pos\)) +endobj +649 0 obj +<< /S /GoTo /D (subsection.6.3.8) >> +endobj +652 0 obj +(6.3.8 SSVAL\(buf,pos,val\)) +endobj +653 0 obj +<< /S /GoTo /D (subsection.6.3.9) >> +endobj +656 0 obj +(6.3.9 SIVAL\(buf,pos,val\)) +endobj +657 0 obj +<< /S /GoTo /D (subsection.6.3.10) >> +endobj +660 0 obj +(6.3.10 SSVALS\(buf,pos,val\)) +endobj +661 0 obj +<< /S /GoTo /D (subsection.6.3.11) >> +endobj +664 0 obj +(6.3.11 SIVALS\(buf,pos,val\)) +endobj +665 0 obj +<< /S /GoTo /D (subsection.6.3.12) >> +endobj +668 0 obj +(6.3.12 RSVAL\(buf,pos\)) +endobj +669 0 obj +<< /S /GoTo /D (subsection.6.3.13) >> +endobj +672 0 obj +(6.3.13 RIVAL\(buf,pos\)) +endobj +673 0 obj +<< /S /GoTo /D (subsection.6.3.14) >> +endobj +676 0 obj +(6.3.14 RSSVAL\(buf,pos,val\)) +endobj +677 0 obj +<< /S /GoTo /D (subsection.6.3.15) >> +endobj +680 0 obj +(6.3.15 RSIVAL\(buf,pos,val\)) +endobj +681 0 obj +<< /S /GoTo /D (section.6.4) >> +endobj +684 0 obj +(6.4 LAN Manager Samba API) +endobj +685 0 obj +<< /S /GoTo /D (subsection.6.4.1) >> +endobj +688 0 obj +(6.4.1 Parameters) +endobj +689 0 obj +<< /S /GoTo /D (subsection.6.4.2) >> +endobj +692 0 obj +(6.4.2 Return value) +endobj +693 0 obj +<< /S /GoTo /D (section.6.5) >> +endobj +696 0 obj +(6.5 Code character table) +endobj +697 0 obj +<< /S /GoTo /D (chapter.7) >> +endobj +700 0 obj +(Chapter 7 Coding Suggestions) +endobj +701 0 obj +<< /S /GoTo /D (chapter.8) >> +endobj +704 0 obj +(Chapter 8 Contributing code) +endobj +705 0 obj +<< /S /GoTo /D (chapter.9) >> +endobj +708 0 obj +(Chapter 9 Modules) +endobj +709 0 obj +<< /S /GoTo /D (section.9.1) >> +endobj +712 0 obj +(9.1 Advantages) +endobj +713 0 obj +<< /S /GoTo /D (section.9.2) >> +endobj +716 0 obj +(9.2 Loading modules) +endobj +717 0 obj +<< /S /GoTo /D (subsection.9.2.1) >> +endobj +720 0 obj +(9.2.1 Static modules) +endobj +721 0 obj +<< /S /GoTo /D (subsection.9.2.2) >> +endobj +724 0 obj +(9.2.2 Shared modules) +endobj +725 0 obj +<< /S /GoTo /D (section.9.3) >> +endobj +728 0 obj +(9.3 Writing modules) +endobj +729 0 obj +<< /S /GoTo /D (subsection.9.3.1) >> +endobj +732 0 obj +(9.3.1 Static/Shared selection in configure.in) +endobj +733 0 obj +<< /S /GoTo /D (part.3) >> +endobj +736 0 obj +(Part III Samba Subsystems) +endobj +737 0 obj +<< /S /GoTo /D (chapter.10) >> +endobj +740 0 obj +(Chapter 10 The Upcoming SAM System) +endobj +741 0 obj +<< /S /GoTo /D (section.10.1) >> +endobj +744 0 obj +(10.1 Security in the 'new SAM') +endobj +745 0 obj +<< /S /GoTo /D (section.10.2) >> +endobj +748 0 obj +(10.2 Standalone from UNIX) +endobj +749 0 obj +<< /S /GoTo /D (section.10.3) >> +endobj +752 0 obj +(10.3 Handles and Races in the new SAM) +endobj +753 0 obj +<< /S /GoTo /D (section.10.4) >> +endobj +756 0 obj +(10.4 Layers) +endobj +757 0 obj +<< /S /GoTo /D (subsection.10.4.1) >> +endobj +760 0 obj +(10.4.1 Application) +endobj +761 0 obj +<< /S /GoTo /D (subsection.10.4.2) >> +endobj +764 0 obj +(10.4.2 SAM Interface) +endobj +765 0 obj +<< /S /GoTo /D (subsection.10.4.3) >> +endobj +768 0 obj +(10.4.3 SAM Modules) +endobj +769 0 obj +<< /S /GoTo /D (section.10.5) >> +endobj +772 0 obj +(10.5 SAM Modules) +endobj +773 0 obj +<< /S /GoTo /D (subsection.10.5.1) >> +endobj +776 0 obj +(10.5.1 Special Module: sam\137passdb) +endobj +777 0 obj +<< /S /GoTo /D (subsection.10.5.2) >> +endobj +780 0 obj +(10.5.2 sam\137ads) +endobj +781 0 obj +<< /S /GoTo /D (section.10.6) >> +endobj +784 0 obj +(10.6 Memory Management) +endobj +785 0 obj +<< /S /GoTo /D (section.10.7) >> +endobj +788 0 obj +(10.7 Testing) +endobj +789 0 obj +<< /S /GoTo /D (chapter.11) >> +endobj +792 0 obj +(Chapter 11 RPC Pluggable Modules) +endobj +793 0 obj +<< /S /GoTo /D (section.11.1) >> +endobj +796 0 obj +(11.1 About) +endobj +797 0 obj +<< /S /GoTo /D (section.11.2) >> +endobj +800 0 obj +(11.2 General Overview) +endobj +801 0 obj +<< /S /GoTo /D (chapter.12) >> +endobj +804 0 obj +(Chapter 12 VFS Modules) +endobj +805 0 obj +<< /S /GoTo /D (section.12.1) >> +endobj +808 0 obj +(12.1 The Samba \(Posix\) VFS layer) +endobj +809 0 obj +<< /S /GoTo /D (subsection.12.1.1) >> +endobj +812 0 obj +(12.1.1 The general interface) +endobj +813 0 obj +<< /S /GoTo /D (subsection.12.1.2) >> +endobj +816 0 obj +(12.1.2 Possible VFS operation layers) +endobj +817 0 obj +<< /S /GoTo /D (section.12.2) >> +endobj +820 0 obj +(12.2 The Interaction between the Samba VFS subsystem and the modules) +endobj +821 0 obj +<< /S /GoTo /D (subsection.12.2.1) >> +endobj +824 0 obj +(12.2.1 Initialization and registration) +endobj +825 0 obj +<< /S /GoTo /D (subsection.12.2.2) >> +endobj +828 0 obj +(12.2.2 How the Modules handle per connection data) +endobj +829 0 obj +<< /S /GoTo /D (section.12.3) >> +endobj +832 0 obj +(12.3 Upgrading to the New VFS Interface) +endobj +833 0 obj +<< /S /GoTo /D (subsection.12.3.1) >> +endobj +836 0 obj +(12.3.1 Upgrading from 2.2.* and 3.0aplha modules) +endobj +837 0 obj +<< /S /GoTo /D (section.12.4) >> +endobj +840 0 obj +(12.4 Some Notes) +endobj +841 0 obj +<< /S /GoTo /D (subsection.12.4.1) >> +endobj +844 0 obj +(12.4.1 Implement TRANSPARENT functions) +endobj +845 0 obj +<< /S /GoTo /D (subsection.12.4.2) >> +endobj +848 0 obj +(12.4.2 Implement OPAQUE functions) +endobj +849 0 obj +<< /S /GoTo /D (chapter.13) >> +endobj +852 0 obj +(Chapter 13 The registry subsystem) +endobj +853 0 obj +<< /S /GoTo /D (section.13.1) >> +endobj +856 0 obj +(13.1 Planned backends) +endobj +857 0 obj +<< /S /GoTo /D (section.13.2) >> +endobj +860 0 obj +(13.2 Data structures) +endobj +861 0 obj +<< /S /GoTo /D (section.13.3) >> +endobj +864 0 obj +(13.3 External interface) +endobj +865 0 obj +<< /S /GoTo /D (section.13.4) >> +endobj +868 0 obj +(13.4 Utility functions) +endobj +869 0 obj +<< /S /GoTo /D (section.13.5) >> +endobj +872 0 obj +(13.5 Writing backends) +endobj +873 0 obj +<< /S /GoTo /D (section.13.6) >> +endobj +876 0 obj +(13.6 Memory allocation) +endobj +877 0 obj +<< /S /GoTo /D (chapter.14) >> +endobj +880 0 obj +(Chapter 14 The smb.conf file) +endobj +881 0 obj +<< /S /GoTo /D (section.14.1) >> +endobj +884 0 obj +(14.1 Lexical Analysis) +endobj +885 0 obj +<< /S /GoTo /D (subsection.14.1.1) >> +endobj +888 0 obj +(14.1.1 Handling of Whitespace) +endobj +889 0 obj +<< /S /GoTo /D (subsection.14.1.2) >> +endobj +892 0 obj +(14.1.2 Handling of Line Continuation) +endobj +893 0 obj +<< /S /GoTo /D (subsection.14.1.3) >> +endobj +896 0 obj +(14.1.3 Line Continuation Quirks) +endobj +897 0 obj +<< /S /GoTo /D (section.14.2) >> +endobj +900 0 obj +(14.2 Syntax) +endobj +901 0 obj +<< /S /GoTo /D (subsection.14.2.1) >> +endobj +904 0 obj +(14.2.1 About params.c) +endobj +905 0 obj +<< /S /GoTo /D (chapter.15) >> +endobj +908 0 obj +(Chapter 15 Samba WINS Internals) +endobj +909 0 obj +<< /S /GoTo /D (section.15.1) >> +endobj +912 0 obj +(15.1 WINS Failover) +endobj +913 0 obj +<< /S /GoTo /D (chapter.16) >> +endobj +916 0 obj +(Chapter 16 LanMan and NT Password Encryption) +endobj +917 0 obj +<< /S /GoTo /D (section.16.1) >> +endobj +920 0 obj +(16.1 Introduction) +endobj +921 0 obj +<< /S /GoTo /D (section.16.2) >> +endobj +924 0 obj +(16.2 How does it work?) +endobj +925 0 obj +<< /S /GoTo /D (section.16.3) >> +endobj +928 0 obj +(16.3 The smbpasswd file) +endobj +929 0 obj +<< /S /GoTo /D (part.4) >> +endobj +932 0 obj +(Part IV Debugging and tracing) +endobj +933 0 obj +<< /S /GoTo /D (chapter.17) >> +endobj +936 0 obj +(Chapter 17 Tracing samba system calls) +endobj +937 0 obj +<< /S /GoTo /D (chapter.18) >> +endobj +940 0 obj +(Chapter 18 Finding useful information on windows) +endobj +941 0 obj +<< /S /GoTo /D (section.18.1) >> +endobj +944 0 obj +(18.1 Netlogon debugging output) +endobj +945 0 obj +<< /S /GoTo /D (chapter.19) >> +endobj +948 0 obj +(Chapter 19 Samba Printing Internals) +endobj +949 0 obj +<< /S /GoTo /D (section.19.1) >> +endobj +952 0 obj +(19.1 Abstract) +endobj +953 0 obj +<< /S /GoTo /D (section.19.2) >> +endobj +956 0 obj +(19.2 Printing Interface to Various Back ends) +endobj +957 0 obj +<< /S /GoTo /D (section.19.3) >> +endobj +960 0 obj +(19.3 Print Queue TDB's) +endobj +961 0 obj +<< /S /GoTo /D (section.19.4) >> +endobj +964 0 obj +(19.4 ChangeID and Client Caching of Printer Information) +endobj +965 0 obj +<< /S /GoTo /D (section.19.5) >> +endobj +968 0 obj +(19.5 Windows NT/2K Printer Change Notify) +endobj +969 0 obj +<< /S /GoTo /D (part.5) >> +endobj +972 0 obj +(Part V Appendices) +endobj +973 0 obj +<< /S /GoTo /D (chapter.20) >> +endobj +976 0 obj +(Chapter 20 Notes to packagers) +endobj +977 0 obj +<< /S /GoTo /D (section.20.1) >> +endobj +980 0 obj +(20.1 Versioning) +endobj +981 0 obj +<< /S /GoTo /D (section.20.2) >> +endobj +984 0 obj +(20.2 Modules) +endobj +985 0 obj +<< /S /GoTo /D [986 0 R /Fit ] >> +endobj +988 0 obj << +/Length 246 +/Filter /FlateDecode +>> +stream +xڍP;O0 +<&CLly=' b +<~?n  )qx]u(l+DD=P#8O/2 c-\發isΠ>L5@oUsiigw+ljdƣbdelgWdv KBȞ3C7T3=mT !#q̱,}}u4ǩV ֶYXyA?Yendstream +endobj +986 0 obj << +/Type /Page +/Contents 988 0 R +/Resources 987 0 R +/MediaBox [0 0 504 666] +/Parent 997 0 R +>> endobj +989 0 obj << +/D [986 0 R /XYZ 54 639 null] +>> endobj +990 0 obj << +/D [986 0 R /XYZ 54 621 null] +>> endobj +987 0 obj << +/Font << /F28 993 0 R /F29 996 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1000 0 obj << +/Length 1162 +/Filter /FlateDecode +>> +stream +xڍV[6 ~?oؒ0ڃgk}8Jα[i?R{P$"''A $Pi2qCwd8 2y^̨*C\$^>,ު8(y` y\`YbVچ,߁vrS /pϡJX50`\WL&ق20JӔ 0a EǏ|TU e%-DKD(SUϙe4aM+jӶbMaqm]O(qoP/WΥő<<$ݠ\mm+zxt0liw!xXa Hx RR;^;I5=2eanHnK״Ixk \@nx DYbe4wэ\wuUjŘʈLVa${rVQђipXuUK9 1_CP\;{{M!UzE?`[P |&>)0mZ.\<+)ةi[U oU9٩\<+?LS/PS?lQC%(`aàqoݲMdJ& *Gf$dU*=/o&1c) ,-*YVܘAW;kTn9ŪB*_ +kFpyk#/w<-=ۤ`t5P@>PS/"5;jIsXTX&`}OOIeQͨRvn̠}մ<"UI6. + zNmȜg +dr:х]n H\eSμ,dr 檦5 | +ʜ]1M> endobj +1013 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [99.296 373.32 221.586 384.445] +/Subtype/Link/A<> +>> endobj +1017 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [412.391 373.32 450.996 384.445] +/Subtype/Link/A<> +>> endobj +1018 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [53.004 361.365 138.682 371.659] +/Subtype/Link/A<> +>> endobj +1019 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [105.584 319.522 290.639 330.647] +/Subtype/Link/A<> +>> endobj +998 0 obj << +/Font << /F50 1003 0 R /F51 1006 0 R /F8 1009 0 R /F11 1012 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1022 0 obj << +/Length 1940 +/Filter /FlateDecode +>> +stream +xڵYKs6WV Ht2~LdPKQMﻋtdj}|]PtTbM>iB^9Jp!Px"~1E1MO~= y- +Rdd`w񇌍$t] +-oo-n߼it?x9aq2 +_I9#)O#%\\)ޔ4hm~6Gʢ%:^ݾW;k궞YJ}ܯr_($z[n;+L*ЏC.D8>&iNX) a 벞t99)@*Bw&`Բ4@*4+/GHdB ?n!aê'EJzC䎪):l &k5Zw?o<u+*2N]K%YFDZ*fTF*fYV6 vnϪ^ LIEodU(]RY*M-lLz{w͠(HR9*UI(3VJg_*s)!YRhi%m,E Oz )ޜf "SN KS2̌&eL۪>5A-bL3qⅫ;!ɽ*c CsCZ,}z^sj BKfEv>)`]'(LXYg4 pβsCct@$1di3drߐf|Ҭ{iUh@:Ѭ栙vޯoxHfΝd>OQ`yMuέ B5a6`Fp> !}ن,b782FAΐi3aZrǬ7R4K4#zlV#V{YO`wҠ+ Bq#-vDjͩ rٔIA-urW)“-w^_j~Бfp2*uTiK>pkUƊYW(v2sٴk/p!]RG.<&p-{&@K2Ip;1*#e,yGYbɜ1]2dQn+n +p=gZtiDO-.EPVb&/LA[f xgA7d͖%&z*u, +.pU$lZ>d +.Ok4D}CAN*Ӓ;He7wk>xqQب;A>0r<ġ Hɀ'ycc%8ɂwO2d%Mfݟ @W3UސXS=4G= n ͪtècے{*cqNqqZ`=Wk];~0ǖQ 6d ۝ +lmܩ(ϛ;7>19#镼@ɦrPծr(;4RutMDνrB+}w-) +2P.HD2VΒ$=4GM,eDbܿ1I4 YpzjwvA Io!9gD|^f"| ١Ry0*zT?7ezNYE;xg +=_Gw|[ZSpX!*cm ٫}m5Fڠm԰ ,^w3ZO}7BgJkt3)Sb#= L/ $$endstream +endobj +1021 0 obj << +/Type /Page +/Contents 1022 0 R +/Resources 1020 0 R +/MediaBox [0 0 504 666] +/Parent 997 0 R +/Annots [ 1029 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R ] +>> endobj +1029 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 531.538 321.636 540.449] +/Subtype /Link +/A << /S /GoTo /D (netbios) >> +>> endobj +1033 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 494.955 168.903 503.866] +/Subtype /Link +/A << /S /GoTo /D (unix-smb) >> +>> endobj +1034 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 458.372 138.489 467.283] +/Subtype /Link +/A << /S /GoTo /D (ntdomain) >> +>> endobj +1035 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [254.277 438.143 397.489 448.991] +/Subtype/Link/A<> +>> endobj +1036 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [256.906 419.575 405.348 430.7] +/Subtype/Link/A<> +>> endobj +1037 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [256.159 403.108 373.219 412.408] +/Subtype/Link/A<> +>> endobj +1038 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 385.206 141.671 394.117] +/Subtype /Link +/A << /S /GoTo /D (architecture) >> +>> endobj +1039 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 346.686 176.029 357.534] +/Subtype /Link +/A << /S /GoTo /D (debug) >> +>> endobj +1040 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 312.04 125.648 320.951] +/Subtype /Link +/A << /S /GoTo /D (internals) >> +>> endobj +1041 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [311.23 291.534 450.996 302.659] +/Subtype/Link/A<> +>> endobj +1042 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [77.91 281.404 142.667 289.874] +/Subtype/Link/A<> +>> endobj +1043 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 261.564 140.066 272.413] +/Subtype /Link +/A << /S /GoTo /D (CodingSuggestions) >> +>> endobj +1044 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 151.816 134.172 162.664] +/Subtype /Link +/A << /S /GoTo /D (contributing) >> +>> endobj +1045 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [261.002 133.247 383.292 144.372] +/Subtype/Link/A<> +>> endobj +1046 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 117.17 91.581 126.081] +/Subtype /Link +/A << /S /GoTo /D (modules) >> +>> endobj +1047 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [247.58 96.664 369.87 107.789] +/Subtype/Link/A<> +>> endobj +1048 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 78.65 179.862 89.498] +/Subtype /Link +/A << /S /GoTo /D (sam) >> +>> endobj +1049 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 42.067 162.289 52.915] +/Subtype /Link +/A << /S /GoTo /D (rpc-plugin) >> +>> endobj +1023 0 obj << +/D [1021 0 R /XYZ 54 639 null] +>> endobj +6 0 obj << +/D [1021 0 R /XYZ 54 550.825 null] +>> endobj +1027 0 obj << +/D [1021 0 R /XYZ 54 550.825 null] +>> endobj +1028 0 obj << +/D [1021 0 R /XYZ 54 550.825 null] +>> endobj +1020 0 obj << +/Font << /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R /F11 1012 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1063 0 obj << +/Length 2199 +/Filter /FlateDecode +>> +stream +xZKsFW8`0Vʔ,%r٤WblLtdo< *TBcc^+֌|OQ-aM%BbA9؜V _,G帑0jҔU?gͩ|3ZF-KVLX.z`ݤ ɔ1]?}g5>S '%)6 +6'0yxGdJ30۲ 5hzsFo[1غ0Ygz[:w.p7u%Q̨ P,d(޴m?(j4L?n?_D+ MՋ+^WI!2$يOͺ yQE)Vք*ㅡG1ǐE=vAjιo1g( Nf[;Gl"RHI$r#5&O0W@UY3A 0m/Dܿ@F~5@UA*m=#Z +3I-xJxjC0:^87d7J$񍎟|8Y -3GU@:3A 0;Ae/-o=϶8܁!~9}T?ѾsL.uy|^ Ⅳ?{f,m[E3c(N3QquPR4ت<dV֦OXzORc(WihN`F=@PtUs7[rDT<[HA-$Q4MBѯoB7)|@C)kF(,y@W GE{Up}PO{\Kz(j"Oz C S6ϓg>2Ph9h~9`O2=M(eEDb-|hRf^f8r6٩; 6KRSt +$ldVPV:K8hX`߷wEK9g1('5М%j'eGKjZV;A͗ 1w{W5d·OBp[Y`LzKUTtc fTrgYEsgilz6]a&& +v3KV`WA*p0C'`e2 +F C*nN`H`tN}C ŗ/K#wa+Y!~Y¥kM4&=P3qeǨ Fg)^Z4,<g%^֏<7,ՉVp}-irx>-}ިGR<-ˋ{糲%G͕6<8TLLzBè %OHw]S8/n(Bo\S>i/E!`Qi!% s ^.k}NlO+{FYhg:Š?F,jmFzo EU˪R˒Zf~kzzKtP1RL9FF uޢ"Q 2Ph]h~]`x:ݬI-y(OZ'^k:myzj~RCHzQS27}6*C9,srb}[n~8F?702wf_nﳍ +Zy *MI +F5Lj\ݖWdsњrV}:{n٤ry{sf1s#Vpd%H,FeVk:fy/R8 v1zLa?\Gz8,C,D |/>7UgڞR\Pt53|\K2 +%e"3a 's`A90RYò zR^zQh$Pgˢq^_k]oxVN[b[pwW +Hl&xa#H5tYH?u)ԍRv:A&à=R/RW MTPي?|FfV@&^|g-ju#~E2Bs%uH#{&a:-n @ej`B5Zˊ +y0_BWΗ 6c0\]endstream +endobj +1062 0 obj << +/Type /Page +/Contents 1063 0 R +/Resources 1061 0 R +/MediaBox [0 0 504 666] +/Parent 997 0 R +/Annots [ 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R ] +>> endobj +1065 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [259.148 607.827 391.899 618.952] +/Subtype/Link/A<> +>> endobj +1066 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [247.58 589.573 369.87 600.698] +/Subtype/Link/A<> +>> endobj +1067 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 573.533 114.412 582.444] +/Subtype /Link +/A << /S /GoTo /D (vfs) >> +>> endobj +1068 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [246.694 553.066 348.063 564.191] +/Subtype/Link/A<> +>> endobj +1069 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [261.223 534.812 378.283 545.937] +/Subtype/Link/A<> +>> endobj +1070 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 516.835 156.56 527.683] +/Subtype /Link +/A << /S /GoTo /D (registry) >> +>> endobj +1071 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [261.002 498.304 383.292 509.429] +/Subtype/Link/A<> +>> endobj +1072 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 482.264 129.772 491.175] +/Subtype /Link +/A << /S /GoTo /D (parsing) >> +>> endobj +1073 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 445.757 155.813 454.668] +/Subtype /Link +/A << /S /GoTo /D (wins) >> +>> endobj +1074 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 407.312 224.666 418.16] +/Subtype /Link +/A << /S /GoTo /D (pwencrypt) >> +>> endobj +1075 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [244.038 388.781 361.098 399.906] +/Subtype/Link/A<> +>> endobj +1076 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 370.804 173.967 381.653] +/Subtype /Link +/A << /S /GoTo /D (tracing) >> +>> endobj +1077 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 334.297 225.192 345.145] +/Subtype /Link +/A << /S /GoTo /D (windows-debug) >> +>> endobj +1078 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [261.002 315.766 383.292 326.891] +/Subtype/Link/A<> +>> endobj +1079 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [248.272 297.512 370.562 308.637] +/Subtype/Link/A<> +>> endobj +1080 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 279.535 164.835 290.383] +/Subtype /Link +/A << /S /GoTo /D (printing) >> +>> endobj +1081 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 243.028 136.773 253.876] +/Subtype /Link +/A << /S /GoTo /D (Packaging) >> +>> endobj +1082 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [442.639 136.544 450.996 145.455] +/Subtype /Link +/A << /S /GoTo /D (section*.1) >> +>> endobj +1083 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.169 102.012 450.996 112.307] +/Subtype /Link +/A << /S /GoTo /D (part.1) >> +>> endobj +1084 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.775 67.978 450.996 76.889] +/Subtype /Link +/A << /S /GoTo /D (chapter.1) >> +>> endobj +1085 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 55.991 450.996 64.637] +/Subtype /Link +/A << /S /GoTo /D (section.1.1) >> +>> endobj +1086 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 44.004 450.996 52.65] +/Subtype /Link +/A << /S /GoTo /D (section.1.2) >> +>> endobj +1064 0 obj << +/D [1062 0 R /XYZ 54 639 null] +>> endobj +1061 0 obj << +/Font << /F14 1032 0 R /F8 1009 0 R /F11 1012 0 R /F52 1016 0 R /F16 1026 0 R /F50 1003 0 R /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1098 0 obj << +/Length 3462 +/Filter /FlateDecode +>> +stream +xڭ\vI+ 4ʬҖPy$3t#,3@'q)l.Qqo#̚,܋Oޞ1sg,nͽWӳot$M կ<)j0}:s7 jaRJL"//iqYFlp-.vO7^Ox*:)S&{NDYdM=&ӄ5,kJs:=އKˤ c,Kw&(. ťd·6|(L.(뛫PyRjm`#k_'qXEU&(aD :~X]VPݳj\!eR2Km!:z@via26XhZ8EK뇦Ʋ8X ك~"t?DDȣIfc(Mep,Wzϲ|xm>}u[:]-؈uBSd~h2h,KAU'Yf{7V]xTa]U#*f{ ,-Е^)撁r |O2 |}gy[n֨ n߀|8+=3^&d(l +Y%4ˋH6֢)Z(ؚe\oW)fnl=3+IZ H% h*K5IZ4jIsP|ī_rӟ/ן֙"+ Ed@E1BNO%\_z GsG؂ȃ/3FP35J.#$8$%@\* gUJP]#v7wSp%/t_ ެsZV HhP}}Ԇx믶Dj-wGKFJkA?(F91Ɇr-#RMnfkb렻Lc(&IJPgQciAuHZ:Heu:q5:R0g@btVd_cc,yss< JJ`CZ` +~ +Lr~B` E'Xf0fy27櫥.=[J5W{}a2+W X&]eV2[2Uz~5h.܏Kq5:n\7#o4.բylH+KS=O 6Qy";,R@O.'lZHkJCZԊ=yw\5+<ņg2<ü'S`=0]S%ZwQxu)VBAqW($ߺqYW .I*f7'0֮˶KĆ7ZL}|ϛ @ali(so1 0Dծ4$8kW(FxV/Cr ܫ/1_>އ9Hf}(EʕJzӺ#ķn^}0jiEQyrq#o_X%9^Tsy΋48Lq vy]lV0$Å'/\DR$&t}PK#D+R;ֽuendstream +endobj +1097 0 obj << +/Type /Page +/Contents 1098 0 R +/Resources 1096 0 R +/MediaBox [0 0 504 666] +/Parent 997 0 R +/Annots [ 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R ] +>> endobj +1103 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 610.041 450.996 618.687] +/Subtype /Link +/A << /S /GoTo /D (section.1.3) >> +>> endobj +1104 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.728 587.342 450.996 596.253] +/Subtype /Link +/A << /S /GoTo /D (chapter.2) >> +>> endobj +1105 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 575.23 450.996 583.876] +/Subtype /Link +/A << /S /GoTo /D (section.2.1) >> +>> endobj +1106 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 563.119 450.996 571.765] +/Subtype /Link +/A << /S /GoTo /D (section.2.2) >> +>> endobj +1107 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 551.007 450.996 557.289] +/Subtype /Link +/A << /S /GoTo /D (section.2.3) >> +>> endobj +1108 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 538.896 450.996 545.178] +/Subtype /Link +/A << /S /GoTo /D (section.2.4) >> +>> endobj +1109 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 526.784 450.996 533.066] +/Subtype /Link +/A << /S /GoTo /D (section.2.5) >> +>> endobj +1110 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 514.673 450.996 523.319] +/Subtype /Link +/A << /S /GoTo /D (section.2.6) >> +>> endobj +1111 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 502.561 450.996 511.207] +/Subtype /Link +/A << /S /GoTo /D (section.2.7) >> +>> endobj +1112 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 490.45 450.996 499.096] +/Subtype /Link +/A << /S /GoTo /D (section.2.8) >> +>> endobj +1113 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 478.338 451.605 486.984] +/Subtype /Link +/A << /S /GoTo /D (section.2.9) >> +>> endobj +1114 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [427.363 455.639 450.996 464.55] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1115 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 443.527 454.373 452.173] +/Subtype /Link +/A << /S /GoTo /D (section.3.1) >> +>> endobj +1116 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 431.416 450.996 440.062] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.1.1) >> +>> endobj +1117 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 419.304 450.996 427.95] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.1.2) >> +>> endobj +1118 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 407.193 450.996 415.839] +/Subtype /Link +/A << /S /GoTo /D (section.3.2) >> +>> endobj +1119 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 395.081 450.996 403.727] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.2.1) >> +>> endobj +1120 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 382.97 450.996 389.252] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.2.2) >> +>> endobj +1121 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 370.858 450.996 377.14] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.2.1) >> +>> endobj +1122 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.488 358.747 450.996 365.028] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.2.2) >> +>> endobj +1123 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 346.635 450.996 355.281] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.2.3) >> +>> endobj +1124 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 334.524 450.996 343.17] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.1) >> +>> endobj +1125 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 322.412 450.996 331.058] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.2) >> +>> endobj +1126 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 310.3 450.996 318.947] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.3) >> +>> endobj +1127 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 298.189 450.996 306.835] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.4) >> +>> endobj +1128 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 286.077 450.996 294.724] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.5) >> +>> endobj +1129 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 273.966 451.605 282.612] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.6) >> +>> endobj +1130 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 261.854 451.605 270.501] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.7) >> +>> endobj +1131 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 249.743 451.605 258.389] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.8) >> +>> endobj +1132 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 237.631 451.605 246.278] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.9) >> +>> endobj +1133 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 225.52 451.605 234.166] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.10) >> +>> endobj +1134 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 213.408 451.605 222.055] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.11) >> +>> endobj +1135 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 201.297 454.373 209.943] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.12) >> +>> endobj +1136 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 189.185 454.373 197.832] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.13) >> +>> endobj +1137 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 177.074 454.373 185.72] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.14) >> +>> endobj +1138 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 164.962 454.096 173.609] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.15) >> +>> endobj +1139 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 152.851 454.096 161.497] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.16) >> +>> endobj +1140 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 140.739 454.096 149.386] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.17) >> +>> endobj +1141 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 128.628 451.328 134.91] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.18) >> +>> endobj +1142 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 116.516 451.328 122.798] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.19) >> +>> endobj +1143 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 92.45 451.328 98.732] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.20) >> +>> endobj +1144 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 80.338 451.328 86.62] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.21) >> +>> endobj +1145 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 68.227 454.096 76.873] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.22) >> +>> endobj +1146 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 56.115 454.096 64.761] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.23) >> +>> endobj +1147 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 44.004 456.863 52.65] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.24) >> +>> endobj +1099 0 obj << +/D [1097 0 R /XYZ 54 639 null] +>> endobj +1096 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1150 0 obj << +/Length 3360 +/Filter /FlateDecode +>> +stream +xڭ\]s۶|У7_*55Tbc +<_JkV WjGU+J HJ}ze}N:4uHBBF%+ZV,9,L_5+UoyX8)%꒬>hXwVTd-lȨdA՚k Z H|JK'!2E:xXjR'7s|/H06M9c gjn840 k0m1٪8Y6E[8VnNziBWU #_/?7ݹ) :oROW꺟ޮi].z\-Iax" HW``RhM%yɤ(Z6 ҳe~:R% D"geӝjno^_ +e.n/`z4wBn k}/_//0Bڮm}ime+Sfw!.^6ۈuG{PZŸ69UÕ^춤I@O2ͫ0ǥ|ePJ2RZz@ &`ujuH](-ۼ´^\]ۥbsa??Yxrd{X7TVސ__mn)&8iw%>lzl F8JR aݝS~Fʘfd3d2W5훸'cE血4 c@͇M +tSFN+YpL ֧p֤ +K oS3szg:Enܺߤi^@E:/XNMИ6e͸bC)UM +)Uz5HRZ Me y sbVwj.d$*`4*[M\)9N"˒ 8(t GF85z(ia:ujntL:IxY:?* ʮ֜h/K(pȳG5jN6b$="[cߒ̩P6d2N3'ڊup:T °{Hz"n_Ju P.k;[mR4Km`<ljF[J;CS񔨽QK8$w$8Nwz6dݾ< :5$b> endobj +1152 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 610.041 456.863 618.687] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.25) >> +>> endobj +1153 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 597.996 459.631 606.642] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.26) >> +>> endobj +1154 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 585.951 451.328 592.233] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.27) >> +>> endobj +1155 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 573.905 451.328 580.187] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.28) >> +>> endobj +1156 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 561.86 451.328 568.142] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.29) >> +>> endobj +1157 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 549.815 454.096 558.461] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.2.3.30) >> +>> endobj +1158 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 537.769 459.631 546.416] +/Subtype /Link +/A << /S /GoTo /D (section.3.3) >> +>> endobj +1159 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 525.724 459.631 534.37] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.1) >> +>> endobj +1160 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 513.679 459.631 522.325] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.2) >> +>> endobj +1161 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 489.679 459.354 498.325] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.1) >> +>> endobj +1162 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 477.633 456.586 483.915] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.2) >> +>> endobj +1163 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 465.588 456.586 471.87] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.3) >> +>> endobj +1164 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 453.543 456.586 459.825] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.4) >> +>> endobj +1165 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 441.497 459.354 450.144] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.5) >> +>> endobj +1166 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 429.452 459.354 438.098] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.6) >> +>> endobj +1167 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 417.407 459.354 426.053] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.7) >> +>> endobj +1168 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 405.362 462.121 414.008] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.2.8) >> +>> endobj +1169 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 393.316 462.121 401.963] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.3) >> +>> endobj +1170 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 381.271 462.121 389.917] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.4) >> +>> endobj +1171 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 369.226 464.889 377.872] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.5) >> +>> endobj +1172 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 357.181 459.354 365.827] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.6) >> +>> endobj +1173 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 345.135 459.354 353.781] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.6.1) >> +>> endobj +1174 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 333.09 459.354 341.736] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.6.2) >> +>> endobj +1175 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 321.045 459.354 329.691] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.7) >> +>> endobj +1176 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 308.999 459.354 317.646] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.7.1) >> +>> endobj +1177 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 296.954 450.996 305.865] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.7.2) >> +>> endobj +1178 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 284.909 450.996 293.82] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.8) >> +>> endobj +1179 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 272.864 450.996 281.775] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.8.1) >> +>> endobj +1180 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 260.818 450.996 269.729] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.8.2) >> +>> endobj +1181 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 248.773 450.996 257.684] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.9) >> +>> endobj +1182 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 236.728 450.996 245.639] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.9.1) >> +>> endobj +1183 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 224.683 450.996 233.594] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.9.2) >> +>> endobj +1184 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 212.637 450.996 221.548] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.10) >> +>> endobj +1185 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 200.592 450.996 209.503] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.10.1) >> +>> endobj +1186 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 188.547 450.996 197.458] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.10.2) >> +>> endobj +1187 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 176.502 450.996 185.413] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.11) >> +>> endobj +1188 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 164.456 450.996 173.367] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.11.1) >> +>> endobj +1189 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 152.411 450.996 161.322] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.11.2) >> +>> endobj +1190 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 140.366 450.996 149.277] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.12) >> +>> endobj +1191 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 128.32 450.996 137.231] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.12.1) >> +>> endobj +1192 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 116.275 451.882 125.186] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.3.12.2) >> +>> endobj +1193 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 104.23 451.882 113.141] +/Subtype /Link +/A << /S /GoTo /D (section.3.4) >> +>> endobj +1194 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 92.185 451.605 101.096] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.1) >> +>> endobj +1195 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 80.139 451.605 89.05] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.1.1) >> +>> endobj +1196 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 68.094 451.605 77.005] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.1.2) >> +>> endobj +1197 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 56.049 451.605 64.96] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.2) >> +>> endobj +1198 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 44.004 450.996 52.915] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.2.1) >> +>> endobj +1151 0 obj << +/D [1149 0 R /XYZ 54 639 null] +>> endobj +1148 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1201 0 obj << +/Length 2832 +/Filter /FlateDecode +>> +stream +xڭ_S7/PW+K4;}<;ŐVWt-әxsVYy ?>ᨘܪwq{X:,*&j1Y|Mjŏ}_IBj"URZ:tyjv̧i|3iY]pѯՏG];^wHt}}4?ia]DYV/ʦ?T /kIלB4ow1.D`*Y!:jck-xW/3uJf +ͥYyEIz:FZɱU˸,3qV;ueɤlp8DD7nI$l s}wsEdv,݅^|Iӏnms`z%2C=/r?h|.]4xC(2,Gh$%FaCP(Cf9B'! cJ[VRKp8$Y)Ph=0,m'^n71S1(PQu9SHy lS)jf5hP/8Wäʲ˜l& pu<׌Jg76$BX!*qT`yY2h#,( Q9z90(oU`W7<לJL}aJpL45E_(}X8_N F:u-Gߟ'~L6>yO]B/!$˹x TȦQ.^BlWJO^M/O&?f))I. +ȁxR- qTΜ^R=AT#W[}׌%5a 8^'pʯI{IɆp"TOp皽&-:Pϧ:T37BJ5BF8Z%Y)Pifo$(:P/8sj̼*;Vxl7JPA0WkNm(>@ZeC@p࢓ :utF}-E!Y[VFT5uK1зj9 ñSɲ̴:_>cY96liq,{V\DWC",Xe I_= {fwG77>?Dc'V +&fcQV>N(ڂU5)>#rwEC=D(IAؐ: Ձ\_^DG0ӈ բBe# @Ţ=ÃE?zgKR3C=ZI$% EM"Е{`W7>PpQ kZ86 'o?=óo!uOw$ (ʮbuPl<)s(|C9i\;ꎢMy'8XCg8$AX*PUB6 o3<>+B؇;?D9]>FN/?\Η3Ksro%z^{?s J3EjL]?Uo^L;'۱nj洼B[0!^LhoE*=sf)Xn7jJ\iXSȢٸM(dٺM#v9;.v!w} ӯͳVsQϲSsjfT*opA0 5-qKIqth.y]j Ok7W=&`3HnЯ(Tqv4*:@%T#fPWHN4h#K3Z=Ϭ7z e?!ĹP^@8H(`HȠB,ψ$yu$bCk +<(S`ӊum -O +I6kTQ!ouY纽C'go>2__w5ꖾT +0=#3GLg2endstream +endobj +1200 0 obj << +/Type /Page +/Contents 1201 0 R +/Resources 1199 0 R +/MediaBox [0 0 504 666] +/Parent 1247 0 R +/Annots [ 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1209 0 R 1210 0 R 1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R ] +>> endobj +1203 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 610.041 450.996 618.952] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.2.2) >> +>> endobj +1204 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 597.911 450.996 606.822] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.3) >> +>> endobj +1205 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 585.781 450.996 594.692] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.3.1) >> +>> endobj +1206 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 573.651 450.996 582.562] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.3.2) >> +>> endobj +1207 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 561.521 451.605 570.432] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.4) >> +>> endobj +1208 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 549.39 451.605 558.301] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.4.1) >> +>> endobj +1209 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 537.26 451.605 546.171] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.4.2) >> +>> endobj +1210 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 525.13 451.605 534.041] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.5) >> +>> endobj +1211 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 513 454.373 521.911] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.5.1) >> +>> endobj +1212 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 500.87 454.373 509.781] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.4.5.2) >> +>> endobj +1213 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 488.74 454.373 497.651] +/Subtype /Link +/A << /S /GoTo /D (section.3.5) >> +>> endobj +1214 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 476.61 454.373 485.521] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.1) >> +>> endobj +1215 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 464.479 454.373 473.39] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.5.1.1) >> +>> endobj +1216 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 452.349 457.14 461.26] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.5.1.2) >> +>> endobj +1217 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 440.219 457.14 449.13] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.2) >> +>> endobj +1218 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 428.089 457.14 437] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.5.2.1) >> +>> endobj +1219 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 415.959 451.605 424.87] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.5.2.2) >> +>> endobj +1220 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 403.829 451.605 412.74] +/Subtype /Link +/A << /S /GoTo /D (section.3.6) >> +>> endobj +1221 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [446.236 391.699 450.996 400.61] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.6.1) >> +>> endobj +1222 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [446.236 379.568 450.996 388.479] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.6.1.1) >> +>> endobj +1223 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [446.236 367.438 450.996 376.349] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.6.1.2) >> +>> endobj +1224 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [446.236 355.308 450.996 364.219] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.6.2) >> +>> endobj +1225 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.469 343.178 450.996 352.089] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.6.2.1) >> +>> endobj +1226 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.469 331.048 450.996 339.959] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.6.2.2) >> +>> endobj +1227 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.469 318.918 450.996 327.829] +/Subtype /Link +/A << /S /GoTo /D (section.3.7) >> +>> endobj +1228 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.469 306.788 450.996 315.699] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.7.1) >> +>> endobj +1229 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.702 294.657 450.996 303.568] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.7.2) >> +>> endobj +1230 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.934 282.527 450.996 291.438] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.7.3) >> +>> endobj +1231 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.934 270.397 450.996 279.308] +/Subtype /Link +/A << /S /GoTo /D (section.3.8) >> +>> endobj +1232 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.934 258.267 450.996 267.178] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.8.1) >> +>> endobj +1233 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.934 246.137 450.996 255.048] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.8.1.1) >> +>> endobj +1234 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 234.007 450.996 242.918] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.8.1.2) >> +>> endobj +1235 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 221.877 450.996 230.788] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.8.2) >> +>> endobj +1236 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 209.746 450.996 218.657] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.8.2.1) >> +>> endobj +1237 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 197.616 450.996 206.527] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.8.2.2) >> +>> endobj +1238 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 185.486 450.996 194.397] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.3.8.2.3) >> +>> endobj +1239 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.169 150.24 450.996 160.535] +/Subtype /Link +/A << /S /GoTo /D (part.2) >> +>> endobj +1240 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.41 127.447 450.996 136.358] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +1241 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 115.317 450.996 124.228] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +1242 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 103.187 450.996 112.098] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +1243 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 91.057 450.996 99.968] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +1244 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 78.927 451.882 87.838] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +1245 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 66.797 451.882 75.708] +/Subtype /Link +/A << /S /GoTo /D (section.4.5) >> +>> endobj +1246 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.775 44.004 450.996 52.915] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +1202 0 obj << +/D [1200 0 R /XYZ 54 639 null] +>> endobj +1199 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F14 1032 0 R /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1250 0 obj << +/Length 2852 +/Filter /FlateDecode +>> +stream +xڭYo7+(3|tua;(>ȶ^RYN_r =%BD9o\e>|T*ˇlt~r;SԾnࣆɪͯۏM=_5>xz\Ox9z~32I\$orߨ_t VVe\K?Ju/clFRrY{|\(o8j4u*Sk,sJlЗS2_ܪGA AZl6ΖMy^?g'B׋oLeNϖE|}_UC=.X9SJ2Q0.€  hY0vi0?|tqz5O.ȒVPl,3PRTHnEULC%tyh*hmR^Q]Ʊ)Ƨ_K=vԫ1699D|4@t+Luɲ@lTP<4&Za +61L8ONAZL"qU +k +6Bb%AbIAi-1SӇIS_Rŵ{R/Ib}'m)7hHl/vҒ Gh#,rBT=9Y +@7巵o:E |gT p'H1S3n_W)$DC5EEDlCT!z[=,=2g(pԠd3uR-3T[\v^,1?ەE ZlwhqnoZ?7 Rg%,U[f͚V/tf kxⓝDLf-Zbi!8WݤlݾZ(5P]칾ҳY +z- +d… QkrM m.`u!EmOny5вcbupXuz2K_zxkT T*&YXd+x +LQA`lCmyh0h +ѭZ=k*$@CTHnSE 7u\Bmyh*h7ьϧYub̕pG\fρJo"j]͊R?h_EXtf@ϭBMvS]]?|LͧgHh[q!@K \zX :vx.j<.OmoO@y +SLpE8ɳKxzg 8طѶ|9uFyj1=n( jtC +Z.+V$U  9p`f?F/aDM3MUX.I]*@Af6#f@G Bb8:<嵚OsT!u:Zϣ 5C=@D4:aW>HJd +<@P RX//qdI=.I^}%F=8Bmq~BjZH0#AzܝhP(s@t_[S?߇ّ97yt/Y͏?%q5 h@Cq"K8(֢B +-j[t@h +mPhGڍhwrnZY%4b8:MŊ-RlI^o~bH$-l瓶 r(lj,ȯԶ#xřP"f'yh2ڿ2u)#ȅgB^#q>7 Pk7?_BF/É:9ZSu<ôl^e omQ(fM +aU].+BA]KS;hX@N4Qo4 +á-2Fkx᠑] +@<@PC]Wv %5 &bcFj) =6Z ]ݭu!l|iቭo +УC-m3PfjP`فa'Scۙ)[RWfwݍ^/./nZ2co5K KbkJM'BWL%85㲱ۇUTԅ~ȝ"ƳŃ;µų2y|H~Ňj\;M2bV> endobj +1252 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.978 610.041 450.996 618.952] +/Subtype /Link +/A << /S /GoTo /D (section.5.1) >> +>> endobj +1253 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [438.211 598.03 450.996 606.941] +/Subtype /Link +/A << /S /GoTo /D (section.5.2) >> +>> endobj +1254 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.443 586.019 450.996 594.93] +/Subtype /Link +/A << /S /GoTo /D (section.5.3) >> +>> endobj +1255 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 574.007 451.882 582.918] +/Subtype /Link +/A << /S /GoTo /D (section.5.4) >> +>> endobj +1256 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 561.996 451.882 570.907] +/Subtype /Link +/A << /S /GoTo /D (section.5.5) >> +>> endobj +1257 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 549.985 451.882 558.896] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.5.1) >> +>> endobj +1258 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 537.974 451.605 546.885] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.5.2) >> +>> endobj +1259 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 525.962 451.605 534.873] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.5.3) >> +>> endobj +1260 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.728 503.764 450.996 512.675] +/Subtype /Link +/A << /S /GoTo /D (chapter.6) >> +>> endobj +1261 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 491.753 450.996 500.664] +/Subtype /Link +/A << /S /GoTo /D (section.6.1) >> +>> endobj +1262 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 479.741 450.996 488.652] +/Subtype /Link +/A << /S /GoTo /D (section.6.2) >> +>> endobj +1263 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 467.73 451.605 476.641] +/Subtype /Link +/A << /S /GoTo /D (section.6.3) >> +>> endobj +1264 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 455.719 451.605 464.63] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.1) >> +>> endobj +1265 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 443.708 451.605 452.619] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.2) >> +>> endobj +1266 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 431.696 451.605 440.607] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.3) >> +>> endobj +1267 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 419.685 454.373 428.596] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.4) >> +>> endobj +1268 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 407.674 454.373 416.585] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.5) >> +>> endobj +1269 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 395.663 454.373 404.574] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.6) >> +>> endobj +1270 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 383.651 454.373 392.562] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.7) >> +>> endobj +1271 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 371.64 454.373 380.551] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.8) >> +>> endobj +1272 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 359.629 454.373 368.54] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.9) >> +>> endobj +1273 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 347.618 454.373 356.529] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.10) >> +>> endobj +1274 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 335.606 454.373 344.517] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.11) >> +>> endobj +1275 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 323.595 454.373 332.506] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.12) >> +>> endobj +1276 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 311.584 454.373 320.495] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.13) >> +>> endobj +1277 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 299.572 457.14 308.484] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.14) >> +>> endobj +1278 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 287.561 457.14 296.472] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.15) >> +>> endobj +1279 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 275.55 457.14 284.461] +/Subtype /Link +/A << /S /GoTo /D (section.6.4) >> +>> endobj +1280 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 263.539 457.14 272.45] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.4.1) >> +>> endobj +1281 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 251.527 451.605 260.438] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.4.2) >> +>> endobj +1282 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [435.72 239.516 450.996 248.427] +/Subtype /Link +/A << /S /GoTo /D (section.6.5) >> +>> endobj +1283 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [430.545 217.318 450.996 226.229] +/Subtype /Link +/A << /S /GoTo /D (chapter.7) >> +>> endobj +1284 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [424.499 195.12 450.996 204.031] +/Subtype /Link +/A << /S /GoTo /D (chapter.8) >> +>> endobj +1285 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [424.499 172.921 450.996 181.832] +/Subtype /Link +/A << /S /GoTo /D (chapter.9) >> +>> endobj +1286 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 160.91 456.863 169.821] +/Subtype /Link +/A << /S /GoTo /D (section.9.1) >> +>> endobj +1287 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 148.899 456.863 157.81] +/Subtype /Link +/A << /S /GoTo /D (section.9.2) >> +>> endobj +1288 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 136.887 456.863 145.798] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.1) >> +>> endobj +1289 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 124.876 459.631 133.787] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.2) >> +>> endobj +1290 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 112.865 459.631 121.776] +/Subtype /Link +/A << /S /GoTo /D (section.9.3) >> +>> endobj +1291 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 100.854 459.631 109.765] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.1) >> +>> endobj +1292 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [416.501 66.202 450.996 76.497] +/Subtype /Link +/A << /S /GoTo /D (part.3) >> +>> endobj +1293 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [424.499 44.004 450.996 52.915] +/Subtype /Link +/A << /S /GoTo /D (chapter.10) >> +>> endobj +1251 0 obj << +/D [1249 0 R /XYZ 54 639 null] +>> endobj +1248 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1296 0 obj << +/Length 3238 +/Filter /FlateDecode +>> +stream +xڭ\mS9ί5WeHyo&- 61djن5f|jcQZ-:HtAV(<'d$>NGeɠ"Uk,ӻ?MsB&& >i\P0"VB +cb,x:`F()rl2=mcVҔ|w/wD|:%4dYƎV36']楃e ?Z"ɤВdfU)!dZ C&d"`Ll"^/֫^ݬƛAE C, EK E=!?CY`iFB``0KQo5]xL&8qS|Yl2 :ވ܂^VF!r[E00%uZS@W<qE1"eh&W7ьTzmGV6FKپl]" Flyo6*bH/í.dny +Wh1P .wC}'Æ0"%@K.HTQd1f2ҪWLr\o~AjJv_];``m<Л+|EAajt`/lz\@;|b#FH겔Sj8OݪT|iû@R + PK2`7ZL5o0xFk X ;B xRzץf/HjR)nS/ȹmBOP_?>QiJ8zYJ8>Յ :>=ďk*Jk,ēeN~7-j>k +uiWw՝F_Oe XKF° ]eSy|P4u +^b> ?S&`#! Ś#QWi7ޤ" U$;MHh.r[y1a뽤zm\KoJQ.ҽ "3gp$Y|@OU9О04CWYI^)8 =]pD"6$}b4bulz=|>.p|-QWLSWMĈ᡾~".~2+V± J.]б!~'_nNMgV0]cfaC}&r++IZ=vg+M+W~={2Pǥ){\Cgn]~8L||‡ epE`ePBEҦh!R i±Hh6>^8a0< ם `oPq)6YbfEѲ}>U6,X+e% APWSY'O}B=9:tu_]3jA +i70BSB3VB۞"8`0nٺa,* "-E̊hIY̜PDCQ?$#aQ.cڎќ4D_5>FƯ]`C}O= ,QĚVv<]O0CxhVZϓE OC}8m= +[ GIOB h/U{^S /O26oA!L6z 4Up` OPUK0䇻V@魋 g7<Ц=-z#eB7jFywUZATuAt !5xY]yoET#HFlaMƗ'c*]{W}/WS1ʊ`Vj Q~~ePzAF+s1Lf<7 A )Xi| +]#1 _?0:endstream +endobj +1295 0 obj << +/Type /Page +/Contents 1296 0 R +/Resources 1294 0 R +/MediaBox [0 0 504 666] +/Parent 1247 0 R +/Annots [ 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R 1308 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R ] +>> endobj +1298 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 610.041 456.863 618.952] +/Subtype /Link +/A << /S /GoTo /D (section.10.1) >> +>> endobj +1299 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 597.858 454.096 606.769] +/Subtype /Link +/A << /S /GoTo /D (section.10.2) >> +>> endobj +1300 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 585.676 454.096 594.587] +/Subtype /Link +/A << /S /GoTo /D (section.10.3) >> +>> endobj +1301 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 573.493 456.863 582.404] +/Subtype /Link +/A << /S /GoTo /D (section.10.4) >> +>> endobj +1302 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 561.31 456.863 570.221] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.4.1) >> +>> endobj +1303 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 549.128 456.863 558.039] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.4.2) >> +>> endobj +1304 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 536.945 456.863 545.856] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.4.3) >> +>> endobj +1305 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 524.762 456.863 533.673] +/Subtype /Link +/A << /S /GoTo /D (section.10.5) >> +>> endobj +1306 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 512.58 456.863 521.491] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.5.1) >> +>> endobj +1307 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 500.397 459.631 509.308] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.5.2) >> +>> endobj +1308 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 488.214 459.631 497.125] +/Subtype /Link +/A << /S /GoTo /D (section.10.6) >> +>> endobj +1309 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 476.031 462.398 484.942] +/Subtype /Link +/A << /S /GoTo /D (section.10.7) >> +>> endobj +1310 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [418.452 452.976 450.996 461.887] +/Subtype /Link +/A << /S /GoTo /D (chapter.11) >> +>> endobj +1311 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 440.793 462.121 449.704] +/Subtype /Link +/A << /S /GoTo /D (section.11.1) >> +>> endobj +1312 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 428.611 462.121 437.522] +/Subtype /Link +/A << /S /GoTo /D (section.11.2) >> +>> endobj +1313 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [418.452 405.555 450.996 414.466] +/Subtype /Link +/A << /S /GoTo /D (chapter.12) >> +>> endobj +1314 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 393.372 462.121 402.283] +/Subtype /Link +/A << /S /GoTo /D (section.12.1) >> +>> endobj +1315 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 381.19 462.121 390.101] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.1.1) >> +>> endobj +1316 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 369.007 467.656 377.918] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.1.2) >> +>> endobj +1317 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 356.824 462.121 365.735] +/Subtype /Link +/A << /S /GoTo /D (section.12.2) >> +>> endobj +1318 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 344.642 462.121 353.553] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.2.1) >> +>> endobj +1319 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.318 332.459 450.996 338.741] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.2.2) >> +>> endobj +1320 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 320.276 453.542 328.922] +/Subtype /Link +/A << /S /GoTo /D (section.12.3) >> +>> endobj +1321 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 308.094 453.542 316.74] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.1) >> +>> endobj +1322 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 295.911 458.8 304.557] +/Subtype /Link +/A << /S /GoTo /D (section.12.4) >> +>> endobj +1323 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 283.728 458.8 292.374] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.4.1) >> +>> endobj +1324 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 271.545 453.266 280.192] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.4.2) >> +>> endobj +1325 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.912 248.49 450.996 254.91] +/Subtype /Link +/A << /S /GoTo /D (chapter.13) >> +>> endobj +1326 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.576 236.307 450.996 242.589] +/Subtype /Link +/A << /S /GoTo /D (section.13.1) >> +>> endobj +1327 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.576 224.125 450.996 230.407] +/Subtype /Link +/A << /S /GoTo /D (section.13.2) >> +>> endobj +1328 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [441.808 211.942 450.996 220.588] +/Subtype /Link +/A << /S /GoTo /D (section.13.3) >> +>> endobj +1329 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 199.759 450.996 208.405] +/Subtype /Link +/A << /S /GoTo /D (section.13.4) >> +>> endobj +1330 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 187.577 450.996 196.223] +/Subtype /Link +/A << /S /GoTo /D (section.13.5) >> +>> endobj +1331 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.274 175.394 450.996 184.04] +/Subtype /Link +/A << /S /GoTo /D (section.13.6) >> +>> endobj +1332 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.683 152.338 450.996 161.249] +/Subtype /Link +/A << /S /GoTo /D (chapter.14) >> +>> endobj +1333 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 140.156 450.996 148.802] +/Subtype /Link +/A << /S /GoTo /D (section.14.1) >> +>> endobj +1334 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 127.973 450.996 136.619] +/Subtype /Link +/A << /S /GoTo /D (subsection.14.1.1) >> +>> endobj +1335 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.318 115.79 450.996 122.072] +/Subtype /Link +/A << /S /GoTo /D (subsection.14.1.2) >> +>> endobj +1336 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.318 103.608 450.996 109.89] +/Subtype /Link +/A << /S /GoTo /D (subsection.14.1.3) >> +>> endobj +1337 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 91.425 450.996 100.071] +/Subtype /Link +/A << /S /GoTo /D (section.14.2) >> +>> endobj +1338 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 79.242 450.996 87.888] +/Subtype /Link +/A << /S /GoTo /D (subsection.14.2.1) >> +>> endobj +1339 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.5 56.187 450.996 65.098] +/Subtype /Link +/A << /S /GoTo /D (chapter.15) >> +>> endobj +1340 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.783 44.004 450.996 52.65] +/Subtype /Link +/A << /S /GoTo /D (section.15.1) >> +>> endobj +1297 0 obj << +/D [1295 0 R /XYZ 54 639 null] +>> endobj +1294 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1343 0 obj << +/Length 1650 +/Filter /FlateDecode +>> +stream +xڭS8W쇸O7!@/-8e:> SH$_da8z+}$Va^K/w؋;>Q{2ISCewU>/?M՗VA'U?_I4 zQƕ|0K2xcC:ߴ@Li豰LN Fyc?-0*&b61 +\h +IYZbڄ+YX+2 _}= ]69Ĺ~jG£tQ<T,''Р8jPX}?W(6b< +jOE|GwĒyH0,銩GR$n<(Ņi{:J&^ <6dƆuFϮq@i" unvnd+\e)Uvt2_Lu >G׎@-:7GX9]9b%6}d5:V䭙qi wS~V}b68Y?N1 Nb0 v ֥Cu,`2G*B;G̈Į$ʙ:?eU.C^m(v^> endobj +1345 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.683 610.041 450.996 618.952] +/Subtype /Link +/A << /S /GoTo /D (chapter.16) >> +>> endobj +1346 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 598.086 450.996 606.732] +/Subtype /Link +/A << /S /GoTo /D (section.16.1) >> +>> endobj +1347 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.55 586.131 450.996 594.777] +/Subtype /Link +/A << /S /GoTo /D (section.16.2) >> +>> endobj +1348 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.318 574.176 450.996 580.458] +/Subtype /Link +/A << /S /GoTo /D (section.16.3) >> +>> endobj +1349 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [432.192 539.804 450.996 550.099] +/Subtype /Link +/A << /S /GoTo /D (part.4) >> +>> endobj +1350 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [428.318 517.887 450.996 526.798] +/Subtype /Link +/A << /S /GoTo /D (chapter.17) >> +>> endobj +1351 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 495.969 450.996 502.389] +/Subtype /Link +/A << /S /GoTo /D (chapter.18) >> +>> endobj +1352 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 484.014 450.996 490.296] +/Subtype /Link +/A << /S /GoTo /D (section.18.1) >> +>> endobj +1353 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [428.636 462.096 450.996 471.007] +/Subtype /Link +/A << /S /GoTo /D (chapter.19) >> +>> endobj +1354 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 450.141 453.266 458.787] +/Subtype /Link +/A << /S /GoTo /D (section.19.1) >> +>> endobj +1355 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 438.185 453.266 446.832] +/Subtype /Link +/A << /S /GoTo /D (section.19.2) >> +>> endobj +1356 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 426.23 453.266 434.876] +/Subtype /Link +/A << /S /GoTo /D (section.19.3) >> +>> endobj +1357 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 414.275 458.8 422.921] +/Subtype /Link +/A << /S /GoTo /D (section.19.4) >> +>> endobj +1358 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 402.32 458.8 410.966] +/Subtype /Link +/A << /S /GoTo /D (section.19.5) >> +>> endobj +1359 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [425.093 367.949 450.996 378.244] +/Subtype /Link +/A << /S /GoTo /D (part.5) >> +>> endobj +1360 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [422.271 346.031 450.996 354.942] +/Subtype /Link +/A << /S /GoTo /D (chapter.20) >> +>> endobj +1361 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 334.076 458.8 342.722] +/Subtype /Link +/A << /S /GoTo /D (section.20.1) >> +>> endobj +1362 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.562 322.121 458.8 330.767] +/Subtype /Link +/A << /S /GoTo /D (section.20.2) >> +>> endobj +1344 0 obj << +/D [1342 0 R /XYZ 54 639 null] +>> endobj +1341 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1365 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1364 0 obj << +/Type /Page +/Contents 1365 0 R +/Resources 1363 0 R +/MediaBox [0 0 504 666] +/Parent 1247 0 R +>> endobj +1366 0 obj << +/D [1364 0 R /XYZ 54 639 null] +>> endobj +1363 0 obj << +/ProcSet [ /PDF ] +>> endobj +1369 0 obj << +/Length 163 +/Filter /FlateDecode +>> +stream +xڍ0 D|GgH'iV$@01dC P@EU_P11 >,E>kl͎ϱԲŚ`gcP:`&U +uמ4hC8jS>݇4F͒`S7Yn Qu"l* *j +S5endstream +endobj +1368 0 obj << +/Type /Page +/Contents 1369 0 R +/Resources 1367 0 R +/MediaBox [0 0 504 666] +/Parent 1247 0 R +>> endobj +14 0 obj << +/D [1368 0 R /XYZ 54 444.886 null] +>> endobj +1367 0 obj << +/Font << /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1372 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1371 0 obj << +/Type /Page +/Contents 1372 0 R +/Resources 1370 0 R +/MediaBox [0 0 504 666] +/Parent 1373 0 R +>> endobj +1370 0 obj << +/ProcSet [ /PDF ] +>> endobj +1376 0 obj << +/Length 2134 +/Filter /FlateDecode +>> +stream +xڝ]oH="ou$bJңA q<,αPoЩR;3;;3k5uOMzt8;9Q~ ~LrzMLUd*QvuٺLYmV-5~;Zv@$z16řpۉc{I6oD3787۔/g31R;.Ms{(et+nmQwHz(mVkE&W ){:YntF_ILxK2aqu70YOzIU1X]V2 :GGQԸNc{p<062]Z?~nZ1ژRc3 ; +ippQYYHdY] Sv9P;+16{8֞ +.|`LAg)4`DԐAm=h +U U)l0))G6a7H8Vv{q.J?$1w45<#mX.:* a + (>Z0ߎ򻎒ljR>q7@SWB#]GAra2!gKW1VcX^Tt`0 +Po<}lW&%:n5r))]&3UyVёC9u +I%R 4I/?fqVEa is'iP)V G9Q35%`1gpMBh_J ͻWA#P C(`AԔN3%< z1^2+5 XTB)j7w& iwG||Op]%&Zh"i?I2V]{]S#5kE bҙ~8ėL HK_EL VzÞ:Tei + h g4It]QlAU$?c7_fpb{& 3IN\d UxDs7t;r9⾖5^z̭J +))~87 A՞'r#'3({LU9lK!e2tX,4 tjD=FYFir8O/Kjy3iBA(h{$g럘{@tKk4ARA 6"ґ T(pwdGsN ݀h a+k# \,eG7~H(#+i6TPB RlLy>a)B~};d4r,yGqpL˭cUe@3r}y̓6 ڳOT7pQS7nR?w2( +FBJ@wc-b+jLbZ@k M63Co{{+?JpD-1VS!0]sGJӅI\|@&'2k_^e_֙`{(> endobj +1377 0 obj << +/D [1375 0 R /XYZ 54 639 null] +>> endobj +1378 0 obj << +/D [1375 0 R /XYZ 54 621 null] +>> endobj +18 0 obj << +/D [1375 0 R /XYZ 54 621 null] +>> endobj +1050 0 obj << +/D [1375 0 R /XYZ 54 408.165 null] +>> endobj +22 0 obj << +/D [1375 0 R /XYZ 54 408.165 null] +>> endobj +1382 0 obj << +/D [1375 0 R /XYZ 54 381.418 null] +>> endobj +1374 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1385 0 obj << +/Length 3073 +/Filter /FlateDecode +>> +stream +xZYo~ׯ<< XFp(!ΒdקjsN~"0`vWWWWW=rgsga0tOA~:queNKs];99{:N#vmgI<)>Xg=wNq!$b@|tfdHcvt>Hׁ뎜]1"fH (6Z,Ӭ-1W./~}KwקI`t/QJٖۺs6AYVFdMR.iz: .=}U oº?kU-hl&V#O%sl P)jj-<w&+z{53Qm}3bBn4s=  rA,ٕu8 CBdkb"^dN_U)AZ9*lrhy|Ϗ}X4B%AXlYJ'eRrX8c) ./SbFG4]U+ZyEFwAB hFX$(l抝(\-#`q<f ++LeŽ J`ǠI"!&ifu[G"s޳U1oNy{lA˄"j 95*1 `%p蘇dkqx/LN +&&=e5kIBII%g&)1; Wzn. DUO|ފKCup [<E.St?w_Cef?-<C-KL#32w˛$Mj$CgB/[d 9v6g4HR-̾Xx3XW;l&dHgT6tdPȠА"! I6K滂;]&rɶ8ؑw"x0hV):(T0ٛs?*6m/E6(u-9N9#3\ j +[Cc P7stwUGvUR@W|(82oFq`VpjS01D(!HP)TSȔb`;Y3 C5Qc;\qXE۸xcI;"HJM`3ΘOJwxQ"f0SӓZp_\.lQa f+&O?D [K#]d=e$Oi:z 0T)B$:*C]D̍^Ku='6L0%iʀ)Gd3-Ǒ\DTi\Fb )1(>!ZEjJPގTs7C[v#lB]]$M&pجM^ *Ђ +_SP=#gtu)ǼŘz3O/kʟ=.X1x?]ܰ +&l"r`c85Z"2vOM r/DIO<3i:B#oD?(^c>A;Ԋ8א܆16}1MB09*/7$ct1fpLQFOaAɜ# VIF4VM{|4u7i8464 J9s^z$>}4G3p ݇ Iv|BlL`8lsNl)R&;lZ,?eOB..4p&15mr%34)~dŤ1(J"43"<'qn ;m^:ǖ'&nRS> +QʧdH-^Ѭ3c^ ·S|A|RUgZY#Y\R\jTK"}@dp.di ?nEܡ:ER@!1, D6цrczBom\ִJێQLEYyB?V!8zF:^wR&u陙~glɅ>a:c+XgJ_TD~2GA:ҋI^yt޿A&hTi$x^ytå^ĆRe'3yXxdpX %ȤP|o?gC|xIa{^p}>ECk>!!\tp8L#CD ß*QhI_&| 2L[H̑z*R'Q˓: ՘-#t%6V wfZՁģhzHJi>ڗvۑ.4>Og=xRJ_)I(<#O\//wy}?O¿"zendstream +endobj +1384 0 obj << +/Type /Page +/Contents 1385 0 R +/Resources 1383 0 R +/MediaBox [0 0 504 666] +/Parent 1373 0 R +>> endobj +1386 0 obj << +/D [1384 0 R /XYZ 54 639 null] +>> endobj +26 0 obj << +/D [1384 0 R /XYZ 54 564.705 null] +>> endobj +1387 0 obj << +/D [1384 0 R /XYZ 54 538.597 null] +>> endobj +30 0 obj << +/D [1384 0 R /XYZ 54 399.655 null] +>> endobj +1388 0 obj << +/D [1384 0 R /XYZ 54 376.038 null] +>> endobj +1383 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1391 0 obj << +/Length 798 +/Filter /FlateDecode +>> +stream +xmUmo0ίیP!MS"US8Uv6[T=wܙ0?YP: wHoimWs*"ERTy R}/6KQo!z\SDCR'Z2X_ E*VW(\Xzyf< 5)DS9@ Oc \/M +F$V _R ^{oG +} :!|K'IQFTb~UOpǁep+QUs"2DC^\ ?@ %.J%$n˨eBÌ{ K~gYz1sh[9,0HJ).W3 ݌,>kudփgE>5G_ۼiNM˴f({]%2QYhжcۓٙ_B"`RT@=KZ|j?$Ltmcg[/n ICvW|r|0$ZTP wGuq&..LB1ۮg;jǵAVMufK5y3}3Ԑ"cH3rA'!y?LeO gsHP4|kjC1SxU,SsUw!=9RϮ,B{B* k8G Xr^y0zFE{qiiZӢ{SM˶/~tyz&ҰUig~$2>o yendstream +endobj +1390 0 obj << +/Type /Page +/Contents 1391 0 R +/Resources 1389 0 R +/MediaBox [0 0 504 666] +/Parent 1373 0 R +>> endobj +1392 0 obj << +/D [1390 0 R /XYZ 54 639 null] +>> endobj +1389 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1395 0 obj << +/Length 2391 +/Filter /FlateDecode +>> +stream +xڝkk1du%P +4-{wxȊq%y׌$[y9sޏ_F2Vٲ8.VeGe1|g66a-7rv_l'nG aEr͹?䧵e(?t۟[,vU#/~[ҟtyY<.&׋-G*M  ce)eeI_4 O|q ?<~VҠ|:"`&M8 yW8) +6tØef +STFޙ C}_6ktab*$HyxR _0 &-M_5{4rÎ\L?ʈKCP,(`J$H|P-iZo`A_qZ[c"k!n7^SQvlZMn# +$"?ȳ@8Epa9pK{<fAeĕi Y(,A4ny=7ߺc7^ɷ)u{;+ в_( Ƅ<$+@H(FrJUqi= 83Y{hXF9?DlĂˆu`NBIq A\VBn] =ĕ (pѶx2 ͼ@ȔifO'{PFyXdBa)a|fWC 4d=I" +c˹v`ҝf{FwmXꄱl5X`PSnJ2'-5_Qw=Y/B')WT~),a9Lk4cdUHWS&ڄi>_x1==ROb"JwFs\Y7] 3A 9`VYl3@lYu0RC) %n٧>R}Q8J(L[i |wTOl׏k쵧(HV'Q6fHY-R%4 PHa}^lDtMnÁơj^~=%Ү\<јE} gY1JZMY.41okȿ܌Ջd|%N@lF^vM`1ڮWs9>7#挎]4\rNBhXc$)pJu;J49zi&92 ´Ƅh +b~x]o=iQu27p5_qOn bMaOl:eEb@央$*tg)ԍ6iAz nSi4/u +/[ +U֌|S?֜t$+*kN`uie:;vը?Z(@ѽkANF#'P;;٤A"ox5M|0YWk~lendstream +endobj +1394 0 obj << +/Type /Page +/Contents 1395 0 R +/Resources 1393 0 R +/MediaBox [0 0 504 666] +/Parent 1373 0 R +>> endobj +1396 0 obj << +/D [1394 0 R /XYZ 54 639 null] +>> endobj +34 0 obj << +/D [1394 0 R /XYZ 54 621 null] +>> endobj +1051 0 obj << +/D [1394 0 R /XYZ 54 470.106 null] +>> endobj +38 0 obj << +/D [1394 0 R /XYZ 54 470.106 null] +>> endobj +1397 0 obj << +/D [1394 0 R /XYZ 54 444.441 null] +>> endobj +42 0 obj << +/D [1394 0 R /XYZ 54 367.671 null] +>> endobj +1398 0 obj << +/D [1394 0 R /XYZ 54 343.943 null] +>> endobj +1393 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F11 1012 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1401 0 obj << +/Length 2703 +/Filter /FlateDecode +>> +stream +xڅYKsFW| DLv5L6Vvj+ɡMQw(RaSC7)3[2DP4 /-Yp H1wSܛ?lWNvb}9GAūIvy8_yByCHnA,~]5qIiܔWG0Y$̄Ћu*'y2i֋,Xn~3md?݄$_δQ7I麾xO+%%q.G"L+ZO.edmܵ/6}4_f-SU(LŢߗ ܖ]E4Dd¹@0*C;x;&>r)ḿ헤2 Kr~ˎ1$e9D/| ^'[vPG F͢DX$>IG!;V"_Ȁ!^- '4 pP&N,vd 0߀(J]xo/k<3Vg*T<t obìk;U"P 6 +LwnJ,.o)Sa{gi5H2@|LvLQ +mZ< y > LxL$* tO/4UcWࡃ$[klCl-ޝ+m/bܑ]"FrN}84&Ypl@ [w8sV6C 0 @]ꭞIG+ +R$c+Be%ֺU}ij 阅p<={` ֦i{Q&ç}Ph犍'w*vG[P]G5qb ^e/NWvkp4!> ,< '=[ضd]܃$::r-^%b,i&+&\ m#g%(̣"*ՖeE{:RwLOR`C7FRsUń9v栀)?$t "Eԯk2>ԎOY@$4IKmWDR4;RqVNjAD.K2tcG_T +Kv)\œEbV~Y[L[epY|'! "L嗺ǡuQW%Y˜Nu#w=CJEtY v6[f\dUI"\)D=3r8ҍ޻HIw&{!Tbv&f4b5]A } ДgZ9JIEO)KT˥"6:c(&j'\Jl=T_B;8j}|IO|q b{ +n`ҵh^R%W"d^GTwa%|#W7[vg^(DP birH.CrqDONz?n4lԇsuKb}t]6d1zd;fg0-XUci9ZiOv'[io&7C͠K)+A +-JãhS[j5EOk*- _yn׫kxQ>n:q +jo_F= >~hI8|%QݛupPuqXͣt eoQ> :Gu+_ھ&3y)_б:rW6E20vxk}>Z:KIJTMC*ɨ9j +AkS5Sr90 6*'n_NMԏؤ5VK#Y*R{X/ V-62TSx9zoqG2tbOYG3kNo?qyâ!k1ii{#W:KxuP^[ M"Y dxx 1|8cg}8KVEͯ_h+%Ӂ|'tߒ.RF _\Tu{pϡe!0$1K,ӎFTZ4Etn,.iP0ze)1I3rr>֌^/&틣7339w8F~LYf:lY_4񮥷\#+0aN{?>fKqވ }cF &VmTuAxnBmUgoS0(0 kU8 *PKULe5h5 *f^&xw@pB[endstream +endobj +1400 0 obj << +/Type /Page +/Contents 1401 0 R +/Resources 1399 0 R +/MediaBox [0 0 504 666] +/Parent 1373 0 R +>> endobj +1402 0 obj << +/D [1400 0 R /XYZ 54 639 null] +>> endobj +46 0 obj << +/D [1400 0 R /XYZ 54 577.895 null] +>> endobj +1403 0 obj << +/D [1400 0 R /XYZ 54 550.502 null] +>> endobj +50 0 obj << +/D [1400 0 R /XYZ 54 377.814 null] +>> endobj +1404 0 obj << +/D [1400 0 R /XYZ 54 352.386 null] +>> endobj +54 0 obj << +/D [1400 0 R /XYZ 54 135.563 null] +>> endobj +1405 0 obj << +/D [1400 0 R /XYZ 54 105.68 null] +>> endobj +1399 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1408 0 obj << +/Length 3187 +/Filter /FlateDecode +>> +stream +xڭio/}|y@;)m?%J3GεKRb {εr0XD~ؔWb#refS+{z6tFbegIXo~ɗ~s D! CYrZwK׺_0 +ʿXK \Yoe yMIq쿮~Ylh?_9&MEy姑_ y [)W\v|]g@[%1H;uvS? Z%-`::(K=ڧT)! -^&ǁukd# \Lڲes{U"hL r6cJ"@G9C?ߪLdCJ vnͭ0T5 /`cc  ^1 *à}rFjjA#S^mYƱuz͈Nm ԗ ))j߶.}"td#@ ɦ:38tf\6Z +iЎ6o|ànk1bLa5xb䤫(w;^e8*aH0dslj0N.GjM('"Qhi52Y.὎6Ý X:Ta'l۲+8hK G`T72h*E; G<%An1¸G2LyQaBN6By|ݿP]Z:cgq%Y8>(@aˣإKN/e褬Rq4jak"Ʋz"R (]١a!+ҁmoO@Nэ]̢`߷У}<;\7YE,(%ؑP0@v`R.>N qkI!:L6,b8S4nvN%"SR')Yd[M5cp7ܑYDȄ^{F`쵇@nySE ;y$oxf+k5Bvlonb"[ hy4ױ +v^cW Բ"^pw~as)b5U.PICLb +}|1SiT h+1'B棊!?p$M I{p28njkH;]0wsؗF0R ^: +7qںo6:a3P7迥9‹wkI8>swzŒp=dX2TlQq_BizTSBlS1)lD#3,GH,zzx a##tA}|zwa6ڱA`qv2'Ud-w4.hLD5n)83¹{-kf; i&@&X)-$Y~"T1 =c,bF{ [ ;JH"0j`̜0Ual' +}?ƃ{ KR6&^Z(2{:$섹^ۓF-Jf0|s'Ѡ&"I 03(?bU@u2&mX2iI2NW2 :c9}~C" 1 +3Ig&XwT(=v腃L3RSG_|59) \yEAl d2dLяs҅pWF5m֩haMİYQ.EVo &* f,+xvzIv2 w*KrejX,Żd[(tGkF_ C5O5M>4 lm^j[_vO ?taTi~Pu]5,Z Qn&Q2$g/Pnh8bvRbUT/isȌ'5rJendstream +endobj +1407 0 obj << +/Type /Page +/Contents 1408 0 R +/Resources 1406 0 R +/MediaBox [0 0 504 666] +/Parent 1413 0 R +>> endobj +1409 0 obj << +/D [1407 0 R /XYZ 54 639 null] +>> endobj +58 0 obj << +/D [1407 0 R /XYZ 54 408.282 null] +>> endobj +1410 0 obj << +/D [1407 0 R /XYZ 54 381.949 null] +>> endobj +62 0 obj << +/D [1407 0 R /XYZ 54 237.545 null] +>> endobj +1411 0 obj << +/D [1407 0 R /XYZ 54 209.275 null] +>> endobj +66 0 obj << +/D [1407 0 R /XYZ 54 110.754 null] +>> endobj +1412 0 obj << +/D [1407 0 R /XYZ 54 86.94 null] +>> endobj +1406 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1416 0 obj << +/Length 3295 +/Filter /FlateDecode +>> +stream +xڅZn6}W2m`ѽd6YLO,ݭvsG-ytSض -,b]N_F_eVEt@=u䚆u쇻~J^dVloxV^y(7UQDUJyBnC?Q뻱Nk鱩*`GK],߷ed妈b>׋?.tʟ/MZOԎ6qU].Ҫvsq{ZPF:P9WMBB70^]gefhސ~6 u{q࿣<XXiMKmeRtGb;~;9ujO> +J'tO7KǿUy.u'#sGх~I;R_F;?rX閭{AnhPzݠ/$/iR'D箟ӭn⾯,Wyx}= |-zo> y68ov؏xb?yTTLTq{8a:Z=u^x=mkY]'`yy'l椉q5x14c k'_u2K%Ѡ|&~rwEhvQ@^TOnG^wyPƼT=tMWݖ0췢Sz݉g9;Ӿ1ש4xGNqkmr1Yİ-`.A-uVeF/g&ʠJT.wus(0cOm};k5?E:aqBOu3٪ `N[Q^iь2z||YvzD.Uo_>VIΔ|ASL9nrF3/AMzݝՍroZ ;sCf^HFDb 5S}e GtJͰBm1wTli7?-Lyt K?\0kv4p#rIj'48JKoMcGwr +Ui/0D%=nwCw[Y!˱g9gQ0v[xQLce 4sa>d]VLI#M׍W`@o嚅[Cf̹{Q^ĕ<A|c  8.U<#ጁ*&.4ER+{F覆P]^; d8"Ȫސx#+?;?6>EVЪFqJ2G9jsNEx3[ _vp9 ޳j257Cw']* ^%Q;WFh%[fuڲs WM:aX0ڇ=y dzCO jGn׸Ԁb0.ZKAJMr }U03 +?m.0g.L\LAh"b^wxĊ(iHn4C7AG#[@92xcm4"KFc(Ҋ4ܻkUg y:;a6n>hFJTn lFmsҌ`KRSi\|^n5-VY$RO[ğ}Fq3'NOY +j1k!T絒]=y;\dߒB tZi]JtG\v!Oqa;sL8K&R`3kD zN^\@^n9Bׅ ;Ʌ'X zĀǎQ$96K +2dp<̡1AvNe\HD1g±7أXF@4X}d[FN^ Hp;=X1/g6q9\ַ.-c* eT /Tg\ΤDt +&4_&Tl3goE5KQ|8/j9YaT6nh`T ,aC^,<9s[=C5ζ@Bʤ|#azgL=84U,DE:rͺ$pͳ:˷3^53r,ԱoxR_ÌT0/u2+ne /'ƲүKr+n|!rp5+,¢ $*Hx_}KUBMQsn;Y9qySWuAvzYm`U b%Iy E4u͟n]٘y #,T L*m_)܍VYHABiOA)8e$l9]A|,sJ|U~-><㼬 mC~Pj%*Uqh Q$jncdRQK +\#wYW8Zq㕯HVNgqwSW K!>͢ &KS%)h4h`؟k5J٭ҺhfFmE>et"^rB3oVq-a > endobj +1417 0 obj << +/D [1415 0 R /XYZ 54 639 null] +>> endobj +70 0 obj << +/D [1415 0 R /XYZ 54 444.647 null] +>> endobj +1418 0 obj << +/D [1415 0 R /XYZ 54 418.413 null] +>> endobj +1414 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1421 0 obj << +/Length 2506 +/Filter /FlateDecode +>> +stream +xڝYYs~ׯۂUvDȊŪ 2pe䷧/$!rY랡O|o,=\ٳ|2|'&o P9ڟvWv2Y=_ڳ_ޯzv@Ǿ}w{MG'hJpE2Qz{qE?cGT^)HO>nAQMn"1pڶ;XPSWĶ6-vRDU2hdc>N<'>}^Y$/JC,ʹ[gSx$KYh[Vd0ZbcMӛ!C[`i{W$=j`Cč˚ku ƺZع\dz>Æo"jBpVlZ OK{eCy $4G\ 9BmP?<,S^nZΒ?dɷ~JLbzφcxFX gg;mQ΁:if$&>O9Eia>̚lqN:{AeU“ ξ9uc MCb"o8ߟ$b#| + Il6ӡ\7>DE(!tKv5}e to"AMHDYu LtbHܫ#Np,8[ÄQW8I*iU4K;BHpLz'Pbט -+3JMEbJA'~|87љ征3}֛ irq 4]mt7םG bDsq;c3fPu*ZdxaǍzq&wݼ}xĮ.Zͅc 3ꯀxsdpX/&~݄͋&\ `asj=5: NM_l7ɭ"/Z +í"ϻ܊rǜm{($Kֻg7VN3킒nl;~ňg7E^_=S< _v֎r|(ͅ(n}腃sHxpleKLOÓ$'N +@w놯@b\ (NTU._sa,m$7K2vXO 1Dh.d[ x< +UxZl y`B?;j@<"QGr.+ 1H3Z @ +lB`Fm8XD=l1yՇ=Y& +¡J[Sp6X_p + ?bOUR]ԁ/%W$=lnm~#;m*&Dtߤ9bhl]ݘ2i[~7'!nwgGQ> endobj +1424 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [323.475 408.252 450.996 419.377] +/Subtype/Link/A<> +>> endobj +1425 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [53.004 396.574 170.064 407.422] +/Subtype/Link/A<> +>> endobj +1426 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 171.223 449.79 182.348] +/Subtype/Link/A<> +>> endobj +1427 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 152.509 271.959 163.634] +/Subtype/Link/A<> +>> endobj +1428 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [300.036 134.072 443.248 144.921] +/Subtype/Link/A<> +>> endobj +1429 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 103.127 371.833 114.252] +/Subtype/Link/A<> +>> endobj +1430 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 84.414 266.728 95.538] +/Subtype/Link/A<> +>> endobj +1422 0 obj << +/D [1420 0 R /XYZ 54 639 null] +>> endobj +74 0 obj << +/D [1420 0 R /XYZ 54 621 null] +>> endobj +1052 0 obj << +/D [1420 0 R /XYZ 54 468.565 null] +>> endobj +78 0 obj << +/D [1420 0 R /XYZ 54 468.565 null] +>> endobj +1423 0 obj << +/D [1420 0 R /XYZ 54 442.131 null] +>> endobj +1419 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F11 1012 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1433 0 obj << +/Length 2590 +/Filter /FlateDecode +>> +stream +xڭYKs6W|T5b9{HF=(ځNO5gK=и?@(0{H׼='(.2TUkpgSDEI|'-OOq|O4s\{kHGY2-IyYwpjFS-z4*K4l@cL9c: \А H-2)،(gsa+a`A4T IߪU, jHm#>" ( 3r}vs raqFjؓNgh?ͫoӪ_xV I^#Spn7CMu[5Ďn[*V*2&)aniD6_kq9 lV.ԑp$)6o(s*b8]#$D-Ǣ24Ǟ: B`pn>rWЛQΖ^XF.NV'mLA2E&ɸ1% +U1V㢌6~o%բP~k[g?zVgQa0~}LgBkLgX2:Z +x߳\gr{䏅ɉ qJ`b UfQ qkP.蜇9.܉f $ P 8Ϩ=U{>v@]j ƪ}\Q@ݏC(V{X9Bgo>nB#2d9;JwŤYiup`kvj7 +[@=Qb.ֻLa" ^[FWsrbity0b ";g,Vu >D +&v,}{['u# si .SmY3Hy?R *\li(Hl +|4[Ęغ Jbk(ʠK_ 趫7MC\kuR Efhؚ%~6O+c$$FEN>V¡~@# C+ 0yueW:Նнg=ק'A>({gJ7R U!F8.j3ܝ%,;/JBe: +Jc)BcnQXfdb! ^ Πy (ԚPs)O $աnI'C|N(7`BZz1*t Y\?:SVP2`+󺳓!t(S1C/upjf<fgT ,3 +#2-N~nfaUƗ6v7aJ W<@9? + 'GlCڸ@A}x>H8u/qs?/Q-65UB{[rǂ ]MP\cs\mt5;tGҤ, ^K{iZC^tJa :PH[+Ӓ؂tF $+KYs.mV^Fܷ1"թW}gY8b0q4'pՎ٭@s<9`9޾vȇ~_`_R̕?g }ǡ;g~cU %m%ޟS#JkhnQBX3j 5Kߛ~ۂY(ݥW-^/'gtRtR*0?4]qo{\34 [݊:~xo%8~1G_.>]a\8@;šǿxϰ=sZ:)g I.[QmZ!w@/}O\иk},pU*ƾhc0rEl˺{#Lc AUrsf?S . endstream +endobj +1432 0 obj << +/Type /Page +/Contents 1433 0 R +/Resources 1431 0 R +/MediaBox [0 0 504 666] +/Parent 1413 0 R +>> endobj +1434 0 obj << +/D [1432 0 R /XYZ 54 639 null] +>> endobj +1435 0 obj << +/D [1432 0 R /XYZ 54 508.78 null] +>> endobj +1436 0 obj << +/D [1432 0 R /XYZ 54 488.143 null] +>> endobj +1437 0 obj << +/D [1432 0 R /XYZ 54 470.551 null] +>> endobj +1438 0 obj << +/D [1432 0 R /XYZ 54 451.852 null] +>> endobj +1439 0 obj << +/D [1432 0 R /XYZ 54 410.35 null] +>> endobj +82 0 obj << +/D [1432 0 R /XYZ 54 343.531 null] +>> endobj +1440 0 obj << +/D [1432 0 R /XYZ 54 322.728 null] +>> endobj +86 0 obj << +/D [1432 0 R /XYZ 54 255.467 null] +>> endobj +1441 0 obj << +/D [1432 0 R /XYZ 54 234.83 null] +>> endobj +90 0 obj << +/D [1432 0 R /XYZ 54 164.351 null] +>> endobj +1442 0 obj << +/D [1432 0 R /XYZ 54 140.45 null] +>> endobj +94 0 obj << +/D [1432 0 R /XYZ 54 140.45 null] +>> endobj +1443 0 obj << +/D [1432 0 R /XYZ 54 117.157 null] +>> endobj +1444 0 obj << +/D [1432 0 R /XYZ 54 117.157 null] +>> endobj +1445 0 obj << +/D [1432 0 R /XYZ 54 73.164 null] +>> endobj +1431 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F51 1006 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1448 0 obj << +/Length 2244 +/Filter /FlateDecode +>> +stream +xڥYKsFW`U8[G6)땴$IH@K~  *tO?nf៙,lѳ vcBh7?,Uidgk:*LOu?,Y(QAr||/lxox2\޾[5 LƖj9-jyI$*-ϿlqM 2i:4濭 ޷8H]1~(cq Vr*@4"*YG@L}WgroyQz嚟-@޺Y#UO­Evl ,HGrq Ʒ ZiA-$%&,-a[ʹ6B9J4d❧9qe9!Sɣ0 + Js-Sj\'TI Z9ENlMb'$%ZśG8x%+9$ b/rHrk{bm AⰙh[EǴIe. Nߦ +8fdUh<4Wd!a>:uh]#ƶ ,+K!M#^Ta^fQGvW̰$]ʞXg9n)ʗ>B! ?bM3>G2Z]$hXe&VSK {)4yG^ ֿtJgXv!q²`pUdyW="qP 2 lwԆ!)7nT4v:)lfȿCCôrSR$\?q4t~ 6YmR⯻n6׮nCw@э$e@' # "p~} +ьάFoG BX+{P8DhjInǣX RDw?97 +>90p7dTZ̊NLvEa\GSB#QTԛbzr4ʟ %xr׉%BeU{cE%(57F}eu2ĺ+EG ͜CzASIۼ0+jY )J||Qe0ބT~Oop"يu3r&,S[p#g88Juut/|Y&2tfg^ +t[F*mҙ/m²}ordtb ИF*o|RPF +-DԤe4y?Oyri d3 봧 13i?)\ |@R/#$0! Itn0Pl`ׂ" ƙg4B`x0&,k18z +3EO{ki< {?Kq',kJpGJQOx{oT۞n›HcbʟjIi?y{4֬o4m%*!أO?<06F8x:TuxrΑћEy?O#x[ +Mu<ݨD%暛:TAMyuSȨ.@I2 !ӞI',c> +Wl2z\ Nt,J{оzhJ^n{,F5BI9J͇1<ҭNp'ueL:w_s6endstream +endobj +1447 0 obj << +/Type /Page +/Contents 1448 0 R +/Resources 1446 0 R +/MediaBox [0 0 504 666] +/Parent 1413 0 R +>> endobj +1449 0 obj << +/D [1447 0 R /XYZ 54 639 null] +>> endobj +1450 0 obj << +/D [1447 0 R /XYZ 54 621 null] +>> endobj +1451 0 obj << +/D [1447 0 R /XYZ 54 599.082 null] +>> endobj +1452 0 obj << +/D [1447 0 R /XYZ 54 483.211 null] +>> endobj +98 0 obj << +/D [1447 0 R /XYZ 54 404.526 null] +>> endobj +1453 0 obj << +/D [1447 0 R /XYZ 54 383.023 null] +>> endobj +102 0 obj << +/D [1447 0 R /XYZ 54 383.023 null] +>> endobj +1454 0 obj << +/D [1447 0 R /XYZ 54 357.451 null] +>> endobj +106 0 obj << +/D [1447 0 R /XYZ 54 207.726 null] +>> endobj +1455 0 obj << +/D [1447 0 R /XYZ 54 184.285 null] +>> endobj +1446 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1458 0 obj << +/Length 1331 +/Filter /FlateDecode +>> +stream +xڽXKoFWHvͭB젰ҋ, KrEQ;3EP( Fm:ᘷHϸW(&Q/nez7̙yZҰܚ |/ 6n`coB` ̋>Ĭ̙=sw<{y1f%b8V7c~8Uy14d93 T1]<닁rɄh+h~5$8[(N=h3< &ӱdtNж&.*pQp"Xu@:xi&J_QoɬK=GN7Ziʿ7J)P"]ur.HJJ'z10z8_EdO%hm^T)uS 2@rpх\#Y]bSy 2u**X]u1 R5*$C\9t3t !)LvbbWXl44/" ߾ƈ1JҀwnx[l  +37$އ +  bLt܁9 tm*@HkC|t[KeD?WD;&&brC|{ވ LL\03Fʎu6w4MargYaĘkt <`"8van BNv#.lSNPo1rV9aΌڣڋwPX0nKje];%WG8us%9 +RL/RqAʝr0H=h*:kX !nIϲXc2OT6X2XX :`qb#k"gns\DjjEE`E>d95)0˜ml8dai΅n/3;$-0v̋H"}HIaHMk_j)=Y|V3Dj`n)LFe[EH,eQk!LwkUX;Rz!>xxendstream +endobj +1457 0 obj << +/Type /Page +/Contents 1458 0 R +/Resources 1456 0 R +/MediaBox [0 0 504 666] +/Parent 1413 0 R +>> endobj +1459 0 obj << +/D [1457 0 R /XYZ 54 639 null] +>> endobj +110 0 obj << +/D [1457 0 R /XYZ 54 489.66 null] +>> endobj +1460 0 obj << +/D [1457 0 R /XYZ 54 466.258 null] +>> endobj +114 0 obj << +/D [1457 0 R /XYZ 54 466.258 null] +>> endobj +1461 0 obj << +/D [1457 0 R /XYZ 54 442.855 null] +>> endobj +118 0 obj << +/D [1457 0 R /XYZ 54 412.11 null] +>> endobj +1462 0 obj << +/D [1457 0 R /XYZ 54 388.707 null] +>> endobj +122 0 obj << +/D [1457 0 R /XYZ 54 357.962 null] +>> endobj +1463 0 obj << +/D [1457 0 R /XYZ 54 334.559 null] +>> endobj +126 0 obj << +/D [1457 0 R /XYZ 54 289.368 null] +>> endobj +1464 0 obj << +/D [1457 0 R /XYZ 54 268.456 null] +>> endobj +130 0 obj << +/D [1457 0 R /XYZ 54 235.219 null] +>> endobj +1465 0 obj << +/D [1457 0 R /XYZ 54 211.568 null] +>> endobj +1456 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1468 0 obj << +/Length 1159 +/Filter /FlateDecode +>> +stream +xX]o6}bm]-m4l'e4itPx/us/ɰ?2ʦH^OFޖ4SDU"|$'eSg]Z'^,k $^5ކ97q!J_= o,oښ]aαcw&S ͤT\lnDPMڔ0Hʶף;LPq*$|{2F*#1B!CN`T0uFi~;3-)Dn]35o2(m%1%7]? )7aiJ7m7q(Œ|l~T1=w.[n{b>,` >MP@_@RmIxs˕a S0M`>@w9ogz;ǩe*+9#ˉ9ޅqo&:R%)KIJ)'X Ro=.ljq@Vt 4&hO aHrĸp\X.|MlXk0 F=k9z7=s U4A}Ju~@=;!PL/gjf`ckA7Ŗ*@Fl,X/W,>WPߡe7 O o~\m$VP AJ7=LpPsar\윀|?3 jNF5P/02%]zx^NL<v5ک +ni0r(G:{;߬?Z0ݣ]h@;,PM[ZC|Y-%]m_ў#無%UD&*1Vx. ;̐F/ғrE=\^rNp C]MG."endstream +endobj +1467 0 obj << +/Type /Page +/Contents 1468 0 R +/Resources 1466 0 R +/MediaBox [0 0 504 666] +/Parent 1476 0 R +>> endobj +1469 0 obj << +/D [1467 0 R /XYZ 54 639 null] +>> endobj +134 0 obj << +/D [1467 0 R /XYZ 54 621 null] +>> endobj +1470 0 obj << +/D [1467 0 R /XYZ 54 603.15 null] +>> endobj +138 0 obj << +/D [1467 0 R /XYZ 54 572.583 null] +>> endobj +1471 0 obj << +/D [1467 0 R /XYZ 54 548.909 null] +>> endobj +142 0 obj << +/D [1467 0 R /XYZ 54 448.412 null] +>> endobj +1472 0 obj << +/D [1467 0 R /XYZ 54 422.247 null] +>> endobj +146 0 obj << +/D [1467 0 R /XYZ 54 350.045 null] +>> endobj +1473 0 obj << +/D [1467 0 R /XYZ 54 325.817 null] +>> endobj +150 0 obj << +/D [1467 0 R /XYZ 54 283.295 null] +>> endobj +1474 0 obj << +/D [1467 0 R /XYZ 54 259.621 null] +>> endobj +154 0 obj << +/D [1467 0 R /XYZ 54 186.866 null] +>> endobj +1475 0 obj << +/D [1467 0 R /XYZ 54 163.192 null] +>> endobj +1466 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1479 0 obj << +/Length 1609 +/Filter /FlateDecode +>> +stream +xڥXs6~_GUBPt7i{&KlMMswW?l02N&3Юc?V)?64rLt3N +|/!&D&ZD?xl}8ZǸ$Jq'!Gл +C;?"2oa2ϳ/=L4N:G^^J*%*N~R$ 2yx8tz1%Lfeld6hCs-) y6%% GYxHL;pVg`'H +.u1wmS`xOz{[0 R;*K?L5B"R B0ڈ ( +A I,޲$f- cLQ{U9l?"⫾%pxSA?DzZloHعfIDqq9Dp˨ zaA}jC+Q1*L켄ەB*iY +Ï\`:J#Bq;:.=ˇ𿿽.R~ Mk :Tˈ$h-V?eW7'Ɵ0 8`Nb#~ 9#h309>9‡\L&L1u2$nW981 :eˑ]>3X0Tb*-#:T!)! b$+~C9OON0{TΛuZ63Wͥ\ M&r8m''mF|5ưllc9bFھ|NSW+\]B+lwM;<ޣOf!,NonV1nx?ݜzO³w‡CU᩷|slWH)%񕶲 ++\b֭!RQ vSI\U8p; "7*~Yĉŷŀtb % GDu= O> endobj +1480 0 obj << +/D [1478 0 R /XYZ 54 639 null] +>> endobj +158 0 obj << +/D [1478 0 R /XYZ 54 571.435 null] +>> endobj +1481 0 obj << +/D [1478 0 R /XYZ 54 545.764 null] +>> endobj +162 0 obj << +/D [1478 0 R /XYZ 54 336.351 null] +>> endobj +1482 0 obj << +/D [1478 0 R /XYZ 54 310.127 null] +>> endobj +166 0 obj << +/D [1478 0 R /XYZ 54 261.309 null] +>> endobj +1483 0 obj << +/D [1478 0 R /XYZ 54 235.638 null] +>> endobj +1477 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1486 0 obj << +/Length 1542 +/Filter /FlateDecode +>> +stream +xXo6~_EQ"5k"MKVcGQ-L} +Y?h)>#mؤ9LS~'Bv*ޯ$$}Fdayr!ͪ<3|w+Rendstream +endobj +1485 0 obj << +/Type /Page +/Contents 1486 0 R +/Resources 1484 0 R +/MediaBox [0 0 504 666] +/Parent 1476 0 R +>> endobj +1487 0 obj << +/D [1485 0 R /XYZ 54 639 null] +>> endobj +170 0 obj << +/D [1485 0 R /XYZ 54 621 null] +>> endobj +1488 0 obj << +/D [1485 0 R /XYZ 54 603.15 null] +>> endobj +174 0 obj << +/D [1485 0 R /XYZ 54 464.914 null] +>> endobj +1489 0 obj << +/D [1485 0 R /XYZ 54 437.53 null] +>> endobj +178 0 obj << +/D [1485 0 R /XYZ 54 214.953 null] +>> endobj +1493 0 obj << +/D [1485 0 R /XYZ 54 189.506 null] +>> endobj +1484 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R /F51 1006 0 R /F14 1032 0 R /F71 1492 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1496 0 obj << +/Length 1774 +/Filter /FlateDecode +>> +stream +xYKsHW(/h U`CA%Y.YVel9!5z&pتݢ +K5ݟP%X`1R^\̞,HN+KrR[^{{uWQ6u;P13A4cd;jѸ}xZ􃰵*.#J-zUk-7ӽJΊMN b8T>@'Lt9f +iuR(¡Z'3ewiLPÐ0S5ie9I̋DLơaz]1L`,Vp<Ŕ +! K{ +Bu,!g֎ʌJNY#32lEzٛ:r1 Dz`~X(#,i=6ñ,6W `|Ák]CEn9aolƪ_$LQb(voDZC4`@@u=w2}~Uf:6rnc[ B +0ly2q˦/7! +$I4'CP >>`s"Ytid۩6\/^i3M؞vβX# +LA^YcU ~<򔍳ZgUӤ*[,æ:'Sp2yaKa ӭi%[C +1.)?qO1.qd\͸D͸ǻP"]M#2ނ I4ȩ z#`b%1r&mJ9E,I`(t2 +LŸb"h"檼6d˴(cqUbK9ids1yE;_0z8snOu K8qgUEi94>]6~qN)Ib)Zֱ.+󩴙mӤCA|pe|Li=ɓz|x +1.Xx[|EHS`Iי$MSFaˊSݲ +RֵSRklr&mp#dQkLs&M.5o6ZTm V[6g|W '2a`LΛx qY-c꯳Ds vo#7"Cap 'DHhmq첵{-lAN^ƾsOj:F׾yr8=7~Vendstream +endobj +1495 0 obj << +/Type /Page +/Contents 1496 0 R +/Resources 1494 0 R +/MediaBox [0 0 504 666] +/Parent 1476 0 R +>> endobj +1497 0 obj << +/D [1495 0 R /XYZ 54 639 null] +>> endobj +182 0 obj << +/D [1495 0 R /XYZ 54 621 null] +>> endobj +1498 0 obj << +/D [1495 0 R /XYZ 54 603.15 null] +>> endobj +186 0 obj << +/D [1495 0 R /XYZ 54 529.917 null] +>> endobj +1499 0 obj << +/D [1495 0 R /XYZ 54 505.441 null] +>> endobj +190 0 obj << +/D [1495 0 R /XYZ 54 329.915 null] +>> endobj +1500 0 obj << +/D [1495 0 R /XYZ 54 304.332 null] +>> endobj +194 0 obj << +/D [1495 0 R /XYZ 54 189.769 null] +>> endobj +1501 0 obj << +/D [1495 0 R /XYZ 54 164.186 null] +>> endobj +1494 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1504 0 obj << +/Length 1441 +/Filter /FlateDecode +>> +stream +xڕXr6}W-Tq%ԙI}H2-N%Q%%'N(iu~;aBRJtE4:P6-*1R]sDFkltzhq hD-ciX%rwY +c*YjhF +©Ϡa6DCL͋ +=?%[7GqT3Nؑznt@}YFOsU rxt.8E񑅟p\ƓNKDŽfR}C/%)1j+bcdPA${qjA2\2&Odtd40k2LBg蒡 ƀCF('h Q] }X~$I|"IMeML +h nJ1l0F$rZg'> ! ȳ3Yt0A":t89tLtth@V<$,5+J#T +8@*L@3J?*`@ё>] !nU:'!<:AoBDp C? 2a2BzĞTcz8+؈Y$9@ pMn֭k_Wq|(kCiS 8%¥kw\\ZyVKrX7yaOV㪚4L+`$@ w, tdx['% lCszY5d$xn:C[тojN,!.[`OyѰG&)W:g.MNQ@y\H7\dMҽf6H; :!9ͰJK[6r<քh::CYр? gח?.TҘB=fjۛ6,U2ϢڎֵI9ٔcnϕ&\Mx AظEaS!5I℅֥ٯ}L#eXb5 +8x0iNjAN {" +sJU)Qgj5ySq񈾰ڌ مp :CW' ª b ăb?U'Z($RX2޾=z)Tie,`9 g-$ww <{xgOfQ0ߡJ2Ka ;͕pիVA-}Je;ljutF\urG\dd;8x(rTfW( rǥ? gKGendstream +endobj +1503 0 obj << +/Type /Page +/Contents 1504 0 R +/Resources 1502 0 R +/MediaBox [0 0 504 666] +/Parent 1476 0 R +>> endobj +1505 0 obj << +/D [1503 0 R /XYZ 54 639 null] +>> endobj +198 0 obj << +/D [1503 0 R /XYZ 54 399.981 null] +>> endobj +1506 0 obj << +/D [1503 0 R /XYZ 54 376.092 null] +>> endobj +202 0 obj << +/D [1503 0 R /XYZ 54 97.982 null] +>> endobj +1507 0 obj << +/D [1503 0 R /XYZ 54 72.155 null] +>> endobj +1502 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1510 0 obj << +/Length 1544 +/Filter /FlateDecode +>> +stream +xڵY]o6}У\)p@,A@,wf~_%Qd(SW=IOPf,g+X+0wx*֛O%L3/4cݶT|Vk~0lti9N9YL E\gOPg֬kLz6Ѕchƣ M2TH{_VVK5W%RRP-=+oƺIL +Hr擋1c+}<==KZ2 #ˍRV @< zL"PV%H<5byvVvmzrnq m|Z9r:X!xx;1TlWlU5>7kݫM&0;zBZO$k>MRHR+DZ\/=Z$h!Yt5}zcԎCs>=8#3,RrS5Xaznjt6hBxG,WG.cP72g 2fc[^}΄z@`*X-y+FUt2}X8T7y+,PaBzA(y;Y/5$,XZVG)a m8QL55gVsM/Q,j1mw3f vjC 'Ć3׽\d iqۡFpJ h`Ɗģc(%ˎg K!F?Ώ}`'H]])NC99mǃR:yJMoYLR'6x#h1D f +kv埸KPK8 "E b> endobj +1511 0 obj << +/D [1509 0 R /XYZ 54 639 null] +>> endobj +206 0 obj << +/D [1509 0 R /XYZ 54 578.798 null] +>> endobj +1512 0 obj << +/D [1509 0 R /XYZ 54 555.463 null] +>> endobj +210 0 obj << +/D [1509 0 R /XYZ 54 274.855 null] +>> endobj +1513 0 obj << +/D [1509 0 R /XYZ 54 251.52 null] +>> endobj +1508 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1516 0 obj << +/Length 1304 +/Filter /FlateDecode +>> +stream +xڝ]s83%^&ҙMw[7m/)`=e `czrHD8-n'hy3!:2TO^e8*Qi4eEW߿UU2%q|}}T.RS^Чȼ'S黄 y^5Ohz%`$EF&W>L*&nI8&bO>} +\`D"zvZr{;0C3"G2+ B + E)n}܄rUs'OM_Sˑg%-80ԓKоYAL<#:Ӕ"R5u+z[2Z1E\+3 y_-|aRFYq[A&|Em`39j##NLJprH,[uW Y=5[GQ ՆݐSV(W'Ԅǝ:}5SW+T,,360njyع:+ĬϹxX$7I땚ifm YT`K-㥢WP Y*=5G1De){s+?M Ǫx\bKOQ qى<ވ^ #4ɑqr||LX쯛˳NIP\3S>;] ^,~C=VpFEw&xbQOQ^5ʳ8.U'榫G(j6ʰFtF/5Z@R9ɣY+y*[ W +P2R^N +ujPAԆxpXghFqGj+P,RzZk0M3T &^6Kzj>^bJR&gm )30@'Є%^zZN:ÇQF-lYK:V;dH89^:aNgyHteਲ਼a\*yRowboz:uzhgؠ9Kh(QAWAwTe[-8WS6^" ^ݢ=JֶV*( ^ ]mendstream +endobj +1515 0 obj << +/Type /Page +/Contents 1516 0 R +/Resources 1514 0 R +/MediaBox [0 0 504 666] +/Parent 1519 0 R +>> endobj +1517 0 obj << +/D [1515 0 R /XYZ 54 639 null] +>> endobj +214 0 obj << +/D [1515 0 R /XYZ 54 621 null] +>> endobj +1518 0 obj << +/D [1515 0 R /XYZ 54 603.15 null] +>> endobj +1514 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F51 1006 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1522 0 obj << +/Length 1335 +/Filter /FlateDecode +>> +stream +xڭo6Wm%|0dRt)ָ{IYN",<ޒG(ԮHGR$GGh_]cYiel?o~$JJC(pŷӒĹ* V Z/0D,h|S;zP\}}Ys{*Hp@i7 +//YDT*DGnS21"JES\?/n\h3G1FJ 8~AU0n,Sk|Y3GA vZe%[)]NXWO34] ?cl~L($$m֘vh) ePѸ Du4ϕ rHK*XMx7zo""u;E\\>R֬O~IV;8JD2 $mF}=:NA257Ǻ"oޛ1b[f̝:X +):W!Wc'&}ܱΡ̝xiSS`]`>`1#Ki̓KXH.a}-&_DR}]yw+T 8=&6wi+?!EUUcIRMIĚgTT}arn>"9[T4aHRh|{}U1 1vG iP :3N.]I:l;m""098j-#qP5օ~m9mψJH#k(vaԗ0r%}̏K}C8 41APk|hɣ] +#phpZ/c'8O<:mOE:{?BTfA,5R`y!,Y=ڵSlC@BNpj}yrcҲþgc9[:DzwDZ D x5f-su#UN8KG6|`NI$c"A(g  H)U5'@ؠ@%Jp|bsj@=9\u$}\J[04̥ua1TR(=-G}c9Ć㫿Y>>8+oH1 87 Ri4>c]l7p'Sb[P<9Cީ^ w _|fBpendstream +endobj +1521 0 obj << +/Type /Page +/Contents 1522 0 R +/Resources 1520 0 R +/MediaBox [0 0 504 666] +/Parent 1519 0 R +>> endobj +1523 0 obj << +/D [1521 0 R /XYZ 54 639 null] +>> endobj +1520 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1526 0 obj << +/Length 1901 +/Filter /FlateDecode +>> +stream +xڭZKs6WVS"xȡ&NZg&c89msbI$'N} BvɌEo%Ccr1kcDLS{5x+X#-xze Uay[J +dRQPfDN &9Etga'3?Bwp-NK7uA!3w#Vopz1-|ƙGc2a ADbgM<>:`Rqb/"M5( +Yb9a4_tFPZ*0H nS7P{ȄDY/5Hע + J4앦L1~0 +.n?c"Q\X98Pf2D< +?!g<1 I(lI@ ,k,`7,OX᭜ATK ]ߖ_[wIs;xb]jyז0M]oqU'H[PSܢ)eޕ5Z\lSN-l&Tvi]mAٝjxpF=sVK3#k +P@#n\TLb:JGdҬX=I+>Q38Z@1n)ͫٶܸ|Ԉu!T9*t؋<ӵc?xbF>ޗ5W>!\+=PeCE{W.x/?{5+r [e{{﷾Sy*wx9XAaI7W,;w AjxMT偮n(ĶHHfnl2y7[%`Z 4Aiosp|s$Dʚ ¤9*4ٱptOוE@kYnMfpW<侮mJa |W]ߥNˡQUtZhɔѮ- ~ EzvH#vEhis!4+BV>kne$729ە<%꓉fK{ܷ_/욆PL-R ?$݊rgBXXjyz:1Ջ3.ĚtiҼtZ9kӠ3]ۥ1x^ui.zLvtuF维`vXu廴yإݚmX00ܶaNl-~D|2QӖO4a +VpvLFH!MIԻ]p{jBZiu5g0..ƆJh8yy]y,BbzAITAڃNaĕAׯ1U +A`y]{`it!ݷT9a +Wf5֞@\]5GYo'8jrrEdV&"~zo7Uw][n {T~Ӽ 2.jNz> endobj +1527 0 obj << +/D [1525 0 R /XYZ 54 639 null] +>> endobj +218 0 obj << +/D [1525 0 R /XYZ 54 578.424 null] +>> endobj +1528 0 obj << +/D [1525 0 R /XYZ 54 554.97 null] +>> endobj +222 0 obj << +/D [1525 0 R /XYZ 54 377.757 null] +>> endobj +1529 0 obj << +/D [1525 0 R /XYZ 54 353.75 null] +>> endobj +226 0 obj << +/D [1525 0 R /XYZ 54 282.461 null] +>> endobj +1530 0 obj << +/D [1525 0 R /XYZ 54 261.193 null] +>> endobj +1524 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1533 0 obj << +/Length 2324 +/Filter /FlateDecode +>> +stream +xڭ]s۶+t)T( ;qZXjNB[Sr%}wA"ʩ$}<x?y_}-M%;(}Fմ3Y> +r[|L!,j0<>35>" Kdh1ovÑT`PpimsT7@b*K]NٶL'W礿vK4y\'_z՛ޗ>\4]& 39^hen t,ע޸-4T)YbD>N42kmȻ"d5MW7C)7x"Qi b275qCeQ}Ѫf"a~B/5t~,v +?I#c MCN^3cTM~RJ7"spJwaRn8 vbMx8}|{jy+fIf_ ]rEeFBʦu$|u ),o"7iĪ D”s)͋#m!視&-uz\< 6+^'6ӏ#؈lv6o; +eix*Vx|5 O|x=HOJxU%|3& ]F}}u-z`W?Yϖz<.$iWW>4QwPU˺nJ3э.azSNlhf O$n]FY庰hmQX^0ļlZ煯EyA "D͋TPU΋Hśw URGHjLI#Z̛̀zR><-opc ~&er)"6B5Vl(=XV[V,k|L.q\l '4"8KrxTAnyQbJʦ!_M3T8!BO`(D1ԁ!BUP$NDTXzzt!xx.H~M#p-E bzy!EFGR.ahN]ٴi+M pG(;PUM*du\O߷Bny_<=$y+d$> ̜M-g[$tb?U~&l_OIwqd$M |?=aDЁrz}ue]WIM7ʼ/ZldlZ$$&7ͤ~ +sl;n7L1~EIp6}$IzBR`>r|y3u'+RL +u0v<1-0_%Lc?ɉCǧ;:5OwtL|O*<͡z~ +c V!o iVũdip\endstream +endobj +1532 0 obj << +/Type /Page +/Contents 1533 0 R +/Resources 1531 0 R +/MediaBox [0 0 504 666] +/Parent 1519 0 R +>> endobj +1534 0 obj << +/D [1532 0 R /XYZ 54 639 null] +>> endobj +230 0 obj << +/D [1532 0 R /XYZ 54 488.214 null] +>> endobj +1535 0 obj << +/D [1532 0 R /XYZ 54 466.829 null] +>> endobj +1531 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1538 0 obj << +/Length 2062 +/Filter /FlateDecode +>> +stream +xڭZr8}WeWxcg˳dm%L8kǒxq#Al{b&nu PlL/+9΅߬FtZ5b24؎f):6b,׾[hmmsN_lF' +&9eF:ˈa;rf1;}c'0ؼ0#c 5u9vGWˉeu[\2©@Y}ZpTr*`ԩ@A1r}yWӍr?X?2z;C<0br-o=ʑ\ħK9ь*'j`xrRLr@Ia-p9~t!/͢pN4(O+w^MM# qTXaKu[+cekXTᜯ}:98<'r>q~TTXogNjG=Y .nN (/y'rP^RH(/kʟ}tǚ7 +$ɠS|I`)_x=< &((:<rEJL>  Gυh %gs<ѧ5%<*aq57rvJW8V^hA ħь2?jcxSL@Oa]ܛfl!Nq׼ zuV10Sc"Ys2//&&~mQ9J!*m=OnU?o ͙~\#9N?o&S|S'Qňz,h0c^(&PUEPUM`hs`ܜPasJ\|-l +:ѧ3Un)铮tjЙ=|A55*osڑ*lf©:=-wk.~i55"kfְ>+mv+[.>`PHB" JpvFI Bs:-d0[N/f2(\+y(̧:6]ct_o7v)[i.\ɞ$iΉѦ>8ao"^{fal&f磽r<=a:mfdInjk{p,bn =<ʥ,D}:ȗ$S T+gI乄]g`.8.ħs @rUCqk,|9˵®XGr}oo;CFǮ77P╰PeS5J b\!P EV (9 (c&BStr[_n"²yj&Eӽ&جV`]q#PtA0;\銷X9lѧN7Ӕo Ii$qJX(0Qi'9v.詟GύyhdKNs۸fO非 Sog,ڥkNSf WDŽ&vZiT$ՏeAV"I0MhaBa$2PnbN7@4$ am\V40 Kű-Xڃ{S4S8Ԡ5X존Er,znG~un;/wJaNne[ /-bK:~;5ShQendstream +endobj +1537 0 obj << +/Type /Page +/Contents 1538 0 R +/Resources 1536 0 R +/MediaBox [0 0 504 666] +/Parent 1519 0 R +>> endobj +1539 0 obj << +/D [1537 0 R /XYZ 54 639 null] +>> endobj +1536 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1542 0 obj << +/Length 2544 +/Filter /FlateDecode +>> +stream +xڍYYF~_!ya'۱$dıSBRsAfuuUuuZEZv|=\D@ׅ LmdOZaniaspS7*kT8j_iEIKtFɸB'Jt;~\w덉m"eDŽu]Cc<(Y}rPoP1yU.*B΋ ,L"hl~BgGG䉌닛2neX-5U%+DI &*:Hu vPTux4*h>KL2xR@IvOBoʂމHvD6#^ +jc,3暑r_ܸ S[S5 wL8 mi;% l` 0x-e7'"iP2c5E4p<ދkɕ TW{uy6mTh22_t'tz1NCGv <wxNEg?*߻Jp)0%~`O`jww&<&ЩvS`;'DrY' ?p5&&YI1T%B AzΓ`[4<Ktmw`.9]lkTnR<ܺ뜻P0\؁B^9_*n̵mSzXo+4h=+~JYe} y՟G؇ʻuJ8\M,1~n$xcoJW '>H$aip)ЫG^;5"h&w(L ,zoqZuIWnS5i:(n3O87%Vd*ݩ]?Y&&ӈZTԜ5B)QBq{9 ;{ POi}_@'Ž4ÚTy|Ztϼ}vY(f׼-;| 귢3}"+:Km`lkި[9V\q3kzeB ]H o"%WٔsZz0s%K[i5\ ݚy'ta T ݁p5_ViyjΞ}lgnV^nޟ&M]Qihb 0} 7ݟCI}RS.@1^c ildwv>N*̬ݨ0p[5px~=RNnB OB蚆WG2BtwC_Ewb۝N`b~vTh$Z;r`F~>4fL߻Q4iߍi|4q8$L?ky HNU_?m-> endobj +1543 0 obj << +/D [1541 0 R /XYZ 54 639 null] +>> endobj +234 0 obj << +/D [1541 0 R /XYZ 54 621 null] +>> endobj +1544 0 obj << +/D [1541 0 R /XYZ 54 600.798 null] +>> endobj +238 0 obj << +/D [1541 0 R /XYZ 54 566.496 null] +>> endobj +1545 0 obj << +/D [1541 0 R /XYZ 54 541.394 null] +>> endobj +242 0 obj << +/D [1541 0 R /XYZ 54 89.282 null] +>> endobj +1546 0 obj << +/D [1541 0 R /XYZ 54 64.567 null] +>> endobj +1540 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1549 0 obj << +/Length 2285 +/Filter /FlateDecode +>> +stream +xZ[~0Sh$x"!’5xڲWĖ7=tE6WUhguZ˦gS%ZdvBkqJ K[{6|RiF2-&9Qi2/??i +TNI"8DWY,~bmg,qPVv0NdIFM9M^[QKDS¾'.~P"tzcJXMi7L'iϰ" c!{`},#TX,~fuGҀuŎ" 22Q#ǒʑ"޺z,2٠2T0û$L 뷟i@n 2GdD6`*9o`JGv꽱xX|2iT-?"G@y2ϔ%A",P(eO8;y®[LoN2, 11"RX"5{{\~Ӫs»Ckҍ!5hwg խ '4lSX]kؿlNDcSQ"1%TrΞOq$);`0Ͳ16g4'!WyW8pm0ލ<ײªmeWx }F̂t{B|*L{Ј$K`+6gŝN +y=9JߦQ6ҤsDp *zO0-&0sgYa{B`Z([)07$]V8*.MY- ku-f`(T(dtKwhB1AՈ-{4aC-GEq$Q] "a=q\<|YD|"Sm>>P2O(QI6_&_~ +A 8 +,8v-I:z\=N w'9e "yW]b+W:ߺ_mDN!#GGbԈXѤ܄;4na[SDl\oG |]t|p>ZJuGXy?u>|O /v]ꚭη7qHq_Є0˝kw7ojHr\O3s!-l,0Iq4Ari`\\/zpiA:I? #@{'qd.woc=׿lU=%:F)dGA?Aw˧D2g5%jP]L'$K>'[=uE1r9JTC)E](;snChIi/Ɠ~^IAPd"Hʭ0Ǝ~~as+1*5˜H՘PT.:1u$z0ZNe!:Fea*\xefhw275jЫ?.jsendstream +endobj +1548 0 obj << +/Type /Page +/Contents 1549 0 R +/Resources 1547 0 R +/MediaBox [0 0 504 666] +/Parent 1552 0 R +>> endobj +1550 0 obj << +/D [1548 0 R /XYZ 54 639 null] +>> endobj +246 0 obj << +/D [1548 0 R /XYZ 54 357.127 null] +>> endobj +1551 0 obj << +/D [1548 0 R /XYZ 54 332.346 null] +>> endobj +1547 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F51 1006 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1555 0 obj << +/Length 1751 +/Filter /FlateDecode +>> +stream +xڵX[o6~02y9DQOCC{ڊ#,SIIËEYZ`[yxǏF)6MT|Lt #M-n&l<ܙUT6.gs,K*|mgn~7+4ɕ%<'4"PU'(M.mb Be@7KVa|2,ʟ<%Y{[@kiN7 [,ip:K ~~,+}sUBek]گ'30vdc<*uTw 'f)_VNSSY`?OaU/i%He$~n&xc1Rܴua1Oy +GR s}2{2zf@"K_gÀL],TRo-)w;eZ ˌb: )*5|̽#7c9 c\S)GGʆxFp쥏*\y QBbP +%2p 4xFI- O^]O,S(/3d9KՃՀs>a_LdiOg䧬~3$Vr1 H|DZ*r;LKKB|ea {Xt胆{vģQPIRG1Eh2DطMP>{ +tԼG 1jgnSl| ]wfb)m:J~s$ڲ8t+/gyf<21t.}R!x#*y`iKJ]Vrs6fG}; @&ʝ>EE +rm\ |(GaxƲ -]krH6NQ(ܰx dtcX@69l xoc +*$D/32Bp*zV|Q>2Ⴘe)^XDb$p],k=o)ɡEܥP{3x}igAX%ٷs.t!ͰC +)dFab,Spe(z>UF }6ↈ/Ȁ]={)s}i_~ďO\B'=7}8"WqcNd`,$2²=97 +OR+iV6P3'.CC[.Eu"1,gWvܥ2@/gP{;{kۥNNve8|[^dFb` +> endobj +1556 0 obj << +/D [1554 0 R /XYZ 54 639 null] +>> endobj +250 0 obj << +/D [1554 0 R /XYZ 54 621 null] +>> endobj +1557 0 obj << +/D [1554 0 R /XYZ 54 605.89 null] +>> endobj +254 0 obj << +/D [1554 0 R /XYZ 54 500.824 null] +>> endobj +1558 0 obj << +/D [1554 0 R /XYZ 54 475.437 null] +>> endobj +258 0 obj << +/D [1554 0 R /XYZ 54 394.281 null] +>> endobj +1559 0 obj << +/D [1554 0 R /XYZ 54 366.763 null] +>> endobj +1553 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1562 0 obj << +/Length 1687 +/Filter /FlateDecode +>> +stream +xYK6WV8дI ڍ[^-M;ÇD2w(irqZ:E2Oy1_gf~Q^{x-yAW[Xˆȳj1\._ϫ/^3:A*E)$ CwŒ$^,it\Шo~é>E8BguU$9jZP!r>~8YLxqLhQ̏3^z|y1EwȠƤaRs'^8nn)GNR: ~iZZ8)H* nXi9$\ddq2͏YZ2S6cQ7V49C;$ FӞ)%GԹEy*5@ fyNi=6{0kˣF$uv6eW7רM4 S;LRh+Vgk:WjТ35x1IB$ 12lTHhvw#IUŒeQ\~--މ>/( n}xM4G`6jz 3usT1qe!$%XUGhA'hkmMվg;sIˌG N%ADPW^ʩ]Ĉ|(?h)*B~ʍ4*9<=a?P$)%,A_d|,бtQ !ꍌ0<<,dTWU&8"5,I& =z$-ˆ  01GPfbdB/&8SL-PP+@N0áC+ +cI+?˖Ͳ傅 d& =QN 2JjGh](02[(\,mel:?"mRV6OKL^!d4O[bHı2m}%2."L 3I^gt5#9lod<NŠ uA`(kr͎6XQӸV Y$Az'䷠ƃ!'%"vHK^JIWݽ΃bC[  A8\;Z2SDehn+Y:>וgj vZ@j>eJThBOS9@9SG:DCPcĐG>:V2;}Ҵhd;zk=ǥ"'ŷzkemv5Bǽ{W/x5FfDFhx[^CU5߶9i(myšPw3uqEKfқ*@]zW1 2jcd<4N*2/j}ÌE)} L^aZ+AdO:2硺׉l𘆀1˔3@~& (6Jq;Gd13V $"ܚ]Ϻ4\SfmmNvI >1=*Bn!烽^endstream +endobj +1561 0 obj << +/Type /Page +/Contents 1562 0 R +/Resources 1560 0 R +/MediaBox [0 0 504 666] +/Parent 1552 0 R +>> endobj +1563 0 obj << +/D [1561 0 R /XYZ 54 639 null] +>> endobj +262 0 obj << +/D [1561 0 R /XYZ 54 621 null] +>> endobj +1564 0 obj << +/D [1561 0 R /XYZ 54 605.89 null] +>> endobj +266 0 obj << +/D [1561 0 R /XYZ 54 531.142 null] +>> endobj +1565 0 obj << +/D [1561 0 R /XYZ 54 509.701 null] +>> endobj +270 0 obj << +/D [1561 0 R /XYZ 54 175.231 null] +>> endobj +1566 0 obj << +/D [1561 0 R /XYZ 54 151.659 null] +>> endobj +1560 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1569 0 obj << +/Length 2361 +/Filter /FlateDecode +>> +stream +xڭY[o6~d_4Eâ^d뵧>3-sHN=RiqÏ~h5Ol6M9[/fP~%ԯ]..VBlqO2-__zdUhv8Q9nѥθtN~7,<;M[-qY\Z+&nvTI[9+x c?C śEcTx.g+R>X +U)s?~WσM9.LJQ:XQfzJi|@:;~}Ã܀sw_ݝ\Z΢3;Ry!ˏUݜ00hhz:F-护$#*E>pkـ7inۻ>ON67L::%ab +`f-@J=2BcLw5x[2H-QV@|K +B-lVR&'N[%xJhZE5 ҈҅AMk7]$<)XoVBehFM/ῼZF^==Qԁ_:!3ghTO 44gP8B6#=Gl0Ea*p{v .Оerthd,Uβ$CH߲뗡(m! D),f(dh>EN[Ss4fN酤w9g؋t+M,\k{1H2j?iMk@34Xjɞ[rƐJmGK.?$pPYfI.D!ffZTQQQm`j #cE9 9.PxIO~sptdG?Wh3AdUD3&SHYczU!z5dާV1]:p$Ynxb^ GT_`r汶q)?~X^@'Wo?@tDȝRqaP?>6tsfȊihF/<=rf_i'$3# NHD!_Z;#fa97N*VOIg]5>:(nVg9m1,WAyvJ̋[\6a3E Q.cvVPg\g |*J'i ɣB@Ǚ FaŇ>U +o`mK&Uٽ)Yvu#){-@yuU+=y4T +mسބG.SE6ܫ-8w _aMߏ](B&/,]Hc嵴3&@C OH-} Djk=xZ՜ozLVYnϵ~KM6D~ȯ k*|!rKz 0)D5@r +-.BKPִF 2&0QA,&~ + >8~3#+Bs!ef3Eٿo Y`A y--=-_ !]va9C2'׍{ {9O4nԒ_13b/=endstream +endobj +1568 0 obj << +/Type /Page +/Contents 1569 0 R +/Resources 1567 0 R +/MediaBox [0 0 504 666] +/Parent 1552 0 R +>> endobj +1570 0 obj << +/D [1568 0 R /XYZ 54 639 null] +>> endobj +274 0 obj << +/D [1568 0 R /XYZ 54 566.716 null] +>> endobj +1571 0 obj << +/D [1568 0 R /XYZ 54 546.081 null] +>> endobj +278 0 obj << +/D [1568 0 R /XYZ 54 382.576 null] +>> endobj +1572 0 obj << +/D [1568 0 R /XYZ 54 361.387 null] +>> endobj +282 0 obj << +/D [1568 0 R /XYZ 54 271.643 null] +>> endobj +1573 0 obj << +/D [1568 0 R /XYZ 54 245.528 null] +>> endobj +1567 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F14 1032 0 R /F51 1006 0 R /F72 1576 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1579 0 obj << +/Length 1787 +/Filter /FlateDecode +>> +stream +xYmo6_a&5QM.E AĈ-5$~w|dKւ5[;yx$62G"W#:#$SMlꝤđϮ̰x~ +-) ϳq6֠.4QQT=MBa 3.+vU2`ǍQ +:+FG&eg:Nև%"{hSx8rrqcRkl(Bޯb`/fDK=/FJ^Xo4"Bt幕-0FBQWD6dU/vIe!%5A:̺5Y(r{pȍZhe6jpG]S\Xa[>)URw%otz#?Ks =Q lݎdӨw[<9<&2F7V8o-)!NcV%w@f`XW`[:}%G@i7Z;|n\+#cncOΠX3rFL {Z8,{=`vIf9CB8T1J=A35mٲYrA0!7’mV"Dyzu~`=6q8 #L v"O=xIluVն3Q9}FXO̰/"{52*ˍU[^ƹCj:(tv%:/Qz`5ӤN^~g<_Bk.k#EߕִeBI$uS@4+IgLgfp;/2x3#֯M$ M$ {JT=!935mڭ6:$Zl=-0M4XP:NL(MF1Үʼv#Op5:-߼Ֆ:i}чPP-'\풆NnW,G^f$n;7j/{6zhLQz t(> :1W~86[y}3s}|nˊlrtM]SnW=0G `k EW3"sDlգw xnŲ(67ġ[lK2m6&5^9_w>4S80&B-.JǶtz;t4.f&iO@ʩtjsmyFHsr[*LJIX%gSqU4N"b=Ĩ_n>ZthQ\f2{^\*>,%9Kɒ{?bm'Yܮ:LJUo‡Ѿ=֧CRWu +һ?mڂL endstream +endobj +1578 0 obj << +/Type /Page +/Contents 1579 0 R +/Resources 1577 0 R +/MediaBox [0 0 504 666] +/Parent 1552 0 R +>> endobj +1580 0 obj << +/D [1578 0 R /XYZ 54 639 null] +>> endobj +286 0 obj << +/D [1578 0 R /XYZ 54 350.501 null] +>> endobj +1581 0 obj << +/D [1578 0 R /XYZ 54 326.507 null] +>> endobj +1577 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F72 1576 0 R /F8 1009 0 R /F14 1032 0 R /F51 1006 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1584 0 obj << +/Length 1263 +/Filter /FlateDecode +>> +stream +xڥWKs6W3D ^:yk;K-ѱrD*}wP$E +]췻ؗxGJF0aƢO@c='Vy泟OySG;{JTiZ'7ephbNV&Hj(34AQDz7pu%)_PnakMEU d5Hߋr鄮VqR:x"0T jBm(4Gdvƨ0:zwF1L̿g7w.tD%ch|4ٴ ĉa43`iFoo^ZsH. 6/ǎr))3Z3gl{@*x'3gOfUj ٞ1eΩQ +EYD4wN!&*g/ 2rW1|l+]<,JREeέ΋M>'R2/4y*B%@}QAy Ջ-P-~xFQ=Ƕ8GKO9m־%|V[85kɗ]Y7'D2Tl4OpnќFb`OfUũ& 4iׅ4O=)[6:X Z+3M}{\ǠO۔u*зjQb۬PPsw!b#)*;S=KC甴q_ԧIeTJNf<q._=s*zJ1+(ihYL zEQpRcʌ0K[R[.vu ]STR9Lކڢ9QEJC@^hP/ T²mjk` 씶 ꉖju76fΦL)p<{2Smh(zJ~> endobj +1585 0 obj << +/D [1583 0 R /XYZ 54 639 null] +>> endobj +290 0 obj << +/D [1583 0 R /XYZ 54 541.492 null] +>> endobj +1586 0 obj << +/D [1583 0 R /XYZ 54 513.697 null] +>> endobj +294 0 obj << +/D [1583 0 R /XYZ 54 476.818 null] +>> endobj +1587 0 obj << +/D [1583 0 R /XYZ 54 451.154 null] +>> endobj +298 0 obj << +/D [1583 0 R /XYZ 54 307.227 null] +>> endobj +1588 0 obj << +/D [1583 0 R /XYZ 54 279.625 null] +>> endobj +302 0 obj << +/D [1583 0 R /XYZ 54 200.256 null] +>> endobj +1589 0 obj << +/D [1583 0 R /XYZ 54 172.46 null] +>> endobj +306 0 obj << +/D [1583 0 R /XYZ 54 135.582 null] +>> endobj +1590 0 obj << +/D [1583 0 R /XYZ 54 109.917 null] +>> endobj +1582 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1593 0 obj << +/Length 1007 +/Filter /FlateDecode +>> +stream +xڭWߏ6~@y)TOyK{.mDmNw6,,DJffoy| ++BΣ`c+r6ދKE}Mt,͝&9Qio6y3?CxDpX #7a$ .aĂ]Ȃ Um —dI{F]HH͐AJb0G7%BS´wбo[a kz ;0bQ`PaD7!RgੴíD-ېP}(2 F1Kӻ1?CpU4q$fC ,yC y +XBePXg3o_GRAeu197s,R|˅`( JL*nolHb;*j]i[Ah}_{owvra(Vd6)< JhbϰRu})L"UÕp! +3i%^Ṋ^.wvqۧ;2!18ܶduᐎ{ݻA ̐m\͘5ewhcOSFԧSTy֕9?!K87[j'_o_I>kpec݄c@Wx`Qm[DRp(o?;5kWcdvX`v20T$' \mQR?kX}ϱ}G-WmR+] ZMr+{z9dB\Q"4+X3%FxK$^s!'pk%)>:&(eلgcJb3;o@uGŔE$52U.h1T\oJ}-s mEpj_+\+ׯS[}7IH`Cxw ^;endstream +endobj +1592 0 obj << +/Type /Page +/Contents 1593 0 R +/Resources 1591 0 R +/MediaBox [0 0 504 666] +/Parent 1602 0 R +>> endobj +1594 0 obj << +/D [1592 0 R /XYZ 54 639 null] +>> endobj +310 0 obj << +/D [1592 0 R /XYZ 54 621 null] +>> endobj +1595 0 obj << +/D [1592 0 R /XYZ 54 603.759 null] +>> endobj +314 0 obj << +/D [1592 0 R /XYZ 54 407.823 null] +>> endobj +1596 0 obj << +/D [1592 0 R /XYZ 54 384.555 null] +>> endobj +318 0 obj << +/D [1592 0 R /XYZ 54 384.555 null] +>> endobj +1597 0 obj << +/D [1592 0 R /XYZ 54 359.157 null] +>> endobj +322 0 obj << +/D [1592 0 R /XYZ 54 330.967 null] +>> endobj +1598 0 obj << +/D [1592 0 R /XYZ 54 305.569 null] +>> endobj +326 0 obj << +/D [1592 0 R /XYZ 54 175.198 null] +>> endobj +1599 0 obj << +/D [1592 0 R /XYZ 54 149.606 null] +>> endobj +330 0 obj << +/D [1592 0 R /XYZ 54 149.606 null] +>> endobj +1600 0 obj << +/D [1592 0 R /XYZ 54 126.532 null] +>> endobj +334 0 obj << +/D [1592 0 R /XYZ 54 98.343 null] +>> endobj +1601 0 obj << +/D [1592 0 R /XYZ 54 72.945 null] +>> endobj +1591 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1605 0 obj << +/Length 1425 +/Filter /FlateDecode +>> +stream +xڭXMs6Wpr";C Zp&HAFR$*M DAx2R,%HJr@asL4| gIEt2OHwtTg9Km9^a<.K|kB GKś;x*˅,|zcƙRfl'S4*,u봶&ƒZ:/9 ~kP 7ip@z@*)aZ'ˁХ^ F1a> JVxQR4p9so2̸?oƂ%9r.'X e)(p-D"AW .,n2jKQTp ̗i`iah^:N'H3_!{1 vdOgLCkOC+D,`(Kn{؈ .:8yլv7tk %櫽1ik +ҙy'+ƈ7M\pX7G1#}3"Uz֋b"pA#bR6 +ʠڤ3cwo@(t, l)t.T4!HK귛a?)Fan9[ zpkӦ|J1[]f{4~.PYp`ޯ. sP9'R|w ?G +%+|dB2D:k+|ֵ,LԉkT -F`6-#"Bwlsӂ餭]}zDDɌa}ܭf +u#;pw,\7֤CRnyZ3@yQA<( I] f[RA*`4 wB6/ϙ@:fFw^m޴]a xMsUċl4Wh{q?`!!B`q} * g +*/7 U,!'T~Rm/T}Pput:SBõ,3_*cXT +L>اAK4{}Fc\hvf]?;7˚7 OkO~gF?3no`8vAC5;ۙ抏 g 7G~OQ3āQ:e΂80N<*8Wv;ݚTC\DK\ xVQoOЬœ.T,'O ^{i䋤BEғfL.{A 37~} 4^ؒ-[^0]Zendstream +endobj +1604 0 obj << +/Type /Page +/Contents 1605 0 R +/Resources 1603 0 R +/MediaBox [0 0 504 666] +/Parent 1602 0 R +>> endobj +1606 0 obj << +/D [1604 0 R /XYZ 54 639 null] +>> endobj +338 0 obj << +/D [1604 0 R /XYZ 54 468.301 null] +>> endobj +1607 0 obj << +/D [1604 0 R /XYZ 54 444.465 null] +>> endobj +342 0 obj << +/D [1604 0 R /XYZ 54 444.465 null] +>> endobj +1608 0 obj << +/D [1604 0 R /XYZ 54 418.497 null] +>> endobj +346 0 obj << +/D [1604 0 R /XYZ 54 374.622 null] +>> endobj +1609 0 obj << +/D [1604 0 R /XYZ 54 350.592 null] +>> endobj +350 0 obj << +/D [1604 0 R /XYZ 54 289.964 null] +>> endobj +1610 0 obj << +/D [1604 0 R /XYZ 54 263.803 null] +>> endobj +354 0 obj << +/D [1604 0 R /XYZ 54 232.077 null] +>> endobj +1611 0 obj << +/D [1604 0 R /XYZ 54 208.046 null] +>> endobj +1603 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1614 0 obj << +/Length 1524 +/Filter /FlateDecode +>> +stream +xڵYKs6WVS"x$K'6ImYMH(2m}/$!HLa-],I0IdLp:!V(gg/9N$Kf".dIYIWg/)I(JEw9fNo$f/0GNT |Jᩩj୞@&/[,aN'1)#"e0Yzg2LG1B=eXG"L$P')9;F+JSFa )n \$U!P +DYsqRo@,ci c%|@HFS*S40裂MF  EB/.Y+2FP *b^"Qx`^Wcb\tWCN,Ŝ B+w.޽ +>ЉB9+yYSQDYϩ/N,QIitNg!9*qn$D`$e]WMޤPFXr{V?c$DJ;<:e e}whP+ [W:SJWC! >VRt":PYɺrecљ{|͈fKړV Ȉ^'uը[cA[-g7.̹ioζ1,=\?CE1ru,~6cMeMr8r.m `Shd fme1)ح!NDE#s +}r 2M4˝R|c^`T $v;{j>_j;*ʘ6LD=6t Q_RN97CRz.cME:ݾS]^[BlNgk"8hCzǹcjKD_tB C<bٽ(ʼnO'D?bN|<1,wg$5 og414p wvùm3 /.T*^ϒN8+>#n {q[1PXF5#Ǭo_GPdC#+W#y1zzCcMs*6^ksO6>*ŋ`nppwHL:R5P*5Y7>FB575bFEOOrءIE|.kendstream +endobj +1613 0 obj << +/Type /Page +/Contents 1614 0 R +/Resources 1612 0 R +/MediaBox [0 0 504 666] +/Parent 1602 0 R +>> endobj +1615 0 obj << +/D [1613 0 R /XYZ 54 639 null] +>> endobj +358 0 obj << +/D [1613 0 R /XYZ 54 576.765 null] +>> endobj +1616 0 obj << +/D [1613 0 R /XYZ 54 553.394 null] +>> endobj +362 0 obj << +/D [1613 0 R /XYZ 54 340.508 null] +>> endobj +1617 0 obj << +/D [1613 0 R /XYZ 54 314.452 null] +>> endobj +366 0 obj << +/D [1613 0 R /XYZ 54 283.058 null] +>> endobj +1618 0 obj << +/D [1613 0 R /XYZ 54 259.133 null] +>> endobj +1612 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1621 0 obj << +/Length 1805 +/Filter /FlateDecode +>> +stream +xYms6 _Y$ҦN{~pm%͑ZY^?-ʒ޵.w6%!H8bO = U2\ ޼L@4!ًK)KҒ1<ޏfx"Fj,F|q̈Y8E&' +V icC9`: A5NFur`pj{ +ߪѥ̮Z>L=)36YzVB./pȽpxxcD * iְU p(8K.*"0d\ԛ Va26~!ai +Ux:4pljѝb G@cbmBK:j8uur)IikkBh&bC>f9L2u\] EƑ2͓Lإ<:y"1t侭$`A {mJ˖ ,PM{Xƣe?3)Ch??qVwR1)wq*3LRz|$lf 'Fsġ`7yNgH.N~imŢךhIЉh"iK O(2%Q;#F:,^<.Qr߷Ap~yG O^ә<""}9Dp>ݷmY)[E"&pqcO:ɆUq;fg'ŮXeqgYueXeTZ:JHMcx'b&UϻZw$~h=[]Eó E^\En0 S7eZaenkbeɖʙl洱[sǻ1gQ7uW¶K%|H<Ɩt1hS#ja.]+ ~ȈqmÜ]~٦2!ׄݲ +jc} H]x.(h HC6hjԪ45*\A[Q)u(t"N6XJs _,6{(WSZ~ p}fbp(^OL:d2Vs<ഽDkIb{1}hiG +[5,-~]]vL șu/.Lq b"#؛]/jiVv0]ʥ5WW5{ZT.Wfve}{ΨJ9Ƿ.x!`aL=gGc $۔ +۷-\JfNB]J^MڌrvQRKm7nqhVMѶ":] ˲$VE8V qV_m<iKk's*Zx,-mNG?;zk/NōK ǜ:kWCMt}(2.m,zBnͮ RQ9<~fەDI}(t(X2:W]WĨf?fVVDPy+t]icدcC &{~N+z ͎!HF:p /axlqXDj[шH <E?N'$nqi Siǫu|#ֱ-"">ɨU%iX:#}X}{ U_58صLtȇ' ʞA'-wIB@h:+o/.endstream +endobj +1620 0 obj << +/Type /Page +/Contents 1621 0 R +/Resources 1619 0 R +/MediaBox [0 0 504 666] +/Parent 1602 0 R +>> endobj +1622 0 obj << +/D [1620 0 R /XYZ 54 639 null] +>> endobj +370 0 obj << +/D [1620 0 R /XYZ 54 621 null] +>> endobj +1623 0 obj << +/D [1620 0 R /XYZ 54 603.759 null] +>> endobj +374 0 obj << +/D [1620 0 R /XYZ 54 380.915 null] +>> endobj +1624 0 obj << +/D [1620 0 R /XYZ 54 351.355 null] +>> endobj +1619 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1627 0 obj << +/Length 1683 +/Filter /FlateDecode +>> +stream +xڕX[6~ϯLp:l(Bn8Cbe}E u9ҧUS T$ʧv"+sd<4yM,b)fs;,=i *I&(a1G:^7AUW0 ,45)`Ԛ=kFi-呉D*9]BN&RDy6*ϧI'nL>(#R2p\'R].EeAKH)f<|@, +3WыӴLoq,(sU)\E&HR"UJ&;R9F" .$ ؖ?h/1bWξV}$r:s. !`^΃M3*`tXqQdA]l ,5{5eȔH̕l}b u+;,Ρ2u^zɃjF5n,8jX5Y"u!T~%bYu~,[%kǶ(Um~s05Ne9DdgG ٷ؁sȠej_`sIzEyY8e8eA-QC52(V7Yc~]kq ^(AuEteyIaŦϜ<hԾ`TlnyYjJ6fTP8B'(I1` ӚTO8p +sǍ>"bU R&a\k5)DXA6Ey%1^gz\Y s<7H.{nps.0.$04,#1 [liPwsJ%z 7Ss{"B:ؗ]Oe9?oѹ;GZk>hOw!Ei"4xg t,/ ū鯷=unKX*c_WCK(\b= a+ y_QYiL;ZTNuFq,T.cb?,ó [Bzp{\u /lC g0]0j]| XҌb,z h,I:8S0`Mj[CZdxr茡b-./gM +^gM\$tQ3jŒHQKK-vxMmch^.^eK> ǝy$}ٻ|cId@s{joZN?snLeUmk]v%9;-SZs7tݒyMT/̬Z6N8M+vRJFLDh#Ok5fK{ǣ$amEmd{.̶9kaA/y8x yڅJp Qˑl ݞ1`Y'謱>35w%y,i$XT3>BЛd쁗諤&Gge ' /s!|,{S| 5t`6trO"OsD\q1ZV{ŚbRQ7Vqգt +mv쁕9X K5JJ}~Ib*zjV҃Ξ05G1=乡)ޤ&}٣ƍשxу;[NbJq$FC+ +1endstream +endobj +1626 0 obj << +/Type /Page +/Contents 1627 0 R +/Resources 1625 0 R +/MediaBox [0 0 504 666] +/Parent 1602 0 R +>> endobj +1628 0 obj << +/D [1626 0 R /XYZ 54 639 null] +>> endobj +378 0 obj << +/D [1626 0 R /XYZ 54 571.751 null] +>> endobj +1629 0 obj << +/D [1626 0 R /XYZ 54 545.867 null] +>> endobj +382 0 obj << +/D [1626 0 R /XYZ 54 431.787 null] +>> endobj +1630 0 obj << +/D [1626 0 R /XYZ 54 406.65 null] +>> endobj +386 0 obj << +/D [1626 0 R /XYZ 54 260.072 null] +>> endobj +1631 0 obj << +/D [1626 0 R /XYZ 54 234.934 null] +>> endobj +390 0 obj << +/D [1626 0 R /XYZ 54 167.412 null] +>> endobj +1632 0 obj << +/D [1626 0 R /XYZ 54 141.915 null] +>> endobj +1625 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1635 0 obj << +/Length 1818 +/Filter /FlateDecode +>> +stream +xڭXKs6WHNK Wosq4vOn4EKK‡.):MXwĒ 22-r _>,x@ {_,#DZ|0[97 'k\8*hE̒0%~x"ag\ B>x;pv ˯p > pLk8U<{q|"^|'VU:H3K 2$'B)~߶OȲxw{Yuq/Wo d/0L$rIhLVp.gIXȅ`\FALYs糵k͹ +2'bZfzp:WBO3r{J׋bL#ppxa@{ϙڥTq_痢, x&ʐ3E\ܸ%:q*F2re;K%&5cP_LA6M$SO˹mSiF5I=զNwl?&H{Kq(ov +~|Q”*ڞ2PlN=3t + NbUdPCuɚSRCZPKeO~ܳP(M%Bqu+lFp+(e`ɕ]qX#S\!ӘHK[eCVuLDNe*G=8=r% 7d~Α3${$S-]Sn +yH}>YFxfV1^ꉞ\=8|28x̟iNHcf^M,$T'@>ՉJ$%iu3PTCүRac&4gzC:ju-U'9h/=M7nt{Zݑ.09 ؈[20 ^h:ͦ0C1@: +y7Bm}ϱc:E: ϛ}H!¾[Q8ͺ("o-;Qsy~!˰Acӳ=2 S|cblL;:?O='Ф t Z :%Is=J9> endobj +1636 0 obj << +/D [1634 0 R /XYZ 54 639 null] +>> endobj +394 0 obj << +/D [1634 0 R /XYZ 54 621 null] +>> endobj +1637 0 obj << +/D [1634 0 R /XYZ 54 603.759 null] +>> endobj +398 0 obj << +/D [1634 0 R /XYZ 54 471.369 null] +>> endobj +1638 0 obj << +/D [1634 0 R /XYZ 54 448.537 null] +>> endobj +402 0 obj << +/D [1634 0 R /XYZ 54 360.591 null] +>> endobj +1639 0 obj << +/D [1634 0 R /XYZ 54 337.4 null] +>> endobj +406 0 obj << +/D [1634 0 R /XYZ 54 191.477 null] +>> endobj +1640 0 obj << +/D [1634 0 R /XYZ 54 168.092 null] +>> endobj +410 0 obj << +/D [1634 0 R /XYZ 54 95.699 null] +>> endobj +1641 0 obj << +/D [1634 0 R /XYZ 54 72.868 null] +>> endobj +1633 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1644 0 obj << +/Length 1406 +/Filter /FlateDecode +>> +stream +xڽWYoF~ׯ[<R伤E@"rc)(Pvgfvv< ʳ['һ/N8 +ɓVzH#?XMbo?'/`IGms=Ɔz(=U~b@I U#aILXŖ9 Z<=I~}'y9¤ R4Fn&u0ݤPdRBb[;vaK '`-4#=DI}҉JeNA\݂"JEycyhD(3JJD?ാ+d!VPCl[ri%V[~%:5"r$$=qqT2:{ /M4-bV0S*X@!07Sŕ.f阉$LYvI0D4Ahڂx!)K,묬!~A΅rYḝ㔅*8${J0K1:vd(|2BfκB}_L_Ԭ"1Y:T,5dsƊH'i>rEnaHp,\m;laHC 80=m010v9n^ŶvxwWy nw` {č0 7+wNQo+Eh +az"VCi>b]䲢qy;{~s]뵓˺hRNۭPB%M~0*TAPb~;~}7#?C+doڐM3b&iDlfW1sVY*E mDܩ +N'ptIKG0inݍ8PXy&`a%bK^*U/̀Dp*;-\Gg/:_;ǡ:#̎2QN^=}sബwnh{/@lendstream +endobj +1643 0 obj << +/Type /Page +/Contents 1644 0 R +/Resources 1642 0 R +/MediaBox [0 0 504 666] +/Parent 1650 0 R +>> endobj +1645 0 obj << +/D [1643 0 R /XYZ 54 639 null] +>> endobj +414 0 obj << +/D [1643 0 R /XYZ 54 594.984 null] +>> endobj +1646 0 obj << +/D [1643 0 R /XYZ 54 570.439 null] +>> endobj +418 0 obj << +/D [1643 0 R /XYZ 54 527.682 null] +>> endobj +1647 0 obj << +/D [1643 0 R /XYZ 54 501.393 null] +>> endobj +422 0 obj << +/D [1643 0 R /XYZ 54 458.442 null] +>> endobj +1648 0 obj << +/D [1643 0 R /XYZ 54 432.154 null] +>> endobj +426 0 obj << +/D [1643 0 R /XYZ 54 100.123 null] +>> endobj +1649 0 obj << +/D [1643 0 R /XYZ 54 73.641 null] +>> endobj +1642 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F51 1006 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1653 0 obj << +/Length 1657 +/Filter /FlateDecode +>> +stream +xڭXYoF~ׯ#Y=ݢ(NGl+}IHEԢ;K pfogfs +\y*|=켛1/I@x췷3bξ%9QV"NXlbV{&&Mn5, (#Nɹ5a$2jՈbhJD75$̋/OG 0PW."J~<|8;]Ѷy$ :W3Jﰦ3̄Iav;pŒS©:dQb ePITi <,}*vM\e)w*IKǞ"-^]iJT3H a8KђPutv6<Ɤ1N4dy +3[cѬsoT)/U8䱐c8BD~r,X_6-$Xxcϱ,:V]ql@W#itFxl^N~P@F&9~F̰ +\mg;qS&,4|mKZHjN2t0 +b<8mߛzE{ʛWxkvs1( .V2ؑ8RefSn +\7n3tY9DSNx1nmmWoYgM!YLՕ3COl˼)Ҧ'aXӦG|7> ۊnvRE'tATp;FP:92 +O=3SCݞٱlR ;Cf  +ȡf8Q\Ea` FhŠe6rSNJC9-sq Crvf]LحOhd4(ed%()]ר~_4XIy}ve}r{;`Ub /qz *vѿ +:MqҐ뗌*px 1WZyL{6mtpSώ : lcHd2p(Ƌ1B::$м9xzmDd_5 P +& ~Ne|ʖMk{*̚tTsűXir]VY[!WÞ:#lvl/`[Qxk2'Kn  + R=4a3ƢoE+c;cB՚?Ũ֮ ͢:t8{P43Q oݗ{  o?W@3&Ǎظxg  R|җWjO +?(Yoc1,>ys z( +^l7}G0N9*G-4/1 ?k**?DbŁ)SBUm Q> rm_ -endstream +endobj +1652 0 obj << +/Type /Page +/Contents 1653 0 R +/Resources 1651 0 R +/MediaBox [0 0 504 666] +/Parent 1650 0 R +>> endobj +1654 0 obj << +/D [1652 0 R /XYZ 54 639 null] +>> endobj +430 0 obj << +/D [1652 0 R /XYZ 54 621 null] +>> endobj +1655 0 obj << +/D [1652 0 R /XYZ 54 603.759 null] +>> endobj +434 0 obj << +/D [1652 0 R /XYZ 54 564.915 null] +>> endobj +1656 0 obj << +/D [1652 0 R /XYZ 54 539.704 null] +>> endobj +438 0 obj << +/D [1652 0 R /XYZ 54 449.822 null] +>> endobj +1657 0 obj << +/D [1652 0 R /XYZ 54 421.678 null] +>> endobj +442 0 obj << +/D [1652 0 R /XYZ 54 369.301 null] +>> endobj +1658 0 obj << +/D [1652 0 R /XYZ 54 345.834 null] +>> endobj +446 0 obj << +/D [1652 0 R /XYZ 54 305.246 null] +>> endobj +1659 0 obj << +/D [1652 0 R /XYZ 54 281.972 null] +>> endobj +1651 0 obj << +/Font << /F21 1102 0 R /F14 1032 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F51 1006 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1662 0 obj << +/Length 1346 +/Filter /FlateDecode +>> +stream +xڕXMs6WfjDADont5\hI5D[w(vE)BĉKq7MN;6Ajo> XȚo7C<#A rQ`DQږ)h>7)IIJ.'X=R3}<TFAP]AG/ak>O8`wYx,yJY},Gi%!'vfS^5l\a:QhٯLXq%_ $R8糠|$ +a9XxW׳yS0t%ȕj#r9^q,Zzx3zjP|ZHWל6:~Ibuc&ڬht + +H)43SJ%Yr5̲zM`H j4. ?Uc6S/JggtA_ ^|p%< (pΔgGCk ߂(<@9wvj nl3W[({6]-@,*omaT>@ƕREuoY=OAw +U/am[endstream +endobj +1661 0 obj << +/Type /Page +/Contents 1662 0 R +/Resources 1660 0 R +/MediaBox [0 0 504 666] +/Parent 1650 0 R +>> endobj +1663 0 obj << +/D [1661 0 R /XYZ 54 639 null] +>> endobj +450 0 obj << +/D [1661 0 R /XYZ 54 621 null] +>> endobj +1664 0 obj << +/D [1661 0 R /XYZ 54 603.759 null] +>> endobj +454 0 obj << +/D [1661 0 R /XYZ 54 349.471 null] +>> endobj +1665 0 obj << +/D [1661 0 R /XYZ 54 326.258 null] +>> endobj +458 0 obj << +/D [1661 0 R /XYZ 54 247.559 null] +>> endobj +1666 0 obj << +/D [1661 0 R /XYZ 54 223.987 null] +>> endobj +1660 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R /F51 1006 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1669 0 obj << +/Length 1261 +/Filter /FlateDecode +>> +stream +xڕXr6}W𑜩PxA^G8bLs]uU-S.τ9!*p?.܋~0 <,QȘDW@"X(eA,2:#NuJ<Q*c1 v||ypcyxZI/xՇvS4TN}/[k+9,Q!&4|fVO3oS۞ + !6r,;/Kc7CXZcx2+K"AɺH훪ⶍ~0f +z7 ݹm@RBߥL,Pg~8T)B!X~ V4۱p!]2S hmնMN \vEn$|Jx 5њendstream +endobj +1668 0 obj << +/Type /Page +/Contents 1669 0 R +/Resources 1667 0 R +/MediaBox [0 0 504 666] +/Parent 1650 0 R +>> endobj +1670 0 obj << +/D [1668 0 R /XYZ 54 639 null] +>> endobj +462 0 obj << +/D [1668 0 R /XYZ 54 418.639 null] +>> endobj +1671 0 obj << +/D [1668 0 R /XYZ 54 391.805 null] +>> endobj +466 0 obj << +/D [1668 0 R /XYZ 54 154.854 null] +>> endobj +1672 0 obj << +/D [1668 0 R /XYZ 54 125.059 null] +>> endobj +1667 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1675 0 obj << +/Length 1599 +/Filter /FlateDecode +>> +stream +xڭYKs6WV3B HN3S^4#Rv_]<(4xlA~.r +?,Y 7#̛ &V|:zZDdz8eLל%%h)T'Bfx͘3f0N'cEKMHWӖv$9eHG,#J*'S”J6#r;^nG6̼P8dx',O#JJ F 9 3Jktj{^`^T6&v x qcz'~OBrKkAZl0V'\|ig}B%xZhul|z>D=۸j'B: +.ࢅUݐV$YQ*138i`e~(Lֈ%șnf,OQݙ +=]5fuFv>Vʸ@bbPNdRtk+̸OLT Qx:H⟱黫?@dQ41+X*#bv/ ٙqw +NTD<N00VD>SɣhNg煆QE +^=dq|3Ͷ1 9|BoO'N|^a{|<|Ε{=e˙ @Le԰oZ~@_yVm{yd|W|%D EpO' V|~A"XB }Gi/{:!1,q+౏JTwt܊4Ҩ6,|(</"mi>W]Z[Ev4)WHt4b sfukRy~4ѲO\it jmiJ#"\ieeK#U4N[!x4»]8u[*miƱXC+,QسM7vL:joL-b55]s֪Mm[=4zG3ߴM> endobj +1676 0 obj << +/D [1674 0 R /XYZ 54 639 null] +>> endobj +470 0 obj << +/D [1674 0 R /XYZ 54 621 null] +>> endobj +1677 0 obj << +/D [1674 0 R /XYZ 54 605.89 null] +>> endobj +474 0 obj << +/D [1674 0 R /XYZ 54 541.512 null] +>> endobj +1678 0 obj << +/D [1674 0 R /XYZ 54 518.245 null] +>> endobj +478 0 obj << +/D [1674 0 R /XYZ 54 261.434 null] +>> endobj +1679 0 obj << +/D [1674 0 R /XYZ 54 238.167 null] +>> endobj +482 0 obj << +/D [1674 0 R /XYZ 54 87.107 null] +>> endobj +1680 0 obj << +/D [1674 0 R /XYZ 54 63.48 null] +>> endobj +1673 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F51 1006 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1683 0 obj << +/Length 1856 +/Filter /FlateDecode +>> +stream +xڭXKsHWڒfs-.gfD`@Q9~!@ r3=_{c8cx'XcD fvbGF!QxO Fޒ{.̨&WO()SW8NB#ϗ;߾nlU<~c.'3/IjފGYu _w9ؖqc9b'`*C`mHQq4 Wx}BG\I{5uaֹ극8-S9>Qrf-x賟|z8۵X_֧i p4hzۈ˄3cq"f(:J+&E[kR$Uaw`<ޗNG *lxHּ5FYy> ~ 6k1AF}z*hP 945Mom]}nP;57?dy êMiԂ~`7*~ 8kG@ +ި$5MO6ǽBʄ",܂A(a""JrL0ż-̻>f.;kM@h]ҦC-ܽi3d`=5LV99kAu\Va8訚OvrI=_i{3 *dGr,ߋ)֒M! ,W>`@lY7;;:yUx60CfwߚNfҸe(NM11CNhG}snSN{ "ɛbendstream +endobj +1682 0 obj << +/Type /Page +/Contents 1683 0 R +/Resources 1681 0 R +/MediaBox [0 0 504 666] +/Parent 1650 0 R +>> endobj +1684 0 obj << +/D [1682 0 R /XYZ 54 639 null] +>> endobj +486 0 obj << +/D [1682 0 R /XYZ 54 621 null] +>> endobj +1685 0 obj << +/D [1682 0 R /XYZ 54 603.759 null] +>> endobj +490 0 obj << +/D [1682 0 R /XYZ 54 533.947 null] +>> endobj +1686 0 obj << +/D [1682 0 R /XYZ 54 508.647 null] +>> endobj +494 0 obj << +/D [1682 0 R /XYZ 54 387.618 null] +>> endobj +1687 0 obj << +/D [1682 0 R /XYZ 54 359.357 null] +>> endobj +498 0 obj << +/D [1682 0 R /XYZ 54 359.357 null] +>> endobj +1688 0 obj << +/D [1682 0 R /XYZ 54 338.706 null] +>> endobj +1681 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1691 0 obj << +/Length 1236 +/Filter /FlateDecode +>> +stream +xW[o6~"#*f +dN;:V,Z,1;[}\>J*o- ,~Go>ľyYZV/N'V^z2|\rAz0(%aś1 y>IFJ =N$C4zoHgoUpO# XY(_߷6fIKPup]>Ԋ. ŝɤnY7:RHJ)dnC;ۙvSᛐ#yF3H%I&6.bvg@u{ݼ6.p^ӆp:!Qh TX?P7[4EoVă=jz%EGͶ]C=i%< +iNC)4С6OU wAU(îjip-LKŸS';ZSqB{.u0RN:e?`!4ݫ^tUwq39yy1C2//,f0 U QꅓNѕC8 0f݈=; /RN#;rqt`d0lN_aKp._Hׂ7C%< he^b7 F vUG6DѲE*-@r\b9矦"X-!nXْiײQ +U|*Saܛ*~l. -4`v_~h@Bޜ^82;ӑ{Zk;C>\*MmJHlI_πO+f<oAЁYW%X+Q97kpuybN~$EM ^u$endstream +endobj +1690 0 obj << +/Type /Page +/Contents 1691 0 R +/Resources 1689 0 R +/MediaBox [0 0 504 666] +/Parent 1694 0 R +>> endobj +1692 0 obj << +/D [1690 0 R /XYZ 54 639 null] +>> endobj +502 0 obj << +/D [1690 0 R /XYZ 54 576.489 null] +>> endobj +1693 0 obj << +/D [1690 0 R /XYZ 54 554.432 null] +>> endobj +1689 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1697 0 obj << +/Length 2038 +/Filter /FlateDecode +>> +stream +xڍXKsFWT2Hfw;C-Ê}hiWfn7hy {(\A.A{)&/-'K{>Nn*gmgX|"u8?s, 88)ƾʫ-uVE"#~%2ܳܲփl^Į3^ؒ?^N#]˲"b]/V <d^ +I7E${⧫vGFUSlw#[#'V{xdQ$, ԏC﹮uU-*8S:t, ibzaq +?B@u;>v +E˟VO-Nl8Az +yS@D+[O);hY{x"Dr /!xRxY@HHVXtO@9 AbXal,2|cTз~er/\ IR%6X5fGٝxArXjC߂]̓6-3X/$t(!}BNkA@o|J%rاLî>լܤt{n*qWiv\2 DfVQ)5BD5A +bsFE$ou"-Z۝7ɕ.*پn9ITMM+9q$"0YCY6|R$"qFXԘ"ʊr%{9 +]놖BEˢ*XħR_TIlxSU Nݎ+qVveR9da:I1k΂$,N|MMe'I%$l}-v\ b,?,%MUUOaws+DM4țoTwU) ;LZG ^cwb/ vmZX%L>\U z6V-MPLz[Lؗed3E\1=Unr&j0&Gl:>'-;`tnZ)#Q 000U#g$ ǡ6(b.xq,yN|guCe9Lo>?}?rd'ƣ@*= meeOxpuO7q|#]3,VMȕ&>0 dC;v$2ػzjlK/lHK.!Ps)P83Υޮ'#.o]nkU9YEZDYЌ<$ݳ_<2ɺI 4/|[Ga,HR[Q;n> endobj +1698 0 obj << +/D [1696 0 R /XYZ 54 639 null] +>> endobj +506 0 obj << +/D [1696 0 R /XYZ 54 585.443 null] +>> endobj +1699 0 obj << +/D [1696 0 R /XYZ 54 561.507 null] +>> endobj +510 0 obj << +/D [1696 0 R /XYZ 54 341.172 null] +>> endobj +1700 0 obj << +/D [1696 0 R /XYZ 54 316.599 null] +>> endobj +514 0 obj << +/D [1696 0 R /XYZ 54 213.358 null] +>> endobj +1701 0 obj << +/D [1696 0 R /XYZ 54 191.913 null] +>> endobj +518 0 obj << +/D [1696 0 R /XYZ 54 191.913 null] +>> endobj +1702 0 obj << +/D [1696 0 R /XYZ 54 167.976 null] +>> endobj +1695 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1705 0 obj << +/Length 1502 +/Filter /FlateDecode +>> +stream +xڥX˒8+ + --ǐbXxS&{%9cY,J;'=YAJZby7gh TӛX-OgerW6p +88 f^ %ˋwsV6woAشn#f=9u2 є!ݯh$Q")fmq7Vl1؇o6톤XXK(B 0Zl fߡ2#mwW*uu? # +Ā)JbUb T50I!arn/YN=fD*vD 1 ]Ƨ7Iࣿ BN +Q2z9(b*d:o t"1Tݦ:lV_-j0;"l 81BfIXPKA 5,b+X,% -(2*Ft]>-ؠ\a TV>F}”zgۮ8~ҙcFaCS]S|ֽ//@F"y 8S74Y}&am=/y&l升2R=NmB/E^ ˜i_8v%d.g V 2zyS;`_ڼ&)/1ŦY% +ѪyFg&{_ +^ˍ%Lۇ]2<u6grkSc0Ө4*K&11ٓMF]w]s#2x9 mSݮg 泚e+%L|>a53k 4,1mf|FFaCF5d̈́< [XI9/jĄqϢ[ 6Kx; 5C<+nj3F Ӗ:E}!_OnNK!Uy6yeE1`%Ola6*)$eN.o7_X5򊬱Z5YN=fD*vCC[xy3w*BȔCI:᣽ONz_+bʄ<8rV"tvnx8= + J՗ +_*T }- +n=ȲG(t Gxxz?@,j *unU<+|25\YGlhل}iW[ܑY< +×;ߥn}m`ͮxY\ 4>q91śW"p8 +|CTN*v@)Ţt.x`ܶ-=(0?xns1LPq/ܔoFT`Z~Kf߲ iFnjUuv.qF>ο]n[$^-JA{c~`}jendstream +endobj +1704 0 obj << +/Type /Page +/Contents 1705 0 R +/Resources 1703 0 R +/MediaBox [0 0 504 666] +/Parent 1694 0 R +>> endobj +1706 0 obj << +/D [1704 0 R /XYZ 54 639 null] +>> endobj +522 0 obj << +/D [1704 0 R /XYZ 54 489.116 null] +>> endobj +1707 0 obj << +/D [1704 0 R /XYZ 54 468.52 null] +>> endobj +526 0 obj << +/D [1704 0 R /XYZ 54 95.49 null] +>> endobj +1708 0 obj << +/D [1704 0 R /XYZ 54 74.894 null] +>> endobj +1703 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1711 0 obj << +/Length 1434 +/Filter /FlateDecode +>> +stream +x͚Mo7:±Cibr0b7j;4I.7lmjw4z8p-:%KRL72gN&_㥹b3%S VO7 WlNh}߼ja*,1{Ś{82s)Kw ̝u׾dj1wԠ uMof@{2AL1jf­ד䷘<+USJJJD)ÈÀx(!5n¹+ݬ/x-]( +1ǜ$k>`b WfG7`qc騔 c`<'b%TTRspc[ ЌE4f,PzhňNXPY 'ӡJZ+H8CRBA H B_a93 :r +)X%vɲ!n (ZnVnNy(Ul-elcd+#zs:ꖂv"f?CwNǼ:eCځf4`U|"Ŷܘ5"u BY}=@ƒ)4Hfv8JeC&pQ $ +XxXQ jDǩFh;b+; +kJn,' V -yp-`j)F;st$Ʌ tw{mNP c.Y&>]h_/Þ'Y *Yi6jUB/~ט<%l1qQ;߹Im%vɲ!ۅ[, +[n+ +7Ԕ0yF-ۡhjͶ]h}v-&`%VDNJM5$OZjޥjQT%˪ևlWm XPmVRmNyloMOnu\E>@~ٞRGLř o*UTXkD*Od9SLUJ +MU +y5K秛R /JH,Hާ\je9rg&F%)Պul'I|vc*c%`%cUꌕNJJֿǕ7åJ4USѤ T7=?cn(Tm6Luɲn!T,ܔTsS+):[-FV&A[*I܍p{&^ҝԘv%@Z+S,%K5 +`K XK:/屢W W'>۪sILOzt}q1%zʇlT XTVTSyi`fxY)]ȷY6=K?]endstream +endobj +1710 0 obj << +/Type /Page +/Contents 1711 0 R +/Resources 1709 0 R +/MediaBox [0 0 504 666] +/Parent 1694 0 R +>> endobj +1712 0 obj << +/D [1710 0 R /XYZ 54 639 null] +>> endobj +530 0 obj << +/D [1710 0 R /XYZ 54 621 null] +>> endobj +1713 0 obj << +/D [1710 0 R /XYZ 54 605.89 null] +>> endobj +534 0 obj << +/D [1710 0 R /XYZ 54 562.269 null] +>> endobj +1714 0 obj << +/D [1710 0 R /XYZ 54 538.995 null] +>> endobj +538 0 obj << +/D [1710 0 R /XYZ 54 485.55 null] +>> endobj +1715 0 obj << +/D [1710 0 R /XYZ 54 464.407 null] +>> endobj +1709 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F51 1006 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1718 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1717 0 obj << +/Type /Page +/Contents 1718 0 R +/Resources 1716 0 R +/MediaBox [0 0 504 666] +/Parent 1694 0 R +>> endobj +1719 0 obj << +/D [1717 0 R /XYZ 54 639 null] +>> endobj +1716 0 obj << +/ProcSet [ /PDF ] +>> endobj +1722 0 obj << +/Length 161 +/Filter /FlateDecode +>> +stream +xڍ +1<ŖI5*Z xX\x,߰C`x&Fa^/[AcS gpl0 L18blzeY$_J +}wx"rǘ.e2)ajXky5endstream +endobj +1721 0 obj << +/Type /Page +/Contents 1722 0 R +/Resources 1720 0 R +/MediaBox [0 0 504 666] +/Parent 1694 0 R +>> endobj +542 0 obj << +/D [1721 0 R /XYZ 54 443.28 null] +>> endobj +1720 0 obj << +/Font << /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1725 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1724 0 obj << +/Type /Page +/Contents 1725 0 R +/Resources 1723 0 R +/MediaBox [0 0 504 666] +/Parent 1726 0 R +>> endobj +1723 0 obj << +/ProcSet [ /PDF ] +>> endobj +1729 0 obj << +/Length 2066 +/Filter /FlateDecode +>> +stream +xڝˎ-`1$\ MfYC2S&)5@جw1^GYUޟVbQUυmE뭜ajagG%Jcϛ8p٪8 _>=?0ru_LYE30iE2Ѻ]ݯ3yT1Y-{:I2Uiҽ?|ip>n/>ޜIXe1,fƀGz` 읁cJ +\ $UQX8N'en o5aeh<:@exg>?!,&)a3HI:ݶxٔ*7۴(*5#k(LY">n(p= 5/gFz6aljy +h أ Cg.u :Zk7? =Iq3'c,x&[ Tu-(LiTiC/wW%F.clL;5,h=:6iQ׭ +Hk7c0˞⅁XyEĵF; 8= +&@QGeg8whm-Jcy<q:KM IT9 ĆQ=׋":hD7>!@QFޅ?2Pb 7ۧ 7K!yE1R@u, +VI&AyUQUt.0G9e͠`n?2;7ۼ,2ʹ-'B/v9Lиb5Gʷ`ncG/YRaQ-9߲` MKfmVޒ3VR֒DJ9~.-6 ^+Ӭ鎌d:~~dyIE'KOOjcMvڿZ}ͨ۬jg4X/%g"{W(^RG =+9)A:Sh۷G1җcQ,c ag r0QtAtA1΂g@11 w^`r6ѯ<bӘaN^0>& i~\(Hi_Ȋ(}p6GcF⊀O.wdV% xIӂ:'BI2$ςijzv^=08ƾ/B += +uѐK>v$E)MP 7.[EQiKMLf_/ucjj_ak`k%ji_ +w.YK tѕz?4^Ӕ8G9Tf km3' p'@oJӘ+,@3ƟQًoWp[[޹w$PHbWLN8fzౌj.jnIN*:p$Hd62 7{qnSu0ppV +N h;JB93\^=aePOj>cԷtJųB 'x CETx z~xy@B͞2{ݎ~:Ǒ%gf_}m.Q0M`$m)G|{(iIˌHBεLBM-v]O%2M]wT7̙ +NC};qQxȂm.|j;}&/}QSowXypO.p񧒬|#6ZYAC=#+%8cJׂT)o\E]Sid&)ۦf~)gendstream +endobj +1728 0 obj << +/Type /Page +/Contents 1729 0 R +/Resources 1727 0 R +/MediaBox [0 0 504 666] +/Parent 1726 0 R +>> endobj +1730 0 obj << +/D [1728 0 R /XYZ 54 639 null] +>> endobj +1731 0 obj << +/D [1728 0 R /XYZ 54 621 null] +>> endobj +546 0 obj << +/D [1728 0 R /XYZ 54 621 null] +>> endobj +1053 0 obj << +/D [1728 0 R /XYZ 54 468.676 null] +>> endobj +550 0 obj << +/D [1728 0 R /XYZ 54 468.676 null] +>> endobj +1732 0 obj << +/D [1728 0 R /XYZ 54 442.296 null] +>> endobj +1733 0 obj << +/D [1728 0 R /XYZ 54 379.132 null] +>> endobj +1734 0 obj << +/D [1728 0 R /XYZ 54 348.519 null] +>> endobj +1735 0 obj << +/D [1728 0 R /XYZ 54 329.86 null] +>> endobj +554 0 obj << +/D [1728 0 R /XYZ 54 294.627 null] +>> endobj +1736 0 obj << +/D [1728 0 R /XYZ 54 267.666 null] +>> endobj +558 0 obj << +/D [1728 0 R /XYZ 54 88.1 null] +>> endobj +1737 0 obj << +/D [1728 0 R /XYZ 54 61.14 null] +>> endobj +1727 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1740 0 obj << +/Length 3318 +/Filter /FlateDecode +>> +stream +xڭZYF~_7sK}<Nuk1v$#BR̿Daa`GuuUut_JUms@wִֽ}bS቏&ɳWbׁg߿. V9A dG)p}(J}=b}S_02@ޑc@ŸoPf!ߤ~Rw#v7QioX5wQ긾xOC֣bY]3SRA@|fNZ$4YC"6EfhQ׮HU7:. +FtmM}ݯ}UG;=ia~cO@t8̽-[B O'/ٝd܇Ae74oh!6ƚ,r^ٛZU(=HXa^dAH?@C|dv*{g;#k[[O|aPܻs-UڂeMg}ݱԄZ[HdIpS!g7B@-|\ +9_&OH j^əvߑ6!XoשߠAeIRrZu-h&1k]g)1mnK=nal~t;<^alA;Zgؒg헞oBKr{Wٗ]Քp4/~# b T,%֢.f30x'xjS׮o@yxU +|<h-x BG188*x#ijb)ĠϟY%f'PNy#Uvq *<\Gp?LZ +c&Lnɴ Zߵ# 0if9w1)xN hʽ0/S!0bhş(kK2T?I"3'#p~|<"dp0lU*]VO'6\#v(Uj$fkJlolqPϊv|;Y\ NFk? ÿuSn`WiW#fJ tin{)T<ŦR_XJPutbw8o8iQ[}MIU/8GU&+06SiK^{w^_eg*0![읮7,hтTw-)pw +07VW|_U#@oաQ<~d/%ornAEå`ϟSxٝEke32# CSBD~% eDriS0r0/ZD@?YςGlRg ,`zˇlʝ#V{0+~%7,4ƪ괰c3/eΟuBBhӞ%l/1WgfW h#eG-`3a?'ΙzKj5rĎ^* A[M,o賽ޘ +8@JQ܃ 2%g>]AYID efAh?=eą9&T:,3QO"+# pӒidWZi;/E@=jYΙ!h/Jd?uýp?$9n415Wоf,Eqrcd(7}_6@P )'CqwZ=%ۊ&~յXńV[ GO=i; +It mRji \-`)y|zͤ&oUZ^X3Skl}Q4ξӞmbq.uiLIxVK[}iK̑PQ} +z۳YVNNy`_tXЩ<+2ܙY} +Eӳ3kfL0o_O~d2K#e_|qHj34%vAz6O9^m 7CN:'|qwIYA)0pri>P|`zd1r~r@We[om]endstream +endobj +1739 0 obj << +/Type /Page +/Contents 1740 0 R +/Resources 1738 0 R +/MediaBox [0 0 504 666] +/Parent 1726 0 R +>> endobj +1741 0 obj << +/D [1739 0 R /XYZ 54 639 null] +>> endobj +1742 0 obj << +/D [1739 0 R /XYZ 54 621 null] +>> endobj +1743 0 obj << +/D [1739 0 R /XYZ 54 596.592 null] +>> endobj +1744 0 obj << +/D [1739 0 R /XYZ 54 568.796 null] +>> endobj +1745 0 obj << +/D [1739 0 R /XYZ 54 512.662 null] +>> endobj +1746 0 obj << +/D [1739 0 R /XYZ 54 481.822 null] +>> endobj +1747 0 obj << +/D [1739 0 R /XYZ 54 454.026 null] +>> endobj +562 0 obj << +/D [1739 0 R /XYZ 54 407.869 null] +>> endobj +1748 0 obj << +/D [1739 0 R /XYZ 54 379.299 null] +>> endobj +566 0 obj << +/D [1739 0 R /XYZ 54 111.357 null] +>> endobj +1749 0 obj << +/D [1739 0 R /XYZ 54 84.723 null] +>> endobj +1738 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1752 0 obj << +/Length 1225 +/Filter /FlateDecode +>> +stream +xڅVI6W TRn-`99Pm ŕ6ʞE}IES^zyRz~y'Q ?br폤aV?m*8lHFA 623T; y?bNA,XS,L̰'WMAmT:8Wfޏ6VKHe$_-~I \fD׵m"c]WGpJ@a=ʒ$Fd=ZƁGøtRܤQa `3[m\n9ԇ*K'ʓ'jKcY5#<-3ǚH|!ipGsJ\K$Yxa ʊ$D G: ͕iQa,3,pE!Mf0\#,)}cT? ^y?4ZÛV"ন7--j^ex Z3D6t(?LEdZ*(Rp: ;X=^8₻ bs+iU~CtEeFg榛.rz\(eqwZˎ\Л]X⧥3Af#m^It#YBׁ܁Tt߶ݛC<ˢ2LUGEy8[ Iv?>.b tl6ӷ0)-W8\ӳHY["{p4n!JD\IW!"<5([\.d\t"e|(tDb %26^D{Ci^\VTȊ0P% +~OL?=ߙy9c<5M޻ڔendstream +endobj +1751 0 obj << +/Type /Page +/Contents 1752 0 R +/Resources 1750 0 R +/MediaBox [0 0 504 666] +/Parent 1726 0 R +>> endobj +1753 0 obj << +/D [1751 0 R /XYZ 54 639 null] +>> endobj +1750 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1756 0 obj << +/Length 1466 +/Filter /FlateDecode +>> +stream +xڝXYoF~ׯ)ryH +ر:VhRKQs(( +oÑIs ߉jdP>q"׳zu5я [zlAk̒G2~KNđ鍟fGY^ re$ N;8[BFJt.F_ PN 1")B4fI߰].9$f'ҜQo>\; +H O||O'C Ҳtǯm[:~eЈD; +Ae2cn^"z?)=ae9|ʌY:|[(|+\i($V]i ;RX=IyO<3/޿숚r{Wm &\$^Pnjoz~{;*,/aKPqV3 X^q 07e3| UlG٦bjfLHlTqs%}g"r  +yhF>pŀ9}Bq9*9Mב7aFiWt}QgTÐcH|GH,RH/Y/7"bM2SjOSoN\6(/8 4Z5Фތ18F/~)2۷˨2 @qjt-]q](֨kLhO@ҁ/r+ +xg@Q[ pCg>X8y6x]kaqEB5"TzW8- a}m^/--uy|,ZuTT䰩}IYm%`ub_(endstream +endobj +1755 0 obj << +/Type /Page +/Contents 1756 0 R +/Resources 1754 0 R +/MediaBox [0 0 504 666] +/Parent 1726 0 R +>> endobj +1757 0 obj << +/D [1755 0 R /XYZ 54 639 null] +>> endobj +570 0 obj << +/D [1755 0 R /XYZ 54 621 null] +>> endobj +1054 0 obj << +/D [1755 0 R /XYZ 54 467.873 null] +>> endobj +574 0 obj << +/D [1755 0 R /XYZ 54 467.873 null] +>> endobj +1758 0 obj << +/D [1755 0 R /XYZ 54 438.573 null] +>> endobj +1759 0 obj << +/D [1755 0 R /XYZ 54 148.063 null] +>> endobj +1760 0 obj << +/D [1755 0 R /XYZ 54 129.003 null] +>> endobj +1761 0 obj << +/D [1755 0 R /XYZ 54 97.988 null] +>> endobj +1754 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1764 0 obj << +/Length 2111 +/Filter /FlateDecode +>> +stream +xXێF} ClfN8,S$CQ#O~Fc` Z]uTD= $ +b{&kysefS3{9zѓO|Ez޻l:ޢj/VUN?Fn1$7·Td^ +<3EjEôoPd_r\rzޛBF&~4ՇOjR~&t +Hջ?{<^ xi[r,t[ VMM=pMg&|6ybi6p5ve'դ -@VS*~2Iz4p{D04B_޿y~3Sk]o#=߷Y{W;ގ˚>6RIm&sEqӀR㹒@ܛ[nߖh4 0䭊al1ܲ Ũ t{D) p^0yk6oV +%NO!]`G~u \#m6-^ޭ ;}':}hP6;/[ԨblW䲔P7TWv[>lϸRpwug.b k|츔aYaLVuO`eg%} Q³ +E7!NSe]<)ZJ:YRj:bUXm?㻂{G8Ig8|aR/Wpl('B'#KarT9鑳`lnG 9$rHe!_8FA.])HʵN9()a a, v +G%^:'dH,VY2^-Io)n?{QrT;K;f]!Ti"udiQKɆנ^~<+O_. c6cOV /a@\r ݷ'0HuGWG O')'p}HyUO> endobj +1765 0 obj << +/D [1763 0 R /XYZ 54 639 null] +>> endobj +1766 0 obj << +/D [1763 0 R /XYZ 54 596.592 null] +>> endobj +578 0 obj << +/D [1763 0 R /XYZ 54 408.904 null] +>> endobj +1767 0 obj << +/D [1763 0 R /XYZ 54 380.998 null] +>> endobj +1762 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F52 1016 0 R /F16 1026 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1770 0 obj << +/Length 1463 +/Filter /FlateDecode +>> +stream +xڵWs6 _KZ!%Jvit<0mk%Ou HIv,"A? +' +'ΘՌ-هSȜKY5{a|,x O>wb`$"r3箚/0tW@DI_p+7Op- .xXӕ }\Nhb/bkvsǜ \Mm-tT{әzՊ4-3h,g@/@^?gާ,,t;"dUMKZڮ.R$|X0s!}ę'"~p7иS'Sj"TM?I+2[rJA]L>Mh!hbUCqmH/x(lXWxl nM6Mu-h`֛€" ₅˃zрm?ᑨ~4C/}gdj$s=ЦH~V=d[A +zCZtJ> +:DRn9jW F:A6@yCj3k,t z3aFDzj w8n7Y[+ֱ#>z`j*vFoKkjm3 >okVevE[q٤7ȯ^1s*n!_o/p/ 8|7I85>!G?>endstream +endobj +1769 0 obj << +/Type /Page +/Contents 1770 0 R +/Resources 1768 0 R +/MediaBox [0 0 504 666] +/Parent 1773 0 R +>> endobj +1771 0 obj << +/D [1769 0 R /XYZ 54 639 null] +>> endobj +582 0 obj << +/D [1769 0 R /XYZ 54 288.9 null] +>> endobj +1772 0 obj << +/D [1769 0 R /XYZ 54 258.556 null] +>> endobj +1768 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F52 1016 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1776 0 obj << +/Length 1798 +/Filter /FlateDecode +>> +stream +xڭXkH JZ(p^4W8d[vt%W&ٕd[NQB}|S4ЏĝnhDl=z[OL#'kKzN0G}:lf+Վ!x>QƆXЏz-i]`͟^̈́[>oj/%Q4&6>r&WdM.Sϝ8tEy:~Kռ>O'yzYBmMj> endobj +1777 0 obj << +/D [1775 0 R /XYZ 54 639 null] +>> endobj +586 0 obj << +/D [1775 0 R /XYZ 54 621 null] +>> endobj +1778 0 obj << +/D [1775 0 R /XYZ 54 600.078 null] +>> endobj +1779 0 obj << +/D [1775 0 R /XYZ 54 222.665 null] +>> endobj +1780 0 obj << +/D [1775 0 R /XYZ 54 203.719 null] +>> endobj +1781 0 obj << +/D [1775 0 R /XYZ 54 172.265 null] +>> endobj +590 0 obj << +/D [1775 0 R /XYZ 54 124.17 null] +>> endobj +1782 0 obj << +/D [1775 0 R /XYZ 54 99.994 null] +>> endobj +594 0 obj << +/D [1775 0 R /XYZ 54 99.994 null] +>> endobj +1783 0 obj << +/D [1775 0 R /XYZ 54 72.912 null] +>> endobj +1774 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1786 0 obj << +/Length 1456 +/Filter /FlateDecode +>> +stream +xڭr6c];3t$JDN)Rb߷))Mfކ?P:>I'NRgw\ +i0k@ nz.Tr6{bӁ[孥}ݼ.NJ( 6'[0t Yf CЧG|ʘp d_*č=J$q7LwnԢmNGnpP NYOj, }JLR|8'q_f0E0Wƞ`aʂ7[Xbb rKQl;Rbrdad<)9&ۃ5l"#1TAJBB + 2n=xoM 3#OҬ@O%[J*j9h #nk ҙ/]5"#'%`*j1=z("ˋb7:XQ隠z5R8;kZrʬōZܷ(H&^ +tmmSV3SyL @JEw7[CU_NW/QDEM֔jh{e-b8#:S1kX 8((ct~-27f{~3jx,/qf*9ޓ?Z}Ј +eߊɈXJO'bɫ1B%H,pO!Dbtys0;w +0a?rA몮]SDy)8\m c?bye==@[; +)&Mn!|?E"SݘZRI!ӟy[;Egh4,Ԕ*~Nu="xfFTɅfuw 2\wHsOBwX!ᅮeV;J(XNFԦ`Ef2{'#"Ktc;˿5JKnp\7JBɘfmڑy̘^4͘ä92@ݜ;l.ie{(YKe{wh|h5׎1#uA^|i G rX`u#g '{):Nb@G' U*[ 9B)Vpa8E'/87s= pMnj +80 eJ,+SY1'[J<.^00\ԫY7 @cw~<#L)o ~Gxs<>p15`& 0;^ʊ &u5 +j4~.>NJ#ȶendstream +endobj +1785 0 obj << +/Type /Page +/Contents 1786 0 R +/Resources 1784 0 R +/MediaBox [0 0 504 666] +/Parent 1773 0 R +>> endobj +1787 0 obj << +/D [1785 0 R /XYZ 54 639 null] +>> endobj +598 0 obj << +/D [1785 0 R /XYZ 54 572.84 null] +>> endobj +1788 0 obj << +/D [1785 0 R /XYZ 54 549.262 null] +>> endobj +602 0 obj << +/D [1785 0 R /XYZ 54 466.233 null] +>> endobj +1789 0 obj << +/D [1785 0 R /XYZ 54 442.655 null] +>> endobj +1784 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1792 0 obj << +/Length 2219 +/Filter /FlateDecode +>> +stream +xڥˎ6_aIƌH6dvL ˲-ĖIw}EI$7AY,֛UE^d ~Ҳ%!|'V~.Vӷd#etXkToCz^jӾ.XúA$_O.'WyIU:I'ǧv4@OyqSX 1*`*W@XKX?\iFΏ/8_?;%:ڨwP8VIL4ju>¶nKv4kschƋD%'TM\­Eip_o[ۜVBu@`w#[Fr Ǣ= !'${V!T1.9 r  LJ)k HU +|];XDﴇɑ6-Odg 屐E2 BUďlY3-ᄆ^-W~9Y:mE\[ d}O&wm;;u+CQQȪ2N1ްh;.ǴfPVd"a"owuub1"Y 4h3/LZlV6p//mxEmSA/!>; +;qg  X ,|[ Ji9X!$+ S` 9Z?,jEkX Tǂ8X84EW{0#֜xZsiظI$,)Y5HrJ}}z%xpٴ|es:hJ:%D-/T)ڦp\vU=Q`|kUB-vwuA n([{N9H{7ƪ.Ԥ֏TV8 {*6jG!c(ӰG8̈bFɢhʼ=./<-8ApC9AHYw3!-!KR`ڷtmei3]^!̑qN$&>Q7vW7eo/uWky'I3lXoFD}sjyJ>p{k+쬻ՙQuog`{Y&r{& M<ȅ8n)6\{nrʙW`o.{Up?d҅wKEme.ZXn5J_)lgz<=H؝Rv=Ql,)1Og7?ULd(M]H>zѭn/)ߍ|6.4u 0 ?xߨ$N_-Հ8T!'aH6{qUyT"KfF"c"+ҎОھB!g,kSy-y=* ޴ͭd]qMΠ]!O6:Ɖ3]$|B> endobj +1793 0 obj << +/D [1791 0 R /XYZ 54 639 null] +>> endobj +606 0 obj << +/D [1791 0 R /XYZ 54 621 null] +>> endobj +1055 0 obj << +/D [1791 0 R /XYZ 54 469.412 null] +>> endobj +610 0 obj << +/D [1791 0 R /XYZ 54 469.412 null] +>> endobj +1794 0 obj << +/D [1791 0 R /XYZ 54 440.883 null] +>> endobj +614 0 obj << +/D [1791 0 R /XYZ 54 329.326 null] +>> endobj +1795 0 obj << +/D [1791 0 R /XYZ 54 305.252 null] +>> endobj +1796 0 obj << +/D [1791 0 R /XYZ 54 285.025 null] +>> endobj +1797 0 obj << +/D [1791 0 R /XYZ 54 254.779 null] +>> endobj +1798 0 obj << +/D [1791 0 R /XYZ 54 224.534 null] +>> endobj +1799 0 obj << +/D [1791 0 R /XYZ 54 205.691 null] +>> endobj +1800 0 obj << +/D [1791 0 R /XYZ 54 165.981 null] +>> endobj +1801 0 obj << +/D [1791 0 R /XYZ 54 133.799 null] +>> endobj +1802 0 obj << +/D [1791 0 R /XYZ 54 85.263 null] +>> endobj +1790 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1805 0 obj << +/Length 3010 +/Filter /FlateDecode +>> +stream +x]o=¸Z+>vo=m(A[X[r%9%*}EX`MÙpZXHtXnfxdeK+Y'-0O8Y=V~z)V Sr0rR0>JnaP{vQiaWuax70Iga)d_7-6pnP Q|qy"_w~J(sK].mUn2%yB.n1}ɳLctCGyb5sGFۮØ X$s*fA'aV!d +:j58'?GI|BWR:TWxʆi~3gu&%Phv*QG=y{%ahЩսvt}[gB@OmqdKf):2MI|Bu!V}QE&|r`.D0Jdu!ݥXXܭ5WX=fEfW\?$scUhkZyBCP=/wq&yU 66 0%Ś/,.6 @:E4i#IT_1X.yCC6O q@o΄ XoÜ O;v h5;{鋝QoBgA I{3z^!!u)Lʭj%z㶂)Wۖl{\GnSWҌZFYJ鷲( B+=AZEs&iOt*=cggMI>' ³H +zX +E6Tk_>C}g+.E^(W`O[ +I_ףZC|G]Ѯ#jwZ~M\bj[{b[W%M:u/îA}$< + q_ +BWvj76aa cSP`v.!|]oT%L/AWCSUl^$LЩ +SH_}C6Rˁa~|z&%]AdOBVX*OaXaG(\-2ӛ U=z %p.5: ,9dd. Ssh?Q6F7|bUM!#/Ulxv^/XO9(I)G:zw\ݱ9S',vpɬYOO & 41'n_&"c$oϨ@34\p2:<6/l/endstream +endobj +1804 0 obj << +/Type /Page +/Contents 1805 0 R +/Resources 1803 0 R +/MediaBox [0 0 504 666] +/Parent 1773 0 R +>> endobj +1806 0 obj << +/D [1804 0 R /XYZ 54 639 null] +>> endobj +1807 0 obj << +/D [1804 0 R /XYZ 54 599.082 null] +>> endobj +1808 0 obj << +/D [1804 0 R /XYZ 54 437.088 null] +>> endobj +1809 0 obj << +/D [1804 0 R /XYZ 54 357.89 null] +>> endobj +1810 0 obj << +/D [1804 0 R /XYZ 54 325.959 null] +>> endobj +618 0 obj << +/D [1804 0 R /XYZ 54 286.571 null] +>> endobj +1811 0 obj << +/D [1804 0 R /XYZ 54 258.293 null] +>> endobj +622 0 obj << +/D [1804 0 R /XYZ 54 212.686 null] +>> endobj +1812 0 obj << +/D [1804 0 R /XYZ 54 184.574 null] +>> endobj +626 0 obj << +/D [1804 0 R /XYZ 54 149.455 null] +>> endobj +1813 0 obj << +/D [1804 0 R /XYZ 54 123.281 null] +>> endobj +630 0 obj << +/D [1804 0 R /XYZ 54 87.608 null] +>> endobj +1814 0 obj << +/D [1804 0 R /XYZ 54 61.987 null] +>> endobj +1803 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1817 0 obj << +/Length 1214 +/Filter /FlateDecode +>> +stream +xڭWK6W9QZCh n/IZxFwy%ˁ],"g7 iHSAɃlj y7QV3~]L~yU0YЪXGI1/©MD~[|Y).y$sqALC]éIQUhUsQuQG; }84l>Q%N~['fQ*7&22y>7!#CIquOKf#W7/psgMZMc,-)d}KSWrH诳㍃>Q⨎cKޛKI͂%.%:Na@[tjp,Fjaq#l0H`yqM}X~c^ pnvoau^=m~|g7k g@17? /YTD,5/\c:R+WWhPǰ]ЮWu7dltyx=/}ػ~_Wendstream +endobj +1816 0 obj << +/Type /Page +/Contents 1817 0 R +/Resources 1815 0 R +/MediaBox [0 0 504 666] +/Parent 1773 0 R +>> endobj +1818 0 obj << +/D [1816 0 R /XYZ 54 639 null] +>> endobj +634 0 obj << +/D [1816 0 R /XYZ 54 621 null] +>> endobj +1819 0 obj << +/D [1816 0 R /XYZ 54 602.901 null] +>> endobj +638 0 obj << +/D [1816 0 R /XYZ 54 561.62 null] +>> endobj +1820 0 obj << +/D [1816 0 R /XYZ 54 537.282 null] +>> endobj +642 0 obj << +/D [1816 0 R /XYZ 54 507.956 null] +>> endobj +1821 0 obj << +/D [1816 0 R /XYZ 54 483.618 null] +>> endobj +646 0 obj << +/D [1816 0 R /XYZ 54 444.274 null] +>> endobj +1822 0 obj << +/D [1816 0 R /XYZ 54 417.999 null] +>> endobj +650 0 obj << +/D [1816 0 R /XYZ 54 388.673 null] +>> endobj +1823 0 obj << +/D [1816 0 R /XYZ 54 364.335 null] +>> endobj +654 0 obj << +/D [1816 0 R /XYZ 54 324.991 null] +>> endobj +1824 0 obj << +/D [1816 0 R /XYZ 54 298.716 null] +>> endobj +658 0 obj << +/D [1816 0 R /XYZ 54 269.39 null] +>> endobj +1825 0 obj << +/D [1816 0 R /XYZ 54 245.052 null] +>> endobj +662 0 obj << +/D [1816 0 R /XYZ 54 205.708 null] +>> endobj +1826 0 obj << +/D [1816 0 R /XYZ 54 179.433 null] +>> endobj +666 0 obj << +/D [1816 0 R /XYZ 54 150.107 null] +>> endobj +1827 0 obj << +/D [1816 0 R /XYZ 54 125.769 null] +>> endobj +670 0 obj << +/D [1816 0 R /XYZ 54 86.425 null] +>> endobj +1828 0 obj << +/D [1816 0 R /XYZ 54 60.15 null] +>> endobj +1815 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1831 0 obj << +/Length 2103 +/Filter /FlateDecode +>> +stream +xڽYY6~0$kUe)}=H4(WZ[-w.Jm: + 9i4iOv`%9{v?$~FG~-ko]5+fWf`i^AcRn5S|EI4JQ-~X-#Rt2*ipO^L IGy6}߁|Dy*rc?ˣ21?CSTYa [4Sn"EUGS#UuQ!s5zf^W{v@;ۼ T4zH j0o$EQX]d,!0 + C"k 4Ο81MŞ>賟j=~37#ajQg[bBw4ѫ'pmM$>I'u],B]U(#s 2VtLj],m4jQL*xfϙƦEMP "{"]xZS,X + R˻!{(s硫J+ÃIjEPb+K2|$je]]4TN&5yq=|GR xz @͡DqN⧪qM;NKgKnn@i_3 FQP^S'уշIz@Kwĥe]KeSΌw([҆]I=111R^"I\Oh2nȃ̐odo4XŅ-#]`D37ŅX H+nz6ܮ ]1$I2@( +Ⓒ(PpŕP`k *S 4{1v%w O~뉥w!(ٻG h*4C2ژ%aKlл0 d슛3+3$7^>hpܶpqjFiEH Jp 01G6 +nJs>s^j2g7i\.KW$Q\aP;j\G_a*ۏm*%!UުXp{o_ޱ!t-'eE>@>b%镆?r ҟgJgp͈7׫!Ўφo1=; ߎN~nc%,u'VmAQI.["E=endstream +endobj +1830 0 obj << +/Type /Page +/Contents 1831 0 R +/Resources 1829 0 R +/MediaBox [0 0 504 666] +/Parent 1846 0 R +>> endobj +1832 0 obj << +/D [1830 0 R /XYZ 54 639 null] +>> endobj +674 0 obj << +/D [1830 0 R /XYZ 54 621 null] +>> endobj +1833 0 obj << +/D [1830 0 R /XYZ 54 602.901 null] +>> endobj +678 0 obj << +/D [1830 0 R /XYZ 54 560.238 null] +>> endobj +1834 0 obj << +/D [1830 0 R /XYZ 54 532.911 null] +>> endobj +682 0 obj << +/D [1830 0 R /XYZ 54 487.031 null] +>> endobj +1835 0 obj << +/D [1830 0 R /XYZ 54 457.6 null] +>> endobj +686 0 obj << +/D [1830 0 R /XYZ 54 326.326 null] +>> endobj +1836 0 obj << +/D [1830 0 R /XYZ 54 303.925 null] +>> endobj +1837 0 obj << +/D [1830 0 R /XYZ 54 282.796 null] +>> endobj +1838 0 obj << +/D [1830 0 R /XYZ 54 263.605 null] +>> endobj +1839 0 obj << +/D [1830 0 R /XYZ 54 244.414 null] +>> endobj +1840 0 obj << +/D [1830 0 R /XYZ 54 225.223 null] +>> endobj +1841 0 obj << +/D [1830 0 R /XYZ 54 206.031 null] +>> endobj +1842 0 obj << +/D [1830 0 R /XYZ 54 186.84 null] +>> endobj +1843 0 obj << +/D [1830 0 R /XYZ 54 167.649 null] +>> endobj +1844 0 obj << +/D [1830 0 R /XYZ 54 135.949 null] +>> endobj +1845 0 obj << +/D [1830 0 R /XYZ 54 74.209 null] +>> endobj +1829 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1849 0 obj << +/Length 2978 +/Filter /FlateDecode +>> +stream +xڭn_!2prK hJ-qv-R'$gwgf>#MMl6Imp?)YN־zlyySFq +_aAm+|k.?|C' K< "&z?{E~p[2!Gv=18d@+BZIc2!VLL.HWO$TxS)@ ܅Axe]%^=`x-KWwzOlJX Np$ ~;.:b7rI=^vD篟->JoQٗ7ewDh[Phl;˾l;0$Y +WG{c/Ce.LGm ^.g1He.mNF'ҡ[+|KK9zs6tG&"#xGFުm:FdwBV_29cH͙ٓ(U t_Ns)zR3R a倔!z{}; U ǮxX{ǾC,,y9'_oKOv5>_]I9XV٨Py]wwn,I8jձǶ;hͱo}8O +/ 7'"`Vv*C_[[h&v" ?ĕh~t)EeDSӪ.*xǬjbS*#Y5Z^<7^ܛWBl!EX(yyB+gI3XGT1zWbiDأK+RH)'qH  3|8گ{B||X>]\V·y*H>ދ`eV Sf,5(x0oqNʚGBD*ܿz,纔b7  jŽN)կV 7r]4ӳ 9)L5DQ#ԼpDU(vI ³DoCu=YP|/A sQs&ɞ8{mwjP%I/Ek5(P< D͵K9p{E3za?I&F#]O;X[d' %"Oj\E#`RE#hi%iP  +^uDm-X/OgS(kң6Fy\:P8u~y9$L#ӌP~o!t: i%vx+SG%]F){,={(5#0VQȔj48Re] @-r(> endobj +1850 0 obj << +/D [1848 0 R /XYZ 54 639 null] +>> endobj +1851 0 obj << +/D [1848 0 R /XYZ 54 621 null] +>> endobj +1852 0 obj << +/D [1848 0 R /XYZ 54 573.235 null] +>> endobj +1853 0 obj << +/D [1848 0 R /XYZ 54 553.134 null] +>> endobj +1854 0 obj << +/D [1848 0 R /XYZ 54 521.078 null] +>> endobj +1855 0 obj << +/D [1848 0 R /XYZ 54 476.513 null] +>> endobj +690 0 obj << +/D [1848 0 R /XYZ 54 398.428 null] +>> endobj +1856 0 obj << +/D [1848 0 R /XYZ 54 373.18 null] +>> endobj +1857 0 obj << +/D [1848 0 R /XYZ 54 350.588 null] +>> endobj +1858 0 obj << +/D [1848 0 R /XYZ 54 318.532 null] +>> endobj +1859 0 obj << +/D [1848 0 R /XYZ 54 253.101 null] +>> endobj +1847 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1862 0 obj << +/Length 1161 +/Filter /FlateDecode +>> +stream +xڭM6:3(꣗Em :!Ad[lm%ͯCFr Xgė|8<(yGsŵeۮ޼QP"@%1yl/a}̃|R3p +h ]ݚPR^jp)[,,?OHEVlm9K#g[T0"1^y%T/ۆ<F}CY!92 QC;4+Hp*ׂFcݫܵbOxA3,Ʋ7a_p+mR_R*T75;0eRqg25 opq]!-\}G_UK{9=BB4 ABi+QF3l(6fGJp4$)Yf[sZ"墌vY`QERk&1= +MBf[bC871\\Ô/ƷB[ H3Zu,ΐ]/#=px䂌%2$OI'@j1IXpi~|jTLOo;z ˚}Axi5,,a5~tګpc- qng60Q L@TaqJ3"">vx-Xz~)ϑz +Ŵ}d܌:~'45½Q7@]-+UK^L,"5Rؗ|Tuol2]96=3\,^x $c/Hi"iGF\(wO?~ԙngʜt d0'Pg /e`:R,LPmXBQ`{sH0Ժ +73ؒ}ش%b[R#t"áS6!f;{^qAG{/=F c xGJw;soxkY,劳e dA iABKHNgm}9xS[ͺeNE٥An/)ԄBrE¸rs?pp:G>pK:܂jiXUW ժ=Dz(C%m:k -1Zl 6zuendstream +endobj +1861 0 obj << +/Type /Page +/Contents 1862 0 R +/Resources 1860 0 R +/MediaBox [0 0 504 666] +/Parent 1846 0 R +>> endobj +1863 0 obj << +/D [1861 0 R /XYZ 54 639 null] +>> endobj +694 0 obj << +/D [1861 0 R /XYZ 54 621 null] +>> endobj +1864 0 obj << +/D [1861 0 R /XYZ 54 603.316 null] +>> endobj +1865 0 obj << +/D [1861 0 R /XYZ 54 573.428 null] +>> endobj +1866 0 obj << +/D [1861 0 R /XYZ 54 553.558 null] +>> endobj +1867 0 obj << +/D [1861 0 R /XYZ 54 537.563 null] +>> endobj +1868 0 obj << +/D [1861 0 R /XYZ 54 517.693 null] +>> endobj +1869 0 obj << +/D [1861 0 R /XYZ 54 499.207 null] +>> endobj +1870 0 obj << +/D [1861 0 R /XYZ 54 481.827 null] +>> endobj +1871 0 obj << +/D [1861 0 R /XYZ 54 463.895 null] +>> endobj +1872 0 obj << +/D [1861 0 R /XYZ 54 445.408 null] +>> endobj +1873 0 obj << +/D [1861 0 R /XYZ 54 428.029 null] +>> endobj +1874 0 obj << +/D [1861 0 R /XYZ 54 410.096 null] +>> endobj +1860 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1877 0 obj << +/Length 2603 +/Filter /FlateDecode +>> +stream +xڝk6 +XVp8 Ihr@K,9\΋lkb Z-q얫@NǻGYI(wd cUY8ܑL4ci<ߧ1VQi:K ?t犂MJ9l_p '/>}|x48g^ߧi&~BZOē3Nt^MrXpJ\ -ʃ>ƍ(CeiJl61Lngΰא>{Πo=:@4,Nx~4=Ar\:q\Y-s?# 7WCɐWSҶ{rH\z{FfbJW]? "m ڗTL )mFcRE2ܙ>KWEY؁iGbEyֿ0t꤁8r#haV +f\V1:G{jb{i((NA MU 9#5BrHN16` 3U⇠l!xCiBU]3Q Cel>?1# +0ZLЂnO^ m7i$Ig5XMBP})HKFl-}˨: *d%X{@ x3qFI^,N݊=^GDZS>["f>w2fBQutTrݞԆg]x2.ӣc&DcLcGyA%;Ҩڸ=^oذ)ϕ+Ĥ1.0,W"5Y&`,GJYj&OX(&.瑻c}}e!=uy ].oJzdVދ +!^0p .p(ߩ+bQQ&7,^8/ت"vw2$.w%Nk{Nh/T,xYy ^r{[ZF[j2-gƛGg"ȧq@1] Y(iy6a.NmZT\ů葂x"@ `5^GzxzFvcs_д{K&x:&PPܞC<6~yY9O m;^X)i2p=ߦre4qJ&);4(iEZLUΐVH__/$q7s@&kV(w זAke/qWVޞD?{X d?IHM&8#Ld~ܺjNOnӮ{ J?T0 5Zv앀p2W%487"NqMe'*xs#?z]S#΋系n5+mC}-*7W287MsMX~´&z-pv0M~pa #h/TEsE +hi¢enނKgP03٤ nש觞e̔ԋʵUwȝƲF6J:` +f. 0<M 36 +#]qETV^Le3>?=.1q$ j)-60K^ے-ܔ)[n6}QuF.ď }sݒǤ +$2mK- WTz u#rb1@ 9 @ȤG6I%J}GcLzhnkRj3ؕi~ێ^伫{iBmDNƔ ?8 Fmp,+M+[>cU]|T4xR6uX>v؆'42*& +usu_>c< wD m*1UMyFD7H@sɾItmn^/Ys:Fƛo +> endobj +1879 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 275.302 334.723 286.427] +/Subtype/Link/A<> +>> endobj +1880 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [60.752 257.314 282.419 268.439] +/Subtype/Link/A<> +>> endobj +1878 0 obj << +/D [1876 0 R /XYZ 54 639 null] +>> endobj +698 0 obj << +/D [1876 0 R /XYZ 54 621 null] +>> endobj +1056 0 obj << +/D [1876 0 R /XYZ 54 470.016 null] +>> endobj +1881 0 obj << +/D [1876 0 R /XYZ 54 90.994 null] +>> endobj +1882 0 obj << +/D [1876 0 R /XYZ 54 61.051 null] +>> endobj +1875 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F11 1012 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1885 0 obj << +/Length 3640 +/Filter /FlateDecode +>> +stream +xڭ[K6ϯPe&fnI98I#L +Ie ( ܬrՈnC"I/6ook-}n~˓pq@Egeټ{WjY~7Zd02Ax~Ixۮ֡,W8>8xVu{)RvWD=)ryqgJȼW8o~_n|/̳#<&ynn^0. ])-)+V H'xAHϪk=ytvZ0$0˳2֚J`<]kXΚ\J|shO2wMkna"ObW˶ǦiC}{ +SOpy*'x|忯8yeVz2\c=JmS`'ؑnsDYMT~Տ)?$ ^r>Lkn@%&'IxXŀr\waItUAkiq_֑ +hO[Q?mMICWY8<@i#_}Q&)_Nꕆp_Aa +37 +~ +e(acPfQhQ;m(nm5fbߋ4>=|U ˣɄل]GYijΘc(CU<!fhEL$CW#~zMxEAeۣZ.\VT r7+rU`ڼGa*K~@ 3(ɢaDUs#H~j/9}}rO-# +Pm@v16be$~v}p m -B "Y5!O"AF*~(*PD8JEqd.噗n Y 96H3H6y0]jTD\KcC;YG5g^ ] +aNSV0qiD_oDYK( `!qelxvJ)|v.H9ɧ5'HAaݾ0?41^<e-h}d`xviǦ@v {80QsX%^HZ[.2euJqa:A8 b^F=9,mz{Q +vFOyzB|a۟~(7wT>K3wcLfNS5Ƙ*7+m,Ve7ܦ=!0&hxaF6: S #EӷLdS6vI`AuWDvþ亯x:cK2;0(J+beřQ!Wch"úiNM(\}!;PJڦy,mH-o{_*Mjh.=Q=)q&iPo%mTh_mRElssa1:W1=lŭt{Lj_@H! \f yi YRPv r&<0T p}oĢh+:;ƟQYEȷ8x4BЖC,:E$9;.=[=g^g( Fdхak_)؈t%jGVĞR.\EIZsQYt@[]5$ג +~y .=v +>64 Qݩ+ո?z=9pavv-[9*n&itX 0AB 8yiXhwYq(jݑCĞ }1YUƺ=7E8uC;ngֈ?CjbDXFz/RUWCQd'7Tof!A'%?P&F<[B>OCKԷԍ_mkJ3=:䤆k8Sq= sWD`;]qXPeo}ŕm*ZܵPrX.BHdAF|p]75lIS+S5@{QU(ZCh-JdUϿ\2VՌlAh'_9ӞRxu f܊TL25dgf}m]Y7/id +%/\daU~<|4x_#̦lXvb+\@%UA2wmhۼX0eٰ]Lg?\n@KܞGl@57^$T`A4H!N-4?9پ?ixa@>FBjm:h, 7ض<3'P SΉ$sO1sMkn*U^䓹)@G2gKѿN3B?-#Eu7LD +gL22LXa1n^DXt1_Z2r6oS?RוOw:\Ǡ )}_?ᗢ!j|s4\yq@O7Ԝ@#?0HFwLyv lRx(65[ X5+l{ٺtֱݞ]+˟gc 2g8/yiZ{|Rڵ oJ)r =br:=bɉ +%z%sJnt7׮s\Sס'%8 +\D#7tb=T)~/sSHtu2$Ag$pN !k&Ͱrv,1 *5{Aɍ\DNZ(TuRjyXeJVN;0coݓ$|+.lQ]7|L:9MeqB$L2pn*m!m0E!5`=`/oy@,k^p <8쎿kendstream +endobj +1884 0 obj << +/Type /Page +/Contents 1885 0 R +/Resources 1883 0 R +/MediaBox [0 0 504 666] +/Parent 1846 0 R +>> endobj +1886 0 obj << +/D [1884 0 R /XYZ 54 639 null] +>> endobj +1887 0 obj << +/D [1884 0 R /XYZ 54 621 null] +>> endobj +1888 0 obj << +/D [1884 0 R /XYZ 54 599.082 null] +>> endobj +1889 0 obj << +/D [1884 0 R /XYZ 54 568.032 null] +>> endobj +1890 0 obj << +/D [1884 0 R /XYZ 54 547 null] +>> endobj +1891 0 obj << +/D [1884 0 R /XYZ 54 515.397 null] +>> endobj +1892 0 obj << +/D [1884 0 R /XYZ 54 472.945 null] +>> endobj +1893 0 obj << +/D [1884 0 R /XYZ 54 453.297 null] +>> endobj +1894 0 obj << +/D [1884 0 R /XYZ 54 422.801 null] +>> endobj +1895 0 obj << +/D [1884 0 R /XYZ 54 391.751 null] +>> endobj +1896 0 obj << +/D [1884 0 R /XYZ 54 360.701 null] +>> endobj +1897 0 obj << +/D [1884 0 R /XYZ 54 329.651 null] +>> endobj +1898 0 obj << +/D [1884 0 R /XYZ 54 310.557 null] +>> endobj +1899 0 obj << +/D [1884 0 R /XYZ 54 278.953 null] +>> endobj +1900 0 obj << +/D [1884 0 R /XYZ 54 238.439 null] +>> endobj +1901 0 obj << +/D [1884 0 R /XYZ 54 217.407 null] +>> endobj +1902 0 obj << +/D [1884 0 R /XYZ 54 198.312 null] +>> endobj +1903 0 obj << +/D [1884 0 R /XYZ 54 166.709 null] +>> endobj +1904 0 obj << +/D [1884 0 R /XYZ 54 136.212 null] +>> endobj +1905 0 obj << +/D [1884 0 R /XYZ 54 117.118 null] +>> endobj +1906 0 obj << +/D [1884 0 R /XYZ 54 74.113 null] +>> endobj +1883 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1909 0 obj << +/Length 1477 +/Filter /FlateDecode +>> +stream +x}WK6Wp l &S*a ȶj0r>d<]S5HRr$ʼ* v }ZTky[u\y DVf"j<]G4:uٛ"'U\&)o{* +0N⴮*K;V6XgpV׳nNi'9},i)J×)a= r +@>*Вb`O y8O{9spVeσh &OAҰe9փs{g#^$i EA랕^8I*`ީx*Sq'3 og>6y\gC?v#_PLH" ldXA =>֢,gGEYv~ǞxY}3iӏOoQQ| Lr lXD>錽z?I>mkpJPlU  y۩S,T_]S Pg"ڗvF h_qT[}r(^'W,ޞp_8 E\5bu'ZՊ]A"?Vr2Qee>/ +2w񢆑MTHߔbgH@s$RH0Q-ɗ4o8llY\!gMt@zm0Zձc]ٵlʍ+(:.S;ϑŤS'#$JoΎ<6~X"=?Xd#F丽,(øc4gSHl:%twd0 }GPe2 A41vRZ +vFK +|#vrkVznW?]xy!ͧWؤDw=qԎJ^&KB ud\Py+#m| V6PBNgطVvla5\I0;*DyHC > H5)̑;ԏ)"K3t+:{ȏ,u}A4gݠpDR3U!PDCw%%3Wp89 +sBT5/o5^,\"szϩKB_l'g]1{}z@݄z7*&UH=paw^QQ I >A&XC+^SZ+/and{DuCa.穜D^?C$k^C4q +{4]qa[yP?endstream +endobj +1908 0 obj << +/Type /Page +/Contents 1909 0 R +/Resources 1907 0 R +/MediaBox [0 0 504 666] +/Parent 1846 0 R +>> endobj +1910 0 obj << +/D [1908 0 R /XYZ 54 639 null] +>> endobj +1911 0 obj << +/D [1908 0 R /XYZ 54 599.082 null] +>> endobj +1912 0 obj << +/D [1908 0 R /XYZ 54 555.302 null] +>> endobj +1913 0 obj << +/D [1908 0 R /XYZ 54 489.549 null] +>> endobj +1907 0 obj << +/Font << /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1916 0 obj << +/Length 2352 +/Filter /FlateDecode +>> +stream +xڝˎ6_XI=kf2II栶e[hYJrߧ^$ZdX*֓V"C%+&O{ca'b%]?|}/Tj,;Ev|8 +[{wkO<\#=wӟv(Ty8>Йh\?|yӀc< +(rt0,WbBr}yRO ݷ8}C|w(7EAZp^ E~,un̟CTsc +v(6`xr>.W:s LpX3jץA{\U+p%m nB9^a +L/KXyӢ~P'JyRm FO _>b3:&2cNTE0#W4D9aE)0C0jC~-|\%0nEXs/ ֤mT^L>!|7RUF_9%( xKtnBgw%r8W"M\G`p: FS򘢇O0ɀz^DYV/ۆvkFύ| 9՗`rPEC'q"+ l,l[]ɬA_|2(\/QO$3Ǒ)%#L@Y0iHƅw-xi@wLh DnKGS#8M/V];ȑi<&2`& +0.Rn %a}\5;H+AhxP  -C6O\p8!t<*kьDJZ5>0B+|1VbɃJJ '$9꾄lz+:s`BKG@g":Uc0UZ092&'!IJc}^7R0&IBl J|+9ĆJr0hxRij|mn 7lJCV\y6Eٗ<yӌ1Tq˥l{dab=puXQu -WwۊHJ?R |ap%aex(e+HD۽& g=ndUe }Q!\X \Ph#uO|j c 0,If&vsp Sv#S0j"_ye!|#t6gqft-Z0Dظ WdxZ%#{tV{bI%i0:*Ƃ ™*؎1Yn,]u|^7ʖ褧سUܘ[>1ē&+v̆yv4d2}Ne5< +m=2OB4b<^kg'lZT v t!Jk`&/(* ;?<'d^v$zӴoZH^?qFF&h׮|\~@D?DҙNt&*AM g.@ao3]\/ZשGq J_orj%{Ŋlx|Ơjl#4IqP@zTI $6_M (®Q7K~t*9?R ߮,o$U[6>vx`)5NKO&1x 6g 4)رЮvXh]?rm,6Fsu`3A9VäHsʱ:}&K0kF61~<:îJKi[0BˋׯT.=_y?1endstream +endobj +1915 0 obj << +/Type /Page +/Contents 1916 0 R +/Resources 1914 0 R +/MediaBox [0 0 504 666] +/Parent 1918 0 R +>> endobj +1917 0 obj << +/D [1915 0 R /XYZ 54 639 null] +>> endobj +702 0 obj << +/D [1915 0 R /XYZ 54 621 null] +>> endobj +1057 0 obj << +/D [1915 0 R /XYZ 54 465.649 null] +>> endobj +1914 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R /F52 1016 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1921 0 obj << +/Length 1529 +/Filter /FlateDecode +>> +stream +x}Xݏ6 _ᷳYgIR1 Cuhaz>(/1jǙ.GR#ǹ")_?:$ǃ, rMJP\qˉ[, S T,/ O"x~ ѷO?&%Dj[}[8*aR '++rެ>tTgA, +2LQ2 YYLJXC_^\;2V24-N"a*3~`{H=6r .5,l_^Q;06a̚+*|C l+*Mgؔ@m4 3%`tԨx!DX9xBvkEaT#<6MTO1ZM4Ґ_Z%+d`G~{ؓYJ ;rYf7wefE/*Nd [G"QpF$dRs`O25}RB\BwM1Qv5l`.KQ5X[$R{S!̆I PO7}9T0IS3(zj@p.p|ơE"[\h贈"JQ:uw/McG:%:kSy qGY61XͷgCS!ynmX%K{ö,~xUf& Fđ- }nkoL$L,iBwm/XX\XE0 VMr=&S=QӵZ'Ǻ1K}bW-f];鞑յfA[1ʂeqw z2Ơc"ڮ59YxFZwa( ]>=mNfaq>7o41ՉO&{K3=Z 4a,q*#*4ZˊR-;7} )Tep.$)bpz E].#05ulzǃ!"kdqq+_ 1 rbBnL&OWtg>"˩iH%J>wY|endstream +endobj +1920 0 obj << +/Type /Page +/Contents 1921 0 R +/Resources 1919 0 R +/MediaBox [0 0 504 666] +/Parent 1918 0 R +/Annots [ 1923 0 R 1924 0 R 1925 0 R ] +>> endobj +1923 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [118.702 554.029 261.914 565.154] +/Subtype/Link/A<> +>> endobj +1924 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [334.393 512.463 450.996 523.311] +/Subtype/Link/A<> +>> endobj +1925 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [77.91 499.954 126.976 511.909] +/Subtype/Link/A<> +>> endobj +1922 0 obj << +/D [1920 0 R /XYZ 54 639 null] +>> endobj +1919 0 obj << +/Font << /F50 1003 0 R /F14 1032 0 R /F8 1009 0 R /F11 1012 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1928 0 obj << +/Length 1638 +/Filter /FlateDecode +>> +stream +xڭXKF WEbF/Ki&Ea$Bdc(ZN؃!Cr}ZY.)+ O0s:S"EBvݼK-OzK]DZg8Wv7;^Y@?L' Ϯf'ﮣ:%z/gٟ pwx-,E(' !,Y^,.KǍ= +?~/=f1$T>ʼnF>'umvN]J5i!m[sȚU/} /-a?-O-AEGۺm,<>yٺB)8N:iNf;7}7H +ctWr`^7줲eɄ '7t+X2{rٴEY#%3);OeHSW6IAKso+EQ^”K [aT8xhu&S4+FRlliq>O +>Fʩ+tCFDt c5dښҔM閾v֑oPU]Cq6CTϓ+R>%gO"9$\ hdJkn\"D}yOo"VQͨ,},я]!Ij\r5TOs1}6.g4<'V '.9w4=[1u.?ThAtt9?No:%и3; C iB7L|ђwz>`akDW\V U KVvgt>"z*ۙ/>cQff0U3E.4.p&TRmAX O"hW/Y5t.|⑀0d-+\(D<uV$} Ul?/b {bcԥ<0 +¸D@ ~De5@-ø8d [ 08:")?)Cz-`v<%iKǃwV׾re^oVEv{܉<6qM 5AjEb[W>p6wtEw+i()C8<0)&bըM?'7iJԱ%./uh3Cjo @È+Nukʡk>038JE4Cz0"K}ˀBhpU IrZY $"d)1!E%< F19̉>ܘq /Ӹ |gL RNi4BƃŒ |]Y M{2{SͩStfa65=PIVQe7msUNЛ`h.hg$q!ֈVf"/|[GDCQ :Z Kdmk:]&}Ms,\jԣ3 +ݳ:N> endobj +1929 0 obj << +/D [1927 0 R /XYZ 54 639 null] +>> endobj +706 0 obj << +/D [1927 0 R /XYZ 54 621 null] +>> endobj +1058 0 obj << +/D [1927 0 R /XYZ 54 467.344 null] +>> endobj +710 0 obj << +/D [1927 0 R /XYZ 54 467.344 null] +>> endobj +1930 0 obj << +/D [1927 0 R /XYZ 54 437.78 null] +>> endobj +714 0 obj << +/D [1927 0 R /XYZ 54 332.887 null] +>> endobj +1931 0 obj << +/D [1927 0 R /XYZ 54 305.288 null] +>> endobj +718 0 obj << +/D [1927 0 R /XYZ 54 185.283 null] +>> endobj +1932 0 obj << +/D [1927 0 R /XYZ 54 162.749 null] +>> endobj +1926 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1935 0 obj << +/Length 2807 +/Filter /FlateDecode +>> +stream +xڭZoB0}ONK6[׃h%$8(w$%2D<~3k1 ៘Ezlڜ;ˉ#> v{)fI%-2Rh/U{&_hEdqKdʸ  0?Tմ;UM]I4L< +gWH\,"ǯD'Lt4Co50PY:a l9QYl˓:ܯii`kOj" dQP%V 2sIU77$| G;;(TIYc#+k"XZ F0+z},sAhIz5DF}7pBv+l|"!`cb]!#J#Ȧp +# \A8f+~1l4bȆ *r +ۦ,Ֆ3Qmpi?\[8޴<9U MAǷ6Z OH͞s[ؚ =e$6a١@"i%Y : +d_Ir”bIZs!c^~тc59;qSrǾѭhd_0[A6ELԃ]ām!RhAc-ۨPj#ì~=bY:# 7՘A5\)6m)q[w*3DϴTKu[gf7erSxSVcmhl3AVu;%'6O4sl- m84nWv>Aw M#_aִ[·zZHk<B=Rٝn?$1">dVCүD":Z1%S1kD9JM& ܴzJ^#XRK04hIR<UKn)a$pqHtJ*E]ɞ1p 2j1_/`X<r¯cAS`@PǠfMxhF"|s]MU۞AHJ F9N$<8#{;8bBd͔U0&K*y 0Q"9Rp'ާ_9"@6]ƊKpQ`Xhőz(R$T ÒQeسc/{Ws[ c{5Te s擓IJh6DQ +ףptv\Ft ) @MNEU7Ll?-4G!4]ԳWgeƵغjMHϧ@mm7z!ƴ"3RQD-h~ہ.DڽRvOam&*S,jcL M`+|qosdxz+ua|*J;{I蒿;M!:* =+zKӠN:!U]n,m)eoN;Q T8RaibcOBU~c O6RɠT1z9I*b Ԡ4xk 8e/#G9(A`r>jpj"7T d +ÜquoTǕI͹Πuae'S#ތe$,),ߓ7l x̏w.@Z51w zLSlOjqڞEi("Six=ӒqbMwtS{RTn/x!|qv`[j eپȈ;CBJ?MV Í!#endstream +endobj +1934 0 obj << +/Type /Page +/Contents 1935 0 R +/Resources 1933 0 R +/MediaBox [0 0 504 666] +/Parent 1918 0 R +>> endobj +1936 0 obj << +/D [1934 0 R /XYZ 54 639 null] +>> endobj +722 0 obj << +/D [1934 0 R /XYZ 54 621 null] +>> endobj +1937 0 obj << +/D [1934 0 R /XYZ 54 605.89 null] +>> endobj +726 0 obj << +/D [1934 0 R /XYZ 54 488.435 null] +>> endobj +1938 0 obj << +/D [1934 0 R /XYZ 54 461.029 null] +>> endobj +730 0 obj << +/D [1934 0 R /XYZ 54 174.383 null] +>> endobj +1942 0 obj << +/D [1934 0 R /XYZ 54 147.144 null] +>> endobj +1933 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F73 1941 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1946 0 obj << +/Length 1417 +/Filter /FlateDecode +>> +stream +xڭW[F~ϯU_P86 B>OiqCQA̎ͷcq(U.Zl&L9Ø3\(q5Muuƽ}VOo^>y=796_|E41_Ţ㻲*r|S^NNchzۭ} k`3[:{xv6 n.Z՝zj.阵אBc2]IK- JA\x2k>v]mPWՈ<%ƻ*#+j,mX R-BZ?#o70-3ta>:ȘS?pmSˌ)=gBQ'd<4L@/2%8]@k ŌA7qy +-ߗUGx_* B/ޗP+ScMG(WPjX@O,C[RJ0$@G\$Ԫ>`FS(zh(Y Ys$G[r_#;leP S֖xOn#ֿ!NS:mNH?`b\bAwP/Η#ưBѢN5EeLՒ9뾂+(#Tp*ҌYmo ozp^~UlheW,4œ 0hW A$/+$0Xǀzc#[_|{2ȭK:TD*wP t]t;' SLf?ǴN7mCq b/)Zeud=J-{mtCwAJIlF3)wD¤LB1 c'j5~"mJXW:APFkx{9VNuOwsK dZzѓ 6d֛SehaBr*@/nJim񺧝˴ì%v)T=s(61fo*aE(ᘰP0c-̏qgЕ ]OHtL/1v o[.o%2g` g?U.<]~=hZi4> endobj +1943 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/PTEX.FileName (./xslt/figures/note.pdf) +/PTEX.PageNumber 1 +/PTEX.InfoDict 1954 0 R +/Matrix [1 0 0 1 0 0] +/BBox [0 0 27 27] +/Resources << +/ProcSet [ /PDF ] +/ExtGState << +/R4 1955 0 R +>>>> +/Length 1956 0 R +/Filter /FlateDecode +>> +stream +xeUKG)jp/la"$9bPh;'-zUA$ԷbM>ߎ?E^e>uXb#V6.:{z{\]b}#ea?׎~{|"?O.ʀ /41u?x?2\0\ +{ 1l˱L6 ЀxT^xbom"8TYj㴻R@q{* {;DG1$|O}5}biur }Dd:&+X 6;z t o8X=&02oC eD3PMt1CrZ`7umAd'W!=KO(ԤtKb^ *BFmY`UՐ -ݸ<{g T4G&-|{,;z~zfOH%βK/ÇlM(88 -ٸ!$KӐK1(՝U?Dp КI,`bIQVܬXU W;}W}\bf^NΈN-US*z\<8Sj.1)ʟd.'@\{h.)@ʈX*0ޣ#¹S@,` ` sƢss~wt`1{br,): qNKQpHB 60%DDe,@VP%k ݠC`eE 2e-Zv} +E7GͺlT$Ɗ8p@WXDȅdo*=,_|` +Fp/7uQkϱshA[JJgI1Kr!lx) L\hhp_D1I/9MBh`b`}Ae|Tb |Œ-U*DXFWiRܳn> +endobj +1955 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +/SA true +>> +endobj +1956 0 obj +1053 +endobj +1947 0 obj << +/D [1945 0 R /XYZ 54 639 null] +>> endobj +1944 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F8 1009 0 R /F73 1941 0 R /F75 1950 0 R /F76 1953 0 R >> +/XObject << /Im1 1943 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1959 0 obj << +/Length 167 +/Filter /FlateDecode +>> +stream +xڍ;0 +ɐy+ 1ԅ}YI>'Ap\6 +g$ð!zsjYbMw)1h'(&>E4s[7> .WyWl.8R8vB4S ]? Ԫ|Z8endstream +endobj +1958 0 obj << +/Type /Page +/Contents 1959 0 R +/Resources 1957 0 R +/MediaBox [0 0 504 666] +/Parent 1918 0 R +>> endobj +734 0 obj << +/D [1958 0 R /XYZ 54 444.886 null] +>> endobj +1957 0 obj << +/Font << /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1962 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1961 0 obj << +/Type /Page +/Contents 1962 0 R +/Resources 1960 0 R +/MediaBox [0 0 504 666] +/Parent 1963 0 R +>> endobj +1960 0 obj << +/ProcSet [ /PDF ] +>> endobj +1966 0 obj << +/Length 2189 +/Filter /FlateDecode +>> +stream +xڥX[s~jF7xgc'Wr b$r8m8Jͥ/_G>( +GqVŕ?WZv4iꇟthx!dXnmUՓiC_=?8F_~AWƾtT\R4]ͯ/%;)1RKL_L#z EA&-~L[űzp\5"L>qK#AYRM5<[uuN*/Y`/oq2Cc1^"$, Ic 𬟨j%MЃu18ѽ#mzɌs۱o FĤm^LjC`3S7AnV+֮+05V;;Wk0oL%HtlG<_u[W)N[!n ucZ&ok^V/(ͷ^Â7jES_Q5J|kl!+@Jkײ0.&_e"6 6 6jf!/x5SPeu^uܦQĒ7m7 Ƒ+z';0Y;5LujZsy4?dҢx$3J*]fꅢ`*UDM]u:N,o&Rw;+񈌎_1q ]\%3x hYzc1>>,Ofk2x~ANi׬]^P@1'"x/3u| +|w}ÏwBR.QiU4V0Ip Q{^F +sBHvMiUVՔ{fUpPXqICp1QF׈rusRQ>1  ߖ)#յeVuCi9N|?X>$G9w_GF3_=Tuw:0) GE ԓՙY HU.y HzAEJ@ED{kV ybyw1;inCYẢcyA,Τ9eǀ u)nP-}lW36VvW1`uX+i [*ޚzzF߆y`f_jCUJ*x\#Tq\go2 t&3kp^zpjδӎ.`LRԄ.W~P2ި\ƒy@kj>{!׎ h;?6[{R :Xƌ1!' VDep"u&zjDJrcF: @*xrgkj#kj.pX\;68k鹔A,Ba*f|5<{ga$aFO XWNȋ]Ϗj.PЃ){%zGSe% 'ǖѳ&&F种~/"j+Rf<OJ A>M #4F%KWG(hĩ3=q>wxԳ2a)0gFoS,;` .!~{q_YR_A~%Ek5+r6@aޮ$АL⬜|RoA=;dgI X9w0F_DIJzGP=n]ϥLIendstream +endobj +1965 0 obj << +/Type /Page +/Contents 1966 0 R +/Resources 1964 0 R +/MediaBox [0 0 504 666] +/Parent 1963 0 R +>> endobj +1967 0 obj << +/D [1965 0 R /XYZ 54 639 null] +>> endobj +1968 0 obj << +/D [1965 0 R /XYZ 54 621 null] +>> endobj +738 0 obj << +/D [1965 0 R /XYZ 54 621 null] +>> endobj +1059 0 obj << +/D [1965 0 R /XYZ 54 465.686 null] +>> endobj +742 0 obj << +/D [1965 0 R /XYZ 54 465.686 null] +>> endobj +1969 0 obj << +/D [1965 0 R /XYZ 54 435.294 null] +>> endobj +1964 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1972 0 obj << +/Length 3372 +/Filter /FlateDecode +>> +stream +xڭks6T,y:K/Ijwr3m?-L*IE}u&DX, Y,g)f*+%3 ZW߿IY?ҶXIW?}FYR\u(l~sza$uwEl*h^`8eXeC z}/@W4Rx?~#?]E)Qb\"q}uwoᦸ̡XrĢCJt(J۷[p KIJgZgMWs__$ Rv([1|8{.wL -d`~LV +]𮮖&S8Rmh`P5N;Qm] KVX_`wsfZn3;-TJAK׼Lȿdm̄mbPSCq%X@Е̻JȰ[7]W"Z{lpljay@Z _}lzش oB?㏪'qܱhK3go}'|sYj{/Tj`F<D,QAthՖЀ[F0R 0.$j HJ 0u% ηIx2aybnt0sS Cb4MEA2 ytdrʭ:v.E !ȺBBI^9ʏ5eyaYPe:,b_8\ r*no_Ιj֤MQ(QkZ@v08|`YpJvb+9kB(dDW$O>RVM(G\P}d~(0QBRʼn~Ūa5 28/BWZLd@n en?4bG1߄yѽ];tMJ{DqAL {Grhނ!ioxT.I_DuW9Af9 ?$  5E"018d|6! +.EN[8NE=Nv_$BX|[}ىF6\rHo芔B LQɀ{9oՒC.ta]g+SƵ ;OQT'?oLgIoC"a8]*{2(VjqpQx'@yYcxo;JBּWcX0wڞL1Ͽi-D]d(-dUCScsd@ey"p=nR,Iޏd +$wnq}\Wd)J?HBD@3~ ia _NkqXB۱wފC!륜~a#Պ2<ד7ԓu2ӿg_ NpE%Έ$!ĺd7Ox+Ј8XhoC7vjwI+Qw N0Ӹnq.: ԫxWZ3/MIFO3%"D*;9?0V\ _EbBǁaդ=+[h۴/egqH(.qӔHdx&!g0`R 7?㸤 $p&uϹqr_I[WMK8hy;5t`!c-8اl]6|vPx.>dcȘOQ{ӝDLaG=&T*n"_|LB5x0:lfuvԴTa #N=u/&E`bab?u=p 0xFm0_z +zGW=b"$# #[{}u6~|@8ܖW$q(ϼ?PsF+Whr8 (j0#xf>yJNn<8vqMfI _⼚L>vTk'{mGmϡ4ƿohVtZEʝߎ-LZ̴7t~qr s+3H݌0tkĴfe e2/(I9~Xechg{g,˫p, +J!=JjǏS|OP,(<> endobj +1973 0 obj << +/D [1971 0 R /XYZ 54 639 null] +>> endobj +746 0 obj << +/D [1971 0 R /XYZ 54 371.931 null] +>> endobj +1974 0 obj << +/D [1971 0 R /XYZ 54 347.083 null] +>> endobj +750 0 obj << +/D [1971 0 R /XYZ 54 229.792 null] +>> endobj +1975 0 obj << +/D [1971 0 R /XYZ 54 204.944 null] +>> endobj +1970 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F16 1026 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1978 0 obj << +/Length 2578 +/Filter /FlateDecode +>> +stream +xڭY[o~ϯ"J}v".p<}-%щl')9vP,7 xx&L*Z<䗫Xzе>Ef%*L ~ n:*luwҌ", 2J +8aaOY2x]({˓hQd5lDJf/// ΫKaŨW-*0׫(e8B; +\tI_庼4:qH1)Q84;U]Z'Q V_DŁ%}|4n+U8yBgGFm:A$IGO,ʋXֳޚtj]͆`3e8LQVEe͎}P#Z_MGeSGOm(,0o @<͐D)#B lc3P v*Ӕ0)t0xqǺj@/;_c68[nCG,Q Ge>hn?Fӎ*,mY|@=(k#2{lV~nՍmEG'&hIkzR;u+FuY;?R\M&|w~҈t5aVރ(ܠ:/pt3P%@jZy )R$Elbef_ @ q]h3[J2c$ R f ]Qչ'ڎNġۮ$4ALQLчl1jZ +%C8cP7@~UVyX_ Pиfo\ uנ5$0G ˚EFx|^x!rV%4p=J޽l@8(&^ƶ0RS3 +iA {ՈnlxW/ H/UB(/,lX/48G 1!VEQ728 sU[K/]幛) S@Ym^F<;Ed'!'],!"eђ%S$40צe#vakinaO)thr{gő_\E(/…>#QR3LtNXW=:$7"peQۙ>w)e -?Sz*פ0%Bagd#ySU@C>\`p#UN*~ D鐱B{5uE[Wfcie/ŽasC÷d" + +Y~yӸtuGqFZ\:ٓv@UZ~Xʿ;( * t!^J W=D,t+W4"-^t0aQcC"u+,60Sv|!y3-|whk3⠝(,m[+ +xnVtzr$![j$wS0$H_챭zί2WیRa1`{8yc0JEea;$}UZ'% +lY~GBf G1>1MA)z@xE%o<*Q*? Qh!ue,8HȞPO~=WXϖ?.뙎tT =Z|g8-wDu^Qu[Hr5{ں؎B83$< uޒ)vsRy[2/Yv*x{Y ^/ç8tM 9 aZ;vF|xP&ЪQ[Yu} Yd7/gWNk搟nƉ/>_3endstream +endobj +1977 0 obj << +/Type /Page +/Contents 1978 0 R +/Resources 1976 0 R +/MediaBox [0 0 504 666] +/Parent 1963 0 R +>> endobj +1979 0 obj << +/D [1977 0 R /XYZ 54 639 null] +>> endobj +754 0 obj << +/D [1977 0 R /XYZ 54 521.297 null] +>> endobj +1980 0 obj << +/D [1977 0 R /XYZ 54 492.83 null] +>> endobj +758 0 obj << +/D [1977 0 R /XYZ 54 492.83 null] +>> endobj +1981 0 obj << +/D [1977 0 R /XYZ 54 467.712 null] +>> endobj +762 0 obj << +/D [1977 0 R /XYZ 54 419.379 null] +>> endobj +1982 0 obj << +/D [1977 0 R /XYZ 54 396.004 null] +>> endobj +766 0 obj << +/D [1977 0 R /XYZ 54 267.343 null] +>> endobj +1983 0 obj << +/D [1977 0 R /XYZ 54 242.031 null] +>> endobj +770 0 obj << +/D [1977 0 R /XYZ 54 152.291 null] +>> endobj +1984 0 obj << +/D [1977 0 R /XYZ 54 126.342 null] +>> endobj +774 0 obj << +/D [1977 0 R /XYZ 54 126.342 null] +>> endobj +1985 0 obj << +/D [1977 0 R /XYZ 54 98.706 null] +>> endobj +1976 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F14 1032 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1988 0 obj << +/Length 2448 +/Filter /FlateDecode +>> +stream +xڽYYo8~ϯmk߼IzgrlD:<5Io]XAhEb_o?o8H&̝ -1}ۋկ^8t 8nWڂݏW#6>WnR$lwbvo^Oϸ&K-3K xr&Ѽ4ta=nqO! ՚klשʯU$2z*擼hB;᭲;S_ ߗ.#ui!Hlqz^>ܼ ػ?І1$$,endstream +endobj +1987 0 obj << +/Type /Page +/Contents 1988 0 R +/Resources 1986 0 R +/MediaBox [0 0 504 666] +/Parent 1963 0 R +>> endobj +1989 0 obj << +/D [1987 0 R /XYZ 54 639 null] +>> endobj +778 0 obj << +/D [1987 0 R /XYZ 54 621 null] +>> endobj +1990 0 obj << +/D [1987 0 R /XYZ 54 605.89 null] +>> endobj +782 0 obj << +/D [1987 0 R /XYZ 54 483.23 null] +>> endobj +1991 0 obj << +/D [1987 0 R /XYZ 54 455.045 null] +>> endobj +1986 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1994 0 obj << +/Length 1400 +/Filter /FlateDecode +>> +stream +xڍWo6_XEI0 ]Eaߺb%:JID5l#~D$wGZ-#S4YfX"Z> % 6B{[6,݁8LsU߂ިkԸ'"P$.¨РTl6O`΋[P +hY +HoE{yy!FŇ8Y߾G +B]gXG*eE&kxX5s]\L~]FeKE(ErUQa1J|)<ajh!)F"H'Qqr״8^ysjpa, u #33ABiT`$ْͥdFv'ڎDB {$dqQ82=\o$H3ʁв*y0{8!5?Nat[A'r!h. M1N$+#,zR{%N3Ԕt0Zo*+{\o3N~Ѡ^(sC83A30Q4$@N,0u1M8ˮ|?NbՀ@@ ~uB.l'ͷ)h¬8 &@K=gb(]-a\ TFuRx+6㟮 ;=f? +lZ YPVԂ gr|׬x7k+eƅ ((m̔d'JZK@ݖ"q <5D,*{0W::F+hb +Ls5ej+MdNxb\r|UX2"jt4%MTHMl|ݭAϝ{(4pG$홀a54 ڨV2͗d8I/HP^X78/d} Ud )ӎLuԕ֘Im6:9 >dy9m.`âyJF +C5&Ýj3վmP`Egz) 43y jJ%ͣH|qa_>X0M >ϸWN:l^lCơk}[ u??kW)Nx@Tz.'W]ѐJյ7zda|$p!%$p}/>fo.܋RC'<džʎoG8gzc>H{7~{l4_7ӍIpz^l)ӨlTY2z> endobj +1995 0 obj << +/D [1993 0 R /XYZ 54 639 null] +>> endobj +786 0 obj << +/D [1993 0 R /XYZ 54 621 null] +>> endobj +1996 0 obj << +/D [1993 0 R /XYZ 54 600.798 null] +>> endobj +1992 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1999 0 obj << +/Length 2168 +/Filter /FlateDecode +>> +stream +xڭَF]_>xeYpcbهl`P5", +I[G7em 6뾚82Xgnj$bx^ؘ(Oѳq6P2D1To&Odd >ybӃQ Hopy +GXBfx7"hF4@ -tu +SceJQ1 e" +E؇[(7W ^<^f{DX*E i*"])2 ,JǙbmϨXDaFg曲Lɂ'Sî@^:MU"hٔ Ԉ/]]Z\D!Pž!{v{/- +n\wא<^Ψ'$6;g]`' 0!ژ o)b'?o%_CPe|l,q%k &m]^es:/Pm!+y&uݒ@G:{iERdrOsfC0z'2 lŰbĖNc*Mۯo%4G*:,0yDx>ܽe|rGͺKTk4S[ֆD!V}eR)T@X$ҞjCS.8WJ*l3j( Ka)nK5RiB\W`Dh"@Hؖf<*"XHP N/Gk AK b8ܗI@0D*3$RIBK 嚡%?-WW%tsY/Wnh8e*@/')zj5sESU(3 n`SV3( /|AWj()m!f/DGl"* +!ڼm/"j +0qe縃[%&yNs>l'=/ME'IL id`X Y|ț~zxf=pd NI+9A'! :ba> endobj +2000 0 obj << +/D [1998 0 R /XYZ 54 639 null] +>> endobj +790 0 obj << +/D [1998 0 R /XYZ 54 621 null] +>> endobj +1060 0 obj << +/D [1998 0 R /XYZ 54 468.416 null] +>> endobj +794 0 obj << +/D [1998 0 R /XYZ 54 468.416 null] +>> endobj +2001 0 obj << +/D [1998 0 R /XYZ 54 441.907 null] +>> endobj +798 0 obj << +/D [1998 0 R /XYZ 54 368.461 null] +>> endobj +2002 0 obj << +/D [1998 0 R /XYZ 54 343.889 null] +>> endobj +1997 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2006 0 obj << +/Length 610 +/Filter /FlateDecode +>> +stream +xڭU0,B$G6@6A[heymWdH>^*x7")O2]25LOyd*R({$Ul4 Jh_ۼsgZ‚3/QCB ia?˶yZ󟻶}҂9B@MXIщ|eėL: c Iy:aytBQU5C#s1i +{5ZL@Rnv_Ue.6d3\Y"WIe|jzJsEQj ƩsMWd8b#5ܿMrU3lǑlfᕍ)JhOQBR5Q[Kr@5bys0i /8lxS$yqn΃D[ه0=b*р5ٮ&:Z/so?wX+%PNXw);KKqh!,XXRCԵ7DZ .- PS'.&z>P/t#Qzqh~@8WnRV?}c%lQеഉڟ?EE.ҫ}endstream +endobj +2005 0 obj << +/Type /Page +/Contents 2006 0 R +/Resources 2004 0 R +/MediaBox [0 0 504 666] +/Parent 2003 0 R +>> endobj +2007 0 obj << +/D [2005 0 R /XYZ 54 639 null] +>> endobj +2004 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2010 0 obj << +/Length 1038 +/Filter /FlateDecode +>> +stream +xڭVoF ~_G.ҡC(C4j} +CZ,y%<YvbGH~1@HW8GܯHkyb!R:"*] !ƂI|)|,cvfIB.Ɵ,ぃ>9(fҦ nj[F.)'ף=$$LA qŒ4i2%\].PIwq_.l9?. 4<sq˒ 귂_cXaE~@5,hv?<z9D>0L&>2}xDLķ5)Zvb^vXf!K!g|,p9D*5>! n3ܒ\ ÍSNa'Z*toԞ+ꁹfZ%xX0f X,}Tl#ID+vl" ZW"$jнu绡ŢYx%.IClPnh4NE`2YzZZN@ K-ORԃlXn|1H*آeDi޵d*"7ުYǹkiy^Ե,g뻋gm(quC"*sg !^Kcت׷Z$b\'mhT"=g(0 *Y@&YJ2> endobj +2011 0 obj << +/D [2009 0 R /XYZ 54 639 null] +>> endobj +802 0 obj << +/D [2009 0 R /XYZ 54 621 null] +>> endobj +1087 0 obj << +/D [2009 0 R /XYZ 54 468.681 null] +>> endobj +806 0 obj << +/D [2009 0 R /XYZ 54 468.681 null] +>> endobj +2012 0 obj << +/D [2009 0 R /XYZ 54 439.067 null] +>> endobj +810 0 obj << +/D [2009 0 R /XYZ 54 439.067 null] +>> endobj +2013 0 obj << +/D [2009 0 R /XYZ 54 416.177 null] +>> endobj +2008 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2016 0 obj << +/Length 1000 +/Filter /FlateDecode +>> +stream +xWmFί/:X0RܹUƉL%,K^*=/q{WKN'vgw}avcӁ?lLc~ˏ+6,z&6.6g(q.<!̲֊Nll[Ul)~#=Bpq#Dv6QaUF- +pb›>Ջ9כe%]Wv)U7 EK-;yIj;ggek" Ҳt\ !Çw76fXkP^R2i*23KD[K{ff 1S58Lӱ[W?߬: PrJ h+ 0ʸsN[,/}Lb^i}j#_:^߼]޴lz5?W Y3XWB'~ x-"_b"[)Q{,7LQd8^ְ3e 8ÿIdxv9}wUSv +B`R9X$(b4a򗷷jgx,&\vPW]UV W*C&n<=U;xLCq$ĺ]*wXm;ظZTwp-l">4bL4UGю! +`g&Tވ8!4B<uO}x9_~;{L~h^0.wDAN--S}xJ*> endobj +2017 0 obj << +/D [2015 0 R /XYZ 54 639 null] +>> endobj +2014 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2020 0 obj << +/Length 1867 +/Filter /FlateDecode +>> +stream +xXYoF~ׯ*I cz- Z\I +I;.uQ[( ogٝ30"HcB.{[q KV0W#!W3 +Bš?^F'^L76M&xxNV^Mg9Ʋ^r2GÆN`1 q$N EYecUc"+A4}3{iEcko?ZQ;€W4i,-FjO$^v1zўM;qȤk[&0Z .B ϓy5L;Of\6U/kQ,ĿiY9etEږ{Deމאoc~QnV?FRfY{ cO=B$tBLS\Ց&׳"TȲ,>p\~`c㸖$p:m܌<8F>{aNkh<:ieY JFmlGq +8_)o`80 +B#6( \HA{ޣ)cXc]+^OF+r|ķ5c;FR_x`)o乁5vUμ>9"?VKֆCr#>0 brlKU=iX#3:PtkLwD4@!J<֝@BɫnPw O8endstream +endobj +2019 0 obj << +/Type /Page +/Contents 2020 0 R +/Resources 2018 0 R +/MediaBox [0 0 504 666] +/Parent 2003 0 R +>> endobj +2021 0 obj << +/D [2019 0 R /XYZ 54 639 null] +>> endobj +814 0 obj << +/D [2019 0 R /XYZ 54 345.249 null] +>> endobj +2022 0 obj << +/D [2019 0 R /XYZ 54 318.481 null] +>> endobj +2018 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F16 1026 0 R /F8 1009 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2025 0 obj << +/Length 1948 +/Filter /FlateDecode +>> +stream +xڭXmoH_Tʖ݅U>URjsw/ҩ,lpܩfۡ./3;Ga0\?7oGx噽ѫ FxTFO$s=,Z:92}ND +G$Pdwp0p.qmV'|tօ.,3;2QGWs8йw`c<6mo+6`飫J LњXf5\2 +RΧ[*SDMߍ|e[Ux(ϨXbݒڗNxgEUNosdFyϹTex6:`Q὇% Jx>x *RtM{Ñm!`/5XvQ\2`DVwZT[w mpҵ01v6]uv됳hFۗ b/SUTؚ֯2L..X +=kH-"Þ^P?,ka0`=XWІ^R $Aix 6+6;covQA$|HQ,ID{TRǠm-j6δAT")b-xJbFa&p=8elJUΨ9F5SX߻jos]$=Uݨahl[D1nX  Ya@삪1gdX b!,}äo}\$ AXࡌI7;L,ueQT%~e8q#/kH' gǁ.zT ?{}ɋDɘkҼ&5r0cDY@ey Aq/`Sۢ4 ݽBLN߂ќ#A`xdȑ[O`^HsԏM8tH7X˯pQG5ֵFC3:}hțGL3wbp< zG +M:qҒ<Pic̴@ex #j7q(;׶bB$É>4[fԙFW WnW(i!g>O(f@x(`O|&89ϩݍ~endstream +endobj +2024 0 obj << +/Type /Page +/Contents 2025 0 R +/Resources 2023 0 R +/MediaBox [0 0 504 666] +/Parent 2003 0 R +>> endobj +2026 0 obj << +/D [2024 0 R /XYZ 54 639 null] +>> endobj +818 0 obj << +/D [2024 0 R /XYZ 54 533.392 null] +>> endobj +2027 0 obj << +/D [2024 0 R /XYZ 54 494.457 null] +>> endobj +822 0 obj << +/D [2024 0 R /XYZ 54 494.457 null] +>> endobj +2028 0 obj << +/D [2024 0 R /XYZ 54 467.725 null] +>> endobj +2023 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2031 0 obj << +/Length 1851 +/Filter /FlateDecode +>> +stream +xڭXmo8 _˜`Q-ٲ!ewִkxĹ}ð~(/q:C\")CʼkJ9;_u5ÍdvJJ/sߝ.>[㷂wPPEIL§up+ 7Q +ܷN&Z댦Xtl. 9*ó͸RUQyL:w6轣76S>xL^b6W%CŸdSߊ1[9ݒ=?FeOP9}Yq-{܊ k]z_82[IH[[f-Y19>_l|A%G( :Oi̥ a=BL]K)s8 +(v| +jD ".Wre\HV=jIvZG J`r3mTa-\/G}MP1m!r'h.^Րı#A; F1f&@i*cVFemݩx4*`ْgl9p]*Q6gv~MTVkT.SC@4EA2F(K ZxDPuG{ +2n!\mnߨJQl`§,b r)$}:K6vVM& d绎K)}LI*73ﳳ/M@y^G dPǣ)8I> ]̦b8/F鏗ڷm6 R:OZÏ?rxܧ]LqJOz ?o' xX/ mI"p tBǗ>}xB>ggs,ǫlpz97gU!qx4|(ݮbGs0`Έrttvx2}]Lޝ ḇk$\J`Xo{Jٸ`QmIӱí{(oGxuܼkY$X&XMa!h @?5^YH€Cq}:QXn4اf;0[2L~] VwT57jg9ŔД@XQ{րVԺJŭfĴ90p?gtCr[zq<|[aN _=>%&>c5>WKPT{_73w!YCR.s֍2UO0Ru8ts$s]hBS-!r'dVGvv͟J@Bm?F5n)ٮBsRA6 onbl6׵U::&PK؀ +I*&_LLqs > endobj +2032 0 obj << +/D [2030 0 R /XYZ 54 639 null] +>> endobj +826 0 obj << +/D [2030 0 R /XYZ 54 303.548 null] +>> endobj +2033 0 obj << +/D [2030 0 R /XYZ 54 277.753 null] +>> endobj +2029 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F52 1016 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2037 0 obj << +/Length 1967 +/Filter /FlateDecode +>> +stream +xY{oD?"pyٷBzhrrHⒸwWߝݵclj/@;˺]-hޡya)aלu#GĮ(o_A Y0{,([~~gWkKxLh,@2.`'ZCXy BHZD.\r yy~ SB._gT#r*On6)Ԏ I0Nyfgyh7z&FB{>916DSo;xסDĦƔ8;"~< :?2ܼJ=\yF]+F~mb󐱵͈wkGj 4nC`҈[ŠMN/9㲻<.]dgfK,PyVx1U@ 22MMQDjU8z*N!ĥjx; `Ꟊs0tNF{3$/'eԦY"zdHT_{'Tp1 +n=~g~:C,nVdJ%vyēуq' (vMJ. `Fk#E֗;= 3"2nVl+ +[`)В9 9 ǁE?{$P &+3A93jS6Nv~ +0A-P@9>N|Mӹw΀Y4R[qdTtku=E +$㽄̭_ƶPpUX/)\jl9ʬk!fzzqi`?`j'<X|X×dOM$( +([>*l(hǦ ފ+ eUid ƭ³d{LFֽ-D15U^TE&FU_lVm(5S*hP<`pE$:%ѸyQbϙm{Ԯܫ+1n[A;Fj"ߺj*'9YM1d /S=\m:2]iX$V"QMZG>#~k)VFn^^ j.bI$ Z!-h"A/>J%*i&!V֥_g}Oԛnu))JZA6E,V :#/b&6sFsw?ţ꛶|:N',R\+s^}?uzޜ ^_Q@;±bᮘ^92{ʄ`͌JP_;ܚ/&yq%soϫoP&}|Fxd:K8x dulqv> endobj +2038 0 obj << +/D [2036 0 R /XYZ 54 639 null] +>> endobj +2035 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F11 1012 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2041 0 obj << +/Length 1103 +/Filter /FlateDecode +>> +stream +xXmsF_L';/&DM:IÈS@Ы#=†`:4t^akWq9FBHs boGq8Xח7l&0<[~X6eyg-fn]d^ڃ@Dg< v>~v|~q cp =-O;λ5pw.ķ/ٌcPe3̛ɔ+)ERNP"@XȘ9YBmeɌW4Rhybu SW y!ް)+PqQϓK9-3q v'O!\56>mxCpO}I{_-3?ӞYoozw?I`_{{:{29 C1h cޚ?6Ŭ Uendstream +endobj +2040 0 obj << +/Type /Page +/Contents 2041 0 R +/Resources 2039 0 R +/MediaBox [0 0 504 666] +/Parent 2034 0 R +>> endobj +2042 0 obj << +/D [2040 0 R /XYZ 54 639 null] +>> endobj +2039 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2045 0 obj << +/Length 2585 +/Filter /FlateDecode +>> +stream +xZmoۺ_ad_fN.&C\lI ErbԱ}%'i?sHJ,IjCsE"Qc#%GZG,Li\>ld5˅%9Q qEğrJ,./l\g~Ň7W.Oz/NO8<6EMY>rZڟa6[PUe\0ҴԴ~<*APziKMmU},/K2ܭwíH狥k=dQJ'N}aKtQUJO9kX)#x+qfh`RV}^b6l66j=ޡs*ϳ_xEZF8VаJ*A!ڛK + PQı3'', Ah]ݤIC,Zv ڝLjvSfLfAEbB(6E}>q3\ ǘ%4w.#^%V%H4?H"0V$ z.i}r;j|~LN% E˒mp}#>oj a,`܌<-!|:>^ᮟ Sm얦5A {z}~( +HIhrִҷ0D ^Cz]gkLBD U-b|9Qd/n; -pB + +E:Zޤy[YC~ݙT@[w`VY-$ +8͍J47˶kPX5K ĉ5w 4iV%=.ĠkrM4pl~%V+D+pVk:P;tJtSi挊ZGМ!CY!#+$"%Ȋ#hHp24I@#" +4EFMԿ +#8痎!@ݭvmoΉobT(+t2 efQ`6ۂ@Ɨ[ܑi U2 +FKp{;[\S"Y2Ьj0L 7Jc+ 1a&kazr*x^# Z B>@Ÿ zzSbEH iqٛq+5B^#2ծ#+چš$ b$`Mk`mcЕE $ B,`E14ucPVbxq~Sa{ny$TF^8<q@DL*〚Tb +.~-Z  ko18j~MNA&~*ۘA_ab! yFSgJ"WԀm//n]>7(йA$_>`^w@>DJLg, CEiA*ܵBQ‡RW򂀁cZo1Rom衄l)7 gxBߴ0D €6sXXK 0\ ]٧p0V x)(˶h0V#0Q{ce#>6leiw>z>2џk{|l>S؈cʗS[=4֣:}-~q#Mc?}x,E^NJ͟C_}Lj[N*`EYYEj. ~l{I*bh(y/ ݲ$g%%Vh\sjKvZ+JK(bӫ-5~U +XQ^!oXLEb`gw[;,94 XX;fDYY3,AhX1Z}:̅$&P XQjPӠmϣkN] iqeH^수e*]vMjwTL-ܗk "@40xcӧ˯w?Pެ澰IjHp %ybT lQ(H:@V#qNz8-mJ{7+X2 oǸ +:e~ k/yK3Fps`25{` n2nU`BRή~WoN?e-ۆ,uLp4Z~|Y`> endobj +2046 0 obj << +/D [2044 0 R /XYZ 54 639 null] +>> endobj +830 0 obj << +/D [2044 0 R /XYZ 54 464.481 null] +>> endobj +2047 0 obj << +/D [2044 0 R /XYZ 54 436.291 null] +>> endobj +834 0 obj << +/D [2044 0 R /XYZ 54 436.291 null] +>> endobj +2048 0 obj << +/D [2044 0 R /XYZ 54 413.388 null] +>> endobj +2049 0 obj << +/D [2044 0 R /XYZ 54 413.388 null] +>> endobj +2050 0 obj << +/D [2044 0 R /XYZ 54 359.407 null] +>> endobj +2051 0 obj << +/D [2044 0 R /XYZ 54 329.502 null] +>> endobj +2052 0 obj << +/D [2044 0 R /XYZ 54 299.597 null] +>> endobj +2053 0 obj << +/D [2044 0 R /XYZ 54 269.692 null] +>> endobj +2043 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F16 1026 0 R /F8 1009 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2056 0 obj << +/Length 599 +/Filter /FlateDecode +>> +stream +xڭ[o0j)eRM&A5bi>CCT1#~JB~ƅ)w?uaM汏G-/M"_yX\OF3XE,Ԓ?[ n7 vLc]KkpԬl㌶}?Ehw +I%{!e]]Odc)>şs%.D!|Sh{}tB/8us'(/endstream +endobj +2055 0 obj << +/Type /Page +/Contents 2056 0 R +/Resources 2054 0 R +/MediaBox [0 0 504 666] +/Parent 2034 0 R +>> endobj +2057 0 obj << +/D [2055 0 R /XYZ 54 639 null] +>> endobj +2054 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2060 0 obj << +/Length 2723 +/Filter /FlateDecode +>> +stream +xڵZoFB藕k2G]IE"l%Q2:\v9!EI€Erf5!ـHohܝrf lVyVd4fe1bٯjEH"%<"4@0ӈ C}1|{UߌBz`~o}1Q >S=r/l c%BK:@‹HyyS.g!)CU<V`_(Q8ה(D췒~.vKz O͔WEgP9yh,Ǐ0xmR$𳞯m=FER~ MRolY̋s@p7`8d'?mNFf$#f'Gj `c=ΘCDpf/wXR^m89{!ِ-"eFOf6{XOwY=I# JL?dui98kMdZMOz&%8ۦE(kF徹~S Tf|Y?edj1^ř]aK\+4mix#YZ}FeTíXk-\}0%c< + -:(w mF\y!82Z it̬&4ޯZ Pց)䳴x5pPh P+S:&3}aYƦe#TG85,x,Ciךte+""!kÚ%̛U&]UjGX]-cXJ iX m98{X*%8_xWnv9?$χrz_;3xb6$]PSR;OէhCe]F R]ZUtEkc6M:P +7 +l65XИ؃^$v* +&7M@u;*aa-~$}T掋ؘ"]ӄ6|E=y )jZ=C2z($j/s,׍o& TCi;2\Bc['C% &s` V8ުDE-asqXbH,a,⇻} I݉q7*Yf]CӋ㰇s"]{~!v <;%;gky)mMnr| b>a@;Ď6.() em +~=Uc@=٧47C=Y3}s'ŀNbK RIf^#dEPRO"+߀{NfڼR[N4MsjJ(Li$$}y.y4nia|>Fd^(O"'4| dO쁸I2KU|t:K5DJwJA;O&c,kU~ε!KD9aLbҤcIaU_QJ;otITEv7v8nZg%PF?.:/֥EP1+ζ:޷e܇ýӘ58WkEuj( YRPNçݼ,fwxg!g!P>]P>-oTnu6& X=7 +}뵑пx̐e) 9(A0(]bNlz^cuTExrl:;.<5dT T< ڱ6Q*is~D\zئek\0 6[lp]>@0 Y̾h?Yn%͛=P-,XY)ߤӖ8&`@n8h@y+xBɡ_RnPz_QZZ*ϝΔiB":BIlPVni۫5?pV|s1RD{7 ,?9PK'- bnb^OcO֣M;Fsendstream +endobj +2059 0 obj << +/Type /Page +/Contents 2060 0 R +/Resources 2058 0 R +/MediaBox [0 0 504 666] +/Parent 2034 0 R +/Annots [ 2066 0 R ] +>> endobj +2066 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [832.1 161.026 903.112 174.974] +/Subtype /Link +/A << /S /GoTo /D (modules) >> +>> endobj +2061 0 obj << +/D [2059 0 R /XYZ 54 639 null] +>> endobj +2062 0 obj << +/D [2059 0 R /XYZ 54 369.316 null] +>> endobj +2063 0 obj << +/D [2059 0 R /XYZ 54 347.583 null] +>> endobj +2064 0 obj << +/D [2059 0 R /XYZ 54 251.814 null] +>> endobj +2065 0 obj << +/D [2059 0 R /XYZ 54 205.175 null] +>> endobj +2067 0 obj << +/D [2059 0 R /XYZ 54 162.023 null] +>> endobj +2058 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R /F11 1012 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2070 0 obj << +/Length 1001 +/Filter /FlateDecode +>> +stream +xڭVmoHί"U#CX`*IUIM(,6ͺNҞw] MS3<3;m#:J9jDd@;[Ճ:9AxٍC1l&gL-:0tgdd%zܸZDk +8M-|>}8l#m\KNŐu7ON}bٮSsoh8pF?O3Y{-/XiLqK^Hd5\{V% cPybqoS!-E'PbͧrntB.0@ie!B1>T+"*ԞY]S9 Jfls_C$&NE(D$t縖OHwE%WrK2|=}QrEDe? +1[xRʗwyڏ"ꡙ ?sjדˏxI+$%K'}^JMP9{[,=?MT$(s#c»N͛ae.Xx)1^Z|A{}Vw9endstream +endobj +2069 0 obj << +/Type /Page +/Contents 2070 0 R +/Resources 2068 0 R +/MediaBox [0 0 504 666] +/Parent 2072 0 R +>> endobj +2071 0 obj << +/D [2069 0 R /XYZ 54 639 null] +>> endobj +2068 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2075 0 obj << +/Length 982 +/Filter /FlateDecode +>> +stream +xڽV]F}W}–aXӨv8muUJ"D` +x7i{g N(,a~{fnÏ螫4Гfw0J#jń%S]mC +зr[[ذIg +|] +с8hfQ OSLFS=H/xF7 q, 0سSLL]jQBezC4?oq9 +rFB-44_ŞE`A]" oonHE}E IY҈Neu$=PFE>tSV+}\)U> endobj +2076 0 obj << +/D [2074 0 R /XYZ 54 639 null] +>> endobj +2073 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2079 0 obj << +/Length 1587 +/Filter /FlateDecode +>> +stream +xڭWyo6ߟ+A."F$uv؀Mi50-ŒcIr {ȎP&{%:.oz ''P\ |>9|xD$ΗtW"<,bJ}=|4YU 竳yUm˼/#*tyvtHav₶Paiԡ]w`G¸` +_oc}49Ss]fN u+J\Z;?F*uK!H@!4oP 1C}rp]zso>dsJn;NL~밿OOidYϨKnp뼢A9G$Y#\~9ӗx(2N%E>_+LrO:EZ}E? ,S+F-Wco9o {~*~x0z)4㚩V}5abkûM?>SHl0ke?$5-endstream +endobj +2078 0 obj << +/Type /Page +/Contents 2079 0 R +/Resources 2077 0 R +/MediaBox [0 0 504 666] +/Parent 2072 0 R +>> endobj +2080 0 obj << +/D [2078 0 R /XYZ 54 639 null] +>> endobj +2081 0 obj << +/D [2078 0 R /XYZ 54 431.71 null] +>> endobj +2082 0 obj << +/D [2078 0 R /XYZ 54 309.789 null] +>> endobj +838 0 obj << +/D [2078 0 R /XYZ 54 219.254 null] +>> endobj +2083 0 obj << +/D [2078 0 R /XYZ 54 192.783 null] +>> endobj +842 0 obj << +/D [2078 0 R /XYZ 54 192.783 null] +>> endobj +2084 0 obj << +/D [2078 0 R /XYZ 54 164.596 null] +>> endobj +2077 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2087 0 obj << +/Length 1044 +/Filter /FlateDecode +>> +stream +xڅV[o6~Pj8RuV,)Z` +CS-^$ѕ&s|)4 #>[ +t&Af`.TpW 5"{y&A.<+eZmQ,0b5Zl(deR"L&*3bZaD%8B"`LPxZmfq}{()d4u +؛,G8+2hY,1Xn$PPth-47er%v6[U[u#4aů=?\<F8UIq  +J/scva\գ_{:x5UK0v>e0Y5UςohS&Um1|:[E }VXi +}RU{JbhGOÇ1r5:{~J@4ϤRs$eQβ$򡢓Xćp +#";d[|4]Qz>aV)4SylKD/p4P2#8Ǻqv7vb-9g\mv% N'ҰS9؜H̤ k9k``% H1`/jM +.8%d 8H'5iFBhe`Iѝ)G3$`5ۓD xC Ua< )xSCPVg~ [š#`7aQ2t1UK>(&~=C{;f'>u>-$G6.A sQ%A`)kؔ~•˧5Qbʮi p3/l/eQF:1)A[Cd +Sؖyc5ȇ߯,u]E2h+j%ɥY?k];.G=oTf>Sv+D+|'6Q~Ys4qD$å6I vUw~w?継y>WE33$T/2VRendstream +endobj +2086 0 obj << +/Type /Page +/Contents 2087 0 R +/Resources 2085 0 R +/MediaBox [0 0 504 666] +/Parent 2072 0 R +>> endobj +2088 0 obj << +/D [2086 0 R /XYZ 54 639 null] +>> endobj +846 0 obj << +/D [2086 0 R /XYZ 54 621 null] +>> endobj +2089 0 obj << +/D [2086 0 R /XYZ 54 603.565 null] +>> endobj +2085 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2092 0 obj << +/Length 1272 +/Filter /FlateDecode +>> +stream +xWnH}W@hl6ffFN!Ŗ*=]!]UtDP!X+*̈́pZ *<›][@lE#=W#xWrID,h&:1DK߽ϓAZic*y*; +q]a36UbgݱAmȦ)n6K \cUbGI& ,q>Y.pɛ?-.\,pe0 +I6؊ + +g#@~АU҉HD sZ:GL lM!Nńp`}"۳\AX泋wigQqt{d! o*љf 4W, k~(Cu"ŇԱc2Z),Gq}[W\<]ޱutL=M5U>1ZQ2PEZ d@ UZtcZ.'8Tkg{E̻` , @U L3yH*˶%ipSaj$ H!?^1ǻGĴuDR-efa$*ɄV㲵Qٸ)َ05dUE]Mu0j#XcRbڸ}T +rJ#L=):d/A<5[n$&:(_D/Mi὘jxWjzϔ O nBa6JՕ_왂-ӏsU35X0 S-3ndъU|RRKs//h!MI1/_)b,s7b DU hhfUϘ47\ &g;eF)*|9dӳAL|ZA-A(O*C D '@EֶRxHz?hJ6۠wdZ"ү7g,i#`)i2]dÍգ (w}Pfendstream +endobj +2091 0 obj << +/Type /Page +/Contents 2092 0 R +/Resources 2090 0 R +/MediaBox [0 0 504 666] +/Parent 2072 0 R +>> endobj +2093 0 obj << +/D [2091 0 R /XYZ 54 639 null] +>> endobj +850 0 obj << +/D [2091 0 R /XYZ 54 621 null] +>> endobj +1088 0 obj << +/D [2091 0 R /XYZ 54 470.108 null] +>> endobj +854 0 obj << +/D [2091 0 R /XYZ 54 470.108 null] +>> endobj +2094 0 obj << +/D [2091 0 R /XYZ 54 444.445 null] +>> endobj +858 0 obj << +/D [2091 0 R /XYZ 54 319.268 null] +>> endobj +2095 0 obj << +/D [2091 0 R /XYZ 54 296.096 null] +>> endobj +2090 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2098 0 obj << +/Length 1132 +/Filter /FlateDecode +>> +stream +xڝVsF_[B''UӦjƪ4Ü$1 !ݻCˮnwG >bxЈ{=)C 5ݴ7!ƥ^ӹr `|3oyHXߧD`"Nh!d ,j9~Q˜e!<9l#!M\ ,Ok~FBxŴ)Dq $,[]ms4@k.5L*f%\fY4ڨCٗO?Mƚi$nAڈB2jş<+E+vsW z? {gXy,RizeQfdFBˋfmXYOT #cG#C-7\D{a猅c磐i_3o}"_u[ A9h KV_Bw5͍.gȱh^gY\QDI +gű8INh ">PѾBv=8Q4NEǐcN@JTeh,7һ%I%{1?hwtS~WWGendstream +endobj +2097 0 obj << +/Type /Page +/Contents 2098 0 R +/Resources 2096 0 R +/MediaBox [0 0 504 666] +/Parent 2072 0 R +>> endobj +2099 0 obj << +/D [2097 0 R /XYZ 54 639 null] +>> endobj +862 0 obj << +/D [2097 0 R /XYZ 54 197.488 null] +>> endobj +2100 0 obj << +/D [2097 0 R /XYZ 54 171.182 null] +>> endobj +2096 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2103 0 obj << +/Length 1287 +/Filter /FlateDecode +>> +stream +xڭms6W2 O4I{4Ӟ6hwn|w%;djZ͆?.G6Q#& jttuZdEMgbX~8֦'=eItf|~s\r71"QldzMbR z+xl6 KXI UFiO'⊣i0'_F>Z}ٖWh"m9r@/CѰWY,9XJ>k)RrMer O9q[O~8U4E໓-yWw$ЈDx/@kyĶ8b?pm@0g", +X$tASpB++5^OW 0Ԙ0. N&F#Zk1ʮaʸ呡mhw fk&G6#lVte +KKL>%uEQX-Cm.MXڞ\#ۈbEG/"r6qu^tth؜uy\d…{>>͓j޹@\UT> %lwml*$T[8rz=<7?/vS甧 8˳}A!6 jwx11sOtΥЇ@v !+liqMjtsOȺ7/*Iʁ/f_.gA?⭝Zd'"Uy D^PIc}Pk`?6)gRnk/ Hb\*Ip6gQw==/LD\ +- 0HJx@ l\Wz-eRY/:1ro,^%_)fMUMMc_k[ks_[Skr.E NYv5\C_$"jLX17%'>{aUrQ~'%/"eV͐RX܋blBh`L ,QUVR֟o2DFԨh`+U+&،T*U_u}+VoaI᢬h*. )/+pi/Oˡ}]ʒ 2Yd k,L}p/_k/&nZ[ʟzdendstream +endobj +2102 0 obj << +/Type /Page +/Contents 2103 0 R +/Resources 2101 0 R +/MediaBox [0 0 504 666] +/Parent 2107 0 R +>> endobj +2104 0 obj << +/D [2102 0 R /XYZ 54 639 null] +>> endobj +866 0 obj << +/D [2102 0 R /XYZ 54 511.201 null] +>> endobj +2105 0 obj << +/D [2102 0 R /XYZ 54 482.501 null] +>> endobj +870 0 obj << +/D [2102 0 R /XYZ 54 204.8 null] +>> endobj +2106 0 obj << +/D [2102 0 R /XYZ 54 176.1 null] +>> endobj +2101 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F16 1026 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2110 0 obj << +/Length 2053 +/Filter /FlateDecode +>> +stream +xڭYs6~_P>tҹMMm'v<4YPﷻXPD9T@÷łSrXeb={a"yfSsf@N?K7KZ~¯'ͥW3k7?ъ/2ȸ@*c+gnfA浀4(r*anޗ A$lp~CQ&onHԏD3.@&WY:}eMܯ&&f\ef Ԟݢ`G28XJ_(cWWyD^4mgtu|c*tw'(N4%CVIHMU/Vh 1gEՂC,I}nȮm]2b3zY0cyIs6 :Dǐ^i +y(.&pk#l1##l!c=AǡKWA4L&6 ~"/bez*I=3pDjma\A@BHBqռR;}E~uYq#UEr^ /~;wqPa wO{d!r{H^p%ƒ(@!Sco%x1%ՂWf՛*/q( q,/PR] vX% 4/VW b$e!8;r}D֑A) +];bV׉O)lo*HE[#s?rE#1jO»W*A^8luBIwt("v]]كcmP2 ½bh. +i~D, :̏d:솜Ky\/!WDr^0xg"`@J "hi1\zLE{ď."P+G +'y1 6\Q" KXxXOhQQ\ +(.ݸL΍8J.;Sq_TH"%*|h1@H!mk_ z8SGtL+HQH?SEy{iuiyck)tHgy8u{}Սqw3M7oGқ;)d4?q-)CfY՝ē> endobj +2111 0 obj << +/D [2109 0 R /XYZ 54 639 null] +>> endobj +874 0 obj << +/D [2109 0 R /XYZ 54 249.324 null] +>> endobj +2112 0 obj << +/D [2109 0 R /XYZ 54 221.152 null] +>> endobj +2108 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R /F73 1941 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2115 0 obj << +/Length 2030 +/Filter /FlateDecode +>> +stream +xڝnFЃ)rf im + !ɁhE:'k%€yzß^2 {в <'6Q/rf$_T:^n8塸_i/:ԑէū@b"eᓿ׷ _y|t/ ⯁\(Ta +k: NAR˂a 6{R%w ?!\BITk$2hHi8}߻%ߪmQ 7}?U{bj2Wy + Q:`E(NxQ|ήHJ^|uT˺:3H]Z)/کD^u*ȀojmqNjNme'࢓w>trC6kXr@{x;Ah ft%澩„x/DĀ!'Q#(lQg"?-xR g^ +p2F}#S'`4(﨧,3e#(sRpqՋh>cDޚtp ~ ɶaGT{v4tOM.en} a3ʨne{N4e. zim +^bsNW;*HM+B> EE";0jߴcPSAm6\MwY) +8 i%0Bm 5zn"E9ca1[ؘXa%0f%:$kbB.iadu1Z>";tXl8ٙDa'CC(9%.Qc̱u2ҎX͋u',+qP`H1KYs SA18liVDa81) b5t,Mj~V@%m=݈2# u -ɔ@̩$ y'԰bٕ&%-0 9hZ˙j̤p< B]X9PnK[adN9`A-Az(QIS<=-'gCgVG@xJ,2 ^  I \yb1֞Hi:#6T 5u +eԦᶶ47gT%|Ԇz-P=w=m>I^#l#ke*0Fͅ h3mv6\m0碾98<>p"U"o5/ronPBXQјL< C¦N$OgHcα1)y1+ 6" IBQ8D2n(9g&B2iF]+ uI0'/T$N݊. lݟc3((~jÂ$a%x}1 {Xޱ;wMUTvl:Y&6=l=TWb];WTŲ [?I>kB:bOԗd-ݔ_ +r[mWl4Ĉϛf hMz0ىuJb*dIU#*j$mA(>$ %ʗ>-س+Nqr\)TD2u2(NWK34Ҿi:Zc/JTn;Of?B0#7s]qƆ1I),AAoՕԨNiQLkkڝUֳloOEЩF:K)=@endstream +endobj +2114 0 obj << +/Type /Page +/Contents 2115 0 R +/Resources 2113 0 R +/MediaBox [0 0 504 666] +/Parent 2107 0 R +>> endobj +2116 0 obj << +/D [2114 0 R /XYZ 54 639 null] +>> endobj +878 0 obj << +/D [2114 0 R /XYZ 54 621 null] +>> endobj +1089 0 obj << +/D [2114 0 R /XYZ 54 469.183 null] +>> endobj +882 0 obj << +/D [2114 0 R /XYZ 54 469.183 null] +>> endobj +2117 0 obj << +/D [2114 0 R /XYZ 54 440.539 null] +>> endobj +2118 0 obj << +/D [2114 0 R /XYZ 54 410.207 null] +>> endobj +2119 0 obj << +/D [2114 0 R /XYZ 54 392.356 null] +>> endobj +2120 0 obj << +/D [2114 0 R /XYZ 54 373.398 null] +>> endobj +2121 0 obj << +/D [2114 0 R /XYZ 54 354.993 null] +>> endobj +2122 0 obj << +/D [2114 0 R /XYZ 54 306.782 null] +>> endobj +2123 0 obj << +/D [2114 0 R /XYZ 54 290.314 null] +>> endobj +2124 0 obj << +/D [2114 0 R /XYZ 54 271.91 null] +>> endobj +886 0 obj << +/D [2114 0 R /XYZ 54 208.396 null] +>> endobj +2125 0 obj << +/D [2114 0 R /XYZ 54 184.457 null] +>> endobj +2126 0 obj << +/D [2114 0 R /XYZ 54 144.466 null] +>> endobj +2127 0 obj << +/D [2114 0 R /XYZ 54 124.124 null] +>> endobj +2128 0 obj << +/D [2114 0 R /XYZ 54 93.764 null] +>> endobj +2129 0 obj << +/D [2114 0 R /XYZ 54 62.851 null] +>> endobj +2113 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2132 0 obj << +/Length 1471 +/Filter /FlateDecode +>> +stream +xWY6~E}hM(@Qd@ZgRPA<Ù~rXg|7 [X}&v7J?K[:*?Ja(>R(qާ;:YAA3!҇Okq]<[(?צzHYǺ`.@O*?h:9q f? 8n:K{̲n؎هQl9Gs),<0 tbEOP eMx[8NDskZ,xG`x_°$0Ii?Ib!Y :<%…l`@i͎{]5"x*O0)xx fŭZMz*T}U%kOe|Yi@ +T$jz)+"Ϧ@׷q|#ux5F*rG[W6\Dr¿͡ڸ [BrQ.Vu$>_8b< 1Hnz$HiMYIb\:oUՠ-&Jqi7@ǰrmb*L#\(!ʚښznڸ=*=.EuO)1H&|VGcmbA"t̑<;|" +wa3ή9 ; |.4<[2bp>LOÔB6^q tkK-{#匄^'R +9U\w|O^$bWbl!CC{_񌛠nlkj}m> endobj +2133 0 obj << +/D [2131 0 R /XYZ 54 639 null] +>> endobj +890 0 obj << +/D [2131 0 R /XYZ 54 621 null] +>> endobj +2134 0 obj << +/D [2131 0 R /XYZ 54 603.565 null] +>> endobj +894 0 obj << +/D [2131 0 R /XYZ 54 328.749 null] +>> endobj +2135 0 obj << +/D [2131 0 R /XYZ 54 305.648 null] +>> endobj +2130 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2138 0 obj << +/Length 1693 +/Filter /FlateDecode +>> +stream +xڍXKo8WfUdHEŢ^h[qRjIeɑ"Cp!86$(Hn>z>Y%x~Kیt6C?z8yt,;_y?mnqfo2?Ue8,Ra[Se歊|$B%o +.aQa*ƛQ%2.G_Fg0=ʆm`}#, T nicGk=r/ f[TkƴeU#Ǣc,e&`@]iJ+0](4--]nWd^Ea5w9oX"  +vש7Ln&0RL};ծX17X;m +lS#IwwXR D][xw,\dmNQշrt78}qꎖ 1ƛ;Izn +ϺϚ.k!SE8tԻ O +l@0t_/2[Q{IGQM1A(h +CS؟Br*_a Lu"͉9D|o1NʲmtۅI{s[[ \zd?l7bٷ;p0}ggĴ>;-#겓[*@o뜇}7iq_/ۚx@ Q;=[[;X^\ޜ\$h褋Έi]tZsQG%V6*vX#T,F%4\ڹ)$8]c +baQE:u61t#! ێ ǽ!\spղwmDmȖK1n>Ԉ!$T>Hrx3s +I8$%H$49QGT,Ȃq`lÚgy[sW_)Qi=әyh>/vZ]pj/=v=w|1Q y +ccՑ}uZs}>Q6K):hg qr- ?f##oY r^Մ"e{jQ:4PZSk4YTIIg}-{|<%3h}wh`uCn?"LuȤ. PR6$\T٠/wQ4LGN QOQˀ[1#ƚ tvd7KpmqP?%Roݲ?+6S~ 홗0 [zl7mǩ=%]H 8bkL +sQemIh ;}Zಷ rV@:Ln@W;xendstream +endobj +2137 0 obj << +/Type /Page +/Contents 2138 0 R +/Resources 2136 0 R +/MediaBox [0 0 504 666] +/Parent 2107 0 R +>> endobj +2139 0 obj << +/D [2137 0 R /XYZ 54 639 null] +>> endobj +898 0 obj << +/D [2137 0 R /XYZ 54 416.697 null] +>> endobj +2140 0 obj << +/D [2137 0 R /XYZ 54 388.525 null] +>> endobj +2141 0 obj << +/D [2137 0 R /XYZ 54 275.532 null] +>> endobj +2142 0 obj << +/D [2137 0 R /XYZ 54 245.09 null] +>> endobj +2143 0 obj << +/D [2137 0 R /XYZ 54 227.711 null] +>> endobj +2144 0 obj << +/D [2137 0 R /XYZ 54 199.76 null] +>> endobj +902 0 obj << +/D [2137 0 R /XYZ 54 143.631 null] +>> endobj +2145 0 obj << +/D [2137 0 R /XYZ 54 120.716 null] +>> endobj +2136 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F8 1009 0 R /F16 1026 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2148 0 obj << +/Length 1476 +/Filter /FlateDecode +>> +stream +xڝW[oH~WXyY{mJ} 4j]4&`B#s_TmWs?gf ++5+@\x}; %5g&يƒ tZٳ] e;~lkM6?qe "sX-vA*5|rcיF/ m]!Fk,q˥˗h.-ƚ`)U+U `AC (r&T Ndf)K-שL&b$2tIdUZD +<uljS7r(7j}"*PyzX}c2DE m@wE t1ĺ>L.\ጱ9l:3D͸ޒdʄ>+֮d섍:`bXzR;^H׮B;>d2m4O8*]fdhMI_hW!w3UlKcʋ(gpg?4(5QvMm p]h^ʌ8(M`w\Lǂ {2Hs@3hpEҏ 3d +#bƁ!ul@71csd3xjLvYSy/߇*> endobj +2149 0 obj << +/D [2147 0 R /XYZ 54 639 null] +>> endobj +906 0 obj << +/D [2147 0 R /XYZ 54 621 null] +>> endobj +1090 0 obj << +/D [2147 0 R /XYZ 54 469.226 null] +>> endobj +910 0 obj << +/D [2147 0 R /XYZ 54 469.226 null] +>> endobj +2150 0 obj << +/D [2147 0 R /XYZ 54 443.122 null] +>> endobj +2146 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2153 0 obj << +/Length 1030 +/Filter /FlateDecode +>> +stream +xmVMoH W(kEtm.Crh{cEXIcKxGd;5d8!ȡy!E^zvzi]DdEG+wix^,,v~VU߻o_ 2N s}YF>II$n|B@7OG:ҁ` _vsG?ޞrȽ3a.bf]}Rܧ#oo鈢 L2}36*bt M,W񣯱IHz整B'J%Ҷ6 +wP=f5TEn80jl'(%u. j n"N,cN #0!\"ef $ak䐻ղ%~ʓHiσ@,C֍wd-KP+g]!B*vs8oKW0q73ybot4e8lh["wQW 5qwXåJ3'FI!.I^LbUUq|;r7ѓc2Cm!Ԯ GtY͋U\)eemz[.xɍ uAH!ad;L kxP@{j<ʎ `JMA+5ҼϜA{4NbcMWhT\K\Zx޴-=jX)+qFzxVR.kRe0%%Dj\IX",A ry8R]l*\ SO%N_*n-p)YO.ɝ]ey/ "R]^4*cQ~Jw}^^s )M +j:'uFC sZqNs +2P{t#D"w䮶|ijx~yp?̃%aߥ}5K|%q)v5 +emkf|> endobj +2154 0 obj << +/D [2152 0 R /XYZ 54 639 null] +>> endobj +2151 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2158 0 obj << +/Length 2181 +/Filter /FlateDecode +>> +stream +xڥXK6W{ Ī"ͦmIci6Hr^+ɡAp8ڟ{Zͣ0o3o/3_V4Rio]?mf?s?v_7$ \Mro iz }oW^lЩv Ff38i2?s4fz{/ +0RTo a&:&޼X}yAw6<~H)돋w}EQ u$!9V/?~ +L?pS$GG|s^Ke9 'BUd)[m l2P=sNC'/*  yT7|kJ`1; /.2㵏 +0Ӷ:Mkșt4M眑Erd* Z ]8M&%ݙ$EرJP-nHs|^1E6g &' ܤXʜƢcKf˿m[< {֘ΨALjKO_[ +C:j2x= yDomRWӛ=GE lO> +rϏf[C@5򞝊мK-Ģ#Լ֏c$S* %1C"JnduOpCO!PԨ dEلÆ[qϾsռqNu DR;1peH%9wԋI؋hOȶ{b K~Ǝ:!ZSx89('1[0nj8I o=qX$]=ao0xFJ0|Z 36WǝP:V @3CnX8$Bl[?xˆ^(b @ ` #"g\O|͐wQ²'#MRN:Ah8r|UH*rߖ;}p0p8 ԓHš+U4AC5qe>B{8 k }ץ%0avϚ 8h64y#sk .H7*FzOV9[E>A5m,V<ٲvaHjY6ДbN6hTr`lIS,D%g(O_ RGyBEX!2r@D*Ƿ֬6*8Ρyv0;}6aynw{)u"S4g9SEw]gUd3aKJs[L=V5HV#!Ef6:l +u..],A; ٌwTePr/HAºt3Ւ-qhe} =F^)d~<î]WW0^wD^nn{sV;!n郋WPԛHG&sZ\tz '(U ᯶VqM)%X4ɟ*tnWv8(wk<m?endstream +endobj +2157 0 obj << +/Type /Page +/Contents 2158 0 R +/Resources 2156 0 R +/MediaBox [0 0 504 666] +/Parent 2155 0 R +>> endobj +2159 0 obj << +/D [2157 0 R /XYZ 54 639 null] +>> endobj +914 0 obj << +/D [2157 0 R /XYZ 54 621 null] +>> endobj +1091 0 obj << +/D [2157 0 R /XYZ 54 439.23 null] +>> endobj +918 0 obj << +/D [2157 0 R /XYZ 54 439.23 null] +>> endobj +2160 0 obj << +/D [2157 0 R /XYZ 54 413.072 null] +>> endobj +922 0 obj << +/D [2157 0 R /XYZ 54 310.341 null] +>> endobj +2161 0 obj << +/D [2157 0 R /XYZ 54 286.121 null] +>> endobj +2156 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2164 0 obj << +/Length 2955 +/Filter /FlateDecode +>> +stream +xڥnF_p7?,Y4 mE\4@,)RKRq fHt:@8sf/C*4Hta7J [mf.WFzue&$^]7{U($$lUz?hC=S u!JV r/0:_ 짌#pQ_PEHw=b<"_!w!|{:MV0=ӍN#W7n~r{Ng@`&S)wu,xǷ< f +xp"]@%=33Na#.]A㷪MU<Ңl{0F$|X +o t-W>.Zf`z@ -b?ހ+u[vPh 8% 4p!;!CƯsrh&Ѥ +H$"_i> +Q1tj((v/U֗vL-e1Q "Z?f;ά[A;gHZC!D'q``MxTzWeqSDYNWe8~,?F-}A6o6aQR[xa{ ɂM䁺NfdF5Sk5 '/#V-۩PMKR1ߗT|AzZR!ќbe* U;2mHj 1"Ja0DyǞhI38@rq7_JسƦ[) ۢ l*dks瑓Ha#k(53 3{Y/x Hg|em]<6}:4uVl @b*qn=؄R>UN+n@o Ms)CvNqOY/Ʉs  3s9Jm=MX L"%j0BPN[~KXWZAX4'A4'3t/ڒ" DR^u ֍=ŽeR0=P w`ğ5GՊ$6sBv?xѨkikqՅ"I0-=ΥD jIEV*~ 4U/aCIęC "*c(=t vaxhd09cqx&/LeΕ3[.h}KtTB=@Kzu%DU OJ]@Qʨބ(bjGq@cYtoP΁Ɵq@_ܻfaTa&'wy4֗$9ҧ[jO^sTBQfL<%A]ZFd$M7S_:]t ϡL<^;^GqGhV0.aj֌r-Efڌps`0!*4ز/$Sɕdy94D}VC%m I^([]nbFesX"mH*P R"콤kgxp˩n:[+dW% v9d28{q6,JYnP}{O eW,F:kzO'3%o_VږB :Q`{d pv\MUwMLz:d( 8G#;j[&&zlN|5I #^ֶЩ Z|/ ÑsIUi97V gx\F,._(QK%h,5%AZM%Ni˟pBvN60&3 4?R1xpoҵɳjelwd#B^bٟh0Śe\ݠԈh#;}q8I_%Jwls 3Mo^Nb:eaa~eaݻ6 +-/_CK)mא-VV:8\4XPs:FD G2|yOb&q^}m5rn|7x\;>xMu;S#X#U\[DJ nh񹘸CLY#nv8hKStE\iHL!Gl}t%{ X 6և=A4jZ +~/PE&BEx)m9kzkJ=JpW1t:vt>QGdlC*h:zbn?\>} G˔5> endobj +2165 0 obj << +/D [2163 0 R /XYZ 54 639 null] +>> endobj +926 0 obj << +/D [2163 0 R /XYZ 54 405.388 null] +>> endobj +2166 0 obj << +/D [2163 0 R /XYZ 54 378.494 null] +>> endobj +2167 0 obj << +/D [2163 0 R /XYZ 54 378.494 null] +>> endobj +2162 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F52 1016 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2170 0 obj << +/Length 2470 +/Filter /FlateDecode +>> +stream +xڍn_!e)rxbgjJ%b)!){=En˜93R " +q-+o^)؇Z$n,Dnѹ/+lrJ|k'H,\/ 3($BCq+/9wo;o +q*}-2` BqbV"Տks:hƞ~-vp蟮<7{ʲ*byexz+yF +A8sL-b\/`=nͩȏR<}K~=X]SΏtRm=iJV85]@{gHuN`n2Q+B妡6KI Z/s 5'a؀82rN1n*r("P^[ $l&i$J DENҕ{\.1>yS0.@^j+?qE\w*$eA(u~\dX[ +s`bF.lR-@/(D{~Z/Ĺ[&%nk>K[V yn +>™}y [ـ3:EmʁǢ6]N s-CBk\,&AxL/fi'LtMJq'1ᷲ?L0g[*,YcJ4t@?|_o~?~tLrHT rıʎǫ(e:pѿrtijD3M{YFi%VZ.-AF6ѹlۃXVPT .zePjU}i67n.4_tTO>6"=*||h6PR=F޼@,?aC3%C)ٸUԊ;N#w#tĖX +*[^gYjτ Hp̉2>a_DȇE/7 bC0T٣As# T$$+e["[YEȄMb+Jќ?Ӈw޸7)ےCx6P6.MkMm@6gj8O" WܹiՓ]9Lia)]\ ⰈW](e'IO'}2:`g&+FiK` 86m1㰝 dG >Cmͧ2> endobj +2171 0 obj << +/D [2169 0 R /XYZ 54 639 null] +>> endobj +2168 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F52 1016 0 R /F8 1009 0 R /F73 1941 0 R /F51 1006 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2174 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +2173 0 obj << +/Type /Page +/Contents 2174 0 R +/Resources 2172 0 R +/MediaBox [0 0 504 666] +/Parent 2155 0 R +>> endobj +2175 0 obj << +/D [2173 0 R /XYZ 54 639 null] +>> endobj +2172 0 obj << +/ProcSet [ /PDF ] +>> endobj +2178 0 obj << +/Length 172 +/Filter /FlateDecode +>> +stream +xڍ0 E|dHlVC01D,%CUVL Ȓ}c;6A` +u Ǧ@! jjg*0Z`!Q) O^B"Y\qF4OLIU:^ńtMUSzyC=vP7=mRzYe j +:fendstream +endobj +2177 0 obj << +/Type /Page +/Contents 2178 0 R +/Resources 2176 0 R +/MediaBox [0 0 504 666] +/Parent 2155 0 R +>> endobj +930 0 obj << +/D [2177 0 R /XYZ 54 444.886 null] +>> endobj +2176 0 obj << +/Font << /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2181 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +2180 0 obj << +/Type /Page +/Contents 2181 0 R +/Resources 2179 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2179 0 obj << +/ProcSet [ /PDF ] +>> endobj +2185 0 obj << +/Length 2172 +/Filter /FlateDecode +>> +stream +xڝn6_e2Pk(R=:lmh[ʒ'M;7Re boT4UMdbOt '"+$Uӹz|&+"t| * +6v0lgs%A}ZBZ$a N>|R p};Q.#Ut?!h]M'x u <-TW,ʦq..+4\d)fU-hl?",#~O3 +alw=}&aihy.l7Y|TQRޔ^vEPNYA6 C3iї{>]b5뒁M͠{G+!?΀} h쌬l/$ +B `:DQXiYM\N}0E 8̓pK/PE-Kkb"ԥdmi6,1l4<?YdZ= u[krb gon!(v@7SXc9׆# |iIDqR֎pׅy. n*ʂÖ,U\zEW㑻|jěվclbg^ŕ FFuNf$*x@kU?e<"Hأ.RWcl0pHoZދ=a9Υh(+ Y+d:X"}4CpS#fO]f|t +dlqlr!YT]v~u`z|+Ա}fi0W~9$$;',N62Y5o¦=q% i&{CJn73dAϳע%kq(Z(o'LaQ?xR\iKQ,N& +ʪbwups>W%g0♕_٨ov|0λ;8X2%=@3,"tǿCEhZeC([/.WOK)|:C`39)oJ^Wڟ=2ȸt@T4EY;:^?qKL"#T-m͸F<yk"7bۉӽ܋־i.hU9Rfy\b BՉ0Pzwȭk!SN?=$X5rIbxFʷ|qgQ&=y g4uӺ+Zߞ|4d+ j[FnYo(WeVw(@ZDzvP'`3XÈ I,4B1i4\V< uj|D9 +WkHaw%:%Kqj|tRP H еD32R*p&|,Eg%W&:~(OEd +:Ɖt8s endstream +endobj +2184 0 obj << +/Type /Page +/Contents 2185 0 R +/Resources 2183 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2186 0 obj << +/D [2184 0 R /XYZ 54 639 null] +>> endobj +2187 0 obj << +/D [2184 0 R /XYZ 54 621 null] +>> endobj +934 0 obj << +/D [2184 0 R /XYZ 54 621 null] +>> endobj +1092 0 obj << +/D [2184 0 R /XYZ 54 436.134 null] +>> endobj +2183 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F50 1003 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2190 0 obj << +/Length 2182 +/Filter /FlateDecode +>> +stream +xk~p +hr +c`Qԉ=3/RA {W-edq-"X>懅5Lefm,3?fGˌ4YnOK[)HܐfJ3eZ:닚-MU_!QzoJyb[S x%3~(ŧ20K'_eٲ^Y,p[c0&F)?Y5_Fq+z':˼gM[ *v.Ҷ<:opOTd9HK ߭P+x'(rza;pP56":l'X,lJ!L rJbq3"whrF1ӳyd/2@+4{ ᜫ7/w|=# _Q {Jgavf15Jr?vOyxڣ(Þ1(lmN[۞mU@(R(m[a)1G Z휠.qy1+ZA,չ ~!KoX֓`1(c0>fI@ty7j7PۮmU=@g)b+A#=iw0GޑjR: }8TSČ \Žf uȮUIS E;z0*ޮR3 ~a&#TBC$!PzFPs][{'ª3& +v{)1O[6Ͱ{u: QCӑ  +V* hȯͪbme;:A=.VN"NB:姡eqMiiRx6%8X+vѤ "fR|=>B_cM~쮡@T sV4@?Dw!&=kP4EԷ +ێ 0@MJ*CK bddž gNj"OcD$sV'0AD#3B%6_l}hM NYQ<cw22bp^&QPzdN{P Ha)'tRU٬#-OP_trpMfLٌp#cä/rxZ&0Q\l\R8Gꇍk . .cd^EKf,㚳˶3> +Q!T[~tfXZ:0G'MU>vIIwsRPJ>FNh<87/jz|'V_7#8%^$ca;v|{E[po\ēzDIP$ޓ9Zx x^q1MRՎW$}(gPBnyar; t @!h8\23)M)\f3"K47ɡWA笴\5ub˼xz._QP BKG0Vr +}j˾pdl!1 KNz#=$'ȵ4$;AhTXKgC G{t3P4Qp:<_lk7߽~adh|͸"'D?B̟ismrs ٮRT؟ϵOL.7O^vSQCKk|=_s=EnHå RzHů,:U%$7 #g.dp|s/;ߋa9Dko؄KӉˊendstream +endobj +2189 0 obj << +/Type /Page +/Contents 2190 0 R +/Resources 2188 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2191 0 obj << +/D [2189 0 R /XYZ 54 639 null] +>> endobj +2188 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F77 2194 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2197 0 obj << +/Length 859 +/Filter /FlateDecode +>> +stream +xڭVR0+V,-!$JڄaESǡyYn-t9G򕉋Gܐ)wt;K<ΧP.%;~6!,"w<{:/Wxy##_;q B%cDt;FLI1"JKǐ29_k #@#EZ.(BX"4zq EA]hn\͏R)3 }9P7̰|ޗizŽ@Cِhj/#$"bDA'<]Xf>_E7䯛a;#$BڸڦI +)4!A)" [ӔSRE)j1ou-p3/:M9jQ_m j稥[Tʷyx5YV2m$ٷ,) `X@LA#ITU6n3U0[-ij*vRMP}L}y/ Sf:?wy|@4xh_z"fX#dMNsdNo6Z>:ݒvڞrz'պ(g]l7{{'Ush*'tͰsvsDL$#X FKN^?薥op$\X\<th=cҀB$F7TIg?clTL +qIXw &Zdi8gL-e$ċ^2o8' p_U?T /lZP)Ck-hIS{Z, 3d_m`N- Q^=};yendstream +endobj +2196 0 obj << +/Type /Page +/Contents 2197 0 R +/Resources 2195 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2198 0 obj << +/D [2196 0 R /XYZ 54 639 null] +>> endobj +938 0 obj << +/D [2196 0 R /XYZ 54 621 null] +>> endobj +1093 0 obj << +/D [2196 0 R /XYZ 54 440.239 null] +>> endobj +942 0 obj << +/D [2196 0 R /XYZ 54 440.239 null] +>> endobj +2199 0 obj << +/D [2196 0 R /XYZ 54 412.067 null] +>> endobj +2200 0 obj << +/D [2196 0 R /XYZ 54 412.067 null] +>> endobj +2201 0 obj << +/D [2196 0 R /XYZ 54 394.715 null] +>> endobj +2202 0 obj << +/D [2196 0 R /XYZ 54 376.783 null] +>> endobj +2203 0 obj << +/D [2196 0 R /XYZ 54 358.85 null] +>> endobj +2204 0 obj << +/D [2196 0 R /XYZ 54 330.899 null] +>> endobj +2195 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F14 1032 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2207 0 obj << +/Length 1806 +/Filter /FlateDecode +>> +stream +xڝX[o6~0R9Q1.Ŗ h ˲VIns!%Yltrx>;HNmSϝ*&=ț3*w`bztW.&?GSGzŚ4ڎpgX}^mLZuZJfo'>XE +'?BE ڶQ4MhS'wؐ* 9lcEPn{0OWPK{v6 wop `ߛxzR,yP8Oze$$J۶nU]Iki$"_/,lu8tN`DhkzU,*Jt?F<]iD|VFeUXͶ$Yqle=47x #ԏɊ}pH % p+a*H!.੖Rõ~"W,/ex|4Ą[7W.MY=a(+(+Z+VzhtVi֧|)z1\_x@\RCAmiTG^$ +iG"ع԰C`aPiws2Wcʎ)kG)"(PCVQDo씹~'4.զKW\sKK}ϧLyew++6&ݰ2Np+ :Bv`$FFܾ>P;C@e21+dlG;}Lz0 B9)#W>{%ˁH뫩P)2uLH=O^]5츴4j.!;yJיf Hzhvꀁ7h, }75-G*d{6UnH%n{ gl#^m .[0!a;3O^Nn)r]ǵ>PLםzءCdyf&{AzrVmriŪ*V=QlF/ؿ}Y])@U$1*S6+s A mjgd{ڶ>YS N"gGR`^SF5Eq+_LUqnX 3~" +]ANv{t &Ib[8UvFڏ]Q%2FǑ:``5]p^:TDE uOTΝ!;eJoj@_`"G^̓LgőWYکC˟rt&tas5>gz=r]i??Wݏg((PgC&m HGVmX#AnyW g0=Ig)IgTUhendstream +endobj +2206 0 obj << +/Type /Page +/Contents 2207 0 R +/Resources 2205 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2208 0 obj << +/D [2206 0 R /XYZ 54 639 null] +>> endobj +946 0 obj << +/D [2206 0 R /XYZ 54 621 null] +>> endobj +1094 0 obj << +/D [2206 0 R /XYZ 54 468.936 null] +>> endobj +950 0 obj << +/D [2206 0 R /XYZ 54 468.936 null] +>> endobj +2209 0 obj << +/D [2206 0 R /XYZ 54 442.687 null] +>> endobj +954 0 obj << +/D [2206 0 R /XYZ 54 393.971 null] +>> endobj +2210 0 obj << +/D [2206 0 R /XYZ 54 367.141 null] +>> endobj +958 0 obj << +/D [2206 0 R /XYZ 54 123.152 null] +>> endobj +2211 0 obj << +/D [2206 0 R /XYZ 54 98.027 null] +>> endobj +2205 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F14 1032 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2214 0 obj << +/Length 3358 +/Filter /FlateDecode +>> +stream +xڭkDgXk.I"ť&@HH,R>_k)$rvwfvvޤO_eh»?.aj.s׷nevE|_go򫹞-+=+pTW~K;b!n1 qNp +~~ػes5x9kfwRHo "(ptXƃ72~{)ė0NMBo.\`MG=AGʳ,5ɏ٦ +Nby>/L< +>78\jB!`%x~yu;v(9\3^ 6c{~3b R=c%βe!ӗN [wǢV{яbUG]1ɬṔn]Yf@8QpQLus +_Abc#oXvڹHDFh﯂p喇MΛ>c%sv= 3Y1^Jpytd3I +$,~Ss KKŠLYwpXEm43 1Bs|ip{MH)aKpe+=ehf>b[4r>Wa"]?x~SVvp/1ƔnxYk4H7w| +Y!qMx^ua-c/ZdقVcH]ͅDfJqQ4S +5/AE3h5k͐cy M^-x@gesG[hxJ̿>@VjLkM |B>,1N2!M?ӹU,MAx\uu$9 ?e;yR)6u 4,ZE&:^1@Y*,GՌJ8٢}]I֤O. i .x3~!quZ0cC^Ɇ݄LU۔nV9Xo={>ϟB #rsȐ7|Z*ВAPmݺnKuA[Ⱦ~], +s5?oC\;VI*8h N򇧠j-EmoviOo5<٪,TJp[fhnM͝\&7Jip &mI6) +PڬS.< 'ɠḢDFDSKP6@WC|$fW1mZQVׯ?:tV.rB;j(B'ogNabL7]'$57_5ڏ%I%t[Pu<Ѩ>p;ŁWhٸ+޷U9,7E{cg?ǹ_WG + |$Xg}oy/e]ټ[ 8+{'9R OxٺhN\vѸqZ)#%z˔Kr)ɓMۍ|SVP^Aɞ00Dg:VYd8n^"߂ s#/2.;1HSuEO%gokX8j(ԉ +ܷQxTx ӷo^pk>-*cZ?QHE|&X`@1, Yih VlQ}sd{0zW2l](,~ķ)Ydxs +@="/s10؎-.߰Ǒ ߐOݪQ?8s"Ϟx-No:{9Y9yձ峕tdZ0,ӮBXNHsǩ݉>=endstream +endobj +2213 0 obj << +/Type /Page +/Contents 2214 0 R +/Resources 2212 0 R +/MediaBox [0 0 504 666] +/Parent 2182 0 R +>> endobj +2215 0 obj << +/D [2213 0 R /XYZ 54 639 null] +>> endobj +2216 0 obj << +/D [2213 0 R /XYZ 54 121.772 null] +>> endobj +2217 0 obj << +/D [2213 0 R /XYZ 54 91.643 null] +>> endobj +2218 0 obj << +/D [2213 0 R /XYZ 54 63.451 null] +>> endobj +2212 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F52 1016 0 R /F11 1012 0 R /F73 1941 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2221 0 obj << +/Length 2355 +/Filter /FlateDecode +>> +stream +xڥYYoF~ׯ%DC>ȋ%;c^{^gأ!<$ y GIU]u|UM ~-7^l(\Yk%g/}kq.;9u~ϲ6g/{hg(!Afi0r}xWeEĩ(7DRH +Wyt ,gk1_]XG[NjÅ2/>\[n)|&UnbFf,&*-+Y|0KYڻ$o79(Fg2o| +Xd{Yͬcڹu4mͻ-UFh(z$u!8uOY*kFp@P둁 f&:lO$XG(zD+J!DX5-]@s63협m7z?gt@KgUiT}@sڝև# pĂCGăe=rtA:CDm'TZI3c--Z +(p*UΣD]qHYxseG#[!y[Hd! +2?DfpdJ5-Q%J^@W \y6֖)KsE l6% h]RKNIJ#}A Y؆,s *hYJv~뚺-ʍjEm:׊Ȋ`z2ǒB0x{pIO\/[l.CŒb> endobj +2222 0 obj << +/D [2220 0 R /XYZ 54 639 null] +>> endobj +2223 0 obj << +/D [2220 0 R /XYZ 54 621 null] +>> endobj +2224 0 obj << +/D [2220 0 R /XYZ 54 609.1 null] +>> endobj +2225 0 obj << +/D [2220 0 R /XYZ 54 448.49 null] +>> endobj +2226 0 obj << +/D [2220 0 R /XYZ 54 429.129 null] +>> endobj +2227 0 obj << +/D [2220 0 R /XYZ 54 410.874 null] +>> endobj +962 0 obj << +/D [2220 0 R /XYZ 54 225.953 null] +>> endobj +2228 0 obj << +/D [2220 0 R /XYZ 54 199.95 null] +>> endobj +966 0 obj << +/D [2220 0 R /XYZ 54 166.016 null] +>> endobj +2229 0 obj << +/D [2220 0 R /XYZ 54 138.048 null] +>> endobj +2219 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F8 1009 0 R /F52 1016 0 R /F16 1026 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2233 0 obj << +/Length 2054 +/Filter /FlateDecode +>> +stream +xڝYmo_owAQઞZ'E(jeH,>3;|]Mqq<̳KڞZϞ4pi|X'3s_OkǞ.p1ݟScKuxm6>Ω2>`hf&\5'37f Pf(eOJNooMC\/0}ȇB_W|)K0f`٘o_~Gljerzea8L0q:y\AP)Ν is6-wQn{MAl˲D: -g pf-:vBu"keP 9K, ~?I^lf$oh^?Ċ,դ):f0Nfz 5w(z< ۈ +3.BApyMF"&FZx덳5?|;jz4/;Ҽ:bF`F&B'b̏b&a7 6-g;m!rK݅x4O3?1|;{4Ɍ !FltI6ٲGپζMm.>*+B羶%%1EǓ4}?[% +᭒F@kY#A!#&$j BVz4mЛiw|c{"u#ʭ!_w^t%.dHVŋZ%zs䰞E+~ySN y9(W%;~Ҥq;?[5#nB-K{q\߮i[/I~-a`X16 )TH +α{zJ1˵^DVP\,rv=ݠ~uX򦖗,e18~g Z쀝/z`|EYY&|-&za<VL$y:$H8\ݯUziڢzLW/qML`Ԡ1Wjկ=PR-p(/HAe]5^ XE6f=%䑓 DؖMW^q |eeuӁpŭ]h O609Bǃ(x.Y&hMCHJoՍ"bqz|nD~~mX o> .3i YVGdM֜E| O*_o#y{>~ej)dBit?"?e>k(' +6{]VpZ͗.V5+uYܩY#ncleME}v ͧШqUo ]؞.hǨza܊<{?4F^(9*I Hv|7qM g endstream +endobj +2232 0 obj << +/Type /Page +/Contents 2233 0 R +/Resources 2231 0 R +/MediaBox [0 0 504 666] +/Parent 2230 0 R +>> endobj +2234 0 obj << +/D [2232 0 R /XYZ 54 639 null] +>> endobj +2231 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F14 1032 0 R /F8 1009 0 R /F52 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2237 0 obj << +/Length 3506 +/Filter /FlateDecode +>> +stream +xڭko~ޫnj ($(NI"Ѳ;{ >ffgfkZf|~ %#+Z߿E^2q.n7,_\v#`Ns"NT\R-xys p`fJ:yZjkT|-q^rD}[G9) P!^[~gghi.>]~/Z$yj(k7?}xq~UbP2ᮺc-c-%aQu_:@ +qL復yjsV֮w +h'he[_Ұw}x<( 8e-U_CedK]~U$zX/qG$.W0 +ԩeCs6pS +bo筢tY2H Y(#y9z%t + zw;;PsWom'2&38 4}]#ZyH=i*yja 4IM@yHXfQӡ PF'dx'liA WiK\aAՌPsdp c!kZ'"B5G@uH` +d9[mF[d<;pM؝\2i}݆!ђ肪p,74]RqV,0 J`]!K6ŃCߏ_] /NqFD<*sv&˗*`GFd)96n:KGP?VMSnVq?aTlunD<8'&)"a+t"8}ٹjWc| + zic1@ZsD O@&лOGG8@;IuwmU3u i>S 6D`'a똁AF8,*>3{Č,|^.3dMSivÉykh &R--rJ,ۧϋƿ+}uGe'7kxhAg0![TtSȠEr5w(csUpC>K'kW.7^N*8v_љٳq ,m0情+#GaʩL‰E+n?O.ۀ[KG +-Xᚱ|.o=Radt*t)0BW۰#sDi~ˇ9p DT)sݥ@:H1$& W=!.p,ٌ-t&Io|Jlv+bd6[T T b5G:èC鎪4HmF5NJP(.5~4NvQ: ?>+0 Cikl؁Vxx"ؐ}Xc9rf4(F`r6Q2(8=n\4T&ioP&5G)(yu}Ë4Y(Xe!}zZqps=+ 1$e?ew j\Xw&,Y*ʃ,:H "c 03 q4cI S^3 3Ya1 2zvWԡb-z;.moJ>w[zLk{6ڄ |ǁfR(WD1Ɋm( +l]Ncdr'j) gȤ,Wdr| U< 5 dICD'Q< Yʒ8!)sO[:C-m7xSt< "\9}I9BD`nU}yX+о&hvΌIyHX[c+itK]05OXNaܾΎtfW]s*NΌmn'mLy6`rm6{Ȝmncɳ{ +l|uYMǮƝ7mu-<]CSxݘ66xMRhFbrbqu4߬*6 iƏ0-h<ýv|}25`r a᠇߫T'#A~H+Iϑ W J)X2kh;R:ũjoc''EöįhϑIٻ)W>Jg(;4zTAƠSok_/m4MRiaG`CAʓEp?}z=9ۛU},%PEmDn׾CY2m ) =TC`BHXrrim>f'RqE11J W +xknb^2 ?LK?yDJ7 'y$[ū=..NdlC/.ڸR[P=@"P{~N{'J$dp`~o vd?2~o2 Ka_KSAp?]W?K8T"mPy<ិmp֦!Ic{)!ۅdW|6*,m-\ju[jw}Fz1ovfh܌Fxendstream +endobj +2236 0 obj << +/Type /Page +/Contents 2237 0 R +/Resources 2235 0 R +/MediaBox [0 0 504 666] +/Parent 2230 0 R +>> endobj +2238 0 obj << +/D [2236 0 R /XYZ 54 639 null] +>> endobj +2235 0 obj << +/Font << /F50 1003 0 R /F21 1102 0 R /F52 1016 0 R /F8 1009 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2241 0 obj << +/Length 612 +/Filter /FlateDecode +>> +stream +x}To0~Hŵ u]7MeCNb- hߝ I wC%T,\cGK x+ 3X(Pí#&9RDōȩNS I4eZ@f ݨpTSdBF&{(JEq|FQm0]mfmpz 5 @Ȕ*C-šeGFNSƱ k &`T<܃(:B no^/<!5?ˀ+) OlU6Q,9#Kh3O+8&ul]ytO2wÈIN񌺠]t{ƥ$)xim0yhGjS{;$C 0`&Rάm?8P/+9{bwlsy;1dDrV|Ŋ L:ҋJ;t8=S {&ՀfU)d>}''ﯽmb_M:K'8=`o7,#خqoḄ2Ω6T_.1V#@2!f(UzSRRn'&s{SK:endstream +endobj +2240 0 obj << +/Type /Page +/Contents 2241 0 R +/Resources 2239 0 R +/MediaBox [0 0 504 666] +/Parent 2230 0 R +>> endobj +2242 0 obj << +/D [2240 0 R /XYZ 54 639 null] +>> endobj +2239 0 obj << +/Font << /F21 1102 0 R /F50 1003 0 R /F8 1009 0 R /F14 1032 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2245 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +2244 0 obj << +/Type /Page +/Contents 2245 0 R +/Resources 2243 0 R +/MediaBox [0 0 504 666] +/Parent 2230 0 R +>> endobj +2246 0 obj << +/D [2244 0 R /XYZ 54 639 null] +>> endobj +2243 0 obj << +/ProcSet [ /PDF ] +>> endobj +2249 0 obj << +/Length 156 +/Filter /FlateDecode +>> +stream +xڍ1 1 ཿ"c;6MF8)ʡ C!RUy8ZPk(,;EQU `tyt{5n,꧱D̡l>]i Vĥr> oݥRR32endstream +endobj +2248 0 obj << +/Type /Page +/Contents 2249 0 R +/Resources 2247 0 R +/MediaBox [0 0 504 666] +/Parent 2230 0 R +>> endobj +970 0 obj << +/D [2248 0 R /XYZ 54 444.886 null] +>> endobj +2247 0 obj << +/Font << /F28 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2252 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +2251 0 obj << +/Type /Page +/Contents 2252 0 R +/Resources 2250 0 R +/MediaBox [0 0 504 666] +/Parent 2253 0 R +>> endobj +2250 0 obj << +/ProcSet [ /PDF ] +>> endobj +2256 0 obj << +/Length 1098 +/Filter /FlateDecode +>> +stream +xڝVK6WHW$,Cnhv\hK%E}΃F {=,ŸKL펫;J9^QQzeyJVbhdަ*Uo  <(- +qJg#C;((:7՟' H!082Sb*t$Sb,)?>;+I??&~χۿ ;̚BY*TQ%Jn yu, ?7#}~ʣ(3Hz?Й(d''*0GT(GSzr~ U!"|PnvM(oOݡ.TY,ιi6LQxJ.A1ܭ%k &薎DǯϨk`Aow(XC)tG:2V=.z,vMfT'qv(lW8c¹cݑ仛ǩ 6kV)֢HZm;CwjRÔ-T|DP+'IKzrLeTxgPn똒k9R.T̠W5xIT),#/L?u,`lXl6=*Ydkm{}֣Hiֵ߱E17@Ι8mG.*; +ACS0u +[^Sи؊6L^;₶|Q"wq$K3"rFH Þ$Wzg(e a^1#C|{az^ްt2ctŲjz݉.C.6Xnk|hk*{*]T凷a\V to8چm\OcI%PE낊B+3W{Pм22j:1#/p> endobj +2257 0 obj << +/D [2255 0 R /XYZ 54 639 null] +>> endobj +2258 0 obj << +/D [2255 0 R /XYZ 54 621 null] +>> endobj +974 0 obj << +/D [2255 0 R /XYZ 54 621 null] +>> endobj +1095 0 obj << +/D [2255 0 R /XYZ 54 470.127 null] +>> endobj +978 0 obj << +/D [2255 0 R /XYZ 54 470.127 null] +>> endobj +2259 0 obj << +/D [2255 0 R /XYZ 54 441.955 null] +>> endobj +982 0 obj << +/D [2255 0 R /XYZ 54 333.819 null] +>> endobj +2260 0 obj << +/D [2255 0 R /XYZ 54 308.165 null] +>> endobj +2254 0 obj << +/Font << /F69 1381 0 R /F16 1026 0 R /F8 1009 0 R /F52 1016 0 R /F50 1003 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +10 0 obj +[986 0 R /Fit] +endobj +2261 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/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/flat/natural/sharp/slurbelow/slurabove/lscript/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/dotlessi/dotlessj/weierstrass/vector/tie/psi 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie 197/.notdef] +>> endobj +2193 0 obj << +/Length1 777 +/Length2 1024 +/Length3 532 +/Length 1587 +/Filter /FlateDecode +>> +stream +xRiTWE9((ba Ee/HW@ 20 D@"-q .R e)Qh-KAJ9V,RXOOg3~}sgenЏ);.Ah0I(PRnn PGq$MȒI4NBkoxJ!8) "!  +d606qB a3\" +8gO +py]F7DHiSz& &ǒ `i/,NȿPbRLAA5;/{gN%P'A`ubs^QH(J$@,pqmt|.CW l\d7TTD _I !Dr&跦"A8sB&3%lG@%mٞ}lbdLܫX5:+xWf;.9he3pq +G7)`q\]&"IB!:7XB"F-B='inTLcخR~ty-je4,^Qiyz6m4j2:?|h(jn~P΃EelGn[>IE Ω?z8-!^>IJTW]gUl. w v:+2NV]koؖqTf{oUҼ6ןu?9<=>^$ƨ8]/!)S1r6z /x񺹎Fy +o\zm$oـv|~^,%JȎNE#2-* v}s?CcAz2˚ hKRq]gs"%@S\QV.~5c~k{1iõ7zRQEIVwc3KBV7h3EI6"Hk\pt}`YaZv=Eߣ SM"ے䫩Y:'Ʋt}K|͔RxjӫlfYH<DK]?PJ(GIc)mx+X.fC3w;4kIq:Mm摊_1Ko=* }wlx+W>1  + |P!Œ;ΟquTj)[(p6i>ָ̬qth%>" +I +.qZendstream +endobj +2194 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2261 0 R +/FirstChar 62 +/LastChar 62 +/Widths 2262 0 R +/BaseFont /NPNUML+CMMIB10 +/FontDescriptor 2192 0 R +>> endobj +2192 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /NPNUML+CMMIB10 +/ItalicAngle -14 +/StemV 113 +/XHeight 444 +/FontBBox [-15 -250 1216 750] +/Flags 4 +/CharSet (/greater) +/FontFile 2193 0 R +>> endobj +2262 0 obj +[894 ] +endobj +2263 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/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/exclamdown/equal/questiondown/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/quotedblleft/bracketright/circumflex/dotaccent/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/endash/emdash/hungarumlaut/tilde/dieresis/suppress 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis 197/.notdef] +>> endobj +1952 0 obj << +/Length1 1319 +/Length2 4957 +/Length3 532 +/Length 5758 +/Filter /FlateDecode +>> +stream +xg8m F-F2-:{O0Øa(KtQG  DHF=}}gC1@k Hi%`}CL9p&986($hkp`8'\ @hZ9JKqnGx+@ g/s08韧+*CIpW%Fm: iOok$>Զ#1A4qY"#q+!ZVnH‘60 瘟qMڢЀ_ mῴ(,wBÐ-BKk`(o .H ȯpA@~ſITȯzA{$ +׸ =I Ppu/S$M䷺ k UM \y? Ώ3d@ ?l8] n pqu k(+sP^`WPD7q3@]0U?T(-?o=|GA%B}s\—,7H4xգ5]f|\FM|y5[VKlrڣZ4 %ۇAWFk O'hXP_!̂bV,,j0}\.ĢK&ŝ2!@C(q KuK!M5hcZX4QjEP;1L^<ݶtyZ/TNr5^x<}턾(; /3ـZ=6e +)HHZPByմvPip$ on) mxCVo>-ѷ#3QQO690]~>BHx%T#.@c|/MFijh(boCv_GECk8/tb<߹E\ `ј&`޸#ͯP<&y=ĝh[ǠFWP:٘R~U ޓmr>dw)9hĠw ^]n st<k]yXk98ԭU+M>y͑hGs~'z`Sg}JnJ1eoܲE YA]keهOЊO6g kQtj5)mrD-0$HxxD87n|U-=+:89*yVU鲳1%d .N@LYoGV @x+o;{= +y7V(ĪYKXA$yx3A\?1"Y7M>dy vgTǕVAP9'kSLTOlލ] gЌG~ 6okR1{{9D\G؛@v=TxG.ݞ4\LՍ)ièvPAw10!8fy[̩CyOI9S+Hfi؉zG}Dnfޛ #=ʶw+jQڍKI7n$u$D+/y٩&je{v*< &}/}ٗ ovӉ2. 1_d$Jyn}C\ڱ +ewB t7}?kʷKd& ) &[ NBH.ם'/$dy6uQVƽG%2{c:?)cY\ST8I#)"sڪ^fb,A14*)LsLUuJHWsf][݌.rܥ.t]PGR}oިX!q{YgXߣj/E2Q>ܑ_,9m >Aj5N#oTYNIv +܋U:O} Q~-jQld-V2^֗D}PO^6VM?14⹠Yj=U'$w1xRǜKēirP@ +ep@]|[ +ˤNևX(uFǎmJ\Lg)9xJCB#y%e%|;m"rD&} yLA2YZVPn~1D*f3E<ٗ%p^ ﲷ/vfj`̙i0lN4R'L3GЖĂ%bR.~'I^_ R +&m]/ikUk ޤ`jm2O9hҩ `arP0dA3[ڮmdil)`XN?dS/JW:qʟ֋[o{M=",Y4XG(i_rÛл=m(5ëD: J:="Pk\6V?%;*`_텝~޵k`Ex#2>ke`\>J%$RL|/ҶKNgwe ."<&k* _\, [|r@H:8#-4 rS0* ]i^“% w70ӊRX%)+&x)o,˱slNZI0)F&\M19*g~rQ(Hr)q9FLEl`%(:3[Vi^M ^kv8.b`QO6&hrݸ&^Eg7HY*Ae:OS?oہrL#ꙍ7L#_ֆ0~Y>Vb=^8=d,ΥljReR#w/x-F?Fi(k 'm|D>"waG<9~qU^͙FYpuo q%KDR*oV#ˋ}_oS/9RT$I{Nuਯ\DA5&ƻ`ߏ G4^lj#ڂ>ح0MY~4WqJЮBnl <KqO*7y''FJiگިk{L<")Uj9;Lx泵mC1U-cqPզM ۣU_Bj $j!RcLR[ũCoqϻFy%vx'K|vط$j*]x-VDdfV(9QFښQQ۔dLK0QCGІq5mWo4x  A߮\LOmqIz:d>*O\HbUN]7 Ih8;Jd_.=;acsN_ߧp.EO`JWv`[<|w4͞-ee6[ be럧_!C? "6ydO`~ ⅞uEs_cFW ⴰ BNG~ w˳"s [ҽ$Zm ~X49gMȵ`sFVrךLHsm/ydy0dY2Z5K$W{ s3?'{y4`;˩ wsTrȌN'@0+4dv*[endstream +endobj +1953 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2263 0 R +/FirstChar 12 +/LastChar 121 +/Widths 2264 0 R +/BaseFont /URWCEI+CMSS10 +/FontDescriptor 1951 0 R +>> endobj +1951 0 obj << +/Ascent 694 +/CapHeight 694 +/Descent -194 +/FontName /URWCEI+CMSS10 +/ItalicAngle 0 +/StemV 78 +/XHeight 444 +/FontBBox [-61 -250 999 759] +/Flags 4 +/CharSet (/fi/parenleft/parenright/period/B/D/E/I/L/M/O/P/R/S/T/U/V/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/w/y) +/FontFile 1952 0 R +>> endobj +2264 0 obj +[536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 389 389 0 0 0 0 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 0 722 597 0 0 0 278 0 0 542 875 0 736 639 0 646 556 681 687 667 0 0 0 0 0 0 0 0 0 0 481 517 444 517 444 306 500 517 239 0 489 239 794 517 500 517 0 342 383 361 517 0 683 0 461 ] +endobj +2265 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/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/quotedblleft/bracketright/circumflex/dotaccent/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/endash/emdash/hungarumlaut/tilde/dieresis/suppress 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis 197/.notdef] +>> endobj +1949 0 obj << +/Length1 808 +/Length2 1461 +/Length3 532 +/Length 2047 +/Filter /FlateDecode +>> +stream +xRk}1ft C4/q#@2 q4CBL]"@"=mm0'T`֋$@ABLQ(Sh\`H(\.x""!aơA`, q`>hi+?HlK+ +F*LXIk@a +A=,Hakqd?sAAx>ذuwɅY> %8K 6B&7ZC|&-Yӷyi;}ӥ. E>т.җ0;V$$%?G +4W> a|h0Bf4Z= +Db@! I8>"R!x${XZBb*v %?vvF$1-`O |8B mua _d0X=I  a²˓.w=vY:(bB2n!Lh'jRQxvA9e_} ح]ij5!N //eǴ_pk\sIG/=ꚟ~y)wЁ'!ߡٷ[sHOQ^oz ßj8{(u|?FhAFVdWp(-p*o ?ӟ\ٺh ~\ռoEXRuRz8bs +eEתAk]@Ǎwcty{p))w,1MǤ$gwH?>I=zݬ ݗŦGZXO([eᩝ$-Ɲ:|U+k)~4R3vH&x6uH]i4NM-W |o(m7h4>$ޤ-?۶P[+ Ɂ1~ԪJtF>=7iZjV4bCM#H&jhjTgz#s3͒&6`|yӔdžFUop -ݿ؛ljX'}޴ufA|zigJTv] >kRо=57-!I~SmͲGm^k=y%I FsN[vߞbs 6AT}Itn`-߈)\8S8ݶgMo*INomTa=-ޱ1s̙`A8̺)’n^zO'$^NYxU -͕a_׋G~OS +4QcJSOYbs8rjXes ˜AYv}5RyAw^3/ϼy󭹙NJ;{U &;(}2=)gQҾW_oq2}2yƞCOM](m+p.E[ .3ƇepT>Rn;$Էb`ksRw{Qa7 /I(`)CKd#1`iFTkjҘ**XV?qar~s5BV +"Ȅ|giwS^cz5$$ϟW&o .H+&^o4?{b!i yNV9+(51M3M7eZsf͉?ȳU;TyN^;~ڝUGfn]&sVV VD'2R *J0%=aU2B[3ەBsO< +ku/4X\O{H;3˕ U^mһ3)6 lt-L2i܄ ,(Lɽ(> endobj +1948 0 obj << +/Ascent 514 +/CapHeight 683 +/Descent 0 +/FontName /PJQPFW+CMCSC10 +/ItalicAngle 0 +/StemV 72 +/XHeight 431 +/FontBBox [14 -250 1077 750] +/Flags 4 +/CharSet (/N/e/o/t) +/FontFile 1949 0 R +>> endobj +2266 0 obj +[814 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 558 0 0 0 0 0 0 0 0 0 636 0 0 0 0 591 ] +endobj +2267 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/sterling/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/dieresis/visiblespace 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis 197/.notdef] +>> endobj +1940 0 obj << +/Length1 1251 +/Length2 6438 +/Length3 532 +/Length 7218 +/Filter /FlateDecode +>> +stream +xeXmiTSRBT`j.)iiiIi)iNs<~Ǟ2uuZt9-8̕Ȫ+選 .n!~ wD:Cm\lgP@P=,]Htzq8A,@ %`ERY*["}qvABP-0{$bԀ $?B^W P{g: tK(៧ʮ`{4qquQC,6Wg2f }\o ͨ)9C&\ pY-0k Fn f q@Q\0+j2^+3_km6_K| 7ҿIMBoC(oJu^77P M(oB)-C nn?DQ D(_߈@<uQ. j *Dp<(#o ]ao> ꄀ(Qjpv\@f+(ꭁ@!x3Sp @۔bo%l.4iAi\;E&?Ah mTˀVKoz=uA{>1}ޗA1C`lѭBm $KQ<=usm34jɸ"I- b;pσ=#X&nxyOL~-͕ Dq/U$ bX .(MyuG&bVv +2"bb'L1Ïz_D@(B|R廭7pTܮ9f +|Yo D'tv78H<(ﻢYe`=fEdR*N$Щ<NZ{1ۓ|1u,1? SJ>y1r?1.ـc5m}ֺi>WVr]Չt _?ɦ$^K} ޳{YPQƵqm ~*ݯf<%wpmBS@Kh~E!/\_,5<"a - ~̱jpIO3e@˛!qi(/QêX-u1w,@Ť2+b|,Ѫaebwi%}wN-JqU j*Nn'9./O5J?_#u(r5jo1'~ ,JȬ5ނ#>7.e}8/7BPmͲ$򯱺J_eۯ@ |g-<ɑ]X8JLuc~vr]ά0\W477Ol=M$a1xUI!69*dKZHW9W6dzШ&I׭ѼrEFGwla%e^,^eMGYCU6&$UX"b> iKiTb]ro82Q/R?Vd6r?j[Ri|ăy$Y3587~c4NaS br=.f9*j\$Р^1) rL#' +*rKm'9rArG^ٺV8|!}T$f=n\j|]tul +a)J{֐wMsʹ.Ncӣ&{IEQHFv]=^]k)$)}څy)hYBjFH# j v򲑊&R)V +I^ROdʟIdhhJA9fx䩻μ 96mbCx)̆%&by_DZ^ֳ7g*pYʭ9? LMG +8?Rh/J:])*[Xp ,{ 9Wi,ΚZU=mf9 0DžxsoɃCQ>I狦"+tB)2+$={x0Ęybט)[u +.[R<+k4ŢED:0W kdg˪Q.BoIљTx+ccYXMRH +Ѽq`sV"kD% K{BP5%bqϡHq\zz h3ri<ƅ7faZ^[ +1$iMam<^ 7UҼyMD43ucan*Rk`;rhMiCA{E`m~S5k#35I-'[a( ڈN;<fGmX C/(Q:?LGpU6d=fC5cScր(X煕5ϑtEմv$WufL;:<l=$FqYcM9l61\aKlmdvAmj0 E"fY=x;~&Oɷ>h" +R$**2 DSlٶԌRG;5DhBi48E“~7}.i>z d.hGqU*vɬy?=9\}o6o{hp,=Sz&Vifa:T#֬^(yEoR%&L4?AL3ÈS;l8C?P>\pdLz^dGbwo{p$MǍPM`â[^1hmy7Op1% oN-:KTU9)e X}' ?IՎF\u6eZdxn9EaE~}zZujNxOК^{WŠe֛lFOStkqABkx X{iEvNh3>l*m?jq$8{\07u8[mPZ>ݲ^=q_D]$Z!yi5)C|93Z`9'7CDɺ+`[t#e?.@|Y;Z0)ɩm㙊+χ]9"ܼ eu_`!pQBp'ϐjQqW"ON'L,_ +DZxNX1'~K azc0II~m j*I2kH"@)ǣ/!(׉~:qLSX],HнqDJ^(?zo~]Dtc< +~xBXTև#|'ztkQl2$ 72H4Ɩ5J̽S/e: ڰU +.RfD1xSާ^tͥ4l'xEs KF==~2w-NAl;lP (Gi'T;)S ŝ`IBw."~t'vRoO3<\:jҙЕ^&W5kS"țJH㹴JRQ#8Ic;hwgua?$id]|z%ncw %qyAR3<|@^ >lr;҇zSay{9oM+J j +H@x:-wخs|fa]$^x +/R36vz IWw )rƼ/dpӿ6o_ARPQlKiCǭCk(0[`u7K +ZB'lZ-;ڥ슌[Z~wG3kʫQ-B1Ouē{駛xh @践 / +05xOVt,:ǒٌkG]EG}x kϿ_u߷g {չ :}j-,n=[.7l>b{xQzy]A5i[٫iK9q>nkԉ[8 [ϴ%"~HJ/PаJ,ޯT4ǓW$]^E&Nr+Nx$Y\68Uy:=phkә}\ݓZZb:~tW4 wsJ|vFYUs2 @[[=)7j.cpm_9pw}/ȩ)s +as-M7K:k_IЯ ~ic>w[6W[]&s62~@KH)šl؃bijze.чt즞͍cضD/o;> X$Yq߃W/ >&E1 8Ĭ`Y"LR0~@\b$Զl4Ve?69G5  ߗ/}feAFEސFq:IF3C؋pՏ_e~abaudE|뻤+I) 3:Y=g$%Om'9dYuµ{wWOKC w3c68pi2h}y$[Cm +IK%6xr٢K u5IqXդoB&F%SZ[l5h)fwic  +"+kzv̷;541+4Ie f~y3ʃl7 6(~deP9b$嘚?ES0cMHEBC;^e|(sș/!+|`OEr`̩Y#wPK G4]`g;~endstream +endobj +1941 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2267 0 R +/FirstChar 45 +/LastChar 121 +/Widths 2268 0 R +/BaseFont /QLINTU+CMITT10 +/FontDescriptor 1939 0 R +>> endobj +1939 0 obj << +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /QLINTU+CMITT10 +/ItalicAngle -14 +/StemV 69 +/XHeight 431 +/FontBBox [11 -233 669 696] +/Flags 4 +/CharSet (/hyphen/at/A/B/D/E/L/M/O/S/T/U/X/Y/a/b/c/d/e/g/h/i/k/l/m/n/o/p/r/s/t/u/v/y) +/FontFile 1940 0 R +>> endobj +2268 0 obj +[525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 0 525 525 0 0 0 0 0 0 525 525 0 525 0 0 0 525 525 525 0 0 525 525 0 0 0 0 0 0 0 525 525 525 525 525 0 525 525 525 0 525 525 525 525 525 525 0 525 525 525 525 525 0 0 525 ] +endobj +2269 0 obj << +/Type /Encoding +/Differences [ 0 /minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/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/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft 129/.notdef 160/space/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus 171/.notdef 173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade 197/.notdef] +>> endobj +1575 0 obj << +/Length1 779 +/Length2 1014 +/Length3 532 +/Length 1584 +/Filter /FlateDecode +>> +stream +xiTWǡJԸXPBE<@DK 00ɀ=*" Z nDT9.w1-*J`UjxO=2(!bS< + qρe^$P({K(xB!%c<72HT<6^3Eࡀ$* @BAC*@!E!vPP 80yoPn<|;)˞8c @ݚ8+oƋu #Ҷ7;a͖FȔB ܧ[~ kGŬ N/gmfëuzK5DuԀ̬fm;7νznפhĆywߟΰtW2^7oǝLW[-nXvT{רb{Rn6~k axJhxRaU[70kc8,fqHD6÷I~d>;ݝUif%gsO̳, TϹU/RTѥ+YpT#|޼{@`ϒYӋ5s/Z:CW9++=vc֋ }"#c]]v} ݫm^}v†IۏH!CfQod29E 30^!ڛA?d^:ĆkػQhT˘ggmyKkjrs乇Ə }Zw$XU̕acu}&mr[ע +ۇ5q+Y1Vl %Vj(i_*޴γ"r;Aѐ{gG +'k gFu^כؔ`:9Od5elBVuz׺=CeLWpN6Q9ܶO="1c_ X$Ƿ\!CbԲj)ݍ8.x׻12ЛhW*H3Щ鋳ʚROw\+p{:naSvlzߔ;!Zh$ccbZ hH0 1fqedBhM,659 SXfls'[]nQM<4;Aèzwrȅ=BQC7ڦ.MS76la?@A I + a\endstream +endobj +1576 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2269 0 R +/FirstChar 110 +/LastChar 110 +/Widths 2270 0 R +/BaseFont /AYZTQG+CMBSY10 +/FontDescriptor 1574 0 R +>> endobj +1574 0 obj << +/Ascent 750 +/CapHeight 686 +/Descent -194 +/FontName /AYZTQG+CMBSY10 +/ItalicAngle -14 +/StemV 85 +/XHeight 444 +/FontBBox [-27 -940 1332 825] +/Flags 4 +/CharSet (/backslash) +/FontFile 1575 0 R +>> endobj +2270 0 obj +[575 ] +endobj +1491 0 obj << +/Length1 770 +/Length2 1163 +/Length3 532 +/Length 1735 +/Filter /FlateDecode +>> +stream +xRiTSB2U'pmJ E@d4(HroMnL$ x*hj  +(P$Ddz"* ~sϾ|[7l$2:\<: )4֭8,!M ё;8Ӝl pŤ +  WE0"`1! X6Q t!B S" EK߶b`<0,aT XDb]0ajhRK_ FP L,8bKSs\B˻2ْp6{70Ð?"FpX-7Bdp> endobj +1490 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /BWRBGX+CMSL10 +/ItalicAngle -9 +/StemV 79 +/XHeight 431 +/FontBBox [-62 -250 1123 750] +/Flags 4 +/CharSet (/dollar) +/FontFile 1491 0 R +>> endobj +2271 0 obj +[500 ] +endobj +1380 0 obj << +/Length1 1019 +/Length2 3067 +/Length3 532 +/Length 3758 +/Filter /FlateDecode +>> +stream +xTy?1A?QoFOD&8'B{􂎿 7H~?O"z-RdPUP~[wsgB ,B"!`{}@ F`ڙwwg8PE5*kg4ӥvydݳ_G,Qlz&<8dl=*gmw(qRMĵ' ͷ,uBJEer%˅MzrB';TK({73Yh۶̗a\L0yu26`%,!}$՛%j2žL Z\t.mFRX{arYDֺibnʗՙW"!o]F.'۩?=51n[{ltP5۽?9T`K3t"t˵g"5ܺQxKޭ|ϲ5-.Fꆛ}jQl״_CVfP6}qSi +=, `M2JԓnY=O6W3[< q%- ʏ:yevv=o5HYX6x&vC1)›U'2˪j4UQ3KQ4L ޸.!]£# [=Ǜk}C^)-<1^[;rك c=Z;#Hv,)fX1l׋ť)3ֆKL&Y/]oXb}{/]XjCrvɍJBb׀A!/L&V]R?qi7/2n.n/N$#*ť'E_3cFHʮwv +Q;uw&AH{!إH*'+j%Ňbmjpz%'#jY3! 5%KlL0ɍ#a_h$O=*+r{EdgsAKqY8#ʵZ*tm'3Pws(↎Vj/68;fG&O`29me%9ìga u:[h -޳w|[To0>Z^cި⥬&VlDӔ9Ŝ,sʠoJvo:qٶ+6Qh a6[M㌾S7'{i㺵N}i`(.AzB45ԬJ<6?^_q4vs)SZHW'>C6  +YsNM=_i1v#!B [n髢A7 ڒ9ml}SXK#kHW%|}BɝǪ*׊u$/06 +yk_McqP*{a>{ k& mzHrEZZLu(P{lm{ o5S,wk&Uf]';ďVTGEeƌ=dt:,\wP;/q;G\;-B+9Lz<1yɓ'uE%nn֏?_6KR…Vc!> endobj +1379 0 obj << +/Ascent 694 +/CapHeight 694 +/Descent -195 +/FontName /JFHSEO+CMSS17 +/ItalicAngle 0 +/StemV 76 +/XHeight 431 +/FontBBox [-58 -250 939 758] +/Flags 4 +/CharSet (/zero/one/two/three/four/five/six/seven/eight/nine/C/a/e/h/p/r/t) +/FontFile 1380 0 R +>> endobj +2272 0 obj +[470 470 470 470 470 470 470 470 470 470 0 0 0 0 0 0 0 0 0 601 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 451 0 0 0 418 0 0 484 0 0 0 0 0 0 0 484 0 320 0 340 ] +endobj +1101 0 obj << +/Length1 1655 +/Length2 7433 +/Length3 532 +/Length 8375 +/Filter /FlateDecode +>> +stream +xe\ii$$da````hFJ@ QFB@ii;/yu>g~ou Z60kٝG + f`, +H{x$r#._0v@(ÜB~\!n:~?2>{#^aA${BL'D=!$wOCB(b1|O={BBOzzZӾ'Dt {O‹=!‹?\{B8'3?Íf"߻"{ DB@= t@.D!N{ †="n.?a/o ۏq9xׁ[qxg3,1" 8^j#ާ-`)H,e]xi|2tVdDև!3IAUWŏFWYx4^7n-ϵ]3&6<6|)}]Cv&Nv5JS {_bĜE42RȂG}d!p-X"HMF[ pj`;x]`ܙlI)LvOp~|V>1]3]|RJ)8 +,F%+.wi(g**ΘDHaFs=l0 +f>mgv4տ_3fOPb=XWM?Bǎ';=SH}&+(T+έR|c"pjRs/y-k1լ5N=huWR-U[& VtX24Et&xNrz95C~i9v*WX`0ռߏ25~ WǷe]z@U)$B!t=5_Y^]9w.83(9YMDL}Z1C#rvm()>3i_R˩j!Sl,N #;mNbz{n]Jj2nx +nCѩwS>Z}F3Rt㝧 |A#6kݦf?Vr@rT;yz;[!%qr2WtZǗ\i@/7tI% +ވ>1OB 7_Oy7ڕ\S2=͌柑vxҎ6Zo~Dhz=A$ڰq0((,>W~@{W9:mxtkSYF6U%wD}ş[\W9hQ-Mɐ۰֍NTKmkAefXM*ﵶ7 /gpNp-?qevTj^vIB +ڧ$(9 Fa:74?:Ajx4><ﮉouByj*vmDzK޲ZR&܍~5P (&1;A^I]2YH$T99"ϑZ"y#s]V #9;$ih\)}eykmϋs>F/'*شV(ΜЈntHcPY8+l +o*Vbd%BK߭1VLwVJoV {3DDIJ| Zb^pl UrU{.PLPffF6إt6Ce\6 +ЭmYuPq,ɹ#K[/VK!)Rp]9ԏOy>|ʾLг3$nNJ3Wf_1j|xL'Z2jمNiƚ3oiySNhͺC膅9Ud+SiY?Դ)kh B{+3`kSi7JWWuktHޔ\fXCQ"*(0'MW̼}1q;܁dد:{KS/(HH/교t3O쯀,7B7F.y3I&x~M(>ʜ?a`0'ˁ `sgw54lX+Qe,7V^ŀT0e|uv@b'Wل [ĴG*j|5F~Štߋą/< -l}M*X>neU{H" -^&]V<3/qoPs(_9B#K,Λjs! ^iO_בW.tǟ*J܂^n]'7߬q\N`V0=9I̿C:VX~L +&T;1zpuP#}񃷶t:T{oА+L%,7Ħ:21wMd=$̏/4i=(œu:oP \wkXD}Z{)pFZŵ +9uxt2,+5{d`'SĦv9=,~Z{JG<_O973c+H/d\FwlR/~˸6DU\^ŅQsLB yA 4h  Iz {*i zow'7zC=,[wԔxL{9Xf:`sa WYvP{Lpo":4?AYYL*NPX)m踷ȍO +ExuVŇ 6ZizRhd_Ky>$y V{4)9VG8~% +;vNRɌd$Ov'1W(hg#? 2ԯAM5PHJd lK7-d5 +tF~;y/{n!QPb_F`{|i&eqxb=ˤ'G#Aypc#odk|#Ӷ 2A6d+Ra,kpm ZW6 _{nX K k ;D h! ';ȍPʛ:w+fQ52:VpFX1|HWЕΏi?[L{X&Ep# Yi1;y]NVYfq +L'66sNyKiɵ3Xe5:6S0"2>b?Q^pKY$'+ť8XFʳ88_鮕u@OfLœf?[zhcLjI_ RJBOkoUǖ*L%_~OgXnwDuq7oWE^؜8eK[;<#].⡈ 3?]~۩D-k<{9*vR}= h׀>9ޜXGF<}eAj!",\c[ 'YSɹٚ9ש2ͧk8nF7 +=EQGUV+;ݽ(U-wu Pyc͸b%CJ)OFJde3ss޳e kFYX`^CR=o[&3)¡#i8I`NnՙI0B%uC]h={$~Rua.~S:_ygdhod7GPdo<' Oo#kl_|\c 3JeO|`>>*|$|Cqz!7; tH TjX9lI1o[ԭő,@1[m)ms;_u ;C}G}= -JL`?y%?x§_TGMUNcklNrme޶.Cr~;7HRR1jз8{S%ftvqnOBc(\0R'jVj~໖~~~ƂjЯ=#YWItفbMy}]&o3&?|<2_;Zs:nWe]dEX [VF Iq<@~)˔_/p1$K]IlrzRK59aƍqTӳ3gqS =j@x/oG鞎ukiJ1|fv#KuNY:UPJJ-͞r|5C6DvɷEBSiSE@Wâ|UPn@(m 3O6ʘx݂xNY[wqYE)gl\Ijg +pQ>̺L[09^TaF|6֤w]OggN`dTC +iS FehΖC~ s}iG}mXWH[ eUd#Gde9fY=?Ķ*Q&ғ?hn-Ǥrכ.2|ީHvoU9 +L؜Hq8=7ɴ iڐn">v|֥rT-ƚ5M$K?$ozxFcc.YFc; L#)Aӡ\RP ?}pc&%d/c;'ܮgn23iku2y4j0^uO8˄=ݖeXx/uZOEuI/T/Uw鞯Q?ß4
    GbSw$\F?+knx;Hb!7|F?5i 7ܗY No.>;3ަ[ +إTeԊfu?#=)rw%3C97 礌  -44("&֭KTl-tgUM=a⇂f 4"d Ǽ-Lhؔ,: `7[/M7{d,☥=HMɻbiYm]hyU8zz="GNFze|Ӕ٧y`*pt#~ؚPX$4 NX^>PM +ob0qAt]/9.&aeaZr2xBZEw°pяEϸUROؚ>P"+ygHn 8@3M _^pNAΊuZ։QeH"?eIHYw\3}JɴjdKu)˙nr*j)*93W)O`/&yrY/eSSL>2AK;{,&/k4szh%c!vULMeQfrCVXUjODK04SCeq p yƗ"[~~htLR{pn)1Lf6|1,iIL3(O&ZkA5 +%$b͝*eu.|;A{  \{%]NCnVDDR5G_eFa<,ng~ɿ;DV2f2|mN}Pi?}hҢBX;* +b* )ZhE j'[0qp)]Y/MQK .6`Øqd fq0qKZHDȬ[^Ybׂ2KiIFAT-⮁8RN˫zN5ftt]%%W^B +VˊOa47ثRjZXzjRVOJo6ΟDmwFq*>(q r' +` ;bendstream +endobj +1102 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2263 0 R +/FirstChar 12 +/LastChar 121 +/Widths 2273 0 R +/BaseFont /HVCMZW+CMSS8 +/FontDescriptor 1100 0 R +>> endobj +1100 0 obj << +/Ascent 694 +/CapHeight 694 +/Descent -194 +/FontName /HVCMZW+CMSS8 +/ItalicAngle 0 +/StemV 87 +/XHeight 444 +/FontBBox [-65 -250 1062 761] +/Flags 4 +/CharSet (/fi/quoteright/parenleft/parenright/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/A/B/C/D/E/F/G/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/w/x/y) +/FontFile 1101 0 R +>> endobj +2273 0 obj +[569 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 295 413 413 0 0 0 0 295 531 531 531 531 531 531 531 531 531 531 531 0 0 0 0 0 0 0 708 708 679 767 637 608 708 0 295 0 738 578 927 750 785 679 785 688 590 726 729 708 1004 0 0 0 0 0 0 0 0 0 510 549 472 549 472 325 531 549 253 0 0 253 844 549 531 549 0 363 407 384 549 490 726 490 490 ] +endobj +2274 0 obj << +/Type /Encoding +/Differences [ 0 /minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/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/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft 129/.notdef 161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus 171/.notdef 173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade 197/.notdef] +>> endobj +1031 0 obj << +/Length1 795 +/Length2 667 +/Length3 532 +/Length 1237 +/Filter /FlateDecode +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8&UZT tБ +@'T*qJB7ܭ4'/1d<80s3s**s JKR|SRЕB盚Y.Y옗khg`l +,vˬHM ,IPHK)N楠;|`kC,WRY`P "P*ʬP6300*B+2׼̼t#S3ĢJ.` +L 2RR+R+./jQMBZ~(ZI? % qЩI9`aL99WTY*Z344S077EUYX`j```apriQQj^ 8aOwjjEj2k-Yӷs]|a>k_d?nvfJm@%>wX,iG /vRfǝ%ش9QDod;U? ^VNvK{~/t-798 mi"6=!y:I_K-,1{).o +*[mF%s_-j(ls~gغ|K~#ﵾӷ&g]p_!GrnM`v^Dl>Z`,&7{طeY/-pp3LXc:s٧Oy1#u,U)MPPQSiމ_]7`tlx~FqFI8>yj&/E텏Z [%IZҼ/y-ɝ#ߘU))wpxk>Wõ-T2~U]gXZjEO-Z_Ȭ?֌J +vMO7J]8f풻v_ք7xht*̀B5j0 9'5$?7( Hendstream +endobj +1032 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2274 0 R +/FirstChar 15 +/LastChar 110 +/Widths 2275 0 R +/BaseFont /OFLTWG+CMSY10 +/FontDescriptor 1030 0 R +>> endobj +1030 0 obj << +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /OFLTWG+CMSY10 +/ItalicAngle -14 +/StemV 85 +/XHeight 431 +/FontBBox [-29 -960 1116 775] +/Flags 4 +/CharSet (/bullet/backslash) +/FontFile 1031 0 R +>> endobj +2275 0 obj +[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 ] +endobj +1025 0 obj << +/Length1 1907 +/Length2 11433 +/Length3 532 +/Length 12482 +/Filter /FlateDecode +>> +stream +xUX\ݶhS܃;Nn%@,KAS{/r~~Z}FR4,N@'; + @RICCBʎDC# +4suIqk'9 7 ;/ @@/O@jka(5,N@wV@nuhɊpmAHl8Y9+l?eFTJT2dM~ ozzk&3ζ +#TҊa[2*CAű1hp?cn +s*W:_|10ߗ/탦~ gZRe w*&NdVJF _V7Qb9m*zv~Ik7)ׁ*qbjiWKRI#}234%yu4a<\ *{zG+5󅈟64uA1^IWŸҼM4gWtF(2Xm(eVcnZh %~h8vU\]؃uA1l;*YIMh8H_Ȅ@q +KhE!Am.&4$Uz=Kw`p{YK#5Ƹ& +z.F(^Ow fH?p% E:ReKM琈o_Y&!w7@4 V(>yCANjg"VSΞ 85e)˯7sOiA8,#vTi"ȑ׼5'bwy/ulY-9R ce@Ы?gŝ#r=4ܞ7C=!-<;w&;@\Y_p.g& Us⨳/Ϯ֐/f{"#Dxe6|=3ČO3*= ^[FYSM%^]!n8DzEێYTl_cD>>$jnqvr|5z9MWgm}Շlc&q\)sTp\2yqQ?8o -'am$ӵJnɄkڟ轱#k +'Vkf2 뀰}O)#6sS +G +ڹt4{M.dPyyOdy#1YEV9IifqkCZ_)P{aQd\26^RO!_pg}q3CUهWB"Ӹ^I?7jVz 9u9vt]$6.|af 9%%-j[, oC.4P>{kȫ!eSin \0b˽RD9˙dۓK:2 3Ay39;w)iznt->+FS1ZYmѴz5>h$!P4-5qmW }@{W(cj*Q1C_pN̤CN{ Xi-:w>r5$ +G34? ڿE%m&p-`*:dTgk:"9Ɓ ,Տ1E ٯtS%Uĭ;!pQdgc ? +nXG+=@x뀱8q.S$UwR !XupqQ9t} KQi2)L +מw%g2hu}=[[2#|PZιU*E4R>]!җ-|ƬrR[+9iRo + Ҿ۝wW+ۭ+ u銊ns!wmH,WeHoޫB*;.rQ.H_,uOƑ^pK =ٍONU7cge\_k7&pBfoU$cd\4㹤ȝ~b b&өlp8P@% qo34T@LzS̥GF&q*=wm恽N&9Rd] }-!"rv.\]U3Z 6,0`U#18sHt_(oĠz&r>v{{5$'Tt~ZnMf)Ueڎyr;xa-pabւI zH@QhdJhVKd*2+хԍSKx $&K&VŀWO詨6U+H]QjijBCΒαkS'qVS~-3nL行pJ w`6=t{|S+tM<# 5ljJ{ͩ$nKDXl.fx\'u^#!R +S"nPCo!V˺ \^CEI嚪T涍sƖcKΟn+v X3GUG7{>6{o ++ωbw;JMc~ Ca}gypz:%OBP <\WKvj}չj۝T}[@S'EtO4a+zj ]Z\gk{!98Z=LvU6%T6~B-o 2o,=hEYba5.w\n "r -r;ȈjIPkX}mcP TĞ]T#J 7}06NTqY(I67jvK}ad7.))1 ڭM)XQ NKI;cWn֓zk.GC.f|fҷOZjhf `LVNI:q # +D/ty_K~wZGJf̥FuXʐGQI^xF 0LFIf· 78cZ#bA PyE7f>Y +G̬8\WV{j񏔓*騛wFu$g\~ ~ +QY&z%"p'^|sZ1װ&,\-lO]ڂ?\ +sB~03PcUClf/ִw# IV#>. b[; h8Y-I_X[w ).> +p23q9ڔJ=]S~_Q[L *p>Ȯd4.vI790e%9讗)}0myg.Ͻ;؜h`hܙi4Wo'4}އ)J1 /;M.HVNv;2UFOwV$ ʔoEn$lzoLXUoFWJxvV@&@bii@G!.L6k٤6^!4X$doe[XAto:6v 8gﻚ'kw:WXX{ɜ䲮9 ii)WIl@w(-u> 'VuJ]ch/$O@>JV0>(6W0du׃\2=q>&P9bDWfi +P29S]"C[ X{otM9/ONprQW\" .%PW+O_o p$Q6+Em^5TYX<}NtrMw#\ׇ]\8+R܌2 5J|!eUǔrW=0ve'|S SoWR/4]\53:}b_w4֘wk&DJm +JyA2BBQ%J-;u2M&hw=ѣU6vl -P2 KdMh0=m1h%~gЩN-+=`Hcx[}p/Ѕ`vXKnS\4߭suT^[$a0rCX5J'55BnBmSY̖?)Q4U_ PHD +UiK3;'}ָF)Ž~?cml 'X]hTtGqM\jdNN۸F!wYOʜ]3h~TDV%=K!5._ SHXi7Q5kYa;E1nwYWaBXvp~|?9IbHy?RR aG٘h3=`!o!{H5AP' +UHY)!z 7Aief1fL!YW̋;Ibᬁ)+خq5Pb*&O3|x:^u +|D*B%Z(*8YKy#rÍ8>D+2s,kdF) +nq=ǩ")Pm)Ѕab` G +N4ӚR82 +6@KXLmAH*_yu-^ ^rI}סZu~w& 3.Ѓ8̵UxT]l32_fLhK 4N`3vw߇ضQA fX&K4b/ j/O'1a39uYSHL*]T\cf \jZ +N*"s$Zg%AmBn:NRX=e^pcW;󚯃z1P(³5y*$?hcr-' +3ma`+1*,y̱;.חYZ2܆`Jcm~8f{4N^Ŝڇ|WsMtI"/#UaٙBָaa+׽Q +ΘR>X(RJˋ8Q NӮ@ +J_)62DtȖVJ55и;fMXȡP'YoΒܹ7\\tq^Ewڽ,ϱ x&&3g?1S-H]6|ӮMme3nɫlwϼ"8הo( +k뷺ʦN +.Wc! =^^G6:,F=JhԶ_CZ*`^Щ4rOJrL4m{)l[O} @5l7W`Ml{NT+( x\/.s WTɦhF9!3q)LWTb:ѠFy2>#4,ø6Ԙ +-60Xݿ5'`.e3R4m $i(F;5-&$`-cxO}:TmJ_XZj%H)$̲gYۤIޛ1zI_ZXH΄(:xpGƅ[LT)#G +%x +}M(,|iDZ,-ed]/T-OX|X ,tET*CA )|ժ!( (icFh_D>veG!.َ-_ulr6K[NJdvsO6  -_Z;6'*RY'&/^sWƧw4$wzHmޅ8^de(A/\鎖PU^VY0ĝC.gk aIwǴjλ0"BW9Uw<=Dߩ;#5̖;M[l뀨e9 g<Y}TMp-~+)IrWyeJam6R9asqEܷa(9mY5 i*cX$1#;3輓1t&or R[{<VQI +O >%g{%UܪE Oؚ8XQٟ~W"Y!sS;75$Oe}52kJFC*j(`SqبxNgZYn5 }0jÎx9p8ɘf,rVꆻA.jk#n\r䅅R[gC&ᇞ}T;ԽmLEar>P;+9ïf"u6uD]FmڦnBibB7ǹ~;s^'6:#0&QvIIjZ]m&8*sؤ +K8Sbw?S2*CE H b%P +s`T,3r]|f_ }llԟ”8B`*#;dsI H +Pr44:Kܳ. +bJ^)"xu۞a]yޙ5xD{ZIvh'o|KX]XɖLzHj_槰Qu3,w_vZlv,EƧ[#s<ՕJ=BH;Ns6,C [(7z~Nbƒ+2'Iי5'>±N}XLbD]m]N'`xþ %Y^e4L=+ҸU^M&4bK G&BOeFu.$tSos}i6{$uHe X+2V$~ܷp{t`} x9I3 ڕ0"X3&֩tPU nu;0AhM!>;m &Vv)ESՉGs ue )(K,ECU.&>t{A+{ J;ЙÀzLUS䱨pR +D6f;ߟuh:k/gQ-/BH6OFAҵ\8Eu {}i*^㵚^i(bE ey?*%{!2 ׾\UYd$(|տ={ +E{jYev"ѳ/G$hE# e';CZ;e7G!Y6{q#tD0'iaع!\Ԡ2=K@埋 +1Ӆ_klʙW|˔~F + }).ȉ׉fMe8h櫼$2]|ޜ߁beFsYg­|]t߆ hxO}iqL6M;|j_lƒ:@+ b?5Sگ̖8j+,MvE8I2G MpվN*pq.hV`fr+ed͚tdS\🂐bMؘ^zIpn>%tEv ?t`XE_$"D3NSh\^4$Xú ׸$1#$lܦª.63 ?G^I= GWW>b],R[[㝙Ls^zwz5|_J@q}Oix0X,|I7Ļ?@\+/ǚDfBE(lf@}W}X&l}t :]9C PD782U:\2Y{\㝟_}aR.cހl52-寄 urf /m(iUV(C @<67λ|7^?{\rHN~^=H7r \v ;88,Lm{sV~0 ٤t5zl.`O!ǘؗڱ:"h~#mݲTi^Ro Swֺfe`]b\~;':ot^M k1^TAmbIP5-LMT}S!l&6MĹol=ȗHIE}'Ķn}@kB%Wj.%ͽq{g!zoVp2C5&BӉ1) Χg$C 4#:)V ŠjfFpB_um4(o"SzM>&g,CHH txyԭȭtH͝Nlޥh0A\qde6504dҝ\YM΃m sve3y5wwKFkh9&QԎ]f[*l_s<-5i3]GmLG5PNBcb 3;_qs@,6<!Q ۴~3;uw B|J zLop$,@djDFl"1^<}x\DS13}=עz4gVQdY9tӈ._^AQYi#.dhz-{1(E iV!, +3B0;ߗ a 'j`1YyDZ~-uzAwH99q +i)Oegޯ4ݮ}e.Т{=wy"an}oE PA<:sO:}őO%$:7.CJL lUO0a{7|9 W!^/تWZȂ/5nM?VΗћ]FYIʆ[U;A6[Jӝ_ swꢨ0Y|fOjHiƦډq½oFaJB51f!7o@F\r6=2L@I4yZʜLk6 n>4mt/ 5"V> Wuѣ4Pt׽ cǽ_&e-;+:2K>֜em篯8WgRd/Lı+)!Al1UHN"iU2hnOI:z +$󠰵 hQ)8_p=jnZ ٣Ë-[;8eh\Ӈ^J_ j|z{jپƕYxlzc^OAP1gQӧdLD%ezDxt*#QQ5U1[5)^|>> endobj +1024 0 obj << +/Ascent 694 +/CapHeight 694 +/Descent -194 +/FontName /GXLWKP+CMSSBX10 +/ItalicAngle 0 +/StemV 136 +/XHeight 458 +/FontBBox [-71 -250 1099 780] +/Flags 4 +/CharSet (/ff/fi/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/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/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) +/FontFile 1025 0 R +>> endobj +2276 0 obj +[642 586 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 306 428 428 550 856 306 367 306 550 550 550 550 550 550 550 550 550 550 550 306 0 0 0 0 519 0 733 733 703 794 642 611 733 794 331 519 764 581 978 794 794 703 794 703 611 733 764 733 1039 733 733 0 0 0 0 0 0 0 525 561 489 561 511 336 550 561 256 286 531 256 867 561 550 561 561 372 422 404 561 500 744 500 500 476 ] +endobj +2277 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/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/dieresis/visiblespace 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis 197/.notdef] +>> endobj +1015 0 obj << +/Length1 2258 +/Length2 14796 +/Length3 532 +/Length 16037 +/Filter /FlateDecode +>> +stream +xUXͶp;^]`];+Y<<`̮9j&'VP634ugf`|UQaf0301v41p5p60ss,f&69ೝ33?86&FYgsFe;# g5@;J&N&& pc #g-?NRv +%WG'_Q\ZU뺁wq6q8j&%'kblbJ9X[ ۚY+d$nnb`ldpvt1W;+/F)uQYn.*X:x{F0<-&`}J&fkdglak`a8:x^ [cw;Px X#?ee0/[OhbcOl9vBF{G#[?1. 0dֿv٘8Ze)vq.Os{s?kaC6Z D+4q.wvslh˟uM-\u u2qkF(;PolmMLccQӟbqM\ 4hlIdG8s:  8qY}?!8h'f$e0?.0 ]+!`v?̮PC@?t.j.&n`vCG#+x6oFC`?*7G3 q NFv6 |fp= ,_ώ !//XX@'(e[#/Z@+h\B_r,@+h<qhdalam_-M""v^lz L>9LpK3&&.VE\oaS +neΈercpXt$ YS\}\|r,uѨfsy:!!+ӏvo CW4<4Y{S3vPͱ̫\*Q#ub-׆i֪!AuJ()l!n( qS!0ʹk]Оar@¿d-7MYrmh=mD|u1WVϷڮ=vM(x̿L }vR;.GT8kEr bb)NL?7 ,H,i@ $4i0ƷKW!-#w-O.Vzu :!xf߳C{JNBK5ΞyO$b#|b}ÈR90=W EGYiC.Rl'"j٬4ӊ-f!# /vEdO.@Qdi.սӞmsG+j6Vg]d6>c@'!8bMɕhJw5FiB`SyїjfX5 +r@ 0c4c$$Y#G+Nҫ= Zj?_%q,$kQ sHOL% ;E<`8KdbCe:Dv]pb2]0ɣ21!J2;WYٮAw`ÚnJ!HM9Y5iVOy*tPN1LST-I G+$ \s? ppHT] l,wKS$0;ù:C^%]`:Ai"~sQNv^"vdԧvT5LԽ]#}IIw/mIAEF LHZ*c]̪z8kCQ).uyiTleAtSNL45:=wγzv-PٵuN-g=Q}DroKg ti;0~3.Ѫ?ie%i*9ҝ^ IӬzb18;|~冦EʿTuH25:10s +bMÅ{72 9# Ǔ,O$E^㰡I P+\#Nm_G[GODsڪX V<2_f? MϧɣMQ|~tc dr 4 ;ۈ :7 Av- 3n+6ToӟESM=>Yn&UNH G0֚%h.)PCR(Lt5r> 6ח.0S媯mgK+#Yqp–ꘁ8 !5FWJ~vuKkLM?jdh@‘EkV+d"wh=P#‡ %[ +^^|,"2=H.~\E2`<Hjk{SCykw5g6{)鈌<*ٍԕ|a Wu;!z4w셿6Llyޗ><0pv c. n w#>gʍe|iwE݃ه1C.$Fƨ43zdx&{ءߝ{M%&F4yQ\!qVrwޘ/ +gQt5#a{DZR{Yb},deKlPӭA +^qw}@.6mazJR-'Eq #Ȋ.lFJ}4&FlU(btn&F T ۧ +0nrRpd݌5fCls/3cRm-V˸VbFADV~ɟW=WDB*XTtzgt%,~MFE0#+Z^qF3XnS,N?!m[tAss)"9Gcԡb. D +嶽:;-~y'\_`x/?4<}r5SO<0Eu+3?\ +%Yz6Ĩ*efbОQqC RMEtt(2<"ٲeWg-JGQcL%N~ؔA5O]mHb 7Ѓ'Ǯ 6 ߐ ؃LJB0;^ HzC4&'~*X!x& L#GRS?\iz=~)A2s}cH.v&ÖdW֋=0^C!hH< ,?ޙ+P#k Qt$`AI%y٫p*?7S%~Ց:8pޡz9ަ -O梳_TTwp RtJ:ÒɢsN~ODA2$8TKZU [N"h=i0OsX@t)Pss}}.DtC;#ԟғ@t +l|:i+IzyEqߕBFk,_Е%R2 A,#2G$}RIYh bb[ WLn}D1wŲ~Ju[n2y-J\ߑD@RI{fЋv.ŧ–3n$늲;.Siמ + ~5vіt@d2D28p|AiayŰhCɨo};B+~]ݺfQ!z/0XҺ}UHTv\ ІNMlsmGW %WxF|X fot'}j R%DStwLN>D/ m糆~vY§TEcF2OʛjT`oh! "4"6Ęqw2v Rbl  \y"oJQ{DI%Xw(pEB`(RnNQFrZ]Rާ*:Կg98l| It/Tf(3$H<`ע;ɜ/Fbaw=](F ՞s9ƠZ= +%Ln 79%5 50Tf6^mJ{w +K磏Q{<-UOqy|~Έc0?X-QzeZ # +{' q,¯ŜM񳂐gm[3 JhӅxsh57 ]#e{4$שw틒Jd퉉c/jmONP}gLZ!9 nPhǫ]!(.eeOMxbM^f'VCMQw}IF02Q~ hSyNJޭeȔW5'RW44V25fbP9nu(t/> +!e}df--q OrK8Xsp) Nw`5{+z0!_/^Hef]hP=dԨL>ˠc(@KG(~"rWV/\Z-BA iȞwpeo -Nw(b䆢bG11Y{EzwBtgrږ]n]Ҿ!EUu<'i0=6]d:DD:ʬMYoc`XaZ +RU~4F\z-߶s_ZiР2Ɏ\QuD0{,cq6Y0gLyyj[o +h"%"gb_](`el9H~9o] $D~tu }5aE VB& $ rCbvU~yCccȚۍF~D>eqp2'݇g;i4%wız-7(W_?<< =,'TAF&RXAF:lRI<3CZXNяߜeRJZ8Ծx5=ZI᫬v'4 LxQqmah6,zGSl$$W!pA'd73 W[Cow%ƨy凂-FA떌1VX5!„l[|q*Oe?/SHq2>HdI])ȧ67HAr +ցi尺\@f'6qWǎ9N&{1yat(^Ka-tzU$#Oame|]Oz,մxuC%W~/`jlw/p' +T=a(OmX 3.!9XeQrE= A/_u-Č-!Yd*w5+^6jF +(lvR1`;dOL{r|W iR4ƉM}\h,\@}.{Y\?W}I&y=dm0ln+z 8%)C'7{9C Y0P{_,KjJrPȪ2_7K=C=Q:ƃcSɱD K`މT>Ý,XG9._u-$a$3h,HnQq~1\ 3ВC1ʓvy7t23J(9-k܇T5r_W`:ޣG[ KIËsUD oC57/^GLКSm u]r,5Zb:D,ȅ%X^3W&ȟ^\!g Y+j8^0GbC2 +W]2tWsT hMr5S3<j "~͎V\kIfq2/y&B7K~UX1I@.1{uVƸMn lT--]9A^j{O]8C GT٭ُ6" Kыk j<|wuHX8%;AbsI9 P #rMKuZȶDkWHɐߙK̈́PTsӪ"V,IrvOI6zb 5jG2:-9+=VϴYbST:Itn9 Ve׶Vb*FfGS*5v)ɳd6 +YݜN-."l|XDs0C^ݼs\- 9_dlMڈ34/_gc! jȂN 62U"zRFC8f4lanΚaܔ^p~Mg-.J#&'lza0֦ҊfdURcDnUVra4؉'W.7;9Q=HsokKH-.E gΟi^q::y92{JW:4VC ˳D]\!1rzIBT8y["j:7MTcvV͡I1e^ܳ>kxqw.sdz!B`t(i9hG88r~JڍOH߾΁Y{(}э MZnpvy\rif7VVpן~{`b#ެxB}`ryN1cy8l#? P^̾;a(|b#""ԺoIjR 69EjGbY!.MR6wۯ%aGm+wqs 4^HV \E}h1 ZTUvGB=J{ws;۠D"B!_YE. @5c@EvEQ-G*Tdy+/S-s5&rlwy֫mtE< $AϗB*:=$;jf %@1\+qIfِ1NΓu2Ym6s;] kא9k$QwR0 +r,ӣ ɘd# ="܀`0-S 5',uMi'hoF$c-T8O]HZWYGi/9Ѱh0uԃxM7(Tt)12* O ;t njIϩB~(ȏGΉUQG6)̑@}Qe8qq[I ;9Eh9[F pͧvTc@I.#m~`אf;_?8ߠd6*|HQ.+:L&&>jBhPz[ = 8岌ldqo=mND y%s,u5OK+~bF_H-_w!>ʛUZ*`U]״:o0,O$eoəCMSG+'[QdJU2^ h迤uMpY]c9 \ +d %F \8ToR-6"*FϿ)$礛5bB|}/QkAk*&@ +G J~;!54EC-l0C.*)r1$'"eO.o}Ye>R'ȕ@:Ӣgv&*Ԉr@L[?ee/nOZ1D-nn +AG [=%r{>_ܼ^Zf]9h~Z ]o޽!DbqKhI^ixQ9HJ'sy@ʱel.p@f㈢OHNw NպԞ]hu ۧr*qY-Ap(ϝj,O'NrV Th7^GuE @l;౺%>k +=-2y +_ Mfn-[Eҝ !:mcv8!prLQ^=Pd7Og0Ջf7|=-"̷qP~f9%:8|e{MώG?|Vsv+}Fm]xR=Yj,TB~j~ӕJ/? .1 +R`1\K~z~}=;Vȷxܠ-U2p+@O QA&EbN k -Lis5[6{֭H˼kAgF\d:0iאk=Q5MdץB4K*>> Dp)T5l| MƷa@G{K!f=4*1Y9GYTH:qШV_ZAw]IحŐ a`lQC}HlHfw.pͣRҞxl5Zг735b8D5֔`6gXď3vttRMǺWBkep,p}, YH+mz#nsaT<ԗ'w+^uWXVr*d}~]05 +3."Wuܢ V$߾y;ܡwq0c:\:;Lh>Bޮ*9pL )[![W*Ym--T,!}nxsH"ڇ8>UQϳv Fl,؈{u!ygj͘oh)PW]x tMq8"Hq b, _(B7;OqO^OvU6WOSQP* &3.ؖpA92\="5)9…ܚJ tĩBu#L*i# +Ak$or bK3''s+PGG}+}=)8Z+gH(VL]M3p +I3EuAo__rWU_q|h`wxFC)(m.Κ6)NvDc6㊒&G" ?: rg Cz$c DG6/1>!njbd䛢 y#g)N*2uQQ&g .;3i~_px/Ī'/ n(uΏ/=K |%_ DO"uLq[1w\}e=$bKѿ7Ki |?ĐQxA`0~!Z-Θ+e5b%bИZXT:mtõ)krOFlҀ +dH#AOcŬ>\U//q]Dt\GE!Z~C"Nx1BE NzlaO]ֈ֛ߘCJw AQ8,#5~"-4np%ke|c˭nU/'.AIqӏ@>"g@Ŋ.?4(y;ť1+˵^ fg<ef+#%YE%/4E~R5"42Z3284#Ï/qRyX4["{IxhxUłnA(-b4h@"\ m\#iH L4HM Ed7o[URTqr 9y:hDc x60䜏̢mor!xkw!lԡKGLTo Ǻ*>f ;>뫚[\oE5 P<$bo:N( C,23]T _ٴP)$-,T~j؉հ1DST$}%UY\N ky}b|$bZ/M?_d+/^>bMY~øiYC+de)%Ǩ#C bk C^:"cAwH4B]UIWGNeFT3=&uO^nG4͚[aK1φtG`{ E-!z4.1!NbdQf]IիSEG 10'ݸHs==mv2O ~lKbpUhY~47CtꥦĉwqmOGP0xtm{̊WW@AMvHطr]i 22Ֆ" VLV p/Zj6g S"'tyԍ4gs;k] (-/dJy{{6V SdXӭDZO8qEBEG1)?O1a,%d80Ɩ͝뎨iJ_Ѭ`upv,~kjkˑxO6!(õd2vR #N&*NP`"_*{jEdpPn^"Wqd}ȵX:J#;f ,nlϚ?8l|]Ɩ_뵢dq %$E(BGx=eޖ%~Zb$*HTVlLCZ , \6̦cK53gXM4}li17 }՘9c+tn MU*+ބr]8C^[Hיx2ͱgVG2Gakc>N}-$IĶa%t[;/zQ~lMe,VoɊ(OՊcVP󅨽be+ݨj FOǽNi /(9.g"3&F3;0cw8W H?T'L'|H, +o6&0g+<5#ل懌C+ SjȸeKMI\gRBINx-ًb#?eUL2n g%IHf eE^_nwK ?;{7\PfK۱MY5*gO>,M9[<rxA@yu[a8q$Y9*8$N(Y̼zlWqCKEbťס.NvAӑQBd`d&֭}:2M7L ؞iBdY"pV;Cȫ2, T4K̍ MEhEehX B +$, +,VaH]|Q̤?'vh9(a*=?5€|@9F;đГ 6I{Zj}hQnhZLB,ho@n$i?Tan}FS(o􈊯<Τr&5ِ +itJY_߹w=bHRAHq ~0,Sc!B9g(}]# B/L~0D ^2gwPz8gc +ƈUXyƽuQЖ t*cca%ݏ8Oħ]a*P{t +".NNdc;;F`bEߊN5Dݢ0QG{oP yg?9M0R柊aEsܷS5Wt^rΐ9g{) f.ȄKV*K&ԿL`e~$!g]DmsinrNNj}Þˡ O.vM4wߠL/sU=DpGȟU(a UVB"OuXµڞf9'J kX ?kX<i#v U9VmѴ lwSNPBF|3e~ 6z%*։ڷ 6Ji;т,唁"a.tEWϭcOEK= hG2[ݭy8x SZiXQ+dˋv3D;~Ait  &U!_V]~X1r`F`x +x7;si敯28! Cv3O$iEITQk20X_ I%Df߃N sVRM]f}^+Ga"#kX`x< K +EQ&싷aD BMeԵiF7E\~/Cyl <" $m(*qVyU νdp?F َ;H0H_EcE<0ُŷ0AuA@0ڨ7̃,mhVa:ހdbI=F䫕8vgr8#C`S4+fb^S ihD 2Z.FV:gٔ?T@iWt9U /yIGix㚵y-J=<*W-Zm7γބ=:p@ 6g& !q ԍTY&)cbkiL\`Ƿ"uo< +vȋ֮|"~֭ 4y$&PH#s_hNy =Mk͕_+vd/{c! ܑcTyk2*ENvh,>fd64~\iZx*v ^`+&V ݁"k*`ݖE4??'&061pt1p?(endstream +endobj +1016 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2277 0 R +/FirstChar 33 +/LastChar 126 +/Widths 2278 0 R +/BaseFont /IXKDKM+CMTT10 +/FontDescriptor 1014 0 R +>> endobj +1014 0 obj << +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /IXKDKM+CMTT10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [-4 -235 731 800] +/Flags 4 +/CharSet (/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/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/bracketleft/backslash/bracketright/underscore/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) +/FontFile 1015 0 R +>> endobj +2278 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 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 0 525 0 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 +1011 0 obj << +/Length1 793 +/Length2 1151 +/Length3 532 +/Length 1726 +/Filter /FlateDecode +>> +stream +xRiTS2j=,BB0y{Cn/74,b%(V: +8Va,R*N`]]?_oslS) pL.+Rԙá1,' pBAp"/1?# \]'I Vc@*'U@+ԱE`0ĢqB$ =I)q x Cw HD) WT7OȚ^sAZJ1$uPd%N&Ճ(>x29{{_kLw`T+ +O sLĐXO' +Uhȩl{+i +&ɾksY/,=S^>/DGn9nS2RY`Z_6b8!iw3.65=݌sUnzh%TÖv<6[^+W}qY,lWw eL +b7rnȣUKuaOBL{ xϗZ Fr\x:.f9(zIlwoB6SP2^=P˲O/:.8k臒HCE9C[b=X|X]˳yAY̵R׆nW =&lxĵ:T(.a-wmgR) +Q"b}϶af:1]ȺC5ݛ>bю4@iIΛ+x#vXsl51_-i_ʵL2BAc +&PK΁9.S\%p{8duI;ԻjJɖJNfܙ9|Zb{2[Z¤;YQ,%նQ׍6הέ[^+k6޻;;ȗO-wZ\ )|ܺ*Ž֫}Y2FTIs"eslYbŬ]؅k)xiLd&1<ㆧuh/?Q@rr")endstream +endobj +1012 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2261 0 R +/FirstChar 60 +/LastChar 62 +/Widths 2279 0 R +/BaseFont /ZJKOJP+CMMI10 +/FontDescriptor 1010 0 R +>> endobj +1010 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /ZJKOJP+CMMI10 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +/FontBBox [-32 -250 1048 750] +/Flags 4 +/CharSet (/less/greater) +/FontFile 1011 0 R +>> endobj +2279 0 obj +[778 0 778 ] +endobj +1008 0 obj << +/Length1 2183 +/Length2 16756 +/Length3 532 +/Length 18002 +/Filter /FlateDecode +>> +stream +xڬstָvvضmmfcm۶4jQ=y~#kk]su=BAJ/l`l&`JWaf0301QP:Z9؋Yf_v6v8 ++J$N=@8-@Ջ lk P )33`lfaeaS7r7svJI J:zL]K*3? YzO3@jMJZ[ؚr43Ur5ٺ+nfo%;/F-E ϴ>)Yٻy9g;V&2?I%no`jeo`a9;yo>+{S3O'P'~sgxYhYhI3 +mkd'Lqrsp535ghfgձ0:9 q͜Mz hd?QYbcN`lfokfW'X?S +suse`gg'O-lrcOXß{0;8;쯌NώsNVeu]7? u1sx[k#؁VpS_q3G9fNnF. +?bO:Y$:""b nH!6I!!!(! .....!n?t1v621sW?~)U.d LL._U Z-B`5&`!/J՚V32@+hs]B_ϻ\B_r VuW_ VDDӇ un7g[_;i1`ab?Q7g`sw8 +ffif`j^/^4_ I*bіԿԶtR։fQ*  %WyF:)1cIw]7Gҧ KvPݩܛыB%*1$ :١ZYa$*(Nl;()I;s!0[nh/E0ɿu0PMYUi0T ^G 7| e,T'0*!yux 7سtZ$z2%L7IEqa~qM ENv-Х IaMy$+{Û!GOQ0M(KOدZ_yxO,;HNvXۙ(^@$ދn_R +ۢoɮJYjWYvs|iL<8p#p'&Zr$q$l(wf,nIo?_tMrSmo`ȯ5-AZyBG9yE\w&9L$EǜyId@ +R~$i>컡H֭2.@k-Q38ӾBaH+A|ez/jq=j /NSCRymotttr 6JYV& !?DQPqn̫s7aP3dFU;p ʆ85;]~\uj1uF X/+JHr7GRԘg>-`\ Ud隘zY]{z~3NdiVr)]B"O%@QCQ^Ƙ.bMsDEc32nrbHOc65P G߂'.ܱj|gAs<*)Ҭ<^F2l]b_{{XJ'IY,Yjĥ)i#B>nڡ (!Iv<(|۞l1ke)tS'&W'ŻlpXqGwwzq +NhB +`u ?du8v_45@|j(vL8E`ヤ5a`]˚C̱;A~m6Um] żw]0\iǩ26j6-N2:WcMJt#UN" Ն~t"Q טcbfhw!>ƯG:HXيE89d毥zaaSJyLBm3>۩N?/uSIL+# d-yA8IE&F}=`h&+w%7p<$yfjӷ@Г#f8RzzCN(M$y|{HWl73Ch$s: @7e= Rd|;1ZV5Wk&7T%^.›3@{*U%d#8e'.lK{4Xj7 Qki[=znb#۟pʨ,r@&0yC9Ҿ)b|?.S]pұcFQ +z!ؒpw'-uCG"4Kbb˝V?UT}#'AT:f׽,AC {i4}0jF\Szu_62Pvgq! 6lCIb6 +dvjfah|t-6c=*Kho6>\*2:U>}*s_ Ykq+^% r?12+ /.tY#a- +Dw9CN LpyU&}5nՒM}fRrfW(C|MyhK9-vaG?lU{&q{;T1ğ}kDb?u"*/I{8=5#y*v۴|Z\Xט/yuZ.FBj"LrG5=ًd%Fq_N%kXpʫy[AƓ7:܂I MCdHpGPV%J NS [x#Жm| l~etF$_[X՛>voqJ) eTاȸЂW(*=],zlj=h2ܓ(ÜBbӬqpaAHIq^29YJrelLª">ȃ;ygx"Ž{&෱}x4PqylR,l1Z|ftWK{B5fGS~7qIh؁\ʮ,0>㡲h0ҚG䌟vmv?EJRٌcZ`:37}Ozw8t:cՕ}q\3 +' 4m : %Xk@aaTŬ -j sIݤ(G'SƵ嬑_o'"܅~(;r0WzĩZd>'n*z{ZS១svޝeiH~_a/b$W^lվZYw +13bhgjš8 7+ +Va[Ժ5U c¨@˩3/ >NYb\?3{VD~C.72T0|!4eZ|͒m9-?ʁ(CY?V{0ٖ~kUz=s:_B,.A6D>d>=d*x.yvcºJ8_$k)drQhbe3حI/x o˒S0'7쟐0:xj$chӈ@76|is\\@D$o;H`*rыO{A2l^<^@gov}JEv +d slYN~Wr +/0bs'Glӯĩ;դ#!F3c:|[M6z~Хɇ%e% kgm5ӝnZ =/T)ciEOQ57rfO4.R/яdnޜp]a[t{ޤx u>u7݂sl8xg\<#'Z5HMمWE"ϒ ƹ#Z3 *Mu/D&Ϫ5rMk6gx_ZmՔ93}w4λ;z@wռFt!j. km3}AجRwo <}@t.M|Y\GҼw`٫`:*cWqE)uݗQ]b0@-t:ᢥ / ʿ5/I$/e +:sj #&ly %CSίynț +9`@v~M2wJ~i…2c䠓v@;  G=!)N:O"#;-IqwH^!ջ:.. [Æ?gtWd{j$3WH ?z>|1`X=zWNc4#F K{'ƾXaNٕ`r1_x~":ˀh_"M5g-K~[Cpʝ +Ud[€Qi{whUTNlRV)1T ӌGdY-ғiu;ts5SF _{v6ȋ }Ȝ%>e_lmΚ&=ֳ* ASYۏZatr{O{J޲{J>7d=9E]ֺD3 +?bI-s=CKvnc79RuP`#ҫ @"f9lÜMjܿ{?cZPьh#[Lzu%NSe3%.i)G +,RYOyAv) Z'zE=:h yksl\'dFʝ]cT܀DqE"KC FaP+dB;]Y'&m Jw\p%-l5g{~ٸFUehRHeҮtZOMÿ!(e -ۦ?LJ &W)Q8w +:]bD]L E>8 ycMI>{{ˈ c&3[xz]3'3mεK'-j{^ gy fpvn!#Yx'v>l:&riv9J뢷e'na&&$72^"EAlOYsJo_l8+^58p䮃:a@%ly"!PCeoy1g8Y7cm  uV z3d^H MQT]WD8l~ҕ@浑Z-Nؚ޷6#*,&pˏ5dc]2xyٜ=ԏ,G}p_CR& _pwu2üؑ dZ__`5 +V>eGH$L?~M3GwiV9:~Q(ݭ]ەd tۈ;fv faZN$.CJ|~tY#dw<Ѐ|7$accNz.Q?4KY]LZE^:24hA'̏6LLYW[JH^TR|".飹@=\V@~a5)DEޖA(0y--J&^Uc!ƌ򅓨i>zZc]$Ip-^v2㮊+'`.%)]sOiR-T=M(@(hE'.:8Gge'Vi!$[IטKuձӘB -Ѭ׉qhm~>3lݷFmB]2r14È7Vs,BJGRBmWi|Ixޕ4mɭ 1m~v mPiۻgvҋj=r5k;(;!Ȼ^RIZƖg _0} +/3tH)(sw+%;+ G4XMzE36Wwdk >.]t EF> 9{O%3V*9k|ÔRÈE? >/D2 QS|?GÝ:&z\eу#S .<&|TS#R[c)QpH /s^yB:++j<&j&W/ +'Ix!ɼ 18gJ*T%رYv *Mk1Jne +}tkW,vHG掭փ~ XVwu$|&eݦu1/}%p Picծ_auJ%Mϯi~t f_/K/~|Yi`]⃖ib"*2m0/|P ŬjZc_K6qm `\3&c* gO/WӺnH5XT HWsjE@JWD7jV'ܹ\lL{.ff-e /ТrR +pt&$ۼcwn]V/|%9(ŘXGn 0r`YwjNܱlvQx9A/ 2S-Em}qA֗ + +Q,Z;Uy@WQzNuNz~䞢fZrMbM|S/]j,=À Q/Pb=]AL*º..r)ܒSAzAG/QuG6IpJqaV'w"C63&?1&n3xib)f50VƃdxL9dgT3O@}IMkfuGLW )8RbyMH +Kba|q@Pe8EA[ y-2O@Ar?8}WZ(J%ž_!8liM|[3Mu1᎓|'}xM|As¦tZ G2$Ҡ}mXT'.z}7/Ռ{ IO plj{1O;lc +ϟ'oT՞'8x;8_a7YFwrGCCg|٨u9U$oFaVSˊlanEk ᠧڇSzC!}9m0&8`DC9Ѹ~S,ȗiL";KpQxTUI&gX|d +]WnJAt k?pJ8:P+RTIKtH.>{ kxZC?~Z`K'm(u~PyjD,'d͹rs +gMkS`5Hߕ"}bso +VePsN*T}ĉaqiç2k_s1 }M/f0K_Gu.ś"_YfjA *l°G}?>r˰,#̋kZwn z0i@ JN EgVᗄDzF-Q%Oz8)KAD7έuJips D?EđS!FU?h2ǍK@##V˼X,+$ &nhB:&by.htE +k:~G qFX-\ʿOɈ(][6-(bciܭKm1)*ܻSͲ9<KVaNEifS-9+\KvY\t7ArGr(V~k. Psfu\ćSL "`8['&UE DȖT. R`('O/^nğS?/&iCa>~5i~nӒn"YMU.U}w{t㜊j̬>34;̷{E$/gv/\6 (|KA_h!.cTsT}9;%y= [|O-sG:$œr:۾g3˗(H"P8 i)~޳/:vED8i0؀ Y qRm$=yM.x4TO~{Yx?ATY~9Βܻ` +f|NXRrI/v=Ⲡ7=<ѤDU|4GT\D+-]-t%6M ^jU9.=RޣjeD]H +IupeKTxDx7jV**@^  ~#"T;nxPX"kR +-&ОJG_%E"?L֪MtN6ȸH(X Q#"e|CDscPA2-; #%(4j1m!n9f<2m1F>O׻$W?qʄڄ9A2Dc|fxe癖9}H]DH#5'p>?Mte?43i(0%LJdӡvX݂SKX C_v[|)oZ0!Xq%kv-,q:omg\CaSt)\7kϙξ+p;/^,w-^x*4JxyI[w,Vk9S:@w +ُ*K*>bT?;! t]ƚ+ϑk,[)$֨;rbKr heb@2H#@^GqE8{xw=F{se  +%^_[/"=؎N|7 ;ʑ :}e#LT{:JbJ;0b.!\kMCMҿ#/ѡjO20je2 -R,ǰmkW +Aقؓr7vPR̅~y:ͬH$< "ڕznmʘ3@+ 8qv; ?<Ğ Es%QUݜOA; ++HKhfæ06i{YW uy^0apyuG%ǯ퟽ +{lќ'd#hQs3p>!,F%eJ> +A7)1/AogPp}pŭ҄, +tJKSE#Mvh oYc\=`i\-1εuJYz 荾2F ˋ`*S;TI8EXh@)(mAvFqi(}3ă |*Y }zo9<;wal$0nW;E[ͱ-N{힌C_ 7 @%FS|s]`EepYM̈́U'uGECcЍhg/ॱ'1If N]$~խI ŴF\M #iɐ#j yNP}A:uԧhH:IKnS;Vuڳc<~է(r (!TxۥE1II(Ο}+]ߦKhsXezH4/YC$l53f;84]eT%+ՙtgϜQpZ4Et α~kG vFd~F;YE sG \+qBD9^LFP80_JBIBè"?}?`Aq=; R&iil.9Y<-#dޝ%a ʎaP]0y:Wdj]WWAڦA%Z#^=ٟ2RIdaHX1I5>s|<#W~~(Գ=@ɴ=zo!j4l˞#@…S_Ĥfy sMՇPL +g<&UkINdݷ@ox y CE2=:~9Qx;6Aʐ̝) <CO߉W"i9seGǭ-lu[KR(c# p'M>HO2S4°v,I xKq"=@:]mơAbY:4d%i=?;W\>v?{id8. v6Η.?Q!I٨+:ӄuMHSHVmT#T΂e[]$]|QF*~Aeq;τ`a5Aiїa)f|EQ#29o# 6 7ڙOkA%&ylw?ղ<Z)ByfC[ yJǷj5FSqЇi`[N~>̓)ij*Kw6d +.ذDZ?p=4,}׬2mƚp'#_1BiB!SޜHTcq +<=ZGNq7>/ko}`TbV\:8˶΋^"wXӐ mCupD{ݬGiЪ:2g7錮h"yx*&$ +LƯ^Swtȡ\k77/(\iY3tnV>< ;qpeJ!Y0d./pi?a<:UqK"4rMF/c%p~o]`p\=LV[LX*nj^:һaD[*|5Q44mQּu*Ff=§& |iji.r^<*?°o؁`(EЇŏ?̑"խFe{% |#y.w}[ChpV'iRC"8>ŭmng?Np\vF4gk9 U;c>VJcE$#0*\[VZ.eK'xӮ.,cC ᫇YOj9U[`FAG`0xtoDm1P_ Y%1SDTPdci:SPp +jEy8`KRPC`u$۸f +Xmf>⃓1>ƒx1IWd/ZcBg?}9* `r~aklM$_ͷ;s6ϙ F:\qqJtDe{{p}T0J::̌-[;!ÁP5ի3"tJ&Z+7[ب1Ų/iۺ,]Xӈ/0XXP[(a ,R#Րx5M`O >4TAH !Ӆ՝ASӑԼ|ݵ//kg޻PG#:kΰלHF k̛0њEJ0a5yF;z CC+:4oWL}]85ؖc9Mβ:I=Ӹ[U J>di8R(gOUࡃB2F]176@l<}Uv kM8͒k9N,EU3TlB> +P6]#2c;Οܻ >uAÃ|[Q +N cކ#b]n9W3)E}"zol/bptI{6g㧞Gj>{l*߯`z}JZ@W(mJ$ױ_}$NY18V"kd>"WJZ!fnROiH-**ԂLG'H? +Z//q'%[L.Q .NqO>4r$^[&t^xjҎ:Z*o:QB7_6F_#=VY#@xY$O '(IVi*w`:VXֻ:^<Ơi^ +͇9RKy-qd70ѕ!o"N,uzwk "֎vn럏$.?Uvm# +v3WoeJ[v=χ[{w6A'։MbCpTԋ^Bm-qh> endobj +1007 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /XOVFJZ+CMR10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [-251 -250 1009 969] +/Flags 4 +/CharSet (/ff/fi/fl/ffi/exclam/quotedblright/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/equal/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/bracketright/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) +/FontFile 1008 0 R +>> endobj +2280 0 obj +[583 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 500 833 500 833 778 278 389 389 500 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 472 778 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 778 736 556 722 750 750 1028 750 750 611 278 0 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 ] +endobj +2281 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/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/quotedblleft/bracketright/circumflex/dotaccent/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/endash/emdash/hungarumlaut/tilde/dieresis/suppress 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis 197/.notdef] +>> endobj +1005 0 obj << +/Length1 1836 +/Length2 14873 +/Length3 532 +/Length 15918 +/Filter /FlateDecode +>> +stream +xS|߶IǨضmض;VG۶mFV'Xokコz/Ϲ:SUs7'&OtvΟ]9KOo!'ZAO72\M k} +u1g{ sw7p461+H`o'OS2 gOY;?!vOӯɿӨ۟vc'O,\isSG٘?GOs^sJBs6SF}J?'!>,>e%ЧTC +rSA>gɔЧ,>5Чv8?3 gџi/tjWӬ_i/ta~ڰw_i/a3O j+ӕ_/t~ߗ-e<2l>;SsK|*&E\?O~g>oaSfuΈ;2)W4 78h+!'7ʂc r0E9R҅t%)6V2} +0<en2љHPMf*}3ݖkx #{EXۭշUc$vDsq| ;U9 Tٲ ;0VY5 GtK ++rHxs1lYۣ* ntc3 ÿp wBu2ƱAA'c`LKU뙞Xr ̰sV~iBk@LPIoS:^MczESbȗP]Βn8?VҊN2'ޟL|x.!5Kia vBtC5';):Zhb * 4424xfqKEDZ[ +Vj + RF1YovcEYfXr3@ݰr1*8n;a( 6md_ZğY!5jgO$= ;~xJ +5>0ߌosa.:輪%"m7..R m<O&Ȯ3[1D9Q&2z0^I6$% "wO 黳܏389τf~fl5Uٲ P-< ݟ,,·cNŻ[|0tq#~;1! h:W{:Bfv _ 0?RGXg%Nt۾TN$L ;%[H5pU/zr>60=XeKT)KI '**gHuB:Osw=. cؕ7]]S2H1GBTֵr ۾2n ^}gc^D+2;N]Ȉzଡ଼z]3395+kQ/F@_h,\i8_0ݓ{ȿhțP~m=Ր>/\qKZɟPNV˥bp لlH^B_PU3jx| !s<wl\4JJI~HI~>@@ӠS0i\q/w4Y#mm5E=T/qhŨz#O*, ?,O~X NbV;7m:HL) ՗ m #ͪv>WX>0%{QANÂ@/6֌v3*kw>fP&͟O\x۩de+1L>|wB~{7ZxsADPU>DӀwkdCpv҄&lP8ބ^O(f)ܷ2QPPk}8ou~w +)|б5r~zB2Jɧa.vw C׻dk[n~SUـiqmyWv[B ZI3{;[iC;5a +IX˕m* 5X1_ +2-X@Y|P.)Qbǭđ)p619/#@ANÃyUlIS_<b!EPjܙ98_F2U 'O489QasLރ&X3Ru|uݬPR~qVe++KbA'r}AЈx`?( +dxc'_mo]89|̾>WV/bUKѵZj!}1Fy `^aW-L00ww㦹,'$-JP,;s,JsOf5A?ٰL~KuI;u`XHzArlK݁=jTg%6s0NDz_on), 硠_%G2g1IŸ~výsظGG)׆DOk(@ކ@Wtj1_A,weJZƲfHy_F }n(1R8,H ^`|IftoB)~ jBxEA[`Гva@jz}B{%EѸ?ԕMmoZ~oa@/yN)_ZsQACG<='l}Ns/$2N_??(=fI̎@á V ?Dc {_KU84y(C}pK]fGTYLlT皐jDˆPPItB> +'Zy~. {N>sTtbrս ezZ9PE4E`wpyd e^*}[:3^){R!eǚ`'v(ZS} Љ*)$90ޭzݸnO. +NC9&Zbfwwp \LZBmvSy.ئBNNd-$}G)KoBvJB+$3un |!fmrsH9mv';ٮ ΂9ü +.,$+_MS6sLI,Ҟ^nzUlex*UO4# [u2y{O;~5sϪ1riaӢ]zЋB43^ +)lfqn?0mΣ>M-{.I]ΐ@>|a[ w׾0 +[! 5t@eTWN3A6omNžt lUndŹ؃/U"@榱]/'W*4us"4bsD| +1WfhuzXxh1lLjؘ?7=˴FE-ɮݖ5tz<|W¶\7:ںsv#'Pgr1FXC;Hz&y.v&N)gԥ|4. $lw!qX@˜:h+uoRzNh Nb;SJb!Bf^joKOc1*櫟6L[SŨX+~MYy%e2WQYN*u~՞`7h_c4]X=cTKٱj 9B` 3h߽,(ђRd +LU5#"X̭&K,՚:5w`Lr`yݤ kȑʒ试|po 0D5i2Vkp0=xָgH5D+~%j#m 4+_le |x0a1F|]}PMޖ.V諰ҝw繇UFOU 7oJ_&e:^7O: *Wdt%;^j{.C0=ϵCLP\ӰQv>s#GoP9TVW0ird}Uo Bf<,#}%\x YG%S: EtW|^_F؝޽uվ(e]Ln˲Kr Ȓ1cU%я!jC{+t:Vs% @"w9 ;Սm1e ]$wD(d<[6P]"ocQXJK 2vJL/.>(0:21o_wHv4gV#^E7Wxsݵ~G3x ϳCso)%pÏi˴0-GC{!;j}`10#kxB,RwBYSHjRLMXY4O)FH&Mf;:Rq(0U,ߋ'!ؓKӅRQ< ɍ1Gؗ%aT-<J;{Cd;8~kgТ:Aߝrh }+/HM# m7e͢rJ2(! `%>V0V:c"8Id\evގn8kظ-WSzP\rH0!+P欓o3zsZfܡ<16ְ AJSɚ8cBTIB,*;6^N +VWmGx{JNkC~{:I]VFCٜt/5 D)ȫ`&k5#XS1`EGŦ˜ ~AT~NkGu'Gܾ?}z*&C:SvK[xk<d +v9Le +bt”zҀN>nCIk)q7Ck}Pޟ~}2vc4Nn-ҫ^N': +@0ORш'|IrNHb&E[lc +OVw[(cR}wvHD9xl' #t޴:a *xQP4V_AY/?s-khԌmuRe`+nADy1FOXM1Z$sYu9x`_[R+mUp0jILK٪ Vt/͒eWS:3C¬U2e?>o<}T`L{3%5#X,^L$0LGoG42MW=To5xw1dDo9:Wf`GYҁݝy1b&R]^~DBnB_'rjܼhO/p+0e&m3R=#sએ1Mf[X$zBH=A~ !ܑx2.%BaICOL?bGwUG3h[P Ɇ/.h_ i.䕈̷Kx?׮gu,WP"]XVDzb^RgO"=bu S1, _QΙIq*j 1 6i +wo9&EDD&Upg7dpr$d"D[ݞB﯑sHum5fv(G0w^CI' Hb5xK97}!J/-M +hY "2~AWy|i [SI/E{RqEu7]c{-9.pe%:>_9ٳIk++t)r jࣗ +vpxooʊEts7 2A1S:w Kbhb.*}ȳVlUE _PQIV` ҳ!!Q ihmNCu;ddp3)xmQ5-1l:Sqt!%5/}~Mγ8=&z1$»k7 s:wXw2K hƫS GfD˃} {2"7 j#x|&ߔTY4uݘ׵ڳȰpkq'y_ĵ +b3@o4;nmL0A7>Fo!0(Phܨus&|>ˏbyB^džUE%LD cM!P\c +&37s6bȾmLuOXG|y#L6u-qjTR1rg> +ogD#,Lĝbʬ+iESZX4٢Et!,mē(ݽ-Zܶ`MТp?źh#8^j8&S`һՙ#?ύV@/?L%GYP !wbhCZIT\GaJ$\uI4__FV!|9jT/ 㻸M O\Ưw`qr1lgQhI6@FEnR^wc0[ht t56~GYT}}H9g1 $m>)GDvaB;^:SK&{W.b\2eí3p*48|Q+vmk+-G\c; ^5̹+/(G=1 ?Uz 2Bhx}ߺJP'Lsx};;Idrl;$_$'uev5#Љ&w"$la%w8詝 $h+A5ɹREå9s,CQoK7oMTfO '}`X.raZ.&ՎrD ׹:#{H\,0m[^~1_)\` 4M;]@^ŵmB|GIy㛙ص>m\Vvr88|O_t'+AC]VPo\w#.m?zfez/]/Gޮ}khHԥ#i& e5#1]\Ar钒&:F> p 'Ed#d\P@my g>$z%EvtL6jYϨ$1{oTnL )4V͓jH:xDyoAc/?*wC"H @d8Lu>%Sª;cl4XDM:C [dUԠtd FR V!.21,LpԘ6:rLƭ2¤ͧ*\t`!.Hp@ILR2~Zc1h2̷ܝ'g`<%4B_% U5DOX~u0gsHͻ oq7"3w+qj#ʽ2I¬ـƇ}xY2֦^Y**/杖Sv2ve ߕ3F`E.tvg^a6qIM/5.H<=Y\]Hf+ cʐ?SDHBiEj^Fw.S2?`7WES.y ' +5G7ϖB!PW\?a&Ѽoܰ4j2HRcqIRZۺ3ɓB)f Q,v[DdyY13^ˁ DBdނݳ2%AT+ 8d1w!&f;h t¾yD_Yyi%L W|ϗjy1T;D٨R8'G";MEDywQ~cx}K\)ӧF~_ĝw?wCҗK.gYp6YFb˭Ԉы05KT^Fziӿc򈿲 ]jfvu +|82 |Z)E!8?/@N ÷*|`<,nM]=SjDD`q" +Q6yZ&ήiTr(Y趸+^-{,Z+ @Qte'r-;(Obߒ6Z;w(,>K~4}5 nW^v#$Qӌִ\"t\u@)&Q5wmRM;lRtttBF+߄P׶p.qiFIw]Y_]J' 6]td(C(2,6+M3xZ*MgJXRO)G*0jLHQzg%PI%~8'$I +׮pytMWO Dn j:dl氒''{]F[ sNKGMtob97K +>MyqVD"c8SwիM&X=_Tj5mẒW/|k;܍Pȋ޷^"'*b釰@!9 7f ݖE$1 +_S݊CSRLWQ[fh*f_tTE믦yp7*Adp%ElPY]*CT/i(n +<AEIk9saKa.UtgÄ`KYAK&RBKm:mG\;B$\jh>6S'D1~ cU( vbgñ@[[ptGrhU/X8ocHg\I_(-E\+V ,{sTW<{Qy +{X5=JYNw@A*v/sdq59DUkhE+(X`cU;df׼t`X$7sSCA@Ε^%xÂ{F)gWNc1̼ #$=ֵ.`>J(+e6/YVјUR*G!1Owl+/ )~#1q;+ׄhA.N>3;C؀rxlq[PEDNl;Ss^Z#:_ 9*ƯFo_Jٕ,5 f4Q7.IvMIXU2]b"rjeʩV>MpR/)朳؇.9xc!DvgB)@!r VsRO_%&Mߨ^!&"NEi|qt.<B#@P/$8:g#V &LSoCQ{wdDgTNF%(+%K *'!S uu@S\3kh4'ֆPi]LV/%&$;z}7]Xs"iEk=!k4fgsӗlʃ-!xNS$`soI)-O`JYU nLGH'֭l~uY5k%宱5zuRi"!wbE K\ DPU^>0 4LW\)rJ#嫨n|ics/Q1>7.!}r)p(L>eL?!Y#t9qtW D&6Q{Li۵egh09yյ| ++řhF@S^pJ]Ih~Vvw-Jީu ;,hhz&Dss9 XYUCSA +^ v/C7b<.z~U<ǻ!R& N^2]]a13ވEq$Z[%) ݠ v˻ Y![DESq괊҆o]r{ޒ{/c˭X/O `dmblgchBuendstream +endobj +1006 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2281 0 R +/FirstChar 11 +/LastChar 122 +/Widths 2282 0 R +/BaseFont /ULABDW+CMTI10 +/FontDescriptor 1004 0 R +>> endobj +1004 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /ULABDW+CMTI10 +/ItalicAngle -14 +/StemV 68 +/XHeight 431 +/FontBBox [-163 -250 1146 969] +/Flags 4 +/CharSet (/ff/fi/fl/quotedblright/numbersign/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/four/five/six/colon/semicolon/question/A/B/C/D/E/F/G/I/L/M/N/O/P/Q/R/S/T/U/V/X/Y/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 1005 0 R +>> endobj +2282 0 obj +[613 562 588 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 818 0 0 0 307 409 409 0 767 307 358 307 511 511 511 511 0 511 511 511 0 0 0 307 307 0 0 0 511 0 743 704 716 755 678 653 774 0 386 0 0 627 897 743 767 678 767 729 562 716 743 743 0 743 743 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 0 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 ] +endobj +1002 0 obj << +/Length1 2020 +/Length2 14452 +/Length3 532 +/Length 15563 +/Filter /FlateDecode +>> +stream +xUX\ݶh;wK,;5wOWy~j}G}*ꌢf)G7FV&V>qE1VV&1JJqA GF"0}89X(I]Vn$44&MHMݬv$@7?o\. &VV  +# -ܝ$EB/MZ7YN.ngdjOUznjNnEG n /91GY7S;B@W)BfnMbij +W`@4b? ЋDT^VPC2_I:;ZH8HL]\L@D$$@  dzTKG&4̖Ahod avvwtX  hY(,$N.;_Q #SR DMD8IB\qp0ڙZ}. gG$9'HWj'OՀ麂 ux +;f[19?i ML;?JC>$(俉T?EJ @C!(!(!@.@.@.@.@.&^Pf.Xϼ./(6X@ ڿ: Ac AkcFklB_/Y9 +d\v_r AV!/YyurB_g/#;l ϖ@gwD`a._#" `}ќ?&%"@x\̪RcB7bj"ݗ yg, CCbWO]~SRWΟ3=L| tnȞB>t,ޟs+oMV ^Hhn{4gqqHeiF7Pf8WDqDnz$Am΄Dµѯ8v?$2qŏZqCD^ onf;ohVd%;ۡl4 h/9^E 0gyUpTR$.[EnXG@)J@X\XV L1vT⻚\Y=0JlBӔ>kAf`TxKxbeϮWGeaRX[=AO6g%gB;h ћCi|s`{5S~j}8{BxX<$i3_b# +~VnQ1C)h ,b nX50QcqPo|;>Ir;Y' ~||4d;Jlfqn-]W G~Q_výըpQceo,- L/V\9ȪETrY,^{hK'(T4.um[j֣'gogA~C.ְq)UG-z%5!g3xS`w\ ydg)7 Tc嗴i7Z65eUɷS +jU&)Hɡ+?@E0 ka":W6y?=y4YZ}رҍ'M(zAT2~LFrOo&5-5/ea.6lBG%\pۯ6YI:3HR" P)Ag1ibqQN^۩8 [qㄲ`@v^+ u-v3X`tpM"B49HΗ7Kֽf /˿Җ%Op)\SJLWb݋-W~E"{d ӳrUJ\l?\ma`Jb>ZqWC'cKoYWl|(z<1>^VEOQΚvlxrGL E%b $'kڃR-eQ/IͪG@qxa6xG -5tYۤ^QJT͠:\p84C#>v}}l]#ău/O ?d}CnҔ7(bS4XC4qP[]غB۝& +M֨`JNHV|-_͞[4𓵚87qrK&k|4GZ-ClѱĮ_ъ.ɫW5" ?s * ^"|Z/R1pFz~pTu/R"P)KT[XClǝ Ccܘl>6}eY(N|DRE,t{>"+O<>Xt2PиzZlpGK^ݢboh rSSyK-43N$2.=o~rK_)ܽNS'#a5ϰ:9eBb=fxFH0 4^&`m% o 1?>u ̚x ßU"aR \$DfEZܪ|pbi;QP +yDZVR:p`gjjlυKz+ 隌iz픸#vkߡ`弮O πNC ڿG^vMf!X'(;gtFAQ2I/; 7kC$%{P|Lk1s@ҩ?¦ɄIqlcs2Y1iŨIF>ꞵ7'!˂>ܖlSH #iEƳGrWwrŔLJM0cPӧ~G=%}JolF3 +H~/f?b&a vaνFcCU9iG'\(6lL.{ $K<͸7g4[P\l0qKto%pQw8ߏMsw8g20MCdͮXwQD +~nܱk4mTT^v +`5k`z~$Yɜ هUޤ&ɠnXZqۙ +Gf馫cDr_JHuy(>r?2dFSEN %tR!',yubpsU|}nүP# w L6SʿPsD,To;Ko}L\yGRhHO]]DЇ-x@kshG\=qBYzHz(g +v$|BM֍EvV5 '{l7l^Gwo]?9}_Zhթ[vt6e߫FO_&L}Sxa;OFt`˰6qPɑPׇ'"`yw鄇wtQ ]5b<;I'UQDE[_mSH=c;rIpaߍ|tOͪL,1-nUBjW|0ܧ&9t>sk@ȕ`ƭ\Eϖ12酖+a;ߜ߁"|obaٖZv$wJ+aJ,RÉc@vOrqZ3*kbkej,:8ܻ&Sut8Tyh:6)9sɃJMv} +FSSq1k#{yL +g2_;?o8Ֆ~$o M1x~grlW*q5ird+0&?1=<{IfĐ (E _"xЋ4@x~5Zkܫ~2#.Dxe. fo0GWK9H{@#wbcu-ZTeZ63[?,,RߛMtxE w-<\+;bо4}dq,5eX6 +SCsÒ.XTA'kZ7!6<:E}1m4'qQa<5r,`]*ΙbuwZLn8u$2:#P,ɺHk +ZUOqse KEhSNūI 1xvhb: "M;}[JeI!pj/qhB,Ȅq0o$L|.=WŦB kO0!+) D#Lcɳ7A>ͽXVANwJ'=Xx5}SR"|گ7g]fO52$_R%8_e>}<M}0Ok<ŋB&]UP6{2X~JЛ[r8ގ&6xüIGb^esY;GԎ O7oql5tfII^g5&^j7qQBy^08lICwp? Ɲ9e)NvnVӷG cιe< Lly˱Hvk(ާ 3=r~"b"smR)oCԒ5%Ƞ0#~ m.@)Dv{)8C2M,R.K4u2 Hs@H(I\Aq#R>pC +wgBGnqTsܔ ШF-|R&{}^5x<^e|tR\ӟԤ(dP02>Zp +W^]a_,%?%[lxM[4 緟`'~gN;L "!9VO&3&MT~\R8?yJF>8kP)%&hMoZ^j%MԻζXYи:MbʆVn<ş_Vr90.ƦU&RO10[XZvDg-Yh,9 6TfOtRqt  Wpdu?#γ|Q]9oTN)siXhy~Mg %*h6It(~K@P֓T͉P/vȱ"#{_G[_ƌH:1Z >\m2y |.BB~NWWrEZuwv36s8Geph(_Kiھ0BMn)aH4ݎӪʈ9`wbb=*Fbqxۆ>΄nl[0z-!`;Ap[T .߲B\]B9oLN97fݶ9́Hc׋@gӢ7cESA8Dzpˎ/GcF"ڃnEi1A # 5+:;Myf+|9B2 +.B8A1W}Dݢ6_vޛ G V=flQs ruZh":7]Aqv:Kb*EʼnfF#@|E?4m'aVw SԞ-HPI*bu:3Rt|0I1fr6Bڃeh)+e7VɅwŽWKm"&4:W:GGJ(]^a #&Tw" %yYbs؊M1lRZYӅ7_+~Kk.ulP^\캄_SN3Yv=N5~'O옪%N;Lf_2pO`%w4SG]IXsgh,lhOC*?}>d1%ob5`꘮VI6O6ȘAQe,cerזL`&䠆"*֏b$.tg>餯0:ZnS'hFŹkմ6iPʅD. ?0bf9QiSjT&N]]C0?f\::eJPq3S ;f_߶q +p$ێTkAS cV.jL2_~Jnf3c [`AUZ.ݩ@>/R4ԡ?H>q|-m_.\&ZL1O Ğ\ $o'E~̓ګϏ|SipRY>rSc53;\SzFIr2njGm-ې8#|"hњYc/ͧL7?&Ez;O;E~)_7t*} gEg1bqwN3L\nD_ ,4$z8Ǟ[d[~}9RԮY lMN^@lC9N hmLU4qO?d*11ԨMg|P%\ʦ,M"'e>b\T_]g&w^@QXе饳.&bٝTDAy_1N0‡#7{7lHaRMPﻹd@?fQ&lve&K<0 _<8ƣWT}: ڿ-}})ɇ]*z'F +@֬?$)cOqx5ԓH1$(cP0k# >Pr$G1;JYI,biEf'iӱaE7ۦ^ŘK1c'"q.U>h2ZXZ ]JݛW#ʬsi vA߶~)/UP& ,uIzɚbvb:GsZ1rNnU))2ĊkS__rF?Z&fe2B7҄7ݘ\[Ζ\2Y =ĎjDn\OR)}]PVN܃#փ!]מǗJ~Il4HV eCyoZiipn24컇K8?yM?\H:ߊ\Gtd,n.;sKc$Zު.YP7$xW<vIIt<,j$5^.(szɔR5(jC$'&~T}0d ݕs6D`uuh^ȷ@ ߦl"kgCinb>]1$ UO51rU #473? \IZ>p^ KSH]~[TSl6Լ0~cO=a-_眤ֻW?ȷ[+^^=}!upẀu=n"HsA؉9I{`3u +"Ɠ4N6cA!\X +]wJ׋K1yt\܉mzMLu+-0+)n(z|]`sKp\vwTȤQUkq>9\s=8>ҭC^e7"GLp9-fg $s:>n0To(i *`810oؗHQ,25&ճv9L.~APj%42y-m*4)cuaCxR\V!;^S;J>A;K?u4J]MQw) n؋gXCql?ЩI3K"XԴ*5ģ8~aMd㪖&P%Nimudg#@A(Vj+++ TQM>߬+ǀ@<˼鉎C\5U>z Y/^Mg>ߎU"|&Xf)nP(Im77F{}Y5K)[5fjiRAtr@at5?l"9k/ԈO[s~QtH*Ri!{q0aڬE\{3d$J:'7mX됼 ~ ڬ3KC+ţws jË֍P3 *-phäZrAtgMhg{c韃:6HE<<5c輻i4,K-q&en7Ͱ*k{Ñ3ڼ4DT,޵p|;-'%ӯtpf!n\=@}7Wiا,7 +?BbR 67Z쐹V@wӃܶ%fYX?p5#ũ '0H/_G𩓇0ժKi'XF^Bneŭ~ITVҷDȝJ49yO(<зN|KgL1IxR <(/ʐh wR|9 +מ lc!k+UFVՅH+_ +0@s2pȍ؈cI-QuͅEs͡ P;^yaICkvgMR،j: 5L90dqD܂{86BOq*GN"R0CzPc46+ԁEkm)E;fp꣒f:5/kNkޠOTwo~E[ktqWq"z:rnn_B׼K@T`۞?vZxjD`zh j ͩO*})(oAŧz𳩫 gTviS0B,#i|]'Sx=VA_O$ + Z0(MqڶU2kS^k?M%hٱWx(A&ts@oSa %*O.к-8?b[xt20 pK=~+ +t}BV!\ǵnv!o1Ы明Da%5<,b je-G$)ڋ"'qgʉ1jC$abWR@=IHw̼]Kf׋{//TbGۖ>Erne\,4$梃['Tb#m-:(6B-,))N7&_%!e.4\j4bڹXX˜V8B7 ~́2,5{ OO U/Nj0+IsC1:м-MlXBWI|1 +7C"P{Jq?s,Fh` RZ5;uݞcbȓOހ PAJ8DnsnVm~'T)>%O aѬDJNf{ҽ jC VRUWG$5>%Zw< s ):?G t@||5BU0uBh?nW8tiwnJNֆkx3> + 0WWyBj'Vz󜞣|Sx.J<ĝ 6ndQ8L4v+_vlU3-EfEoîg|kc̽SC:843Ot_'(53)5V0^U v* +^7ou&cW& eN0|tGUΉ?q ]1`rPșmG|ROjRDa`K,̅&eCը~{^ۗ<]bd1?'G0!l(f_[YJ:D Etl +5x]zD[p3'"9ZX]]RSࣗMZtהnFM *(ݏ׮Cwsž3b 0Wc۫$-g1+(=sT۩5_M_'pRwAOfia,@M޳ȡ좛al큻nЖq(><@$_Z(v+Q%a} ˾ϖVS`{M2Uu((&>C$s}{GZ iQ ؟G[$w}e2If-9)e6Mt| qvH]rY ݄vNnkq+`^}j7k{sFQ A\hȔ?6!5\֣k #9VB2g޳9WiRգĨ+\$&EijCˌx +ܦ;oǽ6%ٳLL۲ritH5{N$R zYIQϗI +!&ViHZ$4L $t`a43E˟b6w`*Nd|h ":t/Z8$ teux6MZzy>>c hnq?z|hkn5~P&im'1ĪʾɷoEB:| $q_1]F`xW%n\SPB~$z hNz-W+[BwBhDCjlwiuV?ءuq3z+]/FZai*lpaiYqS>aPFx KF{.ѽR7ьG'91'S\ ҹB9 .9 mFgl _͘)Lz +ß(SOqIN3a2U%w`^}L WƖL^+ }Ӧ _}e3K,Q+]~<>9oܙG^'d?_]bݞxש\x3F ̅z Uf1]etWOwƻ-xʶ5`pf +|srCПnF8.dSXxG)[cȻVyi3eߐ@/3ɶ8-84~s7t TgB)yըLXNc qHW ő s^7't@S -tCCtLA# qكs}k^66[eJ8RN)7*̂fgYqd2ȓF&bSg&eVPLJj1[m Qz|rKMSoTuv LN3;ylzM/e17DvhQ#7TeTwUvhX + A`6|.:pFzk\'Y}aIC׏7W) nܪkWL߰o5=밴&1c6v 4F`ՠB]>E\'{@Qp rxLQ@XqR^ IBڛ٘I$T2z3op i1tJF6xT^שD}}SJ>FJ` +n¾8ȓrTtT;ˬv /7G)đ Kv _Z]0 +"S3MF +DŽm_g@ݣНWg2l/G-2%$g;Vuj P,;7_ ;"ġte.+loOEgnl[o`4F-yO3Uc \3+_}eS[&II"=:tk%n+ {mPL6}TDw;'񔙅7e%q1 ?^i!unyOKԂ3S'Sų͈^ $$ [EjR@#0g6;R~[pS2["LgT`Q-p_<6VD:NݛBR +h[6爴 mtR +h0 +C(MU˾ A8_9sCF2W:\?)Do<2̈́Aci7IɠٍK]%nSJQ Wl8#|RvaʴbA/9lqK[n}oΪHdm+A34/K Ս{'> D]|/)rpE|lƷ"eOȾy{Ϲj_? ?`hob]endstream +endobj +1003 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2263 0 R +/FirstChar 11 +/LastChar 122 +/Widths 2283 0 R +/BaseFont /RGCTYL+CMBX10 +/FontDescriptor 1001 0 R +>> endobj +1001 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /RGCTYL+CMBX10 +/ItalicAngle 0 +/StemV 114 +/XHeight 444 +/FontBBox [-301 -250 1164 946] +/Flags 4 +/CharSet (/ff/fi/fl/quotedblright/ampersand/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/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/bracketleft/bracketright/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) +/FontFile 1002 0 R +>> endobj +2283 0 obj +[671 639 639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 603 0 0 0 894 319 447 447 575 0 319 383 319 575 575 575 575 575 575 575 575 575 575 575 319 319 0 894 0 0 0 869 818 831 882 756 724 904 900 436 594 901 692 1092 900 864 786 864 862 639 800 885 869 1189 869 869 0 319 0 319 0 0 0 559 639 511 639 527 351 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 ] +endobj +995 0 obj << +/Length1 1051 +/Length2 3889 +/Length3 532 +/Length 4592 +/Filter /FlateDecode +>> +stream +xirHD2OPs@haO"x"픕~IM K`G'oA{иߊlG nǦyͥ5q[n~&ݽ\fkYxCiUAwמ\<EWmGz%, kR#,#p^.6 J;6NK]:~>]Nѵ/Oe^uu:#FGG7=>/MQ͈Gk7 +ƍpfJݞxҟc--U3W1qȪ{ߜ+%a>3Z~lylL!?gUV؃m[e±y/.l*I`dI;xO\˚Qt>x T;@/6j^'WkabE|./VisyR *&CV?RCCo% Ykʵ$qi5+l(H0ueb ݊uNثMo~y}&Ţ)) =iȨfG?:XC^^.1 +ѮMV|> ;!\b+^AR%wc՝xu.ǚ2cˇ.VQGr?M$HհV1m<>zuɤC|4] ȼ|MaIv-Ǯhc3b;N/!|)Ά땖*=3o:S*%]:E WWwѿuA:*mrHc v\*=n`o;Gq$EۮIVB+5F&*${'Wni%jԧ 2x(O8BtۏTGe$}:Vvob;]pɈұX9"Ua +ȸ%-5ߞOC)/K A<!LjL +{Y#容&`%EA"6An + qLbJXD4* :A;`Ke؞Ȕ +meMJNTs!N^@*%tNl + +@;2xl89wnƁl0+Pi +\W}%+%k)4k/FXu\jvh/_Ǥp .y2ta;kH{kac6tBNLSWt*VzjWם֌Oy4t1*=U;.ͅ7ޔ rԣMigr:efTְ8=а.:jǕQW )t,2I;SWŜ$xm-vmRn{!,sZ䮽QV•Ϗu$7Twm|͑E7^b6HҔ> ߦ=bBↅ_ M/XN|c幻P ^<-Al Pl>0=^"c@\5W x<^.h9v:٦m{bwXl>K'/8RpNNn3.Jt ]pN$ZfAKOZ1X8n +}@1c1a~y}Ü4BFyf] yQ[4Qc2]w|Vkk5dKI !5R,L QOmtVԀ" /^X|DBxz#-h/_ܒtjk-{/1z2Xwf4l.ae߶R<|q: A޻2[U_/~A}z6w{]pl*;Tr4lNXlZL=ۥy Os3e~L .NI'3.$ +NUVجRu_54uYzEZnk6?l'2Q9;c4_z0D4!2=LO:2 O9;&c$Tu3/~?=دPFn&c]O5"n=FU*.I's0 nZPQr_*%[%Yqi0SODFوWb-{儜JɪKl6yGlh jEA9 o"EWv9hQduY`} S7];6BՠJBWQo^CFz}X2EiW+Q?Ƴੑ6@֚d(E`DpWU5e,X{.rsݲf062s]}{SRk?Hu^;qJbSVM-ۂX TUQaJ'I! Rrrrfhf?TBmJO^K '=ʉ9ּWMtIV9C5 ,:|K%K1,ԧLjEKn2ל lwDUrF?M nDV{MUŌ-8FC|&gDY}p=>t{vA9&˔V=|SU40eDI2+}mLb<>ǿwlK;&DSq/Lw{F]mLĀ)<Z,%M)9?S{X2g-jb&Aj7ޟs^R\֨Ӌc^gVrא+K79s?>6Zew^<EDP軧|Vbc m*oO+kۊOGW+:ƛt5|! OxC㶃֊3<ռ+) .T/K{kDlmFcbFc!ǞK +P"gSV*АO`Ympb5qgPݴ2K#CT15G61wcשz+<4L +E/%\ 37ICw6LywMVTVǟ*q?1 +mV3 +佽,Q'f0\8\q3o= YW8.tSG?! ;OXYE6*D$޼/wXJ`Yw~gi-jU#t~yj"]hY{іhDoj q͑ ~_Oq+:MիLhI<ֱ;jxJ3}A6z*fL-\"Luw '? qǐChi[^ E 8-->UZM\k^JӱoZU:/֟Oynq~-4Ē޹8:8d\x;A3&Mil Kt8= *kuI'!%邨1cfDV ”-Ɍv`a oJئbȽG쫃( \P苰WSٹ[<ylWŪ+[NCt~?6DK)=޿~pb'_ >oO>IXKş;}#Y׮XʀnjY]cĐR^ϻBY1Gn /*Tr2th8PِO@aH" $2IE)endstream +endobj +996 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2263 0 R +/FirstChar 46 +/LastChar 116 +/Widths 2284 0 R +/BaseFont /CKKVPQ+CMR12 +/FontDescriptor 994 0 R +>> endobj +994 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /CKKVPQ+CMR12 +/ItalicAngle 0 +/StemV 65 +/XHeight 431 +/FontBBox [-34 -251 988 750] +/Flags 4 +/CharSet (/period/zero/two/four/seven/A/J/R/V/e/h/i/j/l/m/n/o/p/r/t) +/FontFile 995 0 R +>> endobj +2284 0 obj +[272 0 490 0 490 0 490 0 0 490 0 0 0 0 0 0 0 0 0 734 0 0 0 0 0 0 0 0 503 0 0 0 0 0 0 0 721 0 0 0 734 0 0 0 0 0 0 0 0 0 0 0 0 0 0 435 0 0 544 272 299 0 272 816 544 490 544 0 381 0 381 ] +endobj +992 0 obj << +/Length1 1182 +/Length2 5382 +/Length3 532 +/Length 6130 +/Filter /FlateDecode +>> +stream +xg<]﵈HFfk0a0FFѻ5"Q#y:s]okok-V=>9( +Bb@ I1Hpp(a T`` j @B’"$'nkp+$s$@9bkXC=5!ݿvta.0 Opk +f GH i+ uu 5ƚ`-BQH' +!Ba`X'7LgqeWB Wo!pd\104@j9yd0Zi +]0cm \`aHZ^䴟)h{QGb=)W A=@~ Mľ21%5 + +GbBDA!$#0X`WAI"XE$P@$PMbHML$ MX=߄UMJ@@7v ?BBX!(pB?+bu6~#v<@߭&/ $b"@= wv)D@QkW4=67MyIf?C_(厖x+oU1F8(p~Xm|QJCvc%a=䩫57ZWam;"C &y=9:܊7Yq:Mj;ӂDŌS՜Ba¡  _؇5Z]/r_]YC d+.b?RWEfkĔ_ZγLQi\G1f)N+&3k.Q W#G4TVr~lXxj~u!u] w[l ;i§X73zV>D]^! +X*¡Dv{UΈ_<9??*SQe<_b4:^I ՐA 2Elr{ekJ>9>~?Q([3׊!U +8'ޙUn#H +",N *i"tJ+(fڟpP!'U oY@+cO-z,'nrLA7(/`s[͈Yo8Ke|O4lEzhf/Uig"T2evS},7ELb@Iǩ=tE'_j+;7NʼnuR +9sh|6֭e %䛐2ntČyDP(R~ +jm+~/_@۴=綽@Qk-$P`ӊaR}~0Tqޤm!AD{J'B "򎢎6諆5W]w0]t;|:`=?yF|a2k-Ǻ,rmH$ܺN',858BZUAGRXdQF*jHog. o|*xzq7u/KVP3剮~F +S|a@Ka#q@5j>лy~7ڄ0ui]f4Ӝ}iZ]s;ol:S,<~c0u!T6Xy#e ̄~1Iz֭O:BOWDcPLJ (yj}Z4Q'̺eMh^ de; 8_ҹVֱ&LV|!'tC-_m+ZnIg9vͥQ &|hΒr/l ZS(b~V$L#7u:9o*I_C|VȾ}δIڜk4)xK?G5BB2mo;]CC=NJ`<=eWqvN-+MS?><9pQwߘ{*s3PܗV}tJLI[JW5ŸNf!.̸+4Mp<*cKW\MMƳc9{$#[VҼ<}aL3}wv~Z+ĜY\ &Z2^[660? x| V*,E8vD\l;^_S!*̐QL܈PWS{` kg;*/F,{0d-2i +Ppmऎ6R7%8od7iM6$W4uS˽o`Ȝ 3FjҰ=+#DmhXlS[[%\"@"xrz.gۚFݵc+OtC96JȄ^k$ȭ-HQ2U@3/y&l6 9n&tRP}Ҳ@xuW S +#DqoK } O_r̙d)Ps:sUcm=XLS=1W~+ VDNpkgT[?IqZudL IWt +CpPEhu*6Ika'3$UUQ =9 )ӛu'ⲶX)Gf~%6VC^qL1&isS%'Hy +hacf*/GGh, mX줾A]-;o|p3*fq?&N\Y*tФ3u,g=B-bV}UEF]2Æl1̍ 5>&v^s|@5*xߘY2z>& +%K&8S,20h1Ĕ]j \nrPzKm|Ńط'y]ǽKjNN^&!?;w[7s&=ڙ;(}Y0Ha'ȸ|eP%E}ӪȥmOHdDK57ǜNl,`Kg}7V\'\ +lZ4G"ˑM7Feq.U*"Ԯ!!Ftjη.8_#틸̎L|·߆5^*w,1.|KTA NU&q ,*Xą _m$"4ѧrlhqO75_ʀ+F=rǘ\3[oST׮Ҥ=M1B3g;[ب%q̈́_Zǩg|pI;%jyqP}WѮ䡾ƒLGGl +岈+W$g?[#vRN+s+3Qn=6s{IW2usx$I=649 {c=)=3ZVal %"IvP8&nKbaDHm)_YΎ/W~-Jb$ +dz(ߚg1T]66{N͍5j%-/ߕ +޸_{()a0zIֈoɅ?u:w@)x^`C,A1{z~6 Dij@ԧ;D?Յ8VR:^b68ⱨ܏kr*"B3~3Vl>DD>Y1E+8B՛'Ӛ Ϥ?cu7ά0ԞgZЭ-+ToL^IhiL絎DNqoͭjMěK]lg-zVk]o.P!CG/{d( 7\q\ɕ\!>?L_,7Hu-XKAk̾ol}hBr6I+2CT@2uqaw!![?akgs+mJEV(\i)]zrP"̲R'黷}S^l>wqCN},C~2빷;1=&x~r'F&HueO2 O2B%8(Jet5G6eK~ h lZ k7M4J"~ mۖ(bڅmUW39;MHg| ~7+ +RRS*orj"ۈ+E]yW hޱ]%Y+7c\&|%D}@\r5Y00>dU$e$T*>Wk:B&z'+"2=U_Ju)ǻW\̥r, ]8PѸ=0~99ag vyslƘ|NR4ף,f3YhΝ#e$}\7b$\Rg:բ-&}(w.b'C0]LAO$hPM}+INǽąһ4']lSi1 ^[kai`H+C ?Q1(GځkYaendstream +endobj +993 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 2263 0 R +/FirstChar 65 +/LastChar 121 +/Widths 2285 0 R +/BaseFont /AOZCMA+CMBX12 +/FontDescriptor 991 0 R +>> endobj +991 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /AOZCMA+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +/FontBBox [-53 -251 1139 750] +/Flags 4 +/CharSet (/A/B/D/G/I/M/P/S/T/V/a/b/c/d/e/g/h/i/l/m/n/o/p/r/s/t/u/v/x/y) +/FontFile 992 0 R +>> endobj +2285 0 obj +[850 800 0 862 0 0 884 0 419 0 0 0 1067 0 0 769 0 0 625 782 0 850 0 0 0 0 0 0 0 0 0 0 547 625 500 625 513 0 563 625 313 0 0 313 938 625 563 625 0 460 444 438 625 594 0 594 594 ] +endobj +997 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [986 0 R 999 0 R 1021 0 R 1062 0 R 1097 0 R 1149 0 R] +>> endobj +1247 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [1200 0 R 1249 0 R 1295 0 R 1342 0 R 1364 0 R 1368 0 R] +>> endobj +1373 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [1371 0 R 1375 0 R 1384 0 R 1390 0 R 1394 0 R 1400 0 R] +>> endobj +1413 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [1407 0 R 1415 0 R 1420 0 R 1432 0 R 1447 0 R 1457 0 R] +>> endobj +1476 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [1467 0 R 1478 0 R 1485 0 R 1495 0 R 1503 0 R 1509 0 R] +>> endobj +1519 0 obj << +/Type /Pages +/Count 6 +/Parent 2286 0 R +/Kids [1515 0 R 1521 0 R 1525 0 R 1532 0 R 1537 0 R 1541 0 R] +>> endobj +1552 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1548 0 R 1554 0 R 1561 0 R 1568 0 R 1578 0 R 1583 0 R] +>> endobj +1602 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1592 0 R 1604 0 R 1613 0 R 1620 0 R 1626 0 R 1634 0 R] +>> endobj +1650 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1643 0 R 1652 0 R 1661 0 R 1668 0 R 1674 0 R 1682 0 R] +>> endobj +1694 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1690 0 R 1696 0 R 1704 0 R 1710 0 R 1717 0 R 1721 0 R] +>> endobj +1726 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1724 0 R 1728 0 R 1739 0 R 1751 0 R 1755 0 R 1763 0 R] +>> endobj +1773 0 obj << +/Type /Pages +/Count 6 +/Parent 2287 0 R +/Kids [1769 0 R 1775 0 R 1785 0 R 1791 0 R 1804 0 R 1816 0 R] +>> endobj +1846 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [1830 0 R 1848 0 R 1861 0 R 1876 0 R 1884 0 R 1908 0 R] +>> endobj +1918 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [1915 0 R 1920 0 R 1927 0 R 1934 0 R 1945 0 R 1958 0 R] +>> endobj +1963 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [1961 0 R 1965 0 R 1971 0 R 1977 0 R 1987 0 R 1993 0 R] +>> endobj +2003 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [1998 0 R 2005 0 R 2009 0 R 2015 0 R 2019 0 R 2024 0 R] +>> endobj +2034 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [2030 0 R 2036 0 R 2040 0 R 2044 0 R 2055 0 R 2059 0 R] +>> endobj +2072 0 obj << +/Type /Pages +/Count 6 +/Parent 2288 0 R +/Kids [2069 0 R 2074 0 R 2078 0 R 2086 0 R 2091 0 R 2097 0 R] +>> endobj +2107 0 obj << +/Type /Pages +/Count 6 +/Parent 2289 0 R +/Kids [2102 0 R 2109 0 R 2114 0 R 2131 0 R 2137 0 R 2147 0 R] +>> endobj +2155 0 obj << +/Type /Pages +/Count 6 +/Parent 2289 0 R +/Kids [2152 0 R 2157 0 R 2163 0 R 2169 0 R 2173 0 R 2177 0 R] +>> endobj +2182 0 obj << +/Type /Pages +/Count 6 +/Parent 2289 0 R +/Kids [2180 0 R 2184 0 R 2189 0 R 2196 0 R 2206 0 R 2213 0 R] +>> endobj +2230 0 obj << +/Type /Pages +/Count 6 +/Parent 2289 0 R +/Kids [2220 0 R 2232 0 R 2236 0 R 2240 0 R 2244 0 R 2248 0 R] +>> endobj +2253 0 obj << +/Type /Pages +/Count 2 +/Parent 2289 0 R +/Kids [2251 0 R 2255 0 R] +>> endobj +2286 0 obj << +/Type /Pages +/Count 36 +/Parent 2290 0 R +/Kids [997 0 R 1247 0 R 1373 0 R 1413 0 R 1476 0 R 1519 0 R] +>> endobj +2287 0 obj << +/Type /Pages +/Count 36 +/Parent 2290 0 R +/Kids [1552 0 R 1602 0 R 1650 0 R 1694 0 R 1726 0 R 1773 0 R] +>> endobj +2288 0 obj << +/Type /Pages +/Count 36 +/Parent 2290 0 R +/Kids [1846 0 R 1918 0 R 1963 0 R 2003 0 R 2034 0 R 2072 0 R] +>> endobj +2289 0 obj << +/Type /Pages +/Count 26 +/Parent 2290 0 R +/Kids [2107 0 R 2155 0 R 2182 0 R 2230 0 R 2253 0 R] +>> endobj +2290 0 obj << +/Type /Pages +/Count 134 +/Kids [2286 0 R 2287 0 R 2288 0 R 2289 0 R] +>> endobj +2291 0 obj << +/Type /Outlines +/First 7 0 R +/Last 971 0 R +/Count 7 +>> endobj +983 0 obj << +/Title 984 0 R +/A 981 0 R +/Parent 975 0 R +/Prev 979 0 R +>> endobj +979 0 obj << +/Title 980 0 R +/A 977 0 R +/Parent 975 0 R +/Next 983 0 R +>> endobj +975 0 obj << +/Title 976 0 R +/A 973 0 R +/Parent 971 0 R +/First 979 0 R +/Last 983 0 R +/Count -2 +>> endobj +971 0 obj << +/Title 972 0 R +/A 969 0 R +/Parent 2291 0 R +/Prev 931 0 R +/First 975 0 R +/Last 975 0 R +/Count -1 +>> endobj +967 0 obj << +/Title 968 0 R +/A 965 0 R +/Parent 947 0 R +/Prev 963 0 R +>> endobj +963 0 obj << +/Title 964 0 R +/A 961 0 R +/Parent 947 0 R +/Prev 959 0 R +/Next 967 0 R +>> endobj +959 0 obj << +/Title 960 0 R +/A 957 0 R +/Parent 947 0 R +/Prev 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 959 0 R +>> 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 931 0 R +/Prev 939 0 R +/First 951 0 R +/Last 967 0 R +/Count -5 +>> endobj +943 0 obj << +/Title 944 0 R +/A 941 0 R +/Parent 939 0 R +>> endobj +939 0 obj << +/Title 940 0 R +/A 937 0 R +/Parent 931 0 R +/Prev 935 0 R +/Next 947 0 R +/First 943 0 R +/Last 943 0 R +/Count -1 +>> endobj +935 0 obj << +/Title 936 0 R +/A 933 0 R +/Parent 931 0 R +/Next 939 0 R +>> endobj +931 0 obj << +/Title 932 0 R +/A 929 0 R +/Parent 2291 0 R +/Prev 735 0 R +/Next 971 0 R +/First 935 0 R +/Last 947 0 R +/Count -3 +>> endobj +927 0 obj << +/Title 928 0 R +/A 925 0 R +/Parent 915 0 R +/Prev 923 0 R +>> endobj +923 0 obj << +/Title 924 0 R +/A 921 0 R +/Parent 915 0 R +/Prev 919 0 R +/Next 927 0 R +>> endobj +919 0 obj << +/Title 920 0 R +/A 917 0 R +/Parent 915 0 R +/Next 923 0 R +>> endobj +915 0 obj << +/Title 916 0 R +/A 913 0 R +/Parent 735 0 R +/Prev 907 0 R +/First 919 0 R +/Last 927 0 R +/Count -3 +>> endobj +911 0 obj << +/Title 912 0 R +/A 909 0 R +/Parent 907 0 R +>> endobj +907 0 obj << +/Title 908 0 R +/A 905 0 R +/Parent 735 0 R +/Prev 879 0 R +/Next 915 0 R +/First 911 0 R +/Last 911 0 R +/Count -1 +>> endobj +903 0 obj << +/Title 904 0 R +/A 901 0 R +/Parent 899 0 R +>> endobj +899 0 obj << +/Title 900 0 R +/A 897 0 R +/Parent 879 0 R +/Prev 883 0 R +/First 903 0 R +/Last 903 0 R +/Count -1 +>> endobj +895 0 obj << +/Title 896 0 R +/A 893 0 R +/Parent 883 0 R +/Prev 891 0 R +>> endobj +891 0 obj << +/Title 892 0 R +/A 889 0 R +/Parent 883 0 R +/Prev 887 0 R +/Next 895 0 R +>> endobj +887 0 obj << +/Title 888 0 R +/A 885 0 R +/Parent 883 0 R +/Next 891 0 R +>> endobj +883 0 obj << +/Title 884 0 R +/A 881 0 R +/Parent 879 0 R +/Next 899 0 R +/First 887 0 R +/Last 895 0 R +/Count -3 +>> endobj +879 0 obj << +/Title 880 0 R +/A 877 0 R +/Parent 735 0 R +/Prev 851 0 R +/Next 907 0 R +/First 883 0 R +/Last 899 0 R +/Count -2 +>> endobj +875 0 obj << +/Title 876 0 R +/A 873 0 R +/Parent 851 0 R +/Prev 871 0 R +>> endobj +871 0 obj << +/Title 872 0 R +/A 869 0 R +/Parent 851 0 R +/Prev 867 0 R +/Next 875 0 R +>> endobj +867 0 obj << +/Title 868 0 R +/A 865 0 R +/Parent 851 0 R +/Prev 863 0 R +/Next 871 0 R +>> endobj +863 0 obj << +/Title 864 0 R +/A 861 0 R +/Parent 851 0 R +/Prev 859 0 R +/Next 867 0 R +>> endobj +859 0 obj << +/Title 860 0 R +/A 857 0 R +/Parent 851 0 R +/Prev 855 0 R +/Next 863 0 R +>> endobj +855 0 obj << +/Title 856 0 R +/A 853 0 R +/Parent 851 0 R +/Next 859 0 R +>> endobj +851 0 obj << +/Title 852 0 R +/A 849 0 R +/Parent 735 0 R +/Prev 803 0 R +/Next 879 0 R +/First 855 0 R +/Last 875 0 R +/Count -6 +>> endobj +847 0 obj << +/Title 848 0 R +/A 845 0 R +/Parent 839 0 R +/Prev 843 0 R +>> endobj +843 0 obj << +/Title 844 0 R +/A 841 0 R +/Parent 839 0 R +/Next 847 0 R +>> endobj +839 0 obj << +/Title 840 0 R +/A 837 0 R +/Parent 803 0 R +/Prev 831 0 R +/First 843 0 R +/Last 847 0 R +/Count -2 +>> endobj +835 0 obj << +/Title 836 0 R +/A 833 0 R +/Parent 831 0 R +>> endobj +831 0 obj << +/Title 832 0 R +/A 829 0 R +/Parent 803 0 R +/Prev 819 0 R +/Next 839 0 R +/First 835 0 R +/Last 835 0 R +/Count -1 +>> endobj +827 0 obj << +/Title 828 0 R +/A 825 0 R +/Parent 819 0 R +/Prev 823 0 R +>> endobj +823 0 obj << +/Title 824 0 R +/A 821 0 R +/Parent 819 0 R +/Next 827 0 R +>> endobj +819 0 obj << +/Title 820 0 R +/A 817 0 R +/Parent 803 0 R +/Prev 807 0 R +/Next 831 0 R +/First 823 0 R +/Last 827 0 R +/Count -2 +>> endobj +815 0 obj << +/Title 816 0 R +/A 813 0 R +/Parent 807 0 R +/Prev 811 0 R +>> endobj +811 0 obj << +/Title 812 0 R +/A 809 0 R +/Parent 807 0 R +/Next 815 0 R +>> endobj +807 0 obj << +/Title 808 0 R +/A 805 0 R +/Parent 803 0 R +/Next 819 0 R +/First 811 0 R +/Last 815 0 R +/Count -2 +>> endobj +803 0 obj << +/Title 804 0 R +/A 801 0 R +/Parent 735 0 R +/Prev 791 0 R +/Next 851 0 R +/First 807 0 R +/Last 839 0 R +/Count -4 +>> endobj +799 0 obj << +/Title 800 0 R +/A 797 0 R +/Parent 791 0 R +/Prev 795 0 R +>> endobj +795 0 obj << +/Title 796 0 R +/A 793 0 R +/Parent 791 0 R +/Next 799 0 R +>> endobj +791 0 obj << +/Title 792 0 R +/A 789 0 R +/Parent 735 0 R +/Prev 739 0 R +/Next 803 0 R +/First 795 0 R +/Last 799 0 R +/Count -2 +>> endobj +787 0 obj << +/Title 788 0 R +/A 785 0 R +/Parent 739 0 R +/Prev 783 0 R +>> endobj +783 0 obj << +/Title 784 0 R +/A 781 0 R +/Parent 739 0 R +/Prev 771 0 R +/Next 787 0 R +>> endobj +779 0 obj << +/Title 780 0 R +/A 777 0 R +/Parent 771 0 R +/Prev 775 0 R +>> endobj +775 0 obj << +/Title 776 0 R +/A 773 0 R +/Parent 771 0 R +/Next 779 0 R +>> endobj +771 0 obj << +/Title 772 0 R +/A 769 0 R +/Parent 739 0 R +/Prev 755 0 R +/Next 783 0 R +/First 775 0 R +/Last 779 0 R +/Count -2 +>> endobj +767 0 obj << +/Title 768 0 R +/A 765 0 R +/Parent 755 0 R +/Prev 763 0 R +>> endobj +763 0 obj << +/Title 764 0 R +/A 761 0 R +/Parent 755 0 R +/Prev 759 0 R +/Next 767 0 R +>> endobj +759 0 obj << +/Title 760 0 R +/A 757 0 R +/Parent 755 0 R +/Next 763 0 R +>> endobj +755 0 obj << +/Title 756 0 R +/A 753 0 R +/Parent 739 0 R +/Prev 751 0 R +/Next 771 0 R +/First 759 0 R +/Last 767 0 R +/Count -3 +>> endobj +751 0 obj << +/Title 752 0 R +/A 749 0 R +/Parent 739 0 R +/Prev 747 0 R +/Next 755 0 R +>> endobj +747 0 obj << +/Title 748 0 R +/A 745 0 R +/Parent 739 0 R +/Prev 743 0 R +/Next 751 0 R +>> endobj +743 0 obj << +/Title 744 0 R +/A 741 0 R +/Parent 739 0 R +/Next 747 0 R +>> endobj +739 0 obj << +/Title 740 0 R +/A 737 0 R +/Parent 735 0 R +/Next 791 0 R +/First 743 0 R +/Last 787 0 R +/Count -7 +>> endobj +735 0 obj << +/Title 736 0 R +/A 733 0 R +/Parent 2291 0 R +/Prev 543 0 R +/Next 931 0 R +/First 739 0 R +/Last 915 0 R +/Count -7 +>> endobj +731 0 obj << +/Title 732 0 R +/A 729 0 R +/Parent 727 0 R +>> endobj +727 0 obj << +/Title 728 0 R +/A 725 0 R +/Parent 707 0 R +/Prev 715 0 R +/First 731 0 R +/Last 731 0 R +/Count -1 +>> endobj +723 0 obj << +/Title 724 0 R +/A 721 0 R +/Parent 715 0 R +/Prev 719 0 R +>> endobj +719 0 obj << +/Title 720 0 R +/A 717 0 R +/Parent 715 0 R +/Next 723 0 R +>> endobj +715 0 obj << +/Title 716 0 R +/A 713 0 R +/Parent 707 0 R +/Prev 711 0 R +/Next 727 0 R +/First 719 0 R +/Last 723 0 R +/Count -2 +>> endobj +711 0 obj << +/Title 712 0 R +/A 709 0 R +/Parent 707 0 R +/Next 715 0 R +>> endobj +707 0 obj << +/Title 708 0 R +/A 705 0 R +/Parent 543 0 R +/Prev 703 0 R +/First 711 0 R +/Last 727 0 R +/Count -3 +>> endobj +703 0 obj << +/Title 704 0 R +/A 701 0 R +/Parent 543 0 R +/Prev 699 0 R +/Next 707 0 R +>> endobj +699 0 obj << +/Title 700 0 R +/A 697 0 R +/Parent 543 0 R +/Prev 607 0 R +/Next 703 0 R +>> endobj +695 0 obj << +/Title 696 0 R +/A 693 0 R +/Parent 607 0 R +/Prev 683 0 R +>> endobj +691 0 obj << +/Title 692 0 R +/A 689 0 R +/Parent 683 0 R +/Prev 687 0 R +>> endobj +687 0 obj << +/Title 688 0 R +/A 685 0 R +/Parent 683 0 R +/Next 691 0 R +>> endobj +683 0 obj << +/Title 684 0 R +/A 681 0 R +/Parent 607 0 R +/Prev 619 0 R +/Next 695 0 R +/First 687 0 R +/Last 691 0 R +/Count -2 +>> endobj +679 0 obj << +/Title 680 0 R +/A 677 0 R +/Parent 619 0 R +/Prev 675 0 R +>> endobj +675 0 obj << +/Title 676 0 R +/A 673 0 R +/Parent 619 0 R +/Prev 671 0 R +/Next 679 0 R +>> endobj +671 0 obj << +/Title 672 0 R +/A 669 0 R +/Parent 619 0 R +/Prev 667 0 R +/Next 675 0 R +>> endobj +667 0 obj << +/Title 668 0 R +/A 665 0 R +/Parent 619 0 R +/Prev 663 0 R +/Next 671 0 R +>> endobj +663 0 obj << +/Title 664 0 R +/A 661 0 R +/Parent 619 0 R +/Prev 659 0 R +/Next 667 0 R +>> endobj +659 0 obj << +/Title 660 0 R +/A 657 0 R +/Parent 619 0 R +/Prev 655 0 R +/Next 663 0 R +>> endobj +655 0 obj << +/Title 656 0 R +/A 653 0 R +/Parent 619 0 R +/Prev 651 0 R +/Next 659 0 R +>> endobj +651 0 obj << +/Title 652 0 R +/A 649 0 R +/Parent 619 0 R +/Prev 647 0 R +/Next 655 0 R +>> endobj +647 0 obj << +/Title 648 0 R +/A 645 0 R +/Parent 619 0 R +/Prev 643 0 R +/Next 651 0 R +>> endobj +643 0 obj << +/Title 644 0 R +/A 641 0 R +/Parent 619 0 R +/Prev 639 0 R +/Next 647 0 R +>> endobj +639 0 obj << +/Title 640 0 R +/A 637 0 R +/Parent 619 0 R +/Prev 635 0 R +/Next 643 0 R +>> endobj +635 0 obj << +/Title 636 0 R +/A 633 0 R +/Parent 619 0 R +/Prev 631 0 R +/Next 639 0 R +>> endobj +631 0 obj << +/Title 632 0 R +/A 629 0 R +/Parent 619 0 R +/Prev 627 0 R +/Next 635 0 R +>> endobj +627 0 obj << +/Title 628 0 R +/A 625 0 R +/Parent 619 0 R +/Prev 623 0 R +/Next 631 0 R +>> endobj +623 0 obj << +/Title 624 0 R +/A 621 0 R +/Parent 619 0 R +/Next 627 0 R +>> endobj +619 0 obj << +/Title 620 0 R +/A 617 0 R +/Parent 607 0 R +/Prev 615 0 R +/Next 683 0 R +/First 623 0 R +/Last 679 0 R +/Count -15 +>> endobj +615 0 obj << +/Title 616 0 R +/A 613 0 R +/Parent 607 0 R +/Prev 611 0 R +/Next 619 0 R +>> endobj +611 0 obj << +/Title 612 0 R +/A 609 0 R +/Parent 607 0 R +/Next 615 0 R +>> endobj +607 0 obj << +/Title 608 0 R +/A 605 0 R +/Parent 543 0 R +/Prev 571 0 R +/Next 699 0 R +/First 611 0 R +/Last 695 0 R +/Count -5 +>> endobj +603 0 obj << +/Title 604 0 R +/A 601 0 R +/Parent 591 0 R +/Prev 599 0 R +>> endobj +599 0 obj << +/Title 600 0 R +/A 597 0 R +/Parent 591 0 R +/Prev 595 0 R +/Next 603 0 R +>> endobj +595 0 obj << +/Title 596 0 R +/A 593 0 R +/Parent 591 0 R +/Next 599 0 R +>> endobj +591 0 obj << +/Title 592 0 R +/A 589 0 R +/Parent 571 0 R +/Prev 587 0 R +/First 595 0 R +/Last 603 0 R +/Count -3 +>> endobj +587 0 obj << +/Title 588 0 R +/A 585 0 R +/Parent 571 0 R +/Prev 583 0 R +/Next 591 0 R +>> endobj +583 0 obj << +/Title 584 0 R +/A 581 0 R +/Parent 571 0 R +/Prev 579 0 R +/Next 587 0 R +>> endobj +579 0 obj << +/Title 580 0 R +/A 577 0 R +/Parent 571 0 R +/Prev 575 0 R +/Next 583 0 R +>> endobj +575 0 obj << +/Title 576 0 R +/A 573 0 R +/Parent 571 0 R +/Next 579 0 R +>> endobj +571 0 obj << +/Title 572 0 R +/A 569 0 R +/Parent 543 0 R +/Prev 547 0 R +/Next 607 0 R +/First 575 0 R +/Last 591 0 R +/Count -5 +>> endobj +567 0 obj << +/Title 568 0 R +/A 565 0 R +/Parent 547 0 R +/Prev 563 0 R +>> endobj +563 0 obj << +/Title 564 0 R +/A 561 0 R +/Parent 547 0 R +/Prev 559 0 R +/Next 567 0 R +>> endobj +559 0 obj << +/Title 560 0 R +/A 557 0 R +/Parent 547 0 R +/Prev 555 0 R +/Next 563 0 R +>> endobj +555 0 obj << +/Title 556 0 R +/A 553 0 R +/Parent 547 0 R +/Prev 551 0 R +/Next 559 0 R +>> endobj +551 0 obj << +/Title 552 0 R +/A 549 0 R +/Parent 547 0 R +/Next 555 0 R +>> endobj +547 0 obj << +/Title 548 0 R +/A 545 0 R +/Parent 543 0 R +/Next 571 0 R +/First 551 0 R +/Last 567 0 R +/Count -5 +>> endobj +543 0 obj << +/Title 544 0 R +/A 541 0 R +/Parent 2291 0 R +/Prev 15 0 R +/Next 735 0 R +/First 547 0 R +/Last 707 0 R +/Count -6 +>> endobj +539 0 obj << +/Title 540 0 R +/A 537 0 R +/Parent 527 0 R +/Prev 535 0 R +>> endobj +535 0 obj << +/Title 536 0 R +/A 533 0 R +/Parent 527 0 R +/Prev 531 0 R +/Next 539 0 R +>> endobj +531 0 obj << +/Title 532 0 R +/A 529 0 R +/Parent 527 0 R +/Next 535 0 R +>> endobj +527 0 obj << +/Title 528 0 R +/A 525 0 R +/Parent 511 0 R +/Prev 515 0 R +/First 531 0 R +/Last 539 0 R +/Count -3 +>> endobj +523 0 obj << +/Title 524 0 R +/A 521 0 R +/Parent 515 0 R +/Prev 519 0 R +>> endobj +519 0 obj << +/Title 520 0 R +/A 517 0 R +/Parent 515 0 R +/Next 523 0 R +>> endobj +515 0 obj << +/Title 516 0 R +/A 513 0 R +/Parent 511 0 R +/Next 527 0 R +/First 519 0 R +/Last 523 0 R +/Count -2 +>> endobj +511 0 obj << +/Title 512 0 R +/A 509 0 R +/Parent 75 0 R +/Prev 495 0 R +/First 515 0 R +/Last 527 0 R +/Count -2 +>> endobj +507 0 obj << +/Title 508 0 R +/A 505 0 R +/Parent 495 0 R +/Prev 503 0 R +>> endobj +503 0 obj << +/Title 504 0 R +/A 501 0 R +/Parent 495 0 R +/Prev 499 0 R +/Next 507 0 R +>> endobj +499 0 obj << +/Title 500 0 R +/A 497 0 R +/Parent 495 0 R +/Next 503 0 R +>> endobj +495 0 obj << +/Title 496 0 R +/A 493 0 R +/Parent 75 0 R +/Prev 467 0 R +/Next 511 0 R +/First 499 0 R +/Last 507 0 R +/Count -3 +>> endobj +491 0 obj << +/Title 492 0 R +/A 489 0 R +/Parent 483 0 R +/Prev 487 0 R +>> endobj +487 0 obj << +/Title 488 0 R +/A 485 0 R +/Parent 483 0 R +/Next 491 0 R +>> endobj +483 0 obj << +/Title 484 0 R +/A 481 0 R +/Parent 467 0 R +/Prev 471 0 R +/First 487 0 R +/Last 491 0 R +/Count -2 +>> endobj +479 0 obj << +/Title 480 0 R +/A 477 0 R +/Parent 471 0 R +/Prev 475 0 R +>> endobj +475 0 obj << +/Title 476 0 R +/A 473 0 R +/Parent 471 0 R +/Next 479 0 R +>> endobj +471 0 obj << +/Title 472 0 R +/A 469 0 R +/Parent 467 0 R +/Next 483 0 R +/First 475 0 R +/Last 479 0 R +/Count -2 +>> endobj +467 0 obj << +/Title 468 0 R +/A 465 0 R +/Parent 75 0 R +/Prev 439 0 R +/Next 495 0 R +/First 471 0 R +/Last 483 0 R +/Count -2 +>> endobj +463 0 obj << +/Title 464 0 R +/A 461 0 R +/Parent 455 0 R +/Prev 459 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 439 0 R +/Prev 443 0 R +/First 459 0 R +/Last 463 0 R +/Count -2 +>> endobj +451 0 obj << +/Title 452 0 R +/A 449 0 R +/Parent 443 0 R +/Prev 447 0 R +>> endobj +447 0 obj << +/Title 448 0 R +/A 445 0 R +/Parent 443 0 R +/Next 451 0 R +>> endobj +443 0 obj << +/Title 444 0 R +/A 441 0 R +/Parent 439 0 R +/Next 455 0 R +/First 447 0 R +/Last 451 0 R +/Count -2 +>> endobj +439 0 obj << +/Title 440 0 R +/A 437 0 R +/Parent 75 0 R +/Prev 375 0 R +/Next 467 0 R +/First 443 0 R +/Last 455 0 R +/Count -2 +>> endobj +435 0 obj << +/Title 436 0 R +/A 433 0 R +/Parent 427 0 R +/Prev 431 0 R +>> endobj +431 0 obj << +/Title 432 0 R +/A 429 0 R +/Parent 427 0 R +/Next 435 0 R +>> endobj +427 0 obj << +/Title 428 0 R +/A 425 0 R +/Parent 375 0 R +/Prev 415 0 R +/First 431 0 R +/Last 435 0 R +/Count -2 +>> endobj +423 0 obj << +/Title 424 0 R +/A 421 0 R +/Parent 415 0 R +/Prev 419 0 R +>> endobj +419 0 obj << +/Title 420 0 R +/A 417 0 R +/Parent 415 0 R +/Next 423 0 R +>> endobj +415 0 obj << +/Title 416 0 R +/A 413 0 R +/Parent 375 0 R +/Prev 403 0 R +/Next 427 0 R +/First 419 0 R +/Last 423 0 R +/Count -2 +>> endobj +411 0 obj << +/Title 412 0 R +/A 409 0 R +/Parent 403 0 R +/Prev 407 0 R +>> endobj +407 0 obj << +/Title 408 0 R +/A 405 0 R +/Parent 403 0 R +/Next 411 0 R +>> endobj +403 0 obj << +/Title 404 0 R +/A 401 0 R +/Parent 375 0 R +/Prev 391 0 R +/Next 415 0 R +/First 407 0 R +/Last 411 0 R +/Count -2 +>> endobj +399 0 obj << +/Title 400 0 R +/A 397 0 R +/Parent 391 0 R +/Prev 395 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 375 0 R +/Prev 379 0 R +/Next 403 0 R +/First 395 0 R +/Last 399 0 R +/Count -2 +>> endobj +387 0 obj << +/Title 388 0 R +/A 385 0 R +/Parent 379 0 R +/Prev 383 0 R +>> endobj +383 0 obj << +/Title 384 0 R +/A 381 0 R +/Parent 379 0 R +/Next 387 0 R +>> endobj +379 0 obj << +/Title 380 0 R +/A 377 0 R +/Parent 375 0 R +/Next 391 0 R +/First 383 0 R +/Last 387 0 R +/Count -2 +>> endobj +375 0 obj << +/Title 376 0 R +/A 373 0 R +/Parent 75 0 R +/Prev 235 0 R +/Next 439 0 R +/First 379 0 R +/Last 427 0 R +/Count -5 +>> endobj +371 0 obj << +/Title 372 0 R +/A 369 0 R +/Parent 363 0 R +/Prev 367 0 R +>> endobj +367 0 obj << +/Title 368 0 R +/A 365 0 R +/Parent 363 0 R +/Next 371 0 R +>> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 235 0 R +/Prev 351 0 R +/First 367 0 R +/Last 371 0 R +/Count -2 +>> endobj +359 0 obj << +/Title 360 0 R +/A 357 0 R +/Parent 351 0 R +/Prev 355 0 R +>> endobj +355 0 obj << +/Title 356 0 R +/A 353 0 R +/Parent 351 0 R +/Next 359 0 R +>> endobj +351 0 obj << +/Title 352 0 R +/A 349 0 R +/Parent 235 0 R +/Prev 339 0 R +/Next 363 0 R +/First 355 0 R +/Last 359 0 R +/Count -2 +>> endobj +347 0 obj << +/Title 348 0 R +/A 345 0 R +/Parent 339 0 R +/Prev 343 0 R +>> endobj +343 0 obj << +/Title 344 0 R +/A 341 0 R +/Parent 339 0 R +/Next 347 0 R +>> endobj +339 0 obj << +/Title 340 0 R +/A 337 0 R +/Parent 235 0 R +/Prev 327 0 R +/Next 351 0 R +/First 343 0 R +/Last 347 0 R +/Count -2 +>> endobj +335 0 obj << +/Title 336 0 R +/A 333 0 R +/Parent 327 0 R +/Prev 331 0 R +>> endobj +331 0 obj << +/Title 332 0 R +/A 329 0 R +/Parent 327 0 R +/Next 335 0 R +>> endobj +327 0 obj << +/Title 328 0 R +/A 325 0 R +/Parent 235 0 R +/Prev 315 0 R +/Next 339 0 R +/First 331 0 R +/Last 335 0 R +/Count -2 +>> endobj +323 0 obj << +/Title 324 0 R +/A 321 0 R +/Parent 315 0 R +/Prev 319 0 R +>> endobj +319 0 obj << +/Title 320 0 R +/A 317 0 R +/Parent 315 0 R +/Next 323 0 R +>> endobj +315 0 obj << +/Title 316 0 R +/A 313 0 R +/Parent 235 0 R +/Prev 303 0 R +/Next 327 0 R +/First 319 0 R +/Last 323 0 R +/Count -2 +>> endobj +311 0 obj << +/Title 312 0 R +/A 309 0 R +/Parent 303 0 R +/Prev 307 0 R +>> endobj +307 0 obj << +/Title 308 0 R +/A 305 0 R +/Parent 303 0 R +/Next 311 0 R +>> endobj +303 0 obj << +/Title 304 0 R +/A 301 0 R +/Parent 235 0 R +/Prev 291 0 R +/Next 315 0 R +/First 307 0 R +/Last 311 0 R +/Count -2 +>> endobj +299 0 obj << +/Title 300 0 R +/A 297 0 R +/Parent 291 0 R +/Prev 295 0 R +>> endobj +295 0 obj << +/Title 296 0 R +/A 293 0 R +/Parent 291 0 R +/Next 299 0 R +>> endobj +291 0 obj << +/Title 292 0 R +/A 289 0 R +/Parent 235 0 R +/Prev 287 0 R +/Next 303 0 R +/First 295 0 R +/Last 299 0 R +/Count -2 +>> endobj +287 0 obj << +/Title 288 0 R +/A 285 0 R +/Parent 235 0 R +/Prev 283 0 R +/Next 291 0 R +>> endobj +283 0 obj << +/Title 284 0 R +/A 281 0 R +/Parent 235 0 R +/Prev 279 0 R +/Next 287 0 R +>> endobj +279 0 obj << +/Title 280 0 R +/A 277 0 R +/Parent 235 0 R +/Prev 243 0 R +/Next 283 0 R +>> endobj +275 0 obj << +/Title 276 0 R +/A 273 0 R +/Parent 243 0 R +/Prev 271 0 R +>> endobj +271 0 obj << +/Title 272 0 R +/A 269 0 R +/Parent 243 0 R +/Prev 267 0 R +/Next 275 0 R +>> endobj +267 0 obj << +/Title 268 0 R +/A 265 0 R +/Parent 243 0 R +/Prev 263 0 R +/Next 271 0 R +>> endobj +263 0 obj << +/Title 264 0 R +/A 261 0 R +/Parent 243 0 R +/Prev 259 0 R +/Next 267 0 R +>> endobj +259 0 obj << +/Title 260 0 R +/A 257 0 R +/Parent 243 0 R +/Prev 255 0 R +/Next 263 0 R +>> endobj +255 0 obj << +/Title 256 0 R +/A 253 0 R +/Parent 243 0 R +/Prev 251 0 R +/Next 259 0 R +>> endobj +251 0 obj << +/Title 252 0 R +/A 249 0 R +/Parent 243 0 R +/Prev 247 0 R +/Next 255 0 R +>> endobj +247 0 obj << +/Title 248 0 R +/A 245 0 R +/Parent 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 279 0 R +/First 247 0 R +/Last 275 0 R +/Count -8 +>> 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 75 0 R +/Prev 91 0 R +/Next 375 0 R +/First 239 0 R +/Last 363 0 R +/Count -12 +>> endobj +231 0 obj << +/Title 232 0 R +/A 229 0 R +/Parent 111 0 R +/Prev 227 0 R +>> endobj +227 0 obj << +/Title 228 0 R +/A 225 0 R +/Parent 111 0 R +/Prev 223 0 R +/Next 231 0 R +>> endobj +223 0 obj << +/Title 224 0 R +/A 221 0 R +/Parent 111 0 R +/Prev 219 0 R +/Next 227 0 R +>> endobj +219 0 obj << +/Title 220 0 R +/A 217 0 R +/Parent 111 0 R +/Prev 215 0 R +/Next 223 0 R +>> endobj +215 0 obj << +/Title 216 0 R +/A 213 0 R +/Parent 111 0 R +/Prev 211 0 R +/Next 219 0 R +>> endobj +211 0 obj << +/Title 212 0 R +/A 209 0 R +/Parent 111 0 R +/Prev 207 0 R +/Next 215 0 R +>> endobj +207 0 obj << +/Title 208 0 R +/A 205 0 R +/Parent 111 0 R +/Prev 203 0 R +/Next 211 0 R +>> endobj +203 0 obj << +/Title 204 0 R +/A 201 0 R +/Parent 111 0 R +/Prev 199 0 R +/Next 207 0 R +>> endobj +199 0 obj << +/Title 200 0 R +/A 197 0 R +/Parent 111 0 R +/Prev 195 0 R +/Next 203 0 R +>> endobj +195 0 obj << +/Title 196 0 R +/A 193 0 R +/Parent 111 0 R +/Prev 191 0 R +/Next 199 0 R +>> endobj +191 0 obj << +/Title 192 0 R +/A 189 0 R +/Parent 111 0 R +/Prev 187 0 R +/Next 195 0 R +>> endobj +187 0 obj << +/Title 188 0 R +/A 185 0 R +/Parent 111 0 R +/Prev 183 0 R +/Next 191 0 R +>> endobj +183 0 obj << +/Title 184 0 R +/A 181 0 R +/Parent 111 0 R +/Prev 179 0 R +/Next 187 0 R +>> endobj +179 0 obj << +/Title 180 0 R +/A 177 0 R +/Parent 111 0 R +/Prev 175 0 R +/Next 183 0 R +>> endobj +175 0 obj << +/Title 176 0 R +/A 173 0 R +/Parent 111 0 R +/Prev 171 0 R +/Next 179 0 R +>> endobj +171 0 obj << +/Title 172 0 R +/A 169 0 R +/Parent 111 0 R +/Prev 167 0 R +/Next 175 0 R +>> endobj +167 0 obj << +/Title 168 0 R +/A 165 0 R +/Parent 111 0 R +/Prev 163 0 R +/Next 171 0 R +>> endobj +163 0 obj << +/Title 164 0 R +/A 161 0 R +/Parent 111 0 R +/Prev 159 0 R +/Next 167 0 R +>> endobj +159 0 obj << +/Title 160 0 R +/A 157 0 R +/Parent 111 0 R +/Prev 155 0 R +/Next 163 0 R +>> endobj +155 0 obj << +/Title 156 0 R +/A 153 0 R +/Parent 111 0 R +/Prev 151 0 R +/Next 159 0 R +>> endobj +151 0 obj << +/Title 152 0 R +/A 149 0 R +/Parent 111 0 R +/Prev 147 0 R +/Next 155 0 R +>> endobj +147 0 obj << +/Title 148 0 R +/A 145 0 R +/Parent 111 0 R +/Prev 143 0 R +/Next 151 0 R +>> endobj +143 0 obj << +/Title 144 0 R +/A 141 0 R +/Parent 111 0 R +/Prev 139 0 R +/Next 147 0 R +>> endobj +139 0 obj << +/Title 140 0 R +/A 137 0 R +/Parent 111 0 R +/Prev 135 0 R +/Next 143 0 R +>> endobj +135 0 obj << +/Title 136 0 R +/A 133 0 R +/Parent 111 0 R +/Prev 131 0 R +/Next 139 0 R +>> endobj +131 0 obj << +/Title 132 0 R +/A 129 0 R +/Parent 111 0 R +/Prev 127 0 R +/Next 135 0 R +>> endobj +127 0 obj << +/Title 128 0 R +/A 125 0 R +/Parent 111 0 R +/Prev 123 0 R +/Next 131 0 R +>> endobj +123 0 obj << +/Title 124 0 R +/A 121 0 R +/Parent 111 0 R +/Prev 119 0 R +/Next 127 0 R +>> endobj +119 0 obj << +/Title 120 0 R +/A 117 0 R +/Parent 111 0 R +/Prev 115 0 R +/Next 123 0 R +>> endobj +115 0 obj << +/Title 116 0 R +/A 113 0 R +/Parent 111 0 R +/Next 119 0 R +>> endobj +111 0 obj << +/Title 112 0 R +/A 109 0 R +/Parent 91 0 R +/Prev 99 0 R +/First 115 0 R +/Last 231 0 R +/Count -30 +>> endobj +107 0 obj << +/Title 108 0 R +/A 105 0 R +/Parent 99 0 R +/Prev 103 0 R +>> endobj +103 0 obj << +/Title 104 0 R +/A 101 0 R +/Parent 99 0 R +/Next 107 0 R +>> endobj +99 0 obj << +/Title 100 0 R +/A 97 0 R +/Parent 91 0 R +/Prev 95 0 R +/Next 111 0 R +/First 103 0 R +/Last 107 0 R +/Count -2 +>> endobj +95 0 obj << +/Title 96 0 R +/A 93 0 R +/Parent 91 0 R +/Next 99 0 R +>> endobj +91 0 obj << +/Title 92 0 R +/A 89 0 R +/Parent 75 0 R +/Prev 79 0 R +/Next 235 0 R +/First 95 0 R +/Last 111 0 R +/Count -3 +>> endobj +87 0 obj << +/Title 88 0 R +/A 85 0 R +/Parent 79 0 R +/Prev 83 0 R +>> endobj +83 0 obj << +/Title 84 0 R +/A 81 0 R +/Parent 79 0 R +/Next 87 0 R +>> endobj +79 0 obj << +/Title 80 0 R +/A 77 0 R +/Parent 75 0 R +/Next 91 0 R +/First 83 0 R +/Last 87 0 R +/Count -2 +>> endobj +75 0 obj << +/Title 76 0 R +/A 73 0 R +/Parent 15 0 R +/Prev 35 0 R +/First 79 0 R +/Last 511 0 R +/Count -8 +>> endobj +71 0 obj << +/Title 72 0 R +/A 69 0 R +/Parent 35 0 R +/Prev 67 0 R +>> endobj +67 0 obj << +/Title 68 0 R +/A 65 0 R +/Parent 35 0 R +/Prev 63 0 R +/Next 71 0 R +>> endobj +63 0 obj << +/Title 64 0 R +/A 61 0 R +/Parent 35 0 R +/Prev 59 0 R +/Next 67 0 R +>> endobj +59 0 obj << +/Title 60 0 R +/A 57 0 R +/Parent 35 0 R +/Prev 55 0 R +/Next 63 0 R +>> endobj +55 0 obj << +/Title 56 0 R +/A 53 0 R +/Parent 35 0 R +/Prev 51 0 R +/Next 59 0 R +>> endobj +51 0 obj << +/Title 52 0 R +/A 49 0 R +/Parent 35 0 R +/Prev 47 0 R +/Next 55 0 R +>> endobj +47 0 obj << +/Title 48 0 R +/A 45 0 R +/Parent 35 0 R +/Prev 43 0 R +/Next 51 0 R +>> endobj +43 0 obj << +/Title 44 0 R +/A 41 0 R +/Parent 35 0 R +/Prev 39 0 R +/Next 47 0 R +>> endobj +39 0 obj << +/Title 40 0 R +/A 37 0 R +/Parent 35 0 R +/Next 43 0 R +>> endobj +35 0 obj << +/Title 36 0 R +/A 33 0 R +/Parent 15 0 R +/Prev 19 0 R +/Next 75 0 R +/First 39 0 R +/Last 71 0 R +/Count -9 +>> endobj +31 0 obj << +/Title 32 0 R +/A 29 0 R +/Parent 19 0 R +/Prev 27 0 R +>> endobj +27 0 obj << +/Title 28 0 R +/A 25 0 R +/Parent 19 0 R +/Prev 23 0 R +/Next 31 0 R +>> endobj +23 0 obj << +/Title 24 0 R +/A 21 0 R +/Parent 19 0 R +/Next 27 0 R +>> endobj +19 0 obj << +/Title 20 0 R +/A 17 0 R +/Parent 15 0 R +/Next 35 0 R +/First 23 0 R +/Last 31 0 R +/Count -3 +>> endobj +15 0 obj << +/Title 16 0 R +/A 13 0 R +/Parent 2291 0 R +/Prev 11 0 R +/Next 543 0 R +/First 19 0 R +/Last 75 0 R +/Count -3 +>> endobj +11 0 obj << +/Title 12 0 R +/A 9 0 R +/Parent 2291 0 R +/Prev 7 0 R +/Next 15 0 R +>> endobj +7 0 obj << +/Title 8 0 R +/A 5 0 R +/Parent 2291 0 R +/Next 11 0 R +>> endobj +2292 0 obj << +/Names [(CodingSuggestions) 1056 0 R (Doc-Start) 990 0 R (Item.1) 1435 0 R (Item.10) 1452 0 R (Item.100) 2081 0 R (Item.101) 2082 0 R (Item.102) 2118 0 R (Item.103) 2119 0 R (Item.104) 2120 0 R (Item.105) 2121 0 R (Item.106) 2122 0 R (Item.107) 2123 0 R (Item.108) 2124 0 R (Item.109) 2126 0 R (Item.11) 1733 0 R (Item.110) 2127 0 R (Item.111) 2128 0 R (Item.112) 2129 0 R (Item.113) 2141 0 R (Item.114) 2142 0 R (Item.115) 2143 0 R (Item.116) 2144 0 R (Item.117) 2200 0 R (Item.118) 2201 0 R (Item.119) 2202 0 R (Item.12) 1734 0 R (Item.120) 2203 0 R (Item.121) 2204 0 R (Item.122) 2216 0 R (Item.123) 2217 0 R (Item.124) 2218 0 R (Item.125) 2223 0 R (Item.126) 2224 0 R (Item.127) 2225 0 R (Item.128) 2226 0 R (Item.129) 2227 0 R (Item.13) 1735 0 R (Item.14) 1742 0 R (Item.15) 1743 0 R (Item.16) 1744 0 R (Item.17) 1745 0 R (Item.18) 1746 0 R (Item.19) 1747 0 R (Item.2) 1436 0 R (Item.20) 1759 0 R (Item.21) 1760 0 R (Item.22) 1761 0 R (Item.23) 1766 0 R (Item.24) 1779 0 R (Item.25) 1780 0 R (Item.26) 1781 0 R (Item.27) 1796 0 R (Item.28) 1797 0 R (Item.29) 1798 0 R (Item.3) 1437 0 R (Item.30) 1799 0 R (Item.31) 1800 0 R (Item.32) 1801 0 R (Item.33) 1802 0 R (Item.34) 1807 0 R (Item.35) 1808 0 R (Item.36) 1809 0 R (Item.37) 1810 0 R (Item.38) 1837 0 R (Item.39) 1838 0 R (Item.4) 1438 0 R (Item.40) 1839 0 R (Item.41) 1840 0 R (Item.42) 1841 0 R (Item.43) 1842 0 R (Item.44) 1843 0 R (Item.45) 1844 0 R (Item.46) 1845 0 R (Item.47) 1851 0 R (Item.48) 1852 0 R (Item.49) 1853 0 R (Item.5) 1439 0 R (Item.50) 1854 0 R (Item.51) 1855 0 R (Item.52) 1857 0 R (Item.53) 1858 0 R (Item.54) 1859 0 R (Item.55) 1865 0 R (Item.56) 1866 0 R (Item.57) 1867 0 R (Item.58) 1868 0 R (Item.59) 1869 0 R (Item.6) 1444 0 R (Item.60) 1870 0 R (Item.61) 1871 0 R (Item.62) 1872 0 R (Item.63) 1873 0 R (Item.64) 1874 0 R (Item.65) 1881 0 R (Item.66) 1882 0 R (Item.67) 1887 0 R (Item.68) 1888 0 R (Item.69) 1889 0 R (Item.7) 1445 0 R (Item.70) 1890 0 R (Item.71) 1891 0 R (Item.72) 1892 0 R (Item.73) 1893 0 R (Item.74) 1894 0 R (Item.75) 1895 0 R (Item.76) 1896 0 R (Item.77) 1897 0 R (Item.78) 1898 0 R (Item.79) 1899 0 R (Item.8) 1450 0 R (Item.80) 1900 0 R (Item.81) 1901 0 R (Item.82) 1902 0 R (Item.83) 1903 0 R (Item.84) 1904 0 R (Item.85) 1905 0 R (Item.86) 1906 0 R (Item.87) 1911 0 R (Item.88) 1912 0 R (Item.89) 1913 0 R (Item.9) 1451 0 R (Item.90) 2049 0 R (Item.91) 2050 0 R (Item.92) 2051 0 R (Item.93) 2052 0 R (Item.94) 2053 0 R (Item.95) 2062 0 R (Item.96) 2063 0 R (Item.97) 2064 0 R (Item.98) 2065 0 R (Item.99) 2067 0 R (Packaging) 1095 0 R (SMBPASSWDFILEFORMAT) 2167 0 R (architecture) 1053 0 R (chapter*.2) 1027 0 R (chapter.1) 18 0 R (chapter.10) 738 0 R (chapter.11) 790 0 R (chapter.12) 802 0 R (chapter.13) 850 0 R (chapter.14) 878 0 R (chapter.15) 906 0 R (chapter.16) 914 0 R (chapter.17) 934 0 R (chapter.18) 938 0 R (chapter.19) 946 0 R (chapter.2) 34 0 R (chapter.20) 974 0 R (chapter.3) 74 0 R (chapter.4) 546 0 R (chapter.5) 570 0 R (chapter.6) 606 0 R (chapter.7) 698 0 R (chapter.8) 702 0 R (chapter.9) 706 0 R (contributing) 1057 0 R (debug) 1054 0 R (id2426935) 1404 0 R (id2426973) 1405 0 R (id2427025) 1410 0 R (id2427225) 10 0 R (id2427230) 1378 0 R (id2427261) 1382 0 R (id2427332) 1387 0 R (id2427358) 1388 0 R (id2427454) 1397 0 R (id2427475) 1398 0 R (id2427533) 1403 0 R (id2429670) 1028 0 R (id2490642) 1411 0 R (id2490662) 1412 0 R (id2490707) 1418 0 R (id2490826) 1423 0 R (id2490992) 1440 0 R (id2491020) 1441 0 R (id2491052) 1442 0 R (id2491057) 1443 0 R (id2491121) 1453 0 R (id2491127) 1454 0 R (id2491188) 1455 0 R (id2491292) 1460 0 R (id2491297) 1461 0 R (id2491307) 1462 0 R (id2491316) 1463 0 R (id2491327) 1464 0 R (id2491337) 1465 0 R (id2491412) 1470 0 R (id2491423) 1471 0 R (id2491468) 1472 0 R (id2491501) 1473 0 R (id2491523) 1474 0 R (id2491557) 1475 0 R (id2491626) 1481 0 R (id2491700) 1482 0 R (id2491722) 1483 0 R (id2491792) 1488 0 R (id2491847) 1489 0 R (id2491927) 1493 0 R (id2491989) 1498 0 R (id2492022) 1499 0 R (id2492088) 1500 0 R (id2492130) 1501 0 R (id2492267) 1506 0 R (id2492350) 1507 0 R (id2492381) 1512 0 R (id2492495) 1513 0 R (id2492586) 1518 0 R (id2493037) 1528 0 R (id2493114) 1529 0 R (id2493148) 1530 0 R (id2493283) 1535 0 R (id2493658) 1544 0 R (id2493668) 1545 0 R (id2493754) 1546 0 R (id2493910) 1551 0 R (id2494017) 1557 0 R (id2494039) 1558 0 R (id2494070) 1559 0 R (id2494183) 1564 0 R (id2494215) 1565 0 R (id2494336) 1566 0 R (id2494394) 1571 0 R (id2494458) 1572 0 R (id2494495) 1573 0 R (id2494642) 1581 0 R (id2494775) 1586 0 R (id2494786) 1587 0 R (id2494842) 1588 0 R (id2494876) 1589 0 R (id2494887) 1590 0 R (id2494918) 1595 0 R (id2494961) 1596 0 R (id2494967) 1597 0 R (id2494977) 1598 0 R (id2495034) 1599 0 R (id2495040) 1600 0 R (id2495050) 1601 0 R (id2495122) 1607 0 R (id2495128) 1608 0 R (id2495149) 1609 0 R (id2495174) 1610 0 R (id2495186) 1611 0 R (id2495265) 1616 0 R (id2495343) 1617 0 R (id2495354) 1618 0 R (id2495445) 1623 0 R (id2495524) 1624 0 R (id2495655) 1629 0 R (id2495681) 1630 0 R (id2495737) 1631 0 R (id2495763) 1632 0 R (id2495789) 1637 0 R (id2495843) 1638 0 R (id2495882) 1639 0 R (id2495914) 1640 0 R (id2495948) 1641 0 R (id2495975) 1646 0 R (id2495987) 1647 0 R (id2496008) 1648 0 R (id2496058) 1649 0 R (id2496070) 1655 0 R (id2496092) 1656 0 R (id2496132) 1657 0 R (id2496146) 1658 0 R (id2496158) 1659 0 R (id2496258) 1664 0 R (id2496355) 1665 0 R (id2496378) 1666 0 R (id2496524) 1671 0 R (id2496616) 1672 0 R (id2496652) 1677 0 R (id2496669) 1678 0 R (id2496769) 1679 0 R (id2496828) 1680 0 R (id2496839) 1685 0 R (id2496871) 1686 0 R (id2496921) 1687 0 R (id2496927) 1688 0 R (id2497057) 1693 0 R (id2497139) 1699 0 R (id2497180) 1700 0 R (id2497213) 1701 0 R (id2497219) 1702 0 R (id2497320) 1707 0 R (id2497465) 1708 0 R (id2497477) 1713 0 R (id2497516) 1714 0 R (id2497565) 1715 0 R (id2497677) 1731 0 R (id2497708) 1732 0 R (id2497752) 1736 0 R (id2497784) 1737 0 R (id2497846) 1748 0 R (id2497891) 1749 0 R (id2497963) 1758 0 R (id2498075) 1767 0 R (id2498184) 1772 0 R (id2498221) 1778 0 R (id2498314) 1782 0 R (id2498320) 1783 0 R (id2498336) 1788 0 R (id2498355) 1789 0 R (id2498410) 1794 0 R (id2498432) 1795 0 R (id2498562) 1811 0 R (id2498574) 1812 0 R (id2498585) 1813 0 R (id2498596) 1814 0 R (id2498607) 1819 0 R (id2498620) 1820 0 R (id2498632) 1821 0 R (id2498644) 1822 0 R (id2498656) 1823 0 R (id2498667) 1824 0 R (id2498679) 1825 0 R (id2498691) 1826 0 R (id2498703) 1827 0 R (id2498715) 1828 0 R (id2498726) 1833 0 R (id2498739) 1834 0 R (id2498752) 1835 0 R (id2498780) 1836 0 R (id2498906) 1856 0 R (id2498978) 1864 0 R (id2499659) 1930 0 R (id2499698) 1931 0 R (id2499725) 1932 0 R (id2499759) 1937 0 R (id2499783) 1938 0 R (id2499834) 1942 0 R (id2499937) 1968 0 R (id2499967) 1969 0 R (id2500078) 1974 0 R (id2500100) 1975 0 R (id2500158) 1980 0 R (id2500163) 1981 0 R (id2500176) 1982 0 R (id2500200) 1983 0 R (id2500218) 1984 0 R (id2500224) 1985 0 R (id2500244) 1990 0 R (id2500268) 1991 0 R (id2500343) 1996 0 R (id2500479) 2001 0 R (id2500495) 2002 0 R (id2500667) 2012 0 R (id2500673) 2013 0 R (id2500770) 2022 0 R (id2500843) 2027 0 R (id2500850) 2028 0 R (id2501000) 2033 0 R (id2501205) 2047 0 R (id2501211) 2048 0 R (id2501641) 2083 0 R (id2501647) 2084 0 R (id2501666) 2089 0 R (id2501744) 2094 0 R (id2501782) 2095 0 R (id2501852) 2100 0 R (id2501876) 2105 0 R (id2501923) 2106 0 R (id2502007) 2112 0 R (id2502056) 2117 0 R (id2502131) 2125 0 R (id2502177) 2134 0 R (id2502230) 2135 0 R (id2502311) 2140 0 R (id2502370) 2145 0 R (id2502411) 2150 0 R (id2502534) 2160 0 R (id2502555) 2161 0 R (id2502639) 2166 0 R (id2502923) 2187 0 R (id2503202) 2199 0 R (id2503275) 2209 0 R (id2503288) 2210 0 R (id2503367) 2211 0 R (id2503543) 2228 0 R (id2503554) 2229 0 R (id2503837) 2258 0 R (id2503863) 2259 0 R (id2503891) 2260 0 R (internals) 1055 0 R (modules) 1058 0 R (netbios) 1050 0 R (ntdomain) 1052 0 R (page.c) 2093 0 R (page.ci) 2099 0 R (page.cii) 2104 0 R (page.ciii) 2111 0 R (page.civ) 2116 0 R (page.cix) 2159 0 R (page.cv) 2133 0 R (page.cvi) 2139 0 R (page.cvii) 2149 0 R (page.cviii) 2154 0 R (page.cx) 2165 0 R (page.cxi) 2171 0 R (page.cxii) 2175 0 R (page.cxiii) 2186 0 R (page.cxiv) 2191 0 R (page.cxix) 2234 0 R (page.cxv) 2198 0 R (page.cxvi) 2208 0 R (page.cxvii) 2215 0 R (page.cxviii) 2222 0 R (page.cxx) 2238 0 R (page.cxxi) 2242 0 R (page.cxxii) 2246 0 R (page.cxxiii) 2257 0 R (page.i) 989 0 R (page.ii) 1023 0 R (page.iii) 1064 0 R (page.iv) 1099 0 R (page.ix) 1344 0 R (page.l) 1676 0 R (page.li) 1684 0 R (page.lii) 1692 0 R (page.liii) 1698 0 R (page.liv) 1706 0 R (page.lix) 1753 0 R (page.lv) 1712 0 R (page.lvi) 1719 0 R (page.lvii) 1730 0 R (page.lviii) 1741 0 R (page.lx) 1757 0 R (page.lxi) 1765 0 R (page.lxii) 1771 0 R (page.lxiii) 1777 0 R (page.lxiv) 1787 0 R (page.lxix) 1850 0 R (page.lxv) 1793 0 R (page.lxvi) 1806 0 R (page.lxvii) 1818 0 R (page.lxviii) 1832 0 R (page.lxx) 1863 0 R (page.lxxi) 1878 0 R (page.lxxii) 1886 0 R (page.lxxiii) 1910 0 R (page.lxxiv) 1917 0 R (page.lxxix) 1967 0 R (page.lxxv) 1922 0 R (page.lxxvi) 1929 0 R (page.lxxvii) 1936 0 R (page.lxxviii) 1947 0 R (page.lxxx) 1973 0 R (page.lxxxi) 1979 0 R (page.lxxxii) 1989 0 R (page.lxxxiii) 1995 0 R (page.lxxxiv) 2000 0 R (page.lxxxix) 2026 0 R (page.lxxxv) 2007 0 R (page.lxxxvi) 2011 0 R (page.lxxxvii) 2017 0 R (page.lxxxviii) 2021 0 R (page.v) 1151 0 R (page.vi) 1202 0 R (page.vii) 1251 0 R (page.viii) 1297 0 R (page.x) 1366 0 R (page.xc) 2032 0 R (page.xci) 2038 0 R (page.xcii) 2042 0 R (page.xciii) 2046 0 R (page.xciv) 2057 0 R (page.xcix) 2088 0 R (page.xcv) 2061 0 R (page.xcvi) 2071 0 R (page.xcvii) 2076 0 R (page.xcviii) 2080 0 R (page.xi) 1377 0 R (page.xii) 1386 0 R (page.xiii) 1392 0 R (page.xiv) 1396 0 R (page.xix) 1434 0 R (page.xl) 1594 0 R (page.xli) 1606 0 R (page.xlii) 1615 0 R (page.xliii) 1622 0 R (page.xliv) 1628 0 R (page.xlix) 1670 0 R (page.xlv) 1636 0 R (page.xlvi) 1645 0 R (page.xlvii) 1654 0 R (page.xlviii) 1663 0 R (page.xv) 1402 0 R (page.xvi) 1409 0 R (page.xvii) 1417 0 R (page.xviii) 1422 0 R (page.xx) 1449 0 R (page.xxi) 1459 0 R (page.xxii) 1469 0 R (page.xxiii) 1480 0 R (page.xxiv) 1487 0 R (page.xxix) 1523 0 R (page.xxv) 1497 0 R (page.xxvi) 1505 0 R (page.xxvii) 1511 0 R (page.xxviii) 1517 0 R (page.xxx) 1527 0 R (page.xxxi) 1534 0 R (page.xxxii) 1539 0 R (page.xxxiii) 1543 0 R (page.xxxiv) 1550 0 R (page.xxxix) 1585 0 R (page.xxxv) 1556 0 R (page.xxxvi) 1563 0 R (page.xxxvii) 1570 0 R (page.xxxviii) 1580 0 R (parsing) 1089 0 R (part.1) 14 0 R (part.2) 542 0 R (part.3) 734 0 R (part.4) 930 0 R (part.5) 970 0 R (printing) 1094 0 R (pwencrypt) 1091 0 R (registry) 1088 0 R (rpc-plugin) 1060 0 R (sam) 1059 0 R (section*.1) 6 0 R (section.1.1) 22 0 R (section.1.2) 26 0 R (section.1.3) 30 0 R (section.10.1) 742 0 R (section.10.2) 746 0 R (section.10.3) 750 0 R (section.10.4) 754 0 R (section.10.5) 770 0 R (section.10.6) 782 0 R (section.10.7) 786 0 R (section.11.1) 794 0 R (section.11.2) 798 0 R (section.12.1) 806 0 R (section.12.2) 818 0 R (section.12.3) 830 0 R (section.12.4) 838 0 R (section.13.1) 854 0 R (section.13.2) 858 0 R (section.13.3) 862 0 R (section.13.4) 866 0 R (section.13.5) 870 0 R (section.13.6) 874 0 R (section.14.1) 882 0 R (section.14.2) 898 0 R (section.15.1) 910 0 R (section.16.1) 918 0 R (section.16.2) 922 0 R (section.16.3) 926 0 R (section.18.1) 942 0 R (section.19.1) 950 0 R (section.19.2) 954 0 R (section.19.3) 958 0 R (section.19.4) 962 0 R (section.19.5) 966 0 R (section.2.1) 38 0 R (section.2.2) 42 0 R (section.2.3) 46 0 R (section.2.4) 50 0 R (section.2.5) 54 0 R (section.2.6) 58 0 R (section.2.7) 62 0 R (section.2.8) 66 0 R (section.2.9) 70 0 R (section.20.1) 978 0 R (section.20.2) 982 0 R (section.3.1) 78 0 R (section.3.2) 90 0 R (section.3.3) 234 0 R (section.3.4) 374 0 R (section.3.5) 438 0 R (section.3.6) 466 0 R (section.3.7) 494 0 R (section.3.8) 510 0 R (section.4.1) 550 0 R (section.4.2) 554 0 R (section.4.3) 558 0 R (section.4.4) 562 0 R (section.4.5) 566 0 R (section.5.1) 574 0 R (section.5.2) 578 0 R (section.5.3) 582 0 R (section.5.4) 586 0 R (section.5.5) 590 0 R (section.6.1) 610 0 R (section.6.2) 614 0 R (section.6.3) 618 0 R (section.6.4) 682 0 R (section.6.5) 694 0 R (section.9.1) 710 0 R (section.9.2) 714 0 R (section.9.3) 726 0 R (subsection.10.4.1) 758 0 R (subsection.10.4.2) 762 0 R (subsection.10.4.3) 766 0 R (subsection.10.5.1) 774 0 R (subsection.10.5.2) 778 0 R (subsection.12.1.1) 810 0 R (subsection.12.1.2) 814 0 R (subsection.12.2.1) 822 0 R (subsection.12.2.2) 826 0 R (subsection.12.3.1) 834 0 R (subsection.12.4.1) 842 0 R (subsection.12.4.2) 846 0 R (subsection.14.1.1) 886 0 R (subsection.14.1.2) 890 0 R (subsection.14.1.3) 894 0 R (subsection.14.2.1) 902 0 R (subsection.3.1.1) 82 0 R (subsection.3.1.2) 86 0 R (subsection.3.2.1) 94 0 R (subsection.3.2.2) 98 0 R (subsection.3.2.3) 110 0 R (subsection.3.3.1) 238 0 R (subsection.3.3.10) 338 0 R (subsection.3.3.11) 350 0 R (subsection.3.3.12) 362 0 R (subsection.3.3.2) 242 0 R (subsection.3.3.3) 278 0 R (subsection.3.3.4) 282 0 R (subsection.3.3.5) 286 0 R (subsection.3.3.6) 290 0 R (subsection.3.3.7) 302 0 R (subsection.3.3.8) 314 0 R (subsection.3.3.9) 326 0 R (subsection.3.4.1) 378 0 R (subsection.3.4.2) 390 0 R (subsection.3.4.3) 402 0 R (subsection.3.4.4) 414 0 R (subsection.3.4.5) 426 0 R (subsection.3.5.1) 442 0 R (subsection.3.5.2) 454 0 R (subsection.3.6.1) 470 0 R (subsection.3.6.2) 482 0 R (subsection.3.7.1) 498 0 R (subsection.3.7.2) 502 0 R (subsection.3.7.3) 506 0 R (subsection.3.8.1) 514 0 R (subsection.3.8.2) 526 0 R (subsection.5.5.1) 594 0 R (subsection.5.5.2) 598 0 R (subsection.5.5.3) 602 0 R (subsection.6.3.1) 622 0 R (subsection.6.3.10) 658 0 R (subsection.6.3.11) 662 0 R (subsection.6.3.12) 666 0 R (subsection.6.3.13) 670 0 R (subsection.6.3.14) 674 0 R (subsection.6.3.15) 678 0 R (subsection.6.3.2) 626 0 R (subsection.6.3.3) 630 0 R (subsection.6.3.4) 634 0 R (subsection.6.3.5) 638 0 R (subsection.6.3.6) 642 0 R (subsection.6.3.7) 646 0 R (subsection.6.3.8) 650 0 R (subsection.6.3.9) 654 0 R (subsection.6.4.1) 686 0 R (subsection.6.4.2) 690 0 R (subsection.9.2.1) 718 0 R (subsection.9.2.2) 722 0 R (subsection.9.3.1) 730 0 R (subsubsection.3.2.2.1) 102 0 R (subsubsection.3.2.2.2) 106 0 R (subsubsection.3.2.3.1) 114 0 R (subsubsection.3.2.3.10) 150 0 R (subsubsection.3.2.3.11) 154 0 R (subsubsection.3.2.3.12) 158 0 R (subsubsection.3.2.3.13) 162 0 R (subsubsection.3.2.3.14) 166 0 R (subsubsection.3.2.3.15) 170 0 R (subsubsection.3.2.3.16) 174 0 R (subsubsection.3.2.3.17) 178 0 R (subsubsection.3.2.3.18) 182 0 R (subsubsection.3.2.3.19) 186 0 R (subsubsection.3.2.3.2) 118 0 R (subsubsection.3.2.3.20) 190 0 R (subsubsection.3.2.3.21) 194 0 R (subsubsection.3.2.3.22) 198 0 R (subsubsection.3.2.3.23) 202 0 R (subsubsection.3.2.3.24) 206 0 R (subsubsection.3.2.3.25) 210 0 R (subsubsection.3.2.3.26) 214 0 R (subsubsection.3.2.3.27) 218 0 R (subsubsection.3.2.3.28) 222 0 R (subsubsection.3.2.3.29) 226 0 R (subsubsection.3.2.3.3) 122 0 R (subsubsection.3.2.3.30) 230 0 R (subsubsection.3.2.3.4) 126 0 R (subsubsection.3.2.3.5) 130 0 R (subsubsection.3.2.3.6) 134 0 R (subsubsection.3.2.3.7) 138 0 R (subsubsection.3.2.3.8) 142 0 R (subsubsection.3.2.3.9) 146 0 R (subsubsection.3.3.10.1) 342 0 R (subsubsection.3.3.10.2) 346 0 R (subsubsection.3.3.11.1) 354 0 R (subsubsection.3.3.11.2) 358 0 R (subsubsection.3.3.12.1) 366 0 R (subsubsection.3.3.12.2) 370 0 R (subsubsection.3.3.2.1) 246 0 R (subsubsection.3.3.2.2) 250 0 R (subsubsection.3.3.2.3) 254 0 R (subsubsection.3.3.2.4) 258 0 R (subsubsection.3.3.2.5) 262 0 R (subsubsection.3.3.2.6) 266 0 R (subsubsection.3.3.2.7) 270 0 R (subsubsection.3.3.2.8) 274 0 R (subsubsection.3.3.6.1) 294 0 R (subsubsection.3.3.6.2) 298 0 R (subsubsection.3.3.7.1) 306 0 R (subsubsection.3.3.7.2) 310 0 R (subsubsection.3.3.8.1) 318 0 R (subsubsection.3.3.8.2) 322 0 R (subsubsection.3.3.9.1) 330 0 R (subsubsection.3.3.9.2) 334 0 R (subsubsection.3.4.1.1) 382 0 R (subsubsection.3.4.1.2) 386 0 R (subsubsection.3.4.2.1) 394 0 R (subsubsection.3.4.2.2) 398 0 R (subsubsection.3.4.3.1) 406 0 R (subsubsection.3.4.3.2) 410 0 R (subsubsection.3.4.4.1) 418 0 R (subsubsection.3.4.4.2) 422 0 R (subsubsection.3.4.5.1) 430 0 R (subsubsection.3.4.5.2) 434 0 R (subsubsection.3.5.1.1) 446 0 R (subsubsection.3.5.1.2) 450 0 R (subsubsection.3.5.2.1) 458 0 R (subsubsection.3.5.2.2) 462 0 R (subsubsection.3.6.1.1) 474 0 R (subsubsection.3.6.1.2) 478 0 R (subsubsection.3.6.2.1) 486 0 R (subsubsection.3.6.2.2) 490 0 R (subsubsection.3.8.1.1) 518 0 R (subsubsection.3.8.1.2) 522 0 R (subsubsection.3.8.2.1) 530 0 R (subsubsection.3.8.2.2) 534 0 R (subsubsection.3.8.2.3) 538 0 R (tracing) 1092 0 R (unix-smb) 1051 0 R (vfs) 1087 0 R (windows-debug) 1093 0 R (wins) 1090 0 R] +/Limits [(CodingSuggestions) (wins)] +>> endobj +2293 0 obj << +/Kids [2292 0 R] +>> endobj +2294 0 obj << +/Dests 2293 0 R +>> endobj +2295 0 obj << +/Type /Catalog +/Pages 2290 0 R +/Outlines 2291 0 R +/Names 2294 0 R +/PageMode /UseOutlines /URI<> /ViewerPreferences<<>> +/OpenAction 985 0 R +/PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b) +>> endobj +2296 0 obj << +/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.10b)/Keywords() +/CreationDate (D:20040427035900) +>> endobj +xref +0 2297 +0000000001 65535 f +0000000002 00000 f +0000000003 00000 f +0000000004 00000 f +0000000000 00000 f +0000000009 00000 n +0000032553 00000 n +0000564608 00000 n +0000000055 00000 n +0000000085 00000 n +0000390481 00000 n +0000564521 00000 n +0000000130 00000 n +0000000157 00000 n +0000099706 00000 n +0000564394 00000 n +0000000200 00000 n +0000000238 00000 n +0000102568 00000 n +0000564283 00000 n +0000000284 00000 n +0000000369 00000 n +0000102680 00000 n +0000564209 00000 n +0000000417 00000 n +0000000447 00000 n +0000106236 00000 n +0000564122 00000 n +0000000495 00000 n +0000000535 00000 n +0000106352 00000 n +0000564048 00000 n +0000000583 00000 n +0000000618 00000 n +0000110391 00000 n +0000563924 00000 n +0000000664 00000 n +0000000716 00000 n +0000110503 00000 n +0000563850 00000 n +0000000764 00000 n +0000000799 00000 n +0000110619 00000 n +0000563763 00000 n +0000000847 00000 n +0000000879 00000 n +0000113819 00000 n +0000563676 00000 n +0000000927 00000 n +0000000964 00000 n +0000113935 00000 n +0000563589 00000 n +0000001012 00000 n +0000001044 00000 n +0000114051 00000 n +0000563502 00000 n +0000001092 00000 n +0000001122 00000 n +0000117720 00000 n +0000563415 00000 n +0000001170 00000 n +0000001203 00000 n +0000117836 00000 n +0000563328 00000 n +0000001251 00000 n +0000001287 00000 n +0000117952 00000 n +0000563241 00000 n +0000001335 00000 n +0000001370 00000 n +0000121742 00000 n +0000563167 00000 n +0000001418 00000 n +0000001460 00000 n +0000126172 00000 n +0000563055 00000 n +0000001506 00000 n +0000001550 00000 n +0000126284 00000 n +0000562944 00000 n +0000001598 00000 n +0000001633 00000 n +0000129678 00000 n +0000562870 00000 n +0000001686 00000 n +0000001718 00000 n +0000129794 00000 n +0000562796 00000 n +0000001771 00000 n +0000001803 00000 n +0000129909 00000 n +0000562670 00000 n +0000001851 00000 n +0000001894 00000 n +0000130024 00000 n +0000562596 00000 n +0000001947 00000 n +0000001977 00000 n +0000133068 00000 n +0000562468 00000 n +0000002030 00000 n +0000002068 00000 n +0000133184 00000 n +0000562390 00000 n +0000002127 00000 n +0000002172 00000 n +0000133301 00000 n +0000562312 00000 n +0000002231 00000 n +0000002276 00000 n +0000135116 00000 n +0000562195 00000 n +0000002330 00000 n +0000002366 00000 n +0000135232 00000 n +0000562116 00000 n +0000002425 00000 n +0000002459 00000 n +0000135349 00000 n +0000562023 00000 n +0000002518 00000 n +0000002550 00000 n +0000135465 00000 n +0000561930 00000 n +0000002609 00000 n +0000002642 00000 n +0000135582 00000 n +0000561837 00000 n +0000002701 00000 n +0000002735 00000 n +0000135699 00000 n +0000561744 00000 n +0000002794 00000 n +0000002857 00000 n +0000137356 00000 n +0000561651 00000 n +0000002916 00000 n +0000002958 00000 n +0000137468 00000 n +0000561558 00000 n +0000003017 00000 n +0000003077 00000 n +0000137585 00000 n +0000561465 00000 n +0000003136 00000 n +0000003217 00000 n +0000137702 00000 n +0000561372 00000 n +0000003276 00000 n +0000003329 00000 n +0000137819 00000 n +0000561279 00000 n +0000003389 00000 n +0000003458 00000 n +0000137936 00000 n +0000561186 00000 n +0000003518 00000 n +0000003581 00000 n +0000140029 00000 n +0000561093 00000 n +0000003641 00000 n +0000003703 00000 n +0000140146 00000 n +0000561000 00000 n +0000003763 00000 n +0000003824 00000 n +0000140263 00000 n +0000560907 00000 n +0000003884 00000 n +0000003973 00000 n +0000142303 00000 n +0000560814 00000 n +0000004033 00000 n +0000004097 00000 n +0000142415 00000 n +0000560721 00000 n +0000004157 00000 n +0000004235 00000 n +0000142531 00000 n +0000560628 00000 n +0000004295 00000 n +0000004370 00000 n +0000144831 00000 n +0000560535 00000 n +0000004430 00000 n +0000004493 00000 n +0000144943 00000 n +0000560442 00000 n +0000004553 00000 n +0000004644 00000 n +0000145060 00000 n +0000560349 00000 n +0000004704 00000 n +0000004803 00000 n +0000145177 00000 n +0000560256 00000 n +0000004863 00000 n +0000004943 00000 n +0000147116 00000 n +0000560163 00000 n +0000005003 00000 n +0000005082 00000 n +0000147233 00000 n +0000560070 00000 n +0000005142 00000 n +0000005192 00000 n +0000149287 00000 n +0000559977 00000 n +0000005252 00000 n +0000005317 00000 n +0000149404 00000 n +0000559884 00000 n +0000005377 00000 n +0000005464 00000 n +0000151191 00000 n +0000559791 00000 n +0000005524 00000 n +0000005585 00000 n +0000155273 00000 n +0000559698 00000 n +0000005645 00000 n +0000005739 00000 n +0000155389 00000 n +0000559605 00000 n +0000005799 00000 n +0000005881 00000 n +0000155505 00000 n +0000559512 00000 n +0000005941 00000 n +0000005995 00000 n +0000158341 00000 n +0000559433 00000 n +0000006055 00000 n +0000006105 00000 n +0000163798 00000 n +0000559302 00000 n +0000006154 00000 n +0000006208 00000 n +0000163911 00000 n +0000559223 00000 n +0000006262 00000 n +0000006299 00000 n +0000164028 00000 n +0000559091 00000 n +0000006353 00000 n +0000006385 00000 n +0000166823 00000 n +0000559012 00000 n +0000006444 00000 n +0000006538 00000 n +0000169072 00000 n +0000558919 00000 n +0000006597 00000 n +0000006649 00000 n +0000169184 00000 n +0000558826 00000 n +0000006708 00000 n +0000006751 00000 n +0000169301 00000 n +0000558733 00000 n +0000006810 00000 n +0000006855 00000 n +0000171486 00000 n +0000558640 00000 n +0000006914 00000 n +0000006959 00000 n +0000171598 00000 n +0000558547 00000 n +0000007018 00000 n +0000007063 00000 n +0000171715 00000 n +0000558454 00000 n +0000007122 00000 n +0000007167 00000 n +0000174560 00000 n +0000558375 00000 n +0000007226 00000 n +0000007271 00000 n +0000174677 00000 n +0000558282 00000 n +0000007325 00000 n +0000007355 00000 n +0000174794 00000 n +0000558189 00000 n +0000007409 00000 n +0000007454 00000 n +0000177107 00000 n +0000558096 00000 n +0000007508 00000 n +0000007559 00000 n +0000178896 00000 n +0000557964 00000 n +0000007613 00000 n +0000007654 00000 n +0000179013 00000 n +0000557885 00000 n +0000007713 00000 n +0000007748 00000 n +0000179130 00000 n +0000557806 00000 n +0000007807 00000 n +0000007843 00000 n +0000179247 00000 n +0000557674 00000 n +0000007897 00000 n +0000007944 00000 n +0000179363 00000 n +0000557595 00000 n +0000008003 00000 n +0000008038 00000 n +0000180882 00000 n +0000557516 00000 n +0000008097 00000 n +0000008133 00000 n +0000180995 00000 n +0000557384 00000 n +0000008187 00000 n +0000008242 00000 n +0000181112 00000 n +0000557305 00000 n +0000008301 00000 n +0000008336 00000 n +0000181229 00000 n +0000557226 00000 n +0000008395 00000 n +0000008431 00000 n +0000181346 00000 n +0000557094 00000 n +0000008485 00000 n +0000008526 00000 n +0000181463 00000 n +0000557015 00000 n +0000008585 00000 n +0000008620 00000 n +0000181580 00000 n +0000556936 00000 n +0000008679 00000 n +0000008715 00000 n +0000183501 00000 n +0000556804 00000 n +0000008770 00000 n +0000008806 00000 n +0000183618 00000 n +0000556725 00000 n +0000008866 00000 n +0000008902 00000 n +0000183735 00000 n +0000556646 00000 n +0000008962 00000 n +0000008999 00000 n +0000183852 00000 n +0000556514 00000 n +0000009054 00000 n +0000009096 00000 n +0000183969 00000 n +0000556435 00000 n +0000009156 00000 n +0000009192 00000 n +0000185991 00000 n +0000556356 00000 n +0000009252 00000 n +0000009289 00000 n +0000186108 00000 n +0000556238 00000 n +0000009344 00000 n +0000009387 00000 n +0000186225 00000 n +0000556159 00000 n +0000009447 00000 n +0000009483 00000 n +0000188528 00000 n +0000556080 00000 n +0000009543 00000 n +0000009580 00000 n +0000188641 00000 n +0000555949 00000 n +0000009629 00000 n +0000009685 00000 n +0000190822 00000 n +0000555831 00000 n +0000009739 00000 n +0000009786 00000 n +0000190939 00000 n +0000555752 00000 n +0000009845 00000 n +0000009880 00000 n +0000191055 00000 n +0000555673 00000 n +0000009939 00000 n +0000009975 00000 n +0000191172 00000 n +0000555541 00000 n +0000010029 00000 n +0000010073 00000 n +0000193502 00000 n +0000555462 00000 n +0000010132 00000 n +0000010167 00000 n +0000193615 00000 n +0000555383 00000 n +0000010226 00000 n +0000010262 00000 n +0000193732 00000 n +0000555251 00000 n +0000010316 00000 n +0000010365 00000 n +0000193847 00000 n +0000555172 00000 n +0000010424 00000 n +0000010459 00000 n +0000193964 00000 n +0000555093 00000 n +0000010518 00000 n +0000010554 00000 n +0000195866 00000 n +0000554961 00000 n +0000010608 00000 n +0000010647 00000 n +0000195983 00000 n +0000554882 00000 n +0000010706 00000 n +0000010741 00000 n +0000196100 00000 n +0000554803 00000 n +0000010800 00000 n +0000010836 00000 n +0000196217 00000 n +0000554685 00000 n +0000010890 00000 n +0000010930 00000 n +0000198385 00000 n +0000554606 00000 n +0000010989 00000 n +0000011024 00000 n +0000198498 00000 n +0000554527 00000 n +0000011083 00000 n +0000011119 00000 n +0000198615 00000 n +0000554396 00000 n +0000011168 00000 n +0000011226 00000 n +0000198732 00000 n +0000554278 00000 n +0000011280 00000 n +0000011319 00000 n +0000198849 00000 n +0000554199 00000 n +0000011378 00000 n +0000011413 00000 n +0000200721 00000 n +0000554120 00000 n +0000011472 00000 n +0000011508 00000 n +0000200834 00000 n +0000554002 00000 n +0000011562 00000 n +0000011597 00000 n +0000200951 00000 n +0000553923 00000 n +0000011656 00000 n +0000011691 00000 n +0000202724 00000 n +0000553844 00000 n +0000011750 00000 n +0000011786 00000 n +0000202841 00000 n +0000553713 00000 n +0000011835 00000 n +0000011885 00000 n +0000204924 00000 n +0000553595 00000 n +0000011939 00000 n +0000011979 00000 n +0000205036 00000 n +0000553516 00000 n +0000012038 00000 n +0000012073 00000 n +0000205153 00000 n +0000553437 00000 n +0000012132 00000 n +0000012168 00000 n +0000205270 00000 n +0000553319 00000 n +0000012222 00000 n +0000012267 00000 n +0000207621 00000 n +0000553240 00000 n +0000012326 00000 n +0000012361 00000 n +0000207734 00000 n +0000553161 00000 n +0000012420 00000 n +0000012456 00000 n +0000207851 00000 n +0000553030 00000 n +0000012505 00000 n +0000012575 00000 n +0000207968 00000 n +0000552951 00000 n +0000012629 00000 n +0000012666 00000 n +0000209688 00000 n +0000552858 00000 n +0000012720 00000 n +0000012754 00000 n +0000212224 00000 n +0000552779 00000 n +0000012808 00000 n +0000012842 00000 n +0000212341 00000 n +0000552662 00000 n +0000012891 00000 n +0000012928 00000 n +0000212458 00000 n +0000552544 00000 n +0000012982 00000 n +0000013023 00000 n +0000212575 00000 n +0000552465 00000 n +0000013082 00000 n +0000013135 00000 n +0000214575 00000 n +0000552386 00000 n +0000013194 00000 n +0000013240 00000 n +0000214691 00000 n +0000552268 00000 n +0000013294 00000 n +0000013335 00000 n +0000216606 00000 n +0000552189 00000 n +0000013394 00000 n +0000013442 00000 n +0000216718 00000 n +0000552096 00000 n +0000013501 00000 n +0000013550 00000 n +0000216835 00000 n +0000552017 00000 n +0000013609 00000 n +0000013659 00000 n +0000217784 00000 n +0000551885 00000 n +0000013703 00000 n +0000013743 00000 n +0000220578 00000 n +0000551767 00000 n +0000013790 00000 n +0000013838 00000 n +0000220691 00000 n +0000551688 00000 n +0000013887 00000 n +0000013923 00000 n +0000220984 00000 n +0000551595 00000 n +0000013972 00000 n +0000014020 00000 n +0000221101 00000 n +0000551502 00000 n +0000014069 00000 n +0000014107 00000 n +0000225248 00000 n +0000551409 00000 n +0000014156 00000 n +0000014194 00000 n +0000225365 00000 n +0000551330 00000 n +0000014243 00000 n +0000014278 00000 n +0000228892 00000 n +0000551198 00000 n +0000014325 00000 n +0000014377 00000 n +0000229005 00000 n +0000551119 00000 n +0000014426 00000 n +0000014467 00000 n +0000231849 00000 n +0000551026 00000 n +0000014516 00000 n +0000014559 00000 n +0000233824 00000 n +0000550933 00000 n +0000014608 00000 n +0000014654 00000 n +0000236118 00000 n +0000550840 00000 n +0000014703 00000 n +0000014749 00000 n +0000236408 00000 n +0000550722 00000 n +0000014798 00000 n +0000014835 00000 n +0000236523 00000 n +0000550643 00000 n +0000014889 00000 n +0000014926 00000 n +0000238475 00000 n +0000550550 00000 n +0000014980 00000 n +0000015016 00000 n +0000238591 00000 n +0000550471 00000 n +0000015070 00000 n +0000015123 00000 n +0000241294 00000 n +0000550339 00000 n +0000015170 00000 n +0000015215 00000 n +0000241407 00000 n +0000550260 00000 n +0000015264 00000 n +0000015306 00000 n +0000241524 00000 n +0000550167 00000 n +0000015355 00000 n +0000015396 00000 n +0000245665 00000 n +0000550034 00000 n +0000015445 00000 n +0000015490 00000 n +0000245782 00000 n +0000549955 00000 n +0000015544 00000 n +0000015585 00000 n +0000245899 00000 n +0000549862 00000 n +0000015639 00000 n +0000015680 00000 n +0000246016 00000 n +0000549769 00000 n +0000015734 00000 n +0000015780 00000 n +0000247712 00000 n +0000549676 00000 n +0000015834 00000 n +0000015875 00000 n +0000247825 00000 n +0000549583 00000 n +0000015929 00000 n +0000015970 00000 n +0000247941 00000 n +0000549490 00000 n +0000016024 00000 n +0000016066 00000 n +0000248058 00000 n +0000549397 00000 n +0000016120 00000 n +0000016162 00000 n +0000248175 00000 n +0000549304 00000 n +0000016216 00000 n +0000016262 00000 n +0000248292 00000 n +0000549211 00000 n +0000016316 00000 n +0000016362 00000 n +0000248409 00000 n +0000549118 00000 n +0000016417 00000 n +0000016465 00000 n +0000248525 00000 n +0000549025 00000 n +0000016520 00000 n +0000016568 00000 n +0000248642 00000 n +0000548932 00000 n +0000016623 00000 n +0000016666 00000 n +0000248759 00000 n +0000548839 00000 n +0000016721 00000 n +0000016764 00000 n +0000251343 00000 n +0000548746 00000 n +0000016819 00000 n +0000016867 00000 n +0000251456 00000 n +0000548667 00000 n +0000016922 00000 n +0000016970 00000 n +0000251573 00000 n +0000548535 00000 n +0000017019 00000 n +0000017064 00000 n +0000251688 00000 n +0000548456 00000 n +0000017118 00000 n +0000017154 00000 n +0000255984 00000 n +0000548377 00000 n +0000017208 00000 n +0000017246 00000 n +0000257805 00000 n +0000548298 00000 n +0000017295 00000 n +0000017339 00000 n +0000261898 00000 n +0000548205 00000 n +0000017386 00000 n +0000017434 00000 n +0000272031 00000 n +0000548112 00000 n +0000017481 00000 n +0000017528 00000 n +0000276662 00000 n +0000547994 00000 n +0000017575 00000 n +0000017612 00000 n +0000276775 00000 n +0000547915 00000 n +0000017661 00000 n +0000017695 00000 n +0000276891 00000 n +0000547783 00000 n +0000017744 00000 n +0000017783 00000 n +0000277008 00000 n +0000547704 00000 n +0000017837 00000 n +0000017877 00000 n +0000280313 00000 n +0000547625 00000 n +0000017931 00000 n +0000017971 00000 n +0000280425 00000 n +0000547507 00000 n +0000018020 00000 n +0000018059 00000 n +0000280542 00000 n +0000547442 00000 n +0000018113 00000 n +0000018178 00000 n +0000284634 00000 n +0000547309 00000 n +0000018222 00000 n +0000018267 00000 n +0000287552 00000 n +0000547191 00000 n +0000018315 00000 n +0000018369 00000 n +0000287665 00000 n +0000547112 00000 n +0000018419 00000 n +0000018469 00000 n +0000291535 00000 n +0000547019 00000 n +0000018519 00000 n +0000018564 00000 n +0000291652 00000 n +0000546926 00000 n +0000018614 00000 n +0000018671 00000 n +0000294728 00000 n +0000546794 00000 n +0000018721 00000 n +0000018752 00000 n +0000294844 00000 n +0000546715 00000 n +0000018807 00000 n +0000018845 00000 n +0000294960 00000 n +0000546622 00000 n +0000018900 00000 n +0000018940 00000 n +0000295077 00000 n +0000546543 00000 n +0000018995 00000 n +0000019033 00000 n +0000295194 00000 n +0000546411 00000 n +0000019083 00000 n +0000019119 00000 n +0000295311 00000 n +0000546332 00000 n +0000019174 00000 n +0000019230 00000 n +0000298256 00000 n +0000546253 00000 n +0000019285 00000 n +0000019322 00000 n +0000298368 00000 n +0000546160 00000 n +0000019372 00000 n +0000019414 00000 n +0000300265 00000 n +0000546081 00000 n +0000019464 00000 n +0000019496 00000 n +0000302927 00000 n +0000545949 00000 n +0000019544 00000 n +0000019596 00000 n +0000303040 00000 n +0000545870 00000 n +0000019646 00000 n +0000019676 00000 n +0000303157 00000 n +0000545791 00000 n +0000019726 00000 n +0000019767 00000 n +0000305670 00000 n +0000545659 00000 n +0000019815 00000 n +0000019857 00000 n +0000305783 00000 n +0000545541 00000 n +0000019907 00000 n +0000019961 00000 n +0000305900 00000 n +0000545462 00000 n +0000020016 00000 n +0000020064 00000 n +0000309646 00000 n +0000545383 00000 n +0000020119 00000 n +0000020175 00000 n +0000312106 00000 n +0000545251 00000 n +0000020225 00000 n +0000020313 00000 n +0000312223 00000 n +0000545172 00000 n +0000020368 00000 n +0000020426 00000 n +0000314572 00000 n +0000545093 00000 n +0000020481 00000 n +0000020550 00000 n +0000321473 00000 n +0000544961 00000 n +0000020600 00000 n +0000020659 00000 n +0000321590 00000 n +0000544896 00000 n +0000020714 00000 n +0000020782 00000 n +0000331340 00000 n +0000544778 00000 n +0000020832 00000 n +0000020867 00000 n +0000331457 00000 n +0000544699 00000 n +0000020922 00000 n +0000020980 00000 n +0000332999 00000 n +0000544620 00000 n +0000021035 00000 n +0000021088 00000 n +0000334765 00000 n +0000544488 00000 n +0000021136 00000 n +0000021189 00000 n +0000334878 00000 n +0000544409 00000 n +0000021239 00000 n +0000021280 00000 n +0000334995 00000 n +0000544316 00000 n +0000021330 00000 n +0000021370 00000 n +0000336639 00000 n +0000544223 00000 n +0000021420 00000 n +0000021463 00000 n +0000338424 00000 n +0000544130 00000 n +0000021513 00000 n +0000021555 00000 n +0000338541 00000 n +0000544037 00000 n +0000021605 00000 n +0000021646 00000 n +0000341088 00000 n +0000543958 00000 n +0000021696 00000 n +0000021738 00000 n +0000343630 00000 n +0000543826 00000 n +0000021786 00000 n +0000021834 00000 n +0000343743 00000 n +0000543708 00000 n +0000021884 00000 n +0000021925 00000 n +0000344272 00000 n +0000543629 00000 n +0000021980 00000 n +0000022029 00000 n +0000346475 00000 n +0000543536 00000 n +0000022084 00000 n +0000022140 00000 n +0000346588 00000 n +0000543457 00000 n +0000022195 00000 n +0000022246 00000 n +0000348793 00000 n +0000543339 00000 n +0000022296 00000 n +0000022327 00000 n +0000349144 00000 n +0000543274 00000 n +0000022382 00000 n +0000022423 00000 n +0000351132 00000 n +0000543142 00000 n +0000022471 00000 n +0000022522 00000 n +0000351245 00000 n +0000543077 00000 n +0000022572 00000 n +0000022610 00000 n +0000355307 00000 n +0000542959 00000 n +0000022658 00000 n +0000022722 00000 n +0000355419 00000 n +0000542880 00000 n +0000022772 00000 n +0000022809 00000 n +0000355535 00000 n +0000542787 00000 n +0000022859 00000 n +0000022901 00000 n +0000358974 00000 n +0000542708 00000 n +0000022951 00000 n +0000022994 00000 n +0000362859 00000 n +0000542575 00000 n +0000023038 00000 n +0000023087 00000 n +0000365760 00000 n +0000542496 00000 n +0000023135 00000 n +0000023192 00000 n +0000369676 00000 n +0000542364 00000 n +0000023240 00000 n +0000023308 00000 n +0000369789 00000 n +0000542299 00000 n +0000023358 00000 n +0000023408 00000 n +0000372387 00000 n +0000542181 00000 n +0000023456 00000 n +0000023511 00000 n +0000372500 00000 n +0000542102 00000 n +0000023561 00000 n +0000023594 00000 n +0000372617 00000 n +0000542009 00000 n +0000023644 00000 n +0000023708 00000 n +0000372734 00000 n +0000541916 00000 n +0000023758 00000 n +0000023800 00000 n +0000379816 00000 n +0000541823 00000 n +0000023850 00000 n +0000023925 00000 n +0000379932 00000 n +0000541744 00000 n +0000023975 00000 n +0000024035 00000 n +0000388178 00000 n +0000541625 00000 n +0000024079 00000 n +0000024116 00000 n +0000390005 00000 n +0000541521 00000 n +0000024164 00000 n +0000024213 00000 n +0000390118 00000 n +0000541442 00000 n +0000024263 00000 n +0000024298 00000 n +0000390235 00000 n +0000541363 00000 n +0000024348 00000 n +0000024380 00000 n +0000024758 00000 n +0000024976 00000 n +0000024432 00000 n +0000024870 00000 n +0000024923 00000 n +0000537412 00000 n +0000530997 00000 n +0000537248 00000 n +0000530543 00000 n +0000525667 00000 n +0000530380 00000 n +0000537865 00000 n +0000027161 00000 n +0000026304 00000 n +0000025061 00000 n +0000524763 00000 n +0000508911 00000 n +0000524597 00000 n +0000508088 00000 n +0000491881 00000 n +0000507922 00000 n +0000489957 00000 n +0000471667 00000 n +0000489792 00000 n +0000471423 00000 n +0000469411 00000 n +0000471258 00000 n +0000026465 00000 n +0000468423 00000 n +0000452097 00000 n +0000468257 00000 n +0000026635 00000 n +0000026806 00000 n +0000026977 00000 n +0000032727 00000 n +0000029310 00000 n +0000027289 00000 n +0000032498 00000 n +0000450238 00000 n +0000437465 00000 n +0000450070 00000 n +0000032609 00000 n +0000032668 00000 n +0000029599 00000 n +0000437031 00000 n +0000435508 00000 n +0000436865 00000 n +0000029749 00000 n +0000029900 00000 n +0000030051 00000 n +0000030227 00000 n +0000030402 00000 n +0000030573 00000 n +0000030728 00000 n +0000030876 00000 n +0000031027 00000 n +0000031214 00000 n +0000031400 00000 n +0000031560 00000 n +0000031715 00000 n +0000031887 00000 n +0000032035 00000 n +0000032204 00000 n +0000032347 00000 n +0000102621 00000 n +0000110444 00000 n +0000126225 00000 n +0000220632 00000 n +0000228946 00000 n +0000241348 00000 n +0000261952 00000 n +0000272085 00000 n +0000276716 00000 n +0000287606 00000 n +0000302981 00000 n +0000039013 00000 n +0000035150 00000 n +0000032870 00000 n +0000038958 00000 n +0000035475 00000 n +0000035649 00000 n +0000035819 00000 n +0000035965 00000 n +0000036133 00000 n +0000036304 00000 n +0000036454 00000 n +0000036626 00000 n +0000036776 00000 n +0000036923 00000 n +0000037074 00000 n +0000037245 00000 n +0000037395 00000 n +0000037551 00000 n +0000037723 00000 n +0000037895 00000 n +0000038046 00000 n +0000038198 00000 n +0000038352 00000 n +0000038502 00000 n +0000038653 00000 n +0000038806 00000 n +0000305724 00000 n +0000334819 00000 n +0000343684 00000 n +0000351186 00000 n +0000355361 00000 n +0000365814 00000 n +0000369730 00000 n +0000372441 00000 n +0000390059 00000 n +0000050530 00000 n +0000042712 00000 n +0000039169 00000 n +0000050475 00000 n +0000433109 00000 n +0000424447 00000 n +0000432944 00000 n +0000043244 00000 n +0000043399 00000 n +0000043552 00000 n +0000043705 00000 n +0000043859 00000 n +0000044014 00000 n +0000044169 00000 n +0000044324 00000 n +0000044478 00000 n +0000044632 00000 n +0000044785 00000 n +0000044940 00000 n +0000045092 00000 n +0000045247 00000 n +0000045406 00000 n +0000045564 00000 n +0000045718 00000 n +0000045877 00000 n +0000046036 00000 n +0000046200 00000 n +0000046365 00000 n +0000046524 00000 n +0000046687 00000 n +0000046851 00000 n +0000047013 00000 n +0000047177 00000 n +0000047341 00000 n +0000047506 00000 n +0000047671 00000 n +0000047836 00000 n +0000048001 00000 n +0000048166 00000 n +0000048332 00000 n +0000048498 00000 n +0000048664 00000 n +0000048829 00000 n +0000048995 00000 n +0000049161 00000 n +0000049327 00000 n +0000049492 00000 n +0000049658 00000 n +0000049821 00000 n +0000049984 00000 n +0000050148 00000 n +0000050312 00000 n +0000062338 00000 n +0000054072 00000 n +0000050631 00000 n +0000062283 00000 n +0000054622 00000 n +0000054788 00000 n +0000054954 00000 n +0000055120 00000 n +0000055286 00000 n +0000055451 00000 n +0000055617 00000 n +0000055772 00000 n +0000055931 00000 n +0000056091 00000 n +0000056256 00000 n +0000056421 00000 n +0000056585 00000 n +0000056750 00000 n +0000056915 00000 n +0000057080 00000 n +0000057245 00000 n +0000057410 00000 n +0000057570 00000 n +0000057730 00000 n +0000057890 00000 n +0000058050 00000 n +0000058215 00000 n +0000058379 00000 n +0000058539 00000 n +0000058704 00000 n +0000058869 00000 n +0000059028 00000 n +0000059193 00000 n +0000059358 00000 n +0000059518 00000 n +0000059683 00000 n +0000059848 00000 n +0000060009 00000 n +0000060175 00000 n +0000060341 00000 n +0000060502 00000 n +0000060668 00000 n +0000060834 00000 n +0000060995 00000 n +0000061160 00000 n +0000061326 00000 n +0000061480 00000 n +0000061639 00000 n +0000061801 00000 n +0000061964 00000 n +0000062121 00000 n +0000072965 00000 n +0000065352 00000 n +0000062439 00000 n +0000072910 00000 n +0000065876 00000 n +0000066040 00000 n +0000066199 00000 n +0000066363 00000 n +0000066527 00000 n +0000066687 00000 n +0000066851 00000 n +0000067015 00000 n +0000067174 00000 n +0000067335 00000 n +0000067499 00000 n +0000067653 00000 n +0000067812 00000 n +0000067976 00000 n +0000068139 00000 n +0000068297 00000 n +0000068457 00000 n +0000068621 00000 n +0000068775 00000 n +0000068934 00000 n +0000069099 00000 n +0000069264 00000 n +0000069424 00000 n +0000069589 00000 n +0000069754 00000 n +0000069909 00000 n +0000070069 00000 n +0000070229 00000 n +0000070389 00000 n +0000070544 00000 n +0000070704 00000 n +0000070869 00000 n +0000071034 00000 n +0000071194 00000 n +0000071359 00000 n +0000071524 00000 n +0000071689 00000 n +0000071838 00000 n +0000071990 00000 n +0000072145 00000 n +0000072300 00000 n +0000072453 00000 n +0000072606 00000 n +0000072759 00000 n +0000537987 00000 n +0000083182 00000 n +0000076026 00000 n +0000073093 00000 n +0000083127 00000 n +0000076532 00000 n +0000076687 00000 n +0000076841 00000 n +0000076995 00000 n +0000077150 00000 n +0000077305 00000 n +0000077465 00000 n +0000077625 00000 n +0000077785 00000 n +0000077938 00000 n +0000078092 00000 n +0000078246 00000 n +0000078400 00000 n +0000078559 00000 n +0000078719 00000 n +0000078879 00000 n +0000079039 00000 n +0000079199 00000 n +0000079359 00000 n +0000079519 00000 n +0000079678 00000 n +0000079837 00000 n +0000079998 00000 n +0000080159 00000 n +0000080320 00000 n +0000080481 00000 n +0000080641 00000 n +0000080801 00000 n +0000080954 00000 n +0000081112 00000 n +0000081272 00000 n +0000081426 00000 n +0000081579 00000 n +0000081731 00000 n +0000081884 00000 n +0000082038 00000 n +0000082192 00000 n +0000082352 00000 n +0000082512 00000 n +0000082667 00000 n +0000082827 00000 n +0000082975 00000 n +0000093936 00000 n +0000086615 00000 n +0000083296 00000 n +0000093881 00000 n +0000087130 00000 n +0000087286 00000 n +0000087442 00000 n +0000087598 00000 n +0000087754 00000 n +0000087914 00000 n +0000088075 00000 n +0000088236 00000 n +0000088392 00000 n +0000088552 00000 n +0000088713 00000 n +0000088869 00000 n +0000089025 00000 n +0000089179 00000 n +0000089335 00000 n +0000089491 00000 n +0000089645 00000 n +0000089801 00000 n +0000089961 00000 n +0000090122 00000 n +0000090278 00000 n +0000090439 00000 n +0000090600 00000 n +0000090756 00000 n +0000090916 00000 n +0000091070 00000 n +0000091229 00000 n +0000091390 00000 n +0000091542 00000 n +0000091698 00000 n +0000091854 00000 n +0000092010 00000 n +0000092166 00000 n +0000092322 00000 n +0000092477 00000 n +0000092631 00000 n +0000092786 00000 n +0000092946 00000 n +0000093106 00000 n +0000093266 00000 n +0000093420 00000 n +0000093578 00000 n +0000093728 00000 n +0000098886 00000 n +0000095768 00000 n +0000094037 00000 n +0000098831 00000 n +0000096058 00000 n +0000096212 00000 n +0000096367 00000 n +0000096522 00000 n +0000096678 00000 n +0000096828 00000 n +0000096982 00000 n +0000097136 00000 n +0000097291 00000 n +0000097445 00000 n +0000097601 00000 n +0000097757 00000 n +0000097912 00000 n +0000098066 00000 n +0000098219 00000 n +0000098369 00000 n +0000098523 00000 n +0000098677 00000 n +0000099304 00000 n +0000099133 00000 n +0000099000 00000 n +0000099249 00000 n +0000099763 00000 n +0000099590 00000 n +0000099346 00000 n +0000100085 00000 n +0000099969 00000 n +0000099836 00000 n +0000538112 00000 n +0000102796 00000 n +0000102342 00000 n +0000100127 00000 n +0000102458 00000 n +0000102513 00000 n +0000423993 00000 n +0000419947 00000 n +0000423827 00000 n +0000102737 00000 n +0000106468 00000 n +0000106065 00000 n +0000102911 00000 n +0000106181 00000 n +0000106293 00000 n +0000106409 00000 n +0000107647 00000 n +0000107476 00000 n +0000106597 00000 n +0000107592 00000 n +0000110735 00000 n +0000110220 00000 n +0000107748 00000 n +0000110336 00000 n +0000110560 00000 n +0000110676 00000 n +0000114166 00000 n +0000113648 00000 n +0000110864 00000 n +0000113764 00000 n +0000113876 00000 n +0000113992 00000 n +0000114108 00000 n +0000118066 00000 n +0000117549 00000 n +0000114281 00000 n +0000117665 00000 n +0000117777 00000 n +0000117893 00000 n +0000118009 00000 n +0000538237 00000 n +0000121858 00000 n +0000121571 00000 n +0000118195 00000 n +0000121687 00000 n +0000121799 00000 n +0000126400 00000 n +0000124560 00000 n +0000121973 00000 n +0000126117 00000 n +0000126341 00000 n +0000124751 00000 n +0000124946 00000 n +0000125140 00000 n +0000125361 00000 n +0000125549 00000 n +0000125725 00000 n +0000125932 00000 n +0000130256 00000 n +0000129214 00000 n +0000126543 00000 n +0000129330 00000 n +0000129385 00000 n +0000129443 00000 n +0000129502 00000 n +0000129561 00000 n +0000129620 00000 n +0000129735 00000 n +0000129851 00000 n +0000129966 00000 n +0000130080 00000 n +0000130139 00000 n +0000130198 00000 n +0000133418 00000 n +0000132724 00000 n +0000130399 00000 n +0000132840 00000 n +0000132895 00000 n +0000132950 00000 n +0000133009 00000 n +0000133125 00000 n +0000133242 00000 n +0000133359 00000 n +0000135816 00000 n +0000134945 00000 n +0000133533 00000 n +0000135061 00000 n +0000135173 00000 n +0000135290 00000 n +0000135406 00000 n +0000135523 00000 n +0000135640 00000 n +0000135757 00000 n +0000138053 00000 n +0000137185 00000 n +0000135945 00000 n +0000137301 00000 n +0000137410 00000 n +0000137526 00000 n +0000137643 00000 n +0000137760 00000 n +0000137877 00000 n +0000137994 00000 n +0000538362 00000 n +0000140380 00000 n +0000139858 00000 n +0000138168 00000 n +0000139974 00000 n +0000140087 00000 n +0000140204 00000 n +0000140321 00000 n +0000142648 00000 n +0000142132 00000 n +0000140509 00000 n +0000142248 00000 n +0000142357 00000 n +0000142473 00000 n +0000419716 00000 n +0000417695 00000 n +0000419551 00000 n +0000142589 00000 n +0000145294 00000 n +0000144660 00000 n +0000142805 00000 n +0000144776 00000 n +0000144885 00000 n +0000145001 00000 n +0000145118 00000 n +0000145235 00000 n +0000147348 00000 n +0000146945 00000 n +0000145423 00000 n +0000147061 00000 n +0000147174 00000 n +0000147290 00000 n +0000149520 00000 n +0000149116 00000 n +0000147491 00000 n +0000149232 00000 n +0000149345 00000 n +0000149462 00000 n +0000151303 00000 n +0000151020 00000 n +0000149635 00000 n +0000151136 00000 n +0000151245 00000 n +0000538487 00000 n +0000153019 00000 n +0000152848 00000 n +0000151432 00000 n +0000152964 00000 n +0000155622 00000 n +0000155102 00000 n +0000153120 00000 n +0000155218 00000 n +0000155331 00000 n +0000155447 00000 n +0000155563 00000 n +0000158458 00000 n +0000158170 00000 n +0000155765 00000 n +0000158286 00000 n +0000158399 00000 n +0000160901 00000 n +0000160730 00000 n +0000158587 00000 n +0000160846 00000 n +0000164143 00000 n +0000163627 00000 n +0000161002 00000 n +0000163743 00000 n +0000163852 00000 n +0000163969 00000 n +0000164085 00000 n +0000166940 00000 n +0000166652 00000 n +0000164286 00000 n +0000166768 00000 n +0000166881 00000 n +0000538612 00000 n +0000169418 00000 n +0000168901 00000 n +0000167069 00000 n +0000169017 00000 n +0000169126 00000 n +0000169242 00000 n +0000169359 00000 n +0000171832 00000 n +0000171315 00000 n +0000169547 00000 n +0000171431 00000 n +0000171540 00000 n +0000171656 00000 n +0000171773 00000 n +0000174911 00000 n +0000174389 00000 n +0000171947 00000 n +0000174505 00000 n +0000174618 00000 n +0000174735 00000 n +0000174852 00000 n +0000417459 00000 n +0000415586 00000 n +0000417291 00000 n +0000177224 00000 n +0000176936 00000 n +0000175068 00000 n +0000177052 00000 n +0000177165 00000 n +0000179480 00000 n +0000178725 00000 n +0000177381 00000 n +0000178841 00000 n +0000178954 00000 n +0000179071 00000 n +0000179188 00000 n +0000179305 00000 n +0000179421 00000 n +0000181695 00000 n +0000180711 00000 n +0000179623 00000 n +0000180827 00000 n +0000180936 00000 n +0000181053 00000 n +0000181170 00000 n +0000181287 00000 n +0000181404 00000 n +0000181521 00000 n +0000181637 00000 n +0000538737 00000 n +0000184086 00000 n +0000183330 00000 n +0000181824 00000 n +0000183446 00000 n +0000183559 00000 n +0000183676 00000 n +0000183793 00000 n +0000183910 00000 n +0000184027 00000 n +0000186342 00000 n +0000185820 00000 n +0000184215 00000 n +0000185936 00000 n +0000186049 00000 n +0000186166 00000 n +0000186283 00000 n +0000188758 00000 n +0000188357 00000 n +0000186471 00000 n +0000188473 00000 n +0000188582 00000 n +0000188699 00000 n +0000191289 00000 n +0000190651 00000 n +0000188887 00000 n +0000190767 00000 n +0000190880 00000 n +0000190997 00000 n +0000191113 00000 n +0000191230 00000 n +0000194079 00000 n +0000193331 00000 n +0000191432 00000 n +0000193447 00000 n +0000193556 00000 n +0000193673 00000 n +0000193790 00000 n +0000193905 00000 n +0000194021 00000 n +0000196333 00000 n +0000195695 00000 n +0000194208 00000 n +0000195811 00000 n +0000195924 00000 n +0000196041 00000 n +0000196158 00000 n +0000196275 00000 n +0000538862 00000 n +0000198966 00000 n +0000198214 00000 n +0000196476 00000 n +0000198330 00000 n +0000198439 00000 n +0000198556 00000 n +0000198673 00000 n +0000198790 00000 n +0000198907 00000 n +0000201068 00000 n +0000200550 00000 n +0000199123 00000 n +0000200666 00000 n +0000200775 00000 n +0000200892 00000 n +0000201009 00000 n +0000202958 00000 n +0000202553 00000 n +0000201211 00000 n +0000202669 00000 n +0000202782 00000 n +0000202899 00000 n +0000205384 00000 n +0000204753 00000 n +0000203073 00000 n +0000204869 00000 n +0000204978 00000 n +0000205094 00000 n +0000205211 00000 n +0000205327 00000 n +0000208085 00000 n +0000207450 00000 n +0000205513 00000 n +0000207566 00000 n +0000207675 00000 n +0000207792 00000 n +0000207909 00000 n +0000208026 00000 n +0000209805 00000 n +0000209517 00000 n +0000208200 00000 n +0000209633 00000 n +0000209746 00000 n +0000538987 00000 n +0000212692 00000 n +0000212053 00000 n +0000209934 00000 n +0000212169 00000 n +0000212282 00000 n +0000212399 00000 n +0000212516 00000 n +0000212633 00000 n +0000214805 00000 n +0000214404 00000 n +0000212821 00000 n +0000214520 00000 n +0000214633 00000 n +0000214747 00000 n +0000216951 00000 n +0000216435 00000 n +0000214920 00000 n +0000216551 00000 n +0000216660 00000 n +0000216776 00000 n +0000216892 00000 n +0000217384 00000 n +0000217213 00000 n +0000217080 00000 n +0000217329 00000 n +0000217841 00000 n +0000217668 00000 n +0000217426 00000 n +0000218163 00000 n +0000218047 00000 n +0000217914 00000 n +0000539112 00000 n +0000221213 00000 n +0000220352 00000 n +0000218205 00000 n +0000220468 00000 n +0000220523 00000 n +0000220749 00000 n +0000220808 00000 n +0000220867 00000 n +0000220926 00000 n +0000221042 00000 n +0000221156 00000 n +0000225481 00000 n +0000224727 00000 n +0000221328 00000 n +0000224843 00000 n +0000224898 00000 n +0000224953 00000 n +0000225012 00000 n +0000225071 00000 n +0000225130 00000 n +0000225189 00000 n +0000225306 00000 n +0000225423 00000 n +0000227073 00000 n +0000226902 00000 n +0000225596 00000 n +0000227018 00000 n +0000229298 00000 n +0000228721 00000 n +0000227174 00000 n +0000228837 00000 n +0000229063 00000 n +0000229122 00000 n +0000229181 00000 n +0000229240 00000 n +0000231966 00000 n +0000231619 00000 n +0000229427 00000 n +0000231735 00000 n +0000231790 00000 n +0000231907 00000 n +0000233939 00000 n +0000233653 00000 n +0000232109 00000 n +0000233769 00000 n +0000233880 00000 n +0000539237 00000 n +0000236638 00000 n +0000235947 00000 n +0000234068 00000 n +0000236063 00000 n +0000236172 00000 n +0000236231 00000 n +0000236290 00000 n +0000236349 00000 n +0000236465 00000 n +0000236580 00000 n +0000238708 00000 n +0000238304 00000 n +0000236767 00000 n +0000238420 00000 n +0000238532 00000 n +0000238649 00000 n +0000242053 00000 n +0000241123 00000 n +0000238823 00000 n +0000241239 00000 n +0000241465 00000 n +0000241582 00000 n +0000241641 00000 n +0000241700 00000 n +0000241759 00000 n +0000241818 00000 n +0000241877 00000 n +0000241936 00000 n +0000241995 00000 n +0000246131 00000 n +0000245259 00000 n +0000242168 00000 n +0000245375 00000 n +0000245430 00000 n +0000245489 00000 n +0000245548 00000 n +0000245606 00000 n +0000245723 00000 n +0000245840 00000 n +0000245957 00000 n +0000246073 00000 n +0000248873 00000 n +0000247541 00000 n +0000246246 00000 n +0000247657 00000 n +0000247766 00000 n +0000247882 00000 n +0000247999 00000 n +0000248116 00000 n +0000248233 00000 n +0000248350 00000 n +0000248466 00000 n +0000248583 00000 n +0000248700 00000 n +0000248816 00000 n +0000252334 00000 n +0000251172 00000 n +0000248988 00000 n +0000251288 00000 n +0000251397 00000 n +0000251514 00000 n +0000251631 00000 n +0000251746 00000 n +0000251805 00000 n +0000251864 00000 n +0000251923 00000 n +0000251982 00000 n +0000252041 00000 n +0000252100 00000 n +0000252158 00000 n +0000252217 00000 n +0000252276 00000 n +0000539362 00000 n +0000256277 00000 n +0000255522 00000 n +0000252463 00000 n +0000255638 00000 n +0000255693 00000 n +0000255748 00000 n +0000255807 00000 n +0000255866 00000 n +0000255925 00000 n +0000256042 00000 n +0000256100 00000 n +0000256159 00000 n +0000256218 00000 n +0000258508 00000 n +0000257634 00000 n +0000256392 00000 n +0000257750 00000 n +0000257859 00000 n +0000257918 00000 n +0000257977 00000 n +0000258036 00000 n +0000258095 00000 n +0000258154 00000 n +0000258213 00000 n +0000258272 00000 n +0000258331 00000 n +0000258390 00000 n +0000258449 00000 n +0000262127 00000 n +0000261307 00000 n +0000258623 00000 n +0000261843 00000 n +0000261453 00000 n +0000261653 00000 n +0000262011 00000 n +0000262069 00000 n +0000267333 00000 n +0000265991 00000 n +0000262270 00000 n +0000266107 00000 n +0000266162 00000 n +0000266217 00000 n +0000266276 00000 n +0000266335 00000 n +0000266390 00000 n +0000266449 00000 n +0000266508 00000 n +0000266567 00000 n +0000266626 00000 n +0000266685 00000 n +0000266744 00000 n +0000266803 00000 n +0000266862 00000 n +0000266921 00000 n +0000266980 00000 n +0000267039 00000 n +0000267098 00000 n +0000267157 00000 n +0000267216 00000 n +0000267275 00000 n +0000269340 00000 n +0000268992 00000 n +0000267434 00000 n +0000269108 00000 n +0000269163 00000 n +0000269222 00000 n +0000269281 00000 n +0000272144 00000 n +0000271860 00000 n +0000269427 00000 n +0000271976 00000 n +0000539487 00000 n +0000274643 00000 n +0000273897 00000 n +0000272287 00000 n +0000274588 00000 n +0000274052 00000 n +0000274228 00000 n +0000274409 00000 n +0000277125 00000 n +0000276491 00000 n +0000274772 00000 n +0000276607 00000 n +0000276833 00000 n +0000276949 00000 n +0000277066 00000 n +0000280659 00000 n +0000280142 00000 n +0000277254 00000 n +0000280258 00000 n +0000280367 00000 n +0000280483 00000 n +0000413406 00000 n +0000405899 00000 n +0000413239 00000 n +0000280600 00000 n +0000282416 00000 n +0000284084 00000 n +0000282300 00000 n +0000280802 00000 n +0000284029 00000 n +0000404568 00000 n +0000402233 00000 n +0000404401 00000 n +0000400610 00000 n +0000394564 00000 n +0000400444 00000 n +0000283779 00000 n +0000283916 00000 n +0000284006 00000 n +0000284692 00000 n +0000284518 00000 n +0000284270 00000 n +0000285014 00000 n +0000284898 00000 n +0000284765 00000 n +0000539612 00000 n +0000287782 00000 n +0000287326 00000 n +0000285056 00000 n +0000287442 00000 n +0000287497 00000 n +0000287723 00000 n +0000291769 00000 n +0000291364 00000 n +0000287911 00000 n +0000291480 00000 n +0000291593 00000 n +0000291710 00000 n +0000295427 00000 n +0000294557 00000 n +0000291898 00000 n +0000294673 00000 n +0000294786 00000 n +0000294901 00000 n +0000295018 00000 n +0000295135 00000 n +0000295252 00000 n +0000295369 00000 n +0000298484 00000 n +0000298085 00000 n +0000295556 00000 n +0000298201 00000 n +0000298310 00000 n +0000298425 00000 n +0000300378 00000 n +0000300094 00000 n +0000298613 00000 n +0000300210 00000 n +0000300319 00000 n +0000303274 00000 n +0000302756 00000 n +0000300507 00000 n +0000302872 00000 n +0000303098 00000 n +0000303215 00000 n +0000539737 00000 n +0000304279 00000 n +0000304108 00000 n +0000303417 00000 n +0000304224 00000 n +0000306017 00000 n +0000305499 00000 n +0000304380 00000 n +0000305615 00000 n +0000305841 00000 n +0000305958 00000 n +0000307398 00000 n +0000307227 00000 n +0000306146 00000 n +0000307343 00000 n +0000309763 00000 n +0000309475 00000 n +0000307527 00000 n +0000309591 00000 n +0000309704 00000 n +0000312340 00000 n +0000311935 00000 n +0000309906 00000 n +0000312051 00000 n +0000312164 00000 n +0000312281 00000 n +0000314689 00000 n +0000314401 00000 n +0000312469 00000 n +0000314517 00000 n +0000314630 00000 n +0000539862 00000 n +0000317037 00000 n +0000316866 00000 n +0000314818 00000 n +0000316982 00000 n +0000318521 00000 n +0000318350 00000 n +0000317166 00000 n +0000318466 00000 n +0000322002 00000 n +0000321302 00000 n +0000318636 00000 n +0000321418 00000 n +0000321531 00000 n +0000321648 00000 n +0000321707 00000 n +0000321766 00000 n +0000321825 00000 n +0000321884 00000 n +0000321943 00000 n +0000322996 00000 n +0000322825 00000 n +0000322145 00000 n +0000322941 00000 n +0000326538 00000 n +0000325902 00000 n +0000323098 00000 n +0000326188 00000 n +0000326243 00000 n +0000326302 00000 n +0000326361 00000 n +0000326420 00000 n +0000326039 00000 n +0000326479 00000 n +0000327920 00000 n +0000327749 00000 n +0000326667 00000 n +0000327865 00000 n +0000539987 00000 n +0000329269 00000 n +0000329098 00000 n +0000328035 00000 n +0000329214 00000 n +0000331574 00000 n +0000331052 00000 n +0000329384 00000 n +0000331168 00000 n +0000331223 00000 n +0000331281 00000 n +0000331398 00000 n +0000331515 00000 n +0000333112 00000 n +0000332828 00000 n +0000331703 00000 n +0000332944 00000 n +0000333053 00000 n +0000335112 00000 n +0000334594 00000 n +0000333241 00000 n +0000334710 00000 n +0000334936 00000 n +0000335053 00000 n +0000336756 00000 n +0000336468 00000 n +0000335255 00000 n +0000336584 00000 n +0000336697 00000 n +0000338654 00000 n +0000338253 00000 n +0000336885 00000 n +0000338369 00000 n +0000338482 00000 n +0000338597 00000 n +0000540112 00000 n +0000341205 00000 n +0000340917 00000 n +0000338783 00000 n +0000341033 00000 n +0000341146 00000 n +0000344623 00000 n +0000343459 00000 n +0000341348 00000 n +0000343575 00000 n +0000343801 00000 n +0000343860 00000 n +0000343919 00000 n +0000343978 00000 n +0000344037 00000 n +0000344096 00000 n +0000344155 00000 n +0000344214 00000 n +0000344330 00000 n +0000344389 00000 n +0000344448 00000 n +0000344507 00000 n +0000344565 00000 n +0000346705 00000 n +0000346304 00000 n +0000344752 00000 n +0000346420 00000 n +0000346529 00000 n +0000346646 00000 n +0000349261 00000 n +0000348622 00000 n +0000346848 00000 n +0000348738 00000 n +0000348851 00000 n +0000348910 00000 n +0000348969 00000 n +0000349027 00000 n +0000349086 00000 n +0000349202 00000 n +0000351362 00000 n +0000350961 00000 n +0000349404 00000 n +0000351077 00000 n +0000351303 00000 n +0000352773 00000 n +0000352602 00000 n +0000351491 00000 n +0000352718 00000 n +0000540237 00000 n +0000355652 00000 n +0000355136 00000 n +0000352874 00000 n +0000355252 00000 n +0000355476 00000 n +0000355593 00000 n +0000359150 00000 n +0000358803 00000 n +0000355767 00000 n +0000358919 00000 n +0000359032 00000 n +0000359091 00000 n +0000362001 00000 n +0000361830 00000 n +0000359279 00000 n +0000361946 00000 n +0000362448 00000 n +0000362277 00000 n +0000362144 00000 n +0000362393 00000 n +0000362917 00000 n +0000362743 00000 n +0000362490 00000 n +0000363239 00000 n +0000363123 00000 n +0000362990 00000 n +0000540362 00000 n +0000365873 00000 n +0000365534 00000 n +0000363281 00000 n +0000365650 00000 n +0000365705 00000 n +0000368436 00000 n +0000368265 00000 n +0000366002 00000 n +0000368381 00000 n +0000393382 00000 n +0000391508 00000 n +0000393216 00000 n +0000370200 00000 n +0000369505 00000 n +0000368565 00000 n +0000369621 00000 n +0000369847 00000 n +0000369906 00000 n +0000369965 00000 n +0000370024 00000 n +0000370083 00000 n +0000370141 00000 n +0000372850 00000 n +0000372216 00000 n +0000370329 00000 n +0000372332 00000 n +0000372558 00000 n +0000372675 00000 n +0000372792 00000 n +0000376778 00000 n +0000376432 00000 n +0000372993 00000 n +0000376548 00000 n +0000376603 00000 n +0000376662 00000 n +0000376720 00000 n +0000380049 00000 n +0000379357 00000 n +0000376921 00000 n +0000379473 00000 n +0000379528 00000 n +0000379583 00000 n +0000379640 00000 n +0000379698 00000 n +0000379757 00000 n +0000379874 00000 n +0000379990 00000 n +0000540487 00000 n +0000382484 00000 n +0000382313 00000 n +0000380178 00000 n +0000382429 00000 n +0000386371 00000 n +0000386200 00000 n +0000382613 00000 n +0000386316 00000 n +0000387364 00000 n +0000387193 00000 n +0000386500 00000 n +0000387309 00000 n +0000387783 00000 n +0000387612 00000 n +0000387479 00000 n +0000387728 00000 n +0000388236 00000 n +0000388062 00000 n +0000387825 00000 n +0000388558 00000 n +0000388442 00000 n +0000388309 00000 n +0000540612 00000 n +0000390352 00000 n +0000389779 00000 n +0000388600 00000 n +0000389895 00000 n +0000389950 00000 n +0000390176 00000 n +0000390293 00000 n +0000390512 00000 n +0000393592 00000 n +0000393617 00000 n +0000400906 00000 n +0000401223 00000 n +0000404771 00000 n +0000404878 00000 n +0000413679 00000 n +0000413922 00000 n +0000417670 00000 n +0000419922 00000 n +0000424254 00000 n +0000433490 00000 n +0000433850 00000 n +0000437248 00000 n +0000450684 00000 n +0000451078 00000 n +0000469022 00000 n +0000471636 00000 n +0000490510 00000 n +0000490932 00000 n +0000508530 00000 n +0000525262 00000 n +0000530794 00000 n +0000537669 00000 n +0000540701 00000 n +0000540826 00000 n +0000540952 00000 n +0000541078 00000 n +0000541195 00000 n +0000541287 00000 n +0000564681 00000 n +0000581497 00000 n +0000581538 00000 n +0000581578 00000 n +0000581809 00000 n +trailer +<< +/Size 2297 +/Root 2295 0 R +/Info 2296 0 R +>> +startxref +581965 +%%EOF diff -u -r --new-file --exclude .svn --exclude CVS samba-3.0.2a/docs/Samba-Guide.pdf samba-3.0.3/docs/Samba-Guide.pdf --- samba-3.0.2a/docs/Samba-Guide.pdf Wed Dec 31 18:00:00 1969 +++ samba-3.0.3/docs/Samba-Guide.pdf Tue Apr 27 06:00:28 2004 @@ -0,0 +1,50265 @@ +%PDF-1.4 +5 0 obj +<< /S /GoTo /D (section*.1) >> +endobj +8 0 obj +(About the Cover Artwork) +endobj +9 0 obj +<< /S /GoTo /D (chapter*.2) >> +endobj +12 0 obj +(Acknowledgments) +endobj +13 0 obj +<< /S /GoTo /D (chapter*.3) >> +endobj +16 0 obj +(Foreword) +endobj +17 0 obj +<< /S /GoTo /D (section*.6) >> +endobj +20 0 obj +(Preface) +endobj +21 0 obj +<< /S /GoTo /D (id2490676) >> +endobj +24 0 obj +(Contents) +endobj +25 0 obj +<< /S /GoTo /D (section*.12) >> +endobj +28 0 obj +(List of Examples) +endobj +29 0 obj +<< /S /GoTo /D (chapter*.13) >> +endobj +32 0 obj +(List of Figures) +endobj +33 0 obj +<< /S /GoTo /D (chapter*.14) >> +endobj +36 0 obj +(List of Tables) +endobj +37 0 obj +<< /S /GoTo /D (chapter.1) >> +endobj +40 0 obj +(Chapter 1 Networking Primer) +endobj +41 0 obj +<< /S /GoTo /D (section.1.1) >> +endobj +44 0 obj +(1.1 Requirements and Notes) +endobj +45 0 obj +<< /S /GoTo /D (section.1.2) >> +endobj +48 0 obj +(1.2 Introduction) +endobj +49 0 obj +<< /S /GoTo /D (subsection.1.2.1) >> +endobj +52 0 obj +(1.2.1 Assignment Tasks) +endobj +53 0 obj +<< /S /GoTo /D (section.1.3) >> +endobj +56 0 obj +(1.3 Exercises) +endobj +57 0 obj +<< /S /GoTo /D (subsection.1.3.1) >> +endobj +60 0 obj +(1.3.1 Single Machine Broadcast Activity) +endobj +61 0 obj +<< /S /GoTo /D (subsubsection.1.3.1.1) >> +endobj +64 0 obj +(1.3.1.1 Findings) +endobj +65 0 obj +<< /S /GoTo /D (subsection.1.3.2) >> +endobj +68 0 obj +(1.3.2 Second Machine Startup Broadcast Interaction) +endobj +69 0 obj +<< /S /GoTo /D (subsubsection.1.3.2.1) >> +endobj +72 0 obj +(1.3.2.1 Findings) +endobj +73 0 obj +<< /S /GoTo /D (subsection.1.3.3) >> +endobj +76 0 obj +(1.3.3 Simple Windows Client Connection Characteristics) +endobj +77 0 obj +<< /S /GoTo /D (subsubsection.1.3.3.1) >> +endobj +80 0 obj +(1.3.3.1 Findings and Comments) +endobj +81 0 obj +<< /S /GoTo /D (subsection.1.3.4) >> +endobj +84 0 obj +(1.3.4 Windows 200x/XP Client Interaction with Samba-3) +endobj +85 0 obj +<< /S /GoTo /D (subsubsection.1.3.4.1) >> +endobj +88 0 obj +(1.3.4.1 Discussion) +endobj +89 0 obj +<< /S /GoTo /D (subsection.1.3.5) >> +endobj +92 0 obj +(1.3.5 Conclusions to Exercises) +endobj +93 0 obj +<< /S /GoTo /D (section.1.4) >> +endobj +96 0 obj +(1.4 Dissection and Discussion) +endobj +97 0 obj +<< /S /GoTo /D (subsection.1.4.1) >> +endobj +100 0 obj +(1.4.1 Technical Issues) +endobj +101 0 obj +<< /S /GoTo /D (section.1.5) >> +endobj +104 0 obj +(1.5 Questions and Answers) +endobj +105 0 obj +<< /S /GoTo /D (chapter.2) >> +endobj +108 0 obj +(Chapter 2 No Frills Samba Servers) +endobj +109 0 obj +<< /S /GoTo /D (section.2.1) >> +endobj +112 0 obj +(2.1 Introduction) +endobj +113 0 obj +<< /S /GoTo /D (section.2.2) >> +endobj +116 0 obj +(2.2 Assignment Tasks) +endobj +117 0 obj +<< /S /GoTo /D (subsection.2.2.1) >> +endobj +120 0 obj +(2.2.1 Drafting Office) +endobj +121 0 obj +<< /S /GoTo /D (subsubsection.2.2.1.1) >> +endobj +124 0 obj +(2.2.1.1 Dissection and Discussion) +endobj +125 0 obj +<< /S /GoTo /D (subsubsection.2.2.1.2) >> +endobj +128 0 obj +(2.2.1.2 Implementation) +endobj +129 0 obj +<< /S /GoTo /D (subsubsection.2.2.1.3) >> +endobj +132 0 obj +(2.2.1.3 Validation) +endobj +133 0 obj +<< /S /GoTo /D (subsection.2.2.2) >> +endobj +136 0 obj +(2.2.2 Charity Administration Office) +endobj +137 0 obj +<< /S /GoTo /D (subsubsection.2.2.2.1) >> +endobj +140 0 obj +(2.2.2.1 Dissection and Discussion) +endobj +141 0 obj +<< /S /GoTo /D (subsubsection.2.2.2.2) >> +endobj +144 0 obj +(2.2.2.2 Implementation) +endobj +145 0 obj +<< /S /GoTo /D (subsubsection.2.2.2.3) >> +endobj +148 0 obj +(2.2.2.3 Validation) +endobj +149 0 obj +<< /S /GoTo /D (subsection.2.2.3) >> +endobj +152 0 obj +(2.2.3 Accounting Office) +endobj +153 0 obj +<< /S /GoTo /D (subsubsection.2.2.3.1) >> +endobj +156 0 obj +(2.2.3.1 Dissection and Discussion) +endobj +157 0 obj +<< /S /GoTo /D (subsubsection.2.2.3.2) >> +endobj +160 0 obj +(2.2.3.2 Implementation) +endobj +161 0 obj +<< /S /GoTo /D (section.2.3) >> +endobj +164 0 obj +(2.3 Questions and Answers) +endobj +165 0 obj +<< /S /GoTo /D (chapter.3) >> +endobj +168 0 obj +(Chapter 3 Small Office Networking) +endobj +169 0 obj +<< /S /GoTo /D (section.3.1) >> +endobj +172 0 obj +(3.1 Introduction) +endobj +173 0 obj +<< /S /GoTo /D (subsection.3.1.1) >> +endobj +176 0 obj +(3.1.1 Assignment Tasks) +endobj +177 0 obj +<< /S /GoTo /D (section.3.2) >> +endobj +180 0 obj +(3.2 Dissection and Discussion) +endobj +181 0 obj +<< /S /GoTo /D (subsection.3.2.1) >> +endobj +184 0 obj +(3.2.1 Technical Issues) +endobj +185 0 obj +<< /S /GoTo /D (subsection.3.2.2) >> +endobj +188 0 obj +(3.2.2 Political Issues) +endobj +189 0 obj +<< /S /GoTo /D (section.3.3) >> +endobj +192 0 obj +(3.3 Implementation) +endobj +193 0 obj +<< /S /GoTo /D (subsection.3.3.1) >> +endobj +196 0 obj +(3.3.1 Validation) +endobj +197 0 obj +<< /S /GoTo /D (subsection.3.3.2) >> +endobj +200 0 obj +(3.3.2 Notebook Computers: A Special Case) +endobj +201 0 obj +<< /S /GoTo /D (subsection.3.3.3) >> +endobj +204 0 obj +(3.3.3 Key Points Learned) +endobj +205 0 obj +<< /S /GoTo /D (section.3.4) >> +endobj +208 0 obj +(3.4 Questions and Answers) +endobj +209 0 obj +<< /S /GoTo /D (chapter.4) >> +endobj +212 0 obj +(Chapter 4 Secure Office Networking) +endobj +213 0 obj +<< /S /GoTo /D (section.4.1) >> +endobj +216 0 obj +(4.1 Introduction) +endobj +217 0 obj +<< /S /GoTo /D (subsection.4.1.1) >> +endobj +220 0 obj +(4.1.1 Assignment Tasks) +endobj +221 0 obj +<< /S /GoTo /D (section.4.2) >> +endobj +224 0 obj +(4.2 Dissection and Discussion) +endobj +225 0 obj +<< /S /GoTo /D (subsection.4.2.1) >> +endobj +228 0 obj +(4.2.1 Technical Issues) +endobj +229 0 obj +<< /S /GoTo /D (subsubsection.4.2.1.1) >> +endobj +232 0 obj +(4.2.1.1 Hardware Requirements) +endobj +233 0 obj +<< /S /GoTo /D (subsection.4.2.2) >> +endobj +236 0 obj +(4.2.2 Political Issues) +endobj +237 0 obj +<< /S /GoTo /D (section.4.3) >> +endobj +240 0 obj +(4.3 Implementation) +endobj +241 0 obj +<< /S /GoTo /D (subsection.4.3.1) >> +endobj +244 0 obj +(4.3.1 Basic System Configuration) +endobj +245 0 obj +<< /S /GoTo /D (subsection.4.3.2) >> +endobj +248 0 obj +(4.3.2 Samba Configuration) +endobj +249 0 obj +<< /S /GoTo /D (subsection.4.3.3) >> +endobj +252 0 obj +(4.3.3 Configuration of DHCP and DNS Servers) +endobj +253 0 obj +<< /S /GoTo /D (subsection.4.3.4) >> +endobj +256 0 obj +(4.3.4 Printer Configuration) +endobj +257 0 obj +<< /S /GoTo /D (subsection.4.3.5) >> +endobj +260 0 obj +(4.3.5 Process Startup Configuration) +endobj +261 0 obj +<< /S /GoTo /D (subsection.4.3.6) >> +endobj +264 0 obj +(4.3.6 Validation) +endobj +265 0 obj +<< /S /GoTo /D (subsection.4.3.7) >> +endobj +268 0 obj +(4.3.7 Application Share Configuration) +endobj +269 0 obj +<< /S /GoTo /D (subsubsection.4.3.7.1) >> +endobj +272 0 obj +(4.3.7.1 Comments Regarding Software Terms of Use) +endobj +273 0 obj +<< /S /GoTo /D (subsection.4.3.8) >> +endobj +276 0 obj +(4.3.8 Windows Client Configuration) +endobj +277 0 obj +<< /S /GoTo /D (subsection.4.3.9) >> +endobj +280 0 obj +(4.3.9 Key Points Learned) +endobj +281 0 obj +<< /S /GoTo /D (section.4.4) >> +endobj +284 0 obj +(4.4 Questions and Answers) +endobj +285 0 obj +<< /S /GoTo /D (chapter.5) >> +endobj +288 0 obj +(Chapter 5 The 500-User Office) +endobj +289 0 obj +<< /S /GoTo /D (section.5.1) >> +endobj +292 0 obj +(5.1 Introduction) +endobj +293 0 obj +<< /S /GoTo /D (subsection.5.1.1) >> +endobj +296 0 obj +(5.1.1 Assignment Tasks) +endobj +297 0 obj +<< /S /GoTo /D (section.5.2) >> +endobj +300 0 obj +(5.2 Dissection and Discussion) +endobj +301 0 obj +<< /S /GoTo /D (subsection.5.2.1) >> +endobj +304 0 obj +(5.2.1 Technical Issues) +endobj +305 0 obj +<< /S /GoTo /D (subsection.5.2.2) >> +endobj +308 0 obj +(5.2.2 Political Issues) +endobj +309 0 obj +<< /S /GoTo /D (section.5.3) >> +endobj +312 0 obj +(5.3 Implementation) +endobj +313 0 obj +<< /S /GoTo /D (subsection.5.3.1) >> +endobj +316 0 obj +(5.3.1 Installation of DHCP, DNS, and Samba Control Files) +endobj +317 0 obj +<< /S /GoTo /D (subsection.5.3.2) >> +endobj +320 0 obj +(5.3.2 Server Preparation --- All Servers) +endobj +321 0 obj +<< /S /GoTo /D (subsection.5.3.3) >> +endobj +324 0 obj +(5.3.3 Server Specific Preparation) +endobj +325 0 obj +<< /S /GoTo /D (subsubsection.5.3.3.1) >> +endobj +328 0 obj +(5.3.3.1 Configuration for Server: MASSIVE) +endobj +329 0 obj +<< /S /GoTo /D (subsubsection.5.3.3.2) >> +endobj +332 0 obj +(5.3.3.2 Configuration Specific to Domain Member Servers: BLDG1, BLDG2) +endobj +333 0 obj +<< /S /GoTo /D (subsection.5.3.4) >> +endobj +336 0 obj +(5.3.4 Process Startup Configuration) +endobj +337 0 obj +<< /S /GoTo /D (subsection.5.3.5) >> +endobj +340 0 obj +(5.3.5 Windows Client Configuration) +endobj +341 0 obj +<< /S /GoTo /D (subsection.5.3.6) >> +endobj +344 0 obj +(5.3.6 Key Points Learned) +endobj +345 0 obj +<< /S /GoTo /D (section.5.4) >> +endobj +348 0 obj +(5.4 Questions and Answers) +endobj +349 0 obj +<< /S /GoTo /D (chapter.6) >> +endobj +352 0 obj +(Chapter 6 Making Users Happy) +endobj +353 0 obj +<< /S /GoTo /D (section.6.1) >> +endobj +356 0 obj +(6.1 Introduction) +endobj +357 0 obj +<< /S /GoTo /D (subsection.6.1.1) >> +endobj +360 0 obj +(6.1.1 Assignment Tasks) +endobj +361 0 obj +<< /S /GoTo /D (section.6.2) >> +endobj +364 0 obj +(6.2 Dissection and Discussion) +endobj +365 0 obj +<< /S /GoTo /D (subsection.6.2.1) >> +endobj +368 0 obj +(6.2.1 Technical Issues) +endobj +369 0 obj +<< /S /GoTo /D (subsubsection.6.2.1.1) >> +endobj +372 0 obj +(6.2.1.1 Roaming Profile Background) +endobj +373 0 obj +<< /S /GoTo /D (subsubsection.6.2.1.2) >> +endobj +376 0 obj +(6.2.1.2 The Local Group Policy) +endobj +377 0 obj +<< /S /GoTo /D (subsubsection.6.2.1.3) >> +endobj +380 0 obj +(6.2.1.3 Profile Changes) +endobj +381 0 obj +<< /S /GoTo /D (subsubsection.6.2.1.4) >> +endobj +384 0 obj +(6.2.1.4 Using a Network Default User Profile) +endobj +385 0 obj +<< /S /GoTo /D (subsubsection.6.2.1.5) >> +endobj +388 0 obj +(6.2.1.5 Installation of Printer Driver Auto-Download) +endobj +389 0 obj +<< /S /GoTo /D (subsection.6.2.2) >> +endobj +392 0 obj +(6.2.2 Political Issues) +endobj +393 0 obj +<< /S /GoTo /D (subsection.6.2.3) >> +endobj +396 0 obj +(6.2.3 Installation Check-List) +endobj +397 0 obj +<< /S /GoTo /D (section.6.3) >> +endobj +400 0 obj +(6.3 Samba Server Implementation) +endobj +401 0 obj +<< /S /GoTo /D (subsection.6.3.1) >> +endobj +404 0 obj +(6.3.1 OpenLDAP Server Configuration) +endobj +405 0 obj +<< /S /GoTo /D (subsection.6.3.2) >> +endobj +408 0 obj +(6.3.2 PAM and NSS Client Configuration) +endobj +409 0 obj +<< /S /GoTo /D (subsection.6.3.3) >> +endobj +412 0 obj +(6.3.3 Samba-3 PDC Configuration) +endobj +413 0 obj +<< /S /GoTo /D (subsection.6.3.4) >> +endobj +416 0 obj +(6.3.4 Install and Configure Idealx SMB-LDAP Scripts) +endobj +417 0 obj +<< /S /GoTo /D (subsection.6.3.5) >> +endobj +420 0 obj +(6.3.5 LDAP Initialization and Creation of User and Group Accounts) +endobj +421 0 obj +<< /S /GoTo /D (subsection.6.3.6) >> +endobj +424 0 obj +(6.3.6 Printer Configuration) +endobj +425 0 obj +<< /S /GoTo /D (section.6.4) >> +endobj +428 0 obj +(6.4 Samba-3 BDC Configuration) +endobj +429 0 obj +<< /S /GoTo /D (section.6.5) >> +endobj +432 0 obj +(6.5 Miscellaneous Server Preparation Tasks) +endobj +433 0 obj +<< /S /GoTo /D (subsection.6.5.1) >> +endobj +436 0 obj +(6.5.1 Configuring Directory Share Point Roots) +endobj +437 0 obj +<< /S /GoTo /D (subsection.6.5.2) >> +endobj +440 0 obj +(6.5.2 Configuring Profile Directories) +endobj +441 0 obj +<< /S /GoTo /D (subsection.6.5.3) >> +endobj +444 0 obj +(6.5.3 Preparation of Logon Scripts) +endobj +445 0 obj +<< /S /GoTo /D (section.6.6) >> +endobj +448 0 obj +(6.6 Windows Client Configuration) +endobj +449 0 obj +<< /S /GoTo /D (subsection.6.6.1) >> +endobj +452 0 obj +(6.6.1 Configuration of Default Profile with Folder Redirection) +endobj +453 0 obj +<< /S /GoTo /D (subsection.6.6.2) >> +endobj +456 0 obj +(6.6.2 Configuration of MS Outlook to Relocate PST File) +endobj +457 0 obj +<< /S /GoTo /D (subsection.6.6.3) >> +endobj +460 0 obj +(6.6.3 Configure Delete Cached Profiles on Logout) +endobj +461 0 obj +<< /S /GoTo /D (subsection.6.6.4) >> +endobj +464 0 obj +(6.6.4 Uploading Printer Drivers to Samba Servers) +endobj +465 0 obj +<< /S /GoTo /D (subsection.6.6.5) >> +endobj +468 0 obj +(6.6.5 Software Installation) +endobj +469 0 obj +<< /S /GoTo /D (subsection.6.6.6) >> +endobj +472 0 obj +(6.6.6 Roll-out Image Creation) +endobj +473 0 obj +<< /S /GoTo /D (section.6.7) >> +endobj +476 0 obj +(6.7 Key Points Learned) +endobj +477 0 obj +<< /S /GoTo /D (section.6.8) >> +endobj +480 0 obj +(6.8 Questions and Answers) +endobj +481 0 obj +<< /S /GoTo /D (chapter.7) >> +endobj +484 0 obj +(Chapter 7 A Distributed 2000 User Network) +endobj +485 0 obj +<< /S /GoTo /D (section.7.1) >> +endobj +488 0 obj +(7.1 Introduction) +endobj +489 0 obj +<< /S /GoTo /D (subsection.7.1.1) >> +endobj +492 0 obj +(7.1.1 Assignment Tasks) +endobj +493 0 obj +<< /S /GoTo /D (section.7.2) >> +endobj +496 0 obj +(7.2 Dissection and Discussion) +endobj +497 0 obj +<< /S /GoTo /D (subsection.7.2.1) >> +endobj +500 0 obj +(7.2.1 Technical Issues) +endobj +501 0 obj +<< /S /GoTo /D (subsubsection.7.2.1.1) >> +endobj +504 0 obj +(7.2.1.1 User Needs) +endobj +505 0 obj +<< /S /GoTo /D (subsubsection.7.2.1.2) >> +endobj +508 0 obj +(7.2.1.2 The Nature of Windows Networking Protocols) +endobj +509 0 obj +<< /S /GoTo /D (subsubsection.7.2.1.3) >> +endobj +512 0 obj +(7.2.1.3 Identity Management Needs) +endobj +513 0 obj +<< /S /GoTo /D (subsection.7.2.2) >> +endobj +516 0 obj +(7.2.2 Political Issues) +endobj +517 0 obj +<< /S /GoTo /D (section.7.3) >> +endobj +520 0 obj +(7.3 Implementation) +endobj +521 0 obj +<< /S /GoTo /D (subsection.7.3.1) >> +endobj +524 0 obj +(7.3.1 Key Points Learned) +endobj +525 0 obj +<< /S /GoTo /D (section.7.4) >> +endobj +528 0 obj +(7.4 Questions and Answers) +endobj +529 0 obj +<< /S /GoTo /D (chapter.8) >> +endobj +532 0 obj +(Chapter 8 Migrating NT4 Domain to Samba-3) +endobj +533 0 obj +<< /S /GoTo /D (section.8.1) >> +endobj +536 0 obj +(8.1 Introduction) +endobj +537 0 obj +<< /S /GoTo /D (subsection.8.1.1) >> +endobj +540 0 obj +(8.1.1 Assignment Tasks) +endobj +541 0 obj +<< /S /GoTo /D (section.8.2) >> +endobj +544 0 obj +(8.2 Dissection and Discussion) +endobj +545 0 obj +<< /S /GoTo /D (subsection.8.2.1) >> +endobj +548 0 obj +(8.2.1 Technical Issues) +endobj +549 0 obj +<< /S /GoTo /D (subsection.8.2.2) >> +endobj +552 0 obj +(8.2.2 Political Issues) +endobj +553 0 obj +<< /S /GoTo /D (section.8.3) >> +endobj +556 0 obj +(8.3 Implementation) +endobj +557 0 obj +<< /S /GoTo /D (subsection.8.3.1) >> +endobj +560 0 obj +(8.3.1 NT4 Migration Using LDAP Backend) +endobj +561 0 obj +<< /S /GoTo /D (subsection.8.3.2) >> +endobj +564 0 obj +(8.3.2 NT4 Migration Using tdbsam Backend) +endobj +565 0 obj +<< /S /GoTo /D (subsection.8.3.3) >> +endobj +568 0 obj +(8.3.3 Key Points Learned) +endobj +569 0 obj +<< /S /GoTo /D (section.8.4) >> +endobj +572 0 obj +(8.4 Questions and Answers) +endobj +573 0 obj +<< /S /GoTo /D (chapter.9) >> +endobj +576 0 obj +(Chapter 9 Adding UNIX/LINUX Servers and Clients) +endobj +577 0 obj +<< /S /GoTo /D (section.9.1) >> +endobj +580 0 obj +(9.1 Introduction) +endobj +581 0 obj +<< /S /GoTo /D (subsection.9.1.1) >> +endobj +584 0 obj +(9.1.1 Assignment Tasks) +endobj +585 0 obj +<< /S /GoTo /D (section.9.2) >> +endobj +588 0 obj +(9.2 Dissection and Discussion) +endobj +589 0 obj +<< /S /GoTo /D (subsection.9.2.1) >> +endobj +592 0 obj +(9.2.1 Technical Issues) +endobj +593 0 obj +<< /S /GoTo /D (subsection.9.2.2) >> +endobj +596 0 obj +(9.2.2 Political Issues) +endobj +597 0 obj +<< /S /GoTo /D (section.9.3) >> +endobj +600 0 obj +(9.3 Implementation) +endobj +601 0 obj +<< /S /GoTo /D (subsection.9.3.1) >> +endobj +604 0 obj +(9.3.1 Samba Domain with Samba Domain Member Server --- Using LDAP) +endobj +605 0 obj +<< /S /GoTo /D (subsection.9.3.2) >> +endobj +608 0 obj +(9.3.2 NT4/Samba Domain with Samba Domain Member Server --- Using Winbind) +endobj +609 0 obj +<< /S /GoTo /D (subsection.9.3.3) >> +endobj +612 0 obj +(9.3.3 Active Directory Domain with Samba Domain Member Server) +endobj +613 0 obj +<< /S /GoTo /D (subsection.9.3.4) >> +endobj +616 0 obj +(9.3.4 UNIX/Linux Client Domain Member) +endobj +617 0 obj +<< /S /GoTo /D (subsubsection.9.3.4.1) >> +endobj +620 0 obj +(9.3.4.1 NT4 Domain Member) +endobj +621 0 obj +<< /S /GoTo /D (subsubsection.9.3.4.2) >> +endobj +624 0 obj +(9.3.4.2 ADS Domain Member) +endobj +625 0 obj +<< /S /GoTo /D (subsection.9.3.5) >> +endobj +628 0 obj +(9.3.5 Key Points Learned) +endobj +629 0 obj +<< /S /GoTo /D (section.9.4) >> +endobj +632 0 obj +(9.4 Questions and Answers) +endobj +633 0 obj +<< /S /GoTo /D (chapter.10) >> +endobj +636 0 obj +(Chapter 10 Active Directory, Kerberos, and Security) +endobj +637 0 obj +<< /S /GoTo /D (section.10.1) >> +endobj +640 0 obj +(10.1 Introduction) +endobj +641 0 obj +<< /S /GoTo /D (subsection.10.1.1) >> +endobj +644 0 obj +(10.1.1 Assignment Tasks) +endobj +645 0 obj +<< /S /GoTo /D (section.10.2) >> +endobj +648 0 obj +(10.2 Dissection and Discussion) +endobj +649 0 obj +<< /S /GoTo /D (subsection.10.2.1) >> +endobj +652 0 obj +(10.2.1 Technical Issues) +endobj +653 0 obj +<< /S /GoTo /D (subsubsection.10.2.1.1) >> +endobj +656 0 obj +(10.2.1.1 Kerberos Exposed) +endobj +657 0 obj +<< /S /GoTo /D (section.10.3) >> +endobj +660 0 obj +(10.3 Implementation) +endobj +661 0 obj +<< /S /GoTo /D (subsection.10.3.1) >> +endobj +664 0 obj +(10.3.1 Share Access Controls) +endobj +665 0 obj +<< /S /GoTo /D (subsection.10.3.2) >> +endobj +668 0 obj +(10.3.2 Share Definition Controls) +endobj +669 0 obj +<< /S /GoTo /D (subsubsection.10.3.2.1) >> +endobj +672 0 obj +(10.3.2.1 Check-point Controls) +endobj +673 0 obj +<< /S /GoTo /D (subsubsection.10.3.2.2) >> +endobj +676 0 obj +(10.3.2.2 Override Controls) +endobj +677 0 obj +<< /S /GoTo /D (subsection.10.3.3) >> +endobj +680 0 obj +(10.3.3 Share Point Directory and File Permissions) +endobj +681 0 obj +<< /S /GoTo /D (subsection.10.3.4) >> +endobj +684 0 obj +(10.3.4 Managing Windows 200x ACLs) +endobj +685 0 obj +<< /S /GoTo /D (subsubsection.10.3.4.1) >> +endobj +688 0 obj +(10.3.4.1 Using the MMC Computer Management Interface) +endobj +689 0 obj +<< /S /GoTo /D (subsubsection.10.3.4.2) >> +endobj +692 0 obj +(10.3.4.2 Using MS Windows Explorer \(File Manager\)) +endobj +693 0 obj +<< /S /GoTo /D (subsubsection.10.3.4.3) >> +endobj +696 0 obj +(10.3.4.3 Setting Posix ACLs in UNIX/Linux) +endobj +697 0 obj +<< /S /GoTo /D (subsection.10.3.5) >> +endobj +700 0 obj +(10.3.5 Key Points Learned) +endobj +701 0 obj +<< /S /GoTo /D (section.10.4) >> +endobj +704 0 obj +(10.4 Questions and Answers) +endobj +705 0 obj +<< /S /GoTo /D (chapter.11) >> +endobj +708 0 obj +(Chapter 11 Integrating Additional Services) +endobj +709 0 obj +<< /S /GoTo /D (section.11.1) >> +endobj +712 0 obj +(11.1 Introduction) +endobj +713 0 obj +<< /S /GoTo /D (subsection.11.1.1) >> +endobj +716 0 obj +(11.1.1 Assignment Tasks) +endobj +717 0 obj +<< /S /GoTo /D (section.11.2) >> +endobj +720 0 obj +(11.2 Dissection and Discussion) +endobj +721 0 obj +<< /S /GoTo /D (subsection.11.2.1) >> +endobj +724 0 obj +(11.2.1 Technical Issues) +endobj +725 0 obj +<< /S /GoTo /D (subsection.11.2.2) >> +endobj +728 0 obj +(11.2.2 Political Issues) +endobj +729 0 obj +<< /S /GoTo /D (section.11.3) >> +endobj +732 0 obj +(11.3 Implementation) +endobj +733 0 obj +<< /S /GoTo /D (subsection.11.3.1) >> +endobj +736 0 obj +(11.3.1 Removal of Pre-existing Conflicting RPMs) +endobj +737 0 obj +<< /S /GoTo /D (subsection.11.3.2) >> +endobj +740 0 obj +(11.3.2 Kerberos Configuration) +endobj +741 0 obj +<< /S /GoTo /D (subsubsection.11.3.2.1) >> +endobj +744 0 obj +(11.3.2.1 Samba Configuration) +endobj +745 0 obj +<< /S /GoTo /D (subsubsection.11.3.2.2) >> +endobj +748 0 obj +(11.3.2.2 NSS Configuration) +endobj +749 0 obj +<< /S /GoTo /D (subsubsection.11.3.2.3) >> +endobj +752 0 obj +(11.3.2.3 Squid Configuration) +endobj +753 0 obj +<< /S /GoTo /D (subsection.11.3.3) >> +endobj +756 0 obj +(11.3.3 Configuration) +endobj +757 0 obj +<< /S /GoTo /D (subsection.11.3.4) >> +endobj +760 0 obj +(11.3.4 Key Points Learned) +endobj +761 0 obj +<< /S /GoTo /D (section.11.4) >> +endobj +764 0 obj +(11.4 Questions and Answers) +endobj +765 0 obj +<< /S /GoTo /D (chapter.12) >> +endobj +768 0 obj +(Chapter 12 Performance, Reliability, and Availability) +endobj +769 0 obj +<< /S /GoTo /D (section.12.1) >> +endobj +772 0 obj +(12.1 Introduction) +endobj +773 0 obj +<< /S /GoTo /D (section.12.2) >> +endobj +776 0 obj +(12.2 Dissection and Discussion) +endobj +777 0 obj +<< /S /GoTo /D (section.12.3) >> +endobj +780 0 obj +(12.3 Guidelines for Reliable Samba Operation) +endobj +781 0 obj +<< /S /GoTo /D (subsection.12.3.1) >> +endobj +784 0 obj +(12.3.1 Name Resolution) +endobj +785 0 obj +<< /S /GoTo /D (subsubsection.12.3.1.1) >> +endobj +788 0 obj +(12.3.1.1 Bad Hostnames) +endobj +789 0 obj +<< /S /GoTo /D (subsubsection.12.3.1.2) >> +endobj +792 0 obj +(12.3.1.2 Routed Networks) +endobj +793 0 obj +<< /S /GoTo /D (subsubsection.12.3.1.3) >> +endobj +796 0 obj +(12.3.1.3 Network Collisions) +endobj +797 0 obj +<< /S /GoTo /D (subsection.12.3.2) >> +endobj +800 0 obj +(12.3.2 Samba Configuration) +endobj +801 0 obj +<< /S /GoTo /D (subsection.12.3.3) >> +endobj +804 0 obj +(12.3.3 Use and Location of BDCs) +endobj +805 0 obj +<< /S /GoTo /D (subsection.12.3.4) >> +endobj +808 0 obj +(12.3.4 Use One Consistent Version of MS Windows Client) +endobj +809 0 obj +<< /S /GoTo /D (subsection.12.3.5) >> +endobj +812 0 obj +(12.3.5 For Scalability, Use SAN Based Storage on Samba Servers) +endobj +813 0 obj +<< /S /GoTo /D (subsection.12.3.6) >> +endobj +816 0 obj +(12.3.6 Distribute Network Load with MSDFS) +endobj +817 0 obj +<< /S /GoTo /D (subsection.12.3.7) >> +endobj +820 0 obj +(12.3.7 Replicate Data to Conserve Peak-Demand Wide-Area Bandwidth) +endobj +821 0 obj +<< /S /GoTo /D (subsection.12.3.8) >> +endobj +824 0 obj +(12.3.8 Hardware Problems) +endobj +825 0 obj +<< /S /GoTo /D (subsection.12.3.9) >> +endobj +828 0 obj +(12.3.9 Key Points Learned) +endobj +829 0 obj +<< /S /GoTo /D (appendix.A) >> +endobj +832 0 obj +(Chapter A Appendix: A Collection of Useful Tid-bits) +endobj +833 0 obj +<< /S /GoTo /D (section.A.1) >> +endobj +836 0 obj +(A.1 Joining a Domain: Windows 200x/XP Professional) +endobj +837 0 obj +<< /S /GoTo /D (section.A.2) >> +endobj +840 0 obj +(A.2 Samba System File Location) +endobj +841 0 obj +<< /S /GoTo /D (section.A.3) >> +endobj +844 0 obj +(A.3 Starting Samba) +endobj +845 0 obj +<< /S /GoTo /D (section.A.4) >> +endobj +848 0 obj +(A.4 DNS Configuration Files) +endobj +849 0 obj +<< /S /GoTo /D (subsection.A.4.1) >> +endobj +852 0 obj +(A.4.1 The Forward Zone File for the Loopback Adaptor) +endobj +853 0 obj +<< /S /GoTo /D (subsection.A.4.2) >> +endobj +856 0 obj +(A.4.2 The Reverse Zone File for the Loopback Adaptor) +endobj +857 0 obj +<< /S /GoTo /D (subsection.A.4.3) >> +endobj +860 0 obj +(A.4.3 DNS Root Server Hint File) +endobj +861 0 obj +<< /S /GoTo /D (section.A.5) >> +endobj +864 0 obj +(A.5 Alternative LDAP Database Initialization) +endobj +865 0 obj +<< /S /GoTo /D (subsection.A.5.1) >> +endobj +868 0 obj +(A.5.1 Initialization of the LDAP Database) +endobj +869 0 obj +<< /S /GoTo /D (section.A.6) >> +endobj +872 0 obj +(A.6 The LDAP Account Manager) +endobj +873 0 obj +<< /S /GoTo /D (section.A.7) >> +endobj +876 0 obj +(A.7 Effect of Setting File and Directory SUID/SGID Permissions Explained) +endobj +877 0 obj +<< /S /GoTo /D (section.A.8) >> +endobj +880 0 obj +(A.8 Shared Data Integrity) +endobj +881 0 obj +<< /S /GoTo /D (subsection.A.8.1) >> +endobj +884 0 obj +(A.8.1 Microsoft Access) +endobj +885 0 obj +<< /S /GoTo /D (subsection.A.8.2) >> +endobj +888 0 obj +(A.8.2 Act! Database Sharing) +endobj +889 0 obj +<< /S /GoTo /D (subsection.A.8.3) >> +endobj +892 0 obj +(A.8.3 Opportunistic Locking Controls) +endobj +893 0 obj +<< /S /GoTo /D (appendix.B) >> +endobj +896 0 obj +(Chapter B The GNU General Public License) +endobj +897 0 obj +<< /S /GoTo /D (section*.27) >> +endobj +900 0 obj +(Glossary) +endobj +901 0 obj +<< /S /GoTo /D (appendix*.28) >> +endobj +904 0 obj +(Glossary) +endobj +905 0 obj +<< /S /GoTo /D (appendix*.28) >> +endobj +907 0 obj +(SUBJECT INDEX) +endobj +908 0 obj +<< /S /GoTo /D (appendix*.28) >> +endobj +910 0 obj +(Index) +endobj +911 0 obj +<< /S /GoTo /D [912 0 R /Fit ] >> +endobj +914 0 obj << +/Length 313 +/Filter /FlateDecode +>> +stream +xڍQMO0 Wbj턴tlҺU]'%E痗E 5 +#~Ttp(( +F;Nt'm L塪}$4y5Zl:k$5/Or&n.\[By)QøЗ͒E h&ǩ]{= y-~nSRJ I&𐉫sDI0Fs 19Cs[Msi:Y\BrrlJϮ4Om%Bjo=NjI Wo&6k.> endobj +915 0 obj << +/D [912 0 R /XYZ 54 639 null] +>> endobj +916 0 obj << +/D [912 0 R /XYZ 54 621 null] +>> endobj +913 0 obj << +/Font << /F28 919 0 R /F29 922 0 R /F30 925 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +929 0 obj << +/Length 105 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T Hc515PЅr +wPԳ43VIghg`lkd$-dlk Zc=#,ߖ"endstream +endobj +928 0 obj << +/Type /Page +/Contents 929 0 R +/Resources 927 0 R +/MediaBox [0 0 504 666] +/Parent 926 0 R +>> endobj +930 0 obj << +/D [928 0 R /XYZ 54 639 null] +>> endobj +927 0 obj << +/Font << /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +936 0 obj << +/Length 175 +/Filter /FlateDecode +>> +stream +xm +0{lIf +^(xMeaXf`ctCo/=ޒs"5g-bs]a;PblrY7]\zƅ=!lZ|4`Vǥc򭬃~ItXgd'sL=j1|o_@Nendstream +endobj +935 0 obj << +/Type /Page +/Contents 936 0 R +/Resources 934 0 R +/MediaBox [0 0 504 666] +/Parent 926 0 R +>> endobj +937 0 obj << +/D [935 0 R /XYZ 54 639 null] +>> endobj +934 0 obj << +/Font << /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +940 0 obj << +/Length 166 +/Filter /FlateDecode +>> +stream +xm1 @ v]UPx[E,ؖbB1c18sWG%W)M +0]z%^^Y*ئF' aq7Sw 9!7ܖ;c:z_>Jendstream +endobj +939 0 obj << +/Type /Page +/Contents 940 0 R +/Resources 938 0 R +/MediaBox [0 0 504 666] +/Parent 926 0 R +>> endobj +941 0 obj << +/D [939 0 R /XYZ 54 639 null] +>> endobj +938 0 obj << +/Font << /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +944 0 obj << +/Length 1772 +/Filter /FlateDecode +>> +stream +xڝXYoF~ׯPHbH.Ͼ9sX[$yXň]7Kɖ\;L} q4MT>]4zO7`Tz1&<$@3՟D~{*Ϧ;^fRx_On&B|,f,Is/OYɋA2 #/%%^\tgsqT;s^յ@Wn|%̴ ulJ7' +-Y%iW; Yn9W8vtG@wn:-kAKYUiqpZCv CE̼ۖܪz=8ˍP,[@($/8<ت|roJ&Ĺ YTȍn8pLAtfgAqo0qnМ)p\.΍CVVo(/N 3aZnvI'`y9$_1dYaK]KZWf)bIA`b?/M鹳H D߹t/1J;g)!wZ)%!jQ;Ul ^`XmQ\%D}crYe-eE'. + r~=BaMﱽK%\>)59୹X)ɂ^N s4뉮Uk~q骰x/Β3`[S*R Bj(0:0h1GnX /t,J^gX;h⃄}@R=V*nQ5b?sޚ*T|Mu#Q;U IS`tB6mkذg ]͏rA&ӷ(QK2 ].!Ղ;^bi w8MY4?J|'{@VRs3 +5m-cz̩QIQzxFqȉ1 T>1VVQ wc3^W%9ة#z&)E3MI<㫐[ec tncJlYiNڦ$m͞΍!( xRɜU[9O~4 +fv +#'u>&[nim%aEt"\{2}ͭ\QЫ8yt6pII*?s;[᧶ʼnib]xLļ^m_`YuPOUO +8arpwC 3\0G[,o7۝PjDM#g$?Ma`j/$ bDQendstream +endobj +943 0 obj << +/Type /Page +/Contents 944 0 R +/Resources 942 0 R +/MediaBox [0 0 504 666] +/Parent 926 0 R +>> endobj +945 0 obj << +/D [943 0 R /XYZ 54 639 null] +>> endobj +6 0 obj << +/D [943 0 R /XYZ 54 551.184 null] +>> endobj +10 0 obj << +/D [943 0 R /XYZ 54 551.184 null] +>> endobj +949 0 obj << +/D [943 0 R /XYZ 54 551.184 null] +>> endobj +942 0 obj << +/Font << /F16 948 0 R /F8 933 0 R /F52 952 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +955 0 obj << +/Length 2003 +/Filter /FlateDecode +>> +stream +xڝnF]_G +^od&^;ڙIh-M +,f]]w#U6jmf|X0ib, uf +K`yKG(3q~r;v8v4u̗b2j"36H^r'QV +:h,q r՚*(ηGr <j?#nJnQF7.IH}g[HFE4+<-+i=̀j̍=wp0昕 QR3!8+V@wJ-gj/ +asYfp=Ҿى4ơ +D,4W%%鯏Qv'13+Xyge'3E?NɓbypBV"R{ +a8kP`&GRAYLhE )!>SItpE;x[* +XJa(b(@w-狈P$ fo0oFd{E-xR}'[NH?nIPHzI/8zwJ9<{ % b?˭^{jU[\9P3!*! pQGT3&1S;FgHVBmP(;:etzLwP^ )z h cO 0؇5}zƊ%xuɲ/DO*t+zQE0_1hJLф`FBVx$SOimilȽ_ F>HGvqHU7>Lio4CY۲8%7´\:&=S&0o<0 g_6@9{p)ddzB3ˊ h>>'Uݠ+.x8/!ѶL{xV?Xw2MvWd(ZK8-5'y6A#+?e:n3ݥvi0C>irC4C + %=|U)U0\ AC7]G(.?FcӔPOgdO%QoO#:N;.S_Gд*/;t`R8w^q_=?wf'J;N{ ;Z;@+V-GZVlAi u 19y'~􃚺87K}IrDٷx=6=^V\tUg-"}YnTQ>v|+?t^J1+Nx^70@ +ѵUBy(\u_<0ы".@{rR[!ߺaXT{Ӏ5mWW9w\CZ4;NՏMu[O^Jp&"r*NE:_VS~xҧ]JZ?g f$ +eѴ_i$l9#Hp{D>/Ъ1m3QWU|B- 5EsX-tK.7lG:)d8HcOʒZ6"</k!)0qBNr4 iqŘ_K=?!Г,ib@ovOȞxxM{q[Y3'ZdF3R#貭qU] +ziͳ4L.-Gy$T?aяk*z#OEQendstream +endobj +954 0 obj << +/Type /Page +/Contents 955 0 R +/Resources 953 0 R +/MediaBox [0 0 504 666] +/Parent 926 0 R +>> endobj +956 0 obj << +/D [954 0 R /XYZ 54 639 null] +>> endobj +14 0 obj << +/D [954 0 R /XYZ 54 551.184 null] +>> endobj +957 0 obj << +/D [954 0 R /XYZ 54 551.184 null] +>> endobj +953 0 obj << +/Font << /F16 948 0 R /F52 952 0 R /F8 933 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +960 0 obj << +/Length 2827 +/Filter /FlateDecode +>> +stream +xڥ]oݿB/Q|$mC6.RzkPC8KRCpvvgmB6IIu)W dG)ԾH"˳}7?=mw:͂]_௧-B~*f?#77I`! }5IFJris7oT#Y/̟ ?N9vq Z~2 + %pCC&sP髎˾TڦgPgT{j&v4gd EwC D# c?hwMhC=pg:^X–]P +fqHLԎt +Pzd|X \3{Ohqy ( ?u"tH:DDZ6{k[W0V_NmH"#zT{X[F @rTTT#q p0[iwQō פ^L2ֈM5 ^dr;G vqYRet3:U3x@ SU$DrZAebnym+`Es@F~_B7x.$AҀ)^*L$ЦqbB0rV5\"_܏)|:SβtlrYA`4?%p4R^@)dšî-Y7s`v+q v>h;iN6cWB@}uN> LߒbjF0g)c~ &gKUMU`P.zқ #Ӧ;CJtj +#Yp݌9#?σJnMW5\Ib…A|*[w(f{,Q +uTd!Z7LdRT!3KX =q\PC=+@#> %kEX[oB@#B 0Rt\3\gk^( ƒ8Q„b,41 4*6x|alW>"J 6mHζk=OĮ,Pag[tq5Њʖǎ߼1| sbG߫>_ha\)-$$R<ąRTG 'D`! xvu$E*@ol1M],>\8sKwt5iXGrȤnln[f!U˰h2eS4EWFNGcwC8Uɖu4'fJyuvVqcHy>3 +%S,ŵ/ +HI=G g Ê' L 4ҢHqd*y @țNfIj—7{V 8(NP2p&lOb|ypښYlT=+QLj5B9Ԯ ZZYuO?DvBԲo/+~tKzaԟg>|eKz)Xq `S /(epoh$h%*!zXjaNC"]40Hy7ν1F{΢/f-.dż)4B{ :?Y)dwW*"Yd7\r/]唦2foBba8$|:~lk|7:?"n1ӛr0_=ӕ>cM/ .*v.H+Ux.I:PH:~aG\(tuXϼoqn{rg4P47/͝H:nd `hd=-p>HSbXu Ks.jKDSRFc9f000$X}::Ү=[qQ3ǁd5_|S*acT6e@({L៟iuHikSɒ'ięv?<k*Q/?QZ$hpwmaV$~rjbmOê:>*}798 /nendstream +endobj +959 0 obj << +/Type /Page +/Contents 960 0 R +/Resources 958 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +961 0 obj << +/D [959 0 R /XYZ 54 639 null] +>> endobj +962 0 obj << +/D [959 0 R /XYZ 54 550.894 null] +>> endobj +963 0 obj << +/D [959 0 R /XYZ 54 550.894 null] +>> endobj +964 0 obj << +/D [959 0 R /XYZ 54 522.431 null] +>> endobj +965 0 obj << +/D [959 0 R /XYZ 54 522.431 null] +>> endobj +958 0 obj << +/Font << /F16 948 0 R /F8 933 0 R /F52 952 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +969 0 obj << +/Length 1771 +/Filter /FlateDecode +>> +stream +xuXnF}WO!%(>&MR8 Vi"%E%i+.3lٹ0<R&pUIzՀ3RN:V߀$9Bi{ɟDC jLGz<%@j9QÔe!t}κLcaG(1VG*|{!Õn('u|~0:C9;b`/iNg l\0z$cفP,NbX ]_d8q8*YBC NXP݉^l c -D@PPy,IUZ䗜`{T #i qЖl{.7!"I\$F׵x6r8RIԿ=JЊNJՅ7 ԙԢS,k8֓xjڒMeD ]/E<^I]۞ ^4,[ +/(ᖿRޕYmN*>"EUp.@pIfj-U..U8]_%f!=9&գ?ucG?*RF.DhOy"yXf +~UJ\.Q؈ +)5 DQSZ^V2Ň/ - ګKEӵ +XnF%T暘K\e/l{BP&Sз/Ic7КU _2D?Sp;.yF;(ui!}6G93eAV2dq2[ne{suOuL6Qw +(TTd/i"t=M\Tik,M3ãRomhtdmɧC\ +mt=z{u*9L_HrEktsgJ/"~7ng\E+VxhIaFڕB{z^PЁP<* i7$Firu'q^ݞ59֫3^+ zݙ!ԛ%F(70"z2SZ'-$:?6]}e4S3Fba/c,.J[Em$ԛuP~O]ѥh0Iy80LdvCGXM|A ۨfC`I'\9X2rSd((K5yӝ|,9O+fɠvt s(9ӕ\,d4V>_pH_%Hާ^_[v)ٮ1|0@ 4!v.b$endstream +endobj +968 0 obj << +/Type /Page +/Contents 969 0 R +/Resources 967 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +970 0 obj << +/D [968 0 R /XYZ 54 639 null] +>> endobj +18 0 obj << +/D [968 0 R /XYZ 54 436.345 null] +>> endobj +974 0 obj << +/D [968 0 R /XYZ 54 436.345 null] +>> endobj +967 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F52 952 0 R /F16 948 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +977 0 obj << +/Length 3029 +/Filter /FlateDecode +>> +stream +xڝrF]_ڗU"xڲe{T|Zv+@k!lJo E/ҨX)lp'Q[_GExbq!,4o{Dug?Jb]dDWt [߼/y "^/{WH#<D: ":IeyO0qSc72mwq!6o eU'2쁝*eQ76=fXOxkam'oX@`]$ RwB-g-0(#9<` ^*"F'4j{^5{Am+V7G"A{$q}-x{%Wr3 +"|{KZ^02;-rJO̗Q,EnYFcqHHFEz 'z$Br9?ȝ$fv5 Zdk33ADGU<.Cղt)DbWߌ6j A,uӅ_%I~ 4o*[ox_ՙR6fkj#R~6ѬL6 H_&@yDL( A1-z$XYL[d-#^poɐr;П#Hr"U=qe~}p6luoQMX/GW!Fw+Vs Y# ^cg=0Q/n^`(M7rʌސU5V]# +gyz|ZET- j +G`DnX'J@( RDK/H~M3!s Ϲݐ{9J⠠:qL4b˼n\s/ wAAZQ#(;׊cg!u >7/GjDseGqH7=pD.Wr a؅˅I0FcgA#u=3LoGaa3[};n|_| 83(P| KQ PqsZ  ic:fd66Mv#pbL*5w_^}UQҶU L0"BJ]-O)d8DaIuv j=#`i13, %Qpl hC&P(V1w2y֩R/> 9Q= ,x*J[_sD8->FJi^JP + |l깗;4D䈍[׮[kt}bN0NVF2ڊxR$wA ,[BMc}4x `վ&)I]GڪSTVRcT?[L+Ag6=)] {cPk6{=>La-~,@$7;Z6P&:Dž)&@g/Is{^xCP%ѪbIg Иt4[{i<״RvB:iN 4]e+&RdzdY29,1Xb$2f,uJ?-PdNwQc!k=mY8/x𱯇jѕ#3{mLrr΅Q!J|=w2ϖ4Չts}l/h a.~Dr}[5?E_yL=ИH"< x-O9g +ѲG0x:T6p;R%#O!i$ {?]3۩(ɧ#q#L| 2?͚?!"k l 1u +{Cm}uP$NS0 +5gyI̱6z!Xu1V2Fe6!΢ 2S.&AA|(齎(3bnj-XڏqꮅzyJ4C63t8 aN:(תSTޱ|-MOnװ{Ŭ*I8JLfp 'ȝbVH2Ҹ,YQ(H!6Bm +{ȍč2۫TMu!]\j^=NM7VU_Β +xsO?uNb8f,c3NO7Ѥp q~x8JY 0=S/BVpxӫ(B<>k֨Id*tʌ >YG}@hfrXB=P02_}IiL)E]duay1[ Y{P;4P.~"kBh?fDPwûfx6j"zQԋ-I؜[jQ%%~GOڐéHͻw/h~Ǐvdq쯳,XD:Y%8Kendstream +endobj +976 0 obj << +/Type /Page +/Contents 977 0 R +/Resources 975 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +978 0 obj << +/D [976 0 R /XYZ 54 639 null] +>> endobj +979 0 obj << +/D [976 0 R /XYZ 54 549.642 null] +>> endobj +980 0 obj << +/D [976 0 R /XYZ 54 549.642 null] +>> endobj +981 0 obj << +/D [976 0 R /XYZ 54 141.207 null] +>> endobj +982 0 obj << +/D [976 0 R /XYZ 54 141.207 null] +>> endobj +975 0 obj << +/Font << /F16 948 0 R /F8 933 0 R /F52 952 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +985 0 obj << +/Length 3300 +/Filter /FlateDecode +>> +stream +xڍZY~_GjŐӮ8e{卵*!jƿ>}$+5q4>nL /$&UŦlzedC;EŦTm,$6կO0#0#*M8J8uipwn < M~`S#_b>"v៎b q\">C3<vũE(7}Әr ކ^߽k2NB[iy!R LaEY{ i7 v +s9HYfomy+铇"2Q*w8٩BRHHzq@ņPvDD0Is~K . Fs۟;<1uwBLWhN.QBQ̀y. #iDl#? ;B d\ؓLyEZWpa l((<}:a{]&G`,>;uCi>[3 "4*k 4Ts:hAI(1-01h&){<}wk=J\de"yp\i~1 D@kW4W+,s3|j +Nt"m‰1;*V? +O: +WM'1;.7?DiXx"3C PM.>  =?͒+Yl5 ҼPHf.fAB0ѝ#YH9";rhܭ߱gRppĵ^d}f QGr:C?{ E{;|# +,ɹwh߳E\ˍMעp|qzl{HR,Fi8a٪E1\%Lx[m&Cb `iH +&&39WWdnoplI"OD] ^x;هd-vZ(U)*3 _h!Z +;;\wݽäyKI vaX72d,}Q2= `H{SaV-ܢL>]W#JVIhlq+&;EFa@haӎ]g{ `w|EDa(N2tؼ +1zw+`Љy`SW@Rct:ꄣ8ƦAo{n ?q;\,qx xG9( =”g`^TVxfBpjZﭯ8Շ`Ay$|Q2p+dsBV2ec}#z݁@%T1 +dJ:ᅳ9:K9&{10,q%}' Z!-Yz8p115J *F^Q8\Ռ6?>7K|8J"euv+3s`>RI/DT"V{e(8)n5J67 Z};I)[ZŅ1XٷX4X@ S3 {Vw;4.jn4hd\. <7x+eԒqr,Zfs9ˊًwYjT ^"nNUiӕf 1{G dmmu/gX1jg)O˥])@O{ HJ%{_CpN{R];w-* /L—%=*|%!? %ӲC7ZVـo0w̸{ N{WL4#Ka[8'BX@Xp3|^Aѡ݌_ +2- 8 _U`AK`=7ݽ XXťSϿ5J.Bog Ѯʓ%ďj~b,,g#OBj_"RAPɎ;kdR?|kFS +mvyACOIY9/dmAPi>62-ۓt `hߘ6]TNf]*V{akafGs^{r1*\gz,".%ܣQUE_2ca^{klN+ +$Fғu^dؖ`0K+c?LrA{-p'=T`e(I.S7nK1o?ʏOf9?>|endstream +endobj +984 0 obj << +/Type /Page +/Contents 985 0 R +/Resources 983 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +986 0 obj << +/D [984 0 R /XYZ 54 639 null] +>> endobj +987 0 obj << +/D [984 0 R /XYZ 54 493.165 null] +>> endobj +988 0 obj << +/D [984 0 R /XYZ 54 493.165 null] +>> endobj +989 0 obj << +/D [984 0 R /XYZ 54 316.161 null] +>> endobj +990 0 obj << +/D [984 0 R /XYZ 54 316.161 null] +>> endobj +983 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F52 952 0 R /F16 948 0 R /F53 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +996 0 obj << +/Length 3512 +/Filter /FlateDecode +>> +stream +xڵZKsWfʄeʮH=8> IB.|5i}pJU`= M6i\lM9AnBiANzwQ"M7w4LE~g/}y_)_< nO.B~̧_ 6GO7ʁŦT?\R$0$4r,i6yy-B;W; ,f>I +D_D4ow* uBo:=[uj)n4W?ǎv,a푫!zh[8qY1>@fgAbfe{icյ/|=MpvEm9_I$gwmïAݡ z$7<ʾ"vr=ˊ{z_ɠQtZ.̫Q>rG_8MSir$瞄9~DZW>BԏX +sDi_t|GhєR?idS6(N0k1[Lw#E=͟MSʋL kٸ&E3XT.v5yE6L-7^v_ (OS_+tCSQ+͉{VJݟ}j^Abʔw%.b,u`.;ä/;Rh4ۂlhT1F]swd'M[OW.]@Z%~nG8pNtӟe bV# r5w.PBWa燲>*"SfVw)h"X$x\h' >r=2!`-z# .w;͈f =t2PqkQ߰q +s-汌+d%)ЩxB@P|N3+:3U&YNAZه < 7X뚷5 ^Bm e uBۙc3BoZvW$@9*bwS93MAx6Fٳu2\ƹYB:;3GlbJ6\-# ās;Ƚv-B|˰R!Ni^P%57PxYCJw;ˎD"bA*.7 +5 !P +$﻾LǰQsӕC]Mdף %j!Dg3dq>yqgjC}|`vKjfE9%fsx LzvHDĄYh81^cTCzNTApAf}E +7S׆Aݭn:쵼M{ J*^% + +Z?֐NJ`@XzPz:>XVrӱ=i!F\#ܣU@UbD#9l0oӤ9*vF9"[ާ8\{Q8è'#>h +s^w 4L}x">*_B?bI +΋ε Ƹї%5ۥkrMTd~{6sprPM,?O#;  [V$~WW.W9GZf}'Hr~ aL*XFjbgC_Dg^.%(hTg~Z7MW8*|ƒƈ_8bϣ"v4⠘.3{'4:"a8#]A6bY t%W@) x{!Q^9:PٛC,=yR#~8bIGZsKhRX&QV16û*.xu (dGID v4yю˗լ-V[#gɎTzQQ3[%_6s~}*ͦPj8޾/g s^3qaZlDIGx>s?tiT!mRA`+%K]KcC0* +f78T҃ti 0mqYŎk$nӷ /L*?QX㹁Cw?!?n^ CIJu?VB /Z+'Ző`O-``y57><о [7%%xf蘇Yrc_8Q&G bnbm(3:v~7}} Ӕֲ9,%X(gR=p-@>{@n3 %5PX k-ڬX(հF78?oe~^EߩK+=,ew +:K9^-ҁz#L#@02-ߪrm_ywqh)dq´ uAG=H~3myi5SCajg?TG)PMV#G9a&<ıe/䐚Vȴ +A I#!3E0}:7b†)\)X~,ka2*)\{AҊ%it5ö / FO8沲F+ZPpP~ӟd G ѫiȩZRZ_JBƳ$mkXA?OiIRGK>V2O'!!k7]wSp^i2Hܭf,wg93A9;lsz89@8P cgYJ_EK~}u~PєV&2#PQ[4]/}&h6Hh 5f?!C3ht|grpFtԞ䵛)*L*)6% .Ώ$4$A}vXuމ!_WX +DZ:nJr[|s ) +Jzc 凙غL6VRZb'5%~T̎ +1cPt-%-u~hW=ν hM|WdFp\3=@H ֤F1TO%X>a2Eb~tbތk` s_- }2&@BH;2a +ho&p{A~6endstream +endobj +995 0 obj << +/Type /Page +/Contents 996 0 R +/Resources 994 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +997 0 obj << +/D [995 0 R /XYZ 54 639 null] +>> endobj +998 0 obj << +/D [995 0 R /XYZ 54 600.798 null] +>> endobj +999 0 obj << +/D [995 0 R /XYZ 54 600.798 null] +>> endobj +994 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F16 948 0 R /F8 933 0 R /F52 952 0 R /F14 1002 0 R /F53 993 0 R /F54 1005 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1008 0 obj << +/Length 3601 +/Filter /FlateDecode +>> +stream +xڭZݏ߿b8O!^^64%$;_h[)MCr>~36m檺7zed Ck͟TUXI1iTi⧡yuT7޻Eh2̣xoD& +UU>A; +㪺=ܨ*v{jyiowQQqq)Ќ`i`a ju3g W2N*)'"¡R.ligO©wL`5^[' 䃽g23WwmR?O{=V|1PUTB=LC+d?Zr:/.9 +'=.g` Z؀muړIx$Ұ:<̑/p㻚q#pUOm;vf + SjV}dbvٟlQ_U\Hp,KfJޯ +;,΢晞#Mceq*uXa`&{fE^ +Rjsx0*bxLtSŨ#x,uOx:zeVgnF}ڳJ(D.IT?Q<- dlƚ)6bFN+VwG<Ԟ0a-DBg@`,UE87hƅ􏖡/,G#I"-7b0SpW]xtE^E P}ֽGmh^/{ӑŀǎ{ +̃,uH9[D]kҾsm "C"I!ă45ELd'5NƆZta nQ<Կ?UYE?=%i_Ÿ Yq瑎 Z^DyBr%;pY|&.^]&H&f7DAp0-m=z-~ NH3{` ?#?Ans@J*)Q,#n0 ӍwH(KI$9.;]6dCG*,7Nq)9]hgI<3j"+Ą4;c05AĂ"jgaON"?]h<Й&< +-M1ePxMOh3t/Xp׶`w#3ϵUj8(̊|IYΩYYyqasIY9l.||'eqϟ1'|bzb*H@v\h${yEдPUuUH'{n4qIT~NC̝d@O|TT+'x;Y1L|s2| +49Pqs8S-J>ꐩS`,Q<޷-M y"3'33NMB|lcF}' KʰSCxu,H|C8Cb☏'W` +(ll[w*Np &Vl[1{pH+Dl8OOZl>ύ~ '1|U,;π{MeX+W yBUXrji?ɬN5 4*T\9Hq +GIVεK4pQ*^@LRT1Z*èˮ~*_v : -Tjߴg8 nPMGK2-kJ:;4 ;0C?4 _RGww9A5Xy4Yv?C?zYV)Ϝypg#O_ פǯ΃0<{R1']4$bqnr:I oKO +3bqIɩڗsRZf,x, i/۲*DB*ഥg aWϷ$K Ұ}8 <|ECRIEu{=o |j{>5w?LL u;]LM_fNZ.نN~19z7x +Џڴendstream +endobj +1007 0 obj << +/Type /Page +/Contents 1008 0 R +/Resources 1006 0 R +/MediaBox [0 0 504 666] +/Parent 966 0 R +>> endobj +1009 0 obj << +/D [1007 0 R /XYZ 54 639 null] +>> endobj +1006 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F52 952 0 R /F53 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1012 0 obj << +/Length 3626 +/Filter /FlateDecode +>> +stream +xڭZm۸e V$Qmޥ]K r}-VWI7Rݢ@ KCrg IHUnzq +V2pE.4-$wկNoˍ^~#ҩ< K]/WW#VDA}`QC?*?,F7kp*_Ј2b*Ma2lۑ9a2ӠQnRye'w_~(:σx8 +`RER)/)*b?ӅL +C3#|"G`y\(t/k??=;9=J^yP`)YvEvkq@f(,*rݟx\v"{MKi_bq /Wqzv{fJ28Uf͡t{_Dѽ6hv DTF17ѩ"f. +UlPâ*ANjAþ3=3CgܴgBRBMFwgeBuZXLWoU; u+,fӬw5rϜfk$AM9 QzrQ@ej tLߔVS= +2_Ü,dWwB~9rCp5lM~žpA -y#޴B{Kct_LMIPcpo=dIa(w?'_vDDU-iޣV[u%y:)Y0|k[G~;T +6|q:C/x'YDCwQ˃6XG 9LHڥY]}0lmArN< ćm&V` bսܟɆ-Z 4ή)v2I4Fd?$$z ٿ ©[bf:)03`'7PLat =SFRhפZC(b>oXi}X^kڔ'y㩂ƻsgm>kdtF5EEҽQ45B"i Rta`SY6mgG+ݟ@̓%)wf%U)CK=WZi_k} f'ك hHrt ;$ܴGV4~ wNMx_0Aq50iLw]9-ł.[F9~rh1uR"@XΞ̄plUl"$/ҲHRi&0ZT$ljx~b`mj s=Pg[bN 1clM- *YYb.Q:+  (n rf “#b_ Ca9Nhi{q$ a؂-/6~S8W \"HG`i5{c%WvtS̶4zEP3D0$q TDzQ RHU6}SgTC6|fw]sڨ h0o[4&.؈ou #%q6u TZe$4^q͠2FI1{*_ޡSѾ67㑏|}Ɣ_$k?k1m˼M+,ɽl i#73)$LA@>fknbm }rz*'Ta[=Øs;=Ze#M.˸5iBf*RbuGTX0Fd5l-a +F_T0)#Ͷ[OX>oZLU-da4ބ̼ete׽FrkeI"'QQDa9мAy-=ĈϢz-]hVqB_gW%fW5 .{뛒VmF]/VW 𾧔c.Z:G;:0('G]I؝S!k Ky85o7vq^یԶ܈ٽ-MT2o𔛡:W&#x{%0Uh5V>2%~G6TXƬfkقT'+H9JNA,7;Fq $b8ޏ &{݁dp䋺/T F9 tk҂)E:f?U+y0"ttQP t2=}~LC`ʏNF~W'Wfa )Pgd)Jux䥞e1KLϰP*J?g^"53 +HO{UE*Xc롼z8R5n(5yxo ,8{67phf {m>mY'Tx\)O;Npb@BP}+p9eX*\f"D~Wf&$E$T "E<$#NNRh/dr̫{{CG[s-r .#p\`^zk%B*zc&?޵H&$lN,Pq]@`.Eyny5;y0ieA0FS1}2iSY^UB3Uzpjg +H a-+k"_8PRGE ]mRl~w\_endstream +endobj +1011 0 obj << +/Type /Page +/Contents 1012 0 R +/Resources 1010 0 R +/MediaBox [0 0 504 666] +/Parent 1019 0 R +/Annots [ 1017 0 R 1018 0 R ] +>> endobj +1017 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [417.609 276.746 450.996 287.595] +/Subtype/Link/A<> +>> endobj +1018 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [77.91 264.515 215.892 275.64] +/Subtype/Link/A<> +>> endobj +1013 0 obj << +/D [1011 0 R /XYZ 54 639 null] +>> endobj +1010 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F8 933 0 R /F52 952 0 R /F11 1016 0 R /F53 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1022 0 obj << +/Length 3000 +/Filter /FlateDecode +>> +stream +xڕZ[o8~ϯ$Hڗ" +6-3 [r,y$9i{n[j<5?5 Ydrs`+Xt:K42 x6s~O@f DHc b8 )nb- x;ċ|lU>]I#|J¤|Wy"}/MCt4UM|VbYFyެ]d۾pӺW&юR8q>֮N_ܵY_wve_⦦*&-ڇrYtI7-ݓ:UA8IJeǿYi:fՉ%Lʹ68^dWowQ ]4 : Σcӣ ^Q䂊<*?Z!/gdcQwkW"gvnOp`}9B1l_Q=A! +aIl4x6YZP(\sd0z[v%-rD*ZsPB ⪁_GNΔ ue]E."6Y.,fmdv껮?!=@*ٺ"l|!x,'t 9Ӿ"ӻ^{Kxܲ9c +ǽUūe+]V$PSv' ^"Q3!+0SB7j&y} FxI'.=PFBz #-^ -. ^پGMbB =?{#h1l|ےVP sZLr0H=UX|H,e +@_dugO +;akkaN8K f{IpL,R.#R$$[ >,Ȭc/I*š+ʟќC,m|vwNJG$URFǼm˵E1;ŀ`RBzQlOX!Q ',P^:g]M;:4^!^g}yi`D \JRT@Irvl2ΈMrAW.$bմL"aqFҩFR-KrޢlSvHŃUɾ2Bs` X eP;xN +LNJo0hdrWLw>U\TY}R*_dJI>0Af/䊲P% ̚ (q9qY'Xhp- +}K17 G6~f\v]!y5 ԉݲkeV </!ij~Q$zO`(ZMV/ⷂRH-J]*-qF. xWzJij$M |OTG`"I +"<)O%តL}6sTmyLɸVH}qgMu6iyRR982=kD[vlʾlO.H9ү-0 D|'(Y"A8$~8L.gBvys2It+Dm.M0U]6 BHو0k8ay2춆T`0eElH@v65DJ$wqAai1g[% {6 ]" " 3aZ %9R&R g6.qe+6:*5jߴ?hW6 %e1k[ciZ2'x^382qpj 6#@z&2=lrn5&z֞ϫPV +˵ ҏSd@{Ahgr@1a?*}m4C7^Pf(5H[I_p}_KDMS?5FKMᯨ"?Rͅf|Qb`>o5zăbDvx O\8)[ IU "wӫc/οN ި`>J@aKlTr#nM Yilao98D %e" jjSٞ/yL. Hi5YWPPXo*B_]9ON[ dr!/{mmЉS8o}[MOt/1Χfm*ǿsj-$vv|B^⑧Z^?E7hE%)W9WVduȭڸVpK YU]r||Dy4_^򌯌w*@ |gDH~ pۉ0*n v,P> v[ژ2hYNB?v`% t@FM_6xP`WGnM4 (575|pw&0v}fa$TG[Nʄd*/FL̶Vz&Plޜ wUIh&b/|Rl1 xQ7ٸ~fB3=if0-b|и5,Δ=6:H =Ψ$<ּGmwZQT=u`!?N,>j@GFbCu)k?M?ȹjvlA>bg< 4TBOgkw(r~çDlQl> endobj +1023 0 obj << +/D [1021 0 R /XYZ 54 639 null] +>> endobj +26 0 obj << +/D [1021 0 R /XYZ 54 313.334 null] +>> endobj +1024 0 obj << +/D [1021 0 R /XYZ 54 313.334 null] +>> endobj +1020 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F52 952 0 R /F16 948 0 R /F14 1002 0 R /F53 993 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1027 0 obj << +/Length 2359 +/Filter /FlateDecode +>> +stream +xڭ[r6}WzB>ʎ%զ3mTIu4ԒŅ@t:],|8ƅ(?wލ#BFnLN1Ypo +q2YW:eۑFOO H`GԧEYGo.y1+/](Xv2v0cj>]HUTYeBڼLO`:~vv|2L?\󻉔/@y1=%3~RD=.MaY&YqrQD%p1S/Hc~)ͤ,jTɦ^P@Uo5 a?-5eex&fEJ=ҥnRTVF㕑R+h5*[MϷvYh6fu LjI.j\3|hp +#&$h +%PWw|V/Thq⚚-)ťK&xfYQHJύؑ9%^z1O`Lىd4^Y,39ųx"Wh +6fu lqӒlP0% T]5x| FhC^L3^R`ZiP\.$\'lܛ|_ݾ3 Ս鿝*cdB.L(u%Z} ,M_R 5'kqj\p`,uOpݚ˻iAz~%{VBw׽0f +…x& [@„3(|/!c9QzTm6v\+CmB6oGdhui +o~`zڬ3L6>ߓ_7O +:p5PݭP4ăJ=S]}Y3#)1[ʷ>}-!J}uAfއpZ(q8_Gx-`و`[`3gp+1źxh=ZII툸Zx8e!>j2o4=DTFӋB,g% Շqx6L\ +0p{|^>;\7$rdۖ%e!WGӃqJuV"89wO/nN;O&y&lw +qix@}2d )[)CJ/;yvHIq5;n ~ݜŽ]{L)2HH\LfdG:s9/z\s(f ͅ0 TGуq*VxRFUsJWrx\(fDz ZGhӃq҂(6jC,-Z(bi5K ~O^*w{kTn*.xJ!arAOڈU kEPZ<ʫLu$fg=6DzVWjJRIhe!P݊S8!-8cG{^jvW?~tD{ N^l mgⰱíCPZxkfkg遉KUFnzgFh^ȍnK3dyqrj]eX{M=N`L [endstream +endobj +1026 0 obj << +/Type /Page +/Contents 1027 0 R +/Resources 1025 0 R +/MediaBox [0 0 504 666] +/Parent 1019 0 R +/Annots [ 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R ] +>> endobj +1029 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [442.957 521.53 450.996 527.95] +/Subtype /Link +/A << /S /GoTo /D (section*.1) >> +>> endobj +1030 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.775 499.358 450.996 508.269] +/Subtype /Link +/A << /S /GoTo /D (chapter*.2) >> +>> endobj +1031 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.592 477.186 450.996 486.097] +/Subtype /Link +/A << /S /GoTo /D (chapter*.3) >> +>> endobj +1032 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.775 455.014 450.996 463.925] +/Subtype /Link +/A << /S /GoTo /D (section*.6) >> +>> endobj +1033 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [433.728 432.842 450.996 441.753] +/Subtype /Link +/A << /S /GoTo /D (section*.12) >> +>> endobj +1034 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [430.864 410.67 450.996 417.09] +/Subtype /Link +/A << /S /GoTo /D (chapter*.13) >> +>> endobj +1035 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [424.499 388.498 450.996 397.409] +/Subtype /Link +/A << /S /GoTo /D (chapter*.14) >> +>> endobj +1036 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [443.275 366.326 450.996 374.739] +/Subtype /Link +/A << /S /GoTo /D (chapter.1) >> +>> endobj +1037 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 354.32 450.996 362.733] +/Subtype /Link +/A << /S /GoTo /D (section.1.1) >> +>> endobj +1038 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 342.314 450.996 350.727] +/Subtype /Link +/A << /S /GoTo /D (section.1.2) >> +>> endobj +1039 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 330.308 450.996 338.721] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.2.1) >> +>> endobj +1040 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 318.302 450.996 326.715] +/Subtype /Link +/A << /S /GoTo /D (section.1.3) >> +>> endobj +1041 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 306.296 450.996 314.709] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.3.1) >> +>> endobj +1042 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 294.29 450.996 302.703] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.1.3.1.1) >> +>> endobj +1043 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 282.284 450.996 290.697] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.3.2) >> +>> endobj +1044 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 270.278 450.996 278.691] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.1.3.2.1) >> +>> endobj +1045 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 258.272 450.996 266.685] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.3.3) >> +>> endobj +1046 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 246.266 450.996 254.679] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.1.3.3.1) >> +>> endobj +1047 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 234.26 450.996 242.673] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.3.4) >> +>> endobj +1048 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 222.254 450.996 230.667] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.1.3.4.1) >> +>> endobj +1049 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [444.022 210.248 450.996 218.661] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.3.5) >> +>> endobj +1050 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 198.242 450.996 206.655] +/Subtype /Link +/A << /S /GoTo /D (section.1.4) >> +>> endobj +1051 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 186.236 450.996 194.649] +/Subtype /Link +/A << /S /GoTo /D (subsection.1.4.1) >> +>> endobj +1052 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 174.23 450.996 182.643] +/Subtype /Link +/A << /S /GoTo /D (section.1.5) >> +>> endobj +1053 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.547 152.058 450.996 160.471] +/Subtype /Link +/A << /S /GoTo /D (chapter.2) >> +>> endobj +1054 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 140.052 450.996 148.465] +/Subtype /Link +/A << /S /GoTo /D (section.2.1) >> +>> endobj +1055 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 128.046 450.996 136.459] +/Subtype /Link +/A << /S /GoTo /D (section.2.2) >> +>> endobj +1056 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 116.04 450.996 124.453] +/Subtype /Link +/A << /S /GoTo /D (subsection.2.2.1) >> +>> endobj +1057 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 104.034 450.996 112.447] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.1.1) >> +>> endobj +1058 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 92.028 450.996 100.441] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.1.2) >> +>> endobj +1059 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 80.022 450.996 88.435] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.1.3) >> +>> endobj +1060 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 68.016 450.996 76.429] +/Subtype /Link +/A << /S /GoTo /D (subsection.2.2.2) >> +>> endobj +1061 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 56.01 450.996 64.423] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.2.1) >> +>> endobj +1062 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 44.004 450.996 52.417] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.2.2) >> +>> endobj +1028 0 obj << +/D [1026 0 R /XYZ 54 639 null] +>> endobj +1025 0 obj << +/Font << /F16 948 0 R /F8 933 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1065 0 obj << +/Length 2925 +/Filter /FlateDecode +>> +stream +xڭ]s۶+t)޹>N6ui/^jjI$73|- 5z:2j.\JgJnGNߜNw__Mz7bvLLuZzN4F4SRigl9778:m(k*n$?l8b&QOTU(TǸ͉g\4ɳs֩N_MLapɄWSކ҃K <1W\u7?̕~w|"ׇT1&7K R"._8$(kч&GLIC<A#C$䊑SIPĔr:ےaug'-mѾh(XTO}Y < Y$tQА떷pHj,IF?xZ?2|o3G`P,x',<(6X(ԕXDB+9ѷޛћs3<BT`# :RR%ʄRDE?hZ>CiG#hd(] +^Ѓ+ DL <؟'e(I ճE`a6\ ֫68c&&`Q,$hT,<("FWD&zC&Qp]Ţm[]Pe܀ g{C|R[VbϖKW ~\hK7⸦cWQ,ʥfMKmBoWD.z`Ţ"Gը8,XWo/E\PqKoO`@Y2 ys 9B{hݸavg/is$Aa,9E:FQEX+t" \pU hvYn~[n]iH<؟哼Q,[Am A[w+7 4,g_e=/άo_fv.SẌdX,Dހ5`j[$4(\JVx9Ed:3> +38"bQq}זXJ6;hws{WH fhđ7K,Ye-kkAf-,DL$8bEQ,Q+}H`(`f^zUϯ~hfi/<؟ KGE\/1|lL>+-~JշBճzmz_͇;זXmƚb`?;OvkK(Q>᛿ah,BXgSOT] WR +7[ s9_/JcYp,Cz;p=.p#\( +pFDx?H(x۲JR{`aDhhʮ}",_hvchמ+Z]۵ukOi ڇjo~Ov@ ~}VdH`C;2!*Ei%YQpn~õ l eǝ%Css8ddѺU(ny ou ֭@;pF1b ɢU"q#m~j^g4<gϑJ9OsIѹT)Fv罁DdH$TlȣQEp"'\Р"oJ&^0%F7(@xןi 8<țU+ϴ:b:;zA'3\ȓ7}i@"oB痡WMڨ>UņeT{b{J|$w"*ϧڛ=eӁFzE/` 0:퍎wtQ_=D> endobj +1067 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 610.041 450.996 618.454] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.2.3) >> +>> endobj +1068 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 597.905 450.996 606.318] +/Subtype /Link +/A << /S /GoTo /D (subsection.2.2.3) >> +>> endobj +1069 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 585.769 450.996 594.182] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.3.1) >> +>> endobj +1070 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 573.633 450.996 582.046] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.2.2.3.2) >> +>> endobj +1071 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 561.497 450.996 569.91] +/Subtype /Link +/A << /S /GoTo /D (section.2.3) >> +>> endobj +1072 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.547 538.676 450.996 547.089] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1073 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 526.54 450.996 534.953] +/Subtype /Link +/A << /S /GoTo /D (section.3.1) >> +>> endobj +1074 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 514.404 450.996 522.817] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.1.1) >> +>> endobj +1075 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 502.268 450.996 510.681] +/Subtype /Link +/A << /S /GoTo /D (section.3.2) >> +>> endobj +1076 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 490.132 450.996 498.545] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.2.1) >> +>> endobj +1077 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 477.996 450.996 486.409] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.2.2) >> +>> endobj +1078 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 465.86 450.996 474.273] +/Subtype /Link +/A << /S /GoTo /D (section.3.3) >> +>> endobj +1079 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 453.724 450.996 462.137] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.1) >> +>> endobj +1080 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 441.589 450.996 450.001] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.2) >> +>> endobj +1081 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 429.453 450.996 437.865] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.3) >> +>> endobj +1082 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 417.317 450.996 425.73] +/Subtype /Link +/A << /S /GoTo /D (section.3.4) >> +>> endobj +1083 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [437.547 394.495 450.996 402.908] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +1084 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 382.359 450.996 390.772] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +1085 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 370.223 450.996 378.636] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.1.1) >> +>> endobj +1086 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 358.087 450.996 366.5] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +1087 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 345.951 450.996 354.364] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.1) >> +>> endobj +1088 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 333.815 450.996 342.228] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.4.2.1.1) >> +>> endobj +1089 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 321.68 450.996 330.092] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.2) >> +>> endobj +1090 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 309.544 450.996 317.957] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +1091 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 297.408 450.996 305.821] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.1) >> +>> endobj +1092 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 285.272 450.996 293.685] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.2) >> +>> endobj +1093 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 273.136 450.996 281.549] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.3) >> +>> endobj +1094 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 261 450.996 269.413] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.4) >> +>> endobj +1095 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 248.864 450.996 257.277] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.5) >> +>> endobj +1096 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 236.728 450.996 245.141] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.6) >> +>> endobj +1097 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 224.592 450.996 233.005] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.7) >> +>> endobj +1098 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 212.456 450.996 220.869] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.4.3.7.1) >> +>> endobj +1099 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 200.32 450.996 208.733] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.8) >> +>> endobj +1100 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 188.184 450.996 196.597] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.3.9) >> +>> endobj +1101 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [439.041 176.049 450.996 184.461] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +1102 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 153.227 450.996 161.64] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +1103 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 141.091 450.996 149.504] +/Subtype /Link +/A << /S /GoTo /D (section.5.1) >> +>> endobj +1104 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 128.955 450.996 137.368] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.1.1) >> +>> endobj +1105 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 116.819 450.996 125.232] +/Subtype /Link +/A << /S /GoTo /D (section.5.2) >> +>> endobj +1106 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 104.683 450.996 113.096] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.2.1) >> +>> endobj +1107 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 92.547 450.996 100.96] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.2.2) >> +>> endobj +1108 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 80.411 450.996 88.824] +/Subtype /Link +/A << /S /GoTo /D (section.5.3) >> +>> endobj +1109 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 68.276 450.996 76.688] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.1) >> +>> endobj +1110 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 56.14 450.996 64.553] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.2) >> +>> endobj +1111 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 44.004 450.996 52.417] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.3) >> +>> endobj +1066 0 obj << +/D [1064 0 R /XYZ 54 639 null] +>> endobj +1063 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1114 0 obj << +/Length 3280 +/Filter /FlateDecode +>> +stream +xڭrF$X {'KWd+W* D%)RC[Ǖ*$CczNdT&y6)D=:I''~2gNIE1$fi;Z^w~_'P_e7sT6':EK)S=tqt&&_u<׫ۓ;}Q$xB^Ra\$l`,IEٵ6`Z'"M ryoT6jɿxq*IY&[o_nֳbYlmsƫileV~|{k?LIhQ-OEj QB0 +!!B!R]U!$Y]N{[KZޫT\oV:jf!_&';MvB<asɤsclVR,~qLX~y01 YR啌Eʚ-FaY"cq5Q ݞռn;\v0Jx{S=RwE7 @3x]1:F+xRfZE׻"z:G^lT}V˾ϔy0Vϐ˃"$G%]&((r(A9o˵bX^F#i.PHðHxx?B3Dzd˺,y(*kXIlE9q 7hEweM^ >=]ᆰPBðBx|?MAB1n ԲbYTVQ=/WTeQB0'ܱhzn0!"U"Z`C1&3GjW.޿llQu}onͫ^_:de9 ؐ pZ.gvBc= z?xZvօ鲶PN*uR15<(ߟ!ub.+Eʉ?XX,1WxEA +t5|POçAq7Ĵ}ApBDl?P:> C#AЂ:_:}?Ro,:lGRx?C*XHʥLDI’"rwE#Ee:YPΡhAgdA:fP<8L31|qϠPvU4OjP+SbU~yg[kVG0fU13L$,'G8`r rU`=ץ#)[o5ó)kRHPjEZL{r59&PjC +`r=PFpFxX?è 2YLB e;$Q랅{Mf't.mbܨBceKÏ4׺װ[U!?j̓#ъ59T{UB:ݾYx6>NM.ʏyDzip,E6BrLm),)UU#&rlǔ@p&x@7C$"7f^Tè@xt? +QЙCgQIV, # ?ЙЂѺmTa{~5wjf=^XC J0#fQy%mEIeWD^z]^9R\9n5j,2fQ=Uj, W^U +f[Kkl{ 3/Agb$GXPPûA9*% [1X5j#j +gXgb$GerLHX{<W+\cB 2>dN.m>LG#t>|ɕZy9\Y?78#9*SТ{@zGYT۫3Xʿ[@`}J۶Ey7;wvڬtokC?h.Amp?/i^zMBzF粃l !iBypT#9fAWyRԨ, "lUZp;8ZݨF=L(TTx?֢1cƚUp-@h]-aQT#Un7f0w n!ߟA,rb$`r|I '"ǃ+⁈uDGϨn|1~W0Ͷ_p8ڊg޺1HX GexR[OȢEA:(Yg-(q I ÃQ"$G%(ZZ2tt"z2GPW':Ճr{\ByyL (}]p-=FrT_1Zv~ׂԃ<) gG1$pZXhD׻"$lAG+z6<7Bn2PGPGH;jƻP;մFpPV2v~qf|goC_gcUމS +:]A:T;ð̞vl\2c)8XI?68#9&YYȡ,5u\`q#Yg}oW]G;[ts8sU&z,=lo!9*.ʀFkWl\**ϰiPi !ɠQ> endobj +1116 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 610.041 450.996 618.454] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.5.3.3.1) >> +>> endobj +1117 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 585.974 450.996 594.387] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.5.3.3.2) >> +>> endobj +1118 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 573.863 450.996 582.276] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.4) >> +>> endobj +1119 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 561.751 450.996 570.164] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.5) >> +>> endobj +1120 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 549.64 450.996 558.053] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.6) >> +>> endobj +1121 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 537.528 450.996 545.941] +/Subtype /Link +/A << /S /GoTo /D (section.5.4) >> +>> endobj +1122 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 514.829 450.996 523.242] +/Subtype /Link +/A << /S /GoTo /D (chapter.6) >> +>> endobj +1123 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 502.717 450.996 511.13] +/Subtype /Link +/A << /S /GoTo /D (section.6.1) >> +>> endobj +1124 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 490.606 450.996 499.019] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.1.1) >> +>> endobj +1125 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 478.494 450.996 486.907] +/Subtype /Link +/A << /S /GoTo /D (section.6.2) >> +>> endobj +1126 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 466.383 450.996 474.796] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.2.1) >> +>> endobj +1127 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 454.271 450.996 462.684] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.6.2.1.1) >> +>> endobj +1128 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 442.16 450.996 450.573] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.6.2.1.2) >> +>> endobj +1129 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 430.048 450.996 438.461] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.6.2.1.3) >> +>> endobj +1130 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 417.937 450.996 426.35] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.6.2.1.4) >> +>> endobj +1131 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 405.825 450.996 414.238] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.6.2.1.5) >> +>> endobj +1132 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 393.714 450.996 402.127] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.2.2) >> +>> endobj +1133 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 381.602 450.996 390.015] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.2.3) >> +>> endobj +1134 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 369.491 450.996 377.904] +/Subtype /Link +/A << /S /GoTo /D (section.6.3) >> +>> endobj +1135 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 357.379 450.996 365.792] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.1) >> +>> endobj +1136 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 345.268 450.996 353.681] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.2) >> +>> endobj +1137 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 333.156 450.996 341.569] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.3) >> +>> endobj +1138 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 321.045 450.996 329.458] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.4) >> +>> endobj +1139 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 308.933 450.996 317.346] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.5) >> +>> endobj +1140 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 296.822 450.996 305.235] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.3.6) >> +>> endobj +1141 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 284.71 450.996 293.123] +/Subtype /Link +/A << /S /GoTo /D (section.6.4) >> +>> endobj +1142 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 272.599 450.996 281.012] +/Subtype /Link +/A << /S /GoTo /D (section.6.5) >> +>> endobj +1143 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 260.487 450.996 268.9] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.5.1) >> +>> endobj +1144 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 248.376 450.996 256.789] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.5.2) >> +>> endobj +1145 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 236.264 450.996 244.677] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.5.3) >> +>> endobj +1146 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 224.153 450.996 232.566] +/Subtype /Link +/A << /S /GoTo /D (section.6.6) >> +>> endobj +1147 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 212.041 450.996 220.454] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.1) >> +>> endobj +1148 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 199.93 450.996 208.343] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.2) >> +>> endobj +1149 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 187.818 450.996 196.231] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.3) >> +>> endobj +1150 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 175.707 450.996 184.12] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.4) >> +>> endobj +1151 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 163.595 450.996 172.008] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.5) >> +>> endobj +1152 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 151.484 450.996 159.897] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.6.6) >> +>> endobj +1153 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 139.372 450.996 147.785] +/Subtype /Link +/A << /S /GoTo /D (section.6.7) >> +>> endobj +1154 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 127.261 450.996 135.674] +/Subtype /Link +/A << /S /GoTo /D (section.6.8) >> +>> endobj +1155 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 104.561 450.996 112.974] +/Subtype /Link +/A << /S /GoTo /D (chapter.7) >> +>> endobj +1156 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 92.45 450.996 100.863] +/Subtype /Link +/A << /S /GoTo /D (section.7.1) >> +>> endobj +1157 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 80.338 450.996 88.751] +/Subtype /Link +/A << /S /GoTo /D (subsection.7.1.1) >> +>> endobj +1158 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 68.227 450.996 76.64] +/Subtype /Link +/A << /S /GoTo /D (section.7.2) >> +>> endobj +1159 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 56.115 450.996 64.528] +/Subtype /Link +/A << /S /GoTo /D (subsection.7.2.1) >> +>> endobj +1160 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 44.004 450.996 52.417] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.7.2.1.1) >> +>> endobj +1115 0 obj << +/D [1113 0 R /XYZ 54 639 null] +>> endobj +1112 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1163 0 obj << +/Length 3049 +/Filter /FlateDecode +>> +stream +xڭ[o7+t)5ж=GGv>뼍J^Z7'fC'lqE))x=ƙՄ,JX.ZrҖuTڠ:P9_,O[|9WYn&ޙ{˽sF63wfK%)*֜A-֬Пjm@,$;Ɣ +q6] aLsfZƾvV+6W\X/6KҭFb"1 20E [JQ565q0; \p!9ku|l$~ux0lf;f cA1 :J&A7H"d*9 9} e-2ȧG@\fef #@ooeGňh(p@(+$=`.=s:8" `BLI)Y-XY2PpVv)B%gh(ɜAɥ4kr4As VG5}XYfXJ7\+&jw4.rOmr.jؿ3[6U ?7i3"js£*(G]Ppܛuy ԛ3zllliK]m|  H\z`߰&oD7)()*l,\b+wz]r!jd=UdKӟڍhrnp:ĜʎZz؍ ^ׅ0l<=G)YQ0t++u]|w1{⍩>}1xNVKa88П'$> xM]:Nk'=1Uip_;jlx CCx! %E2+I%O;^74</DTaR,PØPpl? TdֈH9) tl-{WȈu|#HX$8П=K82b%j0##D\(/JTGF\pdD놔7`GF tdbL5*lP5wfM'|ۙ99]áդ~2_ꥹt|ym ɞ"3w|6:M֝&am RFkGVN͈V-gaF={lL01Ⱦ'Eb *H̙i)%p\b#97R:|Er`n<)-gE?4":BP YXD J:س(ECPq0T Yd5VnqM/$`.<9Qă +VQ #Q 9A/> endobj +1165 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 610.041 450.996 618.454] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.7.2.1.2) >> +>> endobj +1166 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 597.902 450.996 606.315] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.7.2.1.3) >> +>> endobj +1167 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 585.763 450.996 594.176] +/Subtype /Link +/A << /S /GoTo /D (subsection.7.2.2) >> +>> endobj +1168 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 573.623 450.996 582.036] +/Subtype /Link +/A << /S /GoTo /D (section.7.3) >> +>> endobj +1169 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 561.484 450.996 569.897] +/Subtype /Link +/A << /S /GoTo /D (subsection.7.3.1) >> +>> endobj +1170 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 549.345 450.996 557.758] +/Subtype /Link +/A << /S /GoTo /D (section.7.4) >> +>> endobj +1171 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 526.507 450.996 534.92] +/Subtype /Link +/A << /S /GoTo /D (chapter.8) >> +>> endobj +1172 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 514.368 450.996 522.781] +/Subtype /Link +/A << /S /GoTo /D (section.8.1) >> +>> endobj +1173 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 502.229 450.996 510.642] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.1.1) >> +>> endobj +1174 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 490.089 450.996 498.502] +/Subtype /Link +/A << /S /GoTo /D (section.8.2) >> +>> endobj +1175 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 477.95 450.996 486.363] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.2.1) >> +>> endobj +1176 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 465.811 450.996 474.224] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.2.2) >> +>> endobj +1177 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 453.672 450.996 462.085] +/Subtype /Link +/A << /S /GoTo /D (section.8.3) >> +>> endobj +1178 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 441.533 450.996 449.946] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.3.1) >> +>> endobj +1179 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 429.393 450.996 437.806] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.3.2) >> +>> endobj +1180 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 417.254 450.996 425.667] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.3.3) >> +>> endobj +1181 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 405.115 450.996 413.528] +/Subtype /Link +/A << /S /GoTo /D (section.8.4) >> +>> endobj +1182 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 382.277 450.996 390.69] +/Subtype /Link +/A << /S /GoTo /D (chapter.9) >> +>> endobj +1183 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 370.138 450.996 378.551] +/Subtype /Link +/A << /S /GoTo /D (section.9.1) >> +>> endobj +1184 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 357.999 450.996 366.412] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.1.1) >> +>> endobj +1185 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 345.859 450.996 354.272] +/Subtype /Link +/A << /S /GoTo /D (section.9.2) >> +>> endobj +1186 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 333.72 450.996 342.133] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.1) >> +>> endobj +1187 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 321.581 450.996 329.994] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.2) >> +>> endobj +1188 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 309.442 450.996 317.855] +/Subtype /Link +/A << /S /GoTo /D (section.9.3) >> +>> endobj +1189 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 297.303 450.996 305.716] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.1) >> +>> endobj +1190 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 273.208 450.996 281.621] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.2) >> +>> endobj +1191 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 261.069 450.996 269.482] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.3) >> +>> endobj +1192 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 248.93 450.996 257.343] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.4) >> +>> endobj +1193 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 236.791 450.996 245.204] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.9.3.4.1) >> +>> endobj +1194 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 224.651 450.996 233.064] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.9.3.4.2) >> +>> endobj +1195 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 212.512 450.996 220.925] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.3.5) >> +>> endobj +1196 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 200.373 450.996 208.786] +/Subtype /Link +/A << /S /GoTo /D (section.9.4) >> +>> endobj +1197 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 177.535 450.996 185.948] +/Subtype /Link +/A << /S /GoTo /D (chapter.10) >> +>> endobj +1198 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 165.396 450.996 173.809] +/Subtype /Link +/A << /S /GoTo /D (section.10.1) >> +>> endobj +1199 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 153.257 450.996 161.67] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.1.1) >> +>> endobj +1200 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 141.117 450.996 149.53] +/Subtype /Link +/A << /S /GoTo /D (section.10.2) >> +>> endobj +1201 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 128.978 450.996 137.391] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.2.1) >> +>> endobj +1202 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 116.839 450.996 125.252] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.2.1.1) >> +>> endobj +1203 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 104.7 450.996 113.113] +/Subtype /Link +/A << /S /GoTo /D (section.10.3) >> +>> endobj +1204 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 92.561 450.996 100.974] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.3.1) >> +>> endobj +1205 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 80.421 450.996 88.834] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.3.2) >> +>> endobj +1206 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 68.282 450.996 76.695] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.3.2.1) >> +>> endobj +1207 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 56.143 450.996 64.556] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.3.2.2) >> +>> endobj +1208 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 44.004 450.996 52.417] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.3.3) >> +>> endobj +1164 0 obj << +/D [1162 0 R /XYZ 54 639 null] +>> endobj +1161 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1211 0 obj << +/Length 3378 +/Filter /FlateDecode +>> +stream +xڭ[sH+E;!&{mQ#/9kMTb ~{LϡG | h7(ȆLR0;9"34۟0w<9K4IPsan˜Q50_`Ig&3>ѷ6N ~_ިGnBnA_'h8fBl;-6+EpKQ=@,f+,_A`71sB|[OOC5IE ch5|(";sݤƀl3m,#=H' NH$ÌIRz=1#*i,$"'K(ZbS]YePl#tda9V#,#J}'.Ԯ%gb88[%Oj1`ҹ5#gV +aҴpETt@Ŕ F$8-Q׳{J9c(m:[+zߝ 9}g9"+:;c!Ѱ Ht^9Jb/2.pW*?8;!ZF5w|!3/Y5'iBhG$#α/)k>Cک $- ǎBg/d>|f(N{z`#܊7&J8pl? P>Q$&3e!@tAd0ŦS#;{~YLs +"Gx0*$N۟@PuMQJvBg &DPeӥc 6nb#7s f#AOI~) '4:E>HYHFPypBB$%S=},rR۝ %ow2vx>+w? iOt7HYVۼaGLBk/xYe(%e[1*0*p8?J^ zL4zYXu2dLTnMB}a[݄@a-.<ŴXrIBX2qҗx$NB hp0>9MǢRQ~»M9}"F\(MAnAU?Ii SF + +)-.[0GEj. dHb`Ȗ7yA7#P\!₅$.ChV`&}&hGC Cz}pPDzG $ChX钫}å`.pl7Ygq^bIuxY0h8֕hUBu lM)G8eg*?jwO eh`_Xrwڇ|P^G}Se=+ 1Rh-y ph&^k,Xpۭ¾j A=ZPji=.%N:/u |u3u+9<$ĿPNendstream +endobj +1210 0 obj << +/Type /Page +/Contents 1211 0 R +/Resources 1209 0 R +/MediaBox [0 0 504 666] +/Parent 1258 0 R +/Annots [ 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R ] +>> endobj +1213 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 610.041 450.996 618.454] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.3.4) >> +>> endobj +1214 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 597.905 450.996 606.318] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.3.4.1) >> +>> endobj +1215 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 585.769 450.996 594.182] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.3.4.2) >> +>> endobj +1216 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 573.633 450.996 582.046] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.10.3.4.3) >> +>> endobj +1217 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 561.497 450.996 569.91] +/Subtype /Link +/A << /S /GoTo /D (subsection.10.3.5) >> +>> endobj +1218 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 549.362 450.996 557.774] +/Subtype /Link +/A << /S /GoTo /D (section.10.4) >> +>> endobj +1219 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 526.54 450.996 534.953] +/Subtype /Link +/A << /S /GoTo /D (chapter.11) >> +>> endobj +1220 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 514.404 450.996 522.817] +/Subtype /Link +/A << /S /GoTo /D (section.11.1) >> +>> endobj +1221 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 502.268 450.996 510.681] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.1.1) >> +>> endobj +1222 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 490.132 450.996 498.545] +/Subtype /Link +/A << /S /GoTo /D (section.11.2) >> +>> endobj +1223 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 477.996 450.996 486.409] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.2.1) >> +>> endobj +1224 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 465.86 450.996 474.273] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.2.2) >> +>> endobj +1225 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 453.724 450.996 462.137] +/Subtype /Link +/A << /S /GoTo /D (section.11.3) >> +>> endobj +1226 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 441.589 450.996 450.001] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.3.1) >> +>> endobj +1227 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 429.453 450.996 437.865] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.3.2) >> +>> endobj +1228 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 417.317 450.996 425.73] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.11.3.2.1) >> +>> endobj +1229 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 405.181 450.996 413.594] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.11.3.2.2) >> +>> endobj +1230 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 393.045 450.996 401.458] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.11.3.2.3) >> +>> endobj +1231 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 380.909 450.996 389.322] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.3.3) >> +>> endobj +1232 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 368.773 450.996 377.186] +/Subtype /Link +/A << /S /GoTo /D (subsection.11.3.4) >> +>> endobj +1233 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 356.637 450.996 365.05] +/Subtype /Link +/A << /S /GoTo /D (section.11.4) >> +>> endobj +1234 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 333.815 450.996 342.228] +/Subtype /Link +/A << /S /GoTo /D (chapter.12) >> +>> endobj +1235 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 321.68 450.996 330.092] +/Subtype /Link +/A << /S /GoTo /D (section.12.1) >> +>> endobj +1236 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 309.544 450.996 317.957] +/Subtype /Link +/A << /S /GoTo /D (section.12.2) >> +>> endobj +1237 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 297.408 450.996 305.821] +/Subtype /Link +/A << /S /GoTo /D (section.12.3) >> +>> endobj +1238 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 285.272 450.996 293.685] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.1) >> +>> endobj +1239 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 273.136 450.996 281.549] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.12.3.1.1) >> +>> endobj +1240 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 261 450.996 269.413] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.12.3.1.2) >> +>> endobj +1241 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 248.864 450.996 257.277] +/Subtype /Link +/A << /S /GoTo /D (subsubsection.12.3.1.3) >> +>> endobj +1242 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 236.728 450.996 245.141] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.2) >> +>> endobj +1243 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 224.592 450.996 233.005] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.3) >> +>> endobj +1244 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 212.456 450.996 220.869] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.4) >> +>> endobj +1245 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 200.32 450.996 208.733] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.5) >> +>> endobj +1246 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 188.184 450.996 196.597] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.6) >> +>> endobj +1247 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 176.049 450.996 184.461] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.7) >> +>> endobj +1248 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 163.913 450.996 172.326] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.8) >> +>> endobj +1249 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 151.777 450.996 160.19] +/Subtype /Link +/A << /S /GoTo /D (subsection.12.3.9) >> +>> endobj +1250 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 128.955 450.996 137.368] +/Subtype /Link +/A << /S /GoTo /D (appendix.A) >> +>> endobj +1251 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 116.819 450.996 125.232] +/Subtype /Link +/A << /S /GoTo /D (section.A.1) >> +>> endobj +1252 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 104.683 450.996 113.096] +/Subtype /Link +/A << /S /GoTo /D (section.A.2) >> +>> endobj +1253 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 92.547 450.996 100.96] +/Subtype /Link +/A << /S /GoTo /D (section.A.3) >> +>> endobj +1254 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 80.411 450.996 88.824] +/Subtype /Link +/A << /S /GoTo /D (section.A.4) >> +>> endobj +1255 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 68.276 450.996 76.688] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.4.1) >> +>> endobj +1256 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 56.14 450.996 64.553] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.4.2) >> +>> endobj +1257 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 44.004 450.996 52.417] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.4.3) >> +>> endobj +1212 0 obj << +/D [1210 0 R /XYZ 54 639 null] +>> endobj +1209 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1261 0 obj << +/Length 1161 +/Filter /FlateDecode +>> +stream +xڕXr6+u BHqq7gIsP%FT\I~}(2$#} R4JDI(L%~j9zH-yf*/@h D˔LXx{Wc{3Nh棁 2#js8fN 7g;Ӣ 81-̞Tw8SUN]M1qu<'pϼϹݻztT +q>A)\tX"[A W}GrCT`Okx|};#{qoݽ[ss]ޚ-fLsֳ> endobj +1263 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 610.041 450.996 618.454] +/Subtype /Link +/A << /S /GoTo /D (section.A.5) >> +>> endobj +1264 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 598.086 450.996 606.499] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.5.1) >> +>> endobj +1265 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 586.131 450.996 594.544] +/Subtype /Link +/A << /S /GoTo /D (section.A.6) >> +>> endobj +1266 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 574.176 450.996 582.588] +/Subtype /Link +/A << /S /GoTo /D (section.A.7) >> +>> endobj +1267 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 562.22 450.996 570.633] +/Subtype /Link +/A << /S /GoTo /D (section.A.8) >> +>> endobj +1268 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 550.265 450.996 558.678] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.8.1) >> +>> endobj +1269 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 538.31 450.996 546.723] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.8.2) >> +>> endobj +1270 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [434.06 526.355 450.996 534.768] +/Subtype /Link +/A << /S /GoTo /D (subsection.A.8.3) >> +>> endobj +1271 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 504.437 450.996 512.85] +/Subtype /Link +/A << /S /GoTo /D (appendix.B) >> +>> endobj +1272 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 482.519 450.996 490.932] +/Subtype /Link +/A << /S /GoTo /D (section*.27) >> +>> endobj +1273 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 460.601 450.996 469.014] +/Subtype /Link +/A << /S /GoTo /D (appendix*.28) >> +>> endobj +1274 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 438.684 450.996 447.097] +/Subtype /Link +/A << /S /GoTo /D (appendix*.28) >> +>> endobj +1275 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.818 416.766 450.996 425.179] +/Subtype /Link +/A << /S /GoTo /D (appendix*.28) >> +>> endobj +1262 0 obj << +/D [1260 0 R /XYZ 54 639 null] +>> endobj +1259 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1278 0 obj << +/Length 2362 +/Filter /FlateDecode +>> +stream +x͚ms۸S4S >inb_-)&sX<+Nfb b[%0V0< ީ;oJ*W= I<'񯃏\5~GiUuZ~LoJMkO򢊪Bɥȇ +-Q +e>{;xD.:]tJ+'I5TVYKݫv~Am2 z%YT)lPM,L +PL},ێb%8A+IRYFe^X;֟ZKV1%9<[{8)FJF]?,].Տqe:8 v-ơ1-\$E2*DLV -9}Uÿ܏r/t<;B'y_nF*xAbr(!ƛ%Q Jm`ؒˬA7Dyg`]i1[-w zJU:H)GtGGG}ke=wg h8Mg$GwpףAp vpڀJVAphp\80k33=xq^蕡%6meV w`7\[@a N5ޞzJJXiŞPBp=` +6cㄙζ4Ko߫\|L \ӣY#H4O%ܺ6zbZ'x ^u -㨬P椎.[r|UmѨ%ad2kR;{oo$^lZYEBҲ4]jz鱟iGEq \e0;rEDH@ ӂ#[r;$\|tru>s=?^: ƟE V𣄀i%YO@iXmHyd;zHw@@Qzt"4/&=8J,4V*XH_bQU֜V :+՛ch䂎Y헫D66`+"Ab8C3Ca 48}ʣ +!CCf,:f +;_);;-@uiuX^n3-D#wOJ4@Vjܞi %Y>l g}|xy%1m롎P,Ca3Ղ1bK#&؞t:kpMT˩mSYGQ- 7{q0c߸r% ƜXIf3-303k3T(ag8Sã D/;a.4K'n;̙[rؙ5ػnWGcO ƞm_:jر%Y?(yg\ 3NĨr Z0dlAfXq9aռ\VvBq?2[ilt(Pcځ=et'u ՂQcK5v~=30bZ8Z벶;va]54qTe{Z0wlqg 8~#JtieY?' Ko'iLg8}֥ڽmUӣi{ }"Dolr"G'"lju7Q@ܴ:``36j)4eiFW* +SjC17z5X0C{I0Q6eugE;VcVk=־]dImeG:GRD2KLSǒmbYlvQ%]Qϛ +t}z4 Jot2] :fч.鍮My]`P"Q@oӝKVF9tbz٭w]/RmئȺo~ t@Ľz4DXM O'I9Al5aؚ,!>閡ʸb\4` 1мGo*+1 +:̫(N2VޒLL L/N)K3u%rtjk>l]|"[e2Ot3þ1-(6Jd0-~ +(x[Cޠ: bl"f糉AZmְuɏŴ)W } |n⏞_9Y6z^an~ƦEi,~N'3ű^2l"q޵^2*9LEؾUendstream +endobj +1277 0 obj << +/Type /Page +/Contents 1278 0 R +/Resources 1276 0 R +/MediaBox [0 0 504 666] +/Parent 1258 0 R +/Annots [ 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R ] +>> endobj +1280 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 475.83 460.959 484.243] +/Subtype /Link +/A << /S /GoTo /D (example.2.2.1) >> +>> endobj +1281 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 463.818 460.959 472.23] +/Subtype /Link +/A << /S /GoTo /D (example.2.2.2) >> +>> endobj +1282 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 451.805 460.959 460.218] +/Subtype /Link +/A << /S /GoTo /D (example.2.2.3) >> +>> endobj +1283 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 439.792 460.959 448.205] +/Subtype /Link +/A << /S /GoTo /D (example.2.2.4) >> +>> endobj +1284 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 391.914 460.959 400.327] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.1) >> +>> endobj +1285 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 379.901 460.959 388.314] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.2) >> +>> endobj +1286 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 367.888 460.959 376.301] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.3) >> +>> endobj +1287 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 355.875 460.959 364.288] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.4) >> +>> endobj +1288 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 307.997 460.959 316.41] +/Subtype /Link +/A << /S /GoTo /D (example.4.2.1) >> +>> endobj +1289 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 295.984 460.959 304.397] +/Subtype /Link +/A << /S /GoTo /D (example.4.2.2) >> +>> endobj +1290 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 283.971 460.959 292.384] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.1) >> +>> endobj +1291 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 271.959 460.959 280.371] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.2) >> +>> endobj +1292 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 259.946 460.959 268.359] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.3) >> +>> endobj +1293 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 247.933 460.959 256.346] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.4) >> +>> endobj +1294 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 235.92 460.959 244.333] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.5) >> +>> endobj +1295 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 223.907 460.959 232.32] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.6) >> +>> endobj +1296 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 211.895 460.959 220.307] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.7) >> +>> endobj +1297 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 187.927 460.959 196.34] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.8) >> +>> endobj +1298 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 163.959 460.959 172.372] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.9) >> +>> endobj +1299 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 151.946 460.959 160.359] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.10) >> +>> endobj +1300 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 139.933 460.959 148.346] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.11) >> +>> endobj +1301 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 127.92 460.959 136.333] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.12) >> +>> endobj +1302 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 115.907 460.959 124.32] +/Subtype /Link +/A << /S /GoTo /D (example.4.3.13) >> +>> endobj +1303 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 68.029 465.94 76.442] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.1) >> +>> endobj +1304 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 56.016 465.94 64.429] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.2) >> +>> endobj +1305 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 44.004 465.94 52.416] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.3) >> +>> endobj +1279 0 obj << +/D [1277 0 R /XYZ 54 639 null] +>> endobj +30 0 obj << +/D [1277 0 R /XYZ 54 550.608 null] +>> endobj +1276 0 obj << +/Font << /F16 948 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1334 0 obj << +/Length 2688 +/Filter /FlateDecode +>> +stream +x՜r8b ΡڏTU9[pzz6#"ʮndL$BRNAJ,RUw]>N|;+e_5Iy9|g:ۿΏp0䘗Cq _D2Yr(^0f8hٵfq}jH=Y0@M~biZTıB{/#DYv3} {q> [ +r?] E +3]`v8cwЯnR7q*.RZ<[eIYIl< "SbшGf59jqЬ aO|LS3RbZ`ꭜgx0Ox߀E'n>x*3RgOo<3ijyhēE|{\ilf!9FhSvlhqMlkl7A܏'*U,A,Y9E(2Ob$#~[)F+kQH +QVN1G{O"FYľot: n;y;]|$hYyx,p?/S +7oQ=r{|q4"( ~_8n|/+TVηD|{O/F|YG3.7;59i ݩ핛|ۜ.̲bnm> a^6NqL5V(`2t=ʅM5OnJ׮LRRUPx"V."H=,4Nvׂ/_BZrOi^Nig9kl#H9s?VTJBQE;Zs0/PH^<Ǭ2W&c]v]8ok|mB2۵ާFNH7,H܏\/Uw=${]YI@ G"h_K˅+O!C޺|W. +Is?Np%V]@QYI>#X]n69@wRNݰmѳksҥ9~}~6='wVؤxڳ@q\p+Nc,wy)*JrA,¢%8G WqrsEY9(Y\a2/X.8ɅE{9 I!äfss1g@1$yQ yYi~:-ʩ\]}*EBJ`ذHEx-HNCa7Γq2Cy6`CǑ:KSq܏^C葊ӺpL獄 z8びPW/;l6;ojY{k%R"ys?NTx\d5bլv}М.=XaV佛38-& d)##o$hxaۇzA0@ļ8qPt/DTͰd%p {tq$ˢ @F0NqXG_,QMVbļ@ƑH1vܙ9??uکF~\,'V,Kh,Y .6HE{ 9 +~\u6Vó6Md.CӸ*0V[ҙCrqF"!:0>xi83nN֞ǖ~r6yʐUz0vDϧr<&ųЅ7puD 낅_=Mnn:Lnq21 R3r#X6H7. bӞHGe +F +Ih?aJ7`^̋ DRL(F›/C'Faw`\ѷQ.Ýo4W_*n=tix3[Mֵؚ?1 lZ;F~G;ڏnSycՇؚʟ&>Y^" 7 Iendstream +endobj +1333 0 obj << +/Type /Page +/Contents 1334 0 R +/Resources 1332 0 R +/MediaBox [0 0 504 666] +/Parent 1258 0 R +/Annots [ 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R ] +>> endobj +1336 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 610.041 465.94 618.454] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.4) >> +>> endobj +1337 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 597.968 465.94 606.38] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.5) >> +>> endobj +1338 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 585.894 465.94 594.307] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.6) >> +>> endobj +1339 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 573.82 465.94 582.233] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.7) >> +>> endobj +1340 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 561.747 465.94 570.16] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.8) >> +>> endobj +1341 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 549.673 465.94 558.086] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.9) >> +>> endobj +1342 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 537.6 465.94 546.013] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.10) >> +>> endobj +1343 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 525.526 465.94 533.939] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.11) >> +>> endobj +1344 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 513.452 465.94 521.865] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.12) >> +>> endobj +1345 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 501.379 465.94 509.792] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.13) >> +>> endobj +1346 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 489.305 465.94 497.718] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.14) >> +>> endobj +1347 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 477.232 465.94 485.645] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.15) >> +>> endobj +1348 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 465.158 465.94 473.571] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.16) >> +>> endobj +1349 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 453.085 465.94 461.498] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.17) >> +>> endobj +1350 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 405.146 465.94 413.558] +/Subtype /Link +/A << /S /GoTo /D (example.6.3.1) >> +>> endobj +1351 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 393.072 465.94 401.485] +/Subtype /Link +/A << /S /GoTo /D (example.6.3.2) >> +>> endobj +1352 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 380.998 465.94 389.411] +/Subtype /Link +/A << /S /GoTo /D (example.6.3.3) >> +>> endobj +1353 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 368.925 465.94 377.338] +/Subtype /Link +/A << /S /GoTo /D (example.6.3.4) >> +>> endobj +1354 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 356.851 465.94 365.264] +/Subtype /Link +/A << /S /GoTo /D (example.6.3.5) >> +>> endobj +1355 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 344.778 465.94 353.191] +/Subtype /Link +/A << /S /GoTo /D (example.6.4.1) >> +>> endobj +1356 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 332.704 465.94 341.117] +/Subtype /Link +/A << /S /GoTo /D (example.6.4.2) >> +>> endobj +1357 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 320.631 465.94 329.043] +/Subtype /Link +/A << /S /GoTo /D (example.6.4.3) >> +>> endobj +1358 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 308.557 465.94 316.97] +/Subtype /Link +/A << /S /GoTo /D (example.6.4.4) >> +>> endobj +1359 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 296.483 465.94 304.896] +/Subtype /Link +/A << /S /GoTo /D (example.6.4.5) >> +>> endobj +1360 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 248.544 465.94 256.957] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.1) >> +>> endobj +1361 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 236.471 465.94 244.884] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.2) >> +>> endobj +1362 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 224.397 465.94 232.81] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.3) >> +>> endobj +1363 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 212.324 465.94 220.736] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.4) >> +>> endobj +1364 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 200.25 465.94 208.663] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.5) >> +>> endobj +1365 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 188.176 465.94 196.589] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.6) >> +>> endobj +1366 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 176.103 465.94 184.516] +/Subtype /Link +/A << /S /GoTo /D (example.7.3.7) >> +>> endobj +1367 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 128.164 465.94 136.577] +/Subtype /Link +/A << /S /GoTo /D (example.8.3.1) >> +>> endobj +1368 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 80.225 465.94 88.638] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.1) >> +>> endobj +1369 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 68.151 465.94 76.564] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.2) >> +>> endobj +1370 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 56.078 465.94 64.49] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.3) >> +>> endobj +1371 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 44.004 465.94 52.417] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.4) >> +>> endobj +1335 0 obj << +/D [1333 0 R /XYZ 54 639 null] +>> endobj +1332 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1410 0 obj << +/Length 2326 +/Filter /FlateDecode +>> +stream +xZr8}WQze[xf-ejyPtU+DO|q!["YMN&@7Azw㨛ywxoHR40w*ȓ;]nQ ,Nz7 ^/fy,\v{F"sizU55쌧2x> kg0Ϻ'Gr/UR6.ߍͥV,Ҙ"#If8ApLE؃iIc0%HRk,Alj'χ~FfS< t)C3#ǃ^xeNJ>&,6bo m&|8B#hk-ZlBˬ@B0n5 &k`zWU]Am@~p=A}$p՗1iQv%Ӥ͚YWi{AI4trZXV?|j2Gf j+YY^hnJ_uj8|g[Jr fIEB:c1Q%pe :IeĚT$UH߲mPD^pA̞t i͂Ƚ7;(~ +oCAi+%~P͒t5Cin˽) +2%4Yd/Ϗ(=sS"Ϗա7uS%.!nQ4KDdEdh#@Z[@3'i `{2U24l)x +hn-ro8GH`1i\kck`fn2!E!@^W5K7;fYvva;fp0;ƀО?Ń\R΀1քY0GX$6' c>MK}C9M凯kQVM>dz?gzt |?SRG{UW?;"M AF ܟ /dA1bP 3[ bk|XDbE(I($b4kiD b4pjzj*~Ѷk:7k]I0{ b ]IJbM,srEN0I׮v DxZ)5WA!Ӥ͘!A >YdFs|:Ym̺Rfi͍+=8 z2%g&Y /MFصSCaJ(ApTxB9'N!#eSV YB0o%ҾO PNy(Vz : RdBi9Zb|^1332HlɰYHpha@g$\'9Tz-,$>N2+pthrפ+JXi.4vS{ʹh-=;Y"-wH5ⶥ),K胭% + +̎TD=T'Tl#M)i7 j 1"%RiXTrxǀZ8C"`0R?\ jEؘ3#M \|Cm ZȨ!*Tj0%K!RN#el4/sp̮@yR?8tixo3p)> endobj +1412 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 610.041 465.94 618.454] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.5) >> +>> endobj +1413 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 598.086 465.94 606.499] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.6) >> +>> endobj +1414 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 586.131 465.94 594.544] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.7) >> +>> endobj +1415 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 574.176 465.94 582.588] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.8) >> +>> endobj +1416 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 562.22 465.94 570.633] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.9) >> +>> endobj +1417 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 538.31 465.94 546.723] +/Subtype /Link +/A << /S /GoTo /D (example.9.3.10) >> +>> endobj +1418 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 464.587 465.94 472.999] +/Subtype /Link +/A << /S /GoTo /D (example.11.3.1) >> +>> endobj +1419 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 452.631 465.94 461.044] +/Subtype /Link +/A << /S /GoTo /D (example.11.3.2) >> +>> endobj +1420 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 440.676 465.94 449.089] +/Subtype /Link +/A << /S /GoTo /D (example.11.3.3) >> +>> endobj +1421 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 416.766 465.94 425.179] +/Subtype /Link +/A << /S /GoTo /D (example.11.3.4) >> +>> endobj +1422 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 392.856 465.94 401.268] +/Subtype /Link +/A << /S /GoTo /D (example.11.3.5) >> +>> endobj +1423 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 345.035 465.94 353.448] +/Subtype /Link +/A << /S /GoTo /D (example.A.3.1) >> +>> endobj +1424 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 333.08 465.94 341.493] +/Subtype /Link +/A << /S /GoTo /D (example.A.3.2) >> +>> endobj +1425 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 321.125 465.94 329.537] +/Subtype /Link +/A << /S /GoTo /D (example.A.4.1) >> +>> endobj +1426 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 309.169 465.94 317.582] +/Subtype /Link +/A << /S /GoTo /D (example.A.4.2) >> +>> endobj +1427 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 297.214 465.94 305.627] +/Subtype /Link +/A << /S /GoTo /D (example.A.4.3) >> +>> endobj +1428 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 285.259 465.94 293.672] +/Subtype /Link +/A << /S /GoTo /D (example.A.5.1) >> +>> endobj +1429 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 273.304 465.94 281.717] +/Subtype /Link +/A << /S /GoTo /D (example.A.5.2) >> +>> endobj +1430 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 261.349 465.94 269.762] +/Subtype /Link +/A << /S /GoTo /D (example.A.5.3) >> +>> endobj +1431 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 249.394 465.94 257.806] +/Subtype /Link +/A << /S /GoTo /D (example.A.5.4) >> +>> endobj +1432 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 237.438 465.94 245.851] +/Subtype /Link +/A << /S /GoTo /D (example.A.5.5) >> +>> endobj +1433 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 225.483 465.94 233.896] +/Subtype /Link +/A << /S /GoTo /D (example.A.6.1) >> +>> endobj +1434 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 213.528 465.94 221.941] +/Subtype /Link +/A << /S /GoTo /D (example.A.6.2) >> +>> endobj +1411 0 obj << +/D [1409 0 R /XYZ 54 639 null] +>> endobj +1408 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1460 0 obj << +/Length 52 +/Filter /FlateDecode +>> +stream +x3T0BCS3cK\.t;!T HcZY2:endstream +endobj +1459 0 obj << +/Type /Page +/Contents 1460 0 R +/Resources 1458 0 R +/MediaBox [0 0 504 666] +/Parent 1258 0 R +>> endobj +1461 0 obj << +/D [1459 0 R /XYZ 54 639 null] +>> endobj +1458 0 obj << +/ProcSet [ /PDF ] +>> endobj +1464 0 obj << +/Length 2426 +/Filter /FlateDecode +>> +stream +xڽ[[oF}ׯP$ڒ\^VMhJ#QI +{%GEB Ù9gfwvp8)/Ƌ(߉'?B3‹Tt H3rϿR: +/{¢GJ}5S55giV"S?~ qL|xs򶞆];44˟r: 'rn__G?;;BKq(Yq5iLIէ!ˢkˆxͤ9+CSWU; +;y'z]mO'N\C$xF,#fI<ʺyi !6QYfcg`ˈl!˓FeL|e';ҿ~?\M)r'?;=M .k)Pj нR#գ-ia_0H9KGxe۲4[A!ʝA\?ԫL3wc>գ L}qz>܏i8| )Gz0ؖŔؚK0};V Ww fӈfQj#jb/B 5YiBCQzIjqwn[?r^).ԡDd1Ǒ<iËР'^F۲[]Ŋ[f=4Lz|W;7C/UG4{bzj Mw6c[b%c$]bmǏpy?`ݤzT< ''}sFBc!{={lbOl{ۮ+.emJYZKzM[Gz) e 6q 0C V +QVK1bѝH'zz&vٲ-jY~tk8*%/"ؓ-VBE 6D--֛RFnUv/*Wj]xv QC-nRF9-pE1{w +x\zTSUA'~Jh\QJ`\-+uPůUI! +;31Txϧ"eQ`#{_'CGz9Dc 3y +VgƲYtM0|bk8 +OXVBE ^Nl&uv.j/rٛdL{ 'IRB +G:9_·@ |U|$"n~kNC z+KjÉ"Ds뉬 +L&ǖIj$3IM#['ݴ̞SO>>>]X\H%H%a@`P=+E +{E^TD`u SFF) mXvޕKMSs =Qۣ(X.1 LǖIjKA_fQ^1]/`[n]HV]OI_>\Vic/2믦$f9*L"RJͭ۸ t戎;| 5e&Փ@Y]= DVlUOog9=F[%poQ!W}w_Kz8Kh, d^ 6d@ ="f1cË.M_d0yu^>+Ȯ!-OQk}Ɔ x_cj_[֫> endobj +1466 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 522.013 450.996 524.006] +/Subtype /Link +/A << /S /GoTo /D (1) >> +>> endobj +1467 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 509.831 460.959 518.244] +/Subtype /Link +/A << /S /GoTo /D (figure.1.1) >> +>> endobj +1468 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 497.648 460.959 506.061] +/Subtype /Link +/A << /S /GoTo /D (figure.1.2) >> +>> endobj +1469 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 485.466 460.959 493.879] +/Subtype /Link +/A << /S /GoTo /D (figure.1.3) >> +>> endobj +1470 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 473.284 460.959 481.697] +/Subtype /Link +/A << /S /GoTo /D (figure.1.4) >> +>> endobj +1471 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 461.101 460.959 469.514] +/Subtype /Link +/A << /S /GoTo /D (figure.1.5) >> +>> endobj +1472 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 448.919 460.959 457.332] +/Subtype /Link +/A << /S /GoTo /D (figure.1.6) >> +>> endobj +1473 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 436.737 460.959 445.15] +/Subtype /Link +/A << /S /GoTo /D (figure.1.7) >> +>> endobj +1474 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 403.72 450.996 405.713] +/Subtype /Link +/A << /S /GoTo /D (21) >> +>> endobj +1475 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 391.538 460.959 399.951] +/Subtype /Link +/A << /S /GoTo /D (figure.2.1) >> +>> endobj +1476 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 379.356 460.959 387.769] +/Subtype /Link +/A << /S /GoTo /D (figure.2.2) >> +>> endobj +1477 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 346.339 450.996 348.332] +/Subtype /Link +/A << /S /GoTo /D (40) >> +>> endobj +1478 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 334.157 460.959 342.57] +/Subtype /Link +/A << /S /GoTo /D (figure.3.1) >> +>> endobj +1479 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 301.141 450.996 303.133] +/Subtype /Link +/A << /S /GoTo /D (58) >> +>> endobj +1480 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 288.958 460.959 297.371] +/Subtype /Link +/A << /S /GoTo /D (figure.4.1) >> +>> endobj +1481 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 255.942 450.996 257.935] +/Subtype /Link +/A << /S /GoTo /D (100) >> +>> endobj +1482 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 243.76 465.94 252.173] +/Subtype /Link +/A << /S /GoTo /D (figure.5.1) >> +>> endobj +1483 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 210.743 450.996 212.736] +/Subtype /Link +/A << /S /GoTo /D (129) >> +>> endobj +1484 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 198.561 465.94 206.974] +/Subtype /Link +/A << /S /GoTo /D (figure.6.1) >> +>> endobj +1485 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 186.379 465.94 194.792] +/Subtype /Link +/A << /S /GoTo /D (figure.6.2) >> +>> endobj +1486 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 174.196 465.94 182.609] +/Subtype /Link +/A << /S /GoTo /D (figure.6.3) >> +>> endobj +1487 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 141.18 450.996 143.172] +/Subtype /Link +/A << /S /GoTo /D (180) >> +>> endobj +1488 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 128.998 465.94 137.411] +/Subtype /Link +/A << /S /GoTo /D (figure.7.1) >> +>> endobj +1489 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 116.815 465.94 125.228] +/Subtype /Link +/A << /S /GoTo /D (figure.7.2) >> +>> endobj +1490 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 104.633 465.94 113.046] +/Subtype /Link +/A << /S /GoTo /D (figure.7.3) >> +>> endobj +1491 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 92.451 465.94 100.863] +/Subtype /Link +/A << /S /GoTo /D (figure.7.4) >> +>> endobj +1492 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 80.268 465.94 88.681] +/Subtype /Link +/A << /S /GoTo /D (figure.7.5) >> +>> endobj +1493 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 68.086 465.94 76.499] +/Subtype /Link +/A << /S /GoTo /D (figure.7.6) >> +>> endobj +1494 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 55.904 465.94 64.316] +/Subtype /Link +/A << /S /GoTo /D (figure.7.7) >> +>> endobj +1465 0 obj << +/D [1463 0 R /XYZ 54 639 null] +>> endobj +34 0 obj << +/D [1463 0 R /XYZ 54 551.206 null] +>> endobj +1462 0 obj << +/Font << /F16 948 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1527 0 obj << +/Length 1666 +/Filter /FlateDecode +>> +stream +xڭYo8+(?EQǾys5EfkgQVl>strxXaX(Px3̐CHOdًxrѣzf zqy\)Rג< ӟS5"h -˅24'> fGg#;W!ח4{?ETK/"ȃg1-`cENjި^z +0;3JI24z=H)bX*Z&L*š6m]@,'0HWBVQ8+p \+l+2\LQ+ Q[ 7B3Y`i">[%9_MqΫDĆ%Ⱦ_NU&8a|Y+j ;k r>m=`e-Si*hR%#8 +}oq[ezVx +p2Y? !v[D3%_Y zV6UpcQs'p~ [6C9iXa4CK }fLYi 7+^_FUPO59Q+T Nu2MU +J0WAZBop[,[ߠeHX^U`tWꏏQi둥Ghix"]%Xç%>6zp|-ϲu@GhG$<AYx#$l}}(xl}(E^w)[ZBfFeP[]mw +Fҙր뷞C{JCҥ ;f둼Ey{Bx쮗G̴{kKHj8IxtzeAtcؾVE`4Ƶ^,Ed| oܓ \p\OwRj+?jwK2Nx=5c$-%g]3JgK׌mk<׻EeNV. $|9YG|/$e>\J@ъ1Z{-8,Ԑaڣ:|4R6]Z C(^1 Bw8%)󖗖Pуmd0"sլښwjA^2_-u$}4`0Zp!1%I)D:.Onf/g7ks?K[0v<;~B19n@l])y2D=uSJɩݞRM3SxwA<-xvrδBbZp!1SxިDL3]˙A~5xWLjZ=ugqލi⃪% W1`O֫"@?}'J]xn |q_l=0C {Y2\H(9҃"҈m[ ~ݼϦ=n{|( gbiB\`=8bܖAl:f~r#vm(E/bM31VЗ+fA"i12߃K64-\ޭ, Ƕ ) v Й@Lhᙀ3`;&>e7w;9Bh^zmj_sm'![eendstream +endobj +1526 0 obj << +/Type /Page +/Contents 1527 0 R +/Resources 1525 0 R +/MediaBox [0 0 504 666] +/Parent 1495 0 R +/Annots [ 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R 1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R 1547 0 R ] +>> endobj +1529 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 610.041 450.996 612.034] +/Subtype /Link +/A << /S /GoTo /D (205) >> +>> endobj +1530 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 598.086 465.94 606.499] +/Subtype /Link +/A << /S /GoTo /D (figure.8.1) >> +>> endobj +1531 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 586.131 465.94 594.544] +/Subtype /Link +/A << /S /GoTo /D (figure.8.2) >> +>> endobj +1532 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 554.25 450.996 556.243] +/Subtype /Link +/A << /S /GoTo /D (220) >> +>> endobj +1533 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 542.295 465.94 550.708] +/Subtype /Link +/A << /S /GoTo /D (figure.9.1) >> +>> endobj +1534 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 530.34 465.94 538.753] +/Subtype /Link +/A << /S /GoTo /D (figure.9.2) >> +>> endobj +1535 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 518.385 465.94 526.798] +/Subtype /Link +/A << /S /GoTo /D (figure.9.3) >> +>> endobj +1536 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 486.504 450.996 488.497] +/Subtype /Link +/A << /S /GoTo /D (291) >> +>> endobj +1537 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 474.549 465.94 482.962] +/Subtype /Link +/A << /S /GoTo /D (figure.A.1) >> +>> endobj +1538 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 462.594 465.94 471.007] +/Subtype /Link +/A << /S /GoTo /D (figure.A.2) >> +>> endobj +1539 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 450.639 465.94 459.052] +/Subtype /Link +/A << /S /GoTo /D (figure.A.3) >> +>> endobj +1540 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 438.684 465.94 447.097] +/Subtype /Link +/A << /S /GoTo /D (figure.A.4) >> +>> endobj +1541 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 426.728 465.94 435.141] +/Subtype /Link +/A << /S /GoTo /D (figure.A.5) >> +>> endobj +1542 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 414.773 465.94 423.186] +/Subtype /Link +/A << /S /GoTo /D (figure.A.6) >> +>> endobj +1543 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 402.818 465.94 411.231] +/Subtype /Link +/A << /S /GoTo /D (figure.A.7) >> +>> endobj +1544 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 390.863 465.94 399.276] +/Subtype /Link +/A << /S /GoTo /D (figure.A.8) >> +>> endobj +1545 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 378.908 465.94 387.321] +/Subtype /Link +/A << /S /GoTo /D (figure.A.9) >> +>> endobj +1546 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 366.953 465.94 375.366] +/Subtype /Link +/A << /S /GoTo /D (figure.A.10) >> +>> endobj +1547 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 354.997 465.94 363.41] +/Subtype /Link +/A << /S /GoTo /D (figure.A.11) >> +>> endobj +1528 0 obj << +/D [1526 0 R /XYZ 54 639 null] +>> endobj +1525 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1569 0 obj << +/Length 1687 +/Filter /FlateDecode +>> +stream +xڭXS8~_G{Y,F C9CiS@oVUMgcwW}CQ +xTHu޼qzjEK>|J,S:P >g糿U\5Kb1Q&X zWL:Z>']ݘsY+ER\h-e@vvVG̍i%geƃ&HЌX-:m${_?tɜkqgCi"2E,-d4E[4/8F#&1r&e9z&HVYUTOlUdU|"~ oZ]QooC߬RA&Wx o-w0O3ٖ գ6TL Vi "申!9p~CL۲8;e]i2*[ǴHnՌPWu\?_ + 8dҢ>çV~E{zIIbg{(}BLT3ʻ(| +Ⱥax9uy;NjzmAwFl;s{%(JVE AF,2AL^Z3/xrD&_TwDEgc`Ub[o{gB`C\L-iPďR蚲(T0?A£ +:f,SPn*@RO[TfH/L>ЍP:NNʊM+f. U>3[cAЗrQ. q"è@(!PCcC۲8O 4Kl+,L/]{(bSǪ[{%=v(wˌ1=O?v;% OȌakj"M;h! '59:8zHVlVMmd.DhB[hСOGf8U%JTsn/=;S>WN!œǵȯϟpaiV7زQ";)Rb@Gss?^`G}oZ! MG=4i[wүn545m ɡ6,>p6ϒ6G/I!.-A΋| ba )xHhx~mYx[8O=?'Tj]`I?{6P1D$o(fuʸ %(ŀ-k밽j,67\gCm[yJO\ΣRy#pՃɊB.{NVT,2ebEGsBf,3So).>)_8? ^GsB>+q#{9mܱ o廍j(@dD2WAf4^ZskҬ؛F%OyAՃGiME z1/BdZem`D9*DBK$ҙ yl ZN?Ia&eBgnIp)F˺sg!Qg1:䩘U(& ;ߛ\yo6&pxqcCid}t`2TL@4~ 5_e Y&-ݷow]罝0JO7endstream +endobj +1568 0 obj << +/Type /Page +/Contents 1569 0 R +/Resources 1567 0 R +/MediaBox [0 0 504 666] +/Parent 1495 0 R +/Annots [ 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1588 0 R 1589 0 R ] +>> endobj +1572 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 524.285 450.996 526.277] +/Subtype /Link +/A << /S /GoTo /D (1) >> +>> endobj +1573 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 512.33 455.978 520.743] +/Subtype /Link +/A << /S /GoTo /D (table.1.1) >> +>> endobj +1574 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 500.375 455.978 508.787] +/Subtype /Link +/A << /S /GoTo /D (table.1.2) >> +>> endobj +1575 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 468.494 450.996 470.487] +/Subtype /Link +/A << /S /GoTo /D (21) >> +>> endobj +1576 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 456.539 460.959 464.952] +/Subtype /Link +/A << /S /GoTo /D (table.2.1) >> +>> endobj +1577 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 424.658 450.996 426.651] +/Subtype /Link +/A << /S /GoTo /D (58) >> +>> endobj +1578 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 412.703 460.959 421.116] +/Subtype /Link +/A << /S /GoTo /D (table.4.1) >> +>> endobj +1579 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 400.748 460.959 409.161] +/Subtype /Link +/A << /S /GoTo /D (table.4.2) >> +>> endobj +1580 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 368.868 450.996 370.86] +/Subtype /Link +/A << /S /GoTo /D (100) >> +>> endobj +1581 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 356.913 465.94 365.325] +/Subtype /Link +/A << /S /GoTo /D (table.5.1) >> +>> endobj +1582 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 325.032 450.996 327.025] +/Subtype /Link +/A << /S /GoTo /D (129) >> +>> endobj +1583 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 313.077 465.94 321.49] +/Subtype /Link +/A << /S /GoTo /D (table.6.1) >> +>> endobj +1584 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 301.122 465.94 309.535] +/Subtype /Link +/A << /S /GoTo /D (table.6.2) >> +>> endobj +1585 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 289.167 465.94 297.579] +/Subtype /Link +/A << /S /GoTo /D (table.6.3) >> +>> endobj +1586 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 257.286 450.996 259.279] +/Subtype /Link +/A << /S /GoTo /D (205) >> +>> endobj +1587 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 245.331 465.94 253.744] +/Subtype /Link +/A << /S /GoTo /D (table.8.1) >> +>> endobj +1588 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 213.45 450.996 215.443] +/Subtype /Link +/A << /S /GoTo /D (283) >> +>> endobj +1589 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.004 201.495 465.94 209.908] +/Subtype /Link +/A << /S /GoTo /D (table.12.1) >> +>> endobj +1570 0 obj << +/D [1568 0 R /XYZ 54 639 null] +>> endobj +1571 0 obj << +/D [1568 0 R /XYZ 54 557.162 null] +>> endobj +1567 0 obj << +/Font << /F16 948 0 R /F29 922 0 R /F8 933 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1605 0 obj << +/Length 2615 +/Filter /FlateDecode +>> +stream +xڥYY~_!dF6yAol㙅7X%QR)g&>u5լZDfl9=P~Q2~g&V& ++YǛd?TqGO"x퐟fxjO782*Ey_o~=Xlaӟn_g Ɓlq!h\<h_uo4"Nɬ:~7`Jy?q}wһEg d)|2^}E7r8~cRW3۹0WߖQeQ-AwqѦ>~[Z:^ςjRcٺrA+g[N7y@1q}C [e +\O7^~O-ÕOHѸ/rǧ%5F(P5oz4̏TcI9s<6ݨʑ(><; +385P`Gԗ%||DQX yvxȏ5Q4WB( qŖ8Eq$"Nʒt?)4 DaKBBb`WJsk>i\}8Cwח ũ|1Ìk/٠ųŸxoY w_t<8rsu+m ƇI1}ʑZ^`Nm0x+PCYo(}vԋCa$(@v + |0xxprq!De.aR/@:<TF6n)e=4w8ɺrG|p\8J?,v&r J -K6ۨuxg5hKhNm)q-hѢhgq``:[<'ٖ']EՌ;*B(0 ٨wŖN1 {&@d-m K.D:EL0@[jb-&a +H++ʳ ]`-hAr0g$ G0b䲛++J&_2:C<3yj5ث֒ i+ A32BY q|Ѷs)b7^"6q֖$GAQ4s=} q`d.`>b.QYF>htoQ0w)i1r;O49x? K7tѨɵ2$)9%(NAsNÖ^tubwe^3I@HUИU{= hӔ8sjc[SxO hB-F@l8Lj }CCG]Fljs~QC'9gsǼr^ۣDPH4B4 6oC-8n$"@|Dw/~07)\GӇw;fG;p`XCA?]>ɘPI*#FLjaKAۡNtx>Cb===8) +Oj̾]jo:#\ +|@0*wUS:2C#fЅ%H9sX b"0>q [=x1S ?uJܝм8t@WTI&KN_TlB8Ԣ KbőmXsOb/^{7;( 6@PE0(N[]3.&BN rOnBτ(SP( !Z, G:4,- lxt +K +w[OhvdW(zӘZ9dJ[0Е##zKbW4ƣ.85q7d9M*zJ:`j9t"EϚ+ ]L ݰZ3,wF/˫u1+,0csxhT`##jUܚďhI;1Vpޤ}-i0Bm!ݪ*|˔Fv( + &f%AXV5dݝd$hA2F)yk?t򻵭;X0J {a*XVs|r$|Ba.4_ $w)jsendstream +endobj +1604 0 obj << +/Type /Page +/Contents 1605 0 R +/Resources 1603 0 R +/MediaBox [0 0 504 666] +/Parent 1495 0 R +/Annots [ 1612 0 R 1613 0 R 1614 0 R 1615 0 R ] +>> endobj +1612 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [422.852 177.924 450.996 189.049] +/Subtype/Link/A<> +>> endobj +1613 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [53.004 166.246 149.142 177.094] +/Subtype/Link/A<> +>> endobj +1614 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [412.391 85.947 450.996 97.072] +/Subtype/Link/A<> +>> endobj +1615 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [53.004 75.375 258.98 85.116] +/Subtype/Link/A<> +>> endobj +1606 0 obj << +/D [1604 0 R /XYZ 54 639 null] +>> endobj +38 0 obj << +/D [1604 0 R /XYZ 54 621 null] +>> endobj +1610 0 obj << +/D [1604 0 R /XYZ 54 465.499 null] +>> endobj +42 0 obj << +/D [1604 0 R /XYZ 54 331.344 null] +>> endobj +1611 0 obj << +/D [1604 0 R /XYZ 54 302.795 null] +>> endobj +1603 0 obj << +/Font << /F67 1609 0 R /F16 948 0 R /F8 933 0 R /F52 952 0 R /F11 1016 0 R /F53 993 0 R /F29 922 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1618 0 obj << +/Length 3281 +/Filter /FlateDecode +>> +stream +xڥَ8'IA>$L$& Kr[Ӳh~"%N-X,u;ʃ* +WJW[/+XOۻ +UꦱZm- H'mJFA*@ +~-u:tz;zUDzH'Ϋw2\> 0B"Cl-ĻvcG*yJ ctuSi,ݿ- pukGD1c7 .Ƞ/УDru2=L+F ]b/qgٷ Y^I0q$@zo+4U1}_n՜G%6A/tM˜⫗M{aeqwHP /{zpzAFCFMB5BXW~Pueχ 0ihe{ cGGd9 Piu!wH9g l$L Z/&RjƜ LŮJAuX;_]IWn$)XSodZO'#!ts^7~&CKR'kKHA~zjJy`g$5DX-r16AQ>ᵼmlhy!3+O Qf^ V|xO# \sXrᛄyG " 4 t'LeR`' :ILFSQ(4aH1USKw~*ij`g i0c]x0gz3CX7yN3$R!` Fл.0RWp5s{i){̰>ևEr$$YF$gdXBƳ#9T{^>%]΀PIdܜյ^§c u' ^yD޸ɘM` H t.zk)]'kH#~.3 .<BZM^W7p.HX2A WD鰖E%RhNИx- J` :ZYO(Y3/ubCydF 9/Ƚ5ZQr|JȵѮ2k#/9%$Ń0ޑJ:Y!KG N"]qyzys`MW";K/AՌՋ<~a3R*d%'t(~bXb?ub AkE>*-(2QJc 'GN5an2x-Z̄; XD B{0]Z6#^%b kL,I;P1I;}S+* +LNH;IHzz?&ZJ{CQqh<B%XFynE}:pgUum,S UCzw̸#tY$Z#~4@x$4yGWPjgb(~{?m7TJ2;%qJFE*ߐ+v +g+i\HUd0絋L_p@w6q%l݈6"j9ݔs!y,^feYqcpRzBZ-g3CLy/ \@ynsgξuuGJ)$ެ.oeFWR|W s^*/j(69(B{K/}NaRrNӒe}ѤQbΩh+)H9*ɨ8e1D*M^Fӥ6xd+eNl9aQ0夝(smI ?> +ÚJB>w=yd^~S\쑀N622W4(fI9JʟE҈ зgG!*몵H180EtB@KS%%km" GiphHx1,HPgp>pZ[7L t їn!bdOJJc {p&FpՄ¬[S$tE萩_T"$1+G[Qmk<ф)@K$s:Bq "]Wh+}omi9v.)=k >fCl:&g1%O䎎Gn\I?ʆjMqJ nxì;߉u-7Xy궛`C^MPumdgerdk(ç"ׁh,^&NM$].}Κ R PX؁|I/7Ʈ2[\' LFg +ijaV0d@W<~깶/]( ]};m]2Rjw:ES?DzBլ >HT^=̉Vu81|'rs5W>$QA V ?b"ut͟)qZ.7n_2InO~J7xu<&H;gQ0b@P~ݢ#4Odp^y!B>tAQ*5y_AX X=LtQsގҋ,6hOPԘU;)*r9_}޸?v&C[RW @M8eU0Ev\*O*nl>{e rj`R޷X]Gy.:MPz|֩endstream +endobj +1617 0 obj << +/Type /Page +/Contents 1618 0 R +/Resources 1616 0 R +/MediaBox [0 0 504 666] +/Parent 1495 0 R +/Annots [ 1626 0 R 1627 0 R ] +>> endobj +1602 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/PTEX.FileName (./xslt/figures/note.pdf) +/PTEX.PageNumber 1 +/PTEX.InfoDict 1629 0 R +/Matrix [1 0 0 1 0 0] +/BBox [0 0 27 27] +/Resources << +/ProcSet [ /PDF ] +/ExtGState << +/R4 1630 0 R +>>>> +/Length 1631 0 R +/Filter /FlateDecode +>> +stream +xeUKG)jp/la"$9bPh;'-zUA$ԷbM>ߎ?E^e>uXb#V6.:{z{\]b}#ea?׎~{|"?O.ʀ /41u?x?2\0\ +{ 1l˱L6 ЀxT^xbom"8TYj㴻R@q{* {;DG1$|O}5}biur }Dd:&+X 6;z t o8X=&02oC eD3PMt1CrZ`7umAd'W!=KO(ԤtKb^ *BFmY`UՐ -ݸ<{g T4G&-|{,;z~zfOH%βK/ÇlM(88 -ٸ!$KӐK1(՝U?Dp КI,`bIQVܬXU W;}W}\bf^NΈN-US*z\<8Sj.1)ʟd.'@\{h.)@ʈX*0ޣ#¹S@,` ` sƢss~wt`1{br,): qNKQpHB 60%DDe,@VP%k ݠC`eE 2e-Zv} +E7GͺlT$Ɗ8p@WXDȅdo*=,_|` +Fp/7uQkϱshA[JJgI1Kr!lx) L\hhp_D1I/9MBh`b`}Ae|Tb |Œ-U*DXFWiRܳn> +endobj +1630 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +/SA true +>> +endobj +1631 0 obj +1053 +endobj +1626 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [182.158 335.414 231.75 346.263] +/Subtype /Link +/A << /S /GoTo /D (chap01conc) >> +>> endobj +1627 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 316.55 102.829 327.398] +/Subtype /Link +/A << /S /GoTo /D (chap01qa) >> +>> endobj +1619 0 obj << +/D [1617 0 R /XYZ 54 639 null] +>> endobj +46 0 obj << +/D [1617 0 R /XYZ 54 288.571 null] +>> endobj +1628 0 obj << +/D [1617 0 R /XYZ 54 263.922 null] +>> endobj +1616 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F70 1622 0 R /F66 1625 0 R /F16 948 0 R /F8 933 0 R /F52 952 0 R >> +/XObject << /Im1 1602 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1636 0 obj << +/Length 3214 +/Filter /FlateDecode +>> +stream +xڵZKs8W(U_yxf35ff@KŊDjH*oHIsJEģnt7\':^'Jٙs=\1Ri^e Ψ}q_.ob/բB<+ O, 5*Ѐ 'L-:_huٮЬ:ް9NTnpuidA*Pk:WaazĶwWW{ȸΧb+*V*zN1N0* ʡE?O5{7:I\-ҟ=Nx#(ZfzD-iK4E񸼉2E/C}#窯idl, Y:wժmfc}05PxKX>@Ǿleo~ TaI 6^USD1a[8#,Vd p@,- VպAE_;T&E z adʝG6}Bo[ӂiXmunY9 DprhƐZd|a#nI>R .Kh1ݜəG@7}vj? 2nJ[5P-a_dS0*nvҊvƄvX`m6'fh(g}^Z1(R&qn˗ _µUXs[ nYs\r1jE + ~X%X1#BD0NkV t1V3י堫fB"z-ԾGԢccXaˆ 4|$}JƋ=@p- K;mɷZxUQwXW@3"'dŲe+`51ngegT,ko,E^L583ų88ugXU2-3=<uXă8a ܪv,vVY1A`ie)Rރl]|;OMD6t+m,X1~9^8CwdSb;u)6?ȇgI z%s2) 19TyƂ*%C})οIEqӱ +i :;ic)+ac! PJz͇ĉq1$m5#; vqklzX3|.Nm(9ωBhVG9B5%Nء9kkqR68)ī+ f:[<~!E"qݤTh:99XNUf +/yTN#TG9HhEbG4b [.C v̧$,jަg 38濂2}*%` !sȼ2:yfyrxҿLE])ծ*]~M;;98싪iBǹB>DAοYʒDn I/R+I/L rfT>@JͺCӉs4o:uf3<6M391c+ڟsOQW̌h- p$Nc7}ڎi*uWjbw2@\/$A^a#OpUv&,Xb":o}BĮt$i_Y[DR{"сI\/?}pg4SdFt5)cD$H-nRLNf[1Z+ErEgS + )Xs搮>H}7O+1KrRZram< qxt9f30.Ay('/H.2b$>7Tl>qKmbZܩZ0.J*9mtͥ tB=;qLL4&w0CyC[q,FR1T?t6m_6e`Q`f/mqTvqN䳫~t,Lp#,JX#-P^wb H!rC(Ko PکQ-&A)%,⪛0rpyu xpQ+a1E4BrjT78u3[s D] ,;Bu9ƻaz&Y=8zKi8 sǴ +QDޒƸjh4V-z٨ˆpeʢI絬q[dxKq0D ,~}y׻#Qbmjg$?r".8Dҡf i-,]ЖB|3+2ҩϩFbFΜn- +ҙ5L.?vُIK )|#\ t<E1,G,8 +&ϑ3l!ݠ,LAG0=n$c(Jg0? 5Ƽ3 cFȦsZspM̴ nP[k\Lrn^9wms#d]z[WvJ`$ə[a 4̹rWjqfp 6 Qݢ8KTt䂾ߊClゔmz'y:c 17DG %!eFd(f1.\7hp~f.nKъE-T 5v.%@Cq%AAJKi20ȧ5R$J8 Wf~xgݑnf LBxїg'R^Bn8j> endobj +1637 0 obj << +/D [1635 0 R /XYZ 54 639 null] +>> endobj +50 0 obj << +/D [1635 0 R /XYZ 54 621 null] +>> endobj +1638 0 obj << +/D [1635 0 R /XYZ 54 603.565 null] +>> endobj +1639 0 obj << +/D [1635 0 R /XYZ 54 481.737 null] +>> endobj +1640 0 obj << +/D [1635 0 R /XYZ 54 451.347 null] +>> endobj +1641 0 obj << +/D [1635 0 R /XYZ 54 432.358 null] +>> endobj +1642 0 obj << +/D [1635 0 R /XYZ 54 413.37 null] +>> endobj +54 0 obj << +/D [1635 0 R /XYZ 54 365.141 null] +>> endobj +1643 0 obj << +/D [1635 0 R /XYZ 54 340.369 null] +>> endobj +1634 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F16 948 0 R /F8 933 0 R /F53 993 0 R /F52 952 0 R /F14 1002 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1648 0 obj << +/Length 3174 +/Filter /FlateDecode +>> +stream +xڕ]}'Tea/ߓ9b_^9U{` B{ʯO $rwZyOBt7f~deKY{pR7mӾ&a׿? jD~NRk?u^ց4_\o^oP;ڲ.Z*vnwkd|aA: +0pH'n)~V[87ƞtUi$_i;Ar.\/`|[U "e=r6(fi6ˆKI&RKдc_Û{ ym׮c.@Y\˥vk(@B`{CTrk'"Ju0aqdmv Fk$p#}F86hFkV5NFC4~ ֲ͕$p=/ZX0Z +J./;nED +Z۬PGA8\PŊs'ŠI(a"aD:#GB[9m 4c/$CQ.ӓmC/̲"A0i +3JD#),fBŢhb/Ik y,?joQAHG3cfQ$0r~Gh9Ƣz-XETG[͈KEK⥃L%P1MeBR>IPr m2Ac( d6d26 + *tCALΓ ?st>Og$8Zlv[3hoBjܿNh?~B䵑HR=y&{ KUffҦ5߆܃"Ϊ?M 9_3>$mI2o --2-̓2`zkJXc):ԵdIT֒%HeE$}s0MJs,HM %J-p;Cpژ=B~FNV0a.96C :9 MG+񣅾h^c?>Qm +RAB%--@:a2BY,bn-9rEάyH¿`K K6> endobj +1659 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [77.91 304.681 135.251 313.481] +/Subtype /Link +/A << /S /GoTo /D (secondmachine) >> +>> endobj +1662 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [388.801 205.165 435.303 216.013] +/Subtype /Link +/A << /S /GoTo /D (pktcap01) >> +>> endobj +1663 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [311.064 193.21 357.224 204.058] +/Subtype /Link +/A << /S /GoTo /D (pktcap02) >> +>> endobj +1664 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [241.103 174.709 283.117 185.558] +/Subtype /Link +/A << /S /GoTo /D (capsstats01) >> +>> endobj +1649 0 obj << +/D [1647 0 R /XYZ 54 639 null] +>> endobj +58 0 obj << +/D [1647 0 R /XYZ 54 584.126 null] +>> endobj +1650 0 obj << +/D [1647 0 R /XYZ 54 560.091 null] +>> endobj +1651 0 obj << +/D [1647 0 R /XYZ 54 531.96 null] +>> endobj +1652 0 obj << +/D [1647 0 R /XYZ 54 499.566 null] +>> endobj +1653 0 obj << +/D [1647 0 R /XYZ 54 480.512 null] +>> endobj +1654 0 obj << +/D [1647 0 R /XYZ 54 462.012 null] +>> endobj +1655 0 obj << +/D [1647 0 R /XYZ 54 443.511 null] +>> endobj +1656 0 obj << +/D [1647 0 R /XYZ 54 425.01 null] +>> endobj +1657 0 obj << +/D [1647 0 R /XYZ 54 390.499 null] +>> endobj +1658 0 obj << +/D [1647 0 R /XYZ 54 346.151 null] +>> endobj +1660 0 obj << +/D [1647 0 R /XYZ 54 305.677 null] +>> endobj +62 0 obj << +/D [1647 0 R /XYZ 54 248.31 null] +>> endobj +1661 0 obj << +/D [1647 0 R /XYZ 54 224.469 null] +>> endobj +1646 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F16 948 0 R /F14 1002 0 R /F52 952 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1672 0 obj << +/Length 3319 +/Filter /FlateDecode +>> +stream +x͜s6Wި +%@$I$m?@K$:ug],BulԒ@bb\M'R~<.M'CQrt~ O's֭ƿWwT. +E,3(o,| HN7]O| +RQ dXJVpZcsYbEQד~OG3heu5)u=Zdu/NN~ePzV6 +^`*0Ȝ**R(` ١Kǎ\,`)A;*i.``]>F*bW֬L\Wn,n, Y[zallszLɛ߮[~>ƾX(rFםrKVJtvBl23|Vٵ(,]mf;*ZQD Y& (˒EĔɤ} FRA(R҅YåyѬ.sYDLEΪ|&,bieǠk ccPPf+3H:ʼHƐd+2@:cy# gL)=Oc鷂E11$hL(m^(2T4,M 21ج> )aLkw? >,9_KsEDo?ceǀ2ãU1$Cc@*zVc%0x^X0TDo縴/8hGǀfty" dt4=+1#W. /BPJlM229HIǘ2fty"0dt4=+14?Jfu|&/=Qc@鷀բ18NLFf H+ +J@etDeM6YL(讯7/пǛM0 +^ʌ6=u+k-ѿlɨڦ>N/qq‡S/ʃ([γ&Zǐe12; IcGҧK3-`۩Yu J3&xPW⃡9~薍 +\xQȗ떬B-Ulw"ߺT,$b|wAo91Ce. K]Y;we h29w86buZj$X?C4M#0O7|:&"6RtTyyIyt$8h1,CGY EH:|;)f,`0!/w7E͋|,49k +Vqӛg}3ԂJyNwcOs^Csc l! Jzރj MՏDԜ1mqll+vi{m3J;5Wj5U/:[xptͻ٤JQfoGZ}łR.2nZj۵ɹy}yEWiM~%Ԏ>3s"p=M}sf;Q] v;헍-B}Mug7ʙKuV4.Wra s}ܹ7%(6lQCTnIn攃~{:Zkd1λ-&\eR7t4/+S>AcТu,܀LY*Ԉ/|g`,橭5rVh> ߅zmEέjΧ\ґQ3"/|i=B4(7 7ƓIM*1IY&Nc@L)i=F*kYB5\&w'Yӷ8rni-\e G'Vݯs[>K6ِgdd0ÍuZFsj}fv1蟇'JӮ>ꉌ:eE +LTDO`QNxSs8&_(6{nLTU-LD? _W_x>.e='*]1RyM4yp]Wɪ˭ZlhC.~'Ժwv(*TSEq]!E=[O*YQ|~(OKuenN;M‹>vݡd'_B;ۤDAYfg)rUV`$endstream +endobj +1671 0 obj << +/Type /Page +/Contents 1672 0 R +/Resources 1670 0 R +/MediaBox [0 0 504 666] +/Parent 1665 0 R +>> endobj +1673 0 obj << +/D [1671 0 R /XYZ 54 639 null] +>> endobj +1669 0 obj << +/D [1671 0 R /XYZ 54 618.21 null] +>> endobj +1590 0 obj << +/D [1671 0 R /XYZ 169.834 612.98 null] +>> endobj +66 0 obj << +/D [1671 0 R /XYZ 54 293.828 null] +>> endobj +1666 0 obj << +/D [1671 0 R /XYZ 54 276.393 null] +>> endobj +1680 0 obj << +/D [1671 0 R /XYZ 54 233.543 null] +>> endobj +1681 0 obj << +/D [1671 0 R /XYZ 54 202.261 null] +>> endobj +1682 0 obj << +/D [1671 0 R /XYZ 54 182.381 null] +>> endobj +1683 0 obj << +/D [1671 0 R /XYZ 54 163.054 null] +>> endobj +1684 0 obj << +/D [1671 0 R /XYZ 54 143.727 null] +>> endobj +1685 0 obj << +/D [1671 0 R /XYZ 54 124.4 null] +>> endobj +1686 0 obj << +/D [1671 0 R /XYZ 54 88.237 null] +>> endobj +1670 0 obj << +/Font << /F21 973 0 R /F29 922 0 R /F71 1676 0 R /F72 1679 0 R /F8 933 0 R /F11 1016 0 R /F16 948 0 R /F14 1002 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1690 0 obj << +/Length 3508 +/Filter /FlateDecode +>> +stream +x[[o8~ϯ0IU$u],2v&^a:8Bd#)f?~υXR%^sx>CG,(\*['b%?]sUg2[d~򊺅ҏd\ŧ-@ HE-d*La(lNe}9UW<=nszДۢP$ދSX Uy'9y {ǁ@[XoN_e <ȲDe~N.O~cpʆUg2!GU$Ī)ǾHiP})g2Z8MLMéOeu;?ݪmz~&N|݂z<\rQ<)fT\nOBy?Pns?*hzۆ59Y("Y9Qq5-ZOK5ߖY)yvb[ [@PoRw_#؍ t/o5Xϧ`TtEATi<$Q $IQ vG,ش@OMc,xb*mT;Eu' + ٕg7xH5,4 nJ]Fd*ؖ'MUM +urm[l 率)Z.Is,I0!h [ޗk41|)Pou_h*8 @ht[&0Wna $Kmqc[ `x0)Qن]!;~}Q~tiNPn|vB"^fШdHVdL@ɇMY8=miH߷l7οDj3Y29n25s*Mfoo[e2V*4vٕ+ݺ}M[F!\7}QʌW v+`Y,#$~sSbm HT␣0B{~~LfZD,w^5H`^ko`^Ħ*WK" 9ul+DOGJ(%$Tț~$M/q%bבO #齸ח%΢ZĸLBxSk-/S"5mI{` XF +I7KnW!Vzє8JrN[ga_83>|6RHp},>/G9 )8* }Θ<DgTNv"!+eVP{E$b>glx h- ESi` (N-O!>!F%L`ԏ _\㱦aAЗ+N@ǖ rd +f)b_pX?@_,Շ `&ޕq'~b +%Xyk@5y_ȱlF5 6ˬ l`Qc&*SϪ"#(3P5:sEWrr"'CdQ|JRB[B: +xs |Gf  2:'gꀋ)"` 5?cy6kQCt6CH(!ge9P(Dr=E)2)`W_? PŒj7=9(9.d9 4 h=QB΂r!dq"Ol"4b}D #{s0r\ +,,%'J:F99 ( LJ9zB2K},ddqҁ<''`8jN΃pr +椋mҜ¤9bE'(e +Ͽq2M'XG`x Ef*lqrh %, )'@R:28䍾 +wNޱ! +O P_lj:3U*? 7ii:uC?7i9 &kʑ/]a>Zܞ2[o%4,hrs`2dh@Z^ӭ ]RFuw_u4nVf#Uͷj~;3g8ƟJQ2Ou۱ZK:d[}*x7M}w5yDžD*:|%,q'`se;0/6wB8fd)2tG`ͦeIPѭճ{ z3l\xK2G)˒lxcs`2d8@3:77"S4C ?8i-]S 8QwLϏ}%|\"7_1ҁ팜2z2ec,4# F:.v@īҹltGZǣ:\%& ӾsԤb2lC z¼Y !Rs,&NFaD$$u;zZ("7_OlrLJT G)'ەŮ/ݮЉn?r9Օ+_oqTcߗmF]9Cd%A@ahL65s}mVQ 4)a\5u[_uqhUU:&M)8!`&a-ĢŁR61`GiO^\`6%{fr7V$tͫcP$DUoݑF+s-ܖz~m r'Ww;F6i .6.*UM٭F G$¦Ō04ߑSoFl|N)c5 Aw+ T|endstream +endobj +1689 0 obj << +/Type /Page +/Contents 1690 0 R +/Resources 1688 0 R +/MediaBox [0 0 504 666] +/Parent 1665 0 R +/Annots [ 1695 0 R 1697 0 R ] +>> endobj +1695 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [53.004 486.932 94.093 497.781] +/Subtype /Link +/A << /S /GoTo /D (capsstats02) >> +>> endobj +1697 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [212.517 120.889 258.677 131.737] +/Subtype /Link +/A << /S /GoTo /D (hostannounce) >> +>> endobj +1691 0 obj << +/D [1689 0 R /XYZ 54 639 null] +>> endobj +1692 0 obj << +/D [1689 0 R /XYZ 54 621 null] +>> endobj +1693 0 obj << +/D [1689 0 R /XYZ 54 585.19 null] +>> endobj +70 0 obj << +/D [1689 0 R /XYZ 54 529.954 null] +>> endobj +1694 0 obj << +/D [1689 0 R /XYZ 54 506.174 null] +>> endobj +1696 0 obj << +/D [1689 0 R /XYZ 54 400.947 null] +>> endobj +1591 0 obj << +/D [1689 0 R /XYZ 172.502 395.218 null] +>> endobj +74 0 obj << +/D [1689 0 R /XYZ 54 108.999 null] +>> endobj +1698 0 obj << +/D [1689 0 R /XYZ 54 85.025 null] +>> endobj +1688 0 obj << +/Font << /F29 922 0 R /F21 973 0 R /F8 933 0 R /F16 948 0 R /F52 952 0 R /F71 1676 0 R /F72 1679 0 R /F11 1016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1702 0 obj << +/Length 3680 +/Filter /FlateDecode +>> +stream +xnF_bOn.4;hvHJRq_6ÑI*۷k8sfQ"iExJF.aR~x&T~COrZݕK*l5ЊiKB:q#ÿ kvͪ ;E/4.Q|i& g:MBb '"#/J"ҩww{p/G/Ì4 i +g 3)ap)@ep)WMgbc׽+'~^70;^ޖ#InzXgy2k9t+^X[n n[8WnWIZt,돛 Oru&Ln{Ֆ8h'^p:IhR#(\bÍۛnLĻZʮN?My +X.ony8`?.kk ׂ r1$XgL0sLwa3\PL'W bD8!Uƀ8́o!{U% X&ڻ-gIl}wlKCV%h 9C?#nԱ&H-3,πeH퀺x=A}aG)Ve3D.e׼t/soq]wG[@UD{$B!{` s*+E{F};WRf-w"q]=Hp4Q)PZKXF||qOȜȒ]GׁrP b / +TdTb6;X5ժD昺8'29JDu&lo"i< .yad'4?ݡ68$VNfD~Z5 ÄXu,^sVCaΓ14 lxl3$rX$,eP ݁F]l|0&,@C/iUs@DI3匏y s"|3D]XΘhG8JgxʨNS fIRSƮ0FP;j9JQ( } AsW= %ݤE b!sMF+$n'5^Qܷu#umKe>eXhRppNzflM[Wh4c,֤h%DCG3.z)N5BS|IȦxucC%8)0^8/$'v&Eƥ0_{;3ὥ!j?lII=<< o塟'XY$OJUFdtc_ׁq`}Xym+&]~cϞg>Dǝ o$oT~@(`1'&\N-w̻ԻxC,!]ImIqLrq"r$&,