logrotate-3.13.0-lp150.3.3.1 4>$  Ap[͆/=„&&5o4_=3 +Yarp﹇_ gY _ r E܆)}R$ -oEI j-r0†FN~Lˊ GFCVط⫕ b~҈_S%Aئs#T֛'0 G/V;ܦ]Z7lx<ΘÑ3&;L؝'c'>ivcRW8਻KFS 9i=Fb;eM16a1284e302731f79e4a91ab1afcb58a806ed530035f37fa26832587b725a0fee4b71f09f6274a113b8b146d7584692d9ff5b62d%[͆/=„heXlV5z_8GPuVdaG }?qYXDj';t9m)$0e , 5妆k nm`e`&X|?w0Cŷ %e^2T1&˿(kq01.~RΒ\hnR >nN3IRML=]^i9#z>|ݏ]qԭ),{`UJk$њO݋ NϿkz;k[i>pFT?Txd   S *QW^ !       ,      E  |(8"9d":"=M>M?M@MFNGN HNH IN| XNYN\N ]O ^O bPcQ)dQeQfQlQuQ vR wS| xS yS zTT(T,T2TtClogrotate3.13.0lp150.3.3.1Rotate, compress, remove, and mail system log filesThe logrotate utility is designed to simplify the administration of log files on a system that generates a lot of log files. Logrotate allows the automatic rotation, compression, removal, and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly, or when the log file reaches a certain size. Normally, logrotate runs as a daily cron job.[͆lamb22openSUSE Leap 15.0openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Basehttps://github.com/logrotate/logrotatelinuxx86_64#only the timer can be enabled/disabled/masked ! test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in logrotate.service logrotate.timer ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-logrotate-update-$service-new-in-upgrade" fi done for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi PNAME=logrotate DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in MAX_DAYS_FOR_LOG_FILES ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done # Move /var/lib/logrotate.status if [ -f /var/lib/logrotate.status -a ! -f /var/lib/misc/logrotate.status ]; then mv /var/lib/logrotate.status /var/lib/misc/logrotate.status ||: fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset logrotate.service logrotate.timer || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in logrotate.service logrotate.timer ; do if [ ! -e "/run/rpm-logrotate-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in logrotate.service logrotate.timer ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done 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 logrotate.service logrotate.timer || : ( 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 logrotate.service logrotate.timer ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( 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 logrotate.service logrotate.timer ) || : fi else # package uninstall for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi -(XyF)EA큤A큤[͆[͆[͆[͆[͆[͆[͆Y\Y\[͆YE[͆[͆77e03c86a0d12a9d03fa2b83a7015a6fc13806098b576a00b7fe76b90abfc92d51a6b89e12d83c3e952945e8af21465fe07c64e6abb44ccdf6fee83e5daff85f560c47be386b03a397acd0acf1fd7b002ac06d31895f7f28c6a0651dd7b432e91382988b2de5bb02405604a8a68f5592bd15f14872ee3817d9fff16238c4fc3866b3e1e20bad9482a8670ce8fed2c2e20b0e0683b0eeaa69ba16ceced0afd70d00aea868c8a117e48af3bf38aad6dd5fe4f4c49d2e43fa9953eae6c0477cd9e969d60c22398ef614f67bbbd6e286802fa94a5295257b488967c1d79ea0c907bf8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e2676b71de801a4f0ab3329d6211e50010d2a99a7f4779af380f3f39616504c70469b7c8e341a749922a8be68bb1b353b8a3b27a8e199b82628130402070ababservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlogrotate-3.13.0-lp150.3.3.1.src.rpmconfig(logrotate)logrotatelogrotate(x86-64) @@@@@@@@@@@@@    /bin/sh/bin/sh/bin/sh/bin/shconfig(logrotate)libacl.so.1()(64bit)libacl.so.1(ACL_1.0)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libpopt.so.0()(64bit)libpopt.so.0(LIBPOPT_0)(64bit)libselinux.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)systemdsystemdsystemdsystemdxz3.13.0-lp150.3.3.13.0.4-14.6.0-14.0-15.2-14.14.1[@ZlZOhY_wY_wXc@X2X'@W@WH@UU[%T!S @S=M@S=M@S;S:@R{R{RZ@QMQ@Qm=@N@Ng\Ng\N-ZM(L@LcLjyK.I@kstreitova@suse.comkukuk@suse.depmonrealgonzalez@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comkukuk@suse.detchvatal@suse.comdimstar@opensuse.orgkstreitova@suse.comcrrodriguez@opensuse.orgp.drouand@gmail.comvcizek@suse.comcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgvcizek@suse.comsweet_f_a@gmx.desweet_f_a@gmx.devcizek@suse.comvcizek@suse.comvcizek@suse.commmeister@suse.comuli@suse.comvcizek@suse.comvcizek@suse.comjengelh@medozas.depuzel@novell.comlnussel@suse.depuzel@novell.compuzel@novell.comjengelh@medozas.depuzel@suse.cz- Add "Environment=HOME=/root" to logrotate.service file in order to allow mariadb to rotate its logs when the database has a root password defined [bsc#1093617] - Added patch: * logrotate-3.13.0-systemd_add_home_env.patch- Use %license instead of %doc [bsc#1082318]- Version update to 3.13.0: * make distribution tarballs report logrotate version properly * make (un)compress work even if stdin and/or stdout are closed (#154) * remove -s from DEFAULT_MAIL_COMMAND and improve its documenation (#152) * uncompress logs before mailing them even if delaycompress is enabled (#151) * handle unlink of a non-existing log file as a warning only (#144) * include compile-time options in the output of logrotate --version (#145) * make logrotate --version print to stdout instead of stderr (#145) * flush write buffers before syncing state file (#148) * specify (un)compress utility explicitly in tests (#137) * enable running tests in parallel (#132) * explicitly map root UID/GID to 0 on Cygwin (#133) * add .dpkg-bak and .dpkg-del to default tabooext list (#134)- Version update to 3.12.3: * Fixed accident removal of rotated files with dateext. (#118) * Line comments inside globs in config files are now skipped. (#109) * logrotate now recovers from a corrupted state file. (#45) * createolddir now creates old directory as unprivileged user. (#114) * weekly rotations are now predictable and configurable. (#93) * Errors in config files are no longer treated as fatal errors. (#81) * configure --with-default-mail-command specifies default mail command. (#100) * Fixed heap buffer overflow when parsing crafted config file. (#33) * build fixes related to -Werror (#119) and -Werror=format= (#108) * configure --enable-werror now controls use of the -Werror flag (#123) * copy and copytruncate directives now work together again * unlink() is no longer preceded by open() unless shred is enabled (#124) * compress and uncompress now take commands from $PATH, too (#122) - By default disable werror while building- Remove aaa_base compat setting that is from 2003, we do not support such migration anymore- Version update to 3.11.0: * Merges from distribution patchsets and small fixes around - Remove all patches merged upstream: * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-conf.patch * logrotate-fix-test62_with_bash-4.4.patch * logrotate-manpage_config_clarification.patch * logrotate-var-lib-misc.patch * logrotate-3.7.8-suse.patch- Fix post scriptlet condition bnc#1011120- Move logrotate.status to /var/lib/misc following FHS/LSB and making implementing read-only root filesystem much easier. [FATE#322036] - Add patch: * logrotate-var-lib-misc.patch- Version update to 3.10.0 fate#322037: * Update url to point to github - Remove upstreamed patch: * logrotate-3.7.8-mess_err.patch - Rebase patches: * logrotate-3.7.8-suse.patch * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-fix-test62_with_bash-4.4.patch- Add logrotate-fix-test62_with_bash-4.4.patch: Fix the test suite when running with bash 4.4 (gh#logrotate/logrotate#66).- update to 3.9.1 * 3.9.1 - Fix off-by-one error which can lead to crash when copytruncate is used. * 3.9.0 - Fix crash when using long dateformat. [nmerdan] - Add support for %H dateformat. [czchen] - Fix regression introduced in 3.8.9 when when rotating multiple logs when one of them is missing. - In the debug mode, do not skip the code-path which handles the case when the last rotation does not exist. [Sergey Vidishev] - Show more precise description when "log does not need rotating". - Add new -l option to log verbose output to file. The file is overwritten on every logrotate execution. - Allow rotation of sparse files with copytruncate. * update logrotate-addextension.patch - use spec-cleaner - remove unused PreReq tags- Enable Persistent timer since we are now in systemd 219.- Update to version 3.8.9 * Add new directive "createolddir" and "nocreateolddir". These directives can be used to create the directory specified by olddir with particular "mode", "owner" and "group". * Continue with rotation even when first log from logset is removed during the rotation. * Fix crash on BSD systems introduced in 3.8.8 caused by different qsort_r function. Function qsort is now used instead. * Fix potential buffer overflow in usage of strncat function. * Fix compilation with musl-libc. * Add experimental 'renamecopy' directive to allow 'olddir' on different physical device. See the "man logrotate" for more information. - Remove logrotate-fail_if_ENOENT_and_nomissingok.patch; merged on upstream release - Updated patches * logrotate-3.7.8-addextension.patch > logrotate-addextension.patch * logrotate-3.7.8-autoext.patch > logrotate-autoext.patch * logrotate-3.7.8-conf.patch > logrotate-conf.patch * logrotate-manpage_config_clarification.patch - Remove redunant %clean section- temporarily remove the 'Persistent' option from logrotate.timer * our current systemd doesn't support it yet (bnc#884338)- Also, avoid logrotate unit activation when the system is on battery power.- BuildRequire systemd 197 or later.- Migrate from cron to systemd timer units, this is overall the most important package to migrate since it is one of the very few base components that hard-require cron.- return error when nomissingok is specified and the log path doesn't exist (bnc#871217) * added logrotate-fail_if_ENOENT_and_nomissingok.patch- enable acl support to preserve ACLs during rotation- update to 3.8.7, fix bnc#849436 - Changelog 3.8.7: * Fixed --force/-f option handling together with "size" directive (3.8.5 regression). * Use "logrotate_tmp_t" context for SELinux tests and if this context does not exist, skip SELinux related tests. - Changelog 3.8.6 * Fixed memory corruption caused by rotation directory which does not exist with "sharedscripts" together with "prerotate" script.- install COPYING file (bnc#817870)- mention in the manpage that = is an allowed separator in the config file (bnc#831072) * added logrotate-manpage_config_clarification.patch- update to 3.8.5 * dropped logrotate-3.7.9-compressoptions.patch (upstream) * refreshed other patches Changelog: - Improved rotation during daylight saving time and between timezone changes. - Fixed ACL setting problem caused by ext3 erroneously reporting ENOSYS instead of ENOSUP. - Do not continue with rotation if state file is corrupted. - Make logrotate.status creation atomic. - Allow "hourly" rotation. See manpage for more information. - Use "/bin/echo" in tests. Fixes tests execution in Dash. - Do no try to parse config files bigger than 16MB. - Improved manpage consistency and formatting. - Fix race condition between acl_set_fd() and fchmod(). - Added --version command line option - Disable ACL tests if logrotate is not compiled WITH_ACL support or if ACLs are not supported by the system running tests - Disable SELinux tests if logrotate is not compiled WITH_SELINUX support or if SELinux is not supported by the system running tests - Fixed bug which prevented skipping particular log file config if the config contained errors. - Fixed skipping of configs containing firstaction/lastaction scripts with '}' character in case of error before these scripts. - Support also 'K' unit for *size directives. - Added preremove option to let admin to do something with the old logs before they are removed by logrotate. - Fixed possible loop in tabooext parsing. - Move code to set SELinux context before compressLogFile calls to create compressed log files with the proper context. - Call prerotate/postrotate script only for really rotated files in nosharedscripts mode (as stated in man page). - Fixed setting "size" bigger than 4GB on 32bit architectures - Do not overwrite mode set by "create" option when using ACL. "create" directive is now not mixed up with ACLs. If you use "create" in config file and log file has some ACLs set, ACLs are not kept and are overwritten by the mode set in "create" directive. - Mode argument in "create" directive can be omitted. Only owner and group is set in this case. Check man page for more info. - show error and ignore config if '{' is not present after log files declaration - support whitespaces in compressoptions directive - support for tilde expansion in config files - 'su' directive does not affect script execution - scripts are executed as a root if 'su' directive is present - fixed mail sending for 'mailfirst', 'dateext' and 'delaycompress' combination - do not use gzip/gunzip from /usr/local on Solaris - add O_NOFOLLOW when opening files as safeguard against symlink tricks. Symlinks rotation is now officially unsupported. It didn't work as expected in the past anyway. - do not run external programs with uid != euid - fixed potential bad-free when ACL is used - Do not include alloca.h on NetBSD, since alloca() is declared in stdlib.h there- Added url as source. Please see http://en.opensuse.org/SourceUrls- cross-build fix: use %__cc macro- update to 3.8.1 - dropped CVE patches as they were merged to upstream - changelog - fixed 1 memory leak in prerotateSingleLog - do not redirect logrotate errors to /dev/null in cron script - fixed "size" directive parsing - handle situation when acl_get_fd is supported, but acl_set_fd is not - added "maxsize" directive (see man page) - added "dateyesterday" option (see man page) - fixed crash when config file had exactly 4096*N bytes - added WITH_ACL make option to link against -lacl and preserve ACLs during rotation - added "su" option to define user/group for rotation. Logrotate now skips directories which are world writable or writable by group which is not "root" unless "su" directive is used. - fixed CVE-2011-1098: race condition by creation of new files - fixed possible shell injection when using "shred" directive (CVE-2011-1154) - fixed escaping of file names within 'write state' action (CVE-2011-1155) - better 'size' directive description - fixed possible buffer-overflow when reading config files- allow whitespace separated options in compressoptions (bnc#711780)- Change compression scheme to xz- add logrotate-CVE-2011-1098.patch (bnc#677336) - add logrotate-shred-CVE-2011-1154.patch (bnc#679661) - add logrotate-CVE-2011-1155.patch (bnc#679662) - use spec-cleaner- also rotate /var/log/btmp- use proper syslog facility/priority in logrotate cron script (bnc#636236)- update to logrotate-3.7.9 - don't copy config files on the stack -- mmap them instead (fixes segfaults with too large/invalid config files) - symlinked conf file man page as requested by Fedora guidelines - added rotating (copying) non-writable, readable files - fixed missingok problem with globs - fixed bug when log files could be removed even there was some error in rotation process. - allow setting size greater than 4.2GB in configuration file - pass currently rotated file to postrotate/prerotate script in nosharedscripts mode - added new TabooExts: ".disabled", ".dpkg-old", ".dpkg-dist", ".dpkg-new", ".cfsaved", ".ucf-old", ".ucf-dist", ".ucf-new" - Don't change utime atime/mtime when compressing files - Better *rotate scripts parser. - Allow 'include' directive in log file definitions - merge logrotate-3.7.8-cron-check-for-another-instance.patch into logrotate-3.7.8-suse.patch - add logrotate-rpmlintrc: suppress false-positive rpmlint warning- enable parallel build- update to 3.7.8 - do not exit on status file errors - limit config file inclusion nesting - use hashes for status file handling - dateformat to allow unixtime - manual page corrections - drop hashes patch (upstream)/bin/sh/bin/sh/bin/sh/bin/shlamb22 1540196019 3.13.0-lp150.3.3.13.13.0-lp150.3.3.13.13.0-lp150.3.3.1 logrotate.confwtmplogrotate.servicelogrotate.timerlogrotaterclogrotatelogrotateChangeLog.mdREADME.mdlogrotateCOPYINGlogrotate.conf.5.gzlogrotate.8.gz/etc//etc/logrotate.d//usr/lib/systemd/system//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/logrotate//usr/share/licenses//usr/share/licenses/logrotate//usr/share/man/man5//usr/share/man/man8/-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.opensuse.org/openSUSE:Maintenance:8978/openSUSE_Leap_15.0_Update/70e008fdb258ca8c4e09e53649977de5-logrotate.openSUSE_Leap_15.0_Updatecpioxz5x86_64-suse-linuxASCII textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=79d38f07e51567103ca9a6755c7aa92f0fae3377, strippeddirectoryUTF-8 Unicode textASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) RRR RRR R R R RRRRؿx5Eܚ$utf-8b1fc5ae60645105c7343a9db5e8008ac262ee975c79a7464f1660fc3b9cbec28?7zXZ !t/L] crv(vX0| |ՠer Ʌ}gF?3/]+%.+UQG:$d6W(V|loNCȱnd2-*uc!^0*%VDޕpoɾDDѮ xHB87X(st`L& -k h[׆Dn< =5,y<6F?t(xd!w? W۾U%!%5:h 'cEPx}\;0'TATmE;Z]DdތFZ} f~UC9ZOdp?zurQj+:>}ǘcdž,zfܽҖm@"K$_1 F@ l V{(lˎ@~.zӧ],_ tB_PF 7=OJejrEcRKq i'-W8=ՄK;s}={+ׄ60]p&HZձn_<8ð/UKJTFx207]b{3E 0KhٓEs9*#t zt軴ƃ@+,%&k]:J|w'ܧJU B,+cAl<jN>Kt5ǗԱQ[gb1G5eu@$-sSqb5XE=NH{ ߾ 15Bugk\Y-~\)rb9i :{xsnDd 2mi{@/Mk4*@{oT%+;ؐ|1NzQ74cNp>VuM7q\(:ў6HqJ=i%Xf|85(U7jBTbE{PP pJݢpT"iWErh )M$" ]=xG[HJnhs"|^;xFFthf[<$oуűG*Nq ~Xlt/q35@:/|W] ByXz0a"af&jYkPtpnD3N(эhU]IUٵxXa*W/Yg~ &rfXΆŹ!<.Lvl& B\'`Q"lRMl'3n! ^y<>A!yD&F|gKTX;}(e']MJ' +h%NUs/sKMaAc7vMAckf9PzpR6`ױ2T0?iLE0^U: '@9n׏aSdԇ&I}Ʀ$~{ F XVcEKtG|m{y 8@^jbCeĽfD`C D!Zr )ƴ#ҾIЋ S#697bP?wRNԧ) ce4j@=%ΈNI&XuomZ*"`ЅGŚXM}ИT lI=!0TPqTTJ4)dظ0eRUzC<_΋Eݢ6y8BF:KKNB㼠L Ϭ9b֯:=KFyyW])($Dpt'iQM<`%`Ϯ:XB6_ +c%o_4Ȟ;A2pc>\W芇5pU~{} {,!!P ɰEgd$6:~!4kZr~oŐX@ v3UO]>4P :jTysY%E@ӻ21>F@J2PX4Nt7XiPc]ey4!U0(\/4VL-Oɦ-qv Ԭ^tfZi2{l n5 _ U*هLJ/Kّ.ج76rqp{Nj"nֻuJhU|~X(!-dAj @ բmcfxUW-s+}6ƋiGlv!O4`vyH;l 'cY|xmG^+Ub mƨă $z2 zL5˰)Dq"ZI u] f]VUf+at \T=}N $׎@oORلo>`1lBvkX3%=9V,zCЮ=d18Vu*j{:[V39i`xC=$(\A?W[(ۤt(y";OqEZ8E/qoMyxnrO_,Dc3LZrۆ{5@fX f1,QDy-}\6Fw5 H;/)]J+xέv낒lT w jhG]3=Tz0 C-T.T1rgwrZF++QԴ\'R&Q@ Yz^6̩) R`_\˼4\Xwy3y OJCbt⁀'<"}6-Tǫ 9'Q* @g bn#phR,U"kPS'̵Wcl<ȇw- 0R[_N &Ǖ'W!BͶZ 4}|W7HUvmx>M9qU&T }Ζz2@T]n{03+<~,1iE]~K~q4<2>[&#.i5IUMD*+\T)B j\:<ǭtD=TP34[ǽ#xXLMQ@UoB }!XK?MM 4/N{3No>P$06״P!U2PYxUtf-8+ͽi͋@ow4Wō4BT ((>H s4p#W_gOwr/v=c1iVJh2g%x(? B~lA(5t6 2?A)k"a)d RrHELl!1-hά!?wYBps-/U& SmoS2=E70I/kV2" Y0A@2jdMS}*ٔP,v['/G%v+lmƝDpIl(:#=PE 5Q)H/ 5R4"fѮŵ'(UKGA5b b: \]lB0DedY@ {(6=ej6@bۖ-h?(bSᖿ7 HTsٗĬFe|’j֍0R[58$Nw_Y rjTN(o@̌86$+JH:ыZ*[&2_J*"0^ F9J=ohڏ'^"@MO3bx'̥6L^.84QyZޣAʂ-I+%WxPt0W5DsE8 o˽R縟̋RMrLFxiXCr@ 6mOР6 kdx(䍢u"7T-4aQzhi,;e~ӐطKc++ {>C~XTP uR׍9WВw4F)õ'N(ɲ 8ɸEVH1߮ ,^2쓘;^*z݊ {G=Io]L4j3g݇L0?9qnJ0#qA?qfZ}L(iY&׮ѿiQbZ<"yXAU4sv׽-D\˛k|YΪ$GzqcɥeDkWRb):8nK_.<{V-*Oq] 9[c%K/B ~2]Q _/_b\HBJyLάXQ1^m~ o 8[~DZ&Hr[K}""W)XRA($5?D1f0Mu5‰pS,).4O#P2$;$A~P(1?m2wR7eܮ%J+UUvlRcጧT/S{fYz2Y:-WbP;#w4_g($"nN7=smMhy=*a`ȣ.W PݪM'Tq6to,qaEzqsHFS :JҡNy[xP&8RG5o]}SB4.q).$ܨ:hN lHBbSfl] ´^g).MhM>v֡y)Gh {Uh &JS0_TյsEu]swmkqTR$4 w?ߵGZKͰ$(Ril29ՓrfIB'z$x;z\ *D'G*mp0+{J3x˾{VSN7Ţ]:zhրYXI6RtEy:F|₎lw<.Jrɽe0W*IbcPK!CȇأN,g=i]X.>F2XMت*qXxF5_74򧹲ʴ NN\0=[+B"; Q$8R^0{bM1ZfR!x+w bJ-=R2B>,nã, |Z @ҼF,޷U4^3 8G-a{)A42Gba /~D(@ ez.>2&3\I.|(0)_2Uw̨7C|#im$.7 t!ϘS:)J'Z2 09d;6#$.0g`C3#=L f\{./kUA+Uzߥ;P@04|xo/x3뻝qշ>+6>t; URGt7۔I>LA H#؇(42A|jDti2N(hb $*͍\V[Fo nE:z`7'(+4";']W膉5SoIhRkӟ4jDl8ZsDMO*g$ nb Xdp"(SvKT$LzCCRph㾦Aw$5=x_e ti:[)?3bC=R]Q+^|Yzڱ .yY~8EЂW> pbl3k2bzC_V*80ƙ Ң~aAfʡĔyCw7TG2٣fݾ%8^XE"cΆ7ED_>OQ(VڡDt(;I\+vQTOC% Sјɭ('kʋT'J|I{V)ZySP+qD'5Sa5J$=6@,CSo%6T} j<0z V6.$ɪ2K?b9nQ% qؘtSwMŜvio6P7SH>"TQ8ʾ7m/F"55'…6l'ON3 U{&<XAw&KTKwvG@{V$>4Ǚ*}72%R'9f5}30=]]7pb®lxxXrwGW*}p{Hl4[dܭ(QDSabE 11= I-fЩ$&deՐԗawJ}L&4[fz aV7r38_{+ŌGNgQb"I/縝h|.'E* tn 7DY)Ex?P?唛+RCqL\6o' 5Uh!dljbV/"wd{_B ': _+k~}%\[ś. C5;kX?ԕ("VwLk4{p/_(V.>*L.xmMV ņ=8]I*h 6'9/Tԥ8ڝ%kEβ6ސQ<9Ȏ&q^-,9MMo('{W۳O4 @Y?vYW}FQbq L2x݂' VsŃj SrVZMؿ 4 و=ȩG:FrJãU9aP ]ƊLÌ ޠކw 5-0@k7]Fs/eV,/ V%1+`nM_ނ!''>:zPJSFرH| ߋ 7/%KzžyO/RV'0%_s~n|p,]i??B W`1>MEӓŧ99äGyߔHatĿ|ʍ޵Ma}FXǮ,aƕؾ~b?16}H׸ 9Zj)rS|J"VDՁLhn8w$HWPx4C/Dw|Ī60JM 4 < $Ec4֘J$qJ :"I1vф0IcZvO4mT |,O}4&o^%y)8,R;i=7OKdpo&4 - GH (r23/ $cZ":!@;9xmV H|@̵ _M;+ 9v~r~(U7{Rl3 bJC{'5sv0.ƱH'i 1ض;gn1l .6Kn&.<^d pӔX5tD'g~t9إ#_{ .0úK3f  rH4Fq|FpqP\u\h?Ά!K5;VFf1nVT0U!^` ָ˽~xf!R(Pw{K5"[9ֽՕ se7S㜫A?K]x4%]t5$P[lEW_TUK%)rfHQËX4*d޲Z Q3E)RV# OJxq[ԕjfi Q Էf mrԹ"=ऀsrʟ_goJ _p$ rQRq|q"IC7R_Y(M8ADdb,G3ԥ 4xh.X61咗 ̘ZX |#qmȒsO}L.ٓ˴Ds0p_O1h D<%Je ضB!Xs`% ƀ%U!bciqoͥjjXgI#(䑖D"I᐀ƚ+g󥔧Wby@@1`q\ Yw`GY|cwyZ0m@02Z9Voz8&۳[`/XUN;9H/_[fH :D8@<xXgU!%R3 [#> P b"&4ͻ`)/]F\ '_]MJ@rt܀ ZS^Xۜss~2=a`nܛZU CylK2 ah2f[8»($W[3LYtLԅ%-XEYhJ@LӛeM>D.e9e߇>4fz +wW ??19v \SVEd# a՝x3 iV XjfL/q#J1wŪc)t+,cMRz}98nӼʄO28ɚZl=`;/ ľ1@ ph@#]q>N<1%[`w55)oy5ӥ #'X'1;f\uׇWL\]고Y+)Rr n?+?-]&QJ,e-jfh|LV%ּ[ a=Wͻ^Y!1(Op[ҖU6mQ4 np*~bA߳M,vqq{Gxz&M2D<vxI5.ZػeBE}S:E1z<0-:UH3z37L jc*ZV.U+s;ɘ׼e"gQta9. ЦD#Lcq'z-bϋ\T螩bY'&]a\^[s]˜(=5{'%5{q식QK:3,tGt~9v/<6;ob.7fgctiԝUc31TcenPfЌ"_)k^ ƵJO,f[(LZLxs rFŹv ^ϵ> E*x0UKG+Ů!!,*GE'H~voe-~oxzLʲ V"ZTn/a JF׫Qnòe~_'֥(Z9-B*iuY#utprC7n)2a`lºHрtG)0][QKW)_S.'#Y":`:w(s2JJhz:Wc5NNDq\é:+PtpHnx$^%nu*Sk)ó!2^M)_IM3.>Y]]zm _01]=O7P=fnu&>ʑ1a>WB Oy7Ӽa5&o)ud4R%Mj{I{K6v҅+; k7}1)z`\m᥿Es i58,bZg\*L+)ϵ-4N)+Z2%V&s%ϤkڝMJYtV]h OS'X&#HM=Laqn^p1[k{Qt-SؠH1yw+$[VrĨ2s@Y-jrr<;?^:8O>ַڑ9i&vee^S8ۍfqY@DCq^=ff@^1q!vjP9]O.nrΙ-_61F[Eviz?- eA3:k ?uH%AEcٛ40`YK(,v@+|yFY@ڦ,9sP:}6FpJk zsg$df+59A-,}&'g`V =z{tCM T IۚI NԮ.7gS*Glһ`Vx`|Ng  8@IϕQ6Ԟ*!;*dDdbΊɫ@Sȇ bޭoz3 -tbu.^؄#>y^g0C-&ݭSwjmbȀQet 8Plcڵ=[\圿sƏ?'RO9 Kj.RqK"]9AZ:;FczښJU5^Cj=0z!g%"=6Rc?.%zC|lh} YnF@ mfy/,%m>.%6/g=)NߦOoa%( Rʿ!_QaySC2Taj]2*~X)e;z.6?{w_綢Jl~~2sK>N.7K;XM;~Ǒ]ɡ,g{Kx?*uh1'`zKs9LU0^(3q[b9r ]ֈhx/xP#_d^O˹#X`u3f+L-A<ܷAeN0wJCi ##+&M|%^B݌Mh}% q@ GD]^7KHN"k!MA !(-w\杞v LǑBOQ g;*m;z0Cyvh_e' 4tDł6={N3Tǥ#q sÑ`k+P^v^Em$^?'(v{#PfF,~Z\9(W&kŞ'P~@(MZ9֖@3NI95*C^*z^GEnITCjV zux;KdH P~Kn8 i*]ĸoE〢cyݑRjNWH$ҤǠ@Ý!]6"-=J񉎇VZpV@,6c󺦤c&㎔K:9Tx6:1ӜߤfI[|w&H퀶 t0R.DAha ą\W IqXpbf&(b`rVpUg}G-ן9 ,A )PF[hi@3L%@ ʷdW %*ŃqfC7ݓAQ0C~uۂqZ'9۩u)%Do2O'UgdvF; talo0xٞ?'vŌezjc,z^ܼ$ND%wd708pJ7jnU$z3Ng`U=UnPkHIy;2g_ٺ 7nL7ej {>_tŁ^ HEn-oN >jNrTU,3 k2q'0ھ4q6~vf3Y.xc%RSt!J}d{V-/r1fpP̍ JXѫK7؏}I]nZ-F geWi/޲Ҷ`nIe^AC@t^Xi5’KSˆBŏVKϴtfD(IrT%3@ғQˣ3;$ʁ $j' ETԽZłn`Ro&X.\OeF `|wstM Q}>C¿,Y0kFo\L#)\qf-wҌ޽$6Nw~KX<_\k_UIo$?~Qci7oREIz<â+_x2,r!W':%sN*^ ĸf78z̎X Kq9Ek\ !->BOa{dnHU(B}d<_WݡKR6kDxEߐ¸-<'.'<ū#UR+LU(B~Msjc .QiΦ \mt,qTt:ۼ-0 l\uG:s`UzZ)؋Fz+ cWb(bB< 5WZriiu `6gSjr*j5:1c;E=Y2MC&37;t+c驘vq,znt@Ջڮ afG! * p*̑^`"yPeF q ei9z7|ؠ,* ԁ]v{ RzWq wDSS ݏ,%DYl-/ '\aw]"۷)ĵ6a'e~K6Ϛ"UuN4ov k_uo9v00c[J%,ud[ Շ_Q]+=6sW28`gzeRU\[4m %\`_mM)+Ua%dtecA2v7COGQGĽW)kmq@ujpQc-fs~COJИL6WOߟRQ%CW=* I{!UMapq?WfC*#qzkjb4w.فVwf*bkRqgLuA{8yo7P(ĭ>ÀG1 W`@d" c6#zl~Μʍ@q z75 VK" @zvHMWmvqG>t噽K{Ƈ/˫V쑘\^ %8ksՅQW+A)Sz?Fև~t;>DېeGE%xSKSΎ`ܥp{НS[m&_8J\JZIt6ح'kVg-G/łbLn;KuŸ*8k:<6> RUpwb5ē.9b킹[WJ=NޥTY#XK)=vJ|.wy)?P,C3܂;(qk#_Sx`p[:9wv1XRM9%`u;.AoE_oKPWXŔqI>Wm_y:?!~D`6 (!)G<ڨ&n/d߆Cp2ʍgcbC~"G?H{ MgxmEliMILGfmzlmBP=p|E𼒊_q鎁!C,KR5tLCUd Q(eƛ9oզX6.A=ĩg]M?x;?}TFܒ43|p7 YMrR,bKi+ackF˪j&h vެc1Ñؓæ|V5hEL\Ǘ1ֵVX-/LB č݉.T~+ߞ^C#߽W+΢DA}놏:7brDJ࢜>Xn9DXh:ijisw@ԹLgY'5Kq'lMDc)y\jP\W*i^3\mȗmg 򛊅5EPEO}9I9vƇpP&v̀Hm{f=mWY]cq&f[B;[4%Mr9iXq#Pyӊ!+J#z/+iغ4bPIj]S@OG][=>&lAf*A?@K "z-u 284X\UVV,Lձ_vz% .w@$RP] kZV&#&+J-{K jPYcZdnYyY7/eYNywM}ߎ_0̴y~o)Mԧ@xVI&JbLa+pg/5{>4HL) Q+Y^y4k=o E %˓4m^%g3%d8Հ$>[yR ZrM@J4=.p8ODI2i nO9vЂ TΛi~*]n_~˩0imIhW#9 p)pV+;P_V@=G B!`XbЧ@4-K'2}{c,)F De*֓L9o,#{&W2潡42b|?d Q;uzTk2&ٮAH?RsYA%!7:=ߥSv.fqDȕ1bKG }ܰQ_S:@Rk|lb"l 0IN(c8 >QWpAī}@ag}VR3Fr)'gL['-1Qgol ad$Qfs"_3<ÁOQC9ln yd5:{1)-p5A9_NFNxUϺ}5WG [M12!k$ĤYY:-U/I鋺 @~an'"fmas4jݜyPF$S7gQo߀ 4'tw^N5D^N%C\~lL;nW+p(3*qIy9Adخ G^.ird5zY+=-@̥Lα1So@}_XToxc9=- l($[1zaA/a1KqQA(;>E}$ʃpDq/2R뭃(" R ^6د排|u^f(;^'Q996L\ J0eMP9ix qۢ#ictN=TV{F*,&sFϨ%泮 kA0A^ZXvg~;Rot7BD; Ai/ćab_X6hoie5F՛W !+eu%hTM߳6,USze#S  )ϛQ3KU>]a8#o'V,X2Ϭw}&}0 D`j';{ PA4?)(_%m2z"_Htd}C6dʂMűxR6xo^N%쒔6ez2=׼>B:^l: DsO!\LTɍVߥ~JІzOܫ(PuM=-pR^1^FI}!#3ǡGݼi=V,Vp:r&T0/~uڤ'^ 2I~, Q^x&PԜ% F%8ite9Pd}a G^uηu pG (u,3WwpCG\jLϋ6~_C}`>P rt)]m%,3 e(5$P*ϛ|2nEx zC}Jj.}8`mѬuǞV;44^V s…tp#}Uc1էcHdifA$M锤t̒ 4A4t[ t ڋ-0Tӊ1%.č+^"(]o/Pwh^),>2ppbg.cbagj6;= ~3K[2,33a  {QCSq@_9|F֞*i#{H8у{W\_Yޠ6u bbc`o-5 &I=J )=gAC\0Uz="At=]3- oeOFW=xb} iR[ &ZϚ.iA>BDLQ`JkQF/Bb]Qs\^N\0?]!˧TTdוRǻ7/q#?2d4j*ZSgr,h$3P!  W4O&7Ow±'`۹s uH ;) Qܨs;g`>w>?~ )hɨ@\&959A]0lxC >+( &lQ*BuI9 ]JI}_[GJmaӯM"ܕ^ $ %]%dPR18ov1 .4NEXEQ$Urs`8T{{<1=Hx!uqmi. w:؆Hmw9ozVEG`]na\(/ O~qwZ-G-5ZJ| k +٨ZDB~JtJmAN kci@Edb-!dPUT"ȫꮓϳJ\*7X-2}%̐q'We w&˜GbGIޝ޻a[oBޜ%ˡH e ֆ G "NBt'j#KCɓ@<;gA'-UBոďz4&@d=L~%Cz̎pPCS c/:Ut]SjGdyґiV1Q|d\?wF;dgD,a)DA1SpT;O/ 毐]HlAk[y0E`<-ٍ(P"_J lֺA~"bPZWhd/SЀj|-_ ʤ<,/njQC`Rs0{Յ_xm9#̵f,rEKhiZ]LwÉ[+}=/D>)}H_0-:GXbMԤHifc!Xŗlx:gI\82>.땗kƇ)Haf{ŋl3z~>D+%{]W8o?̇7Staag2iQ;\ұv`x顆Tg̻]R!s[DX 3ԋIH1>{*oAmG˶es$= s5䠗{"䆜 枌7 Mrx],?T?I}"x )rsWTn]eS[ "PV(R男kx5{by\ȶ|D7qffB ljKbl0"`vAf&AȱD+: k3u[j^| e΂$ڵ q {3"#b\LBh[+Ks~$:(c 눜%}f, 5ʕwev(?|NdlrůinIHܽ(6#(.af U ?sX&Qc=Ot٠ʬzNԥޡ?yT]ie4G[S_Z @" /G;:Y<-p)OK\ $}RLo- {D"<CQڡT\?eSsTYP3c>=Cw/\+4V+IV&Os.37m%w -D֝7N{;c5ԤNS[-jۭ jKYqu o8Gi5uF x> *j1]+?ʞ/s&t^!K}TUFPDY[c:6fY[̭WDTD8sqU5'9c,J+VOqw8wͽ 59*f(a9~UMIf\8 ݹdcl KVNLLD+EV@dKȑm8[y۸/uWq۵ĆrC2G( 4aF4qO Orh)@Ï vbi B17%'i]Zsl0j򨈒 N.\H"!P \? iTU32_}e k;Gut h?N!Di(irPpwTꝮFrl-W$QfC+}&n?V] )ѣc?=? Iwո ?cA^Vٜ{鈣A) Ow$U7`ӟwA.s*e豹+5Ed8'hxaD~43O, Џ7׺rDžxQn) rc'}U@JIyJ`m(: 2~ch]#>o.(\4 mk'A.>zn9[T&a+2M$d#ՉJ|+dAR[ O|r.'jU}V^{Oj[;^jMԹ0E]!mr$tf$nPZ?">2f5zA৅Po"6(`l* Ӝچ2|@T<- 0NH^\+11I.#J{.i5?9%^Ol񲍑!Dʞ% ޴v\]Ʒ&}?++xtPPP/\F++`nJQȵPfp-0Ez,`uVOUma\p uTȊ \ T("s |v3/8?"Hob ^=-/dDks9^:eq)|w^r/=ƭ0WOŶ]t'+h ZW/ru-dݥVLMyjjƵ:n9T7V][$mu\yagO3i4ʳs1\977I,W)WERNK۲nVQr~]N_7yPMF+d#V2q J]8g oC< {N?H o ,xjBwdscRj}tӓIZٿcQY@GqX9)>*RQmHzX)jq J\ʷc"dJĉ&>ڷZD.Rz:jέB BY+'ފJ{U5c*lӊn~{@г~Lҥ5I݆8#NM3UW9FIRda?.08E6LF`3juJ&H)cUVC8)ޓ)2>PuZ r8* E18{궪 ż>w4DLTH=F?0sҰ 'b$Y'#?:WTiJ+ώa_ɟQ @ɯtJvRS&韄/g4HMgj=S^}{B֖{31ZowFsI&1G5+"Gn-mOP/6}͡U,Et#]E",m2CKS6J"|s*ő ?57G@xN+JĜ$< nT6bn8e{L^ы-S/1,&{ 0@6{RRq=e0ˀ̑vI (? q^)+pdQrfU5iY:5g'r*Pԣ'(U/*7~X8͂ O2#͘1q(: n ":0*c[]'lArP\\"#UA+is-6Z8X=F/KA/a[H_>@8;(ص|eT]r ,PUv T+TS/Z^HH4T&E0 ǧ`R3E H۔~}jUv޼IYV`NX?_%IPRQ[o߾*J^N _~  [w!-LW:4$*f+5#fD%u+_3DgDzhq  &C ?]Ӡgu1}ہVWQJG*8*O}y6zN &TjUKV3l&gmOR'$zNZ1E U?Ml1ؚ>TOI&||>&(W7đޱ K~:'7.c&iM6na||26lTq! 8ICJ*孭ADʇbrPM  ^u,P'2 6&2xD3~5"7.˱J8]`x|9erVnf'LNm>e* $#=Nc 4MYL-Ub$IR|ƿaawiw! ƂqvtiBȉ0SVfr<|  =~X#4]u=H[ d;̑pHs`(|ANhaLQ_/Ϋ29R'iovh+J_Pz tT. WhǹiL?Ke^p Õp#MEqlv1:L:uKz{$dzVd$WkY'm [ vaR:Knh^hV#6s]mOm'v7Ymͫi'd(k$ތ=Essf?&& }a)Gμ{Yˊ1ݘ<EFLTiY3Fڇli ;?Em5ْ^zQ(VRh1F=fP/cǸmު \\`w,Pb44dal: iZ'Z =>yWֽgm*{{PXCu*ZS?g=#b* IZUT {lU [&pg[ܖVTLCapjz7AS"C: <1yî1@=O#`':kR׵\/.E,gĈXݟ^C0fn1Al9 J0^D_(Xqnx5oi_fi[ Cu@&t{С2<'O9w5nvٍsi||6sۢ݇ IEVf+pL> ?Ji*ha+^@T[7ۘVեGX".3V|G1 $ RqE*ڹ^:qeS0mJ|^$~]pm&.D[P"6C"@;lyo]wNVRi%@MW4 (񈪕cAo%; ^md+Y@Y_f:疨;5nfߒ׉uN=;Sz`> >̄wXoKGihgr&.jK0-Ȏ]ӨmˌtA8rA hQ| ݏF4]Nۋ 3PfC mTBFKWhPtw@mG'ذQV^cO~ q@#]iwe :Ic}n<0wrbcp%ۂ:JMRt?F.ķMjS,SZ1eC2 [f8 6:hŎ( ,E`MjIoXL#h$h amj=#$%ĵc1/aAܳy3/c+׹+[Vdrg- aZ.yEZrHA!)jtV}.&n7!~X 38l?+P_fV]Iu\$-EE97`CyS)0$. JW 5ҼzyXv|4G > VmWMDm[rsp DK]¡ ]IQ@QD\֓];? Q^/TۑW{$EbgĿf)Mc[R||Hɦ]o[Zt. _CDWy\П⫥bGP;'JX8HP 8n*ՂB%gJY(e"R \kQ[^o#VROLc}2xRb-1f=Eqg=|V߉躏P8ve^' @I3KpVxbYfwJUH%a+Qc>v|и)-/cJYD ~*a3zUjAſnl[ddNm[l*Kt2("+b)AVeHnAyz7?O+":AprIIU-f8f]V4&A^'' ֵ9-f.18b*J^ۡR^;HxFNa8@yc3X2P^Kk%8i' hK:v(1:3p0ҘkG*x?S Tg y i;+bÇ_6܋Lз;.sB]'f$FǏՒn+tьV ^hp˜mC)Z:+<4We`4`+4xT{ɍw_Oh"tKHJ0P+z e%cp+AO*֙VZv {]G0Xޯ,T:JMG/dFnې!/? 1\& cU?ռ=ѕ/Ze.).紟ȄI1L9# k˓eAQ| ?І>Rb obQz[wL*XM67ܯm88cTNGSOH7 FC GUA?.`,=Sko WuV^BV](,)ZnJMQyogJ*szEשQ[h˳~c¹,i%PmWʊ/4%QK%Ou#iuD;5s8qq 9ȿ@wvI1t; Y61;嬷$y-j?Fs,W\}gxӽO!ԯַiM*EմjwB.wvgep8{;}R( 鷺Ǣ ~Bܰt 81"ߚ*ϸpX ߉%}1F K0[\Q1&WVА>8\S GrʭSuA+f_S=8=c崣%Uyx#ʈr?y9ٜ);^'H/ NgV@tfen//ʣP$!XQmf p) H3A:y067z,#š,^ʎZc> ;|/Hy(iMcnަ#KߢZfɑm .V+sVy`I(W {aa EC}@d=ӻẢ-V3@[.CQf.uH|} < 5BWX_]CaEc]gѦ, X/`x҃.j2Lr:"Y4y}  7u \JYi?rg-n2αM[:X=~)IG{Q8xi@C@ļ2;P)9Bgoj[ /z).dX ֦ڻ~sO!]ӝuMbxCǼ]b Iˤ~r~!gv8†n^w?::kBdgt ͦRMW\R|N< =VyCSQNJ k5/NxU;| 4 ~hN+ 8E׀R-*Go.؆EdZ)@Kpia8lT/ JOuz] Ν,R6%55 ZZy[1 T'Pzg>i7Ξq`tR R2C*!AEͱ{(C.zD) |/uF<02^=u`eo6{=B~n|vRx1uMF(r"95 h0EJIz%6hPU׸ᙂTMe4sgzi\fxQż(C:XE=_93}>Ns]n̴]*WYgO9 kYnb(vbQ5g0:ǖ:\‰S\Cz{ĸ54f%,}K;mtx?RU2̦OvI8% -kKMEYXnD(TZTHNhQxM1bO'4RRά.z\ ,V)R= d_}e WFǣan2妭ݪv$y^\MV QLF`xnYillp}c?kQD/oMọwR`'8{kL:`Vƻ e e &r.hdt^*VcK^HM&3)=FT]݈Ҫ0/Whs귒7CrtFRBdfxV\O PW.Yc[HO1ķٚPYZjzFc^ۿ#G eIz~`e Y'F_^g^\K7.UA3Tk6uGT2*a=Đ<{+ n.<%lPr6zv:yZv CSP a9 9L"/].G I\?M*ȥSM Y$8~DtFe?{Xf[$ \2D&_l[ܭhn{,_O1T}rө2jQk{(ܚĜUN,ԭJ KG"$-|J)'-C(ai;('0b?poֈJfM2$V;g(G@:8z%vdgzU] %ƘeeC%}*Ei _1;\ZΕ6n?ͮZu\#GtkYG5=-jv8QJl2rl/Jm+a^.rztN7#C.AɅgt2_7dR ]#^6 0JjXù~BYfoVn $oKn;&L#\4KWRxBىn&Pus4秄?EOA TgW+Gi]o<9 nhؚ]x eL'uXV9$KV%~wMWg$Yo\i@iÔ%d~ϓWl Z1h$2} eaoA DM(m󰱮 Z*0Μ`OTٺPb6o:{ASN붥(*J_o)T1tfӥ1/5DC/H'J2C ^n;@eo;Mp̑>W$C QWNt䥁wɒ C=v.B[LG魙A{3:~^K5xÝM2(;%qz~؀*/^l9iu^N )eGQ.Da= ݛ_^ xaԞat>n{DW.P$Z3x|-uH֧l^Ʊ OsyEJƄ:fE? 1DԼYݨlZ)i! .-\$bsktVOLɞA)!ȓЬ0GSɡi&yMri7!WDxD;2uAwjpR2~TMZ-ș T[*yU$xx<U<fEy%G.FЖLblF4LfgS[q잹D1ᒵ\G69e0}B~[B҂h^H&2,kŗkTku-LOL5rlq2=M\V0Z^Wok~6HÐ^ ^7|:ځmw=XBcy)֫:FʃԴECh3 &cg;~j.Yf IgP{ܣmgƾ.9J5Iuy{\dc{\K6hrM%kW62zAjDQqrFf*(AWD%;걍cT?bSw <6D7u8$2 ^c/KTS/J޻!ihi)<0m>>ҝѨ~ F!7 cc\V5jfucDluCK࿟cyTJ-kFcT+kTwHrUvjۥV3T .($,{-]p~GR#rP}yhM(<[Dl=1"%u4L'99.y_  bbݔt-N4ߩ g1gbt+n'&ͱ"bT^;Ni stzZv驴l#v3$]osTtI8HNj25֙GH&3@1'lKSY+- `Sj<-Dfyp@"rZƫqkLNB:с- m40ylFlZ9R66Cd\J`5^g])T9-^6*=1P 6:\%Օ`[a :`z]|-j`uWY-yxἹJ@{+f;N_#a)"\{y'*QDJr]xˁdi:SV^|c:N;}kf/ %yΥ[Ok.c.F2]"zˮ=:?jr4̔x~ ):[s"bR,>D]1 ,io> om- r|Z7 lZJˮE|ne+5U6ʃطHm1b z2}7B2Aq JE1^H=qg!H/ctls_e~6(Ԋ ENo\XN,Ϲٸu0 w0KEa#1-eXz 6V﹧pOo7q.g +"vc|aOԈzK@pjR*GEP١yM./xJ$8"V6'(W{ Y.^5'LoEwRrm.wJP> u*L@%&4*4C\<{v:}Y[&ERM*2U{D2ϖi~u{1jajKIN]Ѳg>NdK榈t`QHM͑xQ2[B]'2 o9E";L >4'\`*ukUH +^]>sg~@>6' ??Ad(҄Ko^# ȼ{R&u{#>90c;5N+ 4F;k-cWD˝BY>Yda)>8:>K9˖(Ȇ#1}a؅r Y10=,sϚtMGլ-ք3nY@6SK `"ed=+ǖ/eP,$}vߪYED^,_ )nOl\7v aL %jYOJHR:XY1W'4)X'qc6J .x]ns,1xB3oXCILIy?2.m?iAIrWO5qJ ?"A1ZO<[ 3tPcF`8d%^C㍂ D*7U7 R_=>8$;y̔ҤN"0Y0UD "R:mQI48O) WB*5x ѻnRF/̴['$-r@X.ԾLyuHv.l,vLL1H}S6S9)~Xfu tF%".œwJ0n-t<%yzed;^ 8 lEwxo0&ip.X/vOW&> eZsҡ pJQOLŵ5L!q~XjF4}rRkv[ziu|q] m]='@zHOIf,6|d&,Q)<p 8T]=xDsOTdќTp?ʲ"^ |z&Uí1},)gݑuX =Dͦ=7vɘSgŜ rB09tk;#\iNKBG]*I^;FasDÎ;"kM8흍&_&(pܥ9CSQLvC_.8HhHqB_ q$_egԾbʐD KޤbTT9#N1]4d&IS3%t&(Xc䛵 y:^c>XYDv8R 7cS3<*d qԦo@sEu_ǷI}b{upv15h(5ѫP%TknTpo܅[JLu] <,XX}pؚ/1 j*4ϥeR`=ZVR&Gk]'HL`U=gu Xߕ5G&-\ qeͪ8D5v@/]W7R+oqmu=tO'Pn/&q#ñ  +_R8OZY W b4J!I3?M ^ιnU\BڬHаgR~ 0}2!wo 2b'4DߓH4Fb8,.G{mt+`fllU>-I̞;- H٣jGr7J$ ֆ(p 1W$#Y 'cgnE s\q3NRy?I{?= ѷ>vrlp+FJGbZv3ڐ|5,v[1 Ylm>Qlocm b_Z^ 8/.`!7L@+C`jdLm^j`^zф"ݽח;YryT[VI0GUTW*t4ĻT ܥ?9{E% Ɋ8l_`O]W> ,C`2J[Gm3훔6^NIu=*:t83VLYmisnr zO _+ HH_0WYhn\Λ iCC)14+6tHAו #:};#Ì̭̓``Rᆛm7HO;nQ `bIۼt{*zed$^װ}w]`(vnLMʘ7 b{DR[[K&ȦH!;~0Wݭ lNܘp>_C?>*lUȩK9M%ꘜ~:UU|F]F/BjR(#`If3洯Q{iݐ>y\ouQΦ?vē1пK` aB !\b^V0)o0  Q mC'<PYxGJ. w}g3z(tJ\F _ g~OX *ޅP L9jdskl)TACqKw2ȀVGȅ8n$Hj>m@kGZ)꒗Xm׍Ȯ^^V[cp2 7& f rńz /)m+@[:|Q1ԍc^abGP̐UQ9!w;QGWR>ۂ *rJ*\@hթ15%Kv5YnUa9#t, I4.#T 4,:8J~7!"DF-e@B#r=Y 5Q!HǪr'D;ky7k$y7p@8J~@`i@`AVodg o\Fg 'pɭS䀃vy"i;p 7!񸙠,-h\KT];96M̛:UT78193r )ѳ/BkכbS [|M!M~լ)|$Poi=̓*,MK+ۙQU.7 q0}u;n^/͑XT%/.*7"^gk{Vi/8FLM4|--]Uo&Qj/34HHzuc)̆vjaBÖ[sTYAcݧؔ S'V7+[cT9;9ݣ7Ѯ Q˭=ܢ01n7 ΛWzLD6"zg륝lcqAc_VYBz AĭJdK4Z;f2d= [a(Ωʿ)ۈj!87V֢DF &I4S-V]KX: Ģdm%7+-zZ(@鶥6& luRӍ>&7dBݳ}ߗc^R#BDVR1}ͳy nPv=:^P4㝒uP]$RC ?WZWI*l |s29IiV53gYS^>zc󗌰S[d+T9.}SP2Ą` xAY؜GS{ݑ2(#DP<+Cuf8[\vɸgR 7)SiByڝ ωdI!f߭LaDP)Oik_ͱ7¼[~ӮFc_zg1L' 4;la,*4B n[puH0j&*yk@KԂ pMR!W6gD,b@#> ywDg=SqNn"_?N#J4 x|ǘ$A1F@umdYS4yQ%wRHr9:Z& Eg\=}o6[d}/u io 嬢dpu ~9)ٖMv-P' 5J;g/VRTҕ}nKY_S;@Úw![u47%n Tgg`ZVc*Ra[YMIVád:-u-AHp2RvEYjswy(>NeZfY&)GH {aYO,i&j e6BH+3v6;4\V-ro?QMhwV61@tcؑ>b0V(Va9{LNJy!1G`kQE藦 0䡨s'ZonYK˺A?SvF\B OE/X-=fXWаcI:)ANZ֊g;caBF3On4zC^zo2:pc; c M.ܚ ō|3M)<>+$<'}7~ (lu¥B rp(R>X<9TUƈw|#c@1$G@}ƾ %E>c3.u.ט|N {ΝڋwuMǀ_|D¶d7dنO=B-'IJҀzu '/A6u80}8XZG.8u@Fi8 #؝Xr'g⻊ 8_uԕ/Y1q5unx]W#F˗Q,¡gzv*(n W({zvm,HXu)/ 4O-`nj\=)uXqKX(ßNo`3s(cb;~l8:j>t'+?w#mb+O!u;QB,ynĶabw/ŊLL"3MS`.w=$g^ .\Rq)YIƱc_=22" 'ٯ\g:*Spo+˶CJAeIł3M0TRw#lgU\ʆJ#vŝaA7裵]@n8Z+ƘpŹVw]@;Gձ`McWĬьm:wLva؍9ρM; TVuJ{_X~JrgӬpu]b^:QMz2MM';L K58D;%p [@g7*t&HVӇ"ClF UQn;Pω(ӝ!sgjq)_f/'pT(4τɬ6 akɜxn07\騔 ߹pZLI:3bDih>RIٿȨU@,‡pA0+oxS$85-4\x֌`;Y4FB @N1m-_>IݴvwتQ֎胱tkvRkֺޚgиG#oS0Uwb%!Mq~jKU …ttvA\gaмeÆlU8Ƌ?(mOٞ-˶Lt\r2uޠ\9 X†h(2 e'u^q8WpbSQ)J+lf`u@,&)s,7~9k[g5"N@ :F*Yk ^N<+v1QɢfBQ^y{kG.2 ޗnOsﵩ],!°vRD.n"QTYၹ 6pwl}Fb_XYR{XWrbyԹ{66/I?D7xUwhdRlr^8R+ ډsޱrGmFYX&֊  \2DMj hhLޱ[w+R)EM(E׎{Ǎ"zkCHy[Qhӧ ge!ضetvid]r50{n% e`5Ln+1L|S, SOWqv 1[y*pVW*}z6ʼn ="s~=uMOt*n#]+~ aMBZsU•OtЬh 64 9O}A6[(TB;Tcue0(.ӟ Ί|&t1hKjRr?G`~e Ƴ%> ȃvmTIS<O# dRhWCم1YB3m UBOH'ze_t3Pn$2VGejmYØGݸSZq̺ w> fc0%ڵynyMA$4^65+dx*S)b/+7jq=:WF2>΅M4E K|ܒ hgER;ލ]u LWB;I×^qsdGtq gEbKשC [C 2bB41;2OUYVc;aut;G ѶGTBSdO+ 7*f`#H:iUa_żG*Q$+1>rfУnn(wOM Pt8VQՓ*"(}%P`p4&iS8+,w]QBqShCp[ărE;! ^QAGYO9Fu% | h}/F—m'0Qzdbܘ2|>4?6(Z4R~+uy n?ҳo~bTMZM-~.(֩8~đ9:L@Mw0M(X&/Ž 103QIV ]MNa:\.9]96>go(HO06̦2{QPV3PUU(>TW)ǙaZQAP]U9rG9jH7%b|FmxMձjofL=TקQ O&٢ZP%GJRc".m1'kF;qdMXt!Y8_ 6bngxe/9y6&ؗ"Xew =whomu# _Ui8-ÊbC;GrmJ6j}J0D&*< rws"ٚ4HGSar >ٯ1 hS40+M`B4tIp8۽DOjRXT~5]s>d, AhI~J nQh}^#sCOKyJCTe-{;ee dZZ\[i.>aC+tl XcuzQtY3";~Ij½]41u {ca'{J1ˀbA4^Wh`wwc l U{7.OtG]{|KbDlZ>ͰPYqUe4j*)2qa$(. #:┪Y^FxX1a}oǾSE yK`W$ 66.U_Sܴ:ijZٶAj<=i/N6>Fꦖ5#X>1~.kZOt2CE$QQt!n@)Mj6> L]-*L̗LSCrJ08C3~M5XkgYeU3 O:@ҟ⿝/R; !꾾8mk|NoH_'SGNR)k+p8}7m`ƌH/#})7KXӿR: YZ