postfix-3.5.9-150300.5.15.1<>,eep9|X&;ڣ iS<2;mo {к1q.x VA 1=v.Ym8DkGy9WtTؾeg\"[7)8| .E@ xOb@EU2< Ń: ZBo+Gca1v[([Q9 ux_KGDK+y/*VMGM ZRUnZ+H]IZZpF@!a>T?d   B -DJRDt   ! $ O  PSX"\.\T_ `0a@0e0e|ee(e7e8g$}9i}:rj}=c5>c=?cE@cMBcUCcbFcjGcHfIiXj Yj Zk@[kD\kX]n^wbyczGdzezfzlzuzv~;wxyzCpostfix3.5.9150300.5.15.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program.eeibs-power9-11[vSUSE Linux Enterprise 15SUSE LLC IPL-1.0 OR EPL-2.0https://www.suse.com/Productivity/Networking/Email/Servershttp://www.postfix.orglinuxppc64le# If existing default database type is hash, we need to convert the # databases because hash (and btree) is no longer supported after # the upgrade if [ -x /usr/sbin/postconf ]; then DEF_DB_TYPE=$(postconf default_database_type) case $DEF_DB_TYPE in *hash) touch /run/postfix-needs-convert esac 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 || : for service in postfix.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi #!/bin/bash tail -n 5 $0 | /usr/sbin/sysusers2shadow RET=$? test -f /.buildenv && exit 0 exit $RET ######## data below ######## g maildrop 59 - - g postfix 51 - - u postfix 51 "Postfix Daemon" /var/spool/postfix m postfix maildrop m postfix mail # We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update # # If the default database type of the previous installation was # hash, we also need to rebuild the databases in the new lmdb # format if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ -e /run/postfix-needs-convert ]; then sed -i -E "s/(btree|hash):/lmdb:/g" /etc/postfix/{main.cf,master.cf} for i in $(find /etc/postfix -name "*.db"); do postmap ${i%.db} done for i in $(find /etc/aliases.d/ -name "*.db"); do postalias ${i%.db} done if [ -e /etc/aliases.db ]; then postalias /etc/aliases fi rm /run/postfix-needs-convert fi fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix 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 PNAME=mail SUBPNAME=-postfix 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/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in postfix.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi 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 postfix.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in postfix.service ; 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 postfix.service ) || : fi fi ~Rw) 3'\{{?1%4|61@  @@@X (PP@ pt*nI@$H X@@@ (@ (@ @@ yW1!F``^R3 x @@x 8`@@@@ P@ HX `&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2 # ---------------------------------------------------------------------------e(e;dܺ@a^@a'@``H`B@`3@`U`__@_@_@__j___L@_D@_?@_/@_p@_A@^^^b^'@^>@^=@^ku^=Q@^:@^8 @]e@]@]b@]m]M`@]:@]9]4S]]^@]@\@\\\@\~d\}@\zp@\y\\\LK\I[[=@[ͻ[[[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@varkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.cominfo@paolostivanin.comsuse+build@de-korte.orgvarkoly@suse.comsuse+build@de-korte.orgsuse+build@de-korte.orgsuse+build@de-korte.orgvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comkukuk@suse.comkukuk@suse.comsuse+build@de-korte.orgmichael@stroeder.comsuse+build@de-korte.orgkukuk@suse.commichael@stroeder.commichael@stroeder.commichael@stroeder.comsuse+build@de-korte.orgmichael@stroeder.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.commliska@suse.czmichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commatthias.gerstner@suse.comchris@computersalat.demichael@stroeder.comvarkoly@suse.comdimstar@opensuse.orgtchvatal@suse.comvarkoly@suse.commichael@stroeder.comvarkoly@suse.comjslaby@suse.commrueckert@suse.demichael@stroeder.commax@suse.comchris@computersalat.dechris@computersalat.demalte.kraus@suse.commichael@stroeder.comchris@computersalat.dechris@computersalat.devarkoly@suse.comtchvatal@suse.comvarkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- (bsc#1218304) VUL-0: postfix: new SMTP smuggling attack (bsc#1218314) SMTP Smuggling - Spoofing E-Mails Worldwide Apply patch containing the feature smtpd_forbid_unauth_pipelining as default yes. add patch: postfix-3.7-patch06 - Security: the Postfix SMTP server optionally disconnects remote SMTP clients that violate RFC 2920 (or 5321) command pipelining constraints. The server replies with "554 5.5.0 Error: SMTP protocol synchronization" and logs the unexpected remote SMTP client input. Specify "smtpd_forbid_unauth_pipelining = yes" to enable. - Workaround to limit collateral damage from OS distributions that crank up security to 11, increasing the number of plaintext email deliveries. This introduces basic OpenSSL configuration file support, with two new parameters "tls_config_file" and "tls_config_name". Details are in the postconf(5) manpage under "tls_config_file" and "tls_config_name".- postfix: config.postfix causes too tight permission on main.cf (bsc#1215372)- CVE-2023-32182: postfix: config_postfix SUSE specific script potentially bad /tmp file usage (bsc#1211196) Use temp file created by mktemp- config.postfix not updatet after lmdb switch (bsc#1190945) Adapt config.postfix- postfix master.cf: to include "submissions" service (bsc#1189684) Adapt master.cf patch- (bsc#1186669) - postfix.service has "Requires=var-run.mount" Remove bad requirements- (bsc#1183305) - config.postfix uses db as suffix for postmaps Depending on DEF_DB_TYPE uses lmdb or db- (bsc#1182833) - /usr/share/fillup-templates/sysconfig.postfix still refers to /etc/services Use getent to detect if smtps is already defined.- (bsc#1180473) [Build 20201230] postfix has invalid default config (bsc#1181381) [Build 130.3] openQA test fails in mta, mutt - postfix broken: "queue file write error" and "error: unsupported dictionary type: hash" Export DEF_DB_TYPE before starting the perl script.- bsc#1180473 - [Build 20201230] postfix has invalid default config Fixing config.postfix and sysconfig.postfix- Update to 3.5.9 * improves the reporting of DNSSEC problems that may affect DANE security- Only do the conversion from the hash/btree databases to lmdb when the default database type changes from hash to lmdb and do not stop and start the service (the old compiled databases can live together with the new ones) - convert-bdb-to-lmdb.sh - Clean up the specfile * Remove < 1330 conditional builds * Use generated postfix-files instead of the obsolete one from postfix-SUSE.tar.gz * Use dynamicmaps.cf.d instead of modifying dynamicmaps.cf upon (de)installation of optional mysql, pgsql and ldap subpackages * Use default location for post-install, postfix-tls-script, postfix-wrapper and postmulti-script- Set lmdb to be the default db. - Convert btree tables to lmdb too. Stop postfix before converting from bdb to lmdb - This package is without bdb support. That's why convert must be done without any suse release condition. o remove patch postfix-no-btree.patch o add set-default-db-type.patch- Set database type for address_verify_map and postscreen_cache_map to lmdb (btree requires Berkeley DB) o add postfix-no-btree.patch- Set default database type to lmdb and fix update_postmaps script- Use variable substition instead of sed to remove .db suffix and substitute hash: for lmdb: in /etc/postfix/master.cf as well. Check before substitution if there is something to do (to keep rpmcheck happy).- bsc#1176650 L3: What is regularly triggering the "fillup" command and changing modify-time of /etc/sysconfig/postfix? o Remove miss placed fillup_only call from %verifyscript- Remove Berkeley DB dependency (JIRA#SLE-12191) The pacakges postfix is build without Berkely DB support. lmdb will be used instead of BDB. The pacakges postfix-bdb is build with Berkely DB support. o add patch for main.cf for postfix-bdb package postfix-bdb-main.cf.patch- Update to 3.5.8 * The Postfix SMTP client inserted into message headers longer than $line_length_limit (default: 2048), causing all subsequent header content to become message body content. * The postscreen daemon did not save a copy of the postscreen_dnsbl_reply_map lookup result. This has no effect when the recommended texthash: look table is used, but it could result in stale data with other lookup tables. * After deleting a recipient with a Milter, the Postfix recipient duplicate filter was not updated; the filter suppressed requests to add the recipient back. * Memory leak: the static: maps did not free their casefolding buffer. * With "smtpd_tls_wrappermode = yes", the smtps service was waiting for a TLS handshake, after processing an XCLIENT command. * The smtp_sasl_mechanism_filter implementation ignored table lookup errors, treating them as 'not found'. * The code that looks for Delivered-To: headers ignored headers longer than $line_length_limit (default: 2048).- Update to 3.5.7 * Fixed random certificate verification failures with "smtp_tls_connection_reuse = yes", because tlsproxy(8) was using the wrong global TLS context for connections that use DANE or non-DANE trust anchors.- Move ldap into an own sub-package like all other databases - Move manual pages to correct sub-package- Use sysusers.d to create system accounts - Remove wrong %config for systemd directory content- Use the correct signature file for source verification - Rename postfix-3.5.6.tar.gz.sig to postfix-3.5.6.tar.gz.asc (to prevent confusion, as the signature file from upstream with .sig extension is incompatible with the build service)- Update to 3.5.6 with following fixes: * Workaround for unexpected TLS interoperability problems when Postfix runs on OS distributions with system-wide OpenSSL configurations. * Memory leaks in the Postfix TLS library, the largest one involving multiple kBytes per peer certificate.- Add source verification (add postfix.keyring)- Use systemd_ordering instead of systemd_require. - Move /etc/postfix/system to /usr/lib/postfix/systemd [bsc#1173688] - Drop /var/adm/SuSEconfig from %post, it does nothing. - Rename postfix-SuSE to postfix-SUSE - Delete postfix-SUSE/README.SuSE, company name spelled wrong, completly outdated and not used. - Delete postfix-SUSE/SPAMASSASSIN+POSTFIX.SuSE, company name spelled wrong, outdated and not used. - sysconfig.mail-postfix: Fix description of MAIL_CREATE_CONFIG, SuSEconfig is gone since ages. - update_chroot.systemd: Remove advice to run SuSEconfig. - Remove rc.postfix, not used, outdated. - mkpostfixcert: Remove advice to run SuSEconfig.- Update to 3.5.4: * The connection_reuse attribute in smtp_tls_policy_maps always resulted in an "invalid attribute name" error. * SMTP over TLS connection reuse always failed for Postfix SMTP client configurations that specify explicit trust anchors (remote SMTP server certificates or public keys). * The Postfix SMTP client's DANE implementation would always send an SNI option with the name in a destination's MX record, even if the MX record pointed to a CNAME record. MX records that point to CNAME records are not conformant with RFC5321, and so are rare. Based on the DANE survey of ~2 million hosts it was found that with the corrected SMTP client behavior, sending SNI with the CNAME-expanded name, the SMTP server would not send a different certificate. This fix should therefore be safe.- Update to 3.5.3: * TLS handshake failure in the Postfix SMTP server during SNI processing, after the server-side TLS engine sent a TLSv1.3 HelloRetryRequest (HRR) to a remote SMTP client. * The command "postfix tls deploy-server-cert" did not handle a missing optional argument. This bug was introduced in Postfix 3.1.- Update to 3.5.2: * A TLS error for a database client caused a false 'lost connection' error for an SMTP over TLS session in the same Postfix process. This bug was introduced with Postfix 2.2. * The same bug existed in the tlsproxy(8) daemon, where a TLS error for one TLS session could cause a false 'lost connection' error for a concurrent TLS session in the same process. This bug was introduced with Postfix 2.8. * The Postfix build now disables DANE support on Linux systems with libc-musl such as Alpine, because libc-musl provides no indication whether DNS responses are authentic. This broke DANE support without a clear explanation. * Due to implementation changes in the ICU library, some Postfix daemons reported file access errrors (U_FILE_ACCESS_ERROR) after chroot(). This was fixed by initializing the ICU library before making the chroot() call. * Minor code changes to silence a compiler that special-cases string literals. * Segfault (null pointer) in the tlsproxy(8) client role when the server role was disabled. This typically happened on systems that do not receive mail, after configuring connection reuse for outbound SMTP over TLS. * The date portion of the maillog_file_rotate_suffix default value used the minute (%M) instead of the month (%m).- boo#1106004 fix incorrect locations for files in postfix-files- Dropped deprecated-RES_INSECURE1.patch to make DNSSEC-secured lookups and DANE mail transport work again - Update to 3.5.1: * Support for the haproxy v2 protocol. The Postfix implementation supports TCP over IPv4 and IPv6, as well as non-proxied connections; the latter are typically used for heartbeat tests. * Support to force-expire email messages. This introduces new postsuper(1) command-line options to request expiration, and additional information in mailq(1) or postqueue(1) output. * The Postfix SMTP and LMTP client support a list of nexthop destinations separated by comma or whitespace. These destinations will be tried in the specified order. * Incompatible changes: * Logging: Postfix daemon processes now log the from= and to= addresses in external (quoted) form in non-debug logging (info, warning, etc.). This means that when an address localpart contains spaces or other special characters, the localpart will be quoted, for example: from=<"name with spaces"@example.com> Specify "info_log_address_format = internal" for backwards compatibility. * Postfix now normalizes IP addresses received with XCLIENT, XFORWARD, or with the HaProxy protocol, for consistency with direct connections to Postfix. This may change the appearance of logging, and the way that check_client_access will match subnets of an IPv6 address.- Update to 3.4.10: * Bug (introduced: Postfix 2.3): Postfix Milter client state was not properly reset after one Milter in a multi-Milter configuration failed during MAIL FROM, resulting in a Postfix Milter client panic during the next MAIL FROM command in the same SMTP session.- bsc#1162891 server:mail/postfix: cond_slp bug on TW after moving /etc/services to /usr/etc/services- bsc#1160413 postfix fails with -fno-common- Update to 3.4.9: * Bug (introduced: Postfix 3.1): smtp_dns_resolver_options were broken while adding support for negative DNS response caching in postscreen. Postfix was inadvertently changed to call res_query() instead of res_search(). * Bug (introduced: Postfix 2.5): Postfix ignored the CONNECT macro overrides from a Milter application. Postfix now evaluates the Milter macros for an SMTP CONNECT event after the Postfix-to-Milter connection is negotiated. * Bug (introduced: Postfix 3.0): sanitize (remote) server responses before storing them in the verify database, to avoid Postfix warnings about malformed UTF8. Found during code maintenance.- Update to 3.4.8: * Fix for an Exim interoperability problem when postscreen after-220 checks are enabled. Bug introduced in Postfix 3.4: the code that detected "PIPELINING after BDAT" looked at the wrong variable. The warning now says "BDAT without valid RCPT", and the error is no longer treated as a command PIPELINING error, thus allowing mail to be delivered. Meanwhile, Exim has been fixed to stop sending BDAT commands when postscreen rejects all RCPT commands. * Usability bug, introduced in Postfix 3.4: the parser for key/certificate chain files rejected inputs that contain an EC PARAMETERS object. While this is technically correct (the documentation says what types are allowed) this is surprising behavior because the legacy cert/key parameters will accept such inputs. For now, the parser skips object types that it does not know about for usability, and logs a warning because ignoring inputs is not kosher. * Bug introduced in Postfix 2.8: don't gratuitously enable all after-220 tests when only one such test is enabled. This made selective tests impossible with 'good' clients. This will be fixed in older Postfix versions at some later time.- Backport deprecated-RES_INSECURE1.patch in order to fix boo#1149705.- Update to 3.4.7: * Robustness: the tlsproxy(8) daemon could go into a loop, logging a flood of error messages. Problem reported by Andreas Schulze after enabling SMTP/TLS connection reuse. * Workaround: OpenSSL changed an SSL_Shutdown() non-error result value into an error result value, causing logfile noise. * Configuration: the new 'TLS fast shutdown' parameter name was implemented incorrectly. The documentation said "tls_fast_shutdown_enable", but the code said "tls_fast_shutdown". This was fixed by changing the code, because no-one is expected to override the default. * Performance: workaround for poor TCP loopback performance on LINUX, where getsockopt(..., TCP_MAXSEG, ...) reports a bogus TCP maximal segment size that is 1/2 to 1/3 of the real MSS. To avoid client-side Nagle delays or server-side delayed ACKs caused by multiple smaller-than-MSS writes, Postfix chooses a VSTREAM buffer size that is a small multiple of the reported bogus MSS. This workaround increases the multiplier from 2x to 4x. * Robustness: the Postfix Dovecot client could segfault (null pointer read) or cause an SMTP server assertion to fail when talking to a fake Dovecot server. The Postfix Dovecot client now logs a proper error instead.- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- fix for boo#1144946 mydestination - missing default localhost * update config.postfix- bsc#1142881 - mkpostfixcert from Postfix still uses md- removal of SuSEfirewall2 service, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html- update example POSTFIX_BASIC_SPAM_PREVENTION: permit_mynetworks for * POSTFIX_SMTPD_HELO_RESTRICTIONS * POSTFIX_SMTPD_RECIPIENT_RESTRICTIONS - fix for: Can't connect to local MySQL server through socket '/run/mysql/mysql.sock' * update config.postfix * update update_chroot.systemd- Update to 3.4.6: * Workaround for implementations that hang Postfix while shutting down a TLS session, until Postfix times out. With "tls_fast_shutdown_enable = yes" (the default), Postfix no longer waits for the TLS peer to respond to a TLS 'close' request. This is recommended with TLSv1.0 and later. * Fixed a too-strict censoring filter that broke multiline Milter responses for header/body events. Problem report by Andreas Thienemann. * The code to reset Postfix SMTP server command counts was not called after a HaProxy handshake failure, causing stale numbers to be reported. Problem report by Joseph Ward. * postconf(5) documentation: tlsext_padding is not a tls_ssl_options feature. * smtp(8) documentation: updated the BUGS section text about Postfix support to reuse open TLS connections. * Portability: added "#undef sun" to util/unix_dgram_connect.c.- Ensure that postfix is member of all groups as before.- BuildRequire pkgconfig(systemd) instead of systemd: allow OBS to shortcut the build queues by allowing usage of systemd-mini- Drop the omc config fate#301838: * it is obsolete since SLE11- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- Update to 3.4.5: Bugfix (introduced: Postfix 3.0): LMTP connections over UNIX-domain sockets were cached but not reused, due to a cache lookup key mismatch. Therefore, idle cached connections could exhaust LMTP server resources, resulting in two-second pauses between email deliveries. This problem was investigated by Juliana Rodrigueiro. File: smtp/smtp_connect.c.- Update to 3.4.4 o Incompatible changes - The Postfix SMTP server announces CHUNKING (BDAT command) by default. In the unlikely case that this breaks some important remote SMTP client, disable the feature as follows: /etc/postfix/main.cf: [#] The logging alternative: smtpd_discard_ehlo_keywords = chunking [#] The non-logging alternative: smtpd_discard_ehlo_keywords = chunking, silent_discard - This introduces a new master.cf service 'postlog' with type 'unix-dgram' that is used by the new postlogd(8) daemon. Before backing out to an older Postfix version, edit the master.cf file and remove the postlog entry. - Postfix 3.4 drops support for OpenSSL 1.0.1 - To avoid performance loss under load, the tlsproxy(8) daemon now requires a zero process limit in master.cf (this setting is provided with the default master.cf file). By default, a tlsproxy(8) process will retire after several hours. - To set the tlsproxy process limit to zero: postconf -F tlsproxy/unix/process_limit=0 postfix reload o Major changes - Postfix SMTP server support for RFC 3030 CHUNKING (the BDAT command) without BINARYMIME, in both smtpd(8) and postscreen(8). This has no effect on Milters, smtpd_mumble_restrictions, and smtpd_proxy_filter. See BDAT_README for more. - Support for logging to file or stdout, instead of using syslog. - Logging to file solves a usability problem for MacOS, and eliminates multiple problems with systemd-based systems. - Logging to stdout is useful when Postfix runs in a container, as it eliminates a syslogd dependency. - Better handling of undocumented(!) Linux behavior whether or not signals are delivered to a PID=1 process. - Support for (key, list of filenames) in map source text. Currently, this feature is used only by tls_server_sni_maps. - Automatic retirement: dnsblog(8) and tlsproxy(8) process will now voluntarily retire after after max_idle*max_use, or some sane limit if either limit is disabled. Without this, a process could stay busy for days or more. - Postfix SMTP client support for multiple deliveries per TLS-encrypted connection. This is primarily to improve mail delivery performance for destinations that throttle clients when they don't combine deliveries. This feature is enabled with "smtp_tls_connection_reuse=yes" in main.cf, or with "tls_connection_reuse=yes" in smtp_tls_policy_maps. It supports all Postfix TLS security levels including dane and dane-only. - SNI support in the Postfix SMTP server, the Postfix SMTP client, and in the tlsproxy(8) daemon (both server and client roles). See the postconf(5) documentation for the new tls_server_sni_maps and smtp_tls_servername parameters. - Support for files that contain multiple (key, certificate, trust chain) instances. This was required to implement server-side SNI table lookups, but it also eliminates the need for separate cert/key files for RSA, DSA, Elliptic Curve, and so on. - Support for smtpd_reject_footer_maps (as well as the postscreen variant postscreen_reject_footer_maps) for more informative reject messages. This is indexed with the Postfix SMTP server response text, and overrides the footer specified with smtpd_reject_footer. One will want to use a pcre: or regexp: map with this. o Bugfixes - Andreas Schulze discovered that reject_multi_recipient_bounce was producing false rejects with BDAT commands. This problem already existed with Postfix 2.2 smtpd_end_of_data_restrictons. Postfix 3.4.4 fixes both.- postfix-linux45.patch: support also newer kernels -- pretend we are still at kernel 3. Note that there are no conditionals for LINUX3 or LINUX4. And LINUX5 was generated, but not tested in the code which caused build failures.- skip set -x and fix version update changes entry- Update to 3.3.3 * When the master daemon runs with PID=1 (init mode), it will now reap child processes from non-Postfix code running in the same container, instead of terminating with a panic. * Bugfix (introduced: postfix-2.11): with posttls-finger, connections to unix-domain servers always resulted in "Failed to establish session" even after a connection was established. Jaroslav Skarva. File: posttls-finger/posttls-finger.c. * Bugfix (introduced: Postfix 3.0): with smtputf8_enable=yes, table lookups could casefold the search string when searching a lookup table that does not use fixed-string keys (regexp, pcre, tcp, etc.). Historically, Postfix would not case-fold the search string with such tables. File: util/dict_utf8.c.- PostrgeSQL's pg_config is meant for linking server extensions, use libpq's pkg-config instead, if available. This is needed to fix build with PostgreSQL 11.- rework config.postfix * disable commenting of smtpd_sasl_path/smtpd_sasl_type no need to comment, cause it is set to default anyway and 'uncommenting' would place it at end of file then which is not wanted- rework postfix-main.cf.patch * disable virtual_alias_domains cause (default: $virtual_alias_maps) - rework config.postfix * disable PCONF of virtual_alias_domains virtual_alias_maps will be set anyway to the correct value * extend virtual_alias_maps with - mysql_virtual_alias_domain_maps.cf - mysql_virtual_alias_domain_catchall_maps.cf - rework postfix-mysql, added * mysql_virtual_alias_domain_maps.cf * mysql_virtual_alias_domain_catchall_maps.cf needed for reject_unverified_recipient- binary hardening: link with full RELRO- Update to 3.3.2 * Support for OpenSSL 1.1.1 and TLSv1.3. * Bugfixes: - smtpd_discard_ehlo_keywords could not disable "SMTPUTF8", because some lookup table was using "EHLO_MASK_SMTPUTF8" instead. - minor memory leak in DANE support when minting issuer certs. - The Postfix build did not abort if the m4 command was not installed, resulting in a broken postconf command.- add POSTFIX_RELAY_DOMAINS * more flexibility to add to relay_domains without breaking config.postfix * rework restriction examples in sysconf.postfix based on postfix-buch.com (2. edtion by Hildebrandt, Koetter) - disable weak cipher: RC4 after check with https://ssl-tools.net/mailservers- update config.postfix * don't reject mail from authenticated users even if reject_unknown_client_hostname would match, add permit_sasl_authenticated to all restrictions requires smtpd_delay_reject = yes - update postfix-main.cf.patch * recover removed setting smtpd_sasl_path and smtpd_sasl_type, set to default value config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be - rebase patches * fix-postfix-script.patch * postfix-vda-v14-3.0.3.patch * postfix-linux45.patch * postfix-master.cf.patch * pointer_to_literals.patch * postfix-no-md5.patch- bsc#1092939 - Postfixes postconf gives a lot of LDAP related warnings o add m4 as buildrequires, as proposed.- Add zlib-devel as buildrequires, previously included from openssl-devel- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/shpostfix-lmdb/bin/shibs-power9-11 1703241111  !"#$%&'()*+,-./0123456789:;0=>?-ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeghijklmnopqrstuvwxyz{|}~~3.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.1   aliases.lmdbsmtppostfixpostfix.paranoidpostfix*.lmdbaccessaliasesbounce.cf.defaultcanonicalgenericheader_checkshelo_accessmain.cfmain.cf.defaultmaster.cfopenssl_postfix.conf.inrelayrelay_ccertsrelocatedsasl_passwdsender_canonicalsslcacertscertstransportvirtualsasl2smtpd.confmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostlogdpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-lmdb.sopostfix-pcre.sosystemdcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrsendmailpostfix.servicepostfix-user.conflibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcesysconfig.mail-postfixsysconfig.postfixpostfixLICENSETLS_LICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gznisplus_table.5.gzpcre_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostlogd.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc//etc/pam.d//etc/permissions.d//etc/postfix//etc/postfix/ssl//etc/sasl2//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/postfix/systemd//usr/lib/systemd/system//usr/lib/sysusers.d//usr/lib64//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/adm/backup//var/lib//var/spool//var/spool/postfix/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:31975/SUSE_SLE-15-SP3_Update/d91e2cee8b7b7eb78fbbc6021e6bac87-postfix.SUSE_SLE-15-SP3_Updatedrpmxz5ppc64le-suse-linux   !"#$$$$$%&'()$$$*+,-./0123456789::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::cannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.5.9-150300.5.15.1.ppc64le/etc/aliases.lmdb' (No such file or directory)ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.5.9-150300.5.15.1.ppc64le/etc/postfix/*.lmdb' (No such file or directory)ASCII text, with very long linesELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=561a2bb1ad1baad24b5a9b23f385360133081b1c, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7c06ab6fb480e9183dd2e149c5e5653efbf0ba15, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ba1e1fcf74c5bc6cbd09e6506aff3518e296178b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=abe26b81b7650a33212846f67963750a7e9b5542, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=45601e5ee3ceda24525d5405759f2e031dd7e540, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8cf8116bbb9077a1ce36491bb903a4804ac21862, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=66cbcccbe8e00d6dc972dc99aaed34d08a85027f, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3fec12128fa217590f2280b3aadac54007095832, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6d0f14624ad40db0ff8e78a359851fa41cd00f09, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c0fa01fdbcd7c7f02d3d72cea36cf27d23050af4, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=39b8931aff1782a4132f8e7dea8cdb66456281fa, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=fa09ba1a40ac9939965310114a18b9327fba8297, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=797db747e2d854d66196882d8fbcdd80e907fc72, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=acdd51837cc47e3c495d63baaa5a6f4ebfc9fa67, for GNU/Linux 3.10.0, strippedPOSIX shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ec4afd10e9efd71e9e676c54dc8248db89b0efe2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=e5e9e58a8bb191309537c749c40d45fde54f2171, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6a994f5913426f4f5a036e759a9227c72129f194, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9cf739885c6b91596ca1076691fa13ad00893d24, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=a2df65f8fbd6fc1407f8656357c6260adec0a3ed, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=173c3041089d632c14ff2dcf84ea7a9761f94de1, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5a1433eddf1bcb786143b5de70ec6013d9a77962, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9d9a30a8f233689b0b09a16c46abce4a60eda3d7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1965a3d070f5a85f15445acab90c0057cb539bb0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5494644fca0352a52e083069e7ddb1045fd394e5, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=09cbca9fbba9c1a5927830b689791838e9421418, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6b8352421b1e53777cc1196144986148c64f3ce2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=0b4a5ad30467c4b71156de38bf74038c4ad88192, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=95b8870f9cb700a0c88c15073cdfc0e4bfcb23df, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7252862f2ab43bd4ead61d1c6a43b3c035735880, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=5d8a8f3f3b571a58127068a5b1e5ecd908a63730, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=10c9ae5528b839f7f2e043198c750c83184b3ae6, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=122f339d1ea55ef0a406fc54753a8499db92e261, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=37668f9442394fe0cb7c0cc7f65593ba75707190, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=8bbf7c052a8fac9565c0ff7c2b5f1f6f357ef73f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=53ac889910c2f9db0b43aec723ea09a5c1a91b74, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=aef715a6aaaff849a330e72a9761322fcd67ae72, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=bcdd90534557ef937a9aca1ce17ddd59a33decc9, for GNU/Linux 3.10.0, strippedsetgid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8af0cb498805d5c795eeb685dc0e9ebfc4a7deec, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1c15b0e038cc2fd47417d83de1edceefa60df5c7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=582810b41230cedc27768f0ac715a27501a946ee, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d91b80a15b412353e7544d5a0f00b1ac666bd5a1, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c36ec673131336cf5352497a8a1caa2479137b6d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=83c582b6fef7db36ab0d2907a43157e940d0c55d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=80ee06dc6589e067f4a559c99a5c7412cf0678ba, for GNU/Linux 3.10.0, strippedsetgid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=46135ca3884fef179c8832435d31c5415ffd7cb7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3bd1e12cc73942af6ccde3b13a7b806f6abf9482, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3504103b4a75186576d2ef465223f65e6bd158af, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7e42dd70413e26dad71901d218c10abdb67816d9, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=217bca6e7f3f6ad18f3463125886126d80c5bbf3, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=799ed53b58eb4e320427934bab3def18926f4bac, for GNU/Linux 3.10.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) $.37<AFKLMNOTU\afkpu     RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRR"RRRRRRRRRRRRRRRRR$RRRRRRR#RRRRRRRRRRRRRRRRRRRRRRRRRRRRPPP PR!RR RPRRPRRPRRRR%R$R#RRPRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR}Dn<fCCosystemdsystemdutf-8ad2473c5b31c73e23c2dec011f3f06d5a05da2abff7efe97f541ee141eb2e20e?7zXZ !t/ ]"k%{^:ܮGVcl1pJC;9߹ĐCxQ2!A1X ܕv"Sx9065).hw!~vR6c9K1z^8Q63Ҵv_)ks$n[0mAeJa+̌7˔c&B[Zk/-MS1$ ~j_[ Yw㬬ۄ,[Y Rsa]n^-X;drL˃WK7,n#))%1w7{<13ND@fJ->m+J#ênۣ]㩡|H )RqV^76;!"an;cs5Zq sIP5M+.@X!B.0UqDer/ xKIY$Uif\w:)'Bm WoYvZ~Pԟdo?1P80T\67~,̂ZژB7okBHŬ$r% (E3_^}u?_ KHZПx=9hsZrʭ_-55X3i ;Ah-ŨlJxҊFJރ7"ђMv 2us.k)uL,^iC˗( .N'DGiNxP'E◍nr1y3GH$0h}o`k2/v+ _!;v9{ݥ~ʥp`Z!Ƨ!maUY`?gU@ւyS"zqcE\sb Do73X^B DIlN* b)cDg-u-}¤Xpo !߬}8-VP=(Qskd9Fyṳ Qc:m{#\fCX̎c5==YDN\ū&]#ByaO[e{% >K4$+tƘ =+j~ӟTZO%Բ5" H׬IluYO fm q]5Mt=27v_qFN]F Y--=2  Kd2TL;=XN3ŚG}IQx.} 2 v1!2NN8ipҬ$z@TG`jĠ*bvt):񴣕6Y-mѠtM S5ѫ{LH2: ERsf)bSGDnuJW_U8J }nAK#U)Ceidb1v\xjE|F"|@ei}KHVSiK(oVy<5i0v9#g^ZU݅\ A+l^݄bK7~o(N>c' qm#2}r{pkJro\} ;+; ;zB¾"!(Z^DWC%fo"yU1@"mpDף)'+ƷKIb 8AFijo\B#:cnpx-ϻ@f@1UhŚ6*mgfƭ̗m?5sV:fZ7Yb'^Z( "|B0W3|ۥMq:@`M/?7m SiKZ{o!;M|kw65<$|f2v_"Y}RP~!(QYWB3R "1YEY\IaYdXYB&X  2M  _MRXK5bw/y"7Ka BNUҜҭ9U?(sreպR=zMYa^a:w5)4Q+rn7nx"^p5|biAA$)];MPj,Ǖ,Ҙi[38db=PgX~a y &4T}dyBz ~S߈Zֈs?\yTd{:M keۗ |nk*%vf1ӀXT-qZzu7Kdd2t<%^OȔ{0Ěp kKEl<5'C!zSnz80@M>eGDG{7h^n2E ifg>e:Kz_[<"6,pQb,?4qUmn?eZf{N ^yTAKs)_'liwS C5 =`v!M yRm:rQBn Dfs CA; d=K~jLMFg m~'2GaꩼQ*,Y// Z*朖x*MB^ʨSǞ/k f+#ȏ.[ 'u坰vbt]q_/!),[8f'r!7.%Y"*Y)w>/Dhc 1fױB3ive$gѩGHз>;A;^v"L w!IcHBǃflY CWyK*^?)" 4d 2qXx6pOI|5i kBvbE#^QPa}K#<| .h`U˲NUIR>:r絃Z*h&JMY:nvA1V!BgQ,9(I]-srDݏOXlEqz>EndFBJ鷒~.l8Oؗ%9 ÞHs ^:М2?%T q(xO4F8e|:d#WđCtgS1p)*^tD`?VA$8I=8ҕ˛B ^!`3<f/[U {aj1ms 3D|ܻM%ǤI ġ}nL$\ht>Z&ᴔ}WjIm`qqKJ#wAzfMN IC$0{/8ܮ5*eGMX߃{yV@>RD s *3~k[3Bc@]$*>0mjZ952N,bʦ8/.B!q  NE'ӠhCA M֛:S6=V|iq)a&4*Wy}P2şx knA C#SmJl@2ܟ>{K";_Y@,x[xRZ uO$X׷6#=|f:ߣwX} Xr\$eyDX ("͠e}'-Lj-ۇl6e+}U; ZTd¼#q[3a+#&(׈DQC1^$M"6;(;3=YS,a䦡0]*Y-.9k"zRyZVal,,M}ӝՅ;jנ ^0Ϳp";Wr`wα6D9r!DF"ݤᮒ޵h9.:!:_ZB2ccCY9G8Ãf/ dxn2l#q$w,E2-yw<}([IU7y,!+}.)bq{9`>Pr[?/s{Y'c[fQ]Z>Ь 7wqAk.i#!IQ!: ӡj:q ?Wmu+GNP ?O ĘS}dTme)?RXzr[aJk"v$@ Ln1ۯ&.BSBoqTxîȁGOаBR` O3 ErQa4*ֻ?a"3 6&)W.Eά|IWAȂDfL+Qn6g--M2;}lMqX:[M_j{ɘF~v~ͫ@J Z-3J@lfaژ ^'x˜Ʃio g~zcf?PFUmvIH+J[6G-'\z+FB |UhNq.Ć[?<+OWx EXn2gPY._Fw]fB޾Y_F#?C-Y> Gh &0Ւ_ e#n*-PB$~v,\ % X9/Nv9"M SC]sl/Ur_%X"H6Byn?|Vl@kG1܄Qt$9s,nT8z~1oMؖXԣM @^tgsN##/URPMR"xu`聧_?JiBXB6eqDoG=L=.M Y}UhfQX NOىOR]}-ͩ p Bp cahH/_j2RgZngO}a=,0P$^qIGL:[ׂ55}E/+2_ w¡"(qiĮb0n+1jᦓtZNS&r0i@ N85-z BE8 6t$/h!1Y$'\WkuLo#YjqKC+Ӑ,Jb=|:.1vּƣNs} sU{A|qbL'>X4x?Iީ qzL-CF5)-#&0ks,${垟2yFKygpOղP˶Hs泉6~2\k2bAZ+P3-,e%lJ40JAzB_/5Q/T܊+HwM(/hSzyI  cjo7ϊwtUrc7➵حca w U\65c/17i?ҔgNc@|nl86 1?{G" cpxq|.\[pg=N4C`k`$6F<\wPƲ?2=:pR"m:Ƹ";F lA+Dwٌ͔{3;¾sI ^HcHhE|I nis^ 3 s1'C <7$OM.ߪ^"Ui017mmGv0BRKUj7vq?8`w< y4*h5A!ua.5^CW;zcJ|qPuDklc~ A؟%,{F>?CXʩ`81<_j4wY7%*qf2:9 ob5ؘ٦3S %^"9l~,bj+I 3P4QEv0Cw lo09~GS@0&+VėI$0+C*xĈh=zRHU}="=+W1\rm/nHP$Q@Gd]9uQAұ+;cԌ 4C:C>JEU cj6 nll!(p֚?{hb RC"ТU-V(#ş}5`OGiKb(hp!`Z8n.y[?J+/ꯜ.`H(@:i9AaB?zˋL'}hOLߓYkJA{BE8e>l jڂJY}8Dg)쓥`T5^ uy$s있slܑm{PO=k, UA@X64 s&;3^ƠR ѴȾ>N0KC-G~}g0+#sbcM{By n>##=]s&թc?ĩIx˖*-\:DôE+I'"FS1T2;d]4o5CKIf?Z i}vpI%LgC媒Uwenuk?v 4Y Yp=*74xPX91L {&(5c$TAs/n[ks@jR)& ;#3_F3R P=,R٬||C~o&:u\>"z[ES^vlfME_ēa]nca+ pͯ= 8䑽X1-h}#Oq33^.ҵBʯAEd ۞ F!T2<ǑؤҙĦK!l# V'0I$tFгMvP|'GB<.Ӡe*b߿4j9<16uO|${jk .Vqgѵ}r1qՈ3sڨ{N̖Pk1G: o=EZK~{Y_4IL//*{c"Y*cc& {lxF|J.YF|7As3|zqA:Gݸ4ہկq爃 5/˻Zr57V8s+[ C^|l?z#m=dщ[ NH1ʙ5".{>>EE7(bT'l?#cu3kMؓ|nزU =7$L}Rр9k_8A >CZ%Y@W v4d7Goq gӿ)t[qfBm(u9^B3]&K@CEY7yӐh 8 ;яh EUh +}j@6F$/$'f40YSӕKZW50? Oh\&iaMN}1~=˪-U`5Npz|aJk99i'P8/@sq띰 #C]5v*;.N8g̪*2Xܨwՙ3*ekNde(T| *ikqwNϖJ$μuf/DڢH^5o3bU _SnmDo[#q"O:P~s+`{ޝ)gt Fwf_@[J(<iۘ>'B́8}Qy1Hp3؇J.)y9N.81"xKΤMīG㤣tXϧgX Ƣ3 fbd[S WB:='H,ɗrSMƂ뷩1_2 ?ǘU|Hq4k %+0ʴH)S׽]Td*SL35qɽh}~i%"@0c$!BpvºmuԺC%$DUdER:ˮf@T[ Zk^S֪BÛ%t^Ŀ0`Ga1jnbr.ξ3bT17r$AnvfxS-"p̈́ɱU}].5YhZx>\,HEt /<A[{M'G0Uy u=Xl"?ѴeZf/zKItji-H?` L tu}R:eܯd62Bit&y*aPicǑ"q_BR{__l5FXǽ,j"8t0A&>?~ "ދ?[ bRbMī"/USWNV@9Nj l:HWLׂxh9k)C{QwJ^lWV'i6z]yY= zXN{nfقBf9H\iob#^8#g&I.6hyul"ɲHv5;-KQE<"pRX6k񯥠N# cg0/RZ0uWI%I>XFbZ ጸc Ot.xҙx,KV W/dgFﶸ_4&%B BטXRUe7jGlRI2\l%q8?:&wV)\g{θ!"YMP@NOX볷,' (Rζk+BM7`Ih@ 81Ba!@$(; GdI/GWɹۃr $ŷ6qqm:i7ϱ9A J8^)@oO+ 7gh#d@N-vJ-k"~AHQUvPnLߌn t!tǩt\ 02CϳH:[,N,U,м"!x`M'A5<FByV1 LN0[uQPNq2J`PiG1&Oɞw!Ni}ʜe5[ۃHO$X[ Ol%|3OYQiTd4l,xՊg[PK4UڲA.vrջƔxeX%ʤv.p #d9`bzdec~:C]6rM$`7Ծ!B07Mޥp33k8g -qAe7Vؤ)GGg #sw/Ծ{ɌtU1 &ٽwzCDKR@ LXwZ >$VpyYct+Y,AM$tJ\SटA- $C#/:y ѩ"YQi@v KaL1^BM XPhރ4"%`6c ->-̺SC,$B/Z (*Y ~ k:{\qj9Aت޴kϡs\LuJ 6=d\tNķ/>̧fkn(!_L۳޾΀];+濨U!'8 K0d>K`Hnح!OxM"?mؔ@sê9bP/^zdbLv-nvkEE=t^_Y^<>&\jkqZ4n_ M>#r>zJ@N"߀ Pyݯi#ˈBϚ+ J+O'緺xo)E-p:^of4=Y* 7FJsp:KX9g[@oy&4R4{4Yˮ5r6k7lHE=c =ճG|漘PakMI*x {& R&-\5F@OKv82y!a ]uj*!i ~Ӽ"ujxvMzHopxgS?>//\gcV h=X:5L &'sӓn^msaU_yVr&ҕnXw) nqb"ϏCIcr O٨߿HV//|:㭙H3C64[lczѪO+Ѐo~pAT]%:Km-J I}~sT< }(߾9/`"WblJ-pZ{߄0Q=:d`H5 0B35Nx&~QK]a\,#ٰz(n~`eݒHC[ulnEn@V]rI=h' PA꙳Ah$H vWvz N7IxwOxi^;UN,FJ\<^X(pyro!ưV}%*JGpn\ > dXt(kmpIƗMyޮԏN ;iXu̳r\1jȯ6n a^:N귑'Qt* q|PK, 2bYu*v>p ct[A._Eπ& ƔB'O [>U]몇\Q[x=jHbuOiBB%<4jz`1 ^1ޓDNOW' ZdMx.9hwnŷQXo賮svXoĸW K[e|Ls "ϗ[l%>.y&" ̖] ֫ 7f}9'!3Xpn "۴@5޻::ɖǦue"r\pcwI^OuE8 2:;Hl;Ǎ P8hhGCaJ?OAi>m .MC;K=ǽxòkWA\Th61{aEkc#3xvw;L$kkljY-nh=Jc0x{)bIO{z_V'1M[zbYXxT$9T3M0kDN5A6ߡ,(D^绡!A\֌fBDL_A]tܡնyy ;nکvָNزBHjp$aY@d3vFͳjD™ yK?(j>%'2 %}ecnLK} By޵МS-EqJ,8tծ)7eG]愕`,v=HP(;gW[|d,9_o덎ZE�>"*v5hks-isz0%ZZaN!˃&yACmf8_9k7[7TGn]ML 2"t\@ֱGb̑$oÀI@^*E9%œ#r61@ʥ_UǾwB`w*ZIBKDsRkS42R0?W-z :rkhMkMc:}yچ/KyNo߃N=$ce g&GD4z&}/'^I_fYp PM(SfcdgؿsDiͣtƸRN!ԉ➜e]QV[=~s'Si\`3 ‡_p3*L;=l Uq[ ~xCk]| @fh GM"Gg]w>^!Cq+5unb% ˊ cRO}y䴘Uϕ:|`rzli<\wȐ~R^;z&_ d4^ۛ BEL`DZfj3cn-ֱ؈ s3f݄Hģ<l=} T=,#ARvOx~(D hp$N/!cgwjW= $}Y̶ư,yͶ54r+pj#Ґ4&vƸ?2N@h,t޸#xd%OSl9x8ؾv0o]ޣ`RH?'t&eF@QNPLX[yYs S",t&܅,16[u k~ NhWI]Y[3Pg =v; |ylmGZWFɗ/M?)ȧkfESϑԇ>ɂoT̷P)/} (&qoW?X pL@fl|b# i2nvZGez]UIC̟GSL;])WjV1`X}[ϲzo㩤J手w}yQquߐUOMq8lhT34p] qۖsETAD4:-畇]Dof[PuQ?Pfh۸CI <;Ve*jȰp^t[NK˱e{82auH|*xiA& zػr'>̴ 2 Ǟ3K#U5"UdjNqb!vcԜU:߻q 3Rcb4q9ݛ 3C\} am2AZ ӭ⣵yuڜfM~ S~1`]Wz\"4F)FƪL?ZfTS2$ᲄG['^ɝu0^\ 46=n8rl)nWTӑWjHĉ`uOEԣo1c }4yԟe ZcV4LY|nr|Z@[de-2KDwk$.4:[:>p f% AnKr&#@S*3x, 7c/r)K%ӜRC&o4L !~bMLA-Ԕ|F2 !}H$yꕕ|?Vϫ"7'^ oA/{{QD cܡKwdsB1<ٯn='xK\һ(Z{]g<"F1+{EQ%QZGIu;bq6RySoXXO'\V$ T¹ZH97dB.D}%?ɽJ0ЍҙOCG!.Pe3c+wAe=POψhɈR#r.oûiㅄ.M;;o~UzˍD\'+/D(x|`W orY3ꎣ&jЭ<2)'N8S0y{vlHJ 0 iCD?cN˙D/ch,,Ŀ*ɫނ V4SKvDP7d,hK| ٦R_ycl~:[u<۠d(v7V-TJD@bJT0uKk/˞f÷Í'@Ǵv3ɿxlw)偵BJ 4u:/|&l[ [;B_I-V+EReܘN504Aej6 8fH-y&{R$RF=ؕoTMB8=sEow;VYs\ [+ .5 n;eaN"%UtE(qr2ݳ(''>`2p'e^@nu}FN~0ZۯxE#9$T͖9v;^p;XM F2 C!rwmQ^D3.MX["O]d+c^#DעwխJ'PKa{1:Υv`O5d&+0ԎJ=9*ڳSA2,*mvI<~̖x-B=Bh$̶_y2lG.IK\9~.+6$,/ _J&0l| .4]g,ETSYUwS<⸻q~;iUwLx }9{5Lѓ !#s%5i"*1_ւ8bhkT~i>kz}8t-ãH˞vc<8{{#HfDH@!V5 yCDƓОl$y A]魟mMJ vCrQ"z'zzY C3G8QOːzOcwpx6{wd+jzپx`(I7®r:5T?lnl$ڐnCKlzNDrx|+(--Iע,ӾL zucCdn)o['XT~b;@'thp܇\6CV2| O%M8ǯYֶAfq+i½UF$ 4ϚUl<%0??A͏1;L3JRJhpAslW-JݖؤZ^Z slT@=(bjP/H+NHG-梘]6|BV%L|@hӓt4uazoSm95{)(BSC??Em Tx; P]&GHU~ mP]JH]BYγ\8* [tzV?b!+Liդ==N% &s+.;7?ou^BrCz`=(LX;5D oB `)=zE/ dUàANdETfX}|z #`GǎE&96BUp@g\QYA$ IrZIbB~t-i-i-p0ڜp}`[ڭkj^KUdA5HPЍ#90 loNaW1Su O mP$Oc6DJhG`QT|ney@Do2>m'itei6ߣ|Vq.wr!5^HVu=74!`2n[p8epj!:D ٽ ={oxN\&IO͉Jn>?fSJ9B$9`1c;^RO,lXMu`'Bkz֖r]^:E( E;f>RP|e3 /煂'P:Ђʒ0x0S{fW#ǰnVɠj! + ht$; pN[u8\P45+~>H%H1lquHyH#=ε@?C! f&*j/rb˭g[J6W12Mr2Y熐So~^}Z{p5L˻#˱nYx@6RyI~^tOla::( j1Ɣ%Ma 6Yi(A&|#8(!4xtyҦ*&;k@!|jS 4 6c_.X<^܀t̊YQ·v{T.?  ۰ j[OG~^6D4>l.aF.fNF\ |CG#BBf{穸tV"o矇xьpQo\HHAv_Iy&N=ɮB}jj⷏紗9+č<ZU=ti\_ko=`R],~q1H 5ì?Ю0W}DSZLDɍeW&ʭBt{я,V\j=Li^0Z'(Q/k "Ţxtg?05ӟAD"e3U.߈"&l%WjȺ34V^Z"XSx .FodNI{$HHoEK!p3'[Vh nqv/J2C*ӌ N#Lt*jz]K~yP%N(UrI'31/$cV#^EzDO=% [lV޳;ߒK$5 qK*heY̙.ʓ7slrhj91. o;kz-<—ꕶ&pJc nذRĉ7,^&7ea_,_5QMx,WӢ5?n%V:i].> ?ojK8]<PC|$!޳Dh!X ixc/Q*(Rځ;GR?v_>uhyȆp,a(W ,s͒ {w^1aGM ćz@wdd*4MBx=zӢyߘ_ L^1 .&=YikJP9˰EkrRn5FurztjBf[C|q%uu,_J]Fk<_6 Z03jB URwJ[zS/[C5Z} i |MV4eyM/ZVCZvV(%CFoۺ,'>֍Okevb85Mݹ#,9]Y8( 2'wldr#%B%m>1;Da*N孆thܬ}y[,?]EN,FX zNUɄ^駝Hb޷AmW_^'~P7Dj8RB q$_ݪ;hh4+Kc2"iZT(F$r$W%Q9Uh-]XAFA r3 "Ȓ~isN: >hf/7Ks O$ Jy+|wsUp'x,ߨ^,6b]U/w$V @#G]7 <2s( >~T|MJtӌ=+5'+pgL [ ϣjzMm?.3]T3%MYL`hGvǚP9:kYl&RVb<*b6@qS2H$s,c:[6g`HJ>\S#1c0ml5> ЌyfU?%Q%2DTx:TqύɵJcIm5U}|Ks`ʩU1 :#fN "X<,P( -h^W@zhŦxyp35OëO %{*g'zfrb ۙrqzk[962L|`,Ou.XHQ6ߢ)7C0m.=g\le7x_yC)^6 %=԰^s&%Ȋ=O"ld迄^$2ya 2Nc!aeasú=]B*^KL=pu߁." g -E xl[FB+zkJ,J)3gz{rlM~jR zsj9e@S*Var& >1xTGw”M00e wz{ (W|E-b903{aPtBl2p4D$%7MN1;uПxO8tQ԰ m.۪iE]`e =p#8Fޭ*`d m(q֮:eGL.M5u%x?έh4! [lo7xD˼($%|gA7Nc=OJd! 4TqwzXeL*(<~>X"BGv9k8Ð!Ϸձ]tTgb2.Y咄!C|\џrmH:|Ü<(.V?| mXZ>M/y F]K#vd]9Qc f(̭imۓ:jw6sYAJ$A`xޮhGQ*4rujt2ZW"@!͆ VJ@$wMohȹ!ҧcb-Y[#=FY/!̻aѥ +>O'Iis2 ȫ18B C~G4yYG  թIHQ_W/ 1=ZCcuC(Pɼ綟h у;iLJra@ݏ%FpOйrt3Mc {{# *lYLj5_ W \S CV4^Í#QBpJ5e^*m3dIOkք4mZHcW΄N|TKWtm| u)Ͻ@%p#Ǭ} Ѣ|pD|s1-ğUg GJ0.ԂD1&26FnE.*΀}e[sgx7R7WghpLNf]wyM8Kfu E znyJG\ us{pV]׾R͗#΋\$T6]2疏 F"cL'*EvUC41>'WT|`C*N(/3aլ %v-XzKFBvh ic593_F1Y`@a*\QC]$q,@ ۬ʘM,C LG`S~Wc|kl݀ _A,+>o /F۩>UC NE 'wJ{'ŝKRE+3BRmn}VC%`|XaSp~Y09IDD}0`bc z!-$PIa6l3g3(Z{~F)ᣨI )]ύ#-xzWX3SS#<: ~ "R/.|{ZcgHj篻ZFˠqFŚ467=LM#lSVc]t8SLq|(Ce8P9yc:j<,=$Ho6s-Jr]*\0> e#nh*_3 mkQ?>ǗP'LhwqD#6=ÿD(:+/^2c\mR,anZ|!bz9^)!70{C,6/'[SD i"g%mgrj2 hpF,s jL\z` ]~-YJ;*n4 DZUYҁkדșkIQHF)_f}c|sr_%Խ ?4_A`~{:FGvft~A@ Iݴr?L+ץ‰uG E85v(zĩ4#iLHQs.xC>1CkYJ?g & |EV15qg̓\aѿ$vG)`+uf~59N'6DȩQLh$\]+q1lK Uo(n&W`K&[+$O"yCo7pQLU +,0/xI㩼>^F?)ܦLZdf ^tNʱՙDT(b^Ħ5/6N3$=wx\18&6~7 ͊I;7;ȊRʛBYv7;k@!5xqै&|+:0u+WFJ1JpIҦ/Sv^n;P)"wj]AQǵuEڣ!ZrFv놈UH"\3GD{f>J0W쨂4/t"0t/yYF|Dbc,?Mo({mF;3~Afմ@m~Nv465(I2x2B\^*6JGOGSE&!^*z٧Bϰja$DXBEkך!p/J8?;ŨL,FOlh-zq[ i^nXe;9kNmDނf: (mq;+aXù)+CE_h:N+d|\i]|)eXFh"3I"(_u&7{fj #r$MP>zHlf3Zk\8~#vAlw^dYlD ʓ&@]` ̺^^Jپ5` b qCrIc,zCfX;@x dªKo6-"a06ߝs{YZ=i!!^6ٷ{<Cd]^xMC֑yb;g)yY -G^w6cx%ZPu_Qxw~pI[[i' 7 wK[y=dLȻG.0@ IYx[fN+CN|ڃg=lWr˃&ĉ#!sb,-syFڿlAeX VDRֿwq߰bIoѿ %⻁)*pKs= |L^ Np$2ѻXs3Ҡ麔A™$*#75v5•`a+0IV͛:U$CG^NKA\a3~M"@P/VzZln @e:aFgRWɨ|ѧ n5Ϥ6p0t `HvU~$eQ'uRϢ)*=vy3oA&_sUk ^Wb^$rm :k0>k?Br=Yԛ5"xWtM\߸b9eb\ݣe-W_ (M_~ܸL6m #9R y('ۑ̬f~dj{D"bݪ(D7SED 䶡QxM,R4;\^Z$SB`#^c]94Ff pV0F$.D+;t CS#^gV]@t w >\(t_ H1MՃ!9ȿ~OM/>؍6,cnײw#3DI [6 b5nM|FZQ0у)o0u'~0}Fr[hڜRYm / P~A|OqciF_Ţʆ޾Lx[-Z\IQ<10 v ͦnW yih{ {qZshV"1/J^\D坙c^J;Xy(#ﳠJ=9(tY.P|S'S8Y@?5=BtnIGmG0}ϫ'eЛ*bd(e"d'dq Z%Ác= +ĵkinr űb}N!ceރ?7oqh'Y-!96- Ysu+ |گ@Bȵ-p1imՎ- oysՠs<}{#RL$i[ψ7x6cA(׏]1׫5g6E#B/',-g4$8/JR%\;YƑ{W6f1F;+r2j 8kЕ5lhIXe&m& bꨎe}FtYǥN@AGnQYJ+3Yt:Go~wc,Q+kKJ:gas= |w&,$1%s`wY?Er_BM~mo.*=԰yc|S.w%&}㍠ wl*-6Gi AJUa!&ؔ`upK|2Oψ/J7!!}(9|wa gS6E5'6Yt|0O6 X$DvܕźW&ѻQΒ@f؉0g O7Xt\:%^,QdHy޷og]LeS֗n!osnS3~3Rˠ(^7gpa?[Bdr%~ Z~C j&(Fe^]7>A`SR+$x6 ژ>.4YX|6q9w>SF>BR!*(T\, 8{Pż6i92OD6+计I L{ v'&AT[aVȟ[ &7 MЋ<GL)A9I)Q5[m ebSG?.Ux#h15๾d8"~!+Ijm;>v`:gsgYNS@Ns#f/|Uz؍'~HREsvH)lA_ZCJL@O( ! PHS>"%x5ϧ"/V#S?=vI+)'<6X? ߷%i̹a:Ul OLa])agTY)8_g 89WV>SfYg~kQ0njR53FЬFX7?'9%NZXVy;iMВ <8uןQ:~WH3ag]~R]Jc` /V(NVn60ΐKV '/FAY‡݇Dq/yX}CRhyAޔߙv{:ˢeGoQȾ< 'R"Yx=]@ BdA0P勽#.EsVazgFG&]hՖ jL}|z_~@b /`:^mhpUfKm#g:]\ 6H8ݖ}C:xM><)Ya)0 1j˜}QQAK8Gq̢KgTH_=.G,LEdNBo$R;nGG$EiKJAqm;pߛ6_v2em}x*W]#NRĆwd4bc<Ub12fT78XiĔQ(qvN p,%_#u 43fb|r엛‘OG ;v8,< C?A^t`Nb'}][*̲e Q\ƌMfp|:UOmY"D8@y,B뤒8_\ctFR]:Usc<) l S+)@lcGnИZ۫B!MɩϬzTfȮncp Jf``7 2jȄ|v|4vU0-keCgz`$^͵F+ to2s@.d=:I^(5j"\(>C̵xMqh&ɗS V|?]w;]N% @sx;w4yo~8D3de36):Pn5T4pOϢ9g.3L k;Z詺 7*K%9o˞#f)RkM'Y_c10b7JŲN,xlcpcXPn2i!zނiBn5ꮀd8ZM^Ri!Yp_Zveup$$ cOeQ½'egȽ$2ज़Ś\ tƃ ̍G: Sb},/~}Sv8QYy_yc(Udx jZp @&yϪ\_oCnV\u=BV'$лIB֌L]<">DvU0]sۣUm,?xcsI-Td_1bd rc ;ǘEltS92h0!~E%>i#~<ޡaXs"n3fQx@|vzk-O)]sΚj 8Y|w či .!?H3瞙6O1T^QK .B77a5+C6j9y9 mo}G{ݳ\q]'.orTBZ@VhW`rk<-^hGPgyR[y/EClFL93*=IhQ_e I^*VK(2!<^ APhcoklaj[l?gRK[A[CmC,~}Lp6Q]U?Rwdwٓ-?ddqy*DZm#[۲AGm|!ԓޢx8=@xHoDf`U b +R)'uI<4Hڳ_bK7Ɉ4/[kI>eI8(\GWm¿ňg}ga:/uVAI\6$f~f8zÈ 4ġJyD4DX%PWM rlR[ebBh>p[2[AD[+Oc,.;t ^>"S( X5Ųx2DDs2=ȗ'Py{X'U W :FV(Es -OLsTͭ5wbK;WXRZ?qbtFҊOxrͭm|ֱe|gAU#JJ"X\lr3Cae17qOӰ݈@]xR6]o&aT:Q˫Cy||c~$'ȒIH9l-q lV ;o{~A{σ Bvܥ]1vq O[=D:Td/i5%[b. <υι1ZsH3;v@@_1%?i@1}2q-KSsj+QH5l@9'\YtR__3]TU 1&iȄ2˨o~-֩%;;kn*YOaUzNMYȓ0+ZʱϬe:`$+2e__S˔l'#QC  ~e'1U`?uͮW%a4:P-NfB-=( m,$)E >lVʈS6O@ڷz $y"F's5;70[k`xV@'Ojt脦?NGq':QNP9z@F_ѠU:*ci3g1$-gXVi2|,iӪ& ZRO]9ƇBIy4:| V8-dgr*T U ۘ+6x(k9Aw ̗NmUB>k ]1L/)y_uKjo^:еe5Us+k_ڤv䣆~4 m|1ϱSsgi׆Ӗe k=ZtSp1;⟏wEx!6T!痙P5P_Ta9,;"&u,`a!BJ[ AבT1, Ѣ"tl:Fjɰ{,QG,qh: !-/D'lZ? A3M3 dRC6HʢT%U-Vc[d@YxaO|uPbYtϪHr! N.%Pdj4w[% 9/(Pr_u+ dd+vO "^ٶ$;fTHK{mE&}ӈ5q-dcDBDeX"۫i1l"asLr$:|:jlm_Q_D2,_d0GFϨ@J; 3@1q v\.YQq L񭭋:'G<?#r ܾ5Lޒl1=Q)tw)'lÊ֤=4 p1d?UЙH(VmW߈cý l^?5XhUdaF嶯>IPv>u\-.4V١<V YjLAzi՜EUYs*阗m^J,aÃ'i8l5~` 4WU+&CE79+ǯ','Fص{<m7K8[Ow:+,#fÓp]S_ )>n_'z*gY 7= kquL E{8" jTjڑ(!/* N爉WFppu=+r7}"r=s1{ܺӺ9bawH ٗ6I+ #{V #DtDQcڱV\6ipƐZc*Lאݹw )C }'\cw`x潣h$9|GԶL9zYRZ}zpKx+M 脤KZ|A+#!Hwc^Fܓg̬Q4.=IGTtͪ̈́oNCcלpT^,[?޴jFõjd# 77$2HHF qCݿ|4& 0_O68iu>48rn ֆbJX̥lV3ȅP{ L3F’(iдZ ~OI.x5N\828z_Q寈 e\R G?"T؉u=c6B,2a4grCwˇs&|`K1Zko:QcE`=*\x^q_OQ]v̮(GXعīlU{fZQ|= %׆Y|Dk/#աR -ޯf^Tsj sLcx֘/T6Fo߈s.d4u٬ 4z›qkޠ"8*dwƯsIq-8s<+L҆gG}DMӊj;a06W2}jX9,9lD=`2I8uWbbGVX>v*L;}>] ?xou9N|60<>U?9MBW}e3 vem鷉3 [(+ )(A|p-ceu[I~\23^ bA9p~3ʵ`?;W%ɻtLU^=*Xk(E| v$|v\5 (~$t/K7k6P˄Go0`3cfENL0[4a4 O^CU~)P6yM^e 0'iOb.\"/9<I G p"7dR fSӺq /=Wv`X.S ©l8vqD Z%KIÃrB /[a) xKC/AOZ=Bh ~965Vטג>Kd5;x:Td"nK擈xԩG&_NCgE^`Hٮ-uZ}K`@"FZzx7bcLG;WN1˗Gv6S r'idՁ]{B4yW/Ԭj/sm)[ eRv[8Ͼ/h}Q,Ê!c':C8s 6/h.gHw1ڎBD$<m͂xxV6zoiI 4o~_n٠Xd. Z9tso^)Yaxs_B+3&㴨X#&5rBH>o3(5R"it% |%gM篬bvpCkfڑa@y|SP%t[iv0?:eʍv ~>|}gCܨJVpsDPDX*o{EkAkݱL~IFpm}cmPKmvL7a r7-f~DOE@w}/dYZQu= c0P3T>ƢA= _yE APmBح9[t۠:꧆[Be1Au>3$J5IY[ĭiܞoE(;Ukvb$n>˨Lz[OKF "UnB@sJS3ڒ1᮵PFVR9p53!"^7<6P;)n&ҸلFHk6FHw{s;²]!$wi3:  hue]i9!JUyPJhE9\]u%Қ ^1hPS&xetF!2vޢG3Cj6 n]nzMAM|rE0SaQfE ~鈋OABRUS[~FfWuIDvihq{"}Lq>҈͐>yҕsNW7Hf^#[( y-Ιq/0v lIvUjZ#O-"D7B`l'R`w޼g߄_}?lI-Y+fPE>~y)Dy\B\eN8Y:OVk+Ib^Fɻ9wq57[ O *6{[Ϲ˞p`.Tƙx5b1M6xjbC! ׽XZ芶,xԧ3 ځhvLfpNss4uQFHc-1c&Sk(6+rwym8/[q}Y~&_{OkpVW.l, 0rFVlDҁ;["^ێ@ٮwi'5*C x~W#*h zk!%YᰪcfKC$VLd6Ù.H1 24' :ΈW&!t&AJ isQP vl G&[2lBi\]͑gŇz'I}m 7ݜ.Yߡ7,]g O1ߡ1;۪,{jiʏ۰x JR D2Qps*K3Dj9|ED^ja&< X;M$^6(ZՋ8r:`^nRZc#?+NC{W(/d?ҔPr;VBm $B[)|ý:U@źvt䴛13G LcL>"%˪'%)? _ab*Nq'@r" йY^kr})ci!<)KT:٣q/+1^91<*l2&83˜D tvIz*u91 pMo}Jw4hg1I`)OQ_0N=njX=)RL [.ܯD:BS a|ݻ'VIn26+IDjt8yNǷ;?QsE~7p"'a`DQ;HX`\7 KI[v">}rZh$o \.9"@sDLi3goض͈5|Iaޞ̀oxܶ.HJ< .̍X-'ɳ9?_% GaҬ[R""zLN Fdz -} >:FUJ4E,Qbo?ˀ"h*;l)mzvrDqs+n{6]h !e7OƄ\ rs<|MkEq y\sn8;V,}f!L(yc=3;kRt1#og?*ӲӰWa)[{?qeOĶ~PO,4N҄Yͤh ?/`.TЗS6 EL2o0Ԇs9юcc2U^-VϽ!) S@ZD7 !v\4y$:RQ}|HIjXV<%R/%Yy0O DvIgm|4R8V7ɳQ[U boCx>ۉèo4Kɓ59̾7ѿS s6'p Eժ ߍ[:= hzLH=v\Rp(|ksC]kMgtUUڛsl=@ DW\` hEڏD{T:Ure2z486ׇPU EL=`/AɝxH]8 9C;4[_Rm` PN~iAX EG@:ekv;+2y}Q8JiM+Ì`x~Wqg~S"V웖`]R Ès ǔf[7@+dFoOm0=da*e'߳"b>8?'0*2)Si(w |F >RKB4xBd3} 9wU)BQgn, ABAdAN!Ў%W& 74*PF鬴*y,-ɺ!?7TڧNX^Ģ @+-0_;\d17pYҾGRfͮC=kY%1>wڌF ;.YAX$0h[$1KF.Ip-ە|\5¹2Vrw,Zr_5 k+FdzEfw\X>S[muOlͭQ%Maǰ%r!һy4^A"lKH1k5ƽC$;fz7s: MЪ`轩jvm^X(*CEeAH GbtyQdC%d3#I,`"}+:v98#/.*}@Ҿň> Z:]ܔ $OO]/U;yitfOfba=p8%mYG:?dn 4I}? ҂@ ̹"gɯXlbQD?X3)d58|L&ZAyզoq Wsm;ޣί];ocpݒrzq< &C1V[O{i .!kn`5j%3fKy/ޑU/("#$I$mkʩa pw3^&) >J(; hc.dEO<%4{Mu aؐ /\Vrhv%\AVUBC`UQ0iX(osFQx7&(8m L5f.wd JE( 2~gJ|UK,ODc/XVj_aqy#̗.7ƅ;Gn9tK&Do*^ޡHH/v}A YBOg`ze| >S+*;6SxdTw2-h\ҿ'1: T1=79f c6޾!d"INE"T``e!QQ^FfrSI!1nhȞ|(_cRbAU@٢H_5OVɕ"K_zώCþS[jʐeLCEb!:s| lΏ6_-~ˏIo ΏuIr%ыEȌ.-yjB4b-%[L98!U.RGsSÑ#TVª䃂HfH#*g'Y [ݜtfW+m;ּ$x@nκ?UmEj<+,߭Ȩ#Ztf$J6+7 -a &4B^_M0-̟EYTnO"2L120ͻz*.Θ9.,2e X:fǃ(@r3֏v5!9nf`m~u?&RVo(-$s^Pӹ^N%RTܴ;6/MhKi#'ٹy?l!Fs M3F&Z/6xpV} M ]ivyJ Vr]Pk6N!f|o@oi|R ];NkϮp^3q317v~Ttb|:ʧi^ァ֌|| !8AZc5Db6oWˡ*4l̰"E;o$d3so8Ѱ)r N2כx/ Lԕ'>Jc&;5_i?xs iG0k+c8*B)*0t.~li8Cֆ7wԬt4*-i`{0lOiuQ& p悱` co;20OQ ^C׹; ,$p}[Jb|t L,qP:$w5h_z, fWG>sS=R~f%yQL:z V^oxn3-8Q ̔1%D3Q 3t՟Y(rv6Tl6 k`BkHGj-9G]ǟ}nCڛ9iV},ȍy~^8ȧOd9:"9Z(4ymcryicA>4Ԃe\"gj0"REM8(X$ yQp bLt'f-'w:P'xңyKaݜKay9;=wMTI$6q7"d [&WXdkgd :|rRWaK¿i7PĤMHϺ.gꐗǸax'Tn`x}8f|h=0@3 Y@Yg`Jwoh֠)JMպ8aCnXh 6k&f-5'-%} *ڶJJ1<#פ M@k|5¶gdVd7& |h憴;P}h'*$hXqN+9p"%.}dL 4mA`)1ZtTG?V3 NGJ ON-WiFSE1DaR<Rd4[ib;+W0to`E@GiJ]W> ž SsҐd Pc)2hv}Llh1K=W#/E攠WsFFɦ6ryAj >lwєEnG&z $`aH}T#a. a-C{qfV gY$p581P. ӒvԒjN00f%\huo޸G~5 SH;_ x7Rrw UAL!7M(])"S'ɧq@g;^+yfia:[}J@U'n17S6/u!(`Cu#rD_ ]3-0tTg j/$;oc.q{1k>i5uM-(2W' SߐW}X{ux՞fg 9udޔ`zkj]&DM_RQ60%BSp)(?ՙlg?ng>UKeOdU葱+pY4 @iDY~TS ;DJyK XB!XKCk ?Gq_KeYT|zC:+@q>!JAk{kڑ2m9`sb()WЎfr4H#!&b1ШltM'%\+X) y8C`4:'`$CUIr'l>p*㨥YH|bsvSzW.Rp9/%-U(zkO=f Sę^UC}>f׎F M-8gZ۸K;n~SĨxAĕ˙PO$-P#DfPO8ҋf^Px ;|3`lx'8rNh򊞋k,9 4Mnglu^40g*|}cr3\e[#=`xUWvF IT`ӀKqQ@n dSo|,~H}{> ݌GU"82(nP^RlNGɠGwAC?3LkõT7E&zČ ˆ K<-QB[P)|& \ r\a,{|%և0lfc** 7Y_!DQ e6ƩwUuz8׃f+Ŗ-yݭנ>})mX8\@DTm d;Ut8tHcaLy+土:0v8vkDV-"bd;.(*KmY}ϺeDei](a$'=Y*jzՓK*,jZԼ̿PU4U9 *\q4^tA8O?@W"Yi@QHp6ĬI+V=)pf8Vz)ɎaCTX99`7 =aWoiR F{Ь! (ŴpQeb&gСҠpS. <⩅l88;fҒy1s%1Xm/$~%r Q] Em7!&z=>,~ouٴ%\QC݈r@fƋ:v?&q 4;f)B72_6tܛ2R:X- *%W)¸ :J=Μ/wO0ϻ5}HEŋ9S`FF-H܌櫥ԛq""FpL'?KޅVnV3i,>",.ѶqKtFkf[~:h,[ȴuEƄ~pj9ViZ۰d'g<?5zXt; Q{V@cf9[ ? l%>?z@1J1U0[2͇7%])QOd;?Y9W#X`(on/"揚>"$Ek M޷LY7C4tՆcQJȹ ׳ɳRB$lUF:sv(73;:~sc@dbhBLũ' Ks]vST)o4r}H҆4iX8}qq_れiM}mI9Ɔ4?7KEښ X¬Mn%0=*zl;=~Lz .BLDML !"ud)) X5Yy7i AUwsImcǐ_JY["@?Ҧ5Ba؛J*,$K)l$}ur,FboӶ_(sʓ!TW #fQB:Æ(N'tO{ FLJRrΔV V<+DC0Bh/k{i F4ed3lQhe 3!CV9V(Q{)aC*84-;087łfsbI˒,9qң7s[Fż!n9X^-k-UgrB-/Ƕ> #秲<&Lu_L+!-, 'H2b$X ŧSWlB+Z=T,[vGZB4X{j{2Hm$ϒ4E6.vksK4UL{P>[Ʋ9=aO_i'I jn1`:#C0ἅX`Rf^XZx'_ݑKʵs2a]zd+ۮUB< [\6x\P>VFGܳKjFtS8oe:uHQGX2I'A=volIMC'DB hAϜY{vU'ilŁ=5 $.Ǐgs57}99'pK -:Ӱ*aBm>m'}V  \\J/>xkF \xEq*13O 4oJ="/WiVݰωl'!fg:l:)1I^> كkS8@%^3(q8 %ƥ:1lqys7 S~ۊ9+?@Ogn.C`;H kvjg 1; :׃urے!.#ugb)9%ˍPVD0K܈|/5\ q4Hdi_>V0sKyJo}|` Bih$h) qgYRqbڇJYk"<~Ϣ !͈FfXpx52i&8aΊ bh:/bxz_Hxe2y6`tE /d{6[P/F$)[%/R~α<ڤ_noWa7y9< m>exl_SQ۪֟n+6:ZffrWDBOTq:ԫ箸;. _jK[u{`gDo{=7to<޸)hral86eSRx"U/CaqNEYN[c&a Xb3 !sUHpvvfePЗKCg9@?xZgCIaɛ ^ (͢5 o8 ZFB/ҤԦ@jSJ@S;3͹ h?$} |WV%jҜ P4.\18> i?NbC\/TOͭ 2_ULԗ? o+Y!~4/af0ٰ1qPCᝫ u=R2 ,BلMIt`TeGX^*hĘW_e99sgqJ,5Fd | 25Z`](s3C> ?գVCLYy81Dre)3j̘ P^{<[#GTPE|"<`k'ۙ2ɗvV] @c+)r Xk2E\E DbϱN[ }gߥ?C;ǃ6z=N`[eb>в FTO؛OW_N{HG.q.2vk ώbHoeHzė |OѵIloWgp\-|`Ȱ ? HP) t\AtOߠR_i|ɣ@$7,mIr_HD)KΉ{Ve\\Yim䥌x2uۉPS #$FأFxw~}(I7*bbي.t3UQ vb_YaboNwFYɥVȢ S5McKH[\siA9ɱ"0=my.yZVΛb'\9dgU,_UYZ@ywRwZ  Mk=BU# m esR}Qi|ufn*[bIj'dW]u2٭w6Xl0 ]|>'"J䧔}]tsh:%^ɥK^7/mryN%x 4T~OdT.:xo0f~!|,@7\†rŏuA;/n2^0-!Y w4ͥYt*ݨ7"6a8k?a-#O~>r}w{T|TYAʄ#h8hm"$L4 &)~'E>XyBضD/^YgFF7]⯜(ꉴP YVJ?1V{"%]~|KEܲxu%3D;lPPXgGch`$r&#R\r) b&1wL; Ä f24p|0d#i Zְ[v͂D##nd2RXw5.5axg }T\X"plZ Uf 1y0U)0ҞU#Q올+9J EndC8B3 -3=E,[ $ jtL$EXPߒx{},qpPo:"C {./F=3Iژnl#Zq}Y$L3i_l~yāpK`ܧyoO;$J:-tg1泐 ` g(`]@c~0x~.V&c~jgO äTUgU0SU<[_}0'_>Y yjYia-S nr1B}z /8Pu l4C:>r$d"\nѝ[^lnt)fލ2cSF]<$11 Cqy@Է&iJX 3.P d _4l:(g/ eNw/+| ֑eφtG5.K0Ol̀~6!.+ qU=.ͮKOWŅ.%t'Z]w>NS3ktJR5n5;Cp 7]){$)xqbV՞CZ,<YFN+mY8lYa1&͙pQ;U g[VPJdMEC!M!"h쟆ѶtaAA,'}OοL ,1Ig兏T1VHJLkycCs`/7(beP)G{*$E0H'>wdRS)m-]|TbW<*ai:CV{t13}@2{QbsR 0cŰ>J. t#7xO)_^]q' ZMmjB(NkO:2@QQ߮ y4#8Sh =]|һĐ>qs4!eh{`i^saeO(@Kɹz5sjjzBHDD6x/>==TY1bﰦtU{/Zѳ@@>\B3..zDYv I7Ĩ3* vm-zҳwjyOE_7z, I >baZ@^u~,{N ]4i^;]]}HV>EeS& 85uQh0@0OpQ*C3@]XW`oMWz仈 "QKE~Xcf'H%Gu<*7VG;\^z1[zgl8i.ab:' [.rEx>] pD}w^T-—K`{X+y#;ﱦ}CbBfz%j}}ɰQb+Ҡ2`vNl EǛ\,yGyZzIܱM+Elj5~B@4cɷIˢBV49 ꔗr⬷v*Ǯguf߱1JgQ59^G8\r`@)te, oMԡ(G\X F2&^rY%q& V+UB|igpKxKUVr#_mj*<qKs .2 BJKӗN sŘ0eVd%fa2} =qşy_Eǝ'A`yH2tY$Tx#ÙLr5'L$*LKE=nJy5qqRq|gd/H/`<`>@=9ZJӣ(M7ñ/W~Ń`eIYR a%>ܰtىvy oD1!P]Q`GBР9} {T "2VX,喺Ci-G"V]a:SQr̓=Υ 71O+FXOKWSP^egS5WV}Gژ.X0#V$B9o`!!@<(کx 9\Xɂ%勺cftv!LB,  )}F#NnartπrD ^"gВ:5!ʹ]NrfËCm)g1GWQQss'5Y2]Oг˨pVK€%ߞSi{ffgOQ_d-&\]xra8BX Y}ې96B]p||^|da{4) 32a_Ğ_J%&:1th\${!N.HMH똽ư }E.{-5툉5&I+3>\3Ђ#^_ CrIv#Z ֡i@:QAv0?.<ΛAd/[+z{~}Q>)٠)v6^3[Sq/D8%_C ImjA>~/9tzW+H`}iQ7ef2j*s+й"5DdW1 fE(B-۸āu)BC Po{_ ac{8 eס:V1QV,suE>(wt&`{Dw\`9qB}{ -EYKLjmQGEtтG CGߒ7Zw p% "Yeۉ Gm-.AP@K6O5ƁjdoL^=UoG1>ndpؚ=մ7P_χCүCe w(w3`kcy4Q-{"{,?a 5zhf,}>XnFDW'8]bs2#Ǣ 拾զ^ %QpdgC[7U<ѸWkՙ tH? mF٥d85< ec[\/}Ծ~Xm-˫mzM\)>imWnjkVq# \m+%#;lJ~L8))/<~ L}&J@zH3kGUfduGѳp+}ZOJ`->_PR ݫ~[0EX~{;FK+ f^O6<ʸZu޹j"gx;V3>yOJʊ$n}#iz5 [yQdX/s[Ι [xATX!@Ωv SL_ K*,z'L\Q@ ߈ѻK\wm!+:tO¤j4q'2M3fJ:?NMmPOᗘbE}b^N]ţ(}Nr܅է7̧yBxo-~?KdN(Kޣ'),B zӔ"[4*QuT#3]neO %H7]۹IAi5&?\ Gnr%=h l0АmQqI4+OwN;w VYaRv:`N=(6uyz֢Y1E\ǒ!Qa`Pwgq^55i!־]bx5`M֥>%͖- ߔÒj,Fт}KUUJvGD|\"U'GYVk:TpM|jr#+* ]E,2T!S:7h)/4Y 8u["Ϩ[#mq9"Ɂ6byS4B_핂,;` 9amH DG*KݭJלճD%0͗RCqm}';,sKn*\Q/?㰭]j׉5H;"=TgMF+f[{O楏j;PҒ -O=}C*-n,6vi<û6M PÏԂc" Ɠ&6SPK^-\ - {M)60 a?XIvl&]|XJ۬TAJ&Wx`iUpNd)̓'Gu˝N$ zK9TxG/'sU bkHn\R]I:RAޏm&e] V[Z'ڢUb?Y8>b0H&K@`{c+&pK叽|P y0rZXrgܐxI,RoN|Hc3>8UBLK^ +/G?vcī'KZWz ʆ6i,ʱ0\Z=V7Yh+nڝIb(:Zŵks{GU޺c4Lї =*:o=J潝6:9.Wt`u5,Za$|%l?,ҵ_r_d)(~.WZZq#hx̖># ~ehEej4-EVVfz`QyH WR$6I; i j/F*\I@aj[hmzhahsɼr@jpx̺m< >651{z/Mevmw\Z$G4[JAh?crgsgw5h ]TP/encꓝUL*ˁψ޺2 -yj0Qu?&P}qu%Wb-i]oKd2ΔM-4ՃѴ`^XyD&bhZU#j->Ӌp/jD@Vɑ 7ffVݩU~JűQ @sHYi<O <;pQ" @|WIߎ%H0גatSNܝPBV8l'6K{Lg+֢+=B|fb*[ WM7Px&NB5$THِiƿQ6;chZ[u15vԃ^1ϸNeFlv/ f_]s'~LA 0k8Wf0Y7s5#@H7Q~ *m',@h;v6RP)"CjP"u66<__Ld.D5[r$rQS8jǺNuW ] `L~}j3d$ҜAjƗCAz&7FcF-prWu.h6b9wVT݌z6~h!y_W);P.v!G?vBC) :R_gFO~{5ԗ:6^cL',lFSp2l0b52;=,^|z5QQB EG "&G'ƛo۱D|CO9]7Th1 |YXص%iSEE[!ʰ9^`l1:,%n[q1w@1+T>8 "N,g:: +Uc)z\ !8q2G#h/Big q3A;F (REݔ61?DW WggDž!9\a$K!ɸM#l^̗͐?B,EtPiR! 2E5x5"!uD=cc^@w(WS&A_+Ds5_չ 䥜$m8M'T"M9xo"Xa{.:7l >9kې|*1Խpī7TdbBGm+EK&l?`6 ˭!q*:ڕʪZbq -k@G1]NnKŊIC)vN|{>R>dISN`V# wmX> 꽎%$oAzJge&D~yhR:h*b1hEg[yg 5dJi ,ob [BqNۃy`^ F70G#Ufo밾2K˩ߍd'LL| jݑ AWo:U?Q?^ff} ;!~߾L񽏢o+园(M"){(_[(]OS)(R^ \$@Δ. yLPpygL(C^lc d_A3?t90.wW wLA;MoZ=k6*|:d{/F.fxᆭh.F:܅5t.lxtM]M*߾sMqϭj&Ru@b`R孫0"ܓ%gТ݉оs|cRWY\+ n:vÈX`/W[ G>HbX AhڄǖwSN2N+dNy]{v#Kx.#fo2:v55s[p~?ݞwoEI 9˲ WUN*B:u &YPL}C' 5H]󖷆VSvnł hO5St Xz)VW/2,[\e,ؚv}9F1^6cVvKjv5Ȇ,w-GI0/(Ni1k jsCt%~BQҙbX* B*9ԢB)yeƝߗ~e6淚 +[,ƹw Ϡu:`NގP{dqU= \zT׬Ƭ0IO@֕I$M'$5=]"e2] w8QmƢ-_,|C_<V*.oq<)?5T(d8CȌ$H+S1)ʁ(t?]O*"Jv}l!+d9 22 MJC5v]V Nvx j0갤ۜ%:ڠ}#B|fЫu֎؅ͯ%~'z13Bn:`y362q\'aYVA=K!Q5- ?8Q-a:zZCY '|̩Ev ѻ: 7⧃3BLBxt}QAqy k/(u`ue뿬VS:glB;]gNlH ;4vItYc/<}ׄl!owrHaUX6&(1Q>i(W;39>?繺d5xY 8FNӣ=ԟ'YK` EHYۗ:@ZR8:3!(eN +i+=s)X*b9\]F%f]ذ6QLG>hcvvkb|b);#qD ahtF*(O *HL)o%*=Fz#n*N♥@ X"j4??5W K$M.+)j妿^~ o |mC"WI8 (w̺Gx-EJ;CÑW _g0뎚ˆ% ߁^Eꮵfa_0LM+ zCpEK_Bo;oB< xY_r$5Ģ7jhA-nv"ɞ艎$kjNdrECUeog;۷GakX%AC ITn).^ q;`505,,Ȱ .iyc?FXHQR1)CBGe@ilN$`b< +ygDQo:_aMWOcQFM*ܶ]*lcǠj%LXgXV"|4/)GqRłNBL; 7zOgT > KOYP>TZj#- =SSꮒiy?5؉Aa#B~y|<|2wU 0!x<-}A}du` s`Wn²Lax6Y'9eNe>?an~&iFrm"eTcRVJ^gISiQ7S`9)6ILZ[3>K;V\$6FuOpއ߮v*hNrr^QrJz5Dֹ$9\> bl{w G负F~xTNcLLB\}( yY7͍,W7 Šn z| +K OaOѿU@vj Zr^f)p 1NUbْ%Oh_凌(Y1ǎ¶#I]J+]pLMgdba^5%ў)MpRrA'vurydW,ALP643Aۑe5}j[Ii<=WYBi a?PLQN4D}]mKEZz/VuYo9t'Z)شMQ2x_F&S5j 5EP5 ShWu3ߡф&[NsBۤb2 !*:G W*bug'pBUAjto~K@N~v[j@E!Գ$(*t-ޅ(bRuD^ Zeh(=AVU}IejbO>꫈Ζ)}hSn!bj~ :&z^GkюS9s2lyhUEq&RA(oB! #(xD ƂV-o {/N8hσ 'f *TWg?f4wV7ֶ%Nv叀<)y8JcmA!f" N"l)kߵDYxhll&kn+9-Ud-b$Bn"d$sbloFT2R(-yc6 Y: W-Tۃ.Oﯭ /JXs(Ÿq6 y 9>.~UwGH+'F0 ePNE?SDdcWȝ'PCP'L"Fל yrѕJh>r}1`^~[|R;m1pV]C䷙3\@:)q)ΐ#DD۾ܢ >r_75vvOߔ^vӈZ.Z`5p*em-lO麕!E)1Yg rؔ3 e Uk%~r ƛo;̧n? Sjm)aK-C)UhN<ۡDea7ߔMTַBhĽwn6Wc {{yKr (^OƮ?`{g<M M{ Q .ЬBZ1Rz_'_8ΏnCT}X Q:ĭN뀒GMkņZVߺV[A/ϭL hSLYgL qEBnz<GY5OsUGXC&iU26s`t[Ѩ5~(!£/D;_ ZiQy xcZ>pV)`W1Cw:^   Eꀞ5r}M2TGݽja(VeVEņ+ҝsf~ 1{.Ony1-7B^,nYa_[ Ѹ \UFd[5pfi}0t}n2w!g:;T§ٚu}CMe;-( މQgj*Ln2BG?],;D|@D1 o583{9StF Yai{RqHsjd1l>$VF))k1;.samuf9!3c77#) qVQ, ̄jF.8AG7oꆏ΅-WVY޵O!ۋEz!jy8N~P7Xz duU8=o.+-rG@r7@fp:?-6ŊMzk`q#KC-;Xe+P"$VDH C?Q`Wr??2:̦VNwXt&l i$w#4;% KJ}s?~^F-(޻TzD_uq<E`3v1=YCh||YFeFm0BɭDz;\Rxz~"T+ՊWV&:8tf 0qC/kYf.YnuLu7Xnزydft@ɿz kD#F.W<DZ E\u}f]̈i"v Q* #jr鐼yadX Ԓ +uUF Ȩ(_~T,/Ne Jb`@/G\/Ƌj#H(8'wr%%xU3<$_cez(R~VA.)TfU`V_n̢N@@u afhjnt%ҲTK~εst\v٘<e,quR;5cz-SXB^Y#kx廪p[p 5`u&Á 7?*{TRhBͱ:TD-HO;)-aua,]̮3-*|yYP -,*1J8Aw{ !0Dե7@ xDx( wyXI8q]&y z݋k?ѭV[+=,  )u(wx3hw0SKek94|5|z j'؁'C{$>کRXlDwkyj bh= nzuAG5*%LbљnZ^^u]=.6r(=8m? t1@J§%@e7ߤfkcKC 9NXņ1*M\vB,y4f)hg^OFԛ3pZ<\“  6rqgwԦcH ءQq W2ni`ЉcXވ~Z4c ۪J $϶|Ճj.?~̧xMTzISrȲZI^KY}R}qi {Z3&,C8VЬ=Kɒ t73>>k*qI GVnk'd@|YQ [Ws26Z}rIVwߊB\-EԻbB ־&)HnUCG Ĭ ,&?ltoӀurhQ0/AӲ3ga ĸm4K$M["x_ح'-L]b S?-xbƱ՟I,ж'mzkgNQ գ?(JYbuf ϛ01$s"$$IDQU,ak>ծ&JSKC:1Fƌ~MdqpVI TmA.,҃6K{5=Lb\<)Vɒyրԫ-K!eqkE?l^X25@-|)Dr0q"*WT&Èr 8?I*`–`K@| +)jV}jP[Z@ 'CB5RbDty迟_٥꼖j L`G9ML8s$i9(BP2 ,H/ܵa:6Aޒ=sAYP6 aq.3)R`7# rq;tpMYwv:e 1 @_ޡ4ǥYYCBH˽(:4U[&\-/$cD,\s+jGX.=T4J.^օ *ZYĮyK2 %,`*G9|oRGkPc*ٮ:!*ZдOŦ$r:w"b:%lP,LfD`it2:d}/CT򭿇s#,!`j&@E#w,|E]c8i8.@}5r 0;.߶d5q_t$G.n;N7syJ.B'Kf2l&em\sngX#x'WЦqڊwtGYf 1}!@Eְ>N0I-uv ,AEi3;-3bk'f+F<e\{'/-jnh:RcM?R5uL2Լ[M-vuyXA^rg@T9[UEJVcEr !.}VC3R(ܩ 9z/o+"D4m-e9JNzӰ'Ji"E GW-^dtY-/4P"K? bo+)Aڲ/G[C])+(fJo?Kѹ/du /_smN;DG H_2Q 8Xo"f2+ɠ I BVh֟Y7,Z[ 1̐\a}}%&@4V"eeiIoZ`k"}rvKlTRB**a47 <ЪDE=:e"@q -JS vN\…8囗‰`^Sf/I也Z 2%$ḊrQl%*"'(];~e!&w+dLs}#tw4e>̑80[ɥ:+{Αˉ ge{e漠h>,z yprDnff< ȬMB;R[#9j.P<-[_H/bE(ISw#+$~ʟ0bC?o"vWl~7zlIgs{.ʇ96p U N@˅4E`6iU]DjjU4zdؔ=XL}?8{:&TzEuMcV9 '(B}ƈ3Ss)I>:B J͠z:8F- "_@bL2(Wx㿜$⫷USϺUtКa.Ljy/ FQ`sD)&+Ch,¦NK:wG۟S}rV$oM܂#Q_ݐB҇T@mAkW_wZ/BiW*uW>icYeAޱ_ljk/f#oRԵ`* J)e+֬рvi 'NP- ]Tqh`<@f"2DuĈo]úRqx@p)e}J語fJ+}K5纚#xk$[k(HX*p2
Tt"+ =ŹMTꬵ|hliwϮpx^/ bⶀ~\eUl{Y2] qJn )=*U)#K 5֘NÀZ ]wR{AGuVE3ڄ;O<[,zg {M̪.I0(LFqʌz O~R)aߌ H$~ց~|ophMh|OE3+N.!diM^ͳw׎-$,@cm4˱5r,J--CURԀCdP<^/+H.XP v9"LgHk,'7e4"4\p q"j; |>&bF՝EH;^*܏X ;')۩̨j>b  Ėnؚ>m`J_2뗢%|!D㉥k`F+Sv8H586w-qDH]_:\.)ue4o@?r^WUFhBW2m}FHf:f4k`ҚV|iAaC0ВGf o\Z˫ӒpE酌cw!0>'j8(hF|/1l%^pt D9g^) Oam $kB`nSd b0N˲;y `HA^,ʝu)fh/? rPX1ݠASZ27&VXbB l+bmc_5e4+ v7DYunobMHD,U =I ;W9-/yż}A8>:qṄM"dxj9nj2:cga[ @-o P!Mc&D9玓Bǚ4ǟyY; h(iF8Rf$_\ˢR:*< ށsFOܷ /03`|㨲Xӊj(z,sj+>; 6 ?sSX{m97uDyfXo!L)FlteܱW0*CEC'S!:aitj\'&ӻHPAT뙣n]͸N8+W.DF URM16+@3lgi~AY|L@Iex f)i_fG Eڇjd7fa{X/ָA#G}&j[4]f/"etF߈i^Sr6ZL CKG4$I1,6)̎k2I+lFT N4ߘCL1TvN7CS؟@=s(,<1 5Wy8rɜ ~u;B 4Q,Voϓ_?5/+ƏR}W&.@xU׮]*{U@NDA%*Ϩ#^ou(4{v@r)RDy*7hTtB[Dzƻl?4w2JN i^("1VF8op(^~FޖO)11hW㹾]:Z[08~ӟ1$5 4D]'.^Gn#fw I 5;vltfZ#QXe"\PZ_kO%[U8($BVA P(KN Iad#yXSÆ箞 ڀa#b)UW`|~z-;G~&䳂c>J1lcoAqjར%6YTK =# i+w|Dek{~%ĽJp:(&%<ƼSUҦ(1]nEFjvhܟ@N}7ӎB!a dUVlM̻Fl&~0MX(>AƇvV а2'ת=d!Bi' \Ļ8bw*k ;jW &%">_{̿x9aA A)jq6\4 GMb&Y-d_lyRX5/2]dYNRM`P>_)DNXrm>);RX,>hfȒO`L0gv0Z BM %Svt. 'SZ|59qȇM>&Cf\rHVsuXe=%ff84$zSED^G< 69֧ҹO} J}mHU%+I{",«K&I`qK[SCaւQ/]A:EJ;\P/h^:4I*`ُU 5wANKHsR}^]kUj^fIf_WM^UZmC)VbC6<8-* V j^56+o$p޸."qS~zD .Ocھ`_:J/xm68E_/fc(Jx=$>A4ViqRd dI h親a0$s>Puk~xLD*gPYdkCb>tIf$&mQ+R[m7?[~Y+L֓_By#yʚRzbW܌ID9NF?P"ZSLl.'xO'2Y4rբD͔×u%TU7Dx!~ztL;,g (mJb ;8D!hQ~nZ>Yfr/lXϠVCЪP\(tCb8ﵺGž\{RsQ76N oǯl/'᪥.(#O$;t#:- jkV-TqYVh]J&̳]0]5Ʋ)EQaM8tmFװ{Ž{W_?u+oZ'G j^`|?jtC5s1}ÉaIɠX SP cp|>v SI{AA ]|I@Dӄύ&w=dTvfFKSax JJ|/gඓW *hLrG>څGdHK"ە")b<3.ئQ47O1aA|"K}W[gVi<6caNv`x┲lLhU[@ Zӳq܋!_s[CUȕ/sRSLzU7FDZIS32ZƮ_Փ$AvCqm! u _]09?W}q;[ӏPd`Xn_dDDI S6+#Hݛ0CՊ()Tn)h{s[\?WD%$-$VÏ3Ȟ# T?~UTLgМk1 !29MX,唨i͞uaF pte*Xoi,A`gA b:S @1H3yY2܌8ad.շexVD"`w͐f(d9 f)XU!M::QGie%JDkqCjИܩ3SG|P7aS ɵwܖ ߌy46O6ρ/j[7JW@@kp(4&>bہ7\fw'A^dW'DYb^s'//KfaCfTf؆{qҶaߛ{%JAwt6V:Ym|X"LOKhwLIUK!+2v6]8q>e5nfm_怵ԛpUmb-}8 S"x]N_ ssF.c]hn}ѩ%"7jum0tjlO#,LM=YLi8ce'BC6:;u8%X#ˠ#Kde'ur'n=RqTN%ؕ2&Nxh%iy8ӎQ>gl<PD=XE7gF7*mP/V(eEDMX-?6rrwurLZ9 kMr>Ө*ܪD,{նG,7%Yk$\'  V4qχ!ϓߖJO-7bO»elw4ԦAIN[.^~qsO׊HOV֬T͚1ͮ^ Fmi Wwҕn녦n0z W/-lTCan7x拁uQ41D}hI ڃ(@VYDH=yKer򚡠dlQ8_<\nA(^Yvd &8 J Zbl9=$-|!DddevЋZ9c+EW+u,EpAjz`Qbۈ˲,/rd\+M݌3=y;Nc8R)k:eE|NDJc0hKjI siW{<I ϑKaPV{u7E\^>Xflttwt/WṚ!%b!i:Гl\Gs$AznifY}A9ϳs> jI+{a<_n+jPR:BˮFnpJŬr3>9DJL*S?CYڪQ[ع--uKv ܻdT[oWSw.pS{h0`(jEhH-k_V Dnb6 \q {OhY TeGPlo&R!86P*V~+ù^wdٲhBS{eh2s*Fβ9|A "Y/VL]X~r ~y$#hOK ,ODfS*ѲpJgF{O^ )@ɮQVU%[Ճޜڍ>Ǒ":\D]z(" :Y{$D3#74*9 I݈ Ya#k;PZb T:B>I.dL=lʪ— -(oҦXU "몄FJDU4åyDXksW`͋ЬH "'Hq Q3#T)ɓvRN\17qOb $ȸ'x?j~y\ &Pȡ~(H%"|!W1ǩޮ}K;"}1nfS,EU͕hϢW c<8n:Fm-[m8.6{,@4T*TF+ٰE)*$0 Qfh霾h$9Aǔ>{VDXi 2nsc/ZHZyIWY믉5#R( ?p7Jger(KكpP?\WLn>mw:_,o.5=xoFoV"Gbiv*K)E0da@V*rlq; ξ7,]gz [}}:I_Yo?SdP"[qLna|ůgWkQtѐQf^oCQ=i2|.hVc}w`/lo+ƨY= KA2 P{"ysPZx {=&9Hx9[c  u{B8MmS̕+ي%V[kǾDZXt /._|z19/?"EM%7$QW9C*̿l?R=bSèF}Pǡvk(Dɦ"0ǷjG\Q:[0:8ģ[O"ogI(~VN73qƎ WSc67 sQQJgI,yKd;q /jl'qqz&פDs쳀B. r JsC3  f4;ݟ,0ɻq`"mL5й֢͋ O`=eE/(LLUK#t%U[ǟhҤe"L1ŒyqGMx{C+,Q /k0emVlc4 }3 64{2RS8sS5jܣw X2veX3,㵯&~-ggl? gpւ̈<]vwl1?4XZe)NCBl &t?[$mw^tjwK\̕c{Sj"iqſɍ0{v!F-m/}vXm%]L'-v08D[c[\H{ .P6`B(cYȽEB#S LPs_6ԓJW$ GwV}5mX8>]}T]xߊ]`uiVYċ:W45WP!#':1{s|S.*wDbTAt5ۊp'r#:l.2V)=)LCco;oDQ8ĝ3nl cTEՑ8Ihp~Ilr cL^ic\d@LwPD1ẑCGN8Ջ>ЇC$"w8M4o $x@sp{8Y꥖򚋫w=.ySVj VK6U*vtCPh<`WyxoOƮДoĿa*%s ťmUM?A !a*FM:F"/YiAOrDu~EnnB=*ISViB8%uZ E) w7ħ457javؠ.5` `I!B#˝fuQ%|1C%cqMRA+lRu'T6Z{ ЏKk҆yS"Ah*J\ݐl`΍}fueop-`_ p b66>.YVo"fO׋~,`SygͿsgl}́O:+Pµ9)^Tj wT Wl/(ղAͻ&Y'vP^\ ]~2X>}4(kaR%'ssR܁{H}Zɾ[oKW\md[1^%G~Cx!WP: ff >N&TPpW-)n'PkcfSPjt| 8qʑyBFW>޻XaZ{0VicmaqY2G*cn DDHC[OPK&eٳkdKyٱ1[$妘Ȍ重1L"Swo ص!j?~UX3rŲEHtL+ ,-l5r*jQ: MExEcz{|Yd!s1A}kۉU9QTpis r b/!]=*Qxc*g$ `$R3\~6uAIA@9\g] ݳE44kK">+Y{ hgV=<+>9z˃P3\%=ӤrI#+:eVj[ؐA<%Sص,v,L,Ɠ&!㯋⯙~ff+N7,H/'#;f gP"Wyb"FT LTMҷ׃\5דAWЀ 9k}=n.5B> r =ʌuIc{D)ڂ `9 GLwMw1`uZ Rt bc-~jQjVե#*m3_:0WlXβt2Rf7O8@4~ns==Hz{58p(7RnN @ ̈V EԖ"͋cW +t4%t~Mf0:A @/g|:&L*ƥNo xFZM߶N6L\;dI&B^:)`÷>0 {yi!pp|$Y%r70+nË8&S7,ɋ69[+}=Ƒ]w1>,X*8(2i1c[ DQVY\4 D:|V{ B+?9OΥb/(>>]oq> &ϋ`!#}'+VsNRh:ݧk(!DXUbkM"40Bx_ oC. 7$jX;RYxiX9șgȒMOn+Ag̍u( ~ E*@%ҵqMWcĄ(HqدKYa+.d`zSIJ !*!g]/ʢDa kBOэlK]>J;8!ƒ5a :h/ibА`UZ㌚om%mf B4ٺZw"iB$륶j&uJu~y]  y܇UZy\hᆵ+GWh|8G6QYhEX~|UjB}Jƚ5*rcO:4KC#%)?T?~IQ244+s i}=2=jrmrihBG̏lX34O wEW̌Xӯ9wY 1+p\ۗ9p"2쯗'"p/F>0Ko-XrKmJ,tW5uJX-rILMŢ'AqX9SΈ#Z')xx!$}kM /!䀙*xH' ǧ3P\8AywI̵l)NwQ"U ѿ[0=rC-a&m:'?A5G:)vCDVv87 l܎ kQO5ՂHs=Tf`Kx5oP Dj]B}1p=xUq"e YBVf:AbbnʞjsqwQ;,,nA`mTZ8Z~dx~ZȶԵkXSkc#o'5ueN|!TRHG"ZXf+24 W'j R|ue '6ThQxFx@.o3*oMK@_ N';,zk|7z~'٣IQU{dz mhoEt`L\62)jvżk$,ن2MY}z_uI8ʚH}ܜJ\~F{K7I~]s֠Elj0YǠǹl[}y0IXA,'pMoa'=x??+ИJb6$G?Zaw Kp ~*]Yl8?4CnRp(|*ϕ1AE}ß9)_ҠOI\sX0;{례j} Ծ:3Q>?r鴙%z)OeECbjYWgC֜[B tw ԒuT R?43 OL@(Hm;I1TUG$Ŧ$BP+J7wu㯸JBK8͚\8c^t">_ov ]l:u5Bn m+#-wr<&F-HϷlHxԁz;R`nzlUբa.%CrFk5uJ5dsDBHrʟW(>ʛŌa,?xpUҷM+}7LՑ| z㓃vEhdtg+OvҰR/!=oegd'`~bp!QJu.=ŷܣ:j uBk7_V^zZxJLOD{ ݿ)nڸ hEǔ'hBmL3.ixbz?b9$C #2P~mk-&,M@)n:"1)OcK-| = /XQO6sy͚He^=\si6@6<:`xy/Й?~ ;jQ V&Uh}h 3 y.`xP)׿wgIk9r5΋$-gmSؤRHUb~8MͲ0$kdvodv2\J X}^]vUU#?M th "J[dtå 1g :פVblZ+"$=cNmE,gK #zϧw.c[MЅ;صO9Q $BOX! SuR@/'y&27d:.p `!g! *pӬ}m?FBˋ!J Y?s lBy;m+9´) '1 [)aCo?sw}#: ~A`ذ!ÆóܿB0OζWDecpكlb5ԾcZbh BT]; ns<5 Y '!y]{ S8e2\CB+t%Ëg}G:ld/  5d^wcеyUAQ|'8EFzfL$O3H0 Գg̱R2& ~])Iy]_쫾|p:_ PZt;щxqZIL^|D͉L.U9oO!ɒ8#i 70 ;+RRQ¾ǘ6V@,r)rfޤ<=pwJcm7-8*UvxɕyPCyw2E {JLq\I, 1q"1ye  k03M_JdR2Tw^az?pӸp11:1#Y_Ndko9c(=ap(Ίm\Xp"~ Z hȦlH5(qLq3V.qBHUcsE S41[?O Am=f:x8#ғ_#ޢTbVR02AmyTvy~q.W\w5Eh+3=J!=rԾIA\Li g満WX?1bHD;Kk`'kRuFUх\`]"mHR%!.G"'Bb)wd17W[;!o".kB 7L<:f_QD֝BEQ1I5ziDhw|ɠ@~nY7=XGhӾn_3<Y9kfC2&cxVm$z.@}#0÷ ;8nAQGpq8OChrx unR{lgC|!ŨU ^ol"ߣDQW6Sk71o0x!.vZ.~Y`xp?BÖ͡V٦KV]l4}>8Xoe@[ =j%ugXf=.<|vMvjG0{W}h9|I&!j I :Rf;Z:D?R@zitȖ9cgߌ^¼K:"zvVTHN 1p<H4R`d&[ qlkze GbjW+S&`P8%\!ihc7u򆋅?zJ0ok0i0+!'؏,"#}k\Gp> \[J@> L:C>lIi͑]RJ7?FHY MDY{.ˡd&Mr1Ֆ5Y\uE7W~Z^T1/ P{)){FJ4$b_ ]3RÌkk\'f>qϳI{ i\8LKQމv_Pw*E  o_AS_{BJSU77/Dܬ3_G&=)VRBB:DA2qTG0OuC(OS v]pi2'KE@0\+tB2>> ,Bm̱.)%G@xYck4:Ɂg. F6frTȜG=Huvo~Bټ(u"rB=AK%hSA/4~ej!1f /֒0̒[1&ZZ">ynj$e[e^sh*5HzCb$=a MiHjaCx6IŽ[Յp(j8!bRiA]93)ty1C8jj)Ê3ʵ^x6ru;!>5S,N1%֕g&Z>z,X*yI dwo:VX 2%!aҐ7_)9X0an;=O6 ZڥpH}m|\҇tRZZ-|2EƒOl"f5I=Vk^Dd9asiP;Eaj3Ә4l`mf,U ?ʐl9+ޕ"jo80被!NR) ɆRJiH*,nTIȕwQviyw=+|o\2/^Cf,U"BG`3z{,íUY}1+-,Z'[ohS-yd5}v0 .0bp32 Wj|97 5gHt4Ŏ"UE͋/N*CZA4˖͊T=c |C1Om1kWA?RoӣfK7535_lK%- ڞ-Ld/y3ת ̜笭Kso7F Qe.b_0nRzPfӈ5UBp??K8؋NKt|~eR8 5r;h&_U yZȶb 5qq~ZwF^cZ\ڔ 5 xY̺rz+T^K,%xCufu<= @#w16?3YzchxKפK}e{47Dvh{-d8]G9 {eMLrVjΝƟ]6"|%]SʽrTБurﯛxNXNLne-2u‡Rk*Z)A˟t&蚼~5E4(.ou$iȒs!}&4Q[l`اe)]ϲa.3(A쁘DIz[X\Ӫb|3ؓO; `Ч=r|H2ᐣZupΨ @}8 2כ\:RNA*f\Z4[}[azxKfeM%*8W4{z}w<`Ż!ܪӚy'&\H4Fg?4f(loRYk(S5H^BDߪ i̿O 9@ӯEiaMSU6\+s:= P nFW0vAv4{=i̵y m0I~0E`a!Yl,2c:;]Z\,hԭuƏnQhtݗ;{B5>]<}z#cJ& Ǜ,s4අE~j-zCD{Pu,v_ }LrXuB*]Uv͖'$-ăl)Nڣ!/rov5DgeY'Zőݗ ^2owͯtV'ЁN'3U n+0: P촰4u1Fڨ3|Ip #}*B%Dz"E9>Юy 3MI=N_͎_5Q La}HM;r͠gXxo0Z_C!+ TM~ק`ؠaѲL*{C^x\ r ՚-{"/ԉw}@Ţ'H@[X"\ >^Z0' 2U;1I? he- G'5[6? o= BF*,_۝vGbT`7–MПCHTda>ӎ_Vjk k#ĭ?wLLguń-ߑjIgA8yKf'Ya*ecLa MۥEFH,@!<;uJ\v pb9T~٭! w\7l%{Ek]wv:ZIl2D ڕ<>Gԓ\. uB2S!?A9yggJv6`-妳enyZzt{kBov!΢7xԻWo2bFlx8V _n47[&nR$Nq_~ }e O -.ZsVST>64 X%*Rzj^RtuyIx.3D.,,;Jrf`49/LsOYyT )Mz=2nD}۽P I^}~…\$j*T>FȂ@t|j520XU^Dv_ܽX7 |X[+A6,&l/2$3Hjhz|Ko_ZQPTB<ۻL Y 'qS`}|<ҨO(`kj{;0W?+`g H"S]z(E$U| w*VA&)? {*Sr䶙}OؕjE;iRvhF᳅=]Kwh5[ !ѻ%${?as 땦q0iҼkiؾ³2pw mJJ"lxV΋8x<0>ŨY{ lAkܧ\iQ(nsoJL?75yL5OE2Sоۦt.\2G@Hږ~Gs$$5(G ҌeQf%eDQ)1! }AOot\X=|\ ^fW#8-\7$S,>4FX%w YcmUؔ 2oȶ5fvE@b[䃯iƕ2R\/o!%q1_2i ?,58џ}{F}7$Bljh[M]]T*;aNk+||PӏN P^ƒ;fqY<_h6[~@le"bU z&5g;'_*F jn#^Q(rLC=D.yL>aRCܛ<GM28!~+mi&vnz4@Uð_6}yFd&^SG7,?%o8,*ߋ6b0 %菾uL%݃V 5ϩ\EQ,:# "x&j"9uI+n#4{un;Fmkbʄ 8$E5Y]$ҖH17Ш}( 1-j2V=f^@|l,'H*iW}lwwI{$o/$H*AWwN=* F.o(xzȩP-9; ЬˀHT/F| \֫GBYIeO|QeJ+J{ދv kZqm/E6 nw+Yp0=F~a, vK.:T,p%8]ױc}e~s;N%Rí,TxfL(.b18ݧI5'e˩Y9O !9|"fmtEQG+ #PωF6_h݄;ݡSt/T〉^YJ.1Z5y#;d@HhQ$/BZpW[m>[[" iG.i! :ԡ+9nhw0DW\*`gGz9),@[ïڷ_u3WԼ-v*u81ׁ#Z_wJ?0ʣw`@gp0 ތTKCq.TapETҝ2f͇w6p{7wť`S9cgnִ1v8y]w9\;wL$kwC؉,пEG sgf# |ڏʉ\A la`-tUt/r@erBޙkzy*5,m!p-fiELxuv]V2'h.WBսwZYG|¼i+ןFg&'嘽<(aG1_Oy.ʛFwH~އɖAjGP6Ø'r &%E]zI ̄Ĭaݛ&\d\QXm_LKdcm!b3dêkx*\;2|ץ 2w!o̶j1¿> A,ulv_шMm}&5ۼ,bWRR@Ǒsn<̟kN:j'朅}]VC'yqB3:Dx东D5z„VQ4M.Bߌ栝>? )|5I^&SYuY(F1v~f5Qz-쟔6ofrfKԀ *FYfr;0x_]9uDop۷AFNI+u8Kn X `502%(resŬ]cA"C膺Ў)aou`a9j]̖ZPǐ#Y#kwdsC-~41a̬Lp:RBlBG^eJp, 2=%m {tH (O@ۦ=`03Sݔݦ*vV= ֖[+a@bif0*QJS.GgvM{$mUt7(C0/bp-}d9q| r|G`c$#RF.: }oANzJb7ObGM˥+"zâj::L3e#aKhGWhuQE6jK}o G{zRH4TZ`#W<݁5׾_:j|Շ 1}e+h*)[M2>#U z1_'^5 F| Yc64SU#RJS*!M$$)ƪL=`%N;a,פּjHM070}#El mJ/Sxcа9w";,9Yላ_ۄ'- D=-= pmI݈y ;Fo fiQT/p"b6NV00Ugs|[kt7_tټCXmė}L

 U7zvA9{yMn?*xo 3YY녡ZI K +\eW@vٙZ1dREͬ qZTϐ+m2ΚcS/}%]w;]F.+{(af\/^J 6vfaQ;8bDUs_qɴkaz0ѨNĨjz9>KgYМ*$- U=3btS/rDvߵC8+lϗJy5ClGp9tʎz;Y< x Tu?j ;m jJZ-ᰉ[i3*3Q0:GUPwAw%$9i8ȕjf|d=)\e'RD,qh{z ݋O>fZeswPrYtmI":MGOF[شbIc֣_yiL)D֟~K투_/3;ۥ7=i zQYz2WmNnrI>;zPٸ̥ܢRlu@<ĭO?0*ϤWKt4)-79`ݡn?˳ [_bT"Oqrl!IhFWČT xRzDD-%K# bbczK"{֖u}ln5-)2ڶ% J[q.?2]<倸AMPZǖV@g 7Ų̚" 0Be`=Y:L@JJ^яqcʦ#j -v[#2f?mR5% :WdA^d%f0(6炭JTb^$X q ~: jSdqdܧʲd3ө  r8Qvsxs+oi g)/?x + e|ߥ6ЖMw^*rZBoQ;H5?| t8S1V>TW!QN.ǹFC 2mz@I3qƎ-[P/mR<~ȵ7P|cg!苲P΀VB?]~)3s@V{J/R o<E]x[1pC+mϠ2;6+o s!r7E gH.=.so=Fa mMCcݻ@<uӔp;tZm뗐Ï+]<(#מ@\R[-߸T^eeF {[pZtgkt]V n "(u8z͒;gQk0띻1 .Isq.*5\ , {8$w7ϟ@ou*i`.U(A;/QRqytޙ*?k¤"Sؼvh{{3yb@_kSyJ$A} 1DPLi# Kq7Bobw?WSK؈aqdVrN߰&Kvpi̿8Iþf^bi^Z(al=U3Uu1z{ڰaecN/|ly]hm;m| 1N!rUD˞:YRH2x/isi:r:%\ڳ-$"!x{/ snn' 1qQӄ Q2 䚤 7C CK<4,Ⱦyn9A]OaJvfR g:Xmx'(#ivk@kH ܄A =h5t!P|6Qu}4vCe ;(%\yňe 5!7G|g˴Mi䬨Rkm7DD] *->"+T[aXۮ߻jSTM3{wucIb0̂hDF+P[KOA0藙.8⧏,xABkSҼ $bQNzezgXR!eYYI7GҲwFփ06o + ix[:^W-qu$D; I`R%WL3^NJ 9n ,7g{l/"܁d{糽 ֊}zP{!5.T*.ؾdL;F! 6lXV9jB(*U#L&/F1. {'t0Xl쟅P(kwc!=$Ő[{=cxP{fڢkqt`|z6v!mt5X-3׸"HF97Pf*}{7dz~^CC {Dg7g J>Hlы5ۈB󂴏ɼ'ЙgC)La-{wwӱE!N~nǐ_qX_;8t5ZX :3n8eʄ- B:z$KE3ÄUKS(ҙm0v0a+1t${MUܓr1wtѬ!kts*vqpzg-űF)!4ײ n7C⎧ @tFanuwŘfqY"#\#c_}JhRs/+D(Q_xCjtK1[ O Y⤅'HH8)?}s઱yS`\qL{) E􅟰If[*X.<[Z#n9y?a1^vxA 4e*hD$/\ n;ӹ$O9j]QРw0PZ>g ).1i`!m~eQ(ٲ+q_1Qp-d$fY97ɑ@)>SH_%98N|z>'*)ЭǃXZ- M髏rn֏, {B[@_CR?A>=i27, `٬9[ckώoldU\}JǓ'M/${A=谀 d;}'dh!j~nnsk I;vʂMZ_yp(m!%fف{_ͦg0hݎRk#ÞDTy-ig@i~6`r%9EoaxQ{ZjB`$+>'tнT.r ʃipOi0(T* krw`L#+">nӛEs'F, >dv_u˥XQ.@P $w,lg8KW 7_jNʢwm)̫'ityCޢk;BE[:{;bJ(n4;$m?%N,<_gJ"c 2UA)L%J '* Cm*d^ @cbn;?ʹ;[i )]&]S MҰ@ȾKG'l[[;aE\<.Ϯu$;(mFpĕHo#dÜD>nkf[tޕ3]뵛\zzBEpicGh~t(}L$ƒ:X$1KD`z*t0Zbfۣܺ&'Dƈ/1Kާ>VWcTE3|ApQ+le%!gU ֋FcpI4[Yr%0. bvBF--+UFP֮ n5BU)*P3y3;zE} ?&enإfo;dkoz}ARjغN~7C^oR7V xDbFѢk2^&R]E=1n`~tT="S."WbO4c N=I7?_&W,*RUwfyc:7h \ώyni'"T2:'}CPVL䀄¯*c$E#'b.~4S@o"i:kP7SW)Вi',3 ( >p`JŏyrZq8<}JT1v0+Coh.<;1}9_jU=Ga) 1|:hy z|G4bes4&Gّ j~.3P>JxR՗A:TGd7(Qd\'ӓ@Ca1WY 1e"T08V٣AqWCdWu}2WAT`T/b賓1+v0*Kw45$޽=#,vPq3tV!3,D, @J)Z#*8(bIOC "^B|kq×rXrP]Fux,TN2PĽ/\$8,AZJu1nW5 [.nkqqO̥;:Qe/iftӱss4@椺J|ƿjA&@(zy,:*5?[ƫ[D=O0SʢԟCS`n[e?E_,c v؉ԇŪ% ; qZHc#H}zSwNeZu!7{ (Ƨë0;O nj$>ؚDpAؐxDFUx_ [OMѐ,F=+Oϵ fapN[])O8~2F"lo< it:c]!fTI#ُnlSĜt6>МRl?z`3̎Ǩ?/.>ͼhƼ?=3I*Œ@4z^(@y-vJppRaU*-$jA)iN/ Km,:1ʡ?m )h}fWMʎZ*KwvE"'˄.?q"qS x]:G͠Ӝƒ0+A`{y;.ޙMZSbW>*%ITRt Į@w^6srsR#"11mxi؉R*$wrb k.1? *Hdvk[%؅|Z у"V[R"g!kn>S2 fUSeokݖc5? G VYIi-<*{Lr#,]58CvQ 5Ȣ+ wA&,ߗ% >/ǩ bS<:W'Zp ;!r`Yn5 "*$r#׸*+؟P,|XR9X;d~ŏZ=2NeDLN{y tjh+s3v ݰ%BxG CU4@w1ϽSa],/va (fzR9yiM F6瞢%Xk`@֧¿g/S=Jds|e4 j1%w c,e%{$77Do {b]ǿA"~vjegun\J.Z1o}9)x5EB/шjZ{牞ah)M`c@'Vf?Nf[O3=rM1nYpߦMJt*!Y A`[T MfqaLOF?|lA2[EpHJ6r{J &WNY뺊Lm@}|"(OQYSع@Svں2~CC~PF#WIpQGfr7J>߹*Զs8;67lGbo~ Dm \n.kz"e˰lCQ,5TxPv|E i E1$ɘAL@D0*\`<: 4r \gj\pkǒ3CثQdnfL$}\Nz< ^ug` AXu$̆4q uֻf'XL/eЋ{LydlfA,n.p qm.#y  * 3GI?bGbo .(\&FQln{ap_h0A sx_wh\.5ȝ*2]3pK Ѧ X9M;DV1j;MCTgXM(ϒ|yÚлVЉ$krQ-jw(z5%~W)8@xnIV˫=y*xl|~x^` q׊ @v%-/U`9?w!0E}wKs<#&cu!>̐2|p}vX6ʣ y  s c׷hBv # r2 Foʼn1j#Q3繦[ hs #x)|Q0T&a& ={(v"S;@E@@YB]*3BۤM.E`;_UL}*G&.H.TwijXLCb|`2: 2%GXg'c"s(!GdTTvlxWyνAE&P&UcL{Uz`$0}V;=c=1MչHw{ Y|w59D Bx ;n }^W,a4VDh}ʮ}\r,TgCV0a,jFS;~ 5XCբ׃">^&RV(Ǫє/xx]lHllo qD{M^J:U"sܤv0sx{Z(qKhW:M]K`@woA9J?+0<-typo,A# t򴊕%x-9Q(Кx5 nͮ$kZUD-=s 輖SeV3q}V_E1㓣pW bG 4?3'W*Yud|!\ -bO{(׀?}8b5A'%3Ax3* D?{ !wzZ==c_݃wt.MyZdO%1S⹄ }UMgʥSʳ0J8Q\}5,0B23*=4& Ő0 `:7+Ȍ2&kn0oTLKןǙw|e:X{ݙ,(m,aa) $saCC xǬ|#;z#0iDx|=&~Y{2ϗ J3I:R s2v`„+ug&2X:L:idI}=|Vi=hi fZ6L,H17#>mj6f@j?TUX+Z:XS@yőXkMr]G໔;9]䷙UvS`?Y_boVm= `:0@]?5`CӷQ#>E̾]t֦4dxcf*vMOshs/c(y7n[O|Jl y;,88sـ,ӡvO2Q&80cjo 0=_bqˉULgZ sF젘zbi]peCy#*\f䎅a<:o;|1]o]K'B?F*'zd iY dH崥ՠ/l\x(WW9'=V"5!g҅](5^LēǿUyMc\G L#y hߤ 5_᧾6%8((x`J/b _̘q?ުMGG ޓ65^<"`k4(_R: ~x)f'5*2I X2'Ox0_}͆rSS"h:w53ЌrF׷W_]r}r2Ql)T-r2bGNUa-"ѴȲ?G@2ǠxGۗ*\z#b+ȝ:"Q!z'$[pU=,>Ri<3#d3嵕7&.fCP5p5sFجg%nuV`mh\[O!~Ke|zC?tx:XJ_ w VB_:Tv+*bQG`+Դ6-SRNPNj5.k$F sG˺|CtBL#ȯ­z/Ӵ7*ռ߉c`KPv+=&3ۅfk0{Zcc$Y9W. UݶgB'%Cv]>"i 2Qrþ80 8}L֫5XasO&쮀V]n&+BK{ H%XL5rAam]0–t'K^ 1~P̥Ƹ6YFmtRY HgF'ճCӠ  [6A2SLT%?N_jK8mcϦ/~ O-kFܖc{Y`˛_QjV I֍bVhKo.Jg @'YW Ty7Bs{W)ƐƬq&B:eQkRx3D^ƥSuLZ|ڵ=i8/D0p †ʢx3Hc_Oq)`8ML4e-PO[+K`Mt6FIUj@m%Zu']|ݑMt Gq2T@nQotF86i_@7qOujzUqEE7+f&#a jbT]BA!aMԥfEz3(`ߴ ف+d8^D|NPHA_oi}C:-R&nf,:GqD/Z&\A?>!" _7< *)jE'Ln@SX; ۲z#GZjyqĕtZhY6".ܖmqa/|4%\mNo܃֓vQDjc* L9A 3*`5ƺ3A.w`FgE/¿ 㼳%d,%;yFwt!;|ewEK;$o/يԤ!$`O>ըΉTegL"&Ъ6I؎(Za K[OO!u*V4)>pιf&{'Fwz8/nmQ9[`$y^\prVYCKLO$ E<~^gU̪x!w?1Vݢ)L0t,WG0toAqCVP#[*zyS6Vy :@P7$˨S8[a97Ts+y!]v-da<Bj^ l41޻by ):*C!Zg$]$dLH ;,S[oUt m٣^Xu;$-Yl$ƪ R3mUiRvə,|v73r}VS=1GbhEڌPѹPINA5T-EO>Of"q hx׍-AK߾/.Aa|X?Nk&,,ܡ! C%|UDq^@1wD\' vi.4"_[w˩1HtqCu dzLY"=u!!_%q[q4}58Ңt41fv .XPrK0:꿦׀ AI&:0=,^ibQY% Mo5g{uShjJ#N]/-!^9֐xQtw,L%k)f{`w|%2>AKG M_wxa{e}z1_q?i:˔ڐ)9Ƣԗ햻<ol|;;?@V> qD²eYZA-%]Np2P +Ϣ4Tp\t8mIUdEiL;ݢ_:>Iz2;3HOPiߨU ϪoIMB/gk^,$\>dŅqDY&wW9(#gRT8AaZ,Z!f$ F<h`=շߖ*>đ*p {\-7a v JOI,SR(K.(MC8CtJqy n8dd h*B#+}=zt`}˃Q~3ʡ sYa3[~8Szy -aHR}gԩqyZW(=H.C d06e;9!h/k{8$-=>Îpjt9E.L8쯈r\"Q|?ӗqXͽZ- D"yR^|n}g+]A;MvlbzV?# ,$[0-xCKބO/HnBnt=ߚ}㠳9u.~[땍lbLzg,C̣k@uV&'SLq\,( _:s'2ܩ X!ۛ ߊ1~@rvV#>(%rF'O|껀!um2"Nܯe)/^&xB~XћSByYc{#qoX(qTQ!l_x HE?Z !\/BRdG~܊?]Gg:^FYN*NɖU<6,q‰WRP֖;4] NVP_$-cm^tl|u}((a"5[Rp-]})?2a˛R?"Oؑ ,Fg'H+Ȍl=YT /%pgHHb6}V18]q Dk=ۨtD}! W= uouC}_cPLϑvWM#A!$M|"|% .cЖ|Rr x,_AԜoWRylr1&f2bɡ@)3ĿrflK-s 6X$YZ lr/vBr[*6fYCba"˾㧤vtyuYge'srIb zl>{*vݔ"\I<Sn22+e6r@cv43-ꏾҿ8H~˷e58TWQiV>"% ~>'n{쮁$W6X;Aa-淟9'0<))o3z'F?p /xg"T;ئm-dh#]F$==vBK,S`v[6: }ʜ}ҔyMeU|6j%v;]E񍯴a~5KS<{]"mo:6Pf0PzQG0snX_m D)Zx3nA),pLI."W>Zkf[b%Xa 4} (MD0HTBE%ThKΰ [N3T 6Qv]`n u?Vt<͉Eas" Qx, U#8xCOT2]A[T G{j O?ˤ"J zge#$.C; ))ӂ|1-w+vPE]$K1!hTE~:콰kώ]OUZR֫{ Yl tM/y8%T*D_:LM eemMvȈzI!sV|TЖ,-.qQCgDHà ?ٮd@\0prM;v7m`$ AсJlUF5Zqor!*PVTyptZ# _8ob@9:r6]{?COtCo%xpq("-h%c_ea&ƕ w|}n#44^<94RPmqo 9UpS#nsɌ}i|XJENv}]ȏ|nG[V_Fo#C? uA F-)1wL(6. Sz1l31UyG4)a>6Wfj#rO9(t-55O5xᑿSQ.=o{ "?4Dq"dwe,oxbq Ⱥkj1 2Ce08=*##f7# šڠzor~'7cvV5 :;FhR_(jcݰoeqDl ;ڼjk )5 gL< e,s9-@Xq{[E0fP+RvH H$Zt5;8>~{n:~ܳ!8|mBPrǴ"bEu/YdPQT\C;.?O:~C\:gO=)v2%SbR._%` Befxj>m8]{ D>(6l0Wib T3B~$L#J+BdHk4#dD* xQ!G׳趞Qu89Ϭpu$= ^QN%hR׉@/9ɠU/܈ Z1 wfG1K3:N_mkv0_\T}Pirl#9 9Q'4IYaS@"@#b iI3jo:qJE;_7B۞c ɳ !!nu(3׉U`d7"ȑ3q(n:.uر/”~*J_C ܵƭSW)l&4 qOQB`XR6;Prqeub9үy;U,R[0`[ϫL-Qa[9ݎ?d}ȺT;FbOP4P>cYWn6eFs^9"1 Y Ne} 0!iA2 ZAUQG`ժew`O'6i;cfp"d2Z "'X'\akO!aj79p7m6UZtQq q/FV@f¾kl+OPDJa"ƨJLSQё3g L=3M.8Y0,Zus>zL>&;@,C N%CU$Ŵ6bψs h^8$ KJbƠAqȊ]œ=C&`\T pTPD Aet.v0#P"/~sJ_΁(%FGU0\3LDea$Ql3;[vF_ p[x"[[lwb/$t4b,TVL_xdvۍfPZEmqv-Eø Dzovx 2n)%xp=GBsIɵYd^RsM.Hn QguJvx:vh 4HV!TُAR,Ap`ॱA &@!sJE+D;-#Sysp(A妴lATMX~Ei֥b'ĞIF I?Џ7U;~n>$7tH-mq" SJD:(o $'֫39d EEO8LVӃ>+Jm؈3 9j6+ @ MpGY ޅ^ ݲȡ"ݐ7- Y!w &Qή}v-[-+lg{>i(xgbds&OoM7PܘnIO"@K !CXB6 +,6Jl3~8'Z d/:LXB/rkX.U(yGBy<}$J?^j:v֙ %' iQ)P 5@ >3P+ϐ.<1 Os>P&G+ 9BGa_b#:% Kӄηq㞏%($]g542 R3C+Úzf!S4:}@8N87ޝt$ Jp%%,z_+,`vq߇JB`| +DgtQZ{#0r.k4]NZB{HAs8)/33$:k #yΧqq}q ?ۥIRbJEZ;mOt(Qv1CI.}oEQTɥ۠741pGi?Dv3j$a3[.FYuxN15IĈ N jؒiɌ:Gr=ȣ$x<7Fp/$_k@ͣ-AfyrY5̠hWU UZţwΦ ,/.jRY[ c{cxӽ<ᦱ~՘#+Qh t.h<ᱷL:iYA27 i!la-BqxF;E'3P!=&ޙ꧘utϖ.KASJZh[dtO,KCe'ܼ7' ЭJw_&u_;:F:Ld>g>vmٵ,$(ԯe䨋0Tw!T'W,1څ7jB5#)1M.VgtF?ܰS[ka2I.]"5{ }i,b՝f %2){߰ .d',:{gzکMV|Kݻ>A*(7Vz_{nRO\o\5KҞETڪV1mhA97/z8P -yGXh40>2Ŝ3vqhK[Kf;E ti @!= Op?B,wZ .lNb&p({dKr|91Sl$l:ܗVqSPTfSr(XT8<:7RoY$t&׻b4F ޏݳn\Uv4_Rk~'7}/QhGU|}^tlV(8T,W-WAyCjVEZ=e2>}whwx3_=;~zv͝yrvk{o; #QZyV#?mUonm K0]^'fYQ>2U9QZT5h1{- _uZj9n'!2iةo@bX*(>> VtQv uc2,DrCQ!}Al.O8/j`uf ҬAp.J|zb@TH1ߔzҁz0xڹ1v_sx]&Z9\e8v\:8 XԜ)7c.ڃ^qez5U1%@MW+ nnViw{7xiqwKBtԦvEVBɪ)Q1H 6x׹ =5navSj!װG.1|537C%R?oi/2k( Mlc}e@v}iH8,ڶ|Gi`x:*)ܹ2t#P,-9Ɇ;eaGt,4ۗOgS}O6N9YOv/Oͭӧ'Oگ^w7[/;흍Ƴ~򪽹~~~~tHfFUSS _u Of8 =:Mͮ6nokv9-EpXQ_+{}Dc..j#TzN\'ӵtd0l*LnKWVjUjurV:]"Z!6S7Q޹(@@cۮ?,h6q1RG1%xyd'3hCĉJpm{*a^_s**Ft cJA,JUrsvKaAtL~ BD>2oiXCi*|t9]bHؚЄA9o7qsVh,"/E16`ٰ/R/nK ݐ4'_fv)9lP@+.mANgB߈`ep@ CN$# Ra98țt>^p>GtmX}'NNΆzV_"\Bvh L bzG/'\PMg#zzkoNng/گl_jww^=|{{{" gptuvQ 8 ŋ-sXr,(t^E+*x>:S\5ӵsl,0A:^%Ay4vj5$}gJ' 4Am@Z$+Dtst;F<4HyQk{CsH\XÈ2V|0Q4'8m(5nU.4zz2winMGU2κYVXUv3bbeb?uYǾV܃zT*5p^ 4%{&O6B=|)V6gP7`Fw 쓸|ჰS處|fVɠ1hFo7^ވO7/n~jUw4ZXT`,MxGnZe fh`&ΐ(~{y{xҎvw=U؏(ʄW~ xZn{q9`t9z6&.(Qjxk} -_AG1::;ңkYy>bSOu,A3l3 s2$Kѝrm̴6$yתIx1)sؚ( )H2Oy`MotՊ` JO)p+-Jp) 9ݤ"8s5Ղ P"'ΚuvdM9XeX]}KʞbfJ>SN!<,ʹc{ CwJDUSTen|8ȭfC7$rW*m@飕8# L y.WGH-SWtYE׹Q3/s]Mt;>޳<BJ)rWx8m*$IZ\ACc.GqUo_$|֎u/6SHAJr9,4> ZS4c;+SsV@(V5ywC`a`2 )%1I"j3{4:2>,!DGs9Fm\%)ǀq4I? Juhe u%e㉘ܜmCœ9/A`Z*eZTu!96iӒѴőx^Ӽp|bĬXT~^Pʻ?ߔ[] `ЏRWW&6r/6n IRaTAÙqOЇ,=<չz!rZx?,Uԧ&|>[{Z (3\!&ǎKF'~3rӀ Pu_ ffNna2AC}WO{{(1r` +?"I=1¿܁m5+r0TgߝW9c79_pƖQA'1d v95vHtB(lns'<ͯۛNwx`χY׊9lf49]Az=权5i ~8Jʋ| uF09* `h XMFH vzU^N<ŏGדK?雠tmrʟ3E&)[n6$_%CtxJ>?Z=X+&T>?CH.z^ƥ,b iAsh+DbL=mbmؖpuH0&IEyO TT|l-) =Ě~nSgkVjRjwKv)2 |waSx[*BAyT'?І1 #f*Q )7 b\-ӍlOLaء:(=)_MF4FjJ}4Un}QGUfQ#_fʱ;.r1pCL-%y@_nԛМcPMP#qNȘYpj0\f| W9buZR 8-AܪyW[ћ Ȣ*Qo\*~@OaU6)eol9ؤ:*|o3Sq%63Vd50M}^R'U9k^ITR> J^v.[A. u9l{ SRcpPCp28aǻkl'iXhr( !50GTnx_zlX?ќ˺ fI;  .V+$%А&fQ'KfPv 5W)JuQK*z7XeeHEV<2ø ) \Q5zh7`wq:;o kQt.TD0Q߫D{a恎0&*4G:AndhZm@ѳ$u:f>VR5w"v!TI!,(Cbѧ`,[fA*%6 X=ji \&ƱnRp)1In?~]V~E~WvIþklí,gx)1  3r^qSp1.TY1so {]ԍ%]iS.\|uqÉ~ӀxmOxbyq;c>Bqu\;:M-]+q{\K. OA'>]sƫQQRJn`m oTOO!}M! fg^w@B `n=ϣ0 ,3U!ww^]{/O o;dVz 9lc+wȦ??h+b>-~C˛J<2ٰD0fDB 8uai^p ćWZ p ߋ(!]eI~D4[02 LE'3|:ƟCqGʑR|d YJi؆ܱ6*T֚Eѫd s"]`<(9-rEQeYTdt9.ZNmʩ{S]Ng]צּTMun8,)(#)i6-#n(OXPݏ&j½' R8 Q{~y̝2P nC ̭Hޖ(Fytjm<wA{Q"mLfE6f=;eq2:P ޠE s,LӉ:b+JDYSY,B&}e+U3tK!zغ i0 1ִiLo3>hUs薨fNqdyy&O6**'__Z'JL U qk7l5J,:Aʕ1 {,ZvEN b;Vy2`= k%$gcvbODPV9`5Nֺjtsx^}l>jRڥ\)K|ٶ%q:y:f2NŜ2>r{ɜV1/: '<`:*I|Z[ór`?]Sko:(LspF/-;u{86LSrމ*ر542a3` וs ta #$eu-=ÀB uɣ.0HT *utA)71u>%a#1 K5iP2 0F"?>Af鋾f#"A 0qgZ7 t?:zゅ:)_Ʃ&Cf Kmsj ";;s/dSf+cι!Qb ڐ6xEl פn$H )oYM -u.AzĤ Hح&0v֋%xfɸ te0uyAISCiBH"x\j6ɔQxºiWiWzx5viTQh VJdZ^-y竦'#% U|N*E7 ]a/3:"TipЭ5?sXi{n|jJ6(N&.&v]*lTwm0Ϯ`5GlCQzG 6q`4fpHP LQQVa[r 9]?AܕjdƅI'Ů;Dqz8^RnBNlXӝfL>g׎T鐝͸bY?CsWJƟ9]"83ڪr(= #N1H DNjIU\{5&N!]J&;Rm!m"eR*>ǚ$,ǧ?K؍`9%XZU+RU(4vp|_2'"ؿY_tK_ޛOTDo;*<֨4 -0ZR9rA Bd3ͯts@nen;qwe &7ңd,ۯGFŠMMȲ#0b BEO'BٻȦg((J*޻5Tx9]v\vH>Rp&- p>6;a3‡,RTDBv1h .^i]bO[uu-?$Qk_ ]^uF=Q  &6$8_ XEBBd]N\lI&sݧ="G1PJ~8$bYg(0t809 &O 4Vt{Tz7ӢӊM9u1k6B0iW&*Yfe8DSc~!:^}B&U"& ZWJD9!/\D#г}c\e?LGzbmZ^;$x寃U>S {[O\ށ^ϱ6Vy⺧c;EC+w/vm Sv\"^0XےB'J)w]8kdKI)HIzd_׋߈>g2]mJ}N]AAVE}n@>=EN]xaP XKkj7]Mr+ Ǥw2.*S%0VWm7w$)蛵rdCOl_x C@I븘;Fw< ]v "5'8@AGW:6f7 k3O]O4gWаUvT1Nb|2N5tm^>%.l^@u#:jG~º Wywp"7VC-8O I$ljN9Ѷu)}9Ha* Oנz`_ϭ %gᇨ^jQR8Zj?O '\w; ?J@TBP"ZL͟m0ÛSnH`%CBWQϟRO)7](1j7D{(-)90m gfln͡}ΧI;7$ߏP1xL'hE\9O/J;zPNRl.scWRn^_.hΝ_-}*% ; rG`T8n$HhEƗ5 8V s1)Yg: kBztCwtx|e ukM׶lec}TMBv&L΀o*O?0do˃8NɎu_ϤoqZ,c4ڨ}N: s{Kb ̦1@$ɝ_`-(zӶ)]i(O#'{y5c2)1 +dzBE<p8J_Z5)Uu7XkʅD.CR%q>(62W=5o ",bV\@`/_5;lfT#/hH<]]*=kc= PU!Cp*4K(Bu?9hWkP{V~{k 5=:|ygU]Gjn~cii]J5g36TdqL!xfAG|>~ w$;!-߷M8 UR*EUm|5|G0ߦFQeە'g*5|.}VyMJY:[z[nWПKR\<· 'C|9~ `k[1ںW/c,JtZ(Y/ ;hDmØϭlДgA 3: ]&oy躧Xu WWLQw@x:;74z>⺽_iLx?iKa\<*4U9q/\{=S:٣;8dnaʯYDJmV}:etW 4}nujgo%]:)t1)nBs?DV a7g`*} {>6 b r"^lM&ɸ.3 }8NE{N6 QA@օ;k"v0H*x]VQԹglskvkWTw?ݸh(\|6`E7~ Oܣe~T4wKtBblS  +WkQ*$6HzBL ?pl3 :_㫆=mZjkőSH^>׾X@gzZl49_9TCM5N)Nm`o ,n0d2DЬ$'Q ]%&V+(Z3dxY?]X  T+'8%K*8Nj]}: zቖ;gwz)Aթ;:}vjCedN+eM}~}p?P f7@I;&6&6~_BS3DKJ@ON1ALLdxzz,eaT_3 vi!Ll&xL$@&6lc]J?̦OqG{e]r6u^6lTa/*vSDdB4>O!*ܮz؄r);M23ν_1W;?l|-7!aS<0(iZ jfF!Lw^EVWQTݮ*2_Eu,{|`j(Q,>FFU87v||9ήŀ Z<];S .ڕ\u!ﴤIsFs>⑃e/AlAiTH륔DRKu%\o9at<pV)ǝmSC:gI9hoV*DAbbuXnW3ʯ A -p׬Y|4 ;6$tiīr[Dx#ڰ6.+z 74{o##.%Q>$}Tk"kLkRca iHKP@Sfy2A/ +Ra_Π%B>^Fb,oH퀽;NUfuϦ Cm$PbvoX@*,R --CGJP;sҋIM)E hV$Iԟm7C{ȻW98KgV}lu=RIE>[dwng`bP WoȊsk Ias˸$߸ĸ?|Жf&nyYUIoF p'1g<]>TM+<]S03]i[4d:cZu5_De)p0I&d;!N,o~^kL"I3D' lMϐ~J$M}K=>ިߚ>f-[ZempʁYw$+q5i+%4T×a9]C*:5DW0XZeDQUf [<@;GUD< P?94WqyD-R>r3Z==hv񠣸ѳ^sPRna vk22d)o;$ڵlPn: @W-؛n*^% ƿ%_HD5dH+< ~K4,fh6Vmy5+1q6]3*X8d= WL N'ٶwa˷ !KYz3.~rMmEСt řqNI1O!q킛nӬXp[U5|sL|99'}QG N7߰$W _X-½î:Af[dQ?\5 <>UD( +7=PVce_ .JR0>VO=fGv!?ڠ/9W^#y<%;8H5koh+_# By>qjJ1\dfdy"ȋ7r֮n`x&_ ʏ6+q hi07l,eR(JvN:Yu?sYq_WD̓<"!fѸ7Zw26cMVkJEdȔT]}]'Ȩ>Mg,FX+"hTHy-)4Z5ܲFBK}hNJL.dݧL 8V 7O7;V#&b{%P0oY cPGO7 %OE)_淒@ʸ"Q 8~Ϯ)4 >hڪ88އ=͠^1+!96SXAdB;wq=rE}h|T#1Q(ZؑB/E/uz6i3ZM% mBceZ7A? Vo_0tr OuR3xUT_t59HjjpE`Ze_`_TlOC#^_bO&y2g2c,TYuP" AK ў|ys9sߙʍ[B2ݕɉ,FE0e zz@s܄hΕӵ{t:-M^a| @cQ"{ Mٷ'o۶1>}5W 7y4S;Dfs3:Huxpx"Yl`!94A_5F J[R'hKRA0`]; MPzF5bUvɀ>aVI3 ue9ne܉`^YQsN\D+ $DH(4{3F`J]ţá7P`CBy ڕ S/rR;g٠LűN?jQp ACw*4ZRDIkqɛ\4ǽET3 Zт$[#ZWeyXj^1C 8%ˠ >[E*r}ڇ} Py~R_rC?} _i\n .q£`%10r!2/1/p,%T rj=Id4)zMqƪ,wǪYJ!iɰ0L7$ _SCxOZI+V.M2⾵2XXd! Mǝ;p7L@ҟu=/TF @nVbcY*vvڃc5y h?t_0i@-@IwA)H'W穴Dv8uے3wAzۇcDV{CJutf*E]lb1‹nPb^㹠PU_Ŵ@uVQ[UsE Q+,E&Gie߁^Ĕ6I|k| |_16?/QX2uoNg'@s|!b$w_ŻS7 +r5}{Yd??rDX(rCp1 Vl| 2j:k|o}JœAJ0gSEc"dl؅oRE!/ {;(gSosg,%{y׷V`Bo[WB^aD._j_n.\nٻ gSwΦ4F]}& ` p$]K"\utyNŁkf +&R =!_;g*+`SMM W9g|u[e@q]Ea^Gt7A(L?#1$TG6|*OR}HN69مǪķy~ p`~Ҳ15M\x3::; F :+ پWD@\fϣ?4)~F3ʳd` VM:!`IoW,ۇ9 ЎN@+]cgN?byT:C&Z6T)'r-b87Z ;*hWX0;g_gq]0ls0I`*Etv T*RF sIsFCQ4&i.%PbҌ!1X%&@a[a0S!D*b2bרa -}svK$ 3dz+".1S%0o+? I3zfB%^f|R_xX 퉣3ںSk6;*k)S^6q7n4*x/ۙQ5԰ehuQ*(ɪ FpP"M-^]fU$Bs?vPHi #.o:cΫ{ GhIź>V&⨟|lcN0Eyǣ %w>Az^F? aO^׀1 VҌo'V+ny9gu៼FvG?}x~tc_mo'WZ<1>нU" F!N†ܓg)eׁ MS 6$+it ñ|jcU&*4nqFokf_ZN;IBZwdgwh*OLP4tz8ӿOIjX> c2Q#kh@)4B"T %{ S FENb2q{eF fݑҋDK4^p霆8^5> 4գэK!tqU 7e^&Ғ΍?ԝ㩃B:х"l!*/.8dGyF+`8Rh#{'x|>B{ L'V:(X™TH)e)pdӛOy\DsO4 o\0 q6iPp|Sk^X <nj=IHHs |xDQHQ- fq >奘'$bͦMBme.ro͂<-)7 g/wpx=z`H ͑z!t) n#K"ہ~ֈx/T7ۅG Sx0M>( u%tDz4f:d6ca1ulE)p;Ax7LZ}FDxCj縰)ID!#FQ\ǚAvI.W ̞Yގ`Bf4VZq\d)2lvX]I)M>̊J;a ,bf7`Y_,:wDY~rjH(>s)_.)FAzP IX.H>[15 b>Oy .% 4?REz&c )5RQQ<  %ȟkjI⸐kYxMC%31lݸ@. Cܡ:GI]2K[Pf&lLvs5'nWIal՚xC.S>W-6MP%0X""#kjQzJ i^`9jG/ (*p :2 wtTՠ~/fRU\d>D3 [ tnqNYWKvl"n=*U^4'2&&NX *O\),<"fg.~CW:θ2noLpa9̓kh Wl5C a|4Q4G;C޽BN#($ׇh7xy0j;σrĊ?Pu瓅DXNyW'$LަMߠ]V+`Jlbγ nroxQqXvVU:$ ,Vvo ɯ1ZH"C (*a#HϤ8q`'rǜd4ś`2MGSk|LyE{HholaM-4~t6iTx7o$SBP;!J}^>ET7gb +Ԑ'NIUB0a]ua/}tom:QW}G3B}"`!@^J 3k\pP jw"_@yz<܍ާFT%j AQ`WqXPVx?*P1?GYj$2',:Yqakmx4Ekpc$xK!R_=T7[kKju#N D7VjW LXo"G0;xWH0ctmϡP{Rqg< zD#X Y3!\JV-L)¤A~@ac2r}JiU(m$%QdoջiyLR`fངH<5"=U3)5JK*bpA.ShSPgrY L.0oQ|g;2 29wzs( :QYZJ[ &)(\f.4jxuj&#}p"Ò^{{e> Ec1n,ⱀM @,6|-ALvQMR&A:3Ml}=jdJU=r{y% I9ybv#€B@xn*dCm$| ~ƅSJChnrN QR )G G!q7p!_FV|"kckۧkn"FW&)2hꄩ8J^[yLU9haTK]yD:Ü*p4BC޴km[7hc=:*i&bq9wu&bް;O?݊6[ucC2}1z'`6ZkkQ /n MAJ1f" vyJ4Tf=×{#PO`UZ)Ҿ+,_Y ( 8f93Ǟ JbߏbJʸG !8-L9iQ  l`|,9xfNO[O$C!V/XR",UjÕ9 @Cg ,MQo> *@q9*x`=@E k?{nG4iuQ/h6sv.Ң V >;2co0VBtC w7A~\Sð|U r,ۦϮE?wQhWc(q^,WD;M]_ 2W1! uUI'7+VGq7H(`g AzOW9WJFiuPx91;Gp Íɰ E{ >rvQ=BwćDMh,>Rץ4:< r< `) "” W fٵýP\_}Dӈ[KU:c596^<**fj锹CHEzð:QseO UI=5d`y!dN-bžSUFx S<)Jd Z/΢INp.-U`ŅxR=/m+jFo{Gkwrytt@jU}7 P@8t;\8 '1h\ȆڒL ,_I X:革]M?Z򮚔_LJ--)J\FKUBV4azGIVDI!"X;(W}pC]m6ü̦YE`.< ; D 1i?B)/{[>W'j&!CMϪ%4 -B(*GM}uЪ69k^AFRU.m:::pQrsp__dwٴ4V \dh˰'S9>eUwЖ˪wR6r#b,b!P)xu>@盅CLih݂'(afkDĤ};M2Wy5@P:Qf R9\@҆m3cf%Z2UZ=޴g_˙ǕX> F[S-_bn&2Lw=.Tr+zm9G3:'d⭇ Ns ZmSMUQvڴ3wU5X.Xt1.VH) b%/(K ׉$q,B ,)x1yo< UZ/(k=䍏2rq6J\C+,œ$ڊDw]%8%CrA7 ÀyJK65IN/qN9}ab7]AEloQP 3GpSrV\LLf"|.ͩ']Hg*p3&KGC6GɆ|K3aY:3̢ЙSd5@n@вf^JDbiF?GT`;(jEO):-_s|I,<r4Jzg ],,p!'X4N%ۍqD]r_Pz^m Ƿ |L>{v=Wj:qJjd<U;襂J;>@'ǩ$qly\8\l[^ _Ŏb5,f쏲B'q^'9.W\naJu\]ؘ\z3,,Hg^TXLjoWR.Z@?j#$*L;Y`䂔$77?WQĵyxא%iG!ὀN7Ì7lߺW*a ǹE$TDp9W(3;2lQ̈`_1m̀מUo'sp~Dgb{K`rs0 sTL䜅PQfw %ONג1dm9i`I1%Hz.9 .Ұ;&zH`P hV*84F `)ov#d})lts(x|}|y_vc@E%?2F6@m ;J)Ozi:gYAjoܕnEo}e37h$4G.;E&<(&9{PkwWgd[kiRheUĭ-Cϰ[u}Gɲ7MhpĦIzuEb;fWIL\C )Ddm)]狛tQܡ۟6aBUıvDM( Ŏ=F\֔.63[3۾Psک$V3zu~xw89;]{jX' n> - Grxlgn YrhYaMq>m{YIЛŇ"o /gҔ.hFJ,VM'ԹW]e·'rs_jR4՗^o@s`5kJXA (3\ҏ,[UDxiW+FMo&B={7ة"j|xՅ3m Up{S#uk0=%󸺟 f<5YH7pU9:p8x5'ҭ@"tݪw# If||;,C{S@8PgYs܌vã߾m+t<'LXUtI#թ_h =0gw4Ez~ɵȏC6] csp&82C4e?:!Xz.7j*$eQ#`AL(;@C˙H. Ѯɓ,evp݋?R΢6\E!rܾ?ksjbI e{P~/w?<پgw|/}0"Te7N{zNw+`_W滠Zh!CpL~.#@]Ү lb 7AJz6V̹ݷa0`hV \ Eb'K@ РFh^h'] Mmh) h:Z,€^)sm;.u/7V:ڑ\4KO 6*#r^/2Wpox2yӇ_xRITk~=mkK?}+ܵD<>2W 7< u`_^Ĵh^S^\pq!;=lHY\RHeX`ST\ѥZbSS ؔSlJ0`͟0SLHHɚ:F+\r,7zR*MAt2Pu7HG:qث$yyܼ(s/E*ؽ_d U.j/IjS(aA&@dc@ݑ$cV6Mijft],8XV铒_OVe<3R+@W6!D{+s(50Xp\m6$ g8Ċuwbêd><(ajeȇI29s[zܿ빳R9YQׁdoá 1H9Y^DN{ך3 nۻLս?uفpp_ۻ!w28֔2O^p4~0nN䴔R^)r&A蠟V;:yp H/T(֤[v}2{U(΁O/Fw/Ikfka6%;`bQlw(|t]z.4,8>9Pb5miY7k0֨)ǶqO6JǀjqXq4*amr$j+tϤEܠ`÷AK*! Xx~]DjӉzꈖ if 2>5Xr*vHĔQOav:FҔaa7Z m- ,2bJt;=]T 8 4Xp}sLQs;`/^̠hϸ1؁A]|VPP 7 V+:x~΄.U+| 'Q21.yA`h`T˧ 5w<qXkv1Y/V8iHC?]lfL C~@Lv!SSkyMvez:O Ɣs"OQ_σ, K] 悚cNU4x `/=3$_)fiG K+g};X#+ O"7i\K6){s#vlldǁ }}7[?p@ >j l1a&P≞n/̦6-v:$ݿp~IWL{äXBG ` X;4pr)OL{r dBy% RR"5~#%]`w@CJ5PI.#ucWg`  &h DzhϚ*ύjGq6HeNBУtY٩p#K3$!;aS0}+E"NB8^xONu^+1yy0MdFT<-"%jr8:] O WПH^)7*xy-D8ݠu +r+Q|5(E*/mT;O@&IĻD3X(& q;Iʈ`eaGqp#҉#r#A!EQQ\*$ҬNr~B}6>\Y0MPP .O-#81(\ij`3s9衉2k2؋sYbn}kVY}#cm᠄@L9z':* LLPURI.ݔ"Jc̩AfQ! }X\]a69I>X&˿&PM_S=JeӵVCVI7gފ﹁Z,Zڈ(8+m xo̎&ɈJ$9p&QoID@節QP[tマ hä|(דXC0Ӥ`Mi\tJWh yu +WA$= +\ߔy /걇?_B@Q! qeVO&tzCnj5 UKYܣJe.B]=EP$ȆxgD!m8E +Z.,JADLbRez"C=0-~1Rp8UEazIrEnUѭ/"=X}KL6LN=xג}?| fTF-M' 7P3?/P BYE%UĄL/M> \nь m ¤J$NϭrY2'ޮ[rrhJ?K,95ls)H:b=tLJe+_h #2;NguOy!:_:I ʰ޾K"Uv!cc`kab,S@` oN&*.~ѽmkkhh0$7t)$_Ma0z;o Jƚ23:B#SqsPA8bg RV!rao1#Tylwgjs`}#n`{\>ӝfɸ@.!*P(z% " 1 qM_0dH-  X_E'CkB]t2xVǮJޮ98bBE]d8ʅ9uVn|CR`xbCO;p]hxCHN.+QOBuѠp3=@~Vf5W #@sVojj/gㄦt-ڹ1pUv-l}Th\k?s}>ngkmշ?~W;{{t[_}?Wl/u|7𹽃+vkgj?o;t.G_MƏw;_}W d?;w&m}۩wuo>iYxyQzzQ>|9Z뿦_~ otoG/lU:'ۃa2}6ͷ8~;L[q~dg\/;^rڋq{j>}Ƶrwgwm?v/7$;''_y&|q; ~N~?Ny~o769J~}56O6aoh`_=5Sy7o /?EW) =hra_Ua^p ;S*|"iR8QRFc,wM&Qr ҆$vR+Zю#wu$hʥ#P-^~iPxP ȯdM?hC.1F?j4% vDbk#q>y1"$0XP!#r5xu_%sЁԄI #x4W܂שш~gfJ>9ru]WWo>o1TebW˯HW\|Ĵa$_t>iCrC>ݞa^ݤ* x'=$SQ{bH[r˜BwIA#oj}FU$qnE=q: [&$qJڲKi5UI*'%B~D]Imp1Ӗ{BZ׸6a9*]TܻKP^~/67pܺow DEqqE{Cyz$fQPc@߇g*tl=={9Yҙ ަIJaٵT## ȝRDL |BD4l6^ ,^7/˽NRjVup @-1Twabܸ CZ>UTy Gyft,ֿ?pSg9H\4XoR$7ﭯI)1a>tAV%/DYVe}~IFBt4 -B'0'SBvEqOa]'Ko7fZB=F3f),Vil<{*MN^V)$ԫ1u.l+LU JY#$W@\-SO&QWLg_]Z+iZE.{4Fo//Kb1>+[X%y7΄, d'U,rRz$GҳZ%O5^6SIǗr&}bzk醪7b {x!Tڸ!E5,! iܐn`{.HXRZPj Mƌ y5L1nӵ7V}K|$@~ZDtz,ѐ4lN\f9[!?+#F_cx3W"ɍ,fYLnml|] ڂɚM7E"{?}PF4d2~D|7P7*؝;83sT&rͲL7~y.E7l`v #z4\B>Ph;f`og (k}Ncfל}Jiv ^Bx9Agjx L4&0_|"_4zU 2QY E3w2!Ply&8f@sȤk0!cńq?áU`Ems{12Nj(>'n7ݽi\Lgxs6xjm]2>:,R'x媰yN6@ m<Ep mU 2__6fyvUיk渁>F8 fޟj)I@,Ij$uƳ3sqosʫBFUQ潙U#} &'Fp_PLXFbtTZˢ[>.}  FO):ğ6WтѣDܭU3o򔯧!-#:UE2oC\hGX nP5N׬s4D49M,}W=A}j#aHO3E*o@vA$,_ /'zf%s2z~2ho ڃd[͸mA=_7Ӎvk?뵟1Eu Ui@|9ky) 0b;Cv|7g~lE%븯(Tf3Xj478g ,Z&ڲpV6 f`IJkE 29H:fhgF%ztS6=&f|z]B':+ >BQUQȲz\KV{OSuvاa:N$yN޶gzuOׯڛ{]lr}<JgۯwϞw{'*;vlhmJ@VE%Tih-)lwYvGw `8awc 3oU-, &w8\aRC6jEs'd Z!FìGWhmvNv5V #"b8k0 . k9ZaB2]%P,*rҤ[6Dڢ'\/i>v^oI0Qgp.2yy6Kś_z_bJ uwmj0Hֲ AÀOtNx*iT&f5@.&z"-ؤ^cbV +%O99Xjy %:CbJ1A 4݂бcW eSN'=f<] QR v 4eyUVd t*0(yzs\0u&}CD2 2s惡[ϑegrYC7@X >:2k%5&,sgn* -\x H>łS!xW\cG'>bTOKdISv$QMmśPI p@81D)߸Low1XS*UN[0o[j,\,3SN3s 0bni 2$ku=ߌ쐀Ի;^B '^Z"ٸX(c^qRY~)5ƛVM]O|Εxp,Rpk8&KE+,9haKʥuYS.A SNv/Nȯ +A gXkneu*/e Z~KܲX%D54V&_pL8d XW&wl |[Cf`_ Q\ r9ĝtlЁ`jT*i2p q'NBԨA$ !b) &U3= A),eO,vz}ʤ50{⒩= «DEOaع+U_%+EyVάTURK9ϲW{\m6'dٿ>ZReK$<<'Du^dR鬽w:kb(d'h7Aq/-tW!Rvưua*T`t)R|Q/<K oתLDֲ#l3Sq CM3Ί^9⮲cnWT^W ̉}aJ: y CA ®*iHTRbSkvs !USQ.ML*y%HYLPJrf_ :ٻyr֋wfoᢒGCY:LAGUG.[JbRCH@M [=H3'5cCΦ Q[B+O4@Ũ 4F<5I1%pƉZyjqI !'T{B3F 9@jfht>E9$3=d_kgo7P"^=+J} IX*}BOybm֤G55djGVX%dP* :{]%3$3k8yh$F9'$E%/ a\RCviv@voͳQ@%OEx)l2 0@^,Ғj]̑#Y^JBqŘcCv(Q3\b,0F2vFU=򶌃&)ήHfKXsJg3=rҞ"r^q3Lp@u'5>Vs!P_v0[9 uA>y||PWC h{X:N@R9Tz1+}2*Z1KY n+{W_QRItlѲh]p~q[X_a\e K* Y~ydpïL P(׎=lI'wr3t u804BD_(+P0}\!yH'}yͦcА>zCO >y=#]x/.pOjg,i L۩\Z ^ڼӫb D; 419 {V%X0¥4/rW)fv [Oh'_Eg]ea S?h>Dx.>W*+[S<J8dsdDYa ' cQ V>9I*-bLjcn/@o=s]L+P~R(d-G:/M݋wȚJ-+9%\R-l8[cՌ0CTΔԒ;mvYogwF+Ty6.U}HKx Upy^س TIE &R6;W]j<;ӵ8'.PQh@M[*fc,C !uu-`:w -:BEzmtOL>1Q ddR_3v9IGtSY]+SA Cs40!/mToM?+0UK,iӍ~j.م"xI i9`%dv$5^~lbmnxXk"egD]%r16 9M dZ4 ]sѫ vX(^('fv \,ԐwM.}l${u3Jս?Ɇͥs'X:]eʮ[<AEe̲jE`XC&.y6xm[DBTcbH; *?d~1KMҁ""(`n8ѱRQ )JVa'l-Vzk :VE'󶰟1yFj(@wfl2-6kE W]S\yaF ]+.Îg:oXBCɝzoPa㐱6yP8`7FT/tXuzeQptg |>m*|$dN @X#;T1xj O4ڽh?O6Z-'{.;/tb̨֧6xq~ "5H1XDV@vlh)DK>scbDE%m1 xn:1A>ɦo퉡sȆ d'6P-r2KnGWt_^Kf) J%dLI) ׻x'l+}X6'gExl |2 ֎˫hS"Zڷ:ZNKPtbLZDoO Q($<*>;v ֧!tٳn:;bj!.x1RM5QY\vaur]pM2޸-V dXQ=4brFl-9w5s(0o|a^m,'4l z+nl~ݾrEf^*mh6g)Fhj_5W2*$PAhr$p+J|9q}ysG)z001 DYGHH[#)&${4`4 YG8xHk ]GVVVVdauL6=ނ F$g6 λ݃ѫwHx2AFi rO2Tk/b};˳m Wa%*Ԅyg.sp^zqu*8;nJc 뭮Zħ +b;qq4`ʗA˛#/ͬR{ę ފ,Wuߛe$ԦѠb'~0/ ҿ 4ThT$h5d${w'hW !9 _5_zoMyw啇ːEf#>|{w\BhQ@NMiVAW-_3o#]9"2NfR+l|O(Y]Tkl-naΕ2ʠFOEu-SFk|e9p/Q9@Xi/xꤞ7=Es.Ny+79ܧqqD/G*haZ.J$5ƲYcB0)66\ nUaG2:j-S%}T5C8QS}5[OD~(ΪjСm3bp UCAKs >DXL&hX$'כ;lLmI>Z^i8/@ S׻SasїA+? ۶":]`Ѐ.hBY9hZ[ŏbw6&bVJal=o(R7#T}૎C}n# ^zˆ/wE0/UQ }^|gKœti,-1~% ɋtAQPOkC罩'w³,q$1-G$h3zr1v=B(I=d]WvI'S8::|e]Y #WCL T]gկeOYůY@pX.]|}\wiޥ[Vn}TAP C^/}6am,aW;-X:ВE-/FØ't\JABFTܤCjh_LL+#e/9(Xm՞K/V/o񗀟À%~'U&NkUrK`eޏpj ,˚4U1,4̅?S7]^‡آD1& "{ {`J5,b4Rx--B(iaaV *,$+: R-ƋC_Zi &o[ Z!ZZucskq54hrg(5L6T(rڟ_)a~:=܍)#ĨG24m0 cewZ*=*@7,V3eۯsf\byh7XYC{(dg KV!wKn]O&_aϥ 8]3"ujR[Ć2%&\g~Xc2ދh_m1 (y, {aPbJǦU0C P57p1>b_115D2b! CF8^EO{'uem3?ڠ`p#4, H11n(T6Gΰr@?4]Ηf`` gC/.ɗԑ61A*[04c:uEfc,-_h%S( KHQQ{YƟaτUyMsԮY0l -y$?Eb[bTBik:,L(Eb)*pqs_" CbC-j3\}B Ǻs Yg HSx2nxąkye*e-D9(˲ _[sAg\(o1JEz!-`qPTNLpsgyLTx>E5XI}w[td*K[:a"|wK"] X{܄+,CH̄64FqRvjpib.f #6?97lO x3, @tg lY~{ѤxB!r&ώpv+S:^Ho=*~:]H6\V ς5zb*A9R u)p%--VPcQq#E:nz剅+󷚄S:}z 'D)Oɩe2r{px9>v޽?x 'kv^څ~w;{Lt3N^^w᳟_>$ [j6d{|}pf~4 9[܁L۟PU}ouH3%Gt%E'܈= >gqӓeםȶsp\foѧa_g_Z~ ER ~|e^˳&xyxC(oCyvk㣷o_(me,[et8lIQ 9öYo?KqL(!P#\:$IuA,ya fm`G+Y% 5 ?[QmQDRO./ԗ RFM dlBr)`C'O~&|J)-Ѥ 2 XO4*Z"F0 V/5UÂ%G9MVd8Tw!x;. !yt0DОN}kӠj>x4dlb*6q썔89ēEn(ܖ\<|=6~A̿v(R3UzRmGV?6};KgO&?D3*OԜO?l/>"=x)KtOQr%IҠv!@{6*]=8ԁ_]sY:$C2Z4sh!=dx}zƜΙ?.3RӤ+  꾥$0& R%sA߉3/ö`S2[iUVׇ-DUަըX^g lCF7KB" phr)RV 6tVD1b%E43Yo4j&}3WݢF"_ͦ][L./,X~(׽aQG`z \* ,uO*px5 #Ww*XHŀ8@9HIFƔj蹩ژ7-g˸w]^9"\nFoZcKEۧ2d.uA/z?h5#>w'F)q/`m׳wG,B߈ }zSsVH*[ı?T F*R\B)ZJ˄Ὦ7y M[5Sqͨ~;ˬqXq6nXtzFtA(BnkdJ7R&FH9E|_PN1%8\P1.@qR{z \mjfrs1PtntKz mg1"+0h 7ñIeOnD/UB]u`@Ō$V\#ո" &b_o V@n>ޥbMG]XAP=;'g{/xiX\1'>n!' M 1ЂWy `e";l \U kRIfNxIk~3;{-3u^SH8Hf}w6gGlɠ+dR' ~eGRI\E+bb.Me1z9:^֜H)螱Q{jcta [X퉃FVV[W˱HIvI뀒ҽǘUGUuJuۣʺn=0$M\7l7%'k  ^"? kI"yWR> n1НA@Ѓ &iV XX@ [A:ሴKR:QŇq؏ܶi5lވ-aK߻u hڐ=׀ m t;za/n6yc>S#Ѵ'L`>D#3[Ϭ}EeBmLGU&Ps!"y5O*RɵdϏq˓}D7b!! ˌ1)?J5a;6ͳFq0}D_S|X"yBqQZD2p* Y_k'MW]$3P`2*u`1AƎUq Т$,TGFPqw8y;P-f9dE@baT/ +$(0Đe shbs F EA^YZw G<\OQn$Qރ؅>" GF<&Fdtlq,{'"CZ<;&E(fȞP]J=^*)l4a 6ßJ 7ܑExx힭JP Fo )QB+鋃{Fqqfz!RNcd 褃鍼*)GNBW*yKdE:\dd ~n"_i W;u]8Sjn{_)palQ}^ҷUۑ6~ZjyyE҆Fi^,Ax>٥ۇ|W7A}T:RR%g%eMNm iuΒ}cۛOdsWB:[],-H~iʳIC:auNFt+YV / QιdmW^O }_ou/G?ŻCYRQrFR 6<~YbLzòy˺7Őrfze/¸32p3̈IJ\]D;ȞnTp8K6Om0Y ?8H t4 !9Ir1 N4e`<S43bYKwr(e=r¹@'%Ie1UIbVAr=N<#r<A(q"F BEm.jԠx1-)vV [REZ_A"88>Ev5Rk4cϾJE pc.>C?ՔpJ=78Kny #c*+*VU[M u4I/Sd!ŊM9=\Cc\1&4w/,%8,Op;.9뤠N73 -e:7`}OY;u2$k^p"eut1B @ hS!5 J(1 fM}ߊݜ߷l$7߮q <}NV/};UwU@}ݼ "Oܰ(zʂ@[3eUd=JI 98?N#c򚛁"5OCu:kId˂R2nPt8 W!Lp=-#$v/*tSEz7:i~8Zx[7; +u],1;LYm٩%If߆A]רzyKPr=}C(VPdohO\~%G; |?nO\Qc)ђҧd٦8u\KK:m=L+ .WZQo&7“ `b$'ն0 킨%No"$o>$?[=xR0iZ*~`AmZ-B=2?PٞdE'F^Bڊ[I> .MRq /TH>v:(gz?#*Xh7c ( iک3P'RПTl:M8gXmpaُ)Dp@Ͳ$fѨo=DV#&w1tnY*UW!9pxXDa2R <5 ./ ð2Ζ$xPiDU^q?,!z`.Y 4ep]]iXEiD@(y4pNy L Q`9VFqЗ&{&9  d՝&bQFw.|\dv.rna*<(B.-@Z!"hR `%Qdka`I;E+#** %c鞑[yWeeI?eUVEdҲtXpw&tL }A)Nݎ7N6زyzl~s$ϐ4a\2P5yPO/6VpJQEoɛѧ,HGW8:>8=%.ɻj@=/޾#UZ&/7T-6X=ڻz0Nl%pA]]w0v3 rSFo{!Mp`7~h^5q^-VE}gtp=l|`{//j]s&jwL`K͐r4YQԲ̢+d#g!g!oe)!r0R|Y]j$Am;JS 'pb9gk3sN17eP*1 Z$=7ͺfV\` \|oPQ@t{xZ5wDԕމ'pv\K[ORBthߋ^*܅(r~ڴXՊS V\ܻݻ,E}A׋q44!=3b᳻5,嬽I?GS Ǝ]0`#](|oW1H6 *# RKy6)n4Qǎ>.\ &>jy%Qkʏ.[\qr&E*EM|Ftk>mWeh(UaJP5]9P 4@v82I.lqKbB{vϙ ԮS>7g|^ߞW`növ,ZϥB2 OQG}z+չtcfȒs|eҔ5I%y~"*C^quFPa=a`FHUs8E3#*A:"y皆3 P)(wSೊ!b郒e:^aw[q>j[k0d*"C[ϋ^HhLTctw2$wM\>ayŋPrCWeV<ƘґN>v[~qhn4@yz~5cTBO W)<Ћ {"\@>b*9h|'+@-k|HQY֥[/WB=+@dZ0Ɵ{8,Vwd{&Uk1a"3njs~ƞۡG'ǧ 8Hk<(7U?Z 4JFLz.=ki~?BA{6SLo]s<)XuЪ٘g5Enývʪ̺U$=u]]:Qi?&`Mt}JHO,R Qo. [tFC^\p=4]2LA4CNH9WvT7Ѯam1+^cO~0!6ݳ|uvm$oI8:c&mm>" M$U=4TY4SLD5BR>p-1;xb ]fPpp""SBu '0 EVI$,V+HݿB{{ 'MTᤉ = V5|qR!_JDhԂ\XC z1my%Q8SQÃeYBj(v0-L@mgbxQ;V_.\:KN]O̱ L+D#*Bf)!UėA7r^eY^{6ѷDȅߣRWwC2,s2t̔P3_,^hP8+oM*E{kFE ֹ~ wl <YFhʎujSy48ݙqɤeAxSҔyD?,-oPoUA*)[1 HrR $jS)B" `]_PaSJfOTYTGS.Ѫ@+3l[̧%IhTMޢLƝO{ZX~]b]n%cy@]3k ,oV/qe t+96r#qI":)?D:0xQQ_$ N ?|A-_5UDRM /bxTKy23PvDXmX_|adL J^do2D sgc[P@09Okâ"@LF,Dר24} ?1`m&6H L C$>3BtȟGYnuA[Uv5MO_u|̛KfIKjCa9N~V)"0 Us3ٱ1`5 A! 98s1X=XURfI*F֧F?!jݥ8vizBQEiTLќ ʙ-BfRTAx+0wD#j{ FoX9ff8*f7]oM{P҇-O5,cnvT+_EU|e* ̵PM׭"L׭"[,2l41;tNWjdg6w1j̟1K.c0^$IhWaa}4?$,堖>7-@["p/У ,bU-(U|kB&-8_[5b/`1CS,"^,v CC\8j|WN|EJvi#ExPwllեeA;_[zxכV@S{.j^SܵVj䓠oc&>`G ]D"\ԎNu~\1O fb@6xyRa0l\,q9NS˥dgOkŎ}4$Ԫ#'RǺ ̕`-ˋPs?l\-ڵH۶ u^<4G<@܏Vn?fW*iR|'әD?I.g1mpPo_!}_DjʗŪu/`M=:\n+5.KwU*Xy/w*{ 7~3_QHPw/$罢^+߼;g}g xu\Κ™F񁎛nJՄ|]^Lm`!w &hȸ 8e'O:,}62,+o*sjjK!-S͵|@{l?׻P":YshFi58Hz {.|fLp1X`j]äȠ^%~sՔ˦DzjOF0u1U\JU|:qZ@oSLJO7f0_G(Ҽ7~;9w$nEgly'+)TexIYK"L~ !p!xANGq9z-p/0)y>dq*}l}}Kbܺ#n-h? `mx%!??oh` 4 佃Y+c6κbJ6;an.dgSOXgdBe%[AD+k<n ܘX|Ra;Oz1U7ŠD{ƧRR|ֽ$,-6HEթIʃѺb^c)˶0)7%A)e4hV쨫`Y71b^Wx#fR&I0s]P# =Q~ $ۦG(K))& @gnzxJZ> HG>*K'BX(p$$:c*!甥t1|'6Ux%iQU һzvR2\`YAӉ,vN !@DḴ?"+a2re-EnK^%ۘA˗!C3]4wۙ]4wۙ]T̗vv{Yٛ#<;ozYn %7*RAFٶ T5W@n;+ }rA! v;w-hkqHE7Ceq*_=MfM9r? _mfɺ?w %A1¹ȭ5EdUpbɣaȣX./pEs}Yo'xM?n0]yYܑ-"i,wF+r{!٧2,(q`+)*< { UxVͷB-܋_^_5F3Fo]V$x -X}Ym!rQ26gYHfbq5lp0U D=]8;)5p?MBUGSX~oʢpJ9$"2ŻGY9oGBQNmC"6$`e,YN-50(ށkRW.Et\">y{cwr^_gqXEcpomǝ]ǝwʿe/&dl&2_Ǔ~Ng<չB#` ζJ܈WQ5I23>y|N^ z f#&Nb(jFsZ2S=-'sA3\˖:[6F.Ʀ>H."8r+jl 7lIDcέ)$$DXv2hOgOߣ.a~?dSd_ub ;V0'H WӬ܄P0!@aMPѣcs| >gi>yL6!]$."\qh'UYE`KO?ݎV7R.R ˭46"'lÞeKǤwjG G[.IzI3H R!*;>j2 i lGdž04F41'aHwq|pzpz~ ɤ-)U2An- 2{g:|ne#,.` C=*.dPf9AJed$שpXP1rN$ٕµ5e1oX+{yr Kcm2?bp_hl-u!MrL!٥xֆoz&xZ$&g hŒ.-z. JRT,3n?A h(Q"P{AK)&eW#V4L_s~dbaCTg yd (()ÝڛW?e]&vK /,+ "W"uޒܥZbR0~.sElh0&\fT7ʕTqpFQXT\xF;<m4SKn$ PuO?i%]za*#yc!e\(,v.C]9& hS<٠Y jˆ[[MVr6+T";4w"kz}E+FZ "s%X?ɦgFʋwʧo΢ZY2?ip7jK~)(ZD9 BUl{ Upsi8pxz>$ԒR>@Ӻգ#6+MX8 ӫQq9d|l-OEf3YE& ё-@VCJ'4菦;d2k^W Ix 7%ԆA∀&M46]nŗJM+RPr 'Mt T`P +Xȣ|&v7SSN6 *~mB+3vKj wDz̨ͮkӐ6Th WDeiC'bٴe\)1 !~p1maZG%*,ыadOy }^W>_.Da ^V ^jѕY/ߠ)FCEV= N$ RҼ;br?3UtYrW|Ɓ#+˚J$T\(PBLM׾eHxE*K|/ WTPpL>t oZ-˻Őg ^OdVƝc;^cs~ZX° 423/q16TM 9NM1f(~U\K]h=>m`!Ȩ)lK,6hXGRW12Rz!3%nѽ]M>wMDlTzQ Ab-SM'NمQ p^cIYL8ZExkۃIG<)L'`5}A&bMMBߕNcuNK)}>uW=9x UpVv2@lWQqe$MzVҳRgzLTtMG +M祉 r=t)"J՛,EaSֿȗX'S_ٜ~8,נZ>}BQc5S%YrBݪ6SWL؆=ǫ7<>#2hm uHdJ@êftPwc\d%݆Fmk-/#R*_zGfŎO4jjΧEǥ{h #_i`U* $ɞcibJ2]Q;S0jؕ=>N >e5TǪSڪR@uk5=VpT+wX;.TʬZV.,_!k6I2 $y1A7HSER҅e{nhmi.# -Æ:`' RLs@orckKF|:U0FJxf(mDy}o9wԭS':)8k\'1#B>|k߭|tx,t_:o#:d#Y7n!|(9!atwbjGܽƒ]{.]厊ij^4I]q}f5R 6sH~xڣ|p6 y q;;m_G7DD<AdДM[aVL[(2 GC:ql"C\02A`9ɞ [@j)fN+KۆVg쪽T'PWK7r8 9-rhct4[pW;xV~kmޏ|p83]~heazV#8(cqst|773=dpᙷOLhdFO> N='_y-ec ӈTHBNd pVLCff3`g^im Gas{x(w+00*QC" ] ySjH(<#wqc!2͐\zI,bN"̀Y*7| yVYAU]|GT&6lb/uAs]ȅHP3IuFOH*%8N$7iopr~zؓ@zUxC8/ߛ.t NG"2_H71d d3P0Ü4ZEpuݬsgΒBfnP/͚]tz A~bXp1v?^~82Ũ R 8/^F8Kob-7 I1 !, +egRn!x|TVă犘i,rN(rsWkՈ92/\~R{.&{ytp*3Wrth2]ފTb&7g'NDᥢ$ajT%)bgUY,vz^Es.Xd%#k_a,zO_x$Cit (ZA4&%򕚿a4ʘ9=+T0uoN z3P"T@2 ) ՙSiMdM+D\_:C_.KsͧUMhbD.<Wa=#Wm_6*ѭfDCI^G21:Ii=ڄ]ʟ%XyHK{âsU/¢O1OOXCw(#yhYUb%IN#_tϯ^xz† qie0" #*˘ɖ_[kF"[ x2O={1~;p|S:(vAbHj*<(Tb XDWcoS&8y<e3tlc\2`ɝmttjk4ZJv{g蹝siqvQc. C :B[qqQ@wzˋ.H k 7|9\RsKm}jiY5e t6Ǟ1He%y4OpVk%ځ )`C nyb-dN A dFm,~Suqx*g>@Vl9r#j_!5PVTCod-Yr4*t&Oo^hrV7fʷz8A#wPPǖа^QbδA% ].&C0`/.IE Xh@:<Jׄ E-d=vⲻz q S%Pύmq|f~?4wFfDr>n2⎌RFmA5-% @zXZp˵ h Bn @y\ѹPT#1uytsz-o!&Bu/M8Q;8&7(`烂VΡyUP#7I`LH̀ z"jsRWܑbf9(dOpyg@ "%CG4dr [[lL-&3=9V#SF>Yps`Q pEgrz<L(,ىUyZTdfβ쳆'Nh 1SK{侚;kK3wJɪJiKdʢeG:Ua7L­&{idy 'V%1o׉| 8Eי/Sv&; XnnSyj &0XtG)R}x*4Ayk;t2; N(hwvHa( Iq/$]C'5([kH45t-Ϗ,r| ]Zv%@0: ;h4KO-J+i6 =v)AZ@e tOL%anwx\`!ʀ2x&k_KrX'Q-Zh)ǷuրuY4E~SAjEA|+KĈ#> C2S(GXР3<(z 9V?]Y J*K&  +>UׅX _1y~; DPr@<,42mD!p!vAmJ/ACiR\&i:Z-Ew6=,TJkdưM9QOs/n‘4Ӎ@0m3Alq5&q$&+cA< N9ly] cOFj>nZ20~+꭫%b_\ ޲2|231}wvz9XêL9{dX G @uInc86x0gTa@Uͱ$ecc&[1BH[]-Q.`,z\~@.WrGJޞ̀hh \B?qq"쪞\_Xn/ OƖݼl>kJvOtUi~ e |5J6i@)fFZ = S][Ny;ħg>2Q7x3&j_|6ˊdޅoZ+Z9^^nq9@~a|gGG)Ka@,y(;ݏ+}2!!e:ÜѩϫYyc܇),Gy6|n*R1!L|>;dPTIdWry a'n4O3B"^PxvR0yA_SCG>Z>N Yؔipy @-6T·qZ[}2R Şl[==ndCQ'|Ņ'+$7ivb8/:s f~*MnOh3GJs핇 '(Lw>z-a2A϶[y{6v᭖-o{"tJyJ `ӥti]ԗkZwcT%1׽RZn,2:I}Dm{:)׀5)cKsת[<x+,OE_2b8"._]yy θV.Ptq;,9v;19FrI[vmHNl"xy ѬXdY-;o8ý G}]<~]MKL- Yaʬ+,)_ipϧ9Jl#McȺ@2t(6)|]bo?-2 OĮs b !hRb6`=ri;(NқLo7JzЬ߲A*;2k^\ItztYKF(ԑop_wkb_!gҨ1ÒYLgԧ+a<e S,yޅ f} <täy s%IpbǡemLᬝi;QڿL 2L3V5H?M?*'ԆӺ} xՓ7ÐD҂AI Ux;4O NSg&`'KJpXeQv9!"~phace]ِe HXQA@ 9}ܕjr`+pGܲiPd+4Vw.v[{(79@+7,-N3\ƃ/\IuPR8 ׮36x,8[}'(jR*&s͑P9B:pɏ3K a9u8ϡ.(:*qh~:wU{4F(`B< Q-]9e,?p)$%0,{_i缰SuRdy;k)0.LV:)o"CnrjYT^"fg,]{HZs%iZ#zGBW7/plyLf Oz%;_ٔN=vNL;~>ꭑWt9}%GWíuYH/-UB1G =7GmH-vk٠bhA:+ު؍ӏ- J:Ppuw&je#>C!$ݍ̶WC_i@ :qy d'wPWo=hIf /RP-qX7E㣃?qWo[XO/W}Ȃ 3@m~^ [OK4/0+5eĵְ-9x @$Iջ "R]8izƺpFWhX4|H#ꚵ.̊UaV{Ps<FQЁN _rIE">kTQo|ςmg6-Am.|Q`=`Zz ?"t7[ xʙ>9~ z=ͯ泌1A)GpicZcѦ&eg-/)rM8X>!KהST#}vRMiR>\J#غe?zUS. BPHh)ȷ9 +dxǂ["3ҮPvvŒjK&)Ūlnn9nx6/E}wLHa+O h^$6 qB{QM5?Qӥ(iCЫ^'Pi2Fbv.)]PIЭDGttN/NC_(V?( QX&ZVgatޏ͖KO8@t f ec"\#z\;]̙2Χsc~EJ t 9r&@ꗃ_7/oI Ry=Ctg:Af{TVuݯӛINjEJq*mX3"<ȇAx))o^O79d 1O}~Q{=amd˜0 -s0bY6x6kR+*JT&9oĤfԫFH9ˑxrG!GC"n)(a hL{8{On۴ߔ$H`koD-ѸK!1B7Jڟ"?L>)t(=ϜkLEw2s/0Kr,1r{Slg_QkIW 9M4-č 6 $/I[E=R>2[mѵ5آk;9X'Bof+vxцd^ףڐtO:0]xm1h@ː{ ) 7^9ĂkU6s7 f HW|7[9klA&Y4\{HA`Q$͎s?n /"5ɇSXR]\{팼zBRv%($BSGB\(\Vd1%>oj!mP&k 4Cv-O[L;i @=a"&<'GE} `E?A /'& B݇k#w~5H-KI>b98z|4Zu34 ҆ɥe456J"@+chVٝ0Ya}¬kܼQ5Vf@E@Yj͕kjz4_nw2iE!B88 m7<%)ӫ({{O4G3i#/iJ\A'.Gtw_QP7oquZjб_eTڢzb\Mˈl+3m0->ð,7&!0<#ʐVaսnTsZBaҊ/_nKmivW{YQCN0>ˀįxfګVXf'S@ ǴuO劲+ ߶Ƹh5>~*҉Yѳ}$<_Mٹ_ϳ뱫Э@P8خL#+=;8O7 +da9ɦ9)M/f-c!;NU .cjYݥ="9_=R0ٝ~ؽGGŔ̷݋;!:٩ )R܀&菳O!Z \KQ1G|-|c~0#56_nM3$_ `cQ.Q:XLѤ3h}cbdbzi@)7ۢ!^q,Vww9a8#jf@5fIdf# a|+JڧF^,Emd\[z"!t3H dMwO~]Z FUVt̰G& ؉o%CW k蒑hr r+^q*Z~/`)N]R)Lu%@ IeQ*f@}kUjoʶhe5>~?cʤw p2ݗ6aaz+L.}{YLY̓VipQ.a .O|`a) :$y R2R':#Q9ڤL8fPKiHF1U\T\B>tQ2ANyv1Z9tQ[gLWQ? <<z@|ͼ"Ζ,@@bUH!dh 0~m mg"z)@&P:N</uS;poVl/4 mkLk({ycu'}E t"$I[22:t?}SNڷuѺ`Iح# ʬ54ܤE ϟ|Szy;6 m UPD aMc+ZdkNOO[@]Fme.r?^6\Npx6@{ݳ&3ETH;2V;w "⨧Og_UNl#!(,tEղ IҦ+O]ҜQ>by{&j|NYTG|_1wr(ou7 PQxp: TK/ )Qwf91̼>R?~SRч1} ^3Dbt äN,s7`x}ݿGphGrQ}Sev?Rm+ihd糌F˗r@cN>isq_E|'X1ϞL 6o*#eVC_8h`&?0%YX!NY|6);6=nz&C >1|0w=U=OY'@jؓFkHqaŧ_\2\ N`T(6$TM}U!cIS%_iÇS38Q#߻*8q>l3?%W$#t6(<=Z?1lDhϮƓ)x uK`W' Ym]wܥ3r+!O]q`A{g~hi.0707010000002d000081edsmtp_key_prefix???Y@A >;[| D T < `XX4@`a$~gխuBCSޯ)Ư 3 , YZ