nagios-4.4.6-bp151.4.6.1<>,^`!M@eee|yQ1veu\zv(>cVOeWZ\L"$*B?J Eg{hFjzm-v]-ꃛ!mnOΗ S.BnaCQwB*闟 +f e24r׈{0WM3T)zM!x52qKN.[?ί^M_b(LHu;$ C(Kp5BSy$;fsv>N?d   6 # <Nekq Z>> (> > > +> ,>->.R>//>00!1t!3!(37384<)94):8)=>?@CFG>H>I>XY\L>]D>^*bced eflu(>v w>x>yz SXhnCnagios4.4.6bp151.4.6.1The Nagios Network MonitorNagios is a program that will monitor hosts and services on your network. It has the ability to email or page you when a problem arises and when a problem is resolved. Nagios is written in C and is designed to run under Linux (and some other *NIX variants) as a background process, intermittently running checks on various services that you specify. The actual service checks are performed by separate "plugin" programs which return the status of the checks to Nagios. The plugins are available at http://sourceforge.net/projects/nagiosplug This package provides core programs for Nagios. The web interface, documentation, and development files are built as separate packages`s390zp26#ZSUSE Linux Enterprise 15openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Monitoringhttp://www.nagios.org/linuxs390x# Create user and group on the system if necessary /usr/sbin/groupadd -r nagios 2>/dev/null || : /usr/sbin/useradd -r -g nagios -d /var/lib/nagios -s /bin/false -c "User for Nagios" nagios 2>/dev/null || : /usr/sbin/groupadd -r nagcmd 2>/dev/null || : /usr/sbin/usermod -a -G nagcmd nagios || : # update? if [ ${1:-0} -gt 1 ]; then # in the past, group www was used as nagios_command_group - now we use the default: nagcmd if id -Gn nagios 2>/dev/null | grep -q nagcmd >/dev/null 2>&1 ; then : # %{nagios_user} is already in %nagios_command_group group else # Add %{nagios_user} to %nagios_command_group. usermod -a -G nagcmd nagios logger -t nagios/rpm "Added nagios to nagcmd" fi fi 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 [ "$FIRST_ARG" -eq 1 ]; then # disable migration if initial install under systemd for service in nagios.service nagios-archive.service nagios-archive.timer ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in nagios.service nagios-archive.service nagios-archive.timer ; 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 fi if [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : fi done fi fi# Update ? if [ ${1:-0} -gt 1 ]; then if [ -f /etc/nagios/nagios.cfg ]; then logger -t nagios/rpm "Please run /usr/sbin/upgrade_nagios /etc/nagios/nagios.cfg to upgrade your installation." fi else # First installation: create an alias for the default nagiosadmin user if [ -r etc/aliases ]; then if ! grep -q "^nagiosadmin:" etc/aliases; then echo -e "nagiosadmin:\troot" >> etc/aliases logger -t nagios/rpm "Added alias for user nagiosadmin to /etc/aliases" if [ -x usr/bin/newaliases ]; then usr/bin/newaliases &>/dev/null || true fi fi fi fi 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 if [ "$FIRST_ARG" -eq 1 ]; then /usr/bin/systemctl preset nagios.service nagios-archive.service nagios-archive.timer || : else for service in nagios.service nagios-archive.service nagios-archive.timer ; do if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm -f /run/systemd/rpm/needs-preset/$service fi sysv_service=${service%.*} if [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi fi systemd-tmpfiles --create /usr/lib/tmpfiles.d/nagios.conf PNAME=nagios 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 if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /var/spool/nagios/ 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 nagios.service nagios-archive.service nagios-archive.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 nagios.service nagios-archive.service nagios-archive.timer ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in nagios.service nagios-archive.service nagios-archive.timer ; do sysv_service="${service%.*}" rm -f "/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 nagios.service nagios-archive.service nagios-archive.timer ) || : fi fi5~7W 0  !H d@ ANIFR1 C5~,<hW 0 4A큤A큤AA큤A큤A큤A큤AAA큤E```````````````````````````^^^`0^^^`^`[`[`[`[`[`^`[`[`[`[`[`[`[`[```````````cd9d98b4d72bf19d0f8014f7dbd09c989783e592d6587185de6361fffdf1edd6327d168405305e0c18d0712bc8af3f338bfa7aabf13e0acedf295c5c222f173955a9ca9da4ebc6e3dcfa5e7bf14192f9ed7cdd1756ac834596ecf94130f3c3d8b1c5fc653a3dd8fe6a1eef5adffd3c7c35f887ee1022d36005565fce4cd18f551bf316339704b77dbc09c555bc6833a25a5329e13787e6248ca3243d37af735ba06b427d71ffafc463b28a9a15ab377faaae807c69a6315cd2e501a4b35ea77f5114c80e62a15cfdc6eb0e9f7a252129563379420a15ecb7cdd20fdcbf31e4f9ac7209f938aa67e9bc3c21087908f093eed2ac491199395592e191b40ac2c154f5d462237bcb5c0f2a24dd35f22be04f702d45b98b9e87a714baabecc28d1636ad2655beb2ba34537fda5997a5c8df99f974eeb20161783b6552b17e419000b51d96c9fc38c1cd808f05495ad1adeaa442db5741857e82d0b235f1d9382abd006dd1290ae9d32d1ab4301f6b24c843ec78ae96ccd4e1e282083f13d982d750a7e339d92987f93a7fdc56aab882604f8eb036b3d4071833d0ab0719678110b7de8f20a946ad8f421386ce70f2e73d50895adbc14edc08ce2e82553212165c70b808a91fcad00002ba8886e62424b0552e1e9b515e72321fb5cc1773ae140d5486c96ecb4558b3c941d5c51211b773d7613de76430b44f64e295b4c519bb885536f50775f233d6503030c55fe88d3fa3b44a8286ad6d3fa6cfe135279e6671851d5dbb0e85e850736e7e2070d2dd94efc727dba1ff8cfd9caa85a0e377824418d70faec3e120375a1074c584239f389e99d648e2fcd74dc03a6d00ff0c34edc703f1654a36375306abac89350ca8ccbb89813c7e1b26e9c76f1972043f01da9b742398354bd9f2374039193c618c802bcdcd02bccf8b7ecf38dbc3138f1bc1dd5624731f3de629487d195ec44bc707b50710f46f5dfcf1a57c1f43cbdaa18aad35edb375fad3e594be62c26a9bd942bcfa706c541f51780e900f12cc2aac33ed66490f060a631a19f4d9163f658ee6fd8fc4ab1de31aed67bb327e0291ec91d320c0d026e01bb17f5b0b63e0c30366d7cb6a3c99fe4a306aad1ff39b69255da60bd3a964c30183fc7daa6948301dd96a0911c3ea741472b1601c1fd39c939afaa8540653ad0c3cc7835b5093d41d1a136121cf525e4c16b2c3fa0c908c9c4bd6b3933b4f2c3bb6dcaa82da02ad616d472bfe3f8e3d56daa85e0388959dafecd645c585d4489bb85c580400625ea49040082e077ccb4f9cba70858d4e9d836e2d534a06db38aca2c4a1c1f22f643e9d3d4e07236d80a0e9261d01d03c93c813a103cd9d98b4d72bf19d0f8014f7dbd09c989783e592d6587185de6361fffdf1edd6f59c17cd7db8bb6a84fca00277d327125764775c5afe94b53264c0ac71d2ba9dad07ece89f6a9e42a6c8cb374d5e13268788352dcb0a4fe61d593db0e5012e6cfad2872d8ffd3059c8b33b0a2e48861dbba7904c5f44a270e6a83a81fc8c1fdc1d96c9fc38c1cd808f05495ad1adeaa442db5741857e82d0b235f1d9382abd004c1b3f8d9062fe37b6fdba78e82ef2c7a717a526b0bd6395758caac2019f6f8a55a9ca9da4ebc6e3dcfa5e7bf14192f9ed7cdd1756ac834596ecf94130f3c3d8b1c5fc653a3dd8fe6a1eef5adffd3c7c35f887ee1022d36005565fce4cd18f551bf316339704b77dbc09c555bc6833a25a5329e13787e6248ca3243d37af735ba06b427d71ffafc463b28a9a15ab377faaae807c69a6315cd2e501a4b35ea77f5114c80e62a15cfdc6eb0e9f7a252129563379420a15ecb7cdd20fdcbf31e4f9ac7209f938aa67e9bc3c21087908f093eed2ac491199395592e191b40ac2c154f5d462237bcb5c0f2a24dd35f22be04f702d45b98b9e87a714baabecc28d1636ad2655beb2ba34537fda5997a5c8df99f974eeb20161783b6552b17e419000b53b6285e7d400094626792b2ab240c4af3a1f120755ebd5e47a71eeea5b12cdaf361ad970a34b8289ef07bf25e5c4717fec085ee1674dccc4fcce316e42276306a0fba7a4a7811e0272434682891b02876c2a4bbedc6d981010a5b2f17a1a4095b231cdf1b5a6d5b48f0fe65f01fb04465c1d9feb83cbb1470b1707ca8d649e14YYYrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootnagiosnagiosnagiosnagiosnagiosrootnagiosnagcmdrootrootnagcmdrootrootrootrootrootrootrootrootnagiosrootrootrootrootrootrootrootrootnagcmdrootnagcmdrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootnagcmdnagiosnagiosnagiosnagiosrootnagcmdnagios-4.4.6-bp151.4.6.1.src.rpmconfig(nagios)monitoring_daemonnagiosnagios(s390-64)@ !@@@@@@@@@@@@@    /bin/bash/bin/logger/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(nagios)coreutilsdiffutilsfillupgreplibc.so.6()(64bit)libc.so.6(GLIBC_2.15)(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.2)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.8)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2)(64bit)mailxpermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)sedshadow4.4.6-bp151.4.6.13.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /var/spool/nagios/ 1>&2` @` @^א^^8 @]]@][\ \Db[ā@[ā@[{@Z%Zp^@Z!D@Z!D@Z@YY@YY7XO@X @XM?X=mX#X!@XI@WίWiV U@UU@UoUc@T\@T-@TT@TLlars@linux-schulserver.de - 4.4.6lars@linux-schulserver.de - 4.4.6Stefan Botter lars@linux-schulserver.de - 4.4.5Dominique Leuenberger Stefan Botter Ansgar Esztermann kukuk@suse.deStefan obs@botter.cc - 4.4.3aeszter@gwdg.delars@linux-schulserver.de - 4.4.2adaugherity@tamu.educrrodriguez@opensuse.orgobs@botter.cclars@linux-schulserver.delars@linux-schulserver.derbrown@suse.comsbrabec@suse.comlars@linux-schulserver.delars@linux-schulserver.deobs@botter.cclars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.dejengelh@inai.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars.vogdt@suse.comadaugherity@tamu.eduaj@ajaissle.dearchie@dellroad.orglars@linux-schulserver.delars@linux-schulserver.depgajdos@suse.comdarin@darins.netlars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.de- new nagios-exec-start-post script to fix bsc#1003362- fix nagios_upgrade.sh writing to log file in user controlled directory (bsc#1182398). The nagios_upgrade.sh script writes the logfile directly below /var/log/- 4.4.6 * Fixed Map display in Internet Explorer 11 (#714) * Fixed duplicate properties appearing in statusjson.cgi (#718) * Fixed NERD not building when enabled in ./configure (#723) * Fixed build process when using GCC 10 (#721) * Fixed postauth vulnerabilities in histogram.js, map.js, trends.js (CVE-2020-13977, bsc#1172794) * When using systemd, configuration will be verified before reloading (#715) * Fixed HARD OK states triggering on the maximum check attempt (#757)- fix boo#1156309, CVE-2019-3698 : Symbolic Link (Symlink) following vulnerability in the cronjob allows local attackers to cause cause DoS or potentially escalate privileges by winning a race. - enhance systemd service: check nagios config before reloading - enable build for SLE11 by excluding some special macros and directories via 'sles_version != 11' condition - add nagios-archive.service and nagios-archive.timer as replacement for the script in cron.weekly: no need for cron on systemd systems - run set_permissions and verifyscript for /etc/cron.weekly on those distributions that need it - enhance rpmlint: ignore empty htpasswd file - enable php apache module and not php5 on newer distributions - try to harden the rcnagios script- BuildRequire pkgconfig(systemd) instead of systemd: allow OBS to shortcut through the -mini flavors.- 4.4.5 * Reverted changes related to #625 due to CPU load issues * Partially reverted changes for #647 due to CPU load issues * Fixed "Quick Search" so that leading/trailing whitespace doesn't affect output (#681) (Sebastian Wolf) * Fixed build issues on non-RPM-based platforms (#617) (T.J. Yang) - 4.4.4 * Fixed log rotation logic to not repeatedly schedule rotation on a DST change (#610, #626) (Jaroslav Jindrak & Sebastian Wolf) * Fixed $SERVICEPROBLEMID$ to be reset after service recovery (#621) (Sebastian Wolf) * Fixed defunct worker processes appearing after nagios was reloaded (#441, #620) (Sebastian Wolf) * Fixed main nagios thread to release nagios.qh on a closed connection (#635) (Sebastian Wolf) * Fixed semicolon escaping to remove prepended backslash (\) (#643) (Sebastian Wolf) * Fixed 'Checks of this host have been disabled' message showing on passive-only hosts (#632) (Vojtěch Širůček & Sebastian Wolf) * Fixed last_hard_state showing the current hard state when service status is brokered (#633) (Sebastian Wolf) * Fixed long plugin output (>8KB) occasionally getting truncated (#625) (Sebastian Wolf) * Fixed check scheduling for objects with large check_intervals and small timeperiods (#647) (Sebastian Wolf) * Fixed SOFT recoveries sending when services had HARD recovery some time after host recovery (#651) (Sebastian Wolf) * Fixed incorrect permissions on debugging builds of FreeBSD (#420) (Sebastian Wolf) * Fixed NEB callback lists being partially orphaned when multiple modules subscribe to one callback (#590) (Sebastian Wolf) * Fixed memory leaks in run_async_service_check(), run_async_host_check() when checks are brokered (#664) (Sebastian Wolf) * Fixed potential XSS in main.php, map.php (#671, #672) (Jak Gibb) * Removed NEB brokering for nagios daemonization, since daemonization occurs before NEB initialization (#591) (Sebastian Wolf)- compile with -ffat-lto-objects to prevent build failure- Add /etc/cron.weekly to filelist, as this is now part of cron, which we don't want to require- revert setting of sbindir back to nagios_cgidir- update to 4.4.3 * Fixed services sending recovery emails when they recover if host in down state (#572) (Scott Wilkerson) * Fixed a make error when building on the aarch64 architecture (#598) (Gareth Randall) * Fixed --with-cgibindir and --with-webdir to actually set values given (#585) (lawsontyler) * Fixed soft recovery states for services (#575) (Jake Omann) * Fixed XSS vulnerability in Alert Summary report (CVE-2018-18245, boo#1119832) (Jake Omann) * Fixed services in soft states sometimes not switching into hard states (#576) (Jake Omann) * Fixed last_state_change to update when a state goes from soft -> hard state (#592) (Jake Omann) * Fixed Map link always being set to undefined host and don't show link for Nagios Process root note (#539) (Jake Omann) * Fixed notifications sending when services went into hard state on a down or unreachable host (#584) (Jake Omann) * Fixed log_host_retries not logging the host soft state checks (#599) (Jake Omann) * Fixed stalking_options N option to properly log only when a notification is actually sent (#604) (Jake Omann) * Fixed issue with service status totals being zero when servicegroup=all on servicegroup status page (#579) (Jake Omann) * Fixed escalation notifications logic and recovery notifications not going out (#582) (Jake Omann) * Fixed not finding child index causing duplicate hosts showing in the Map (#471) (Jake Omann) * Fixed Map configuration popup checkboxes not working and Root Node not populating (#543) (Jake Omann) * Fixed cleanup and deinit of neb modules on reload (#573) (Jake Omann) - rebase nagios-4.2.2-enable-ppc64le.patch (allow ppc64le builds in contrib Makefile) to: nagios-4.4.3-enable-ppc64le.patch- install /var/spool/nagios setgid nagcmd so external applications like the webinterface can issue commands to nagios (boo#1028975)- update to 4.4.2 * Fix comment data being duplicated after a `service nagios reload` or similar (#549) (Bryan Heden) * Fix check_interval and retry_interval not changing at the appropriate times (#551) (Scott Wilkerson) * Fixed passive checks sending recovery email when host was previously UP (#552) (Scott Wilkerson) * Fixed flapping comments duplication on nagios reload (#554) (Christian Jung) * Fix for CVE-2018-13441, CVE-2018-13458, CVE-2018-13457 null pointer dereference (Trevor McDonald) (boo#1101293, boo#1101289, boo#1101290) * Fixed syntax error in file: default-init.in (#558) (Christian Zettel) * Reset current notification number and state flags when the host recovers, reset all service variables when they recover fixes (#557) (Scott Wilkerson) * Fixed wrong counting of service status totals when showing servicegroup details (#548) (Christian Zettel, Bryan Heden) * Fixed avail.cgi not printing CSV output when checkbox is checked (for any type: host/service/hostgroup/servicegroup) (#570) (Bryan Heden) * Fixed nagios not logging SOFT state changes after 1 (Scott Wilkerson) 4.4.1 - 2018-06-25 * Revert some macro->kvvec changes causing problems when `enable_environment_macros` was enabled (Bryan Heden) * Adjust `process_macro_r` function logic so that it handles macros properly (Bryan Heden) * Fix spec file for systemd (Karsten Weiss, Fr3dY, Bryan Heden) * Fix bug where `ssize_t` typedef to int on some systems (Bryan Heden) 4.4.0 - 2018-06-19 ENHANCEMENTS * new status for check dependencies (John Frickson) * Allow more flexible requirements for comments (John Frickson) * Add a `statusCRITICALACK` class for the status column (John Frickson) * CSV output based on groups (all options) (John Frickson) * New Macro(s) to generate URL for host / service object to be used in notifications (John Frickson) * New Macro(s) to determine if host/service notifications are enabled (#419) (Bryan Heden) * New Macro(s) for obtaining the host/service notification periods (#350) (Bryan Heden) * enable_page_tour interface option (Bryan Heden) * Code cleanups in important sections (Workers, Handling Results) (Bryan Heden) * Automatic mail program detection (with same /bin/mail failback) (Bryan Heden) * Incorporated [autoconf-macros](https://github.com/NagiosEnterprises/autoconf-macros) into Core (Bryan Heden) * Lots of enhancements/additions to configure/make process. (Bryan Heden) + Moved all files to startup/ + Added upstart job * Added system limit detection (RLIMIT_NPROC) to check for anticipated fork() failures (#434) (Bryan Heden) * Added stalking on notifications (`N` or `notifications` option when specifying `stalking_options`) (#342) (Bryan Heden) * Added automatic `systemctl daemon-reload` and `initctl reload-configuration` where applicable on `make install-init` (Bryan Heden) * Added case-insentive command submission. (#373) (Bryan Heden) * Enabled `check_external_commands` by default (Bryan Heden) FIXES * Command line macro detection skips potential macros with no ending dollar sign (Bryan Heden, Jake Omann) * Fixed a lockup condition sometimes encountered on shutdown or restart (Aaron Beck) * Fixed negative time offset calculations computing incorrectly sometimes (bbeutel) * Fixed reloads causing defunct (zombie) processes (#441) (Bryan Heden) * Fixed wait3(), wait4() implementations (replaced with waitpid()) (#326) (Bryan Heden) * Fixed additive inheritance not testing for duplicates in hosts/services/(+escalations) (#392) (Bryan Heden) * Fixed very very (around 600k chars or greater) large plugin output crashing Nagios (#432) (Bryan Heden) * Fixed first_notification_delay not beeing calculated from last_hard_state_change (#425) (Christian Zettel) * Fixed duplicate downtime ID occuring from downtimes in retention file (#506) (Franz [feisenko]) * Fixed segfault when navbarsearch was used in status.cgi for something other than a host (#489) (Bryan Heden) * Fixed some miscellaneous ./configure issues on Solaris (Bryan Heden, Troy Lea) * Fixed "Locate host on map" link (#496) (Troy Lea) * Fixed service groups defined with unknown service members (that aren't first in the list) not erroring out (#500) (Bryan Heden) * Fixed tac.cgi to have consistent behavior with the other cgis (#481) (Bryan Heden, Matt Capra) * Fixed clear_host/service_flapping command logic to broker/notify properly (#525) (Bryan Heden, Karsten Weiss) - removed upstreamed patches: + nagios-fix_spurious_dollar_signs_added_to_command_lines.patch + nagios-4.3.4-fix_memleak_4.3.3.diff - refreshed patches: + nagios-4.0.6-remove-date-time.patch + nagios-4.1.0-add_KOHANNA.conf + nagios-4.2.2-enable-ppc64le.patch + nagios-disable_phone_home.patch + nagios-fix_encoding_trends.cgi.patch + nagios-output-length.patch + nagios-random_data.patch- fix setting default values in nagios-exec-start-pre- remove unused xorg-x11-devel BuildRequires- fix upstream issue #455, memleak introduced with 4.3.3 nagios-4.3.4-fix_memleak_4.3.3.diff- update to 4.1.0 fixed boo#939829 already, mentioned here just for reference- fix a possible symlink attack for files/dirs created by root fixes CVE-2016-8641 (bsc#1011630 and bsc#1018047) - remove the pre-configured administrative account with fixed password from the htpasswd file and provide an empty one instead (fixes boo#961115 - CVE-2016-0726)- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Do not introduce new RPM group just for nagios-contrib. Use established Development/Tools/Other instead.- update to 4.3.4 * Improved config file parsing (Mark Felder) * Fixed configure script to check for existence of /run for lock file (in regards to CVE-2017-12847, Bryan Heden) * Use absolute paths when deleting check results files (Emmanuel Dreyfus) * Add sanity checking in reassign_worker (sq5bpf) * xodtemplate.c wrong option-deprecation code warning (alex2grad / John Frickson) * On-demand host check always use cached host state (John Frickson) * 'á' causes Serivce Status Information to not be displayed (John Frickson) * New Macro(s) to generate URL for host / service object (John Frickson) * Fix minor map issues (Troy Lea) * Fix lockfile issues (Bryan Heden) * Switch order of daemon_init and drop_priveleges (CVE-2017-12847, Bryan Heden) * Add an OpenRC init script (Michael Orlitzky) - only require insserv on older SUSE distributions- update to 4.3.2 FIXED * Every 15sec /var/log/messages is flooded with "nagios: set_environment_var" (John Frickson) * Changed release date to ISO format (yyyy-mm-dd) (John Frickson) * `make all` fails if unzip is not installed (John Frickson) * Quick Search no longer allows search by Alias (John Frickson) * flexible downtime on a service immediately turns off notifications (John Frickson) * Fix to allow url_encode to be called twice (Z. Liu) * Update timeperiods.cfg.in (spelling) (Parth Laxmikant Kolekar) * Spelling fixes (Josh Soref) * Vent command pipe before remove to avoid deadlocks on writing end (Kai Kunstmann) * CGI utility cgiutil.c does not process relative config file path names properly (John Frickson) * xdata/xodtemplate.c bug in option-deprecation code (John Frickson) * Wildcard searching causes service status links to not work properly (John Frickson) * Quick search with no hits shows a permission denied error (John Frickson) * Setting a service as its own parent is not caught by the sanity checker (-v) and causes a segfault (John Frickson) - removed nagios-4.3.1-remove-flooding-messages.patch (fixed upstream)- fix upstream issue #337: remove debugging messages: nagios-4.3.1-remove-flooding-messages.patch- Update to 4.3.1 SECURITY FIXES * Fix for CVE-2016-6209 (bsc#989759) - The "corewindow" parameter (as in http://localhost/nagios?corewindow=www.somewhere.com) has been disabled by default. See the UPGRADING document for how to enable it. (John Frickson) FIXES * Service hard state generation and host hard or soft down status (John Frickson) * Comments are duplicated through Nagios reload (John Frickson) * host hourly value is incorrectly dumped as json boolean (John Frickson) * Bug - Quick Search no longer allows search by IP (John Frickson) * Config: status_update_interval can not be set to 1 (John Frickson) * Check attempts not increasing if nagios is reloaded (John Frickson) * nagios hangs on reload while sending external command to cmd file (John Frickson) * Feature Request: return code xxx out of bounds - include message as well (John Frickson) * Fix early event scheduling (pmalek / John Frickson) * on-demand host checks triggered by service checks cause attempt number increments (fredericve) * Service notification not being send when host is in soft down state (John Frickson) * configure does not error if no perl installed on CentOS 7 (John Frickson) * failed passive requests leave .ok files in checkresults dir (caronc) * Services don't show in status.cgi if "noheader" specified (John Frickson) * Standardized check interval config file names (John Frickson) * "Event Log" (showlog.cgi) could not open log file (John Frickson) * "nagios_check_command" has been deprecated since v3.0. Last vestiges removed (John Frickson) ENHANCEMENTS * Added new flag to cgi.cfg: tac_cgi_hard_only to show only HARD states (John Frickson) * Add broker-event for the end of a timed event (NEBTYPE_TIMEDEVENT_END) (John Frickson) * There is no Macro to retrieve addresses of hostgroup members (now $HOSTGROUPMEMBERADDRESSES$) (John Frickson) * Add "Page Tour" videos to several of the core web pages (John Frickson) * Added a login page, and a `Logoff` links (John Frickson) * On the status map, the host name will be colored if services are not all OK. (John Frickson) * Added "Clear flapping state" command on host and services detail pages. (John Frickson) * User-entered comment now displays below generated comment for downtime (John Frickson) - refreshed patches- update to 4.2.4 SECURITY FIXES * Fixed another root privilege escalation (CVE-2016-9566) Thanks for bringing this to our attention go to Dawid Golunski (bsc#1014637) (http://legalhackers.com).- update to 4.2.3 SECURITY FIXES * Fixed a root privilege escalation (CVE-2016-8641) (John Frickson) FIXES * external command during reload doesn't work (John Frickson) * Nagios provides no error condition as to why it fails on the verify for serviceescalation (John Frickson) * No root group in FreeBSD and Apple OS X (John Frickson) * jsonquery.html doesn't display scheduled_time_ok correctly (John Frickson) * daemon_dumps_core=1 has no effect on Linux when Nagios started as root (John Frickson) * Configuration check in hostgroup - misspelled hostname does not error (John Frickson) * contacts or contact_groups directive with no value should not be allowed (John Frickson) * Compile 64-bit on SPARC produces LD error (John Frickson) * HOSTSTATEID returns 0 even if host does not exist (John Frickson) * Submitting UNREACHABLE passive result for host sets it as DOWN if the host has no parents (John Frickson) * nagios: job XX (pid=YY): read() returned error 11 (changed from LOG_ERR to LOG_NOTICE) (John Frickson) * Fix for quick search not showing services if wildcard used (John Frickson)- use faster find variants- allow ppc64le builds in contrib Makefile: nagios-4.2.2-enable-ppc64le.patch- update to 4.2.2 SECURITY + There was a fix to vulnerability CVE-2008-4796 in the 4.2.0 release on August 1, 2016. The fix was apparently incomplete, as there was still a problem. However, we are now getting all RSS feeds using AJAX calls instead of the (outdated) MagpieRSS package. Thanks for bringing this to our attention go to Dawid Golunski (http://legalhackers.com). ENHANCEMENTS + Update status.c to display passive check icon for hosts when passive checks are enabled and actives disabled FIXES + Fix permissions for Host Groups reports (status.cgi) + Service Parents does not appear to be functioning as intended + Availability report mixes up scheduled and unscheduled warning percentages + Invalid values for saved_stamp in comput_subject_downtime_times() + Remove deprecated “framespacing” + The nagios tarball contains two identical jquery copies + extinfo.cgi does not set content-type (most cgi’s don’t) + Timeperiods are corrupted by external command CHANGE_SVC_CHECK_TIMEPERIOD + Quick search doesn’t show hosts without services (service status detail page) + In host/services details view, if exactly 100 entries would not show last one + nagios host URL parameter for NEW map doesn`t work – Network Map for All Hosts + next_problem_id is improperly initialized + Passive problems not showing as “unhandled” + September reported as Sept instead of Sep + Notifications are not sent for active alerts after scheduled downtime ends + Nagios 4.2.0 not working on Solaris + install-exfoliation and install-classicui don’t work FreeBSD and Mac OS X + Updated makefile to delete some no-longer-needed files- update to 4.2.1 FIXES + Fix undefined variable php error (John Frickson) + Links on the sidebar menu under 'Problems' are indented too far + Using $ARGn$ Macros in perfdata (John Frickson) + using a wildcard in search returns service status total all zero's + read_only does not take priority (deppy) + Running nagios -v on 4.2.0 takes 90+ seconds (John Frickson) + Missing Image for Host and Service State Trends in Availability Report + Maintain non-persistent comments through reload (John Frickson) + Servicegroup availability report ignores includesoftstates in service report links (PriceChild) + error: format not a string literal and no format arguments (Karsten Weiss) - ignore rpmlint warnings about tmpfile creating/listing: this is handled, but not properly detected by rpmlnt- update to 4.2.0 SECURITY FIXES + Fixed vulnerability CVE-2008-4796 (John Frickson) + Fixed vulnerability CVE-2013-4214 (John Frickson) + web interface vulnerable to Cross-Site Request Forgery attacks ENHANCEMENTS + Increase socket queue length for listen() + Added host name to the website page title (leres / John Frickson) + Added additional icons for NetBSD and SuSE (John Frickson) + The new Status Map will now use cgi.cfg options (John Frickson) default_statusmap_layout will default to "6" for the new map + The new Status Map will now show some valid values in the popup for "Nagios Process" (John Frickson) FIXES + Network outage view without access to all hosts (John Frickson) + Core workers looping (John Frickson) + service query returns duplicate host_name and description fields in the returned data (John Frickson) + HTML output of plug-ins is parsed in wrong way => webgui unusable (John Frickson) + Command worker fails to handle SIGPIPE + "View Status" links under "Map" broken in Nagios Core Version 4.1.1 (John Frickson) + Can't send big buffer - wproc: Core Worker seems to be choked + Too big CPU load on FreeBSD and other systems using poll() interface + Flexible downtime recorded as unscheduled downtime (John Frickson) + Service Flexible downtimes produce 1 notification before entering + Once you "set flap_detection_enabled 0" it should remove flapping state from the host/services page (John Frickson) + New map doesn't finish loading if a logo image is not found + Extraneous Div end tag in map.html (Scott Wilkerson) + Issue with "Problems" section (John Frickson) + Status Map icons and online/offline status dots disappear in IE11 + New network map overlays the nagios process with objects + Added Default-Start and Default-Stop to the init script + Compile / logging issues with BSD 6 + Related to above, Fixed a lot of incorrectly handled time_t's in *printf's + New map not working for RU locale (actually, most locales) + Replaced all instances of signal() with sigaction() + blockig + UTF-8 characters like german ä are not processed properly by function url_encode (John Frickson) + nagios worker processes can hog CPU (huxley / John Frickson) + custom time periods that include special characters were not being handled in reports (John Frickson) + Fixed init script to wait up to 90 seconds then kill the nagios process (John Frickson) + No Host Groups results in wrong error message (John Frickson) + Setup Nagios users to view specific host is not working in the new network map (John Frickson) + statusjson.cgi fails glibc realloc truncate response output (John Frickson) + Report Time Period does not work if an @ character is in the timeperiod name (John Frickson) + State History does not use actual plugin long_output (John Frickson) + Time period corruption (xoubih) + Tactical Overview - Disabled Flap Detection Link (John Frickson) - add /var/run/nagios as ghost directory- Fix nagios-www: keep nagios-www-dch from owning html files shipped with Nagios. - Remove unused NAGIOSDCH apache flag.- Update to 4.1.1 FIXES * CGI Could not read object configuration data (broken by error in 4.1.0) * exclude (!) not working (broken by mis-applied fix for 4.1.0) - Dropped patch nagios-issue_71.patch (included in sources)- Add nagios-issue_71.patch * Fixes "CGI Could not read object configuration data" (boo#944102)- add nagios-4.1.0-add_KOHANNA.conf patch to allow using kohanna2 if available- update to 4.1.0: ENHANCEMENTS * Promoted JSON CGIs to released status * New graphical CGI displays: statusmap, trends, histogram * Make sticky status for acks and comments configurable enhancement #20 * Add host_down_disable_service_checks directive to nagios.cfg #44 * httpd.conf doesn't support Apache versions > 2.3 FIXES * Fix for not all service dependencies created (John Frickson) * Fix SIGSEGV with empty custom variable (orbis / John Frickson) * Fix contact macros in environment variables (dvoryanchikov) * Fixed host's current attempt goes to 1 after going to hard state * Fixed two bugs/problems: Replace use of %zd in base/utils.c & incorrect va_start() in cgi/jsonutils.c (Peter Eriksson) * Fixed: Let remove_specialized actually remove all workers (Phil Mayers) * Fixed log file spam caused when using perfdata command directives in nagios.cfg * Fixed off-by-one error in bounds check leads to segfault (Phil Mayers) * Added links for legacy graphical displays (Eric Stanley) * Update embedded URL's to https versions of Nagios websites * Fixed doxygen comments to work with latest doxygen 1.8.9.1 #30 * Fixed makefile target "html" to PHONY to fix GitHub issue #28 * Fixed typo as per GitHub issue #27 (Trevor McDonald) * Fixed jsonquery.php 404 not found error, and disabled Send Query button until form populates #43 * Fixed linking in Tactical Overview for several of the Host entries in Featured section #48 * Fixed passing limit and sort options to pagination and sort links #42 * Added form field for icon URL and clean-up when it changes in CGI Status Map. * Added options to cgi.cfg to uncheck sticky and send when acknowledging a problem * Low impact changes to automate the generation of RPMs from nagios.spec file. * Update index.php (Trevor McDonald) * Fixed escaping of corewindow parameter to account for possible XSS injection * Typo correction (T.J. Yang) * Make getCoreStatus respect cgi_base_url (Moritz Schlarb) * Adjusted map layout to work within frames (Eric Stanley) * Fixed map displays are now the full size of browser window (Eric Stanley) * Fixed labels and icons on circular markup no longer scale on zoom * Got all maps except circular markup working with icons (Eric Stanley) * Fixes to make legacy CGIs work again. (Eric Stanley) * Fixes to make all/html target tolerant of being run multiple times * For user-supplied maps, converted node group to have transform * Fixed issue transitioning from circular markup map to other maps * Fix displayForm to trigger on the buttom press (Scott Wilkerson) * Fix fo getBBox crash on Firefox (Eric Stanley) * Fixed map now resets zoom when form apply()'d (Eric Stanley) * Fixed so close box on dialogs actually closes dialog (Eric Stanley) * Corrected directive in trends display (Eric Stanley) * Fixed minor issue with link in trends linkes (Eric Stanley) * Fixed issue with map displaying on Firefox (Eric Stanley) * Added exclusions for ctags generation (Eric Stanley) * Update map-popup.html (Scott Wilkerson) * Initial commit of new graphical CGIs (Eric Stanley) * Fixed Github bug #18 - archivejson.cgi returns wrong host for state change query (Eric Stanley) * Status JSON: Added next_check to service details (Eric Stanley) * Fixed escaping of keys for scalar values in JSON CGIs (Eric Stanley) * build: Include if it exists. (Eric J. Mislivec) * lib-tests: test-io{cache|broker} need -lsocket to link. (Eric J. Mislivec) * lib-tests: test-runcmd assumes GNU echo. (Eric J. Mislivec) * lib-tests: Signal handlers don't return int on most platforms, and using a cast was the wrong way to resolve this. (Eric J. Mislivec) * Fix some type/format mismatch warnings for pid_t. (Eric J. Mislivec) * Fix build on Solaris. (Eric J. Mislivec) * runcmd: Fix build when we don't HAVE_SETENV. (Eric J. Mislivec) * Fixed checkresult output processing (Eric Mislivec) * Corrected escaping of long output macros (Eric Mislivec) * Fixed null pointer dereferences in archive JSON (Eric Stanley) * Fixed memory overwrite issue in JSON string escaping (Eric Stanley) * JSON CGI: Now escaping object and array keys (Eric Stanley) KNOWN ISSUES * New map does not account for multiple parents, leaving "legacy" map as an option in the menu - removed upstreamed patches: + nagios-bogus_warnings.patch + nagios-apache24.patch - refreshed all other patches- use new syntax for apache 2.4 + nagios-apache24.patch- patch so nagios does not truncate performace data- fix alias definition in systemd file- ignore errors during *post* of nagios-theme-exfoliation caused by the script trying to restart apache during build (bnc#911755) - ignore suse-missing-rclink rpmlint warning, as we use a wrapper script to provide backward compatible features (check)- add Alias=monitoring_daemon.service to systemd file to have a similar virtual provides like in the old times- package a shell script in /usr/sbin/rcnagios providing the check commands as in the old sysvinit days (and redirect anything else directly to systemctl)/bin/sh/bin/sh/bin/sh/bin/sh/bin/shs390zp26 1621538582 %&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST4.4.6-bp151.4.6.14.4.6-bp151.4.6.14.4.6-bp151.4.6.1 nagioscgi.cfgnagios.cfgobjectscommands.cfgcontacts.cfglocalhost.cfgprinter.cfgswitch.cfgtemplates.cfgtimeperiods.cfgwindows.cfgresource.cfgnagiosnagios-exec-start-postnagios-exec-start-prepluginsnagios-archive.servicenagios-archive.timernagios.servicenagios.confnagiosnagios-archivenagiostatsrcnagiosupgrade_nagiosnagiosChangelogLEGALLICENSEREADME.SUSEREADME.mdTHANKSUPGRADINGsample-configREADMEcgi.cfghttpd.confmrtg.cfgnagios.cfgresource.cfgtemplate-objectREADMEcommands.cfgcontacts.cfglocalhost.cfgprinter.cfgswitch.cfgtemplates.cfgtimeperiods.cfgwindows.cfgsysconfig.nagiosnagios.8.gznagiostats.8.gzupgrade_nagios.8.gznagiosretention.datstatus.datnagiosarchivesconfig.errnagios/etc//etc/nagios//etc/nagios/objects//usr/lib//usr/lib/nagios//usr/lib/systemd/system//usr/lib/tmpfiles.d//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/nagios//usr/share/doc/packages/nagios/sample-config//usr/share/doc/packages/nagios/sample-config/template-object//usr/share/fillup-templates//usr/share/man/man8//var/lib//var/lib/nagios//var/log//var/log/nagios//var/spool/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Maintenance:16344/openSUSE_Backports_SLE-15-SP1_Update/09b7a601049fc5f4fa144f7df8a275bd-nagios.openSUSE_Backports_SLE-15-SP1_Updatedrpmxz5s390x-suse-linux directoryASCII textASCII text, with very long linesPOSIX shell script, ASCII text executableELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=8c6a2fe873d1e4013ba15322fc3cdb37297f3511, for GNU/Linux 3.2.0, strippedBourne-Again shell script, ASCII text executableELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=bf8a33dc32530ed0fe206c97545612e6b7c881a3, for GNU/Linux 3.2.0, strippedUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)empty RRRRRRRRRRRRRR RRRRR RRM^hMH~vAasystemdicinga-monitoring-toolsmonitoring-toolsnagios-pluginsnagios-wwwutf-8cdba1a80256782070dafec4cf70956e6304ac101d5db9cdb846f1c595efe137f? 7zXZ !t/)]"k%f4!ne^H)?t+&q -]-PZ3_i1ΐ#pr^r-5f[6BOXҡbH2LDJʤ)ҕgI>GIblsTy+̽3s./x4}}e) c &8NK= {@1o?\e(SCxŜOA; gygdNw& e>a(Sv e$=g`?g3 Y2LLa!G9~4!ek/;>X`mMh'3v ޠCL /6iā>hm`(bٜJY\?s_\$$ 2,V QhK-S U2_ NSSuL Uʿ İ(xr1ύ?܍AsSX2- ㅝ$"2n* yÏ#cHN)vY(Oh2i:{"LD@$ͷق<]qw~9/te:=wx$#ai`!o*VKQe AEb _#C4|pmОLH`o xtԂl(aYO4 '_"& tcp~M7}BY/o%E*[W ?l 6J K{O̞ J;./!i Cvz (H1k(7XݑFgG7+YJģ",0Tރ #^yB?KJ҃.S4TI%4A9J0< 7vf\)rTM L7rr]nÍZAo)څgo`(7{(8%R4LOR}7gv8C̈*aZ<=bNSh=6xH4ƙO|#Ji&* O^Q.(6=.L&6ڰNhO!d)3t@gVʖrp+4(뉋nHw]4g;IFpH?%z$J!䈜'')E\." ƥ߽,3p%ڳ]R_9bh|Vɢ; =ІNn{+ 7VF62P/fKrH>ͨn_ڒvvK&Cz|>0PP!m鳕 jP%ϥFl/~˼*p><-uϗoXxSH>$-7wI7;0n=v?д15[Y/>dPG|50,$_(A-TUr>H@s9b_Ce*q?dKkܻC#5tFiJVŶ+7)%A{L)>!%^C]bfO &qPP{Yw98Gy% 11 S=ff׀JR Z`ߥD6_bȼ&rKvΩo4߰GkD1PH? sQhɜWqA\@!Ѯ5җ$"@~0Ky8r3yEP{.`fpZ`z GRQnnKBML`c}8&A'dFz[7^bݼH8/G*YvPRYl ޟBp pGh-sQ=>0ھu%I+xR{;#2ǵ_hi>3Vg/RACiy 꿍rc!-~"޸P=Ļ~'maK&hŀwHar?-rF' 3mbQ/]U"͕bNtybf`p1! 9 {1ȣF1~6s:3m>5ը5YmBm#vkulWDATUP ۰ݸ'@%N! 14(W ʚa1PZmyD49 <˘~̱U36G[EAalM&/sP@ Du-=C "V3TS/v-z.i~knT[l-2paSph>wkc(Z)bz =>f[`^7Lo)!" >\~}g?\f.n]z:2_&5zLܡ c7i >J .Ndo^jּ%?)#҇2<ЦuY=hxC6qVK= SE9NׅoDQ ]jǁTR 76%VE~{4VsI T.3N~ Fnf!MzR6޷ùngOlP 7"`׵͟ҰvoK[#S~m^޲B9HH>3i։'>-)j2(2!G=8c1 Zޓ1阠5c'x̒/.N4=M:U9Cߒ5*OB&t&erkPjF[MCpF")[y1}:{#|ODʹG2 b_ L_zyc4Qp=+pi$4Klo{£pQ 2miXbAʎ`G.Y?.})6ESqK'-хw[ƪ55cR}[i~FlNM-I=Jb[ tXܺ^yVo@°IJ}]* {[0|h\k`-jˡc`׋S"pt坒dgU&w+Np 4=t/vBy:~nby܀OE41v*f4TLOIA*h=S{\*d.n B1p\!KBta-#b[U%4R 5nsk9:QSC<2Mٿ,ȋ4ׂĤUb]x_ZîQ0d&"9$tȕO^X)JxCώ#BQEȍRqlqdI%"_4PG>|;SMNV;C>пѧ*`Θ-:ampbXJFuy=-R} 8%+.eJX^F q@Z#r#Kԅ\+OV_+ѭ'o T5SzW0G,?Ǡ`)~s:^)Pԗ°E6S'yIqC1wu׾j*J(|Q8tx稼>TGp0GW0||d$U(Epf{DE5XL5fm^Craȯ8[j>mֺ+c؅us:^V)*K5İ\D Re}PZL|dۥ^&:]ա=c˺EQlP1Wő;sBB7F͎)Պ 2-t3 M1 []=]ծ»GrA5 ;^.Bf|9Lɋ6wqlސ!el`$*WLE<躤Zŝ1ƯoݎDJ!{>!@u״zیU$?J6_w㲜Y ͩ-kSNCtckOţwfظpzhc;eO4# 6V ,y²y.t+^ճHbBvX#D0o 1߹A6]4Z hҟvb$kfQl⿹8{RbCnȄJX .C6,5?y˚5b;#Yl';*l@1FUڸwn\J\[z%sC]*cO[0S;>MFzec_]G_7̮w)۝`I@[-G-fS:۰g݀i\L԰īޯx.*a=s$2BL ҇ZRWV1~@vUEVjS2weO7]H@Ѽ>`zǿPʀ9wF0;OoRO>B/itނ\xN{lM1x ngVh):Y`X;KQ,y~Hq-+,`X7K@(!pCha6>"I P>EUHiRYzN )XKTE+Br!VKIpj:u.e);j<.ڧ⪉rr;;?:C yHEMX*gl:7FextTmQ$)[W]x+ ~c+5!]Et9aM,$uyRj>VݠTۖ,C:_kG^p4Ѡo4`V/H9פkwpJ+PF g@,Bx]FnoFPΏM%<2[ ~JL=GhV+z+$q@nIi Bg&{'zA K ^w63e4X2WbWj{`yIbw!:mDoVkkXw-+ 1 >:5uu Q'`Kxybyi[RKew*Π@l4*;9x'z7,kG|ͮ\SN[: qax*w qx TɄ\Z?Eq@Y#{wRM[tؾ/c!*b{ PӈAHD܉9/x5W=#wOԹ`Z%޲^%{~{D^| ͧӬ:~] UJ5Gߦpc+n93x3F\ΧʜJ^yv;-*ՉNzS,Fz|Cu>aK ]Mֳ,k#bwHEfS O¨2T*{K6%mU?9(%M[UM#7 |uh؁t2_=o؎شQ}o+M 2bUX1BϢv>Yi|ӣa ={#Lq#g|v ytpLE^&Rl }Y&i-L-\ؑ I#h`iN:`X9Hbv K>բ^K@xw-DuwR[Lcf˲}Az̵?lX@ʓM!?S&7LҬ4=4IݒDN>l# 鋯47ov_iU/: I%w!Ĭ`ѩ)$^8M+?vjajbM(Y'PQP╻rᏅk2(%ɃLz ls]YiHVgDH7ޱ*o?Gp jnv_G wYLkq~_G|H sC.M>3 v<v5%×-pTRBǯB$ߛ!ȶxʜ2u3?*6=,o3/J}(߻)gW˹T?77D>1i[ztt۴]ؐS-FLo&-.  8*ptSIluKT2<#lpۖuy'qkD`D| =sZ Uծ8JxM}\؀*ܪ{lj' !€$Bg2PvR{ XϜW܁i5Lջa?\."l?$Ӎnj:654 ^ĉVN( &Z0Ed}4W)!4UO?tV\xHHMEeM(V]l Kٕ 1M^[75 tU4k3^3%?h:r0>"hC͇I;0(.b^2Q4m Bho`RߺVqe&WX 1n )`rL*}/{C'Ji;EC)l5mJNl@\?$;8x+"SThPsv)-+C3y⩽&.$nH?Qf%2&hs .&XC/a_|LO Y-5qA:w6fyZ|"hN;,^,Rber\>6\bg p%0ok1U1Vqr:;0w!w'мw=O!|^&ޖ3]VZqro49^$"F%=< E"oR޴^<ӆ¤jc2Sί5bړAC`2qz픢84\\ea4Ф -h#C;/p~"r3/-x\4 oB*=yW5HXwt*BPO7`A]P7+Kmr &"p I'jx+ՃCD /0>k_!˿|mfLc)e 5x FJYz&6;Vۛp5q/Jzx) *O}{8>z, 5J  i3l'5Z3=q- LK_ꗂ.m[lBƶ!\M*cZy\Zs^L@нm^QaIF<;r}jϛe<3Fً)V-KPd%>x{tٙ kDr{U)+Uf2yzLh2&|Q"$1—p +ZNwvD732ASnUL5:٦Pk ֢buDyFYTf.Tػ@W,6C'+Uݮ^A؛8CE[Rg* ?$Mifei_Z AjFfrA!۲?i E۲BOSa/ne Z1Vs?}A0ف\/٨^XxPj5,(5|LYk{a kq%j[i+WMPuە9w83L/mSHcaYu&}vFzE>A)>0], 6O=I&t%20d+oFȻ[jI?oѥKoI>IřW:53Qn@דuqO,Yv ZEE@!v@J =c YUV2^çZ^eJ c 180*Lli7 m[w¢2 \ Xx=m2gWW!)Wb~(ΔQν\OQ~3~<90 ۟` ']m -_Zං :VM‰F/aDS&aɨ Dk*ބ:Adv&w3N[pExEC%Pi1l$pDE(R8g{)ްkpB[ %V/JѼxj:!VD,,>QSEvvD6 AQ^^6+`dE')Fic&WuӰ54hCHkd8.Dέd%9.^r<>ËIR{R ][ o$L!fA="f:Y|Q֮;wx`3y=H𥺕bL XA?;BG -[B pѧMpQZ.aX{ϑI"'\(LeRgZ( Qo.N?m gi5}H^ ʂͱ:4O tfr|9XcP=lD0n)2"xkjRQJ(Qvqhk8?q =65stry* : ڻXľ aUiIQ"ܫX,%Z-nc 4}^\&\cMFO.ie5:k3]8$4R>(Nou5=҈:ٕ6Gt?_^ov:ҡ᧌d]MEry; gٽqZ1kzh9*ARz7 _εbQslufWMYuv j뻨Ik4wh8"G, %:*9' ~M-EO:>cx;<('5fD8 >GD"5yh3%67%7fxct1PZPVKDWu˓zo68@QF}c1f@X]W #JjL \ֻHɷT/|{,+Хs !)0)oēUkd4.dk@KN&9%GYB%ndZQBFSws@c%0\i8MyxSÜN]d,UD"S)Уq^Jn.`AojՊWi(Efd:`ze8nCbpwBY=|U p,: Id*{7WȡE-*qAP5+'[2봊r΀TWr2VR ̼^Š*>SJK_PS0h&|xLjkO _Z7Q3'&E*5Hdh<5|LhX/'^#!9{m.FrKad{FE8T3ar}T І!nasVb:Tۗ}Z/J%nǏ[F:X+ ЈS)Dh̳M#uqj1L=%{ëhpHB5"HV8@wHO&kvhwzu;P4mUUgJnw{ʋPKMi*/EzϷ@.MV OU# ])]$9&ǮzФ|FEi!~2+Dz6&O+H' k$%ИPb z[HyXK .$*uɯBE&RlP=z՜M|LOƉtP'U6%)u!E-e|kXOKy| \Uc'=K MͲKfADwp6pjH$.o8r $#Fҹo.~M̂WIZ6FVڴZ0a;|ψ3a&s0P[Mk"͊`ٳN6}㺵ZByz4 UX4^k&}zH٨qR Ν?5BpJtj.›CZ\aZr}ɍI`Qb ua…Mlfu`rZ沩P P),b(!H!r^)fr+~^Z\;eHyJgh/?>4p㫸7 mw}aq}Y%&ВMۨγ¹§jI'f5)#[4F(lPT;5~)Ujxhp9rxŠG\X:# t-)$ǹ &y&ˆ6Wl=eLz\/3i!%8:@ FEr^ `2uۚcr9Ѩo>u"9n|=[CuXHJP~#YvkBX.pf~m*D7ZnNuxrXYUG~u;MO{~ hm&uҁExj8W=b>y=Ou]`ŭW1;}NYrHp5[_)JVJg"5n[xt m@V}GgBdKrY ^h:Eh%{6^cdqRݞ=.c`xXé"X`d"Լf;-:EcwOVt<?RSΚG/u`aºO2w Mm>l$$&p9]'2n m 9s6HOXO{K qV|p&wbR4Ɣhw.9 ̺ sЪ-jh-ss4QG/װF|<1Ok5+f#Rurz^ +Gb8'Gpg`EZzW{CRǬ 8FE#{(}y]<uA$eBJ]!-1q荲ƑtdaQי&^;CIPm ,B_U-B_*3ZhdffS uxh;d(O+ґP ?;Cf"?b)}sX@,INLgYt:͸;UpfkR_0SFddDp5~]7n{ഞ! bU&EpsaT=Z~XvE`dj{\n2{bȥ[v{ԪY[Z [z{t| 1,dب\ {x]Sʒ*Hʛ)_%*|4~-A;\jbg4tEFg7 %/Ro}1qPW|2{Cu%cMsU'5j JC HaQX d _> C\ps [e_xv/J3 y9{O)B)noH~)m:2lXȏQslODh`ext0sH#ts#@fo6`~)ĐD/ȯ)4#wNs޵[ Idls<Ƹ>.8dFwzQ#;&ܩ {ѥb9QK<ж"8|@6U\[JIj3=wArlFeUF0P;Lw j Q&F$/,+!_Gl~؜j'inv=FbӻQ`\G4@Ie XM)*Aދ5 iOG5ǥbaE]B@%.F-%jBjg$Z잘a$ H7m1ǗGh*ZsN T$pmpfH9z.ٕNf8h$'T z81;(M*xcXZ|TJ;,ҿ9Sn%WT9nelGV>rb˃Y7SjҬm?H 5THm~}Y2?5\֥2'Ҏd4M L"UT`Pt=arՖU1$|T9,ԸUqB,?hT]r GzV֒&yM \ U*፿wId=fs#If@EB <2axdX3D99G䆠J64qY ۿ]vcN~3)Bͼ|aY|e+dƃU1 Vq`\T A' Ͳen1ѝ搪e7e4SZ#ORi[L[*8U#7ZRTCAVlP/Ɂ h?U5qm˱{jÄKD,PbDT~5qù2!]$X6W}t[9cxeFZ@i (}뼈G4jcO˞PmS%Rrl V+ _V_KXer,&[g 9e2椫 Eh N =-%U<ƺpVhmԡ!!4 _SZ4I]D_tw1Z YfVoT?~Jz^dQpo̘1A(8^ qiZi KцϏqc&YRfk UܱGZgћu|0qxdF/݊b++Y݆Pt{e7>f G9 ?/$-1]/c&ҵwr=Q ø9H!?B$a]0f vg9)k ^#qV2ҖԄv^1Ϯj-գ+wԜ𵢜vl-"S(s q Z;4{"ޕ)Y&xڅTɦ"IƇpv)8{faP5(6B=Ϗց5fhܳE> a"B 8?,D=y nQ8c{W҆ 牢°+u씵nf9w&/Ft`l *ݑapv|OV^%XǺM[%2o)\椆CPgwVglj,@ʍgI{@ݱ冈W,U@Jj#C|xsJ0"SIZ.Xt IDQ?-Z7pkІvȒW}}D b{ a{*Wxɪ>f Dt`M,1-DDj~DQUk!H\5Jk]yosc ; PMŁQ^k: ӄ$`qϋ5HY- *%/w ֧&uyAZGOv?\z\L]†DLণ_9*rt$k2]m$JI9x?׮wYif qG-C9MHdv&p)ʌ)|IJNC zBw5.O مljƏYT9rf_x;MT!i&hT܄eߖ֯.;.M'_م(Yx0@!4sj9 #5EBtWU ZŮF? l:PD/ǎ8{сǍ:WFk+73Xn,?{烅PȈ~Ldb?"غ>W5R t9 7`{HNB~>i9sㅺm&h d@wUiMm~PܿsW[q„aDӎ5*Ib0_P B O&RO>Blm}pxU86b?;\L"dڿØ]WM%=Ì]$I"kC-T]ew}n?|7 6` 5:3!=+?^WИCk mm#Bw,ԝ A&>Osr`7-]!Ҧ#TUkԵ]3zNac?l7jnrdˉ3pKvs6lAjܸWMP8@C-BxEIAnꋙ^@*IjuQaЉؒ}^%S0gx~TQeKjsA8eܚM`iw`XOi]QbVFˑgdyj7mi|6i"Ӛd(AN5$#筚_B>' yƅǘODF[pHfNưUYuyJ=nm\e}=)a^)F_(XO,YRPkI١ǽ:weC2D}*E_[VQyX"@#G2~sO.G<'Ҝpg%7 +|t"sϫ+Q07xir7+*+-Uo2K-W|f*:8:2/M2"v^G=g1q:g`g_:FvS!9}C%(0>7\0.#$*D^;8aNEv6NQI&cPEyi_}vb:5A8KEPYӻbgKFsF$P->=Ybv5{/&Ɯ/{(tvtPQj*y8jMgV8<@pp+ aR`Vb^fZ9mrVD^׶뀲ZڪP~c2wM7-l -R뒆1p}>%:bzx(4؋XzlPgqw3o&=d>7T)L 6jFלı[Bq\J&0 #`#)әt*NC*zמᄍT"ۖOۘ/,MY9--wsςf7 +{PwL[[Wk*^Vdpd +̳!s *.ZM(xPւ )ǀъ!U`X*YW*G"b; p?~8͈ߘqm?9h;sKAіZS/s*[5ATD1`Að􄧲@CRVݖ}oV9tkoq2+zKhcT gK(|pR!y^ qo viV0tKw$/d&^ģ3^0!We˿Ε5X ˗ ,;lݱ ;ۆ鿭sP˷ϗFcjց_,ϫ]aJxGR.҉ꅱ b^F&G8DsM&j =DŽz:<\E%SP8wC,FͩOSvȻ|?5Z;<s mr)E615FYidGHOZ*ihm2*HFOoP<tx;ΰ W>UB^Iv]-$Uksa|i1'*'$SI׊36<: Ƈ(oUcސnEmcBRCuf A/BR}cFRQ 7ARa=Sjv!zË&6z)o88CnQM-%𚻝g:+zoO3?ӪƳ~vچOm! 44 V,{뢠$;_gطk+6CMDo ?˝\>mvh*= $nYTitN 4^^B'lA~,r;2ShKJDMx3h: 0tKfZlxF}/D_n#1;isHi7 XS X49PH& eQeBLHuO~.eyǛs NsC|c^(`kY2Pc?+=L5X.!Zm cJΡb&+$[vzݯwNPW_ud$ ݦSx^f9s83t$ wl|@Xoqed|ZA_v񗐄3gS@2ZDۋ9HBU"Ľ%z_۬@FMoC#-c;pݶL^bJ堼`hd^$G-rYQjTDgxϜp% UT>6'm$S$n;-F$d^I%0Z|9^:'9 To= detdu :maZ5^RUϭe#ln eME*2t oRw9}ek9%e8L ;vy=XxKeČ{9~Cgm PEyEkȍ#B URDYJ.NKqC j{ث~2qkݴ[s` [LD&K|sa?ۇFR<cr+ LG5ͣeV*K ݯ$ȅ?|C"ŘdqVh>VlrNJGiniS5A)Ž@tR'qC|J#,Mn*8z-i3G }ui?Bv6WR$ ϒ@5} &AvpARɒGUsHMZZq:-zeGi?gLUf:[8΍1PPб^h[Ԡѡ#`eXРS0@ Pn 픤UJR 73|!1#p XedErpڂ*紮p-;ԀTPUmHY krQ/=!LVԖ_>o֊=@p5־A+uE 1UsmXeP#3piw]82J`4\CUi`wߵGQpo~hx妼nMaNg[ ҒSr({t04>n%VfxiAVĠ7,VP;@Kc`4TCm,X@\GyߛG'S%`A`ݏZuIuA.oRHpMBvֳ3bPC.cB"D#6i[0|(~V01b~K+qa lzg]x4 U;.^,?P:UHsQ{t`0)lMwAnbÝ$2(C\\0X<=>D̕8=|O&*șP}HT@a(P Tw>IHZ5Ygmy5[ _DkXʾԭv(%u/qR.b\#JNG_U= !LwDEo;%1l04JD>8έqSĥz%>|8c,fGu[<;XJ!締`F>jxOk9w/~l(bOKe?Z9iۇPW6WruWtC7:J<{aʕ^S 8iML_t%[0)u|[,]N/; mcUZ:0?=+pvH_sl(=GznKD\򘂥^To%2y>$ $6bovb -fpL{f$/~ :3:_cz=иx2i,$e3E"T &)W ;DԕKмܥ*@x^-g:kH갗vkZo1ǎfx%8SjLgW3ZUB1#؜q?7Ir[K?_Qj-tvK1"WԠPoGy,tFMtb|C~{e.RTmQng^:C,j?0IYI4δ')C8Bkx@U^&)bˑ5_OjsWUDDIq轙)=3u1 /IYgB'fxH'߼ EJ:nFT}1y>Ѝ_BN,)5Z^VXŰ_!4;vy!)15!Xr>+_ k5`ŝy/-F`[^QZEpc)Χz]O|J%!q(0E4KYYDWCBS#b<4pݽ@R?^VN(6 <%?Ɗ qߗ9kX|:p(cv(r?8}lA˙I4-(l!\{?dhha&mH7J̇OJ7GPz_[T~ %[=!e*r*Tط~ @zƽ7|2w. 9C} #)T/,mY9" ?ϋkV9 FE\?_I@r|V9 GV wc49 T4ESIo1S ao}6YU3Kox׏ԅs/Hv&an*}e7`/ĥ8, e2P9$8R o0I ^_"0ו~|,H*_RݼStz~8Eatֺ AB~lI˹MW//ށ֖kW'h?e;(OU,}i$Dʒz-OtYKp5\B/ 8`Nkj-NpڄJ"2_[~c:d!~+aUD>"L؅K8q6Bx*ܫ8%OcViʼn' rܜ׀OjwI>ԍst j~(X@8ZtP#`ӁHc7fs;H8$ˇ|lXjb؅q&%[ b-zxDjD:-ρqhJ֭A°p` {j48B4_5 էD[|aw),ƾSḏ?k/]/JJ=LgOhR߹a=o1v]]);O]2{^)64fncHkkFqx%NDH+'X G!j~F9u{n騊`=Cj44+Wxa}riVJ3[wXDo:0¦L|aK {4wOFį݋qI4֙,(7絕 (GIY )wdv6F.:T9YJZ Cӽi%3Ʒ\8(RosW~P\ȈČCB{:6e,XWJba°ΐGx|l5QU3%0f+JRLI cYY++Bn[͢F,QEp̘&ߠIg^9gՏ;.Q3/'19Bh\e\ zLrJXQMԧb$^)uhH"W3_R2$`c*mب r6Uk j0ˆ 896\)n_w1郳;.YD8 A2*#̀CË`o/Hlim."XT Fb+1Z<',hD{3N a`d_+txIo726^VDzؒ#EM^LZ/"-#h옶+ V?ӧ\hCrkctS2,̥Gj4Vа s8iCF7 +pb `rXeF {i(:Dp+`;dL0O'\ӨZ `Ê\t?x>ZsKȤVbkNB`hܐlt|IIG(9sLWBʩU"UpN9,͋?` mUe3\F0PI+E B9 \g@.~o tʼ47ăyfy6}PT-Pw\0r2)Qh8ю(c묕rO<̞'EEAkTQvmcIqQ1Y3-U(6,x\oV_~m` xQ0R 'FgͿZ7ĩQzV/c,JigBhaSnդw/ e-!M'oV=$)F~[)MųF^$RP5WGzg r@PCL&k{5 ]pS;u={Y~"A߾QtP;yTO\2!-BYt6䫏_T vҳ#փcPPDf$4_;:6&1|!AG?"t]8KwkNaqۃ߀!HH MGҽE|+Y=)S\IId Jk-OSx'̈́JF'vEr6`\ !!C??`h$BЙҏeh`1Ä`ʇWB|=iqmCLe8uɾq'w=:e c)Ir k[,Q72xu'NE9>X"fe IzED2UÕ .x&( { @G/6Olna⽟cPU]$6fQXGN=犅5)S R,0g#y| #G 'qf jcNF7Y MN%hx:R6UکQ[7k;mg4QJ,[)[JdК"< ^Mu4Ц^R+j(i>PEo+ w5Quۥ0P69eiVajړ=J>N 4]j'jE3%Gu`?{'oli#)V 8˹jI;^}7Yzl.<ޤ;M=L #|fs.=4=<p3K8ЎHWΚ# 798c٧0tS'bYj+5u(+zG2[A1?"{/,i-5-?1`!1QeA 6.Yh<#z 3mmqL#;f!_c -/NdʶO/.f@)6D6>pOfB4v`C#3R/0y7J?_BU;wiLHgI-m tʗ·/z44tP.}wlfO5DH1"X/30B7|m?%p+Pb2t]hB%bކ!VtHAP3Ϻ3rT_3+n)^h%-StO*M2]V)ֈ AävȎ*`P('brGv,XͽǸMqe&CWVnV_Cw=gB 3?V5<}vP hrWg76%P*aJuU #E;m ^*كě)NΨ C9ZA᜝"7VZxa̾XL/??ڌĪ$=s"kv'7CLbbm,,3nyLeCS:ҀO$zkw3uʾpl3!Yr<-?찧wl@V˿n)'=]I2 q(]F#\)~ym,S-ŘSHNR.o $Rtr(0NMx ]WV}NBxO^5x #X|Dݬ#"%&Sn_YCáZgo;+A/ "j)UYR?{]Df6Ҝ!_@) _-xLݝJIŒ0mis!ݻi\T!Qcc1*λ)y6Sg# ,`UOuWköoxv+'g3äs/g{ZǯBzcs#T `6|C@>{K'pw}L!~bo5원G z"3ԺgSW7}j w/E=~/rux Yy_t ~ m)uLJM3FQiôBNU٩9m|(h c#zreSc m7Ex}U@C%c* K uV2omĐ3ʇ%F6A%o 7D5=XtY\{ *Gi;gSc ~:_Ғl#"6/1fO&jP,\wZzFH}@瘔餧6jhL IaN{C@Z R;g9 u .Ռe1{9^[L=ϡ^/Fq4^w23jqנu3PTcag \S s1 Jﲏgq$Q:6|s [ŜZXY2-'{ :N+M9ep99q +z>'2 M;9xk|я0n 3$XlVf9{-&^^"xk-b95vREh-@|:'cS]9ab(qG6&a;Efb;4AHQ0*a]oG;l<ǎ݆< FТd"y 1aM/Bh\Cߋ ''|QxND#v\v/6DцcrLϔr2RSw~Bp|-RܹNx#b {J5SA@rcz%!"vB=?FӘ'В mҺ!X ҥ Kp( k]S/F҈ʨ!b .s=iX9tLaXJ!)8zDi6dD"kM/.I${̩eߧ[JV&]w<76ӻW}-Wmio~`ZY/&jq@)*!ݞt3yqВ]ӛZP 3ĊPFq﹟\^_驷ȥ /*|h5 T0hJJil`ύ w]6}/ 0M4iKw)xJƪ;p6vIs2TrrAHLp?6c^1 ?>lM*kp-|-(Jq9IJ9iĪ,z0{'_}qjIxn^'9IFI֢RGZUӁdkWx83J E\yP,~,﫜8uwr).c;1A ;n\_N¼Iaho~ HaH'5jN!0QRNq-*&GC=kl9 oaL]u0͛|4.Vz87K]u?!y3^(Z)3̭+@Os}/fϙTH V$*z䨱T.:`̯]r܆+02rT᥀aNFK 擓Aޛe>9Fz/stg!Ybpl6i:p3aI~9Ɗ5=fHD}*C wxRQ0\N N œ0}cmD'CPߋ:>lmu_qx2푩n.=6 qNR cOA0xi Fqgs[jhE.Emc|+wxp8@ vW{f# >,azW Ek+ nYaimLxl QLL +1$`Ϟ@}n~;c's N4#G-0|(|?YVMk\,xPj!{j[Sʕ~ۿ-yى. ntȐ\Dk{EyTvâ~QE"뎴F4] 9$zԣeWsq+bPF)j4x+LİE`-tCQH {STV_vۼZLQOfˆ_mH@ADPa_iţE2]9$8/;v.qRժw$Ы]9ΪmٸD], ' /_jP~o( eqt-q=Cé;JXؒ*0o+<#V+yzSbE(TM0izMHTCYZhsoY62tVsM1HFzO%Θc0бۡq ~A#%bJv3g:@k2)zR"Ձ{.rxFIJAT Jmc5{2âhߊm^x.ju\vVT,O &mk.A)wOzfHJ9Oٴv&90<↶ 6Yy7g(<<=E=%6VDo +:IZ8 [jp*_%}#/`"2ekt2J#O zGDIԃ-8+{B"9ixnuG:' (M|D֗qzht!iV 9V{N<2V;Km"cXd3(|D}6*Lۛ ArGce4ug@@40{QLDyܠG)_+ N*٤8Yd2߾yGꎤ 0uJakCE;8'g6]{hHĪ x5=XyGf^gx=lno}7/@1D1k&L+'&0F; P^)5bj7R/uUf`c,7PbráNvbS倇h 0j%5rbwR ,؜e!uU%fكYe?Nyuue68{ȣjs(6jl2 qU+s&F>|K%l)d朒ݬf .,<9iMr@ $c\IܺVh,"K/"֏FFG.n%W+SIx1OR|U.7x@{x~E\< x7e{͗u4P& V `; NKc*yo(V[[i\ZxE(Gg Ns؜uߢi(^(4>n*¢^R?/6HIJԖGxڰ|T8[a"K S=ρQ4_tJ\6A_k (#rn¹0Ҩ=h--BخYxpjg3d#XJX*褼H/ Z~թҟb(afi`n?Tz*e9 Z] ~1Ӕso<ȝ-.CZ[vol@wDGhI4rKP7NWg@ja%O短++ZAB7iu7-o۔/^wTN?=wMZ[{e+mؓot~%$?[iT!`$fX5hPƫMǘpH8R?3Fm@+FkK2-9WpYdn${,E7޲b #8ĻTTLJ?7kQ.h*E8ujoɤ7FR,q4oQEw`.m?! [zEȌ@Cq9w+䴮!usz0tF}Aծ 蚕D8dAjp1;]5I^9T8-NV*_wRR{4^!/Ui1D:eJ`m xjg/w'cRxEu>@ha1z0z9mX c|wpJA_!_H.WqQ$&R'IR9Q=L ^x̍ v:8=\OvGD74[U'x1~ι)T~,활]u$Ƶ*sxB(ک R`OXq=&k[: l"q]U سoD:3'pC>y{U` zu!r:o=0Wx+F{fN0΂EFWJAn+DS'壟Q1J7q!(G8-@ ,9cp"kas>U߳.Gt4[Lǂ˷^TA$mn]n`@koغ4i-НDfe0;v ^+h+Nepuc.@]5\?L 6#n˛5LneH˺T?(iBcF\l|i`'^ HRZ\<;9 9aX dw qu 4TuOpf5HI#d+l-G[ !#ȐvfT h _X3ͽM& Жf`+^gY1NJk> 2)tn=}@KӤN ^wF$e zp7ښd1U*L$ 4rkQ)$>7v0kHElұP/繾}y!PZZQ@;>wx=ppFwz]{9YCNO ZU?z-gTi@It)emy;F"x׈{Tk_=0ljvQUfzR,e'>7σ:k+#j- XoNo{oi6H- $mʦA5fhf `j봾=uGNJ($`7?"w"ڄ %W\pc}Ҫ8ٙH= F0,GņSWCz~uڇ Gp[B)d4A} 5u(qP J%v?ҡ%'YSG:tXiYDW2okL4{|Ek ADPdʃ.ũ166G3r5E/W>T0Bkd8gGI oG?2UY D3fPŒ7'_9naW.g1eK؏KSdrjK*VHݭ@7\T8ɗ=) 4 Y#ƻrtOPKNL|qB p%lէ?*-ׅJEx0ވ5{B0vweAhS9ɓ1X h-f:!wJu%-v[=§ ܉D,T>0pQl.-$ Ke׉;}4{$g0C5ńb7@CZd?ܙ?Pl;{ @1e.@Z 9e !glNMSeĪD`}fc:!Pm6)B3ЙVߡn4%&S g|h/qۂFmFi"yRa3ϗ'p>0/;5cIQJ wr Ԯ=kG B,U1ƌ9kPĆ#{E=_KUqZ:~ĞpGU4LnOJ ?]W˷oLum/R~ x93'bB`>H$=60ۀZ*}g6b['])]éцT|n[R6l(D[x@IWtsuLM$_Ø+ =зj K dbFdV {m$l$Ѩ)mG2FLk Y#ߝʰ鿬 "_h|4TEI,[ K0L4TL1N3u1u$[\/v,\U{{[^e` 85dZ%Uv4odKFi.b1Wrⷧa6"4"S` /xvQqӋ^]VzUP͟Bb#X6e1"QA#E]?hNے4I9pC^6.ASf[Ѐcf>l:ԩG+ AE\f<_BrEMȔbUVGsJaRV84 4hlД Өn^s\  qm )ƉEfc;:]u 7H_tq8fβ*a$:tq]dr]3\ ]mD?݈lT/eZ2NF|'5>hPW4T,E-={gTUkИ "$;AB!߫IB\nX[)kP`D1r huGh_LI ]Q ȀO (,U>Ynݮm%hEYy9HWxfЯ$Ʃfgavf!t9DQC,fy<Z2+A`hr{6Ax1676hةK`51Ӈ^ hE;?gd9Ryj. -.y8! oEJ|}\+'6`b?)kB LRXaAnB JDA҆Μww,ᇞUCY‡8m…5ENV &dp?b eLh6P?)Nm阍Ⱥg8*GzagTBO/zW"N1U˟W 5`ifNl0-ʯW>t,9pJ|XmW$(DZ40,";cj7AtB^ݏ6r#V9July*r{e&!kl Sʍc&~rBKpYrvcq#G% u>/D{+x2HM௤Ng<>#M(wolt_h7Jg:}#@==\[ k &Λg[<3TPXYML|{2GF\ !rw#`#xl5\C->&Nf8jHbKϲ<֐?ù=|0TU "hQ.s\a/"Ü],7[aIchI,qތ5-ȰNF/{xOl~h)V7 ("hॠ7,t@0u ڞ, ߘ+w3@`b^י8CpGP׀vCjW*Hh_HĿB=u f8*- T$3ng5[vҹ(J<.N[aiR<{ F֫[TM. 8v{{'Rc$ع"IVmwixix.߻>Y؁h.rJme:Ln6 K6Owc.d1Z *h4X=UW)ǯjaX_qIyPU~kQ1"kQT/AH\oubqZ<0de*z[NPhdA6قK܇QlVu5KLEuB\RP%ByR'[Ϩ ]S~|If6(˲ dxmr!qHB~ Z:+x(^樑S5Js2n4qLox0YN}^dKqOSUJV>*j?Ƨލ`-G 3;;G 1UDsÉ+uݩ7(uI$:"ֵ7s6ȹmN53X,!p zVf%o" ;Ls?QK^UiXM12F=Jg46&6/a̽3_uf.1 T?f楶jo~,oa5TiA$rc@A3Z=c^2FlV) w$A<&LMru`iNT[r–t.ɚjkX2\\ \ʠfjΑ,I$)=_\EylsUH cB/jNo|磌ucaas/M5H1nEn'9`_2#DC)(\7/L6.븛M(w$QA0,@q$# t I%t^%eF62%i5C6tq+( 'd]c0 ",EiNg,Qf}/6Im9 cy(;<}( CgRPt]"q7 V| ٫RVVc&‡?ip+3#ԁ?oѮaa(c#u'RZ#j .~fKZ%^Ƀf(u?wo/}!+pOiaIc@'!}jFjs{iz4i$O#Hh\"Rb.h͓֘0`k9?U9K^<GB'xB,O>ҁVIgWrlb7SyАX"?SJ>WL`D̬$,%2骻sn%jGss$3t{OU|C.W>Uyz0PAtv49W9T/%a!=.yh^fFΣ"J6Flx6[6֙ å+Ag̖6:ND%dUF F_=-v:Lw(΁,}( =?~%k6_9י2)hy4]w 2F۾%m-`%w( K"zO8%tVTuaѪND|>?%iIXG B펏XnMi뢵q"@ILffbYΰ[j=7]t9OC']5biT0hK>\xR ,r+MP ޼Vٜp,ԠB} e; HwZuGtTkd/Qtͣ!$9XT_. wmJ/v랍ehX uxe* rx:9 JH g׮WC"ԁٓ}d#.!?Dq>=GuXAe"kqlXl1{19"mj3 >+bT/FHn{O΄ fy[t;l2Y V*g\9YZvhvCLN?"trhJa#rR˓V:+!њ{CQE|r]}#?P(0#of:cI ϛ }BʖcKX_@ {o%?x|nG>i3u>ŔZ3y٭UT^[f&S ~XD10v3,tBΙsk ݘ(X4<g+'J$s]Guˣ+7C65΍1oHa0^E"fBM;|g||WEq paTe.Y$x1~Ԏ.f[n0^XO4di蘐gw[ry~%1QxE|rd~hYoQkWTȡUe4)=e8Uu&14>cײLCRǒɹ;~d͗vT6&K>hxzuiwL`k#3b^0kG韑\5nW2E S61(q| 9X,{CS3)Vo*N#'μ ^zMV bPwi%Σʐ/@PËԊ _!vB>A2#E4%56B»)B_w56Ɗ}3Hk)eJtV< ToVrmnԴy7ε*mKKT{Y- xXO6hlj^A;A(_Ct#:Κ @HO̲u:am0)T1A0JpML<%蝭 'ԓDv);O)Ls B[v'U6|n}#7X5vrUw@˚kv(x}R2=F~,(S|徒4|UK 0xq˽,r&gI~?G.|aE{_<{akI:u{n.*~5SORBײ[۱"~OT 3135/hwv?I}5:2 0F 9ic/扡4A` gB<l+iL}X81%8\m_SCuGGx1 j5|x5̓5Q&L,jt/T% ckin_ Ld ʽ Ҥ?|&B 1u%j '$h(+`4ڲŠAwʕ{NLO%G9g`e˄"pqEpsaq øw9_$X|s{x:_Ld 0*g $FyJ@9l;Mz tS-t7pj{kGV}kj`FJK`p}oRE"E|$!xDŽ@sά d8 roD^6$%t3(7K? i5;Q@lSmDu`W7R$`Q[1Cf7~ȉÑ4_j/5^ ͻ̈ {&2r}( K5_Wr}D@. ށ pZ- HQ&*k'zȧA5>bzR_$F0Dj 1Jϊ^L0+9w9+,_ִz\M n [@\I0.U{ފ?S&sB;^MA|?YPi f>[_|%u;åJ xWo)qVV{+tE],aZkSC"aUϳ~v0u P~܅<rDW&i 00=N:VE6M*': T ف4>4L:q"bÑV*LՁs?QQf{b'$Un5Z:% &0GT4vV"f[C"DF->l!S#s%'fǥHw"e5JO{/wED1XO#HNhڞ?, HOD둥P$8q ;yDN$m$W0`ǽ2 5= x% ThSL_|Ci}v~v<|K~ڸId 2t^avF$YhJӛ0 pg1C;@#`ʲ@7ʒvʈD!pa p<ָiݔg5Ղ{ڟK$_2<_,^+,̴*#g Z4& 2a?C_2a PsGRBǖ.bmp T/wͅ6)uEY v ]RNnSE'&%%^bs-,?q$03̍aBoxgdJu?Gĝ?;`(&Lْ@ӺFO5&wn+X!(fd֠D`~2E^y6UӤ 6zLՅr5vsH lņ>̦'С!/cTTʫ7ۙ^1j_N4(u\K.W0 FzT"awאpV.OZ,ED5|,qޜz}0>5pMgeg\RRʙڿVSg3zґ,sinLj,2|Tj^{UQگ`X6JhY^ՒjezgIe1U|CX)w7TS~E\-&Vvdl8HߛPn.Խ )Mp;4"#C䗼_E bwZ Ȍ6#͙x_<03`͍nဵFe=k_7)h(q|,w}["-ЂRk ^׃u1_[`#Ă#1%ENs -fP)0kQa@yL2ieZ^ڹ.OtdV ExԘ?R46iqע0km}_Lcl{kMr\hum{ =޲7ɔ)nh&KUy'/,5ZB&zj8~X;dR xzo eϵ8&?k6gcRT=oŊ? 3թs\SV,\,3GH0NǥF@{/M]*{U Ñ3"%3-h b0ˁ)b]HNi?%DV1'f^ȽQ&<98??qW)#ʞ!"d5%F4h9RMfQ&.«N4% .jQ܃#'s?vE}{kC- ҟ3~1 j$ 1I!=pJ, c3HxѶ,2nP1yO!($eB&*.FBA\DGM'$z!.G8XsK@o2,sûUc߈' rew.k_N`wUh G@ͮ ePyԆPӭrx-?똉(ʹf/0<-WȹJ +I{@Hov>'ĻcRfg9۳7~^F57-35]N _veNJ7oDy^Xf57|[M JWJT1R(}c 2J6Y<xU3z(Na`SD!ぁY^c\;>3) WVi43E8IP4uӳ8h`̂L^5$zO-.q/!缠((;=(#.Gt_7W+JgV8EFcN<Ҷݡ)1l?apW.\z*kS&*bOd3 bך "PzHkܔ#I hx=B|Y,AGH Ԇc`KO!T3fdQaќѐWmPfC$5^{ ^.H-Hi~plnX$xߢ8M }]/Ag_%Qe筌=]O\ ' t;޵ϥL4gt#Z%ah-A\[ӷs55&Ͳ41B/蚩1`&Nҕ[< O>$&L'ؖ[vZ_.M ahK#0݂am$>[_)ǹ[@wUK|iFfpBAZ|Ri] `ZUS:-{YӜQ@[!+ cU+Kz#TEeA~?"'r`QXw Ws="4uA<(ǾFo ,h4i-=r"H]~ `T1u!1 hsDARI;ͭ+X,I6H N637_87rX|BȨ`r>_d Iv}qD7}ň{_K/$F6ZEzвbLouԙ4&GUq`ǭ$o:!tm/Ody67kB & c 43eҝ/?Y=i nPWXy%֖ݿfpKCqk mU i酶$'~d?] |h):ײ3^xt?n:MCx,V([tQqO_ ̝# ys@pz皋!v-q[H0ovoAǷҺƽi>Ⱦ0j0+<72gʲ14QOdƁ:*ԦۺR6낂Ihy!VwlFRƚ z o'[_R5~ gzxe HAd|09)2rpXw9%sZuZP6@8km5.Q IC g@g1?'"ʿq8vyw$̘&j"5krDuL-vF* !Z X^F 2l _*  9SBӍZ 8u G< *wOZv~>P8˂tw[W^m8lvh `4ޛ=/REPH:M(ľMМ:>*("=UL"y~7^^SE&C9Uedk ͚L&~9) }ΧY"sX0$fۓ#&) .M7GL*dqi{7Qa$^ 3so\l>0,;jΉ5vu eB<ߚ&|=%ik6RU ?V\W*aXV]YgWuqb}!w &`-μi/tF նom&5c\4t#f@[)Cc/ n-R)e̖t~+&"p "[Ki~K"j?V|w`. /Q'݌w-O&9-PTv;DV9l?J܎%gt0O%q+ -.v ӒGka6$ pE67EAoGT(FI'4%_U!lJWD^^epL%I9%-֭? Jո>xO1a8$;9Pd.v#SXǮyGPU<~1퀻2RߖVv"bl2 uwA> {2UX5H9Q<=QĐșQE "k=YJd9J" Wsh<'5'Muѓߍ"w8?O=y[A K-sTAą4Z |敊hԑXi3n?bUR>vhƼU%6! oJkClSc]i{yZNЁ4s gWES`տF:3; m+^\GL >!I+ |=彻@Z+^/n B[~kv&:NSߥ" Lj礫%՞>'0VRKY8qBJ"JC[36 0 d)#cs_X~tg僢Hn7pEk8(kx 1 x$*m51:_HP(Yb=GU2[SO7Ë!1ҍde0l3jՋ2z:Kz Ƃ`=KrhKG̍ jDLr?VLp.o\L~pgy~$ s%4a6ʟ\$c!arͻ ~,yJ}Noyc]m蠄[ Ze>ۜj2_rdm3}-|~ Váag0hOoD &ӡ3@?{#ЇݾDm G%w+[]- ׫ p~:& D){^kb=.z^le1ڲٞ/ ؆>`uуKZ[xxNl_I@*?IǨԶ+P='w -k)N]pbYYD$"qj咁sn7 }V7.aمzJ!o-{3YQfxw[!׹Z?+wW[Ebe@j[{80-Mwu)$<'S3fC; ;K5H,\3Өz]аh4J2oy[h==vU=Ne{Fm֔0Vj3|f+Aԉ1[t ϘMsS6r=gGq{bdD(."Պ F:h<>Y*+A gQ'jb5({_0\y8~NF4:;(kBia\OEsGEnC;C i~+nԂWtt~@.5q̖ɞu\EVEq"UI)>пjT- LP4+Ś܅$۸IrKl'IC[0;ѐ 4pĉ_^(AvO+j}?d%­-_mDm.,qٗ=C Ɂ0!Sy7dʷ'ݲڽlnKҡ+5>W V~j@LbZwJ ¯[xà@3,,0­$.AəKjgtIDj`8[ـsj TjQ"SD'CCSHr>[pm\:_sԤiK1Md|P-#m%0dž瀌S5!/50vLt?:fvZb]g{s&jF:`O'-n$@T(+5 %lZ2%^j\2yPs|BqԙBg7-V7exa7,J- ):jhY`HK:vƓv֞휃A]oDQQvV_h %iz1Ѯu~H7-`rj:vEY}|,HUY`$ ߜl=Fl7:zә>L2OUtFؿh辯Sݥ(M̕A07jҽ5b :cՠ $'"\#_AXEa(|tLDW߀V.NW)܈`MZYEJJ qf\_L2,RAڭhGPMJ3 ҄@]{) 1QAw(XBMOsp];Yg̋ QI|)Gf[&6k'Rgȿ (=E(|Fa觩2錮ݭðӦP[GVM1[* ̔N(-a*ٚWDf .p6N:ZVsMFj&t󡶩@b;SO U <7Z )hh2WwJL\ccSn>NȧxX7w\$[R~k7t5[deZ!AԪEa j!(T}G\)HGè APޝr֥PQr#\ys0.t>A_z#o -- :"9e&G(>g.GOQzdDy4N؊6#5[A3AX+K*PH9V:j3jk I S'[@r0 /bc,}|kS@m#bᑳ#٧&{q7Yn,;vqzo\e0C7Ut1omIm@!l;/4YÕΊ,8OLCȮMF^k4g9 {6~saqW>%6rZiD%n;޾<cU ϮZ_iYFt)4V)b K#*#U9`jxb' zI9$aVgfrձҬD*UpG${21eulj^y%M&ײ[zF >"g )S\Pf#VRŻ| k^Ibq)ܦdepjh\z H=YxĄ$QU(&`Ӻrj ''aLsgP xE5@o xNRGZ4tZf(`Vg!GoGSh(!Ѧs;$1ruVBNvՉI#%kon81ӆZa&AmNj\QW83 d.V@̕DۮӖTo(ҧny6]{2P4+v9pP1*4 }*` <;vJgJ Wͦj"nHud'y S ^H%zHbo+ocaD>7C\Ύ:IJ {'zlpwwsӀ/STl"&VRp1ֿA-",NhȅN s`snk>9l,%UEV#1r5D\q]*?.437oUZk*ygea_$Rx1_O!ɐNXt91CӂJL >b_FQBN_ ۹ }RxUmX׏}vD_2;䥘_xajg %?FQ!};7 ?ET}}IKDD\? +ޤU"I}ZVYꨗWו\i-U)XɾjbhR@}H% XfҳۘAgE7[I4n='\kCE١L[B] 4'F% O\>?s>N]ZU2L}yHBAھq{6blp Wdu4(*DG.4&.[<Lc_[~>kfmu04Å up #t, A C]BBL:h&gR0""e,@o_cr{Gb]imt曫^A{L1 ax654ˉ헀e{BJ;M%὎IZ+]zW2cKn{%]\iMU] v; xx :59'TSvfKv:|{F8xrv0:ߌB[tdDr!͕8X$daUnzxE1U(!o4I%GD=F&o-)Ur1IBJˎQ57}68u ع8:*vRh̳@Ft45]!4ZI_T/T{%(-CyP>$uX~F>,8!b9GŰ*~3Roׁ)L&55O틋VH?S<\5x``]ۋSݘBa1 [#^Q%;0dP%HEj 6`51Ln:O跠 %\ CkJr\.F9U (#rz7FvBgw1 :@1A$7;wt[Wp6p]*7ûTVYKb"YU}1:OJF /~ \rr%b\h*DSݻ!5`LH'@zh%>GS&۷ΤtдY-c28#}^m\(d8CIc;|˯ai \@ t;wW/Mޔ8CAeָ=#d#?ert/TE(?z(!r3cqrmH!vp^ϗϧQSD:@@[ 2jJkCg >3bBZ`-5 wmITnPY!Ss'5? Z)oJ|)}{* W,!QpKvN.Sk6*V rm@M[NchPu"0x.*SLșLLM; no~ݸB-E,W3ȴA+vgYCnYBYWD/z9ђ/+Oeaɇxv$g9/676:CPnZMhdR3怽^R "uNêd+x (l yZ1]eMGLEz&ʍW^t >ljGv*VE)(}vޢA7A:xBӰq< !wk)Z^,33栏? Z%`3*$%{:_x5e!a=ߡEУt~o5$3`͹~(cTFCC}n_Md3]ד6Plçil\!_S18hIU&w4o z@t#eT.!%,+AV˘׽gZ{g}<;YuRjwoXL@ǙJ;/ =Z lH*0豴dMe?v/(m( cK")F\*lGO; D !T81{X66yQ1[T .G nAE'}+S%.im TO;1ri5ش'djg>A;}_6 O7He\w9S[`4Qq?\ϖ5y8keoβM@1A ǘ\rLՠ!ZԃA sA j bC}SǡYe",P?c?nߞ""Vpcx|QP3┟>D: {TBTjp +ܪ{b-CK(k{^祺@*ή@3AAAX(øg;H4e/ 8gl0 .2\ < OWk_>la1np~{cfTm; E=gӫTD@|=YEޤW+l/4^h_Eu5 p:bB3uvuL4 d1']8m8"="PƩCi\$&d#K6Nk 9㚾A$ {+qO6q"[׶eC F+\oGe`Qc«VMҮfv(0/ɹK+{!Xr73Rl`AiePH~m…Eũǟr)ˁϏg(t伆u+[|&#)}5}!>490MfEWkR? A~F,`4"K[ M:pr7L6nֳn7^J\ XCB R}yGVxY݋|y&&[$-'4dP,ĩkԂ^D\I:L{:svƇ C,mK)OKê^Ln΄cu8"W̗Lh'~AZSn5Vŕ{#_kOrkcP sIi}jA'彫F6KLh4(A[`R F9Mb vċQH:Sk"8lߓ<C9$"-9"-[*z$`g~(5"/wAIN:;ˀ́  MxR_&hn>0`PHԙ/8l3ྪ񲩞\ }80~G1~/ng{K =׭E:v+d 7Ofhmvй>_c]jԠ3I[XGAX93əF#Aݞm:qH6q)DGXI jQԢ(fsL鳢wr;F{9Vkt\ fH?tSHJg#)G{T=}B21/vs`TN-g{=Z 2R|ruDm'>fkZߠBOe?T쓚fɫ W8 pc|N|X$(5C4]G}> ]Xd¬ 71DN}P2j!|})„[Kzz˭EM@J+fχ̅yF^1ǥ,IVTÇ $Ш՛#C=Ԍ@ 4QMd ć~҆?lm>`vҰcpYuj&EÔl˯S\lA£.0^"Wh:wl4]VL`3r!9fFȜ6@}[+Gi_Ė^_Y:oemOAy%5ggE357qΨ뷚Rmړ5R\VTMd"y /OD1&,BoLL y}'Mqdtg>";S;;5q/^'z)԰⏭%alVVo$|'e_X5>;>RC3G1i\fXuEi H:] NSk= 8q/o1jDNt.ehG“iA9Zxpv1"QV s˵AH/ 2@MrţY88ݳr>*. _42V6 T=r)3L8]BۋM/cC ХF3*u%N%[Y^nvnH`Y(aw*\~DcvZzXEM)75]C,2-yzэ-0FCr،槭t, Pp?fY:VUD/>I4lt灧g{O6kh yi_4Zxa{K}J^녫YG;CoxyEʯP(fLu{7rܵ7u{;tH ödK0`Fۑ %l8}6Y+G{aR|!*,M8iwWW|j̔ho@{݃bv[,m6#)u3>_;Er6#wv,f%ޚD.Iră]cZ.$í‰̵ L罽0D/;R6rMχ+SbВ24$r#VtCWd'`4Ch؟穑N+ОD9/oYQ%Vvpb F|X71WҬ>G(>λKy+čF,LJޠPNSjK6*0+t/v#M8DScs"6 y1/tѢ APdec\(``ipT*[4z { A_zI{W]FhQRz}oB3_!g orɋN .%lcE@a0xpCik+lW3i[ܚK#a&8"gv~c;rMx* O+jj/ Hb$s[FNnF4ȇ aD9@XʩdZ]^xWTu3tmqVf9rgu3vѰ,/$l.(1RG?'z/iJP"(L 壯&Pna 8Yz3 1Qͮ(fI_-h2 J&g]^]m ܜ0#:6HUQ#k`pd4L&5^Zqʱ_X 6UX+b T28B;ے uzP\IJWPLD[=kpP1h> 2F-DDzNkVusLỀk9RT?x$M݇.]wl9ꎡNܨ1G'N@HO ?R^fjY?N wk#U&j4eBZqK,^#plkvɻ Ccrդ By M.1Oc}x£<`MSm: 0{[8c-Xz>CP(DRކ$@J[bw:uFjC*QҽtCOxd +2xqD-NAL' 8 un;;"Nɷ1BM4ZXC2} : ֓_x"`i֜b^//z_Ɵo^RC.)1wf`rF0T;9P!z%eZ-tpqB,` < P3ߌkqBn)}^Gp[_ű'%HK,_m _p!yV̿o%KbkA5#HV@`dY{fO4&AlظSz:ReNSH+?QfζH6h'xPv/ϒmQ~9 w1kף 9̖gYymȤxvoᇖѭ{uvT6ΈnjmCҵE&ݖSfO#xu4*E~XL š*wmJÏ!C "gU[6OCS{#Itm(3[!˝tf$Fޚ9x72Z]LuHtwB1uHYU eqʋe,㳩VI{N^~ti{H?v`[cb? OHl 2=Ư=!'ef}'D+iR=6'B,e# >yKɾ--SԾ,c V Xk* # MDXH@D7 q|J i] i^l &Noyj7/|ԽozsN!5&,c3f(ޑ7OmPwa$yS%J'B53AtXAuV\%@aO ˶ӫl79rt of˩Cî`K)ԍi2s)컬q ̆몛\.q0p] %t4%W UHG"9MϱTZDvQp(jf&ge 'ݤ(|zжiWI ̪cjTs'ۼ?Qhb4˜q joiÌםgga*]zPpj.7xM==\q?c5 vq-(&Cp{QC5ٔAZO·k:.QQ(ކEWQ ŐǢaIU1 3G L,LУR ekC/V~x'KT @~eA2nkBϱAHT$i)3ˋJS9x<|{w,Kb$_9)+ŚI?˿_!bxW9i.܀r>T9樏iv`dJNWx-ӆrA)Tl@[`w F_/.{6c%9m"|zJ!c}vi4`AUR6E)`r3 ]7 ^ B |^yxiЕa4'HtA6m9sʪOSɈV=0/9#mF hgnNJ;ĉ\bR5xa@EP&Ϛ]i =>W2w6__=&2z?cCG'F3k}Gg6%XM ֭djbLRY.kD(4hj Gbi h?|~a xa\+W@8 G7tӆϹNl*7pD> !.AblZXʮ2ȇʝT-))aLQl&U$kǂ+nQ[.(p7u[QpV8%(XG:SPdSAbv@5[>q&ӒJ%_@(]u!ɫVAM%jj?#Z;ї_ Sr< 5Ysu Nz 1Mu9ƔHCrTT|& /K#"SԔf'ӕF~F|L{_Om RWgGѯ͌7W]Yr}&7J? C5ȵN~6C~ Nv;NPNw|D~5U/4V ;&+Z7I@.rzk?tb}štQAp~pFo +{TG9)TSF(:s*/HhšvSζ@kxEA×kqhDp:rd ԅWWHy+e% es}62- R%+B\Qgji$:fn{AobאĂ~D}q|pO0%Gě0B^4`F&`b^gH] R孜>&qFOg5)=)Σ,/j~ ]BzQʾD|\lЄ_2(!;ueE6̠);i^;PPkzH߀rP:tGO֬wUѵ &*FjMvK):li6a줎ޒ:SSЁl5u*~95OFO"xwp-7tKɦ;rh=sQZ@^},*Ѧ uA[!Sk+>Lω{y 2=}4~: ς ڿyߧ8TPClfV0}C):;d`&&pmr0?MR`fOqDSDL*#gȯW<C|8(x&²v}5&&̯,<=)"[b $8Н lk29thhyy$yqDΐFB&~2 ힷFu:o(;IVnp5)j:ٲ?er"F3FLԍ3U? iwHXm0ϗ@(ma@X?dtAl:D7Bmtoތ*'`^iԖwLʰ; nQh=F\~jiG_5ӂ1s|aY>C9ѯlZ])HzS^/>Ū'zxeH¶i=v c3MCs.-hUx)yueS6Hk)*3AMH!Ԇv$y9(蠱v8.z->oeaCNW.Zgu9i{rY"w8Еi_{W`pD] :c- &y!Yt/j)Y 9]IJɊ ? j(T\#<mi։w;ys^<עႹqȫ5YG/M򸾝urf8ླྀm_Wg2) &&EV3|Pf$v#42nˬ|P +X'[.w ~"6_ t2LLBem$h'4O Q]`Ks7Vi,25G3)rHx6Ի9_?_b;HtKYbJ}#c%lBQLPζ֏.6|^4yU9T9Z :\9A˪\7 m{lԪ|}Sjgw}Yr~ٙ*lQ f[ؐ"%[tA!l\?C_cNJ.+N%qtP@ uMISYz)[1AHY)Nm*+XbY颂bh3=,c_!iIB&!\Z-NFspF>oT9Fq"Y3ژTJӇЯ8U*]8?ߵ%[J8"+"v֩i{E[SDǙ{7֍?+I˓8 ԫdڐyؗҨ>a$AlTa2#fB]+?n(E"59_yl:R;5m%`whpJϢB[MXN]X C^4NAd?;(y$~ ,O D+C<.ULLLe@b+өXfٲ)2,UrOSp7o6K(7m <2Ț^[hGY2Ӛ?!H|ak.ȇey"{&PѠaGuSyԵiK* mΞ}i[ aA J߯^`ʪ\ID"LI ^8Ӆk:O\ݲw0 EFjXEW&o݌<&qoSaΎ.ع$k4UPO]H <|x%ns bBHBTe+ņOS*gw|~rŨ19GRxs{3vb"%@"5?0L^0evo]Rh9SQSy6RcI^6>F/:|ʢ3 ƗYEx50K!j^\hߤ S2;H.;_-=Xk %h*6>iI,lyBXٲrd)qa$A^؎̌cLJ}Ȱv "Σ$B>vcK4OHxSn=jDTS_j$;N߅u˞L.kq&.:wtu`0+56wg2y͎wOXQ7|b?ƉU0%W ̢A-`[RlۡgNZ;:fŏ Ox~[R'r|HAD}r0a\O ;ґ2CYqdkOJ0rgH]y*s&k^X i3>>% Yv+X0Sn\2.hw'u\w^ MTso@9JnfMw|A'60 t0dqϏiT!VA[Di3% KLAu[Jh?ˇ`H3Ůӽҵ$i8 oF5*zu[R)lӱFN|}RWcZNMLy$͞}5*e[s45e28xk1Ž%HIeLF ~&ZuR /Q`lQlu*wɬVb8$v+I3JIi"wbQ`w%P7׫ybPM,e}0 iq;IJ,qa<$j%MRKs4RCtNNd2}n1OGz)zx = qq9\]5 ~=5P1Nv׷1Q*dgGQWX"LlfCy{IV{lC9DizJ&i0x=S'P~8f>kc#C돲?.8 £ @rzo,:2L|৆E;&,kUC8 1ۚ f wn#J{HF h)x1~+eQ7~%M.`ւ%OvBٵSω jg$'S*[uslqu t4Z*nHmvX+_;mDa{Ni\ҳc@Ku:; %xxe!OI01f`i0\ImfRù Jd^yOy&%Q/+Ad}]Y34 cU|jYN:#vb, j: JCZԭs̳ӪF.?2+v>-IÃM-ьDdm{AYl'TofmK㏺sD^"Oz#wCaoܷ?438#y+[ QTc+AЅV~a Pi}`Q"T/~ZH*2j[fh، Vhۓ!oGEG]-3KZn0jxnhBtӉ+(Ҕ.T'ԭSu|%Sŋ }H^*wWh"Xo6\T;| zsVEg5L'6b S!*;(DOP,ҺJNPak7eoS!/ ~Rm˼L߯T, 9V'b2dLESI Κr/M؏Oxd?~Ac-nPbʿćv-N2ӂ 2s:5&?AP9K:qs!rRL25gC+#:?aQ_E1^.y0m3hT%&ȥ`r*i2e9[M$pu(&5Y58̏5;$0TFJZw zSeڴ`xl\K azmmA#&1̀ۈ5:X?VgӥvP>7dtж\OWVq7Je_e mszE県/l0qiўPwnw|R @[©i£=Ju1ԑy_`Y|9v;:$*Vo[xn[ծjԿAKOyoru0ZrfY<];A y+I,\4I_@ⵃbRZ-%f(=Ί}?Z_)#S^j MS! o5xJ!7'?P'g#ZFV'Kjŵ``9ʰr\e?ܑ5_}I,C-s;;!><v"_znr5-0[)>[p(P[a2uÉd(![M'<}ίMs_Pwx"x T5C*\w ԓ<cL\6;G:Am``R;rSq+Ofi#.i۹5|Q;C-3K:ˮɫQWpfjLf3{-Mr5u#!(WF~f~딭`m8ùV!?T"lDd,7ZeG< *2NQD>mu&Ԛ(ٍW OI'hA.ھY=|/H > 1TĈoEK]W~MI㼉okvs55nHuPZ|8*C5jal>lX__v6_Mu649 lp]g6s~gsƹc̈́-hp -ј#zt4.L8!큺&t먍nT:kw]?|RWZygpéyZC㔾M6J9Rf #c.6Yu4] NXB!(\"_HNb-3A&zԇ)R붩!^HK86&iCjs-:zv^fy(Pؑ ֠̈́ZsC z>'8ş4mLwٲemQي0Ag şw@*h6g[#>75=F3*d,o_{rle=rꮘ]O IN^GKݒw}BgoL +`YHx:'ݝ]5sC&I\E0Nq|j`x:N-JCxd4Sd|$HlP ŌExϗ*d3=D#M"wA M@ ?C죩:XwZVo]wK)03ek=heY]%ykfe;]ohoe3#)6A^y$bׂo! R"Ks@esn-W|Ck]C?q+sQ1zz6.r$.U`pYU0U0E17_q[ ~#%2@N^-J" (3XsT 0WwqˬI@tO4jũ۫O<¼et _ЙH`*BVWxB bhX^@ .IyW &I.C?>%=a腢Ny:n[? F4X@9I+MFjЛo{B0z4}$MUC^C^gنWNnw3lB,/ώ{Bp wv(N!/S#B_y˅.:Ļ4urNI­c{br-8,WT!Z(AWnPu!V]nJ+L'Оxz.Zgx &E]@}Y$AD*/MiZ3F-S[/$L]JT>06d_&LPeG:F]ŝ€, ~ f<Ը. 2˱*W^$EL< @JLvqv#K48_aLNEq7 r,ɬQ+-Hͻ0IN d[ ]y.e$5U=1dOezV Zc2+{hFӹjܴ;wHMJCTeDXP .Aؔ)xm#R"2(DΈC'kHl8%BPܲI U)ގoS}wp"5 1B:W_6'Ѐ미Dz4q}U fkܞϸt1fI>D1̏8ٿvϒ8l)lgr>A0DEh]qBSR,BCRz pq-REW-#uRNǴ_x,2;|PO!|m &$)4#.ĤlfnRaVn ]^T^K6VJ38\BM|9w௑F>)pR#:UhI(0sOD3dLw`u/lԇ?2@+|XfidNv(޶VdUo~,eVw@ziaj1o+S"k/0YmFπ|E$$/pYS48`B;Bw$oN_*G\5͘mK;Ǫ_Vu|7 lWSPU_kl{ۘkweIc S8N +,:͞Xyрl &&u폼O$EȔ DWy *wAZ)IW4MR;,j J>xle%^.Ȅm=Nvh/,PM "(; ud>ea/ši3|QnJ'OHܿL牡f\nsvdP!}GF#I>m"[_1}? 59*6|̀ϴ@M j ȤY5U>-&3JzH@)5Si<^@w" 4F:7k5]*ta%"4l>!i4fs\Hl[ldK%3OHbO:a!Vmҝ`ST r~@MК KSȁ,cnYu|fzn/Wx]07tªp]۪bsY#hd渮MQ^䯙r@Qy vm`cseD"%YXcZhn&fnt`q}Q 4Z~I WZ[(7I B0YZ7#qYLhʅ m2/uFixZͮy*"]\ h`Ky@z}爷#R+9^o! IT06o!WqwDA|ۜkBeJ'PdIlbiP +)v;;YY^zgsȿ&T6"Q&mM|0.:{4sAy'ѯ gXG:hϦ+ء3 =Q,۫Oo(MmYa $~=K6tOʑ~HS5/xiH)'׊%3aH\o9JJ:I^᧛$I큐[X'Y0H<"Znv9m ʇPUmBepw6}I)VȀcx*C/IL#vĔ} hbŖO9qv#ɉ}X$ ^hI(* +?(v/^ nrTG4Q3)4aX&%S֘v/a9&uT^KJև(>CPg*->GV5-ѿO<ȅ+E /jM0\@Z 흲8}Fs:` ӾOɰ.0|jǻr-]wAWV1Wi֏>TH/i_UaPw#˰סZe-OM OŘ"Rf oB,AfcE}W%q˱ lQFr)Xr˯UՓfd;GwliB=w^F؅RYFw0Xp Xv~Q Pлo,_ȈLTM R,NTnJ?fd@J~K!Ӭ ō):Y;p7b-ˇt NutzZhL9!bޞg?d~$?6'{BQn9P@5CxtF nF7ѲtTkk<MHy& =6 4!X(&25ʦ-Eёbܢ1sRꇊ]GJPXwL勀Ip^Uct# En@Yn+XZNp^Oxz8xԜyӟk%FN_ e~U(EwZkf-7 AɏbbӣرӻgjF/iyqC9WQp|VS +H4*3EN2M6=2YUw/-oZ"{Jޖ\T1йj a)j{/cS̗η9TR58$ᆭq[˓QWe1"` 8vs%q Vl|y,7#nR ԰XB10wQ6bډ 2 uEEx/J2tWN:P ?EVI=ў-P7sYnr9sCKYV5ԥmey?<JhQuaA♞ZLpp\ZU)Rs|{dY}Q.`F-:IתW]|x9muA@^{V [@ uT()4H1Ѽ+EER,%ܖL{bjCc!*:\0z9Q D!kN;%x^8rn:'؄jLwFRD\Pt*Zk<h +MTf 3'P%a1Fa,${ֺC@w(+v|'9h13l@' d"F%hWFcd+`Tc(xZ0Fm%.cRp<4 ^zdg^{@mOϜ,%:!|.S%dz\j^@H"AgN EBՔ(lل Epއ<(hVzM+\)ט3rj0 'YѮ:$z3 M̟x\Qfp39 ԋ8BK.w%70"[o,g J  sԌoma+ˌ~@3V9(W%BԦԕ9t@Y54k$Q%4{pˬ T^% )$$!RE!ٟge  K CkO;eڄ bpg@iZ7Hl\;0C| |Y+SQ(r4u|N)yR#}:3MAprepV 93QP%>Rlle>9cTBP=WhCFPvf]49n=A׷ G:Lqh,ГbKۅ?!q/soxΓ3wӹR#l Dڭ4'ד}UhV/`AМj2m"uy fed")fE#Ɠe%FjmzT9SY<+KWVZY X^JcQbLa^=~/[*\LnίY>+Rj饸Lxҟyh8גiIj.zm]Zhϓʨ(cJt HnՁQ,aGcCBv [0#ߙt+h{5O3ꍜƌj(&[1]YBjQ\#"ϻn~N׏LT, 6:QuTVPڴӍ@n$6h1:|u A{f)E6acvokԉ8,͉<ڂRQ],MHP T汲ug,W Fa9,EyHqQs6IxI^@±~tY>ܦ ~B`̌=c$)=_+eJ+h,429ڜ_6J!W7#$icELXtF4:[ި6ɪUSF4iqxSYœv";@ny!p cuT;%bAV2?D{|<4Ē @vA15Kuxn0nvL=e~}'h,E̍&a  >LuE:̨;OWw{ƶ`&]!dCCeTdaqEd x2\V~ ,L9{81BG\^5\Ŋ tgt]7#Ϙ+^2ƃe~ MVWܢܾJ!toj(=;wʹ7Q `,{fI\R+&G蜭#gYbrYр"CPDQX)C] 6ZH6i'9%X>{尿:9*kG\Ju=]ࣰKplq6N[թhv#rN0.S"-9{zuCI=dB_N|I&f\8{7yoTןې=#n<! ݼv^Kr[D8^q=g y4u\73<\uhw5-2pa߶ZgƖK ,[*N|ep^oTØĸ h93-ϬCEKn 嬛6%ĉ%NJ=VW]pew%vȥ-8d0uqGN&n_/~hAkc/B`<,[4ڐ9D#JnigBIFT͇/t*ŌzVGv>*{p_?Eѭ'%]YO A \S/# Am|)zȐAl)kH\:cnCq IM|\+0Jۀ?Sn#G!,Wf@Or=u2rĹ"hs6~͒RvS9}3yJnc>NaAӳ W,_+5]^ Eg$GKNvk'jkՁh50Sf6Y&9''\V3+IW9_S:^mn:>F{)‘В1#̴a.3t8]U77 b6i8cLZ,PlDH]nKm[s".'Cus05fqr_*CҲtizӳ1푿ZN3+?fW> w>^itdjo:TeGHpꢘZHSW CeLjqQںI4o=E!1 mH\J#5Bofpލ2r:?sXT-E&0`e&0XGAQfOg)veW_إ48Q32tj*զ0%7OIEt1û)zdlWtԐ,* ?s ۞%e= ޟ, +Em?)NSz7Hվ)F<&8o,[qYRC΀i`6D84оe9U A^7F@xm1< Jl#*rg~s .G[-+ZGGb=R1F1\NcVu[OŤC{ 4r7p2Po 5Q`${>9 |&K]v$HWh+k[Ȧ^\}$pR$Ԋ"ɯ{f#L _Q,?}gNYd9aNb:i2]PCb[Wk!19m7INͧ+\z ]w8WG_H t>i8عvӠ6ʺy>xk_=7 G>NMspȘ0Ne.EkZiZ|˹VQ5_虝c&'؆?\< `8bFv_DiլmjǺ===K F^tyrX C.AxH0 vCWo6eOe /V:ofKrxg1Y)|NbO 9-ЌoOK&6g/I;&ϦGt>OnhqUQcXGND ( IH[(ߦ 6h%k@S/ЛGWKLfz<5ʙ`Os2 ODYAhqi?IMLo nɺWN=ViK=^|0wl!N>*SϨ4n(!ݽuN&z%},mB_>_+~Op82IقuyN,Iۜr05gw O" 7a|sǂ| {igB_K xM4<#@A6-6h0,iq "OLu5I'xK8乛{srP ^5]p'yKa{rAĘ֠Cqx4 N<"@f#Șy *"F[,c>YW٩޸d 1'ffA)#7(QPM bQ67r@VUbda +6Nfu]T/TcJ+#w %دJH6??LlҰN6bZ~@XFa#? C'Z5dm.틆"@J` s nf Hя'Q,9@BnOż5~hMj"ˎIVfN5r:8/.xz",i,9C{YE@ɁF^IM&+JCO^^U&H&6gl ՙsPɓȯ."f Dͱ49Dɛ.U}y C,+b#Iľq+wrQi^Li%_ft} .Fy OS ]oRQJ:Jz84/+~R)i\KMLe=h_ %W$Ѡ\c{nDF"LxE5۸FE.͊ydF´YBDcF͡pcg[&O=BIsp%[fҸo7ThBY}7\̪bЧ 1,EԳ3$ֻ&{UR4 UBK"Ʃ|c^-|2"ΠN7!d?jV"() bGK1qq>WaX1Wc{MZo+V:iD˵A3G!Q+jAڅ 2+(`4rejgw* jN]y-ydO fk6ZK~(iQ:rv7+ϯ& R0;ϥT+E7=إCqMiO*Q^ۛ׮iީX\ ng8;;f$0['HL4ΞϴП40 -<&@'9~0Y0E1v ZM<‰T2bʹ=lr9܉V蒳mZֳޟkx{'đ=ۂh)$ɛ F%UJgb6ܭfz9;ʛ`tme)k)Ka6 |JOMKV*i a/&}@yM~3{D#IHѴ?Tq pCAhGY6bRTNuTnO{* lDR4;x82 ڐgaQIh=XwwDeQ"F-j|{^LzA1̞XpwM2ij}1*9*VyE{B!c";Vi ,n:cօh]tw:9Ga`}*^ke_oY.SKcNYUβE,"tC`!҉C]gJ"/اeJQ%? $?,:[Lo$ĮӒ>.dBxl%%O{%hDz:؍tS &0څ3ߟLN%fм72!(t1d "CioyˉpO+ՕfnO9?l_; 0ZkdBdfIG-Quc{@/8.XC^5@)X,!MVּ*} 7oZ%spqbߎHVB(kGx4.~7kW|ڹgC,/bdZWn[)^@/ .JF|*\%ʾ$L!_r(!],V:/ %u(}+m-U6Hs5 +q IrtKԢ FigZvvׇ oh:G (]poXNnyD$P M(pi,Kju#wL=k:BVI5Δ2FrBAWpNDa4N",aUӔUb,щlm>StR d>w%̐M -9i@cFkXk=궭sZiZzS~͢@uQ'l:ORCr&9pLɘǃf A% oܮ#V۹ge9@`}ʹq],K>P#k y^J`%GTŒ~V;7 D#/i_Ӈ EJ=w\B}Ua5gxjevqmƹG|/+Aجa 2AyњΆ@SmeD|Ps:dxhZ AՐɝ;^M'I*Zv}mµH?Z=d!>3rC:X2orbs.Y1n0"ٯo驳nC9/ʱO=׏wFTE"fć˳t{RFBFڑA$$KtXCo?ѣKϙ10*nEr\"؛)eL ְ?t9s{k/Mޗ{U}u$?ſ89xQe.I~XW=!sp>M\s|7μR$|D]Ħnp B;gku'vMUw WA߽ Nj۾CĢ1NM9I&azRohvm|k{7>em [~x] !%>( $$~YCnU/$ϯ9 +6?ZP^_Tn#kPy7$#p/S}W)J65faS俴f+rM_){mfR;/)ra4]p?NL${+FX27l>ZᐤY]7nl+ELJ ⼤N[ԽؖiOߑPP$lj, }F9x<72FڵbAŁjԎ\-PZ߂jU@sg;^=)苜GrIMR9HԪ3sBVHw L̅H25Bh˒h KVBY/p@drh60,Ԭqg{[:Dbe]'4ʚl]ܢe dDMy6jx;4Y"[WsԺ5"hTJ7 W~A OpB&>"6)4/kQ*%X a+/%:`vV*_R+`.S<wT|Hq',9tսn"q|t w<G2(;N[V}f 0dNk߫j3A*1F h U!|ծ9V l!AJ@syjcLjڵ%vDJ״ [ϰěq*m ?dtr+ݦV Ӡd(=^_}^z: 53]o tg|r1{s`SS%τ^V ^F#Zͽ";KU;Q!̠cvMU~bCGd|dwdz*ռ=5|cS=]kČ)hYI< pAN%cw| P]ģ I՜GkoPM1[d(+|EDP;ssLVN:wa:ux>_{ԑ!yf@P^Q(=BRz2FTL#V~b(WzX_ n}b7Tƿi6R:)w|ž0쌩D;]*?JuvW!+垼u=Tyv?Q9Egg4V@޼p =A2FI]nj5g6]utET͡=~9nd\[bzGҴiL9a ^J@2MťG'g}fAb~!"jR9o7 X0Tz`NJ sILH ^Ԟhd8ҀUd~ Q1Ґ WweȧU=46yFd8iӁ$%x0K;[,}l <: O1k`+M|cx,P[9f/,Fpic9_nR~x$Uc/;Po"y@$ȴZn7K`9. %`o =AO-v@ۇpw| ww?ĉNJڹSNla9|$kn]}jA'gY`^U}W= o\dػͦOQC1S^2!r ]2z-$)okϹ_ÞjM'dCu;1IJ<ʂx? wg7seZlPrE{Go>Ny!FjOcVR1dP\tr!IKnЬ窣Uօ,?1X.vF1_?Ͼ5 _<(hFAóOz>(Ɓ5B ,>"l)xٺ.X =ZH <+~?hAqvvE} If L(Z.:&/Շ= hxcAq40K;|w(X"ao0:O3wBFDw2 ӡ!Ɛ0'Uja/!:% x0k-xD=]~hV pÐ]׺ _)\BC% ;Wf `l؟X9 [GV80_NFIi{_e3" FF3T< V]$D۔2umq|3HmPƚ$EƕW#A0b k'aMq:,h g}L9xq.:XpWGug^AL/"5N^qJu2#`l W+GLULEqoB[;JL`sPϗN6Fn2y W;`As.֠?I[T*)Z\ٲ (Y,P|. <ʑR]Ւ!uOo$(*!:?> Yw>I+u2C=&~v}a<&ۤޔFٺ= zʿ'b(X /q*fL$GLrl 1UdX5Φ [Z0eqwr%9=}@aa2}oCiGH=VǞ}F]w_99 CBU̫$(:~V&w 'u"IX?s٠Rh,qL1D!RHJ` 0%I͐*IZ^Kō2˵9_H9{f i~zΈMKYb|p?q~Mlj!J柧OQ\ʁuE3 XCGix;4W9 |KBkܓh| 5ƺWtf t"e`c;JB~+$|D #ڻ&l. 鵶 YZ