smartmontools-7.2-150300.8.8.1<>,-dXF4 pݣзxNHR/ъh+,@`:=-~,^8=>Lbgs+Q>Fu<?u,d ! ;,0<@Yz  ?=#\,$ , $d, $, %l, -, . ,.,/,0t0,1L1$2$5 $(5W85`95:7]=g>g?h@h FhGh,,Hh,Ii,XiYi\i,]j,^lbnEcndoveo{fo~louo,vpD wr,xs,ytD"zttttu(Csmartmontools7.2150300.8.8.1Monitor for SMART devicesSMARTmontools controls and monitors storage devices using the Self-Monitoring, Analysis, and Reporting Technology System (S.M.A.R.T.) built into ATA, SATA and SCSI Hard Drives. This is used to check the hard drive reliability and to predict drive failures. The suite contains two utilities. The first, smartctl, is a command line utility designed to perform simple S.M.A.R.T. tasks. The second, smartd, is a daemon that periodically monitors the smart status and reports errors to syslog. The package is compatible with the ATA/ATAPI-3 to -7 specification. The package is intended to incorporate as much "vendor specific" and "reserved" information as possible about disk drives. The commands man smartctl and man smartd will provide more information.dGPL-2.0-or-laterhttps://www.suse.com/Hardware/Otherhttps://www.smartmontools.org/linuxaarch64 if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in smartd.service smartd_generate_opts.path smartd_generate_opts.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi # Intelligent drivedb.h update, part 1. # Extract drivedb.h branch for installed version. We will need it in %post. if test -f /usr/sbin/update-smart-drivedb ; then BRANCH= eval $(grep "^BRANCH=\"[^\"]*\"$" /usr/sbin/update-smart-drivedb) if test -n "$BRANCH" ; then echo -n "$BRANCH" >/usr/share/smartmontools/drivedb.h.branch.rpmtemp fi fi # Save installed drivedb.h. Maybe the sysadmin called update-smart-drivedb, # and the installed drivedb.h may be even newer than the new packaged one. if test -f /usr/share/smartmontools/drivedb.h ; then # Be on safe side, remove any potential drivedb.h.rpmsave. rm -f /usr/share/smartmontools/drivedb.h.rpmsave ln /usr/share/smartmontools/drivedb.h /usr/share/smartmontools/drivedb.h.rpmsave fi# First prepare sysconfig. PNAME=smartmontools SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi # Up to Leap 42.3 and SLE 15 SP3 Maintenance Update there was a "Command" meta comment in the sysconfig file. # It is not needed any more, but fillup does not delete it. Do it explicitly. (bsc#1195785, bsc#1196103) sed -i '\@^##[[:space:]]*Command:[[:space:]]*/usr/lib/smartmontools/generate_smartd_opts$@d' /etc/sysconfig/smartmontools # Then generate initial %{_localstatedir}/lib/smartmontools/smartd_opts needed by smartd.service. SMARTD_SKIP_INIT=1 /usr/lib/smartmontools/generate_smartd_opts # No start by default here.. belongs to -presets packages if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in smartd.service smartd_generate_opts.path smartd_generate_opts.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi # Intelligent drivedb.h update, part 2. # Now we have the old system drivedb.h.rpmsave and the new packaged drivedb.h. if test -f /usr/share/smartmontools/drivedb.h.rpmsave ; then # Compare their release numbers. DRIVEDB_H_RELEASE_RPM="$(sed -n 's/^.*$Id: drivedb.h \([0-9][0-9]*\) .*$/\1/p' &2 "smartmontools updated to a version that requires new branch of drivedb.h" echo >&2 "Replacing your custom drivedb.h." echo >&2 "You may need to call update-smart-drivedb." fi else # Saved file is older or equal, or saved file has broken release number. rm /usr/share/smartmontools/drivedb.h.rpmsave # We returned to the vanilla packages, remove files created by update-smart-drivedb. rm -f /usr/share/smartmontools/drivedb.h.{error,lastcheck,old} fi fi rm -f /usr/share/smartmontools/drivedb.h.branch.rpmtemp # Before Leap 15 / SLE 15, there was a incorrect configuration of self tests (bsc#1073918). # Perform a fix of this nonsense, even if the noreplace configuration file was edited. if grep -q -F -- '-s S/../.././03 -s L/../(01|02|03|04|05|06|07)/7/01' /etc/smartd.conf ; then sed -i 's:-s S/\.\./\.\./\./03 -s L/\.\./(01|02|03|04|05|06|07)/7/01:-s (S/../.././03|L/../(01|02|03|04|05|06|07)/7/01):g' /etc/smartd.conf fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable smartd.service smartd_generate_opts.path smartd_generate_opts.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop smartd.service smartd_generate_opts.path smartd_generate_opts.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in smartd.service smartd_generate_opts.path smartd_generate_opts.service ; do sysv_service="${service%.*}" rm "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart smartd.service smartd_generate_opts.path smartd_generate_opts.service ) || : fi fi # Clean all attrlogs and state files. if test "$1" = 0 ; then rm -rf /var/lib/smartmontools fi[T( @]JFx Any&Ph~+B8AA큤A큤A큤A큤A큤d 512 bytes. * Fixed smartd.service 'Type' if libsystemd-dev is not available. * Fixed '/dev/megaraid_sas_ioctl_node' fd leak. * Fixed GPL licensing problem of 'linux_nvme_ioctl.h' (smartmontools#1226, drop smartmontools-nvme_ioctl_h-license.patch). - Update smartmontools.keyring. Developers use new key. - smartmontools-drivedb_h-update.sh: Recognize equal files in different commits. - Drop smartmontools-nvme_ioctl_h-license.patch (SLE+Leap, now in upstream, https://www.smartmontools.org/ticket/1226) - Remove smartmontools-drivedb.h. No update available in the upstream branch RELEASE_7_0_DRIVEDB.- BuildRequire pkgconfig(libsystemd) instead of systemd-devel: Allow OBS to shortcut through the -mini flavors.- Fix license of nvme_ioctl.h (https://www.smartmontools.org/ticket/1226, smartmontools-nvme_ioctl_h-license.patch).- Update to 7.0 version - smartctl * New options '-j' and '--json[=giosu]' to enable experimental JSON output mode. Also supports an alternative flat format suitable for grep ('--json=g'). * '-l devstat': Fix for logs with 256 sectors. * '-l error': Prints SCSI Pending Defects log page if supported. * '-H': Prints SCSI Format Status log page if supported. * '-x': Now includes '-l defects'. * New option '-d scsi+TYPE' to disable SAT auto detection for 'aacraid' and 'cciss'. - NVMe/USB: Device type '-d sntjmicron' for NVMe drives behind JMicron USB to NVMe bridges. - NVMe: SMART/Health Information and Error Information are always read with broadcast NSID. - SCSI: Various improvements for the decoding of log pages. - SCSI: Improved handling of READ CAPACITY command. - SCSI: Support for SAS host managed drives. - update-smart-drivedb: New option '-u github'. - update-smart-drivedb: New signing key. - HDD, SSD and USB additions to drive database. - Always use '-d sat' for USB vendor IDs with known SAT support. - Linux * Device scan with '-d by-id' scans '/dev/disk/by-id/*' symlinks. * Dropped device scan support for devfs. * Fixed device scan with multiple '-d TYPE' options. * Fixed device scan crash on missing '/proc/devices'. * USB ID detection also for '/dev/sgN'. * smartd: Could now run as systemd service with 'Type=notify' set. - Drop upstreamed patches: * smartmontools-scsiata-scsi_only.patch * smartmontools-systemd-no-syslog.patch - Update smartmontools-drivedb.h to the latest version from the upstream branch RELEASE_7_0_DRIVEDB.- Fix smartd.service EnvironmentFile (boo#1095662).- Add smartd_generate_opts.path and smartd_generate_opts.service to update smartd_opts if sysconfig is modified. Needed for [FATE#325524].- Fix SUSE default of S.M.A.R.T. checks: really enable nightly short tests (bsc#1073918).- Make possible to disable broken SAT support by -d scsi+cciss,N (bsc#1038271, smartmontools-scsiata-scsi_only.patch, https://www.smartmontools.org/ticket/871). - Update smartmontools.keyring.- update to 6.6 version (FATE#321901, FATE#322874) - smartctl: * -i' and '--identify': ATA ACS-4 and SATA 3.3 enhancements. * Control ATA write cache through SCT Feature Control with '-s wcache-sct,ata|on|off[,p]' and '-g wcache-sct'. * Print ATA Pending Defects log with '-l defects'. * '-s wcreorder,on|off': New persistent flag ',p'. * '-s standby': Prevent temporary drive spinup. * '-n POWERMODE': New parameter to set exit status. * '-g security': ATA Security Level check fixed. * '-l scttemp*': Print minimum supported ERC Time Limit. * '-q noserial': Now also suppresses "SAS address" output. * '-i': Print IEEE EUI-64 of NVMe namespace. * '-c': Print NVMe 1.3 feature flags. * '-A': Print NVMe 1.3 thermal temperature transition statistic. * '-g/s dsn': Get/set ATA DSN. - smartd * Uses also device identify information to detect for duplicate devices. * '-e dsn' directive: Set ATA DSN. * Improved SCSI/SAS temperature logging. * Silence emails and log messages on open errors of '-d removable' devices. * Exit on device open error unless '-q never' or '-d removable' is specified (regression). - update-smart-drivedb: Now authenticates downloaded file with GnuPG. - update-smart-drivedb: New options '--trunk', '--no-verify' and '--export-key'. - Device type '-d intelliprop,N' for IntelliProp controllers. - SCSI: Default timeout increased to 1 minute. - HDD, SSD and USB additions to drive database. - New smartmontools-* mailing list addresses. - Man page formatting reworked. - Linux: * Uses SG_IO V4 API if supported. * Devices behind hpsa driver are no longer detected as regular SCSI devices. - switch to new url - drop upstreamed patches: * smartmontools-scsi-suppress-no-temperature.patch * smartmontools-scsi-temperature-check.patch * smartmontools-log-scsi-temperature.patch - regen smartmontools-drivedb.h- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- SCSI temperature error fixes (bsc#1047198, smartmontools-scsi-suppress-no-temperature.patch, smartmontools-scsi-temperature-check.patch, smartmontools-log-scsi-temperature.patch).- Drop systemd dependency on syslog.target (bsc#983938, smartmontools-systemd-no-syslog.patch). https://lists.opensuse.org/opensuse-packaging/2013-05/msg00102.html- update to 6.5 version * Experimental support for NVMe devices on FreeBSD, Linux and Windows. * smartctl '-i', '-c', '-H' and '-l error': NVMe support. * smartctl '-l nvmelog': New option for NVMe. * smartd.conf '-H', '-l error' and '-W': NVMe support. * Optional NVMe device scanning support on Linux and Windows. * configure option '--with-nvme-devicescan' to include NVMe in default device scanning result. * Device scanning now allows to specify multiple '-d TYPE' options. * ATA: Added new POWER MODE values introduced in ATA ACS-2. * ATA: SCT commands are no longer issued if ATA Security is locked. * SCSI: LB provisioning improvements. * SCSI: Fixed GLTSD bit set/cleared info messages. * SCSI: Solid State media log page is no longer checked for tapes. * SCSI: Improved handling when no tape cartridge in drive. * SCSI: Workaround for buggy Seagate firmware. * SAT: Improved heuristics to detect bogus sense data from SAT layer. * smartd: Fixed crash on missing argument to '-s' directive. update-smart-drivedb: Now uses HTTPS for download by default. * update-smart-drivedb: New options to select URL and download tool. * update-smart-drivedb: New download tool 'svn'. * Drive database file now also includes the DEFAULT setting for each attribute. * HDD, SSD and USB additions to drive database. * Various code changes suggested by Clang Static Analyser and Cppcheck. - enable "--with-nvme-devicescan" option - update smartmontools-drivedb.h file - use --with-savestates, --with-attributelog, --docdir instead of old options- replaced keyring with 2015/2016 key. pub rsa2048/0xDF0F1A49C4A4903A 2014-12-31 [expires: 2016-12-31] Key fingerprint = F41F 01FC 0784 4958 4FFC CF57 DF0F 1A49 C4A4 903A uid [ unkown] Smartmontools Signing Key (through 2016) - Update to version 6.0.4 * Device type '-d usbprolific' for Prolific PL2571/277x USB bridges. * SAT: Support for ATA registers returned in fixed format sense data. * smartctl '-i' and '--identify': ATA ACS-4 and SATA 3.2 enhancements. * smartctl '-l xerror': Support for logs with more than 255 pages. * smartctl '-l devstat': Prints ACS-3 DSN flags. * smartctl '-l devstat': Read via SMART command if GP log is not available. * smartctl '-l scttempsts': Prints SCT SMART STATUS (ACS-4) and vendor specific SCT bytes. * HDD, SSD and USB additions to drive database. * Linux: AACRAID fixes, SMART STATUS should work now. * Linux: '/dev/megaraid_sas_ioctl_node' fd leak fix. - Update smartmontools-drivedb.h to the latest version from the upstream branch RELEASE_6_4_DRIVEDB. - Cleanup and remove conditional macros; the package doesn't build for SLE anyway - Remove smartmontools-default-enabled.patch; not needed anymore- Run Self Tests: * Short Self Test every night * Extended Self Test every month * Discussion: http://lists.opensuse.org/opensuse-factory/2015-03/msg00040.html - Dropped smartmontools-removable.patch - Created smartmontools-suse-default.patch- Package empty /etc/smartd_warning.d for warning plugins. - smartmontools-drivedb_h-update.sh: Fix default branch name. - Comment fixes.- Improve drivedb.h update scriptlets: Detect update across branches. - Check state of smartmontools-drivedb.h in %prep. - Add ghost records for files created by update-smart-drivedb. - Improve smartmontools-drivedb_h-update.sh script: Perform spec file changess. - Clean up on uninstall. - Update smartmontools-drivedb.h to the latest version from the upstream branch RELEASE_6_3_DRIVEDB.- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify./bin/sh/bin/sh/bin/sh/bin/shibs-arm-4 1679637687  !"#$%&'()*+,7.2-150300.8.8.17.2-150300.8.8.17.2-150300.8.8.1 smart_drivedb.hsmartd.confsmartd_warning.dsmartd_warning.shsmartmontoolsgenerate_smartd_optssmartd.servicesmartd_generate_opts.pathsmartd_generate_opts.servicercsmartdsmartctlsmartdupdate-smart-drivedbsmartmontoolsAUTHORSCOPYINGChangeLogChangeLog-6.0-7.0NEWSREADMETODOexamplescriptsExample1Example2Example3Example4Example5Example6Example7Example8READMEsmartd.confsysconfig.smartmontoolssmartd.conf.5.gzsmartctl.8.gzsmartd.8.gzupdate-smart-drivedb.8.gzsmartmontoolsdrivedb.hdrivedb.h.errordrivedb.h.lastcheckdrivedb.h.oldsmartmontoolssmartd_opts/etc//usr/lib//usr/lib/smartmontools//usr/lib/systemd/system//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/smartmontools//usr/share/doc/packages/smartmontools/examplescripts//usr/share/fillup-templates//usr/share/man/man5//usr/share/man/man8//usr/share//usr/share/smartmontools//var/lib//var/lib/smartmontools/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:28372/SUSE_SLE-15-SP3_Update/9f56302e7c40a40e520d025fde81b53a-smartmontools.SUSE_SLE-15-SP3_Updatedrpmxz5aarch64-suse-linux   ASCII textAlgol 68 source, ASCII textdirectoryPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=1471c6c5d651b496057354f87c14c5b94e92a471, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=180504a93de424a33bf39d11dfea24eddf2b7c43, for GNU/Linux 3.7.0, strippedUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)empty!RRR RRRRRRRRRRRR R RR RRRRRRRRRRRRRR R R}#%2q-lRutf-81f6e6daf6967e49ba3de641a859da62ad5f264c56a2f1ebe8cbfdc991c842d08?7zXZ !t/QL]"k%˨ @y*HKItk=,Uc٢D4DHπ2 4ܝ{۷љ\y ?t~uB8_8 +t^kp٪$+a֟%XS5,vI|WY,;N5gPB/V%@76nbp| Re.{]v}ހ 륕n-ck,X']˔$dcQ%Uhe0e lI~*V|;=Сbk'#g.:ƑqX̸PKy.MhK<7n2"5Ovy} ,l+tpHmՓ̒,]^>uJN6gb2S LP}N$YTAWK˸nkf_͓Y'JL35{l#̐TMܱV 9@@9|WkEPdx#%y`^uBa!j}p*X3;a@tLl%5y 8M?WQ#I8]N*Mi6ow.hƁa/[\0{V ~`.^ 1C ES `݀~!kF*AQmPsnX`]41#ڵ8rrڮGxz`羦-g80 ?zm1.jNqP:#J+J (z_[i>k0ɤUpPlra/PPP;ZѣWV+dKu6ˣ SK82\ϊj6/땢:ol0r6LWpinTRQF! SlB!-< B٥Y9Ũ)%˰e<;?j/Kvy43]Y¹lHlbmCdp6n b,e4^DыԠ_oWJ$7$TS;r[ן/zWnuݟJ^NFhċ8x+;K00 V8xbV'#D` aVDOt %dE{9pŒB 290&ß`m-1;ef$8NVv3͍ U::ƚ/-pyPAj ^H)a(IQ!ß=U񏷱8%,!R]h^UUM& < nn?<*@W^,zQC >jZȼVG*ɕ"+Peu /7kP?oީM*ӻ~bsbJt RJe Iu$}w{ݖ ߆xQb|#:EJ"S)⾘K $@kkQh*q#Pd?Oj7Vh= 7]vhb$8Y'%D5H P猈!J+3ҟ9fc6kG52Fҫ619r|U3'^ !I?:XZ3V_QŊj@$ҽQ<іEu(hx7\Gه䮰#$ق׵[Ä659 NpETN\4xÝW/MTWWHүbϛoXU֢C1!w"w/:R/Brm'kQc˱NOh?qB+w܃76]wx<0 dEd`cbh,G JM(z%WT2^!]nl0媗"+QJxk7& Wɞ!-g5w3 n5 V!wxxŁ(z/Cn(}~-{5H4U5WY%l` r#t|7Z06SYe38!Ȱzq@Dh|13:4NH/)$ԞJ1dU,n/{kI</0>~_,e:gKaUP%> 9p91'Ft5:orW(+II|`R@ҪXFF^*\FɋhJ8! ^Y= \$T6'I`XF#e1l +5Ӽ hI a_\t;'.@4[IkbLC uNь?J?m76N!èXwȮ1{ʶIrٱ+EYZe/.I@N> Mw+'=8瑅,sW*HiOQiP#B+ߩǍ|8Op'3uCoa==tXmYIk azpFf'(#ٖ2{[ZTX[.Ȥu L"6&%Oj) ?ӆ\? $.l} a`ZYCDBW~,wr`WhB$⁗հ yn|FCb {$O$م`L@M;'\DZf#_oio-pEø驎J!+ ~qb"H9Zc75Jk+cuÞ^e#캄׎Fmh %Z;6+ !NXVSX>|s@\+ޗmPf9(Kqɑ.(kxk0c4eMҙ,ʶ}~>OЭo= 3^*uX7~=W3s%57ϼK$L @*<Z]ts NL-f*)܊w_W^s40- M9IQ<)kb}e}21;~Rsj:rUhhHՍ;t8Py~2|<9: [^yx@+vYN J(y-y&٩Y|ցa-x3a.Kd)x-\%|"|P!\BA%z.p,.Y ɯ0|ag&e u(0BmM:^ iB."Л<Je۩tZAn+|\fq,Jx: e/{_#ܿMWf6nIjc Yc\k7L)&譎~]?h;+l,nFnvq|7I9G!mG"H'yZ\Ofnx*_|sjm1zkOv/Z#6GgA_ P:E Q@B̚VdiyP4mhGXC,Q3FWAWT>&na-Q׷Ck]xaS觽Rk4cͅ ydBjlj|,=Tv\ͥeU[8 ™kT)<\7Uq|zTXOѤiK5qIM)]X PKR/ 6$1w*2DA_Yv.t7o=M5l4[0q^{qB0rƅr ZӒ8ɅiQˬXP67fe: 2-k:J)`v_o#s^J#[z&dJ ȻnIA 4B3NkIW@g(DF+XT 4Q^m5ĭ QfęDng!d"=σׁ+pS>O֕$%/}>GSQ:ZB+v%-Wjs%Xz0X/O]jZ@'z{<ճ[KT= XKYYh -̪Av=>>ֶPOF2Q/q4 FE J4@1ևc)[e9{HV_" k\!3J [~L%ޜ,? )mDž"̔>Ϗ;Y)/,?``!6P˿n /6FX| 7 F)-LY$ 5$#:&q=#+[+嗈=ޥ8'#&~Ɲ ٓ[ Y)զPkyپ`QjtRʙ]0"\w͹Ϝ>\i .G5ODᇦZ[$dz/Ղ%2Vt>MG<#@4Gd1| 7{NHe.>cFG%2̨fn1sft~yP`~lC'k X5YIhؙσ@|_D\waY/G8sR-c{GVt/ȧtĊR 1рx ېOGS_Ї.=#c]Y*}ɽ;̐d&)EH_ B/xm,U[A8fc>"o,&U4l7t]B %voާh8QLkO`oPtTtҀ՞&P; o=4[fhME5\@%.e ~@ ij_9WD;CZ>%gkꃌl,`PS?hX^1|D !  B4W7ñ،ۀbK7Xx{āsG j*gxgM[2wAC̓1n";K;gY5P406ͶZ7(Kugx ||;$z NFfk0˔$zk@5lkI ;*+Vc899/fJla=^i]mBgz.[C,yPI#jfUFA4V`tۋH.՜kxILJE|WmP.{'GۉJz]H]kQ/+dvx,<-$_g.P<v2qa][EoYﻑէxl`ߠ* m*? aWPTS*Oxz 9u$;4;C ôt`zgN6z:ԏ*<1hn?B. bq;uφ+wۅOiɝ jCxuYؾUbBLQUb| :_#a.%Y~lĿ8ʋeM:L夜Ch35 lf3 p:s,&&`̰)v$ul6J,/ @\>ϻ^|N_95[g\,|BaqUi%QWW>,Ӕ0-ž{MnzN8K.P="Т'|V,uA5l`M\_U@UHKNx[ky-H⮕-H^\Yb|PZp 0A \i.2'~ʯ? >I~k:?bNQDt,AllN`k-4 嫥?Y<$ 7j("5 (ĕsz'v U"HǭߖΘ1;n$%w.Lm/ĺ<|_oLR2(g_E:^1zb I nbt\MT7\>gH\YAs]XT)M\T #/bc]Uizb޳ފC-E )ȸ.M-R%̜UJ} }Mqn 9zyl$qy },/%5M,Lr29 B~o!'G_K5~yHB\j|0x7j=JV;f,g sNB7=3Ư%POx.7'{^˫?1r# N*\e7 W}Fof=pJL{63ؼIeI[;zy^,Wv "CÖ cF.׼tYeDyj1\ w5)@TuMHX{\|>n&7& |%4s7: ܚL+1C'Az %$Jl ̇'M`8 /~p)&<!`xAi{ " `-;i''U8`qdɜRnJ%H$19|[wIZ46(~h!'h74vT{9))Hђa/JjB`#x q'{ Rԏ]]tF{DZ 2 tz@Le{IC{,&~avhVm3m q5[=eC?c4~hzzR؈ TT9@_/'n&aZofpadNy B4b@'rM@ -mMegi4(^ثc{)a:TD="<ʿ, f%'s/J'iM'-{n7[ Tҏ-j+7 OjkXMT İHQczf%:sC*ejvI&$#9&7,'G19 6V!ܜLk4*>-av&7vP!_U&F,! Q )9^e;0cb-t.*K~`<'/e!|* Cx+pVfqTf%L㌎_R:KRZҭSU"VG>ΡW)xLf%[4+6 ޣ-' nc Hb@bf'>T' ? yz+5ZaDG\&5ˡ$_틁{Cm!hM 2<Ʊh*^v$Tm81w?kXy>"W&]TPȋ$85 z$4[;,?ngAL\ S֨zUvcr%Q`.B.m4 t+A)cYcI?wfxvۓ)u[ɿܾ Q@-ӠJp KDJQ\ c#?bz,q^7GVSÙq 3E~vXb^ǒ4`MSxԄ//+ls\b;~{ٻcNPEBnc}ɺy@Wc5U p0|&$w ;!F; $r"04 \C74%JkV%cm ǥTơe Z©$ݞA\[i(N\i]^R6oƸd߷,r]85GuBP٢~}U\QgeП~i+/눧T@֚vaYи#R2yaX$n#J;S|?ƺ3o0R41U8*'3ƷԵq1sY0R-TF#ΐI:HiH?|g{uM`JBE%UljH7i+]+Ggٵt%Lgo:R}|v cd_YjnuxEbz?#@O!߆pYb'm8 XrM]Rp\3L#OQ}}#!Zwk#6Z8-73óz?4B;3Snb& rr6ҩp] e|\* }@ EUg8ڤITz ۑ2+nv4\! C288Ծ+]]Qh>ڲzHӿ`)IesHг,ʳ0/{W@>YK|PY:#k?Əa*YH&Brv"\KX}N)pe =ӕOmT^C ؂<9gthz ,H)9$U_kV0\P]@ǪX}{[Q׶.r䛬Edם7C}XQS\D,p+E8msx&.{|: /Q#dN>WyXۨ! y\իQА wЎC]ŕt}Iu4n*7Һo+ hm8^fCΑmHb!:m MCFA|ʵ淘nr p§V%QOb~A?U}\"$ˆҚ Ki]B.bUt7S*!CɄ⣴kU BIPnX[vR.H9jW''35BZQ(=]kϢ) FSQ˜zD!ub ^oCù> яD%‰cfά-ݎP4J,+>uh:)cȭYWGƀQ$tΡwo:{V7,يl`D+,T}k) "VbK3]Sbh3;l|/b=p\2|:r3_n[SZ~kQ 3{e&:?gkC`R E6S}\(X+!is9&y>.;q[3wY4֯T mfYdTgv?:e b"!ȡ,VijqX.PovXOBE%,0BHT#2ۖOiMTxHmANtF}R|@Y\x3# _z3[!_2^3Lk{D'}Il:zj̴ÌD54rPGRMO=כu#M>wkH!*zbdFKy}i`N+#i7E1el>d1niR VuN[pXw&Eˏnm`lwW^_9Z0*ٶ ʮ)mk"Fx Z y`C_'X^&B9OY>\[V|b8~PEk8Y=(w~ɨ_YluTy-q kd ۱=B5'\ٞv;Xx=Qm(-QIPyq ,ǂo 7<|b^E`, ծ ]çgƻxzZ'N.>7I}WNCG_ik;iap,$_e<вޛiqᣗWz p2lXY/}AN*EG)Pvl`k+n2E'o!/gWQR#*̊d5 zBpU_lXêo~$g}䧍Ͽht5BNB 綝Zw;5JDqҿOެv3‹ `If$TPG㓺Fi[Nf$ӋAe0P3ZW1LHh?։gi>9Jʁ~ QVUN0Px|JmB)Ke=Ԇ-anɧk 02hMP{T`xni: r*0z=:ˆp[WbjimQo3-eJ?Ig*zGE (kP8{2\ *[+*R$r5&ш5*4 >h- *1DF+៙XMflEl7!;¯dL"x=#|̈́s1#zqD0mtB2tLnBY֏I8>SC’C[II%`2o М`y#aޚE${<77X%( 5?՗qO½/&cy0O D?tuۜ5ZL;&@|ܸ@i|,Y, ~ٔk6'ev:hkopPc^s,1#w\h /C"7)QM"=f5|ֳz@":~eBz^/ h+Vbh֨,Kr 꼎Ej_nKfżhj~@o0-m={eM{rkCl2~6xi@OtN K~x<,޾= ]3.o [~aDLoZChǕ,Z#G{gIjXxy Q 8@|AEPB<˾Dm4"Hj3QJجQp Po& nIx#Z"X_dzk)`iB3 YTqf\8XD:t X,9UcBЄw ,/%ŻM8g%} Q֛9{JіbUu*,S(.bIƀ#,{:"L"Ccu }{h+_tDƩY\<*=s*I*{Ɂwyrj;g#zݤϟefqEHtxB*/Kp9Y@?i/c=h^ݬ%j;ŲP-u }l}idǔx9#D{wjs97ާsrȔ kxiʑl Lx&{FU1bgD6Au͞7r,(!3j9LC W}hӯu^>ߟQ(a,vfvfbAЩk!"J٦Ӟ6Dp9=Ӊ:JvjFȪl;Y+2yAE 1]X}ݓUXÕ7{ Tbql7)xݺJШ}7Ni.AIJ?4C]4G>+pk%rVG>c?c>ɮ´AZt|oMl׈`䰗\cC wBmDk?bW{SVFUޫgV5LwZL}F;R+|_G<,!Q͇<}_r nA%?\ j?"N߷;XU[Ɨp)YE^J_@I$/rs=twŌ-ՕQ%d4k^FK}xKpiQͣd*sf>qYh` +W/Oܕk?&q|AXX׈q 6KZi/XҩMLKO[#tԋe$PVs2v&ezV {tf: IRA vEe!O5l5G&里 yx6"z!rfP׍PcZz ,(}??OhSIX:U"@fiZGӓ7<ՀkcP#I||8ۿ"!^tI\a!O/:V}-H9mbB ?Pz27:nPMS_@uY~(biÌ-^77O-YeN#'O5-ЊqvӾ40MgsHA+tʈfB)Ljn6INt#F>+Vej3A_F"[}OOVu6=>hiIRVEJ577Ro*h?̩G2X'j&JNglxʨfF7֙zn`L׽ހsN] pa91 MsxxQ?>EDt^Y0_2*%6Kgf4 sᮙ@k}L2bh$]Gv'W7 3I(ĤzKk* 2_hFqU7W5Kqy+ٚ=X٦iʔgB!ܕ<,t 1das?i\9"<98LUTԠ跛o=7B.mwUT ;jyo4'@:02/.g$e]_e]ҽE3VR"πV$&veL=RWm.5-[\_}:kh6lIɥK,*N9F w{6ğF'ն~WkKJ-gIZ=eI2j9\AE>w-0W%$ :<$ƩQ#}u3d,s_ʎK[ل "'VvP8KIN3t*61:D?ш dZiho]Y5JsiS?#uçi^X?9nԵ>]!Oy(w:!O?tWIJ4ʪcWJҵyv"##0&CD6E)ӹV\}ZۿsY'iZ}!/@5Tɀ 6R:*u䐊P:=;.6o,u1gbbkB< a7R[zB༇{Ic%ɋSDŽR{GІ?Vn#"Rc |X*3 ŧ/jLXmF4)&g gU$aXbձcp6{a/(KRsEip@C##`;]]J%KN 5D;3D h66J¦߀kc7T7[GZ㤖i"{ Ee3*Vl9G4w;ݖ#.bР u1ּg2O -GSYttMFNU`L(-nmX\1/MtE0A63He{D%z嬊"? M2ʣF$7X`s/L/L(.Okڣ̍s&+i@Ap@h[fAg=zth!rѷwK췽CD#%IA)9uY-%:, =yhAPZ YY%k[F-Ҏd_X .3d\?>HY k wJŃ<IJ+Qp*쀬z/3h^ճ=9@Ym Eԃx^c11v wGWL2JGKi|r,V0ׄ_L GRK=%seLJC~NH !7Ez Ǩ-#P(;`MeY^AAMd W<\2n5G: % 2`}$e"(*$b\&bwT6A叻HǮa绔Y筨PX3opoPupUoCNy> ؆qH9QD\ <%rTrq߉|nO3gY71 h%X +{2 ^L (nӍ 2hڪQ#2} >zHyɕyp̶>@%ID:ȃ2^s޹rnVRh )DP8 ij)?EF6.ѡZre _U륆I2"mhm/|:Z_ǁhwޗ Mlc˿4}֦qM&OeJ%gP%/0˔wҧ>N6]L&Y 3R0f%hD6LxȒ+R^]mxf_΅(߈OTlߓxr-WoגdLd%IFnf1$JA4+yTҌַɽ"c@yʉ]s?<~U>?ŀKx 3I6ll4>5_V+a$93SVv^5f&P1;颦Rpvv?`i>Dєk#e D*vm\L2@U~qҗ1q3(]d^D^aރε/ܬ_5!=Rş]" zcnLB@LOwE`@AG޳tW+ cƆR".'} :; oN hpb13#KW&#R@|DX3+:,@۽<?g4\pKBf, (.TR "Q2bn vg+ ]g 2rXJ_ج4|Mќ^lFةRJU ^]?ax3D*/u'qʰLv}^f.x9^ 2SPmh4 tBaYF= h9ڒ#00zE8E$Ӭ7 ΩEt<yIS_ӟ N$oq(v | R>"]׹Xdbn^\ =`mf apT7ft43ݣTͣFUqҕI ųV@BabJ\}[tHV'En OhIdxsoPY ? a f=e{ݤa)_ ܡ/%/}y!2p44%J2h{DZ,y'fZQ<†|0'5I/g=xn#{Dǀ6'\JfUͲ\MR=~7d[a ֹN@YRMn{znf$u3t `.G>6[D$V/!-> &q$Ù SG9#TJLh&C{\ZS#wzSsuU=T`o3o/xX{ CwI, TQ捥i DQ`LZ=6O[$*RPPg/+@ û35mX^~!"Uj`lRyX~PX*K^3yU~_ǏΖ[v.[y M!;[cx֡Ye9KH*?;P]qu5ʹTEɒQlDhՄc5~̢؏D9V;e㚱Wrn2$d BqY>Tϯ6ŲθuB E_\Ko[Nwz0Jyk 77OJR@:J'CVJS]ƈپʜJi,QrI4$Oy&ܛf=}&} M9rx3Yc6E {9={sܿ3?RQ07lDdHJɂ#^l,O٨Hy/3ǖsrM'>{Xc'?$K}ڲo{Iw_kdL֑"gl i!sBISOm]Rcp55;ދhb RZm}dɆuBCxPgʥo8T,".XhheoʞV r 9|'%t4/ȍO{kCbߙ>Ĉ,tf|y!G,2'm~0*&ZZ"ELJnd8hh8 _P>?Jt>hBhdtz}BڴRś=>-싔,ũ)5I35dSKPŶ=1F_زCnY )mDq_c(媓:uVd *&`o]l)ao cht,'x<'.R/t/qOՕW0/< a"#ܝk^,mRDTԺ~Z{fu`cmHTtHΤIP0ىnbF|)ɇ̖g}tM$tn@3} uRf.z_MC tY]UM{K,2B7-,;fx*1v/˜%F&g`fV(udC޳(l9S|6Z4~GlNJrX[bž#:~_Jw1 ǘty,< p.r:m^Tf%~+\_L@a)eD۝) 7iy{B~Ywvh,wj:(C*ى(_tzǫ"d.Kk=*Kk2jM1T R ?})BddQ5fD؎QƺS`Ro>X`91'=vQY1<ұEqHaI%H[>sdYիRit-gcO=?Ch M2ː^ "u3ܷzVb]mė^4fPk=mM|iWoy/c6>a۴ aAʹ"]3Z94/­Jw6N<}\>t|X Nize+R3|~!DV)2w( JXN .#.ٗloh1++3(扄ب S Ti²607_"d)U3%! |$}HCBF')sU4nC{soʇ5 d`Efs|)oR@#0#F#a vI^Җ(P҃ii(w|{"] ŰLlu:ʋ{rL AY؄jACi}YC 7=|ioĴW)}" j6<]zAl2 坋)j_=;Z,;/#b/i,IXibD(|utc)_| V&h4X*G }x[8v/C^E 4,Zyj,Ҕs;dy*˝NÙnO @| )\|I;pDV争T\Zݣ#p:!>QD7AѝXcbbkw@,eC#0 2ÌtiC,ΔPpPB5ב6T?a 0=lUp^fǞ~Zm7Ke@t'=v|:@U\p9Ƕ^~XS Dt&E. EJEpI's݇ci/~j)o&=UYҥʾy9`ݰ&0%4A/Z=chw:gc haPf?РEWÃexqW[EB.2jw5_s)_  5qdK4?j-B1E 㵙Ѧard# ,ooо9 Šj| *7zWQZ@.!+Y7Sx``V|6̛,ȯ*-)>B@MY $BDBg4k[dk b)'¤c,2|k͐` z&-kZ/=5,ky=l˱4.$č>3G5ds˳ ɡl]I yJ|0sXf0beKI\j-KH)\uZ_D#Vy`Q}TMVo̢@ ' $B5Jy ɑd `ʐ9"P!jdv`P}ٖ%%ps Du?a))9}F5 Hsذ/@Cdii!|FUzChᨮYb3\zsp O Il)6ʧA+̜@HA3rbS&S]El5aR(Y(H\zGu#"%oYN#XZkq2PHEWN px`GT3NE> Mж@ϥ`|uׂ2ȍ&1d{q:^?H3-lK$WAx͐!Yv !e_r"Ճ*p>OV`mFmG!^<,p[[髽H8) B[ձk_(}8Cy YOiA W:^չw$pl3+Z)+h驌P'q'nj.63$`#r}`hO?qy]3/DxQhհ FUU<%: |/Ǧ"d!cQ|׫ ˙+1A ;ESN-NA&em3tʠp.o' iN0ۧ)Nחn5m"3śS5 ߸8I"15^1ւ_BRյ@Z]B$o+L)/u~ ,t+5#{Ɋ@tKnf]*2$IDygv| 4Axپ">>bWPv$լ $V Yghi5S.A4 Ӂ>vZыHVCq2뤢qv0hG@Lh,Kyr˦T#ÉUmu+H԰{Rς(F<|u A'e(Qn9D36U2%GzzBF]6 p̃T1TTr4QUP'9i NT_!p5i(q9q=,3wK>s[t1MB㟪V:šlH|]CuX0ld~ߊA}ΉQa@7$ b=Xi&uc4E%&٠<+7pEgR>(Cb*h4FCF:'pIMS"=o LӾ5q=Ydhw=ˁtP o/#=Li~^xI )K4Jf&X4&"+4VÊbüm[qș5n>~U/ D޹26T3T$@|Z4ueewYnLgN2,QEpd9ag:)G${^Cdc]<bm5eBkܗȥNb/=+T 8|~fC֛Hn2V9DbYq"oH7n꣦[ CA{Awj UqG5Dz-Tu5S{  oi^M7rfpƒRoYX݌Df!RWkÖ,*dVS|!k8+1h_ˤydRb]Vupbńu䰋TXH?,7uXyGs H#/0L<b/!qUn Xh?kU4^ |?n;N但ğK pT1)2-0`'d֒sy}Ào/Hx|7RǸ WI_6-W1.mxSK(:M >S! Y:-y{ TChA P,Ksqz*"S09Ƒh$@aM3Gm{yO[VMk2@YۺJ¡uB1@+/XBmiQZoH>ѕ~#@fZ sͨ3ݶyM_9E3"<G|a!0릢 8\o.)F^fCty!^2?DJJoc+lkT5u,$#M3i62l^G%#&K ^-cυl@T@̙־5@LB0Wok[垎DDZQlQ頒 8 c퐳Ɉ\ǡ8$H7+:_CWډ~м(=W~\3i5VR\gOl*,~Cֿ N-iGbMeH.\uYLDH*Qu6r6_~N_8ɨ' Wp7Z)l v`SRcbp냧ҁ*d/4 `p6Y(gS菲v_qrWtI&ʿ2yw/ks=CͮoVk2n CF}ϭyg.u(|ĭ#q3fCF\ rתϕAM)E~_mN'wHSůq:gOqh<Ӭ͆DKH{gl EkuؒKfQOj`7@Ԓ]0hA75:XU/NҠUM.Mzuw򠕈$rQ= V#؟JHjUF:?JkՉ:˫O6+LH[<Z9/V!Sԣqש}./ѻ"{39tSj=*xaH2O V8ym Aiy@pZ9a?yIIgW&$AeˍՍm“ilCT995U^i+FLQ!H'yxlڰfz642J뜎#ؘD-D"śR;2k/1|LJeK&%nf>k2Csލ1Bζ/Qd\ %'S*fRyݨ*z(risyb GL $h8 '@i^MJN_9S 0LE}nV#q8*{ KWƘl]4CCl\ aLJl1{q YzM)V$%_ljv42E{8[+G-qci/V~yXUgK+#4uZx |鱪)D.@$ =xAtضy:@*65˰s9pd62w_,),2XLIv9G]]c<=Xrb}" [PLa+,/g:\kwa8%eig#e?7FI%~.SdǛr:U!HGq+-pnEQ|arݔ3_M23QF]umbPZkyHMtH?,GC0C`}'xcyd {D尤m/vH0"/0pna@uY$=R)W AtU! Vx\6V3=sDP(;jTyD5qMʝΖ8=ۛʚhS$k~`R[ѯb%G8QT4*50nX$;WuSv3v]UO<#WU28u~Nj:2kK }cj3PbOiᵶyywO\o!&i`[%*Pw^$oU(p|Qjz_ګ O9Lez'-dzp_o$eD6;)k^|qbg஍3}Ϗϋ gS+{?W?n򙂵`Z2ZyJ(4lmzY\@, }׽,UNd@+粔Ť 6y#TiW2.vNfAjSW (INû.Rt Cjj8? R%cBߛtZ:sZ n "a84]{-'w^;E]pOL؄nTփ!+n}0[$4oΆѥ(c)^BRA25>3h$^d/s*Ɇv$!1=˶IƼ43Q`43kk ,6QKmEhmӦ_W(C0@ZMi<IIv>SFJwyrd̸\2/q+ЁJ{"ڟ8FoZ]f\ p܇VI4?O\O#ʻԻ}9d Oİ'a f܊/s@79"}(wa5TWR\_j-Y;8SBd֧AeNq|B$ݞuזi+j> #c?T('NنxY- v r2xImDUvzxVuޙAkWFkUPf13[&'OvSA>(4]5+ EmeufNa4g0^0D{gc2-=\YO ٮնp& В.#ъ+xݑOҊ)6+VX`$ODϼWCEQs&u~0v*!;{p,coQM MB]tyM(QLOl05iujж;RV:%E;+ S)KHx<8Ch6>,Zs0ч*ݐx{R߼A0k 1.2䁪Emp=J2Ŷ&F­9Qvؽ:r nĹ]IvxT33s敼m" (yf 1*?*vI]LĦEKߺ@^8y2'sqd;SG\rQxa,Ew}y-@mH ږ{m^/VS)31+e6})UPۤkc]89Jr6.*lkU>s W_'%J24zotLID!W^H j.!;A6t֐dpYrBt(|.b2} #Jrƅ^-WGNwt]kg'&L+BmSѰyDO 6iEg1wC6\Ày?4v8rv+GBbVZx.X) zuY43a~ray `s+ ҬD-d7(fIRW6xs/YB'1ʌQ%i?~mkN5MXD 8O?mvjm2޶~yPg妆5_nVYrV&(|$nuӝ&7,} /rZ` bš܏fM?/n]ުF9dt6,_zܡ5Ywh"(WBoTEiEp2h]U>WCB4%bD%vqczv(QΆۅ,CZ 3᧳;%k.lBlՍ#^W:%3 c=mu`&cyYpʮ5HiBsXeǂa|}oՙ 0Kɞq.7W_ f1r&9,La!ߡ~O^/4%Mz!!;Kp~[M z`뻩t {W{ )r7;_;j̒/2$+4±#l@΢у^=hxj\HPzh>+Y^߮򪳗x*K?{DoiXѧoMnEŵmng;tvl$ s;]]\X[܄M]m }i #I"y 䲳 +>Pp\ BkWYDG(Tf>5(~tWJN 'H[n%#KO#BVAaI3C#5Fֲ-{i܆1Cw yC"[K,<}%rH};E>ӗ <) sY J=FL*: =IYkc~LHO6Pk%&/K(uC<"FR{?=>쓢LJ@I Onw`"EDF; (G~Fn7y[ ,X>MMdٻ 9[gZ9~tä+&DfI,%%T{I˟'O֏H&adW iG#%k?'/RGCX%Qo1 KJiש;{4yDvN|v\NL]{Hj|>"oކ^5B|<)g0.HF:LO#}g_B˄Ö+&!w2:F{w*l+_A8A8 yb ɥB.y?bj l~3;vhx w[2%La.0Ǫ]n'vKeg>dB򗈆Fިz },c3xcpɲgWUɾmj,҄:kIүB}7@ ̟Pbhg9;H31NUԴʌCBi*ֶ,16dQZAݭe:#LJ иQ\`F)ri%F_lZ8gegbz%/J(;@>*my8'\ahΔai oҭS-F suU/h%.)ʢC L h.j/n_{dhr*f_߬'{e@f*ٹONVA TOߝ8Zxcc,nYˣ}Y:W%**5=m>T wɊ=r;E]*2׮BbODFwvEGQQξ'yh}k#o:"h:Qw5uJ g8ƃM`Rh1/?./}=Pw^ӛ*Tco>I]/mS Ut3U)&h|C2$miR=:cdl"#6]F\H^J ^€Q6FgȂUgҕLHm \@ -f@73=e4־SLB+mXc52hTцqw{UVIuQ(uylMRcDWN4!sIփAdl Huv"#P aW8K=6Orag>\|Zc%KaWJplŇ^̩YAp@q,T^Y}aYBVX m/;fC88`(*+ {+ͰOmI"n^ ДO/[,Y G-w>3tMZ $Ԡ^Y}<k"0R%zS:ɘv(#c `B/Qb&wµ ;hR5;Iv@zQWaKrWB}I+FӦWHi+Ov?  ˁ,g-@ވC-hi%wz ,+ >&qϼ%bvϳy VNȚ$YEz.8I>4Y.t!`}JۊpVͬͯ,&B醂"^cH'/l8$Tϒl zcTKK>Ƥl7&1uC{ثx5(_W7 3I%3-z8 K;? A!k"\HLڗQ~kOP$я߸I %99jJj+gPÈUr^x' w<J)00cG{_*@4wZW)'V:BܞFufoT,Ro?oIb|G "&t'Xsr)HLz7&]V+1Z$B3 x)[@vC'KatQX,Tև5RߕH&*"Gkt=hH#Pœa5L)B`mtOĠlDE0\ЕbB񡑗ڽcs|$=)T/D(r+g9@jOǫbg3SEd/~Afa(#JT +9i*J>M6~E{"x |R9Dj6r<dkbMRZa RV8zNYp~9!L9H1< j`TEx|Re_:X/F_$aȶG؆ zMweYK1'H)m⹹Q޶IFfXvs='v^3sҹs{<4 o.mA{ rPMH+FnE?wb5x$uBV 1PB^I` F2k83};tYYoozpBQ&1k24ri#߅*0 iO' oW*Hk  =q𿑭Kx稥4]/|_~([ru QB Ryy% ݤU@1X Vqem>J;]݀0~%"YtMX 4kQWJ<6 %"0(5[I5l.{hs ZvFC͍ŢLcDjra0i<D3qgp!X#1F47'o,67ሀ-iOkER}/VBω=~{3dEЅakh0 e;Bc&nbmT(`Fq>|ҝ%rrI|5 #!}@ШIH`7K8 >XI(B~%>F?H=zq iOiEEhbHEz-" 7!"8W_\s)qڥttpu։~5""tC7Tρh(fśw RXՁZw؈pno$h++k:{tr,Pv[؍BD7xށ1.(:Ҕݹ|q{^۵wo`KQ#7]xyFb0ݩOk)1L<2 kXeZUXrj9[X(|%C3e@n*ե("z~!6ea-+5 TԿ]_Lv dk G!+ y2I*Д@+h )@+MHIZ#S]:44/dށGV;AK^o2hWZ ߄Ówʺ37~<ζ*N^>D69 X(eu>Gh5z@Z6AÅZMnRz ;T_DZxH!ʅa.&䳾UwoikB ,B+ MM2Tk>!rJlOr udWjA(F5=Y5 aOBLOh)ɷ){ P%E,drPq1bkAn3EgŁ]~y.uQy1=ѩev3}&\-4B{൵ T{mC˂/ʱSm-. g';'2_]n"V\.1sew\OYiV=ծ*Cc}<}׬12 e̓S!@hb$Wi9^}CE[Bq.4ӯm UM:+DՋzABVsd%\7c hr\I&ue͇J n 'v[3%{#CX| PČsl#(FǔͰZv{@7 gҊ⁘EP4)6ၹ[5>", s:;8fGl}ir40C?tIKj֪ ]ݳ(莦=XNThS~_9'c\`qDOBʗL 'ͅ)d T3.ƻ7mS7poz8YKJ02NIB3Ue9X`CR@Az )G i/*!n#_;?r}:!5ܶ$T"oWnBƧiz)ӍsUr&uғҖ 욦eNniB1׎wə~b|𫺥5^ ;[Ў|oXI8^igN\p.겷t8hhWfYuOfH ,eӤ 5UL(PXԁ'ҙ oE+`97;z2 &Rj'Qͥd95JS{x_$`69VrrwxQ7?WvDķC7&u~lG+C:W -\hlZL,8X rIG-/sHWTᇄ t۔F˫{F3LgXt4HQfBJs1 ѫ:ϥoX摽=mw04L%ceBCDI,zn~cn2205 ȼ\ڸ"B;wDLRZt\uTj#r4hۻ2' ,l`{"bnhd}q,t w FIᥞCwq&= pGìW(hyOs" ׳"Xt,8ܒ8琻զB ilrhYCbA J`iAD!QikA6yM4yG>eHVSl9#x҅E޸>UteJŎEBN*"$'* gk$ sqLjQҩ%Vn#99h}8@^-F6vi9'OR8DԸVPqT^DNM7GCd#A93 \Uau3n`n6RO B|V8^):XE^l6ZjMaV2cg;BK"&MhWM):Mu-__+__6Af|k촮Ҵ,hf40OL\B ^=tE?(Յn61X4=po/s*37Y^vpPkod KxxflЊu!b!ӭ&H ټ*)#gES?6?s>j"b3z5mxa1HweEs FFǾȝ%&7>CC=pu}$Ǣ_a/$QsA+/h7*зZӤMF@2f\d{'S?Vʓ&t<ݻNpw;+msb Gѷ.a /cerRbU:MX~Es<mf B?S5+DPX~~NǴ g'(-iLIEr2Ds9{HK3jJu=\a81k7]V9pe gO/BaC6c$1Ч!w3"uc`My3˞DIKt^]f!}OK4ՠ+(\9 B3tå0uP?[ 0x&ݍʼSa'up,05[&)/grxF0 =-zL~Xn,S̺5OZU(9@V I\>dqn%_ƲHzubuz+=a39sY+ɞ7ıEhi#@HP?eZWԥt]jWw׉C NN`  oU<*6٪Uy q\FG%)D譁[u+ d|3n*DZxdצ}]~㼔v>c_پhA!عufb˘ͼ'"ly|] UWӁB,( vd3 ĞY5Y8syb3\ןeFAK6ܑL&վ}iy㙚LSXK"Bu xq#O@v3 C75Q :8lF-Q3,KJ9.Ù8/ O\~د\cOH}"aJ:#*%͗o!ޤ `mݷEBg<զ raʐN< ¿ rny?*V/^8D &>]i+n2 e4}qs{kY$Sw*iG? Ung͹Rn)aJe8kENRn,쐤(svͰ9)T!b_j R3Q9ӑأ:=^ U1Co%oZַk@hU85yXgO|yExD.D^+ѧk1~Xw`ќvO&W,hI`*͚#Jy ՜sKE';IC ߁$bNCW=s SW%:$*'oAJN/e76%Ļirt3cl2!n*rZ(1ϋ@¨T%h Tz}* 1cu_^1v]ZmdGlEO~Ŕ }^C|P'ɓf{S[*h{H Āxeۂ@~H2㴑MTHh`3Mhc̉ CK-F[, ~p&ȷG`)y}R /@ ޳r^uuLߔL5مaw=`A)^۷ޣZFbK0\gN IpJجy[D&ꋼD핽hFGXAs`pˡ)%ֺ'JvɈ͕ͨL(l%+,4$ xLif⪒FG~rPqTƉuIIy=Vtv+L| ֦&ͣVId6bA˚Tqf<1mD!*L@hí }饆_YoZjÏ Y 舖'M =ik"*XĔqdAN"i\vDz .NቛFiq/'~ fq)Xu-vc㐇통Ϝub;Sfn\a }YͷB$$ÿu-q%¹K+=#=!ɤQo̟ug3Q$*jP)MDӸ}Cq0&d5bkUOph/Tw8y4\(8!ѽ@@,56HyGRZ(~-*?>]= `,"S3r/圇}¾7 ;Gbnݚu4I-źV>sa'x2ӓ/ 'ijL h*臩D뒳!dfVb8pxV\z;4Z1Ac@CF|[~w }\}>p{+rr 8tXuI @?X(˩B~O[9 Lٱxؑ!Kg[aaSR 3_$nHs-}m ^')wL١9"kh/-i  6I^jMu _=3vթZaL}U*I ,G[Njږ/u "ٳTO!~&8h/th7AEJŎ*T>9k0=̹d(q 3N!4H:@49A2 y$!m{Dﵔ=> QaV&-@F?, o'4z ՠKܥ@9^ ߫OaZ|efOcwƏQ6ڿL%)om*n ɒ_w:Y'e0ň U,` Qw*Yb=3q\ACrT M6oQZd\$gĪe]{4b5DhvLԲ/ J0'=^ȕ-Ar)E߻܄KX) )4>SCN~x$crH~ _Jv(S,B`f>}~ g!0% D&@˒[ZJmeiLgׁs}n PDo5<\%i`#XG %Uie#a>/+# d+ƯI&Tף{@pa3TiA!KWX#K} 1Ljﭷ2`^\I6}Bb'TJOPJVeB$)W dAiKŪpVl{O63`40>2ho9ji]F7 QNt8$#8f!.MqWXrzy4 Ʀ$C3zrm @X[guTBm\3.L g3\geJrvR/i7\1~{'G j&>sDeFumGi)?Uĥ|H8#3j}Czy|(lR,uM g_Czy Q֤ޚ#0Xu-t, 8biɣlWyo<SB=*?K[&8@j:1M65\d`~QdTsMbH|]a:"̐c@;>A޳G>}5 2>eQ\|DDHo/CX- ^˜bZ-kKI(;1!Թ [s͢ 4PD YZ