openssh-server-8.4p1-150300.3.27.1 >  A e|#p9|8f9̈ٙ1aMҠL2:JX 7GZD NGY;ݷb;dnKry:%֝W?IrV#Xz^BFVf PJZ9U%`JZgaRF'TƧl ` ڣ"FΘ5vlr;Ťv.O2LPf;7ߏNۘ۫+LɌ1de060f9f4b138d9c6415c8ce375815c08cda2c42e52d9023cef1860b20d5b3d6a3400af1d79e8a254e9fa661188a0d27560a4ace|#p9| +2 鱧Ws𜌧;ڼ cD},2" K1SC}cPQ:.FLjtr{hgQ÷^%0$}>Bߊ>;54]B6W񈤑8 -HgzEOф|QeC(ɰv_ ΂;̐'IjkYjZL0;. D{C#7ng SVd#F?5aMJP=#>pKʌ?|d % ? )J_ u52  8   4 T99#9($7$"8$h`9%`:,o`=>?@CFGH$IlX€Y”\]^bcťd'e,f/l1uDvƌwȬxy<5z $*,06xCopenssh-server8.4p1150300.3.27.1SSH (Secure Shell) serverSSH (Secure Shell) is a program for logging into and executing commands on a remote machine. It replaces rsh (rlogin and rsh) and provides secure encrypted communication between two untrusted hosts over an insecure network. xorg-x11 (X Window System) connections and arbitrary TCP/IP ports can also be forwarded over the secure channel. This package contains the Secure Shell daemon, which allows clients to securely connect to your server.e|s390zl34SUSE Linux Enterprise 15SUSE LLC BSD-2-Clause AND MIThttps://www.suse.com/Productivity/Networking/SSHhttps://www.openssh.com/linuxs390x # See %pre. mkdir -p /var/lib/sshd || : if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl is-enabled sshd > /var/lib/sshd/is-enabled.rpmtmp || : else if find /etc/init.d/rc[35].d -type l -regex '.*/S[0-9]+sshd' \ -exec readlink -f {} \; | grep '/etc/init.d/sshd$' >/dev/null 2>&1 then echo "enabled" > /var/lib/sshd/is-enabled.rpmtmp || :; fi fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in sshd.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 1 $0 | /usr/sbin/sysusers2shadow RET=$? test -f /.buildenv && exit 0 exit $RET ######## data below ######## u sshd - "SSH daemon" /var/lib/sshd PNAME=ssh SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi if [ -x /usr/bin/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 sshd.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 if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/ssh/sshd_config fi # Work around %service_add_post disabling the service on upgrades where # the package name changed. if [ -x /usr/bin/systemctl ] && [ -f /var/lib/sshd/is-enabled.rpmtmp ] \ && [ x$(cat /var/lib/sshd/is-enabled.rpmtmp || :) == "xenabled" ]; then systemctl enable sshd || : fi rm -f /var/lib/sshd/is-enabled.rpmtmp 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 sshd.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 sshd.service ) || : fi# The openssh-fips trigger script for openssh will normally restart sshd once # it gets installed, so only restart the service here if openssh-fips is not # present. if rpm -q openssh-fips >/dev/null 2>/dev/null; then if [ $1 -eq 0 ]; then # Package removal for service in sshd.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 else test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in sshd.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 sshd.service ) || : fi fi fi \I@=& +A큤AA큤큤큤$$$Ae|e|e|e|e|e|e|e|e|e|e|e|e|e|e|e|e|e|28d19d7f20fa597be7904cdf6d4999afb4e80e3e6d0a25af8237ab2c4fec84da05faafbe214f8e098ea66307a1cbe747f8796e3c62eba9df1ec4233ca1195bf36610510ac772c25ac58ed5f9c2e7bd04e6141b4e424305ba01ab43dd68a5eba0387af7c493f6e151cd3af375328e1f5da7d9c05f6bf09128d443a40314cad8857b4f2a945394ade8b019035996f94ea35f12d89797e89dead326510e9b82de6e39d26d57e62906f0613d9cb1840d249aab64eadc894b387088c688e0a5983c262bc82fb62af9360d862e14e16d89dd69bccb326fa0f886ccec58adf0969fcac00a121a66634a4fb5c8c8c7e6def2281d62c4db2338aade224b450640e703091fedf1a33679966c18e28cd84cd671f8589059a8fae45374449ba5cb6471ca18f4238433b63d6a5b548acde065f164b6773b3e1c44b3b959608bb9db74e93ed56db3543263048fc358b3715765cc590975f077b8d08c5ea224495e6945f2d3e16f3fd24d9ed04464b0496fbd7f64ffcfc6005fdcb81752ff6aceabaeaaaebb99ae1343b3f840e3c7d4db7cc76d10d60f28af167a56421bfb2e04245d911001128fservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootopenssh-8.4p1-150300.3.27.1.src.rpmconfig(openssh-server)openssh-serveropenssh-server(s390-64)openssh:/usr/sbin/sshduser(sshd) !@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    /bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(openssh-server)coreutilsdiffutilsfillupfindutilsgrepgreplibaudit.so.1()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.16)(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.2.4)(64bit)libc.so.6(GLIBC_2.25)(64bit)libc.so.6(GLIBC_2.26)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.6)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libcom_err.so.2()(64bit)libcrypt.so.1()(64bit)libcrypt.so.1(XCRYPT_2.0)(64bit)libcrypto.so.1.1()(64bit)libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)libcrypto.so.1.1(OPENSSL_1_1_0d)(64bit)libcrypto.so.1.1(OPENSSL_1_1_1d)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2)(64bit)libfido2.so.1()(64bit)libgssapi_krb5.so.2()(64bit)libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit)libkrb5.so.3()(64bit)libkrb5.so.3(krb5_3_MIT)(64bit)libpam.so.0()(64bit)libpam.so.0(LIBPAM_1.0)(64bit)libselinux.so.1()(64bit)libsystemd.so.0()(64bit)libsystemd.so.0(LIBSYSTEMD_209)(64bit)libutil.so.1()(64bit)libutil.so.1(GLIBC_2.2)(64bit)libz.so.1()(64bit)openssh-commonpermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowsysuser-shadow8.4p1-150300.3.27.18.4p1-150300.3.27.13.0.4-14.6.0-14.0-15.2-14.14.3 /usr/bin/chkstat -n --warn --system -e /etc/ssh/sshd_config 1>&2eyehy@ds@dD@d&@b@bbaA@a@` @`` ` @` @` @`x@`x@_I@_@_@_@_@_~@_m_m_cO_Z@^3^Ӝ@^Y^K^B@]|@]X]W]c@]c@]c@]@]Z@]5@\@\@\@\M\w@\v{\j@\eX@\eX@\N\J@\I\I\?\8@\-@\[@[ٙ@[ͻ[@[@[@[$@[$@[@[@[[[0@[Z@Z@Zľ@ZZqZhu@Z]@ZX@ZWQZ@Y|Y@X}@W@WW@WV@WL+@WH6W#LW@VT@T@hpj@suse.comjsegitz@suse.comsflees@suse.demeissner@suse.comvliaskovitis@suse.comvliaskovitis@suse.comvliaskovitis@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comkukuk@suse.comdmueller@suse.comhpj@suse.comkukuk@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comdimstar@opensuse.orgfbui@suse.comjengelh@inai.dehpj@suse.comhpj@suse.comandreas.stieger@gmx.delnussel@suse.defvogt@suse.comhpj@suse.comhpj@suse.comcrrodriguez@opensuse.orghpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comhpj@suse.comkukuk@suse.defabian@ritter-vogt.devcizek@suse.comvcizek@suse.comvcizek@suse.comvcizek@suse.comvcizek@suse.comvcizek@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.comtchvatal@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.comvcizek@suse.comcrrodriguez@opensuse.orgpmonrealgonzalez@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comschwab@suse.detchvatal@suse.comastieger@suse.compcerny@suse.comdimstar@opensuse.orgpcerny@suse.comkukuk@suse.depcerny@suse.compcerny@suse.compcerny@suse.comdimstar@opensuse.orgpcerny@suse.compcerny@suse.comrbrown@suse.comjsegitz@suse.compcerny@suse.comcrrodriguez@opensuse.orgpcerny@suse.compcerny@suse.commeissner@suse.compcerny@suse.compcerny@suse.compcerny@suse.compcerny@suse.comkukuk@suse.comastieger@suse.commeissner@suse.comledest@gmail.com- Added openssh-cve-2023-48795.patch (bsc#1217950, CVE-2023-48795). This mitigates a prefix truncation attack that could be used to undermine channel security.- Enhanced SELinux functionality. Added * openssh-7.8p1-role-mls.patch Proper handling of MLS systems and basis for other SELinux improvements * openssh-6.6p1-privsep-selinux.patch Properly set contexts during privilege separation * openssh-6.6p1-keycat.patch Add ssh-keycat command to allow retrival of authorized_keys on MLS setups with polyinstantiation * openssh-6.6.1p1-selinux-contexts.patch Additional changes to set the proper context during privilege separation * openssh-7.6p1-cleanup-selinux.patch Various changes and putting the pieces together For now we don't ship the ssh-keycat command, but we need the patch for the other SELinux infrastructure This change fixes issues like bsc#1214788, where the ssh daemon needs to act on behalf of a user and needs a proper context for this- Add openssh-CVE-2023-38408-PKCS11-execution.patch, Abort if requested to load a PKCS#11 provider that isnt a PKCS#11 provider (bsc#1213504,CVE-2023-38408)- openssh-7.7p1-fips_checks.patch: close the right filedescriptor to avoid fd leads, and also close fdh in read_hmac (bsc#1209536)- Revert addition of openssh-dbus.sh, openssh-dbus.csh, openssh-dbus.fish: This caused invalid and irrelevant environment assignments (bsc#1207014).- Add openssh-dbus.sh, openssh-dbus.csh, openssh-dbus.fish: Make ssh connections update their dbus environment (bsc#1179465).- Add openssh-do-not-send-empty-message.patch: Prevent empty messages from being sent. This avoids a superfluous new line (bsc#1192439).- Add openssh-CVE-2021-28041-agent-double-free.patch (bsc#1183137, CVE-2021-28041), from upstream.- Add openssh-bsc1190975-CVE-2021-41617-authorizedkeyscommand.patch (bsc#1190975, CVE-2021-41617), backported from upstream by Ali Abdallah.- Add openssh-mitigate-lingering-secrets.patch (bsc#1186673), which attempts to mitigate instances of secrets lingering in memory after a session exits. (bsc#1213004 bsc#1213008)- Add openssh-7.6p1-audit_race_condition.patch, fixing sshd termination of multichannel sessions with non-root users (error on 'mm_request_receive_expect') (bsc#1115550, bsc#1174162).- Add openssh-fix-ssh-copy-id.patch, which fixes breakage introduced in 8.4p1 (bsc#1181311).- Improve robustness of sshd init detection when upgrading from a pre-systemd distribution.- Add openssh-reenable-dh-group14-sha1-default.patch, which adds diffie-hellman-group14-sha1 key exchange back to the default list (bsc#1180958). This is needed for backwards compatibility with older platforms.- Make sure sshd is enabled correctly when upgrading from a pre-systemd distribution (bsc#1180083).- sysusers-sshd.conf: use sysusers.d configuration file to create sshd user (avoid hard dependency on shadow).- update to 8.4p1: Security ======== * ssh-agent(1): restrict ssh-agent from signing web challenges for FIDO/U2F keys. * ssh-keygen(1): Enable FIDO 2.1 credProtect extension when generating a FIDO resident key. * ssh(1), ssh-keygen(1): support for FIDO keys that require a PIN for each use. These keys may be generated using ssh-keygen using a new "verify-required" option. When a PIN-required key is used, the user will be prompted for a PIN to complete the signature operation. New Features - ----------- * sshd(8): authorized_keys now supports a new "verify-required" option to require FIDO signatures assert that the token verified that the user was present before making the signature. The FIDO protocol supports multiple methods for user-verification, but currently OpenSSH only supports PIN verification. * sshd(8), ssh-keygen(1): add support for verifying FIDO webauthn signatures. Webauthn is a standard for using FIDO keys in web browsers. These signatures are a slightly different format to plain FIDO signatures and thus require explicit support. * ssh(1): allow some keywords to expand shell-style ${ENV} environment variables. The supported keywords are CertificateFile, ControlPath, IdentityAgent and IdentityFile, plus LocalForward and RemoteForward when used for Unix domain socket paths. bz#3140 * ssh(1), ssh-agent(1): allow some additional control over the use of ssh-askpass via a new $SSH_ASKPASS_REQUIRE environment variable, including forcibly enabling and disabling its use. bz#69 * ssh(1): allow ssh_config(5)'s AddKeysToAgent keyword accept a time limit for keys in addition to its current flag options. Time- limited keys will automatically be removed from ssh-agent after their expiry time has passed. * scp(1), sftp(1): allow the -A flag to explicitly enable agent forwarding in scp and sftp. The default remains to not forward an agent, even when ssh_config enables it. * ssh(1): add a '%k' TOKEN that expands to the effective HostKey of the destination. This allows, e.g., keeping host keys in individual files using "UserKnownHostsFile ~/.ssh/known_hosts.d/%k". bz#1654 * ssh(1): add %-TOKEN, environment variable and tilde expansion to the UserKnownHostsFile directive, allowing the path to be completed by the configuration (e.g. bz#1654) * ssh-keygen(1): allow "ssh-add -d -" to read keys to be deleted from stdin. bz#3180 * sshd(8): improve logging for MaxStartups connection throttling. sshd will now log when it starts and stops throttling and periodically while in this state. bz#3055 Bugfixes - ------- * ssh(1), ssh-keygen(1): better support for multiple attached FIDO tokens. In cases where OpenSSH cannot unambiguously determine which token to direct a request to, the user is now required to select a token by touching it. In cases of operations that require a PIN to be verified, this avoids sending the wrong PIN to the wrong token and incrementing the token's PIN failure counter (tokens effectively erase their keys after too many PIN failures). * sshd(8): fix Include before Match in sshd_config; bz#3122 * ssh(1): close stdin/out/error when forking after authentication completes ("ssh -f ...") bz#3137 * ssh(1), sshd(8): limit the amount of channel input data buffered, avoiding peers that advertise large windows but are slow to read from causing high memory consumption. * ssh-agent(1): handle multiple requests sent in a single write() to the agent. * sshd(8): allow sshd_config longer than 256k * sshd(8): avoid spurious "Unable to load host key" message when sshd load a private key but no public counterpart * ssh(1): prefer the default hostkey algorithm list whenever we have a hostkey that matches its best-preference algorithm. * sshd(1): when ordering the hostkey algorithms to request from a server, prefer certificate types if the known_hosts files contain a key marked as a @cert-authority; bz#3157 * ssh(1): perform host key fingerprint comparisons for the "Are you sure you want to continue connecting (yes/no/[fingerprint])?" prompt with case sensitivity. * sshd(8): ensure that address/masklen mismatches in sshd_config yield fatal errors at daemon start time rather than later when they are evaluated. * ssh-keygen(1): ensure that certificate extensions are lexically sorted. Previously if the user specified a custom extension then the everything would be in order except the custom ones. bz#3198 * ssh(1): also compare username when checking for JumpHost loops. bz#3057 * ssh-keygen(1): preserve group/world read permission on known_hosts files across runs of "ssh-keygen -Rf /path". The old behaviour was to remove all rights for group/other. bz#3146 * ssh-keygen(1): Mention the [-a rounds] flag in the ssh-keygen manual page and usage(). * sshd(8): explicitly construct path to ~/.ssh/rc rather than relying on it being relative to the current directory, so that it can still be found if the shell startup changes its directory. bz#3185 * sshd(8): when redirecting sshd's log output to a file, undo this redirection after the session child process is forked(). Fixes missing log messages when using this feature under some circumstances. * sshd(8): start ClientAliveInterval bookkeeping before first pass through select() loop; fixed theoretical case where busy sshd may ignore timeouts from client. * ssh(1): only reset the ServerAliveInterval check when we receive traffic from the server and ignore traffic from a port forwarding client, preventing a client from keeping a connection alive when it should be terminated. bz#2265 * ssh-keygen(1): avoid spurious error message when ssh-keygen creates files outside ~/.ssh * sftp-client(1): fix off-by-one error that caused sftp downloads to make one more concurrent request that desired. This prevented using sftp(1) in unpipelined request/response mode, which is useful when debugging. bz#3054 * ssh(1), sshd(8): handle EINTR in waitfd() and timeout_connect() helpers. bz#3071 * ssh(1), ssh-keygen(1): defer creation of ~/.ssh until we attempt to write to it so we don't leave an empty .ssh directory when it's not needed. bz#3156 * ssh(1), sshd(8): fix multiplier when parsing time specifications when handling seconds after other units. bz#3171- Update openssh-8.1p1-audit.patch (bsc#1180501). This fixes occasional crashes on connection termination caused by accessing freed memory.- Support /usr/etc/pam.d- Fix build breakage caused by missing security key objects: + Modify openssh-7.7p1-cavstest-ctr.patch. + Modify openssh-7.7p1-cavstest-kdf.patch. + Add openssh-link-with-sk.patch.- Add openssh-fips-ensure-approved-moduli.patch (bsc#1177939). This ensures only approved DH parameters are used in FIPS mode.- Add openssh-8.1p1-ed25519-use-openssl-rng.patch (bsc#1173799). This uses OpenSSL's RAND_bytes() directly instead of the internal ChaCha20-based implementation to obtain random bytes for Ed25519 curve computations. This is required for FIPS compliance.- Work around %service_add_post disabling sshd on upgrade with package name change (bsc#1177039).- Fix fillup-template usage: + %post server needs to reference ssh (not sshd), which matches the sysconfig.ssh file name the package ships. + %post client does not need any fillup_ calls, as there is no client-relevant sysconfig file present. The naming of the sysconfig file (ssh instead of sshd) is unfortunate.- Use of DISABLE_RESTART_ON_UPDATE is deprecated. Replace it with %service_del_postun_without_restart- Move some Requires to the right subpackage. - Avoid ">&" bashism in %post. - Upgrade some old specfile constructs/macros and drop unnecessary %{?systemd_*}. - Trim descriptions and straighten out the grammar.- Split openssh package into openssh, openssh-common, openssh-server and openssh-clients. This allows for the ssh clients to be installed without the server component (bsc#1176434).- Version update to 8.3p1: = Potentially-incompatible changes * sftp(1): reject an argument of "-1" in the same way as ssh(1) and scp(1) do instead of accepting and silently ignoring it. = New features * sshd(8): make IgnoreRhosts a tri-state option: "yes" to ignore rhosts/shosts, "no" allow rhosts/shosts or (new) "shosts-only" to allow .shosts files but not .rhosts. * sshd(8): allow the IgnoreRhosts directive to appear anywhere in a sshd_config, not just before any Match blocks. * ssh(1): add %TOKEN percent expansion for the LocalFoward and RemoteForward keywords when used for Unix domain socket forwarding. * all: allow loading public keys from the unencrypted envelope of a private key file if no corresponding public key file is present. * ssh(1), sshd(8): prefer to use chacha20 from libcrypto where possible instead of the (slower) portable C implementation included in OpenSSH. * ssh-keygen(1): add ability to dump the contents of a binary key revocation list via "ssh-keygen -lQf /path". - Additional changes from 8.2p1 release: = Potentially-incompatible changes * ssh(1), sshd(8), ssh-keygen(1): this release removes the "ssh-rsa" (RSA/SHA1) algorithm from those accepted for certificate signatures (i.e. the client and server CASignatureAlgorithms option) and will use the rsa-sha2-512 signature algorithm by default when the ssh-keygen(1) CA signs new certificates. * ssh(1), sshd(8): this release removes diffie-hellman-group14-sha1 from the default key exchange proposal for both the client and server. * ssh-keygen(1): the command-line options related to the generation and screening of safe prime numbers used by the diffie-hellman-group-exchange-* key exchange algorithms have changed. Most options have been folded under the -O flag. * sshd(8): the sshd listener process title visible to ps(1) has changed to include information about the number of connections that are currently attempting authentication and the limits configured by MaxStartups. * ssh-sk-helper(8): this is a new binary. It is used by the FIDO/U2F support to provide address-space isolation for token middleware libraries (including the internal one). It needs to be installed in the expected path, typically under /usr/libexec or similar. = New features * This release adds support for FIDO/U2F hardware authenticators to OpenSSH. U2F/FIDO are open standards for inexpensive two-factor authentication hardware that are widely used for website authentication. In OpenSSH FIDO devices are supported by new public key types "ecdsa-sk" and "ed25519-sk", along with corresponding certificate types. * sshd(8): add an Include sshd_config keyword that allows including additional configuration files via glob(3) patterns. * ssh(1)/sshd(8): make the LE (low effort) DSCP code point available via the IPQoS directive. * ssh(1): when AddKeysToAgent=yes is set and the key contains no comment, add the key to the agent with the key's path as the comment. * ssh-keygen(1), ssh-agent(1): expose PKCS#11 key labels and X.509 subjects as key comments, rather than simply listing the PKCS#11 provider library path. * ssh-keygen(1): allow PEM export of DSA and ECDSA keys. * ssh(1), sshd(8): make zlib compile-time optional, available via the Makefile.inc ZLIB flag on OpenBSD or via the --with-zlib configure option for OpenSSH portable. * sshd(8): when clients get denied by MaxStartups, send a notification prior to the SSH2 protocol banner according to RFC4253 section 4.2. * ssh(1), ssh-agent(1): when invoking the $SSH_ASKPASS prompt program, pass a hint to the program to describe the type of desired prompt. The possible values are "confirm" (indicating that a yes/no confirmation dialog with no text entry should be shown), "none" (to indicate an informational message only), or blank for the original ssh-askpass behaviour of requesting a password/phrase. * ssh(1): allow forwarding a different agent socket to the path specified by $SSH_AUTH_SOCK, by extending the existing ForwardAgent option to accepting an explicit path or the name of an environment variable in addition to yes/no. * ssh-keygen(1): add a new signature operations "find-principals" to look up the principal associated with a signature from an allowed- signers file. * sshd(8): expose the number of currently-authenticating connections along with the MaxStartups limit in the process title visible to "ps". - Rebased patches: * openssh-7.7p1-cavstest-ctr.patch * openssh-7.7p1-cavstest-kdf.patch * openssh-7.7p1-fips.patch * openssh-7.7p1-fips_checks.patch * openssh-7.7p1-ldap.patch * openssh-7.7p1-no_fork-no_pid_file.patch * openssh-7.7p1-sftp_print_diagnostic_messages.patch * openssh-8.0p1-gssapi-keyex.patch * openssh-8.1p1-audit.patch * openssh-8.1p1-seccomp-clock_nanosleep.patch - Removed openssh-7.7p1-seed-prng.patch (bsc#1165158).- add upstream signing key to actually verify source signature- Don't recommend xauth to avoid pulling in X.- Add patches to fix the sandbox blocking glibc on 32bit platforms (boo#1164061): * openssh-8.1p1-seccomp-clock_nanosleep_time64.patch * openssh-8.1p1-seccomp-clock_gettime64.patch- Add openssh-8.1p1-use-openssl-kdf.patch (jsc#SLE-9443). This performs key derivation using OpenSSL's SSHKDF facility, which allows OpenSSH to benefit from the former's FIPS certification status.- Make sure ssh-keygen runs if SSHD_AUTO_KEYGEN variable is unset or contains an unrecognized value (bsc#1157176).- Add openssh-8.1p1-seccomp-clock_nanosleep.patch, allow clock_nanosleep glibc master implements multiple functions using that syscall making the privsep sandbox kill the preauth process.- Update openssh-7.7p1-audit.patch to fix crash (bsc#1152730). Fix by Enzo Matsumiya (ematsumiya@suse.com). This was integrated in a separate code stream merged with the Oct. 10 update; the patch was also rebased and renamed to openssh-8.1p1-audit.patch.- Add openssh-7.9p1-keygen-preserve-perms.patch (bsc#1150574). This attempts to preserve the permissions of any existing known_hosts file when modified by ssh-keygen (for instance, with -R). - Added openssh-7.9p1-revert-new-qos-defaults.patch, which reverts an upstream commit that caused compatibility issues with other software (bsc#1136402).- Run 'ssh-keygen -A' on startup only if SSHD_AUTO_KEYGEN="yes" in /etc/sysconfig/ssh. This is set to "yes" by default, but can be changed by the system administrator (bsc#1139089).- Add openssh-7.9p1-keygen-preserve-perms.patch (bsc#1150574). This attempts to preserve the permissions of any existing known_hosts file when modified by ssh-keygen (for instance, with -R).- Version update to 8.1p1: * ssh-keygen(1): when acting as a CA and signing certificates with an RSA key, default to using the rsa-sha2-512 signature algorithm. Certificates signed by RSA keys will therefore be incompatible with OpenSSH versions prior to 7.2 unless the default is overridden (using "ssh-keygen -t ssh-rsa -s ..."). * ssh(1): Allow %n to be expanded in ProxyCommand strings * ssh(1), sshd(8): Allow prepending a list of algorithms to the default set by starting the list with the '^' character, E.g. "HostKeyAlgorithms ^ssh-ed25519" * ssh-keygen(1): add an experimental lightweight signature and verification ability. Signatures may be made using regular ssh keys held on disk or stored in a ssh-agent and verified against an authorized_keys-like list of allowed keys. Signatures embed a namespace that prevents confusion and attacks between different usage domains (e.g. files vs email). * ssh-keygen(1): print key comment when extracting public key from a private key. * ssh-keygen(1): accept the verbose flag when searching for host keys in known hosts (i.e. "ssh-keygen -vF host") to print the matching host's random-art signature too. * All: support PKCS8 as an optional format for storage of private keys to disk. The OpenSSH native key format remains the default, but PKCS8 is a superior format to PEM if interoperability with non-OpenSSH software is required, as it may use a less insecure key derivation function than PEM's. - Additional changes from 8.0p1 release: * scp(1): Add "-T" flag to disable client-side filtering of server file list. * sshd(8): Remove support for obsolete "host/port" syntax. * ssh(1), ssh-agent(1), ssh-add(1): Add support for ECDSA keys in PKCS#11 tokens. * ssh(1), sshd(8): Add experimental quantum-computing resistant key exchange method, based on a combination of Streamlined NTRU Prime 4591^761 and X25519. * ssh-keygen(1): Increase the default RSA key size to 3072 bits, following NIST Special Publication 800-57's guidance for a 128-bit equivalent symmetric security level. * ssh(1): Allow "PKCS11Provider=none" to override later instances of the PKCS11Provider directive in ssh_config, * sshd(8): Add a log message for situations where a connection is dropped for attempting to run a command but a sshd_config ForceCommand=internal-sftp restriction is in effect. * ssh(1): When prompting whether to record a new host key, accept the key fingerprint as a synonym for "yes". This allows the user to paste a fingerprint obtained out of band at the prompt and have the client do the comparison for you. * ssh-keygen(1): When signing multiple certificates on a single command-line invocation, allow automatically incrementing the certificate serial number. * scp(1), sftp(1): Accept -J option as an alias to ProxyJump on the scp and sftp command-lines. * ssh-agent(1), ssh-pkcs11-helper(8), ssh-add(1): Accept "-v" command-line flags to increase the verbosity of output; pass verbose flags though to subprocesses, such as ssh-pkcs11-helper started from ssh-agent. * ssh-add(1): Add a "-T" option to allowing testing whether keys in an agent are usable by performing a signature and a verification. * sftp-server(8): Add a "lsetstat@openssh.com" protocol extension that replicates the functionality of the existing SSH2_FXP_SETSTAT operation but does not follow symlinks. * sftp(1): Add "-h" flag to chown/chgrp/chmod commands to request they do not follow symlinks. * sshd(8): Expose $SSH_CONNECTION in the PAM environment. This makes the connection 4-tuple available to PAM modules that wish to use it in decision-making. * sshd(8): Add a ssh_config "Match final" predicate Matches in same pass as "Match canonical" but doesn't require hostname canonicalisation be enabled. * sftp(1): Support a prefix of '@' to suppress echo of sftp batch commands. * ssh-keygen(1): When printing certificate contents using "ssh-keygen -Lf /path/certificate", include the algorithm that the CA used to sign the cert. - Rebased patches: * openssh-7.7p1-IPv6_X_forwarding.patch * openssh-7.7p1-X_forward_with_disabled_ipv6.patch * openssh-7.7p1-cavstest-ctr.patch * openssh-7.7p1-cavstest-kdf.patch * openssh-7.7p1-disable_openssl_abi_check.patch * openssh-7.7p1-fips.patch * openssh-7.7p1-fips_checks.patch * openssh-7.7p1-hostname_changes_when_forwarding_X.patch * openssh-7.7p1-ldap.patch * openssh-7.7p1-seed-prng.patch * openssh-7.7p1-sftp_force_permissions.patch * openssh-7.7p1-sftp_print_diagnostic_messages.patch * openssh-8.0p1-gssapi-keyex.patch (formerly openssh-7.7p1-gssapi_key_exchange.patch) * openssh-8.1p1-audit.patch (formerly openssh-7.7p1-audit.patch) - Removed patches (integrated upstream): * 0001-upstream-Fix-two-race-conditions-in-sshd-relating-to.patch * openssh-7.7p1-seccomp_ioctl_s390_EP11.patch * openssh-7.9p1-CVE-2018-20685.patch * openssh-7.9p1-brace-expansion.patch * openssh-CVE-2019-6109-force-progressmeter-update.patch * openssh-CVE-2019-6109-sanitize-scp-filenames.patch * openssh-CVE-2019-6111-scp-client-wildcard.patch - Removed patches (obsolete): * openssh-openssl-1_0_0-compatibility.patch- don't install SuSEfirewall2 service on Factory, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html- ssh-askpass: Try a fallback if the other option is not available- Fix a crash with GSSAPI key exchange (bsc#1136104) * modify openssh-7.7p1-gssapi_key_exchange.patch- Fix a double free() in the KDF CAVS testing tool (bsc#1065237) * modify openssh-7.7p1-cavstest-kdf.patch- Minor clean-up of the fips patches, modified openssh-7.7p1-fips.patch openssh-7.7p1-fips_checks.patch- Fix two race conditions in sshd relating to SIGHUP (bsc#1119183) * 0001-upstream-Fix-two-race-conditions-in-sshd-relating-to.patch- Correctly filter out non-compliant algorithms when in FIPS mode (bsc#1126397) * A hunk was applied to a wrong place due to a patch fuzz when the fips patch was being ported to openssh 7.9p1 - update openssh-7.7p1-fips.patch- Remove the "KexDHMin" config keyword (bsc#1127180) It used to allow lowering of the minimal allowed DH group size, which was increased to 2048 by upstream in the light of the Logjam attack. The code was broken since the upgrade to 7.6p1, but nobody noticed. As apparently no one needs the functionality any more, let's drop the patch. It's still possible to use the fixed 1024-bit diffie-hellman-group1-sha1 key exchange method when working with legacy systems. - drop openssh-7.7p1-disable_short_DH_parameters.patch - updated patches: openssh-7.7p1-fips.patch openssh-7.7p1-fips_checks.patch openssh-7.7p1-gssapi_key_exchange.patch- Handle brace expansion in scp when checking that filenames sent by the server side match what the client requested [bsc#1125687] * openssh-7.9p1-brace-expansion.patch- Updated security fixes: * [bsc#1121816, CVE-2019-6109] Sanitize scp filenames via snmprintf and have progressmeter force an update at the beginning and end of each transfer. Added patches: - openssh-CVE-2019-6109-sanitize-scp-filenames.patch - openssh-CVE-2019-6109-force-progressmeter-update.patch * [bsc#1121821, CVE-2019-6111] Check in scp client that filenames sent during remote->local directory copies satisfy the wildcard specified by the user. Added patch: - openssh-CVE-2019-6111-scp-client-wildcard.patch * Removed openssh-7.9p1-scp-name-validator.patch- Change the askpass wrapper to not use x11 interface: * by default we use the -gnome UI (which is gtk3 only, no gnome dep) * if desktop is KDE/LxQt we use ksshaskpass- Remove old conditionals- Move ssh-ldap* man pages into openssh-helpers [bsc#1051531]- Allow root login by default [bsc#1118114, bsc#1121196] * Added/updated previous patch openssh-7.7p1-allow_root_password_login.patch * Mention the change in README.SUSE- Added SLE conditionals in the spec files: * Keep gtk2-devel in openssh-askpass-gnome in SLE * Keep krb5-mini-devel in SLE - Removed obsolete configure options: * SSH protocol 1 --with-ssh1 * Smart card --with-opensc - Cleaned spec file with spec-cleaner- Security fix: * [bsc#1121816, CVE-2019-6109] scp client spoofing via object name * [bsc#1121818, CVE-2019-6110] scp client spoofing via stderr * [bsc#1121821, CVE-2019-6111] scp client missing received object name validation * Added patch openssh-7.9p1-scp-name-validator.patch- Security fix: [bsc#1121571, CVE-2018-20685] * The scp client allows remote SSH servers to bypass intended access restrictions * Added patch openssh-7.9p1-CVE-2018-20685.patch- Added compatibility with SuSEfirewall2 [bsc#1118044]- Update the firewall rules in Tumbleweed- Fix build with openssl < 1.1.0 * add openssh-openssl-1_0_0-compatibility.patch- openssh-7.7p1-audit.patch: fix sshd fatal error in mm_answer_keyverify: buffer error: incomplete message [bnc#1114008]- Version update to 7.9p1 * ssh(1), sshd(8): the setting of the new CASignatureAlgorithms option (see below) bans the use of DSA keys as certificate authorities. * sshd(8): the authentication success/failure log message has changed format slightly. It now includes the certificate fingerprint (previously it included only key ID and CA key fingerprint). * ssh(1), sshd(8): allow most port numbers to be specified using service names from getservbyname(3) (typically /etc/services). * sshd(8): support signalling sessions via the SSH protocol. A limited subset of signals is supported and only for login or command sessions (i.e. not subsystems) that were not subject to a forced command via authorized_keys or sshd_config. bz#1424 * ssh(1): support "ssh -Q sig" to list supported signature options. Also "ssh -Q help" to show the full set of supported queries. * ssh(1), sshd(8): add a CASignatureAlgorithms option for the client and server configs to allow control over which signature formats are allowed for CAs to sign certificates. For example, this allows banning CAs that sign certificates using the RSA-SHA1 signature algorithm. * sshd(8), ssh-keygen(1): allow key revocation lists (KRLs) to revoke keys specified by SHA256 hash. * ssh-keygen(1): allow creation of key revocation lists directly from base64-encoded SHA256 fingerprints. This supports revoking keys using only the information contained in sshd(8) authentication log messages. - Removed obsolete configuration option --with-tcp-wrappers, and - -with-opensc for s390 and s390x. - Removed patch merged upstream * openssh-7.7p1-openssl_1.1.0.patch - Refreshed patches * openssh-7.7p1-audit.patch * openssh-7.7p1-disable_short_DH_parameters.patch * openssh-7.7p1-fips.patch * openssh-7.7p1-gssapi_key_exchange.patch * openssh-7.7p1-seccomp_ipc_flock.patch * openssh-7.7p1-cavstest-ctr.patch * openssh-7.7p1-ldap.patch- Mention upstream bugs on multiple local patches - Adjust service to not spam restart and reload only on fails- Update openssh-7.7p1-sftp_force_permissions.patch from the upstream bug, and mention the bug in the spec- Drop patch openssh-7.7p1-allow_root_password_login.patch * There is no reason to set less secure default value, if users need the behaviour they can still set it up themselves - Drop patch openssh-7.7p1-blocksigalrm.patch * We had a bug way in past about this but it was never reproduced or even confirmed in the ticket, thus rather drop the patch- Disable ssh1 protocol support as neither RH or Debian enable this protocol by default anymore either.- Remove the mention of the SLE12 in the README.SUSE - Install firewall rules only when really needed ( ::1) before they are matched against known_hosts. bz#2763 * ssh(1): Don't accept junk after "yes" or "no" responses to hostkey prompts. bz#2803 * sftp(1): Have sftp print a warning about shell cleanliness when decoding the first packet fails, which is usually caused by shells polluting stdout of non-interactive startups. bz#2800 * ssh(1)/sshd(8): Switch timers in packet code from using wall-clock time to monotonic time, allowing the packet layer to better function over a clock step and avoiding possible integer overflows during steps. * Numerous manual page fixes and improvements.- Use TIRPC on suse_version >= 1500: sunrpc is deprecated and should be replaced by TIRPC.- additional rebased patches (bsc#1080779) * auditing support * LDAP integration * various distribution tweaks from SLE12 (X forwarding over IPv6, sftp forced permissions and verbose batch mode)- Use %license instead of %doc [bsc#1082318]- add OpenSSL 1.0 to 1.1 shim to remove dependency on old OpenSSL (update tracker: bsc#1080779)- Add missing crypto hardware enablement patches for IBM mainframes (FATE#323902)- add missing part of systemd integration (unit type)- BuildRequire pkgconfig(libsystemd) instead of systemd-devel: allow the scheduler to pick systemd-mini flavors to get build going.- Replace forgotten references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468) - tighten configuration access rights- Update to vanilla 7.6p1 Most important changes (more details below): * complete removal of the ancient SSHv1 protocol * sshd(8) cannot run without privilege separation * removal of suport for arcfourm blowfish and CAST ciphers and RIPE-MD160 HMAC * refuse RSA keys shorter than 1024 bits Distilled upstream log: - OpenSSH 7.3 - --- Security * sshd(8): Mitigate a potential denial-of-service attack against the system's crypt(3) function via sshd(8). An attacker could send very long passwords that would cause excessive CPU use in crypt(3). sshd(8) now refuses to accept password authentication requests of length greater than 1024 characters. Independently reported by Tomas Kuthan (Oracle), Andres Rojas and Javier Nieto. * sshd(8): Mitigate timing differences in password authentication that could be used to discern valid from invalid account names when long passwords were sent and particular password hashing algorithms are in use on the server. CVE-2016-6210, reported by EddieEzra.Harari at verint.com * ssh(1), sshd(8): Fix observable timing weakness in the CBC padding oracle countermeasures. Reported by Jean Paul Degabriele, Kenny Paterson, Torben Hansen and Martin Albrecht. Note that CBC ciphers are disabled by default and only included for legacy compatibility. * ssh(1), sshd(8): Improve operation ordering of MAC verification for Encrypt-then-MAC (EtM) mode transport MAC algorithms to verify the MAC before decrypting any ciphertext. This removes the possibility of timing differences leaking facts about the plaintext, though no such leakage has been observed. Reported by Jean Paul Degabriele, Kenny Paterson, Torben Hansen and Martin Albrecht. * sshd(8): (portable only) Ignore PAM environment vars when UseLogin=yes. If PAM is configured to read user-specified environment variables and UseLogin=yes in sshd_config, then a hostile local user may attack /bin/login via LD_PRELOAD or similar environment variables set via PAM. CVE-2015-8325, found by Shayan Sadigh. - --- New Features * ssh(1): Add a ProxyJump option and corresponding -J command-line flag to allow simplified indirection through a one or more SSH bastions or "jump hosts". * ssh(1): Add an IdentityAgent option to allow specifying specific agent sockets instead of accepting one from the environment. * ssh(1): Allow ExitOnForwardFailure and ClearAllForwardings to be optionally overridden when using ssh -W. bz#2577 * ssh(1), sshd(8): Implement support for the IUTF8 terminal mode as per draft-sgtatham-secsh-iutf8-00. * ssh(1), sshd(8): Add support for additional fixed Diffie-Hellman 2K, 4K and 8K groups from draft-ietf-curdle-ssh-kex-sha2-03. * ssh-keygen(1), ssh(1), sshd(8): support SHA256 and SHA512 RSA signatures in certificates; * ssh(1): Add an Include directive for ssh_config(5) files. * ssh(1): Permit UTF-8 characters in pre-authentication banners sent from the server. bz#2058 - --- Bugfixes * ssh(1), sshd(8): Reduce the syslog level of some relatively common protocol events from LOG_CRIT. bz#2585 * sshd(8): Refuse AuthenticationMethods="" in configurations and accept AuthenticationMethods=any for the default behaviour of not requiring multiple authentication. bz#2398 * sshd(8): Remove obsolete and misleading "POSSIBLE BREAK-IN ATTEMPT!" message when forward and reverse DNS don't match. bz#2585 * ssh(1): Close ControlPersist background process stderr except in debug mode or when logging to syslog. bz#1988 * misc: Make PROTOCOL description for direct-streamlocal@openssh.com channel open messages match deployed code. bz#2529 * ssh(1): Deduplicate LocalForward and RemoteForward entries to fix failures when both ExitOnForwardFailure and hostname canonicalisation are enabled. bz#2562 * sshd(8): Remove fallback from moduli to obsolete "primes" file that was deprecated in 2001. bz#2559. * sshd_config(5): Correct description of UseDNS: it affects ssh hostname processing for authorized_keys, not known_hosts; bz#2554 * ssh(1): Fix authentication using lone certificate keys in an agent without corresponding private keys on the filesystem. bz#2550 * sshd(8): Send ClientAliveInterval pings when a time-based RekeyLimit is set; previously keepalive packets were not being sent. bz#2252 - --- Portability * ssh(1), sshd(8): Fix compilation by automatically disabling ciphers not supported by OpenSSL. bz#2466 * misc: Fix compilation failures on some versions of AIX's compiler related to the definition of the VA_COPY macro. bz#2589 * sshd(8): Whitelist more architectures to enable the seccomp-bpf sandbox. bz#2590 * ssh-agent(1), sftp-server(8): Disable process tracing on Solaris using setpflags(__PROC_PROTECT, ...). bz#2584 * sshd(8): On Solaris, don't call Solaris setproject() with UsePAM=yes it's PAM's responsibility. bz#2425 - OpenSSH 7.4 - --- Potentially-incompatible changes * ssh(1): Remove 3des-cbc from the client's default proposal. 64-bit block ciphers are not safe in 2016 and we don't want to wait until attacks like SWEET32 are extended to SSH. As 3des-cbc was the only mandatory cipher in the SSH RFCs, this may cause problems connecting to older devices using the default configuration, but it's highly likely that such devices already need explicit configuration for key exchange and hostkey algorithms already anyway. * sshd(8): Remove support for pre-authentication compression. Doing compression early in the protocol probably seemed reasonable in the 1990s, but today it's clearly a bad idea in terms of both cryptography (cf. multiple compression oracle attacks in TLS) and attack surface. Pre-auth compression support has been disabled by default for >10 years. Support remains in the client. * ssh-agent will refuse to load PKCS#11 modules outside a whitelist of trusted paths by default. The path whitelist may be specified at run-time. * sshd(8): When a forced-command appears in both a certificate and an authorized keys/principals command= restriction, sshd will now refuse to accept the certificate unless they are identical. The previous (documented) behaviour of having the certificate forced-command override the other could be a bit confusing and error-prone. * sshd(8): Remove the UseLogin configuration directive and support for having /bin/login manage login sessions. - --- Security * ssh-agent(1): Will now refuse to load PKCS#11 modules from paths outside a trusted whitelist (run-time configurable). Requests to load modules could be passed via agent forwarding and an attacker could attempt to load a hostile PKCS#11 module across the forwarded agent channel: PKCS#11 modules are shared libraries, so this would result in code execution on the system running the ssh-agent if the attacker has control of the forwarded agent-socket (on the host running the sshd server) and the ability to write to the filesystem of the host running ssh-agent (usually the host running the ssh client). Reported by Jann Horn of Project Zero. * sshd(8): When privilege separation is disabled, forwarded Unix- domain sockets would be created by sshd(8) with the privileges of 'root' instead of the authenticated user. This release refuses Unix-domain socket forwarding when privilege separation is disabled (Privilege separation has been enabled by default for 14 years). Reported by Jann Horn of Project Zero. * sshd(8): Avoid theoretical leak of host private key material to privilege-separated child processes via realloc() when reading keys. No such leak was observed in practice for normal-sized keys, nor does a leak to the child processes directly expose key material to unprivileged users. Reported by Jann Horn of Project Zero. * sshd(8): The shared memory manager used by pre-authentication compression support had a bounds checks that could be elided by some optimising compilers. Additionally, this memory manager was incorrectly accessible when pre-authentication compression was disabled. This could potentially allow attacks against the privileged monitor process from the sandboxed privilege-separation process (a compromise of the latter would be required first). This release removes support for pre-authentication compression from sshd(8). Reported by Guido Vranken using the Stack unstable optimisation identification tool (http://css.csail.mit.edu/stack/) * sshd(8): Fix denial-of-service condition where an attacker who sends multiple KEXINIT messages may consume up to 128MB per connection. Reported by Shi Lei of Gear Team, Qihoo 360. * sshd(8): Validate address ranges for AllowUser and DenyUsers directives at configuration load time and refuse to accept invalid ones. It was previously possible to specify invalid CIDR address ranges (e.g. user@127.1.2.3/55) and these would always match, possibly resulting in granting access where it was not intended. Reported by Laurence Parry. - --- New Features * ssh(1): Add a proxy multiplexing mode to ssh(1) inspired by the version in PuTTY by Simon Tatham. This allows a multiplexing client to communicate with the master process using a subset of the SSH packet and channels protocol over a Unix-domain socket, with the main process acting as a proxy that translates channel IDs, etc. This allows multiplexing mode to run on systems that lack file- descriptor passing (used by current multiplexing code) and potentially, in conjunction with Unix-domain socket forwarding, with the client and multiplexing master process on different machines. Multiplexing proxy mode may be invoked using "ssh -O proxy ..." * sshd(8): Add a sshd_config DisableForwarding option that disables X11, agent, TCP, tunnel and Unix domain socket forwarding, as well as anything else we might implement in the future. Like the 'restrict' authorized_keys flag, this is intended to be a simple and future-proof way of restricting an account. * sshd(8), ssh(1): Support the "curve25519-sha256" key exchange method. This is identical to the currently-supported method named "curve25519-sha256@libssh.org". * sshd(8): Improve handling of SIGHUP by checking to see if sshd is already daemonised at startup and skipping the call to daemon(3) if it is. This ensures that a SIGHUP restart of sshd(8) will retain the same process-ID as the initial execution. sshd(8) will also now unlink the PidFile prior to SIGHUP restart and re-create it after a successful restart, rather than leaving a stale file in the case of a configuration error. bz#2641 * sshd(8): Allow ClientAliveInterval and ClientAliveCountMax directives to appear in sshd_config Match blocks. * sshd(8): Add %-escapes to AuthorizedPrincipalsCommand to match those supported by AuthorizedKeysCommand (key, key type, fingerprint, etc.) and a few more to provide access to the contents of the certificate being offered. * Added regression tests for string matching, address matching and string sanitisation functions. * Improved the key exchange fuzzer harness. - --- Bugfixes * ssh(1): Allow IdentityFile to successfully load and use certificates that have no corresponding bare public key. bz#2617 certificate id_rsa-cert.pub (and no id_rsa.pub). * ssh(1): Fix public key authentication when multiple authentication is in use and publickey is not just the first method attempted. bz#2642 * regress: Allow the PuTTY interop tests to run unattended. bz#2639 * ssh-agent(1), ssh(1): improve reporting when attempting to load keys from PKCS#11 tokens with fewer useless log messages and more detail in debug messages. bz#2610 * ssh(1): When tearing down ControlMaster connections, don't pollute stderr when LogLevel=quiet. * sftp(1): On ^Z wait for underlying ssh(1) to suspend before suspending sftp(1) to ensure that ssh(1) restores the terminal mode correctly if suspended during a password prompt. * ssh(1): Avoid busy-wait when ssh(1) is suspended during a password prompt. * ssh(1), sshd(8): Correctly report errors during sending of ext- info messages. * sshd(8): fix NULL-deref crash if sshd(8) received an out-of- sequence NEWKEYS message. * sshd(8): Correct list of supported signature algorithms sent in the server-sig-algs extension. bz#2547 * sshd(8): Fix sending ext_info message if privsep is disabled. * sshd(8): more strictly enforce the expected ordering of privilege separation monitor calls used for authentication and allow them only when their respective authentication methods are enabled in the configuration * sshd(8): Fix uninitialised optlen in getsockopt() call; harmless on Unix/BSD but potentially crashy on Cygwin. * Fix false positive reports caused by explicit_bzero(3) not being recognised as a memory initialiser when compiled with - fsanitize-memory. * sshd_config(5): Use 2001:db8::/32, the official IPv6 subnet for configuration examples. - --- Portability * On environments configured with Turkish locales, fall back to the C/POSIX locale to avoid errors in configuration parsing caused by that locale's unique handling of the letters 'i' and 'I'. bz#2643 * sftp-server(8), ssh-agent(1): Deny ptrace on OS X using ptrace(PT_DENY_ATTACH, ..) * ssh(1), sshd(8): Unbreak AES-CTR ciphers on old (~0.9.8) OpenSSL. * Fix compilation for libcrypto compiled without RIPEMD160 support. * contrib: Add a gnome-ssh-askpass3 with GTK+3 support. bz#2640 * sshd(8): Improve PRNG reseeding across privilege separation and force libcrypto to obtain a high-quality seed before chroot or sandboxing. * All: Explicitly test for broken strnvis. NetBSD added an strnvis and unfortunately made it incompatible with the existing one in OpenBSD and Linux's libbsd (the former having existed for over ten years). Try to detect this mess, and assume the only safe option if we're cross compiling. - OpenSSH 7.5 - --- Potentially-incompatible changes * This release deprecates the sshd_config UsePrivilegeSeparation option, thereby making privilege separation mandatory. Privilege separation has been on by default for almost 15 years and sandboxing has been on by default for almost the last five. * The format of several log messages emitted by the packet code has changed to include additional information about the user and their authentication state. Software that monitors ssh/sshd logs may need to account for these changes. For example: Connection closed by user x 1.1.1.1 port 1234 [preauth] Connection closed by authenticating user x 10.1.1.1 port 1234 [preauth] Connection closed by invalid user x 1.1.1.1 port 1234 [preauth] Affected messages include connection closure, timeout, remote disconnection, negotiation failure and some other fatal messages generated by the packet code. * [Portable OpenSSH only] This version removes support for building against OpenSSL versions prior to 1.0.1. OpenSSL stopped supporting versions prior to 1.0.1 over 12 months ago (i.e. they no longer receive fixes for security bugs). - --- Security * ssh(1), sshd(8): Fix weakness in CBC padding oracle countermeasures that allowed a variant of the attack fixed in OpenSSH 7.3 to proceed. Note that the OpenSSH client disables CBC ciphers by default, sshd offers them as lowest-preference options and will remove them by default entriely in the next release. Reported by Jean Paul Degabriele, Kenny Paterson, Martin Albrecht and Torben Hansen of Royal Holloway, University of London. * sftp-client(1): [portable OpenSSH only] On Cygwin, a client making a recursive file transfer could be maniuplated by a hostile server to perform a path-traversal attack. creating or modifying files outside of the intended target directory. Reported by Jann Horn of Google Project Zero. - --- New Features * ssh(1), sshd(8): Support "=-" syntax to easily remove methods from algorithm lists, e.g. Ciphers=-*cbc. bz#2671 - --- Bugfixes * sshd(1): Fix NULL dereference crash when key exchange start messages are sent out of sequence. * ssh(1), sshd(8): Allow form-feed characters to appear in configuration files. * sshd(8): Fix regression in OpenSSH 7.4 support for the server-sig-algs extension, where SHA2 RSA signature methods were not being correctly advertised. bz#2680 * ssh(1), ssh-keygen(1): Fix a number of case-sensitivity bugs in known_hosts processing. bz#2591 bz#2685 * ssh(1): Allow ssh to use certificates accompanied by a private key file but no corresponding plain *.pub public key. bz#2617 * ssh(1): When updating hostkeys using the UpdateHostKeys option, accept RSA keys if HostkeyAlgorithms contains any RSA keytype. Previously, ssh could ignore RSA keys when only the ssh-rsa-sha2-* methods were enabled in HostkeyAlgorithms and not the old ssh-rsa method. bz#2650 * ssh(1): Detect and report excessively long configuration file lines. bz#2651 * Merge a number of fixes found by Coverity and reported via Redhat and FreeBSD. Includes fixes for some memory and file descriptor leaks in error paths. bz#2687 * ssh-keyscan(1): Correctly hash hosts with a port number. bz#2692 * ssh(1), sshd(8): When logging long messages to stderr, don't truncate "\r\n" if the length of the message exceeds the buffer. bz#2688 * ssh(1): Fully quote [host]:port in generated ProxyJump/-J command- line; avoid confusion over IPv6 addresses and shells that treat square bracket characters specially. * ssh-keygen(1): Fix corruption of known_hosts when running "ssh-keygen -H" on a known_hosts containing already-hashed entries. * Fix various fallout and sharp edges caused by removing SSH protocol 1 support from the server, including the server banner string being incorrectly terminated with only \n (instead of \r\n), confusing error messages from ssh-keyscan bz#2583 and a segfault in sshd if protocol v.1 was enabled for the client and sshd_config contained references to legacy keys bz#2686. * ssh(1), sshd(8): Free fd_set on connection timeout. bz#2683 * sshd(8): Fix Unix domain socket forwarding for root (regression in OpenSSH 7.4). * sftp(1): Fix division by zero crash in "df" output when server returns zero total filesystem blocks/inodes. * ssh(1), ssh-add(1), ssh-keygen(1), sshd(8): Translate OpenSSL errors encountered during key loading to more meaningful error codes. bz#2522 bz#2523 * ssh-keygen(1): Sanitise escape sequences in key comments sent to printf but preserve valid UTF-8 when the locale supports it; bz#2520 * ssh(1), sshd(8): Return reason for port forwarding failures where feasible rather than always "administratively prohibited". bz#2674 * sshd(8): Fix deadlock when AuthorizedKeysCommand or AuthorizedPrincipalsCommand produces a lot of output and a key is matched early. bz#2655 * Regression tests: several reliability fixes. bz#2654 bz#2658 bz#2659 * ssh(1): Fix typo in ~C error message for bad port forward cancellation. bz#2672 * ssh(1): Show a useful error message when included config files can't be opened; bz#2653 * sshd(8): Make sshd set GSSAPIStrictAcceptorCheck=yes as the manual page (previously incorrectly) advertised. bz#2637 * sshd_config(5): Repair accidentally-deleted mention of %k token in AuthorizedKeysCommand; bz#2656 * sshd(8): Remove vestiges of previously removed LOGIN_PROGRAM; bz#2665 * ssh-agent(1): Relax PKCS#11 whitelist to include libexec and common 32-bit compatibility library directories. * sftp-client(1): Fix non-exploitable integer overflow in SSH2_FXP_NAME response handling. * ssh-agent(1): Fix regression in 7.4 of deleting PKCS#11-hosted keys. It was not possible to delete them except by specifying their full physical path. bz#2682 - --- Portability * sshd(8): Avoid sandbox errors for Linux S390 systems using an ICA crypto coprocessor. * sshd(8): Fix non-exploitable weakness in seccomp-bpf sandbox arg inspection. * ssh(1): Fix X11 forwarding on OSX where X11 was being started by launchd. bz#2341 * ssh-keygen(1), ssh(1), sftp(1): Fix output truncation for various that contain non-printable characters where the codeset in use is ASCII. * build: Fix builds that attempt to link a kerberised libldns. bz#2603 * build: Fix compilation problems caused by unconditionally defining _XOPEN_SOURCE in wide character detection. * sshd(8): Fix sandbox violations for clock_gettime VSDO syscall fallback on some Linux/X32 kernels. bz#2142 - OpenSSH 7.6 - --- Potentially-incompatible changes This release includes a number of changes that may affect existing configurations: * ssh(1): delete SSH protocol version 1 support, associated configuration options and documentation. * ssh(1)/sshd(8): remove support for the hmac-ripemd160 MAC. * ssh(1)/sshd(8): remove support for the arcfour, blowfish and CAST ciphers. * Refuse RSA keys <1024 bits in length and improve reporting for keys that do not meet this requirement. * ssh(1): do not offer CBC ciphers by default. - --- Security * sftp-server(8): in read-only mode, sftp-server was incorrectly permitting creation of zero-length files. Reported by Michal Zalewski. - --- New Features * ssh(1): add RemoteCommand option to specify a command in the ssh config file instead of giving it on the client's command line. This allows the configuration file to specify the command that will be executed on the remote host. * sshd(8): add ExposeAuthInfo option that enables writing details of the authentication methods used (including public keys where applicable) to a file that is exposed via a $SSH_USER_AUTH environment variable in the subsequent session. * ssh(1): add support for reverse dynamic forwarding. In this mode, ssh will act as a SOCKS4/5 proxy and forward connections to destinations requested by the remote SOCKS client. This mode is requested using extended syntax for the - R and RemoteForward options and, because it is implemented solely at the client, does not require the server be updated to be supported. * sshd(8): allow LogLevel directive in sshd_config Match blocks; bz#2717 * ssh-keygen(1): allow inclusion of arbitrary string or flag certificate extensions and critical options. * ssh-keygen(1): allow ssh-keygen to use a key held in ssh-agent as a CA when signing certificates. bz#2377 * ssh(1)/sshd(8): allow IPQoS=none in ssh/sshd to not set an explicit ToS/DSCP value and just use the operating system default. * ssh-add(1): added -q option to make ssh-add quiet on success. * ssh(1): expand the StrictHostKeyChecking option with two new settings. The first "accept-new" will automatically accept hitherto-unseen keys but will refuse connections for changed or invalid hostkeys. This is a safer subset of the current behaviour of StrictHostKeyChecking=no. The second setting "off", is a synonym for the current behaviour of StrictHostKeyChecking=no: accept new host keys, and continue connection for hosts with incorrect hostkeys. A future release will change the meaning of StrictHostKeyChecking=no to the behaviour of "accept-new". bz#2400 * ssh(1): add SyslogFacility option to ssh(1) matching the equivalent option in sshd(8). bz#2705 - --- Bugfixes * ssh(1): use HostKeyAlias if specified instead of hostname for matching host certificate principal names; bz#2728 * sftp(1): implement sorting for globbed ls; bz#2649 * ssh(1): add a user@host prefix to client's "Permission denied" messages, useful in particular when using "stacked" connections (e.g. ssh -J) where it's not clear which host is denying. bz#2720 * ssh(1): accept unknown EXT_INFO extension values that contain \0 characters. These are legal, but would previously cause fatal connection errors if received. * ssh(1)/sshd(8): repair compression statistics printed at connection exit * sftp(1): print '?' instead of incorrect link count (that the protocol doesn't provide) for remote listings. bz#2710 * ssh(1): return failure rather than fatal() for more cases during session multiplexing negotiations. Causes the session to fall back to a non-mux connection if they occur. bz#2707 * ssh(1): mention that the server may send debug messages to explain public key authentication problems under some circumstances; bz#2709 * Translate OpenSSL error codes to better report incorrect passphrase errors when loading private keys; bz#2699 * sshd(8): adjust compatibility patterns for WinSCP to correctly identify versions that implement only the legacy DH group exchange scheme. bz#2748 * ssh(1): print the "Killed by signal 1" message only at LogLevel verbose so that it is not shown at the default level; prevents it from appearing during ssh -J and equivalent ProxyCommand configs. bz#1906, bz#2744 * ssh-keygen(1): when generating all hostkeys (ssh-keygen -A), clobber existing keys if they exist but are zero length. zero-length keys could previously be made if ssh-keygen failed or was interrupted part way through generating them. bz#2561 * ssh(1): fix pledge(2) violation in the escape sequence "~&" used to place the current session in the background. * ssh-keyscan(1): avoid double-close() on file descriptors; bz#2734 * sshd(8): avoid reliance on shared use of pointers shared between monitor and child sshd processes. bz#2704 * sshd_config(8): document available AuthenticationMethods; bz#2453 * ssh(1): avoid truncation in some login prompts; bz#2768 * sshd(8): Fix various compilations failures, inc bz#2767 * ssh(1): make "--" before the hostname terminate argument processing after the hostname too. * ssh-keygen(1): switch from aes256-cbc to aes256-ctr for encrypting new-style private keys. Fixes problems related to private key handling for no-OpenSSL builds. bz#2754 * ssh(1): warn and do not attempt to use keys when the public and private halves do not match. bz#2737 * sftp(1): don't print verbose error message when ssh disconnects from under sftp. bz#2750 * sshd(8): fix keepalive scheduling problem: activity on a forwarded port from preventing the keepalive from being sent; bz#2756 * sshd(8): when started without root privileges, don't require the privilege separation user or path to exist. Makes running the regression tests easier without touching the filesystem. * Make integrity.sh regression tests more robust against timeouts. bz#2658 * ssh(1)/sshd(8): correctness fix for channels implementation: accept channel IDs greater than 0x7FFFFFFF. - --- Portability * sshd(9): drop two more privileges in the Solaris sandbox: PRIV_DAX_ACCESS and PRIV_SYS_IB_INFO; bz#2723 * sshd(8): expose list of completed authentication methods to PAM via the SSH_AUTH_INFO_0 PAM environment variable. bz#2408 * ssh(1)/sshd(8): fix several problems in the tun/tap forwarding code, mostly to do with host/network byte order confusion. bz#2735 * Add --with-cflags-after and --with-ldflags-after configure flags to allow setting CFLAGS/LDFLAGS after configure has completed. These are useful for setting sanitiser/fuzzing options that may interfere with configure's operation. * sshd(8): avoid Linux seccomp violations on ppc64le over the socketcall syscall. * Fix use of ldns when using ldns-config; bz#2697 * configure: set cache variables when cross-compiling. The cross- compiling fallback message was saying it assumed the test passed, but it wasn't actually set the cache variables and this would cause later tests to fail. * Add clang libFuzzer harnesses for public key parsing and signature verification. - packaging: * moving patches into a separate archive * first round of rebased patches: [-X11_trusted_forwarding] [-allow_root_password_login] [-blocksigalrm] [-cavstest-ctr] [-cavstest-kdf] [-disable_short_DH_parameters] [-eal3] [-enable_PAM_by_default] [-fips] [-fips_checks] [-gssapi_key_exchange] [-hostname_changes_when_forwarding_X] [-lastlog] [-missing_headers] [-pam_check_locks] [-pts_names_formatting] [-remove_xauth_cookies_on_exit] [-seccomp_geteuid] [-seccomp_getuid] [-seccomp_stat] [-seed-prng] [-send_locale] [-systemd-notify] * not rebased (obsoleted) patches (so far): [-additional_seccomp_archs] [-allow_DSS_by_default] [-default_protocol] [-dont_use_pthreads_in_PAM] [-eal3_obsolete] [-gssapimitm] [-saveargv-fix] * obviously removing all standalone patch files: [openssh-7.2p2-allow_root_password_login.patch] [openssh-7.2p2-allow_DSS_by_default.patch] [openssh-7.2p2-X11_trusted_forwarding.patch] [openssh-7.2p2-lastlog.patch] [openssh-7.2p2-enable_PAM_by_default.patch] [openssh-7.2p2-dont_use_pthreads_in_PAM.patch] [openssh-7.2p2-eal3.patch] [openssh-7.2p2-blocksigalrm.patch] [openssh-7.2p2-send_locale.patch] [openssh-7.2p2-hostname_changes_when_forwarding_X.patch] [openssh-7.2p2-remove_xauth_cookies_on_exit.patch] [openssh-7.2p2-pts_names_formatting.patch] [openssh-7.2p2-pam_check_locks.patch] [openssh-7.2p2-disable_short_DH_parameters.patch] [openssh-7.2p2-seccomp_getuid.patch] [openssh-7.2p2-seccomp_geteuid.patch] [openssh-7.2p2-seccomp_stat.patch] [openssh-7.2p2-additional_seccomp_archs.patch] [openssh-7.2p2-fips.patch] [openssh-7.2p2-cavstest-ctr.patch] [openssh-7.2p2-cavstest-kdf.patch] [openssh-7.2p2-seed-prng.patch] [openssh-7.2p2-gssapi_key_exchange.patch] [openssh-7.2p2-audit.patch] [openssh-7.2p2-audit_fixes.patch] [openssh-7.2p2-audit_seed_prng.patch] [openssh-7.2p2-login_options.patch] [openssh-7.2p2-disable_openssl_abi_check.patch] [openssh-7.2p2-no_fork-no_pid_file.patch] [openssh-7.2p2-host_ident.patch] [openssh-7.2p2-sftp_homechroot.patch] [openssh-7.2p2-sftp_force_permissions.patch] [openssh-7.2p2-X_forward_with_disabled_ipv6.patch] [openssh-7.2p2-ldap.patch] [openssh-7.2p2-IPv6_X_forwarding.patch] [openssh-7.2p2-ignore_PAM_with_UseLogin.patch] [openssh-7.2p2-prevent_timing_user_enumeration.patch] [openssh-7.2p2-limit_password_length.patch] [openssh-7.2p2-keep_slogin.patch] [openssh-7.2p2-kex_resource_depletion.patch] [openssh-7.2p2-verify_CIDR_address_ranges.patch] [openssh-7.2p2-restrict_pkcs11-modules.patch] [openssh-7.2p2-prevent_private_key_leakage.patch] [openssh-7.2p2-secure_unix_sockets_forwarding.patch] [openssh-7.2p2-ssh_case_insensitive_host_matching.patch] [openssh-7.2p2-disable_preauth_compression.patch] [openssh-7.2p2-s390_hw_crypto_syscalls.patch] [openssh-7.2p2-s390_OpenSSL-ibmpkcs11_syscalls.patch]- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- sshd_config is has now permissions 0600 in secure mode- Fix preauth seccomp separation on mainframes (bsc#1016709) [openssh-7.2p2-s390_hw_crypto_syscalls.patch] [openssh-7.2p2-s390_OpenSSL-ibmpkcs11_syscalls.patch] - enable case-insensitive hostname matching (bsc#1017099) [openssh-7.2p2-ssh_case_insensitive_host_matching.patch] - add CAVS tests [openssh-7.2p2-cavstest-ctr.patch] [openssh-7.2p2-cavstest-kdf.patch] - Adding missing pieces for user matching (bsc#1021626) - Properly verify CIDR masks in configuration (bsc#1005893) [openssh-7.2p2-verify_CIDR_address_ranges.patch] - Remove pre-auth compression support from the server to prevent possible cryptographic attacks. (CVE-2016-10012, bsc#1016370) [openssh-7.2p2-disable_preauth_compression.patch] - limit directories for loading PKCS11 modules (CVE-2016-10009, bsc#1016366) [openssh-7.2p2-restrict_pkcs11-modules.patch] - Prevent possible leaks of host private keys to low-privilege process handling authentication (CVE-2016-10011, bsc#1016369) [openssh-7.2p2-prevent_private_key_leakage.patch] - Do not allow unix socket forwarding when running without privilege separation (CVE-2016-10010, bsc#1016368) [openssh-7.2p2-secure_unix_sockets_forwarding.patch] - prevent resource depletion during key exchange (bsc#1005480, CVE-2016-8858) [openssh-7.2p2-kex_resource_depletion.patch] - fix suggested command for removing conflicting server keys from the known_hosts file (bsc#1006221) - enable geteuid{,32} syscalls on mainframes, since it may be called from libica/ibmica on machines with hardware crypto accelerator (bsc#1004258) [openssh-7.2p2-seccomp_geteuid.patch] - fix regression of (bsc#823710) [openssh-7.2p2-audit_fixes.patch] - add slogin (removed upstreams) [openssh-7.2p2-keep_slogin.patch] - require OpenSSL < 1.1 where that one is a default- sshd.service: Set TasksMax=infinity, as there should be no limit on the amount of tasks sshd can run.- remaining patches that were still missing since the update to 7.2p2 (FATE#319675): - allow X forwarding over IPv4 when IPv6 sockets is not available [openssh-7.2p2-X_forward_with_disabled_ipv6.patch] - do not write PID file when not daemonizing [openssh-7.2p2-no_fork-no_pid_file.patch] - use correct options when invoking login [openssh-7.2p2-login_options.patch] - helper application for retrieving users' public keys from an LDAP server [openssh-7.2p2-ldap.patch] - allow forcing permissions over sftp [openssh-7.2p2-sftp_force_permissions.patch] - do not perform run-time checks for OpenSSL API/ABI change [openssh-7.2p2-disable_openssl_abi_check.patch] - suggest commands for cleaning known hosts file [openssh-7.2p2-host_ident.patch] - sftp home chroot patch [openssh-7.2p2-sftp_homechroot.patch] - ssh sessions auditing [openssh-7.2p2-audit.patch] - enable seccomp sandbox on additional architectures [openssh-7.2p2-additional_seccomp_archs.patch] - fix forwarding with IPv6 addresses in DISPLAY (bnc#847710) [openssh-7.2p2-IPv6_X_forwarding.patch] - ignore PAM environment when using login (bsc#975865, CVE-2015-8325) [openssh-7.2p2-ignore_PAM_with_UseLogin.patch] - limit accepted password length (prevents possible DoS) (bsc#992533, CVE-2016-6515) [openssh-7.2p2-limit_password_length.patch] - Prevent user enumeration through the timing of password processing (bsc#989363, CVE-2016-6210) [openssh-7.2p2-prevent_timing_user_enumeration.patch] - Add auditing for PRNG re-seeding [openssh-7.2p2-audit_seed_prng.patch]- FIPS compatibility (no selfchecks, only crypto restrictions) [openssh-7.2p2-fips.patch] - PRNG re-seeding [openssh-7.2p2-seed-prng.patch] - preliminary version of GSSAPI KEX [openssh-7.2p2-gssapi_key_exchange.patch]- added gpg signature- enable support for SSHv1 protocol and discourage its usage (bsc#983307) - enable DSA by default for backward compatibility and discourage its usage (bsc#983784) [openssh-7.2p2-allow_DSS_by_default.patch]- enable trusted X11 forwarding by default [openssh-7.2p2-X11_trusted_forwarding.patch] - set UID for lastlog properly [openssh-7.2p2-lastlog.patch] - enable use of PAM by default [openssh-7.2p2-enable_PAM_by_default.patch] - copy command line arguments properly [openssh-7.2p2-saveargv-fix.patch] - do not use pthreads in PAM code [openssh-7.2p2-dont_use_pthreads_in_PAM.patch] - fix paths in documentation [openssh-7.2p2-eal3.patch] - prevent race consitions triggered by SIGALRM [openssh-7.2p2-blocksigalrm.patch] - do send and accept locale environment variables by default [openssh-7.2p2-send_locale.patch] - handle hostnames changes during X forwarding [openssh-7.2p2-hostname_changes_when_forwarding_X.patch] - try to remove xauth cookies on exit [openssh-7.2p2-remove_xauth_cookies_on_exit.patch] - properly format pts names for ?tmp? log files [openssh-7.2p2-pts_names_formatting.patch] - check locked accounts when using PAM [openssh-7.2p2-pam_check_locks.patch] - chenge default PermitRootLogin to 'yes' to prevent unwanted surprises on updates from older versions. See README.SUSE for details [openssh-7.2p2-allow_root_password_login.patch] - Disable DH parameters under 2048 bits by default and allow lowering the limit back to the RFC 4419 specified minimum through an option (bsc#932483, bsc#948902) [openssh-7.2p2-disable_short_DH_parameters.patch] - Add getuid() and stat() syscalls to the seccomp filter (bsc#912436) [openssh-7.2p2-seccomp_getuid.patch, openssh-7.2p2-seccomp_stat.patch]- upgrade to 7.2p2 upstream package without any SUSE patches Distilled upstream log: - OpenSSH 6.7 Potentially-incompatible changes: * sshd(8): The default set of ciphers and MACs has been altered to remove unsafe algorithms. In particular, CBC ciphers and arcfour* are disabled by default. The full set of algorithms remains available if configured explicitly via the Ciphers and MACs sshd_config options. * sshd(8): Support for tcpwrappers/libwrap has been removed. * OpenSSH 6.5 and 6.6 have a bug that causes ~0.2% of connections using the curve25519-sha256@libssh.org KEX exchange method to fail when connecting with something that implements the specification correctly. OpenSSH 6.7 disables this KEX method when speaking to one of the affected versions. New Features: * ssh(1), sshd(8): Add support for Unix domain socket forwarding. A remote TCP port may be forwarded to a local Unix domain socket and vice versa or both ends may be a Unix domain socket. * ssh(1), ssh-keygen(1): Add support for SSHFP DNS records for ED25519 key types. * sftp(1): Allow resumption of interrupted uploads. * ssh(1): When rekeying, skip file/DNS lookups of the hostkey if it is the same as the one sent during initial key exchange * sshd(8): Allow explicit ::1 and 127.0.0.1 forwarding bind addresses when GatewayPorts=no; allows client to choose address family * sshd(8): Add a sshd_config PermitUserRC option to control whether ~/.ssh/rc is executed, mirroring the no-user-rc authorized_keys option * ssh(1): Add a %C escape sequence for LocalCommand and ControlPath that expands to a unique identifer based on a hash of the tuple of (local host, remote user, hostname, port). Helps avoid exceeding miserly pathname limits for Unix domain sockets in multiplexing control paths * sshd(8): Make the "Too many authentication failures" message include the user, source address, port and protocol in a format similar to the authentication success / failure messages Bugfixes: * sshd(8): Fix remote forwarding with the same listen port but different listen address. * ssh(1): Fix inverted test that caused PKCS#11 keys that were explicitly listed in ssh_config or on the commandline not to be preferred. * ssh-keygen(1): Fix bug in KRL generation: multiple consecutive revoked certificate serial number ranges could be serialised to an invalid format. Readers of a broken KRL caused by this bug will fail closed, so no should-have-been-revoked key will be accepted. * ssh(1): Reflect stdio-forward ("ssh -W host:port ...") failures in exit status. Previously we were always returning 0 * ssh(1), ssh-keygen(1): Make Ed25519 keys' title fit properly in the randomart border * ssh-agent(1): Only cleanup agent socket in the main agent process and not in any subprocesses it may have started (e.g. forked askpass). Fixes agent sockets being zapped when askpass processes fatal() * ssh-add(1): Make stdout line-buffered; saves partial output getting lost when ssh-add fatal()s part-way through (e.g. when listing keys from an agent that supports key types that ssh-add doesn't) * ssh-keygen(1): When hashing or removing hosts, don't choke on @revoked markers and don't remove @cert-authority markers * ssh(1): Don't fatal when hostname canonicalisation fails and a ProxyCommand is in use; continue and allow the ProxyCommand to connect anyway (e.g. to a host with a name outside the DNS behind a bastion) * scp(1): When copying local->remote fails during read, don't send uninitialised heap to the remote end. * sftp(1): Fix fatal "el_insertstr failed" errors when tab-completing filenames with a single quote char somewhere in the string * ssh-keyscan(1): Scan for Ed25519 keys by default. * ssh(1): When using VerifyHostKeyDNS with a DNSSEC resolver, down-convert any certificate keys to plain keys and attempt SSHFP resolution. Prevents a server from skipping SSHFP lookup and forcing a new-hostkey dialog by offering only certificate keys. - OpenSSH 6.8 Potentially-incompatible changes: * sshd(8): UseDNS now defaults to 'no'. Configurations that match against the client host name (via sshd_config or authorized_keys) may need to re-enable it or convert to matching against addresses. New Features: * Add FingerprintHash option to ssh(1) and sshd(8), and equivalent command-line flags to the other tools to control algorithm used for key fingerprints. The default changes from MD5 to SHA256 and format from hex to base64. Fingerprints now have the hash algorithm prepended. An example of the new format: SHA256:mVPwvezndPv/ARoIadVY98vAC0g+P/5633yTC4d/wXE Please note that visual host keys will also be different. * ssh(1), sshd(8): Experimental host key rotation support. Add a protocol extension for a server to inform a client of all its available host keys after authentication has completed. The client may record the keys in known_hosts, allowing it to upgrade to better host key algorithms and a server to gracefully rotate its keys. The client side of this is controlled by a UpdateHostkeys config option (default off). * ssh(1): Add a ssh_config HostbasedKeyType option to control which host public key types are tried during host-based authentication. * ssh(1), sshd(8): fix connection-killing host key mismatch errors when sshd offers multiple ECDSA keys of different lengths. * ssh(1): when host name canonicalisation is enabled, try to parse host names as addresses before looking them up for canonicalisation. fixes bz#2074 and avoiding needless DNS lookups in some cases. * ssh-keygen(1), sshd(8): Key Revocation Lists (KRLs) no longer require OpenSSH to be compiled with OpenSSL support. * ssh(1), ssh-keysign(8): Make ed25519 keys work for host based authentication. * sshd(8): SSH protocol v.1 workaround for the Meyer, et al, Bleichenbacher Side Channel Attack. Fake up a bignum key before RSA decryption. * sshd(8): Remember which public keys have been used for authentication and refuse to accept previously-used keys. This allows AuthenticationMethods=publickey,publickey to require that users authenticate using two _different_ public keys. * sshd(8): add sshd_config HostbasedAcceptedKeyTypes and PubkeyAcceptedKeyTypes options to allow sshd to control what public key types will be accepted. Currently defaults to all. * sshd(8): Don't count partial authentication success as a failure against MaxAuthTries. * ssh(1): Add RevokedHostKeys option for the client to allow text-file or KRL-based revocation of host keys. * ssh-keygen(1), sshd(8): Permit KRLs that revoke certificates by serial number or key ID without scoping to a particular CA. * ssh(1): Add a "Match canonical" criteria that allows ssh_config Match blocks to trigger only in the second config pass. * ssh(1): Add a -G option to ssh that causes it to parse its configuration and dump the result to stdout, similar to "sshd -T". * ssh(1): Allow Match criteria to be negated. E.g. "Match !host". * The regression test suite has been extended to cover more OpenSSH features. The unit tests have been expanded and now cover key exchange. Bugfixes: * ssh-keyscan(1): ssh-keyscan has been made much more robust again servers that hang or violate the SSH protocol. * ssh(1), ssh-keygen(1): Fix regression: Key path names were being lost as comment fields. * ssh(1): Allow ssh_config Port options set in the second config parse phase to be applied (they were being ignored). * ssh(1): Tweak config re-parsing with host canonicalisation - make the second pass through the config files always run when host name canonicalisation is enabled (and not whenever the host name changes) * ssh(1): Fix passing of wildcard forward bind addresses when connection multiplexing is in use * ssh-keygen(1): Fix broken private key conversion from non-OpenSSH formats. * ssh-keygen(1): Fix KRL generation bug when multiple CAs are in use. * Various fixes to manual pages - OpenSSH 6.9 Security: * ssh(1): when forwarding X11 connections with ForwardX11Trusted=no, connections made after ForwardX11Timeout expired could be permitted and no longer subject to XSECURITY restrictions because of an ineffective timeout check in ssh(1) coupled with "fail open" behaviour in the X11 server when clients attempted connections with expired credentials. This problem was reported by Jann Horn. * ssh-agent(1): fix weakness of agent locking (ssh-add -x) to password guessing by implementing an increasing failure delay, storing a salted hash of the password rather than the password itself and using a timing-safe comparison function for verifying unlock attempts. This problem was reported by Ryan Castellucci. New Features: * ssh(1), sshd(8): promote chacha20-poly1305@openssh.com to be the default cipher * sshd(8): support admin-specified arguments to AuthorizedKeysCommand * sshd(8): add AuthorizedPrincipalsCommand that allows retrieving authorized principals information from a subprocess rather than a file. * ssh(1), ssh-add(1): support PKCS#11 devices with external PIN entry devices * sshd(8): allow GSSAPI host credential check to be relaxed for multihomed hosts via GSSAPIStrictAcceptorCheck option * ssh-keygen(1): support "ssh-keygen -lF hostname" to search known_hosts and print key hashes rather than full keys. * ssh-agent(1): add -D flag to leave ssh-agent in foreground without enabling debug mode Bugfixes: * ssh(1), sshd(8): deprecate legacy SSH2_MSG_KEX_DH_GEX_REQUEST_OLD message and do not try to use it against some 3rd-party SSH implementations that use it (older PuTTY, WinSCP). * Many fixes for problems caused by compile-time deactivation of SSH1 support (including bz#2369) * ssh(1), sshd(8): cap DH-GEX group size at 4Kbits for Cisco implementations as some would fail when attempting to use group sizes >4K * ssh(1): fix out-of-bound read in EscapeChar configuration option parsing * sshd(8): fix application of PermitTunnel, LoginGraceTime, AuthenticationMethods and StreamLocalBindMask options in Match blocks * ssh(1), sshd(8): improve disconnection message on TCP reset; bz#2257 * ssh(1): remove failed remote forwards established by muliplexing from the list of active forwards * sshd(8): make parsing of authorized_keys "environment=" options independent of PermitUserEnv being enabled * sshd(8): fix post-auth crash with permitopen=none * ssh(1), ssh-add(1), ssh-keygen(1): allow new-format private keys to be encrypted with AEAD ciphers * ssh(1): allow ListenAddress, Port and AddressFamily configuration options to appear in any order * sshd(8): check for and reject missing arguments for VersionAddendum and ForceCommand * ssh(1), sshd(8): don't treat unknown certificate extensions as fatal * ssh-keygen(1): make stdout and stderr output consistent * ssh(1): mention missing DISPLAY environment in debug log when X11 forwarding requested * sshd(8): correctly record login when UseLogin is set * sshd(8): Add some missing options to sshd -T output and fix output of VersionAddendum and HostCertificate. bz#2346 * Document and improve consistency of options that accept a "none" argument" TrustedUserCAKeys, RevokedKeys (bz#2382), AuthorizedPrincipalsFile (bz#2288) * ssh(1): include remote username in debug output * sshd(8): avoid compatibility problem with some versions of Tera Term, which would crash when they received the hostkeys notification message (hostkeys-00@openssh.com) * sshd(8): mention ssh-keygen -E as useful when comparing legacy MD5 host key fingerprints * ssh(1): clarify pseudo-terminal request behaviour and use make manual language consistent * ssh(1): document that the TERM environment variable is not subject to SendEnv and AcceptEnv - OpenSSH 7.0: This focuses primarily on deprecating weak, legacy and/or unsafe cryptography. Security: * sshd(8): OpenSSH 6.8 and 6.9 incorrectly set TTYs to be world- writable. Local attackers may be able to write arbitrary messages to logged-in users, including terminal escape sequences. Reported by Nikolay Edigaryev. * sshd(8): Portable OpenSSH only: Fixed a privilege separation weakness related to PAM support. Attackers who could successfully compromise the pre-authentication process for remote code execution and who had valid credentials on the host could impersonate other users. Reported by Moritz Jodeit. * sshd(8): Portable OpenSSH only: Fixed a use-after-free bug related to PAM support that was reachable by attackers who could compromise the pre-authentication process for remote code execution. Also reported by Moritz Jodeit. * sshd(8): fix circumvention of MaxAuthTries using keyboard- interactive authentication. By specifying a long, repeating keyboard-interactive "devices" string, an attacker could request the same authentication method be tried thousands of times in a single pass. The LoginGraceTime timeout in sshd(8) and any authentication failure delays implemented by the authentication mechanism itself were still applied. Found by Kingcope. Potentially-incompatible Changes: * Support for the legacy SSH version 1 protocol is disabled by default at compile time. * Support for the 1024-bit diffie-hellman-group1-sha1 key exchange is disabled by default at run-time. It may be re-enabled using the instructions in README.legacy or http://www.openssh.com/legacy.html * Support for ssh-dss, ssh-dss-cert-* host and user keys is disabled by default at run-time. These may be re-enabled using the instructions at http://www.openssh.com/legacy.html * Support for the legacy v00 cert format has been removed. * The default for the sshd_config(5) PermitRootLogin option has changed from "yes" to "prohibit-password". * PermitRootLogin=without-password/prohibit-password now bans all interactive authentication methods, allowing only public-key, hostbased and GSSAPI authentication (previously it permitted keyboard-interactive and password-less authentication if those were enabled). New Features: * ssh_config(5): add PubkeyAcceptedKeyTypes option to control which public key types are available for user authentication. * sshd_config(5): add HostKeyAlgorithms option to control which public key types are offered for host authentications. * ssh(1), sshd(8): extend Ciphers, MACs, KexAlgorithms, HostKeyAlgorithms, PubkeyAcceptedKeyTypes and HostbasedKeyTypes options to allow appending to the default set of algorithms instead of replacing it. Options may now be prefixed with a '+' to append to the default, e.g. "HostKeyAlgorithms=+ssh-dss". * sshd_config(5): PermitRootLogin now accepts an argument of 'prohibit-password' as a less-ambiguous synonym of 'without- password'. Bugfixes: * ssh(1), sshd(8): add compatability workarounds for Cisco and more PuTTY versions. * Fix some omissions and errors in the PROTOCOL and PROTOCOL.mux documentation relating to Unix domain socket forwarding * ssh(1): Improve the ssh(1) manual page to include a better description of Unix domain socket forwarding * ssh(1), ssh-agent(1): skip uninitialised PKCS#11 slots, fixing failures to load keys when they are present. * ssh(1), ssh-agent(1): do not ignore PKCS#11 hosted keys that wth empty CKA_ID * sshd(8): clarify documentation for UseDNS option - OpenSSH 7.1: Security: * sshd(8): OpenSSH 7.0 contained a logic error in PermitRootLogin= prohibit-password/without-password that could, depending on compile-time configuration, permit password authentication to root while preventing other forms of authentication. This problem was reported by Mantas Mikulenas. Bugfixes: * ssh(1), sshd(8): add compatability workarounds for FuTTY * ssh(1), sshd(8): refine compatability workarounds for WinSCP * Fix a number of memory faults (double-free, free of uninitialised memory, etc) in ssh(1) and ssh-keygen(1). Reported by Mateusz Kocielski. - OpenSSH 7.1p2: * SECURITY: ssh(1): The OpenSSH client code between 5.4 and 7.1 contains experimential support for resuming SSH-connections (roaming). The matching server code has never been shipped, but the client code was enabled by default and could be tricked by a malicious server into leaking client memory to the server, including private client user keys. The authentication of the server host key prevents exploitation by a man-in-the-middle, so this information leak is restricted to connections to malicious or compromised servers. MITIGATION: For OpenSSH >= 5.4 the vulnerable code in the client can be completely disabled by adding 'UseRoaming no' to the gobal ssh_config(5) file, or to user configuration in ~/.ssh/config, or by passing -oUseRoaming=no on the command line. PATCH: See below for a patch to disable this feature (Disabling Roaming in the Source Code). This problem was reported by the Qualys Security Advisory team. * SECURITY: Eliminate the fallback from untrusted X11-forwarding to trusted forwarding for cases when the X server disables the SECURITY extension. Reported by Thomas Hoger. * SECURITY: Fix an out of-bound read access in the packet handling code. Reported by Ben Hawkes. * PROTOCOL: Correctly interpret the 'first_kex_follows' option during the intial key exchange. Reported by Matt Johnston. * Further use of explicit_bzero has been added in various buffer handling code paths to guard against compilers aggressively doing dead-store removal. Potentially-incompatible changes: * This release disables a number of legacy cryptographic algorithms by default in ssh: + Several ciphers blowfish-cbc, cast128-cbc, all arcfour variants and the rijndael-cbc aliases for AES. + MD5-based and truncated HMAC algorithms. - OpenSSH 7.2: Security: * ssh(1), sshd(8): remove unfinished and unused roaming code (was already forcibly disabled in OpenSSH 7.1p2). * ssh(1): eliminate fallback from untrusted X11 forwarding to trusted forwarding when the X server disables the SECURITY extension. * ssh(1), sshd(8): increase the minimum modulus size supported for diffie-hellman-group-exchange to 2048 bits. * sshd(8): pre-auth sandboxing is now enabled by default (previous releases enabled it for new installations via sshd_config). New Features: * all: add support for RSA signatures using SHA-256/512 hash algorithms based on draft-rsa-dsa-sha2-256-03.txt and draft-ssh-ext-info-04.txt. * ssh(1): Add an AddKeysToAgent client option which can be set to 'yes', 'no', 'ask', or 'confirm', and defaults to 'no'. When enabled, a private key that is used during authentication will be added to ssh-agent if it is running (with confirmation enabled if set to 'confirm'). * sshd(8): add a new authorized_keys option "restrict" that includes all current and future key restrictions (no-*-forwarding, etc.). Also add permissive versions of the existing restrictions, e.g. "no-pty" -> "pty". This simplifies the task of setting up restricted keys and ensures they are maximally-restricted, regardless of any permissions we might implement in the future. * ssh(1): add ssh_config CertificateFile option to explicitly list certificates. bz#2436 * ssh-keygen(1): allow ssh-keygen to change the key comment for all supported formats. * ssh-keygen(1): allow fingerprinting from standard input, e.g. "ssh-keygen -lf -" * ssh-keygen(1): allow fingerprinting multiple public keys in a file, e.g. "ssh-keygen -lf ~/.ssh/authorized_keys" bz#1319 * sshd(8): support "none" as an argument for sshd_config Foreground and ChrootDirectory. Useful inside Match blocks to override a global default. bz#2486 * ssh-keygen(1): support multiple certificates (one per line) and reading from standard input (using "-f -") for "ssh-keygen -L" * ssh-keyscan(1): add "ssh-keyscan -c ..." flag to allow fetching certificates instead of plain keys. * ssh(1): better handle anchored FQDNs (e.g. 'cvs.openbsd.org') in hostname canonicalisation - treat them as already canonical and remove the trailing '.' before matching ssh_config. Bugfixes: * sftp(1): existing destination directories should not terminate recursive uploads (regression in openssh 6.8) * ssh(1), sshd(8): correctly send back SSH2_MSG_UNIMPLEMENTED replies to unexpected messages during key exchange. * ssh(1): refuse attempts to set ConnectionAttempts=0, which does not make sense and would cause ssh to print an uninitialised stack variable. * ssh(1): fix errors when attempting to connect to scoped IPv6 addresses with hostname canonicalisation enabled. * sshd_config(5): list a couple more options usable in Match blocks. * sshd(8): fix "PubkeyAcceptedKeyTypes +..." inside a Match block. * ssh(1): expand tilde characters in filenames passed to -i options before checking whether or not the identity file exists. Avoids confusion for cases where shell doesn't expand (e.g. "-i ~/file" vs. "-i~/file"). * ssh(1): do not prepend "exec" to the shell command run by "Match exec" in a config file, which could cause some commands to fail in certain environments. * ssh-keyscan(1): fix output for multiple hosts/addrs on one line when host hashing or a non standard port is in use * sshd(8): skip "Could not chdir to home directory" message when ChrootDirectory is active. * ssh(1): include PubkeyAcceptedKeyTypes in ssh -G config dump. * sshd(8): avoid changing TunnelForwarding device flags if they are already what is needed; makes it possible to use tun/tap networking as non-root user if device permissions and interface flags are pre-established * ssh(1), sshd(8): RekeyLimits could be exceeded by one packet. * ssh(1): fix multiplexing master failure to notice client exit. * ssh(1), ssh-agent(1): avoid fatal() for PKCS11 tokens that present empty key IDs. * sshd(8): avoid printf of NULL argument. * ssh(1), sshd(8): allow RekeyLimits larger than 4GB. * ssh-keygen(1): sshd(8): fix several bugs in (unused) KRL signature support. * ssh(1), sshd(8): fix connections with peers that use the key exchange guess feature of the protocol. * sshd(8): include remote port number in log messages. * ssh(1): don't try to load SSHv1 private key when compiled without SSHv1 support. * ssh-agent(1), ssh(1): fix incorrect error messages during key loading and signing errors. * ssh-keygen(1): don't leave empty temporary files when performing known_hosts file edits when known_hosts doesn't exist. * sshd(8): correct packet format for tcpip-forward replies for requests that don't allocate a port * ssh(1), sshd(8): fix possible hang on closed output. * ssh(1): expand %i in ControlPath to UID. * ssh(1), sshd(8): fix return type of openssh_RSA_verify. * ssh(1), sshd(8): fix some option parsing memory leaks. * ssh(1): add a some debug output before DNS resolution; it's a place where ssh could previously silently stall in cases of unresponsive DNS servers. * ssh(1): remove spurious newline in visual hostkey. * ssh(1): fix printing (ssh -G ...) of HostKeyAlgorithms=+... * ssh(1): fix expansion of HostkeyAlgorithms=+... Documentation: * ssh_config(5), sshd_config(5): update default algorithm lists to match current reality. * ssh(1): mention -Q key-plain and -Q key-cert query options. * sshd_config(8): more clearly describe what AuthorizedKeysFile=none does. * ssh_config(5): better document ExitOnForwardFailure. * sshd(5): mention internal DH-GEX fallback groups in manual. * sshd_config(5): better description for MaxSessions option. Portability: * sshd(8): fix multiple authentication using S/Key. - OpenSSH 7.2p2: Security: * sshd(8): sanitise X11 authentication credentials to avoid xauth command injection when X11Forwarding is enabled. (removing patches from previous version: * CVE-2016-0777_CVE-2016-0778.patch * openssh-6.6p1-X11-forwarding.patch * openssh-6.6p1-X_forward_with_disabled_ipv6.patch * openssh-6.6p1-audit1-remove_duplicit_audit.patch * openssh-6.6p1-audit2-better_audit_of_user_actions.patch * openssh-6.6p1-audit3-key_auth_usage-fips.patch * openssh-6.6p1-audit3-key_auth_usage.patch * openssh-6.6p1-audit4-kex_results-fips.patch * openssh-6.6p1-audit4-kex_results.patch * openssh-6.6p1-audit5-session_key_destruction.patch * openssh-6.6p1-audit6-server_key_destruction.patch * openssh-6.6p1-audit7-libaudit_compat.patch * openssh-6.6p1-audit8-libaudit_dns_timeouts.patch * openssh-6.6p1-blocksigalrm.patch * openssh-6.6p1-curve25519-6.6.1p1.patch * openssh-6.6p1-default-protocol.patch * openssh-6.6p1-disable-openssl-abi-check.patch * openssh-6.6p1-eal3.patch * openssh-6.6p1-fingerprint_hash.patch * openssh-6.6p1-fips-checks.patch * openssh-6.6p1-fips.patch * openssh-6.6p1-gssapi_key_exchange.patch * openssh-6.6p1-gssapimitm.patch * openssh-6.6p1-host_ident.patch * openssh-6.6p1-key-converter.patch * openssh-6.6p1-lastlog.patch * openssh-6.6p1-ldap.patch * openssh-6.6p1-login_options.patch * openssh-6.6p1-no_fork-no_pid_file.patch * openssh-6.6p1-pam-check-locks.patch * openssh-6.6p1-pam-fix2.patch * openssh-6.6p1-pam-fix3.patch * openssh-6.6p1-pts.patch * openssh-6.6p1-saveargv-fix.patch * openssh-6.6p1-seccomp_getuid.patch * openssh-6.6p1-seccomp_stat.patch * openssh-6.6p1-seed-prng.patch * openssh-6.6p1-send_locale.patch * openssh-6.6p1-sftp_force_permissions.patch * openssh-6.6p1-sftp_homechroot.patch * openssh-6.6p1-xauth.patch * openssh-6.6p1-xauthlocalhostname.patch)- update seccomp sandbox that broke after OpenSSL update (bsc#912436, bsc#977812) [openssh-6.6p1-seccomp_stat.patch]- openssh-6.6p1-ldap.patch: replace TRUE/FALSE with 1/0, since this defines did come via an indirect header inclusion and are not everywhere defined.- CVE-2016-0777, bsc#961642, CVE-2016-0778, bsc#961645 Add CVE-2016-0777_CVE-2016-0778.patch to disable the roaming code to prevent information leak and buffer overflow- gpg signature and keyring added. pub 3200R/6D920D30 2013-12-10 [expires: 2021-01-01] uid Damien Miller sub 3200R/672A1105 2013-12-10 [expires: 2021-01-01]- fix bashisms in sshd.init script/bin/sh/bin/sh/bin/sh/bin/sh/bin/shs390zl34 1702631824 8.4p1-150300.3.27.18.4p1-150300.3.27.18.4p1-150300.3.27.1 sshdslp.reg.dssh.regsshd_configSuSEfirewall2.dservicessshdsftp-serversshd.servicesshd.confrcsshdsshdsshd-gen-keys-startsysconfig.sshsshd_config.5.gzsftp-server.8.gzsshd.8.gzsshd/etc/pam.d//etc//etc/slp.reg.d//etc/ssh//etc/sysconfig//etc/sysconfig/SuSEfirewall2.d//etc/sysconfig/SuSEfirewall2.d/services//usr/lib/ssh//usr/lib/systemd/system//usr/lib/sysusers.d//usr/sbin//usr/share/fillup-templates//usr/share/man/man5//usr/share/man/man8//var/lib/-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:31680/SUSE_SLE-15-SP3_Update/268428db18d2d812509d64c4e89f84c4-openssh.SUSE_SLE-15-SP3_Updatecpioxz5s390x-suse-linuxASCII textdirectoryELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b31823bfd5ff600e2b3d46ee0769c2a5e267f837, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=1dd62cd592a45408cb7115cb505d2dbb078ddd15, for GNU/Linux 3.2.0, strippedPOSIX shell script, ASCII text executabletroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)4!R#RRRRRRRRRRR!RRR"R0R$RPRR-R(R*R/R!R RRRRRRRRRRRRRR&R R)R,RR.R0RR+R%R'RRRv/nuSM9Aauditutf-8ff77e71b68aee193356bbf439a2db331e55622c1afbe060a5a360bc7fd8f6280?P7zXZ !t/Y] crv(vX0z +NBC^7δLQu IpeaN_{?y b#R¤#WH/$7A{Ah$rv !A\jMBYqϗaC;5p/0O~<7b=b!0t@'@vd]+-EϢ__[ڱJF 0l#$teIUx b#Yq0ξWr=Vb>I?>=r>m1v:%<7Mюuۺ +Xiz),8./hYXwQ4 vJX+^۷Eu}jO|jEb-!@[f!e u$ ĖtqG.6E$XI9l+׵c["2d k`` `2"QT&@/~UD =arN"R0J֛^,0)ӻBIfnYP @ siGG(.&~qC5~%-euT:uYDXh/Yz.en[ "]!o(B#tLV̤^:1uxg%tq_]чSֵAm9D,r6rGxSuRʸ7mOXotJ̓e@rp )oʶSqֺ ;jʫ~/B^|@&h$>?l2p;2WkBSM E>AoܑW>62瞻A64}ezl=.^{E4 bHkӓ,؅<dIwK0)]n݋6$'69Jm!B4U;᫤'CFEz!#J r4{b Ќ4H/]b3AxѼhgK*7n|+-/\;8b1+%rݭ`~c^C4*e֚geD!_Y j1>MGi3Y}Xɔ./ @ 'o{@-t0LFlva``QEQPBtD= .,+x{A7 BiT~ftx R=A&p5 Qo{ Ʀ,,0/iA?G$MDCǛ@cqe$PŭuEIķ)4 t^&ۤ 9P,y`.a_Oi":ibZ%z@BD†ʋ4,Oj pQT`E{P7cN!1*PT)I{tF9tTOM,`!'lmm0^hZqB<>$ꆄ0z!QeSOuXZ/>"\74i}w*@'x=j.^#3W@.;0uЩWLXӨglNIV:+7vC#9]1 m'pg9_'pqL:_0jYg_sɭTWʑ^gi"K^jBUNχV p+ x{4r5&G'b|[c;,Ei6U] `2BC{#o=tNǼ 1S;ISViHM+WZݛeeu, yD3]yv`G]ŝ^1 Fo#=%/H #uFfP,ڦ,kC>m$+l8/ttf 㮕WDf\\vF;*^zIuDjXj`B';F"a0!G2 +bsw`D,MHՏD@/%Y4)Ђ?z#pem=X ;YJz@TjgiB?odƥl%HlTs !}HdraŽ"f4ڄ[VP~pxM0VW] 5%X %q}W~4Fή/5AWs{]" xĄ}@MKԻ"Q@I1- ~u$tvzP.ے>XH05؞Ȯ' WpivX(.r >*&@ؿ$䲍D^0|&!6Bmm@WTu>b? `;bxߙYLtg!^ӆ5 ufeĈv Y --r\_ 3}iPap= 8s[@l;&zlTb斑FE=7DԱ`dt:KfPw k=J-8ЬD`r0;zېJ<Y)꫍ʰ'hFKj9`@TХRԸxRïPqvԡ=.Fxn|&Vd6*W4a\3$Yރ*9)e[h5$jŰC¾ۣ?AסRDiZϣ.DXHג.?+šU^Ky8: J93C TSI9T{2okح| º'*ttS4Q\v`o77ioѱ/aV Ԕ3M(Ŭ 'k:d#|ksk%cCa9(Cnx4S3;Y h(뼐1W%HK5(P5}c+3Y ӟYбfy'tqObdzG~\zJSю3tg*Pҳ^$$rƻ((hc؏$Ryej$oU|1ɂܛ^ղwG }9h~ { ϬW ~!qmRְ 8!,8͝?twQ"G:L@NPPQevp,Ojжa:N;=xcfM픑g8.zf9qG Jnn(pLb z܏ٻwVLE$IzlhOQ|-1WL9p'?(=8F.O `˘U[J"$OAV1s_f^BŲXM-9G;_a+F+Cυ\&~1v. ePD3=U7]~ iBj@j/MCqumMab}^?_rP0B,T// `4gX2".\/2@'^Yc%)QU;]3g> %Cû9ƪy׽GnbreAB&C^38g"a$Ls ;tNwP<>k5ho b(ә6jҠ!w>'Av9$t|@ rm'w#Ícc{h:AJ:0F_lV%QΗ<.!!BO8|Scin4C /?.!lJ\lI1UjN/[UfEٿ;ydV>c7V#d)}virq(D1X$%ȘfUl)}}ll.Lϖ\fymMtʦ?}o;f'>!m\)J}۷D\Td:7ji!6p|^,lX福E>CqكNA|\țdFTZw`dқk *ĝ9 ߜeRriJ2ݡ|fI\/:]!a.sQZd rX3vS(9w6) rZrz\ cײQt5m "lmL@BLqRocHTG,ۗl3(*hZ9$(0Xfao7rոZ6%TҞ`].aoFЗh࡜C~ WYbīH~s~KB3r6j+;OQ4u.)4kͳ#w8dF{ w-wjPcGs,NCѸu)pV)=j9Sx7HF@ z,sy[lwPi?[k2 f .9DBHp |{k!IS^cG`/MFtp jPGvd.Fl8`P@>V#O:YE[5aVz¨d5FOznr*2j5(L$%v74#%oY[90/%I gDJNꅎ4uzp~liU=*P{|E<|䘚w-7d1q{Ow)+ʊ)+YLZO>q?% -r4n GXvB&S6lgHJ KVFz)BR)+ xQ[6;ƻsg9֯hƝ@0VS_}hX)jWۖmtUWnx]F2T?eyt!hO4=!K<\!b\XUECz-gZYsT3?nt؍Ek8yʷ%l񉜺-EȒnyrA`kˊ9|t@{n4Wx3{ڜ/a6ys)gi0!ȰJ VfmHs7d:~1C JHőy]K:T-w$wal\V:u+i#ycW}GwR JФXdg~V ĩzEWރ3j#deM+l:Si*;ySI 5B0έ3-_[4kXq횘38ݮ"M Dn"WLfyHꔅtܑ_0?RjPmU98 ӟj=/uMo&!JXKExj7ڜwpcQ ӹ]srpfnpBy6 fIWzˎCWuD}[Zo9iEPOVۑVe 6nGړhB4$YT$3U{5?;q 鷘#k{O+ѤK)R:p0?.K-fȏA&*pWĶSN#/0ΪAs.˖okeLpq(XȻbBeu΂S#YrBxV OwU-ꂻ"(3d^ o/y'n\Mz$VAi. \55\' YхNlT{(mmZkدt^ #&ʩq~RkGDěA%R6#)Wqn%$DokZM$sC W707pCx0X6sѾf,-=!iW|:M/N4}.:]w+8E"{1Q)]KcӧW*Od(k9]%f׈ !֗%ߋ{~, +^mSb+j U#0 GD7li*Z&Y깍2"kJǽħ.Nk2i`J7Vx۪"Hu1n4Az}4wA6r9dNē MF$ ?@ R- >'5~~kΞ]HN @Ae' L(QtG (ԉ&HW&$6ԛV1=CRDf]Y/Z 1= */zd>e[X^vGvSݥ׈sYV YE]]42w CK70ZO-Cba^Ns}R3yŪ&4Ryy'/zhVmz(1z^K[9V=q~#:T;bPyJsa+#Jpς)#K";OF%*)y|yLBQo (9׵S#9G靫25\MEy{ p.]C ׏P8ƪjWŎ7{`/6ʕ$%_ka^R$(ZjAv` _5t{^K? (u<6bp5>Cc]}^`÷2^dl3k84_kwkTXC3vG1௒u2(Kqk;E`\+8\Uw7KpHǮ`OYQC+vtݳf;.1p ceFh3}l5QlVC&J,,K6 >2|_TjDwY _r}\ BD-x~{v "G#9kfh2Z:,K՝&[r< 0[~w9R~kLb4S7kNnX*)9Qalg(l\ Icyn:D)Í":/uT/wCxmx9Zd`8Нߙ@xzmvc[=wϑ \6:tYRyyBWWtnCM5$)m§&J#[X#Etvy>b.lW`ƞfOo#й XJRrCƈYYl>s0c|f N˴H3y,pq[^xgCKax'x>D;6 jҼ&C! `!5`5OG¥~=;n W}ebSI4PGm ʃ0E1}̵N Б'M芙 36̣12LCixnX?. X )p:!}"ŠJ8ʐwA%Ef5ZԜ1&Ì>yU8[!@J~2s3_殊){V0$Kbinڹ[cz~P{9˖ a,M.w;0MvF*uOtߍ~XVgBW cwC|0}CKiH~MnpX*>[Ih^%g Tcπi!JҀ3wG/PVWXեv=zmW#JeYC=SOүFC4,E!:̘LҧfDIJGωy ~Ee$d[c'.O @@(ބ_u#_j&ûFΫ*96]Vi\ ~U Xc1˯[k'N;yw'}Nߙ"SZÌ3wjP-~-WQ /E.(N [pꚲZք^K{Tс '] -}jLxylEX-cVHsHpу*H7Ts„%gy?Uxy( A&"1ߕQB|c@dl`ɇf8:MSdD&.EJYw{Ԝ{or`r fq[D|??0}\ޘ ۃK ,ˏT1g/r.;,/! -cNճ./z>HXlH8,^gz7VE8 Xi׵1Ho'C vToNĽ [:$~43fzhҷyVH1uaNwg^?jH =-ޓ!`HcRE&]kzPWB2#d"rf6 %`"TJE5c|fاIYVy1[9{;,_q#_>ȳKY^,`+H.aØQdR P= kP}D(L</+z79d^.TUV}lu+D.PH8ѼTh!RH'i2 ]l$J a}WY¼?c[!?󏮅W8?  6470P, kqļC^EKM*SjLFM)ZY7:]`Q:&:ltMep~ lj3z4}rwnxYi 饞U~S:7),s6Ps>Ry~/.u^&e6AMp B6H*(+R|$t-ԑ[|‡t|/txxgx?bE ?\Uaf]Ţ hd_OKi}zs~mN=,D,0/b"O NxCjA.ZL6S){4Ɉ_D?v`۔엒ֶ]ɬ o2G_3w{0k_@::zSM}!h+uհ[+0~Om#') n%qYˋ*=xO[\",k?c/ ӗo,B/Wns! +6?k^e&ƣ/9r/I)h ~#v(@hԃ[KBd]wxijn5OfJ_sZqPY|PE-v9KL rh=M.^80w5aOc`l8L6U'l7AH7ZVw˅DC`7sM-DZ`y|]ͧ #}XZ<<a&iO ېP~G_Li@xv>>l:5 -"J 3%njƮxi?cuǚx Wʦz!UGKmMa+$$ґ[tg 9ΪݟBkF<:հC)@. a}d&+- H$SxmćcȀS3i;́jh4[Oے 玶}!lln_`;3o^8;`b჈X JIj=Ü#u \;Zt4 Vs{NK>ȉdJJkdo@qfcC۶_K.ld\/j:Ndn 9GV$mQ.e?~|utSQPTZ=uG i3;ڨ*v<=]| }]rË-֖"o Ыp|\T)mx!c&M"1l9*~M{ObM,).yTIy5&/SQTϠ#}18Bm\X/kU#M]00ͮĜZLUQR\m̟+9H,&xF,^OCxp!} ^C:&8jsOܬ7lĘrN@_*EAZfH'؃Z bF5X$3 pzc@xOjW 0 G#*-f O|E3_F+D_x%$31z;?`O1v/ji6/~-FtBl;I;Dz]R`9{}e^{{ F|P'ХhvkBOXiK2q4 `%ӧFGx KKeʶ! Ȥp>UI L~j(1g~YהKy*UqrOeĵ6qɫܙHܧi] X+ x TTv//ԨKlFɱfΙU0a1{!H5<\H i֛dJ fW2$"* ^'/ :m>/}wmwMi }݁Vp *'1MnZpiV Aܤn,{ne˥˽ôNsY8ǯh09:oij^E$p|" N>ET@ܿ;F R ﷈ ѡe>#$}i=mRRFt!qPe4yK=癉4?<],D'~+嬩naܝɤ3JGSL]j2Oud3&cMv۪pxR ?YX'lSJ56݁=%1m\yҜCJehB>ZtP,rr#>A·缸Skݩy ]>o oPN*k:,y 1b!KA͖IstZ~ofp4}8UV@?J01E4Hŭ&t [mkK$`"[`ت q͎.? ?>1]|>=@[sr`0vVM Ş>Ɣؿǯ&U"qH Df5˴}_z}g7Ң$qvAp#c6ee}ca,[bAi:Vcpro.˛J}=%صӽwyC9⑱Чu5PUWv_8!qi+g숔 < aℛ^d+JSG5 &=wDh*9^8JK̇ouR5]ږ006dLnRdsʯ~\GeK8?'C/EVjxShcOngXSlXX|,Ȕ߻ 79sk(9opXt ;֣ċo>>q@orQ8LL frtN%o9MF%M#WUP-Kb)ŭ㐿+XPZ0{8 +ҚwrH3 NL",`$;143Xj"&?3Mt~SR>$5e%l@ٵ@|ŌCs0s@LűNW9 2C9md)<`rf+K^0ܩ}6inɥul}eC$|?j°|Nf2ӋTɭ}UQI!{rǧ '1 p QɅ9PU+$>rM>tdHb$K`DZ{G CWޟCapgcL^ẩ۶LSXګ "qZ'Ǵwm (٤ ҐIVW:q۹zl8ik&n:HjHQq=tn[^}=9Nxg _ Ȩ1;x9F`75.T?C<;%HB`shTkO4a^ɍG$K8c:ב %&7V8=s>ɤр&x;W$*W9 I:CQa+4D<_" >0њg$~Wl,*B{@ J0ޱKd (9U6i8= x:!>Z2Z{'h?h2!%{{Id?dg.\0E+pBW:JoQ,AV֕Wa=$ +:*x𚺱&Qֿʠ, 5AD,&0#A 'SV9gU:Nm 4R6V3 kfW}MG1xj;\ĥo8<7MU`&@ $-`8fFHJdt^xङ:^OI=+.7D^kwq,cʛ-8n>v]bic$0S9FTԷ[#p>ԋ^qb;=oj[!q]e҇ R{ɿhajp @Uh4*~՘U Tw2XJ@mqA*\ZꚄh_KBg׫Fo"DȎ\;_!=k2ɦ[Vd͇^Ӳ:~whrBoo lc8~µe1YOGu`Ԕ{_f  X1)S4MHb q{&h|Db*r91\k'V}\'㒁gݼ.d >8$lij،.:@_/\Uio+<e4>Qn-5j6aF87_z\^@ڽzuעQ9oΌd+VYLui7Z7XBb?nO:z'-Yq"nc;[͍ۥ bR,p6\ay7|dgn6X 8%6 bw5IV/k\4%y~<`϶J / 0ѿbv\V_ ՔMz ܎PV ލ|'EX(' hP8G-d uL֮"B3BGe/Pk#,:(t8"*PUKFl%%*R7Yat,wk:#E]uZ(N?u}D,¹ȅko];UΆ{|pO\t3š %QQvu0ލ"H 5D: yj7n9[Mݗ^% gM$? 7T o+W>|SG6r=./N?ÐUƂk|}^p .wh5+|%qѸjMMt;WKx=;bfPdPBO2x('L[\8ƱC/hsc4rx b-¿Jj =z$C}c;VeqM˫X^3KB &niou)|7ZcdFhtOo"gK|m\r`ͷ]Ь 0`/ ($%P}-B,WRH֝YwQ yr@P4|ї7" ;xQo.Lf6~KKM00tOj9f [>U')w03 (vGQ-Wj0UZϏW@>k$*]ŔžvC!@L1߫:&N# ,vV .z5&JN1+$y ">.Kjzx Rfo]Y(C[Z7z?#B\U"X JĢJ̣lNQB:6A_kW-nNloNIvlۂ ֨5l%궉gZ}wZid4aj >3`7E SSOaW-0ƥCN1U{ưSMK6nCdl+ƀV ~kMh-^`T4驦S"pILk0*u;}x\Y}^up p`-\铳o9pŎ?3I:c# ܮ 2pM9渍 nECb.훠mnFxo͎Xڋ;&SLժoUx[b09CD<2vy~KpSHDi^c[ ЧUGs+S_t㋭Fb"$_ E6sDt~#=|u`AlCoab%.]H5&*d#cN{#lC ,rf1C#8:JgV {d@Pzf>gn֜QJ ]s ]^})-=>Rl)Mp8G'59S!bZb< u~I%籹|FY>ZrOs}ea?Ԗd9Mʏ>]Y)xD6#$H_*in,<%`6BZSRN*\.dG˛EU鎰 ;DjЈ5Y"4Ә,=h\/ kpH>;bC;.(1р4 .m4gTi(MC Mdsԫ63*:|b%f.zf*ÁL~}X^3kb}Lb*N @No`[H Iz-o8ryDZY)aVnz*+d7# =~nl ؖv%G-H. Tg=$0{m& VF٬%‚ ̔{斜rZ4\Lhe\UGX},өxV34TbKF8s5BJtO8#tT-@YA"!quڍ =;9~Yܱ Z?ơRж~ =>Dà?lЗ6^5:6-poNO&_`HNw3xBZJ}6‚jrC{Gǐ߾ wg"o⊣eM"WuN&/T]Ze2\`F59vBmk$<@"\39Ƴ c0qM&A*0(oE{J?T_팬EVe -ĞH<A7/8G!y+kldV0]'ՍZe{(4E/*dzzm VQa>.uEGq/b P2_KnB-&9&$<ҷ]W5vR{rԥ134F_]mۮ}YA9"9 ʚ6$liQSs~suah9Ӝ3>ڡ-A 6{m5W/YWL o}JkP30є-?ZCGAޱ7)N2(l5ĄpW5®[/Ͻ\lC"yoN&5σ+Cr_޹QPt6{YQV>-t09;ٗJe*+FjʈaR@"Vйwsp_hy*F5ᇫRMt;p\nCɒp$nz#f1lPX#5Ꙁ7Auʏ Bhќ w;XkO#\_V8wM*2-]`oxA@w]T  ع N9I`bE_.'̍X\yNgx TiP%UmD\6wT3 F5[_hA.#zE&蠐o:Rb%e4,*"ʤ)~S9&~MqJX$ q`&0.ES(,ހ#fʿ1[KkZnQ@f[rB=H! &²OdP'K!Y[G = aYB_X%WywcY lbE͙|h`%l:\sBs]o H5͛M@/Ha1 Kg@Y8`8]4֚vV\+axT̑l˜)^s (>Q;*{ӉH"akiꃣ /fU{bTeB# a(g>(V_&ޭf+FpTW3j[u\ҢsDh>쐯⣆q]+uדByTLb\QDՔU3Ml;oI}[ޛ   0-FJ@Bp.NAU6d+֐dL,yڬ٬sɠK`Y:J<=t۞\Sk0bO߬eqŋI C[7lҐ;pr'St8^G?e8(@t#Q"q+XI 5ХJMFԈcMsi&_IAUn"5~6SK*ۤDV7"LTx>_Κ5@[MAwQҖ?ٿI'B(?yr6uDD")i;-Q']3s;d͂ "$3Y9 Ckrk ԥU+89TRC~~a){Eollnmoa*yy 8A Gs?\HQH1wxɑ58.Iф^s-ׯ2(}p2[ AI lyL)r0#j6mW(WZ4yk0(ʱ]MV cy&9_0&lRaש"L=J_/J L;{*Dw z9k et4T`_B:RGiHK>B6SN<Gf|(?.e=[)"~ ͆֞ud9<υ|5 r;Ƿ`~6:%x< n#0Eqq s Am}Ie5/DFkƜg yZ\C%b$7*-W",wGzQR?x}2[Ϫ`lz:TVDKeiϯER=Nݹz_G^V+uD̀g+nCPE)6(ORG"HJ!/B!󐶅;cHYgg/R?kS4H[%vi. @ςO ޹%g1ưC0 \?‘4Bb1;+7Mc08 i%$tOn ngZk 0iu7iFG`NIɸE<]iCK<~壪J .%%tz?c"6`tV܋۶ ,"'aa !j5atUl^e(Q3JG֌r*uy{^Ӧ3!7`/Ghxa5O eI2ҞBtaqѠs{ ()G% -;xƩmxH"Lڽ$-P ی>f[SѪ7,kb-Uʛc1Y]i6b|}87V'gLQ:7S H0AS|`VHezۇaY!]L )(H@2 _{\#`52.ĻwiڅJU$sCL~/j`'+0F_pgMX7aLÚM%ď%e8v;FL{;n^wZYund 4Kﳭ88'ǩжL d^[a"eV@oP TZ>Bf,"m@DՙVE$k?cIPBM @ J"X2f0:`xO6'ϿΥ*&弃anw4 F^c3eCɋj-|DG\d"ª~/㹂V<Ǒ\ǧ3Er,F:+Ԍ)? FOW EVJǰ,}KUF-1$F5ggp$>fy*~RI FeȰh}-lv+_쁧]i*ӈj5z%.uh ն[3E[*́1C(fzf~XB׉=O3()TZRLGX'ZKB%"a-ʣVhNg䚒P־|1&<0K_OK Jt?<9c:??_c<`iEGgtJ%](~qf%z3)Tm<7L˜bW)WE;A&jȺiЉCǻvzL{/\_42TYDu/. |Q[^/$^^pkd .Ƙ۾C) &gOaa{`i,f5iȇlq'tsܤ\GR *jk%}Sl(r4%Tʾ/2D>ݻ_ōMip{qekL K?a~^oq7G;x'Zԃ ~T޾cU i" `]4Q5a Dw\hWfwg6ழ\Z3J~<2Fa,q13eP \718d ![xXkPjA#$DH,ǫ1wdZ().|m:#oU=9Q>-r5j0~Mr"AW#c(Yy%Vٲ:GNlfP+;ۭPICޔ XJnau>@:c1=55䒷JvX/ $Mw<}wA#L,"*1$%?j+cd osoa8>Uo+`Lj|uQiNR>R6^HE|x(dRj\6F\|' @Jfoj%Ym䰤Bqؓ/eZ6e+b}ʠCAn,}@\Wr&b?^ձ>\ ?G(uS cۙfnk>4?셌j@:*홇 |.Z2{ӵ,!,k_TѾc1h^r8Ume]DJ*+-u֤}~필rטSk+i`!pu;Z}{(UӺ^a _tScЃ D.b.>:/#břק6E+o>AO fpcV4O m=B'KίVncfhoOsK 5} I%)IE$v-U#qcd&;Ϊ\" >`>'4ܯuj2Iv%FnS  ~_Rɂ1ƜKV<$)@FE٠c+k(siǓAK{Bx5cALm2aBӔ4}wGũWDX BtlK\m-U!"ßMأC=(+5lcvq MM\8YMtX_Rg{ i 9hWeW58QN`~)JV-op\ >qDI(HH>8 RU!ފ#útʩC\~9*ڝpKU= ^&6 6FIA pHg6h]w3Phjfbs "}cH:fAZsfw0QW|1!ɏQ_Kә,NӞ법q2;[wͤTGiLC)Aٵաn]0YGSTe0m,҅! >}&1Aȷ2-vX~pZ5G  )yPNŽ;?nv8&%~7H:ޗ߬ug|؀O-sqsumWtY铕 BGH̉ƉȧX w-LO_T|϶'52SY2=ZK&k_ƾP>YsmbtG 57C(^#sdn@*VlZ R_W,C%X1N"ҖAb?'/]bLD΍kAg9Q%|v'UwL9wHiW ߭ǾRا\M3mRK GrjS) 9t{y]wb| t5I秕$o.Rt_0%Rwgt|}]{EV[ewGgMK^9&¼۴E,B%:K?Shx^1æ{G}8V꧛owɾb ? _+t-K06s@>B۾8<,w% s|㻺W.`1^^oKVx}$/4AV[v|?R1: e%֒\Cf 0jA/IO9 mvzўQUhħBjΉM⺨^C%򌚦B_` ID P]e@Q4:ՆTBY|  %k; w&پrL?˼A4,=N-:/WbKK`.}y&7]_j[_G]'Ű܀O5]ӮCuǼ=(!X,rTk kF`.\|W߇[\?V0U2:ϻ+d9ɐMx<ʾ\<~TZLCS&o9Gs*N< Y|0S< m/cbt(f5cM4PQY~P׵brwPD"Tp0Vo)0 *vaɛ%T%šJ.j \A`o=|fҌc(P.v&aEwW˕a+h΀ͣkpW+nP_|9ø36yцDdzaL^L M-"nM`7,L=[-y緹Wkӱh䶽GtHM&Y8|4asT!ͧ (Z'3wIˢ*+R4x\%3:M;NxVAlzEb8ܽwAŗ vG_%8{ftotҽj8*;9HOS-FuO@◨fenϑNZ.m=)-C"%#.^q% BLV2&ل=cĵ@bqMתVyQ#"R~,szydY ʚ܉/_%5FǴѶg6ql9/&5POЃ芡eCeo"Ek~8dgA2xkN:cWL1-|&-) =WldnCu# Ovݘ mk~5uRI5I v)}giTEp!oBD!yl4ؠÂ{LG)FtȖI}SG0l2Z && 3xY3ťy?~{,5cF zjxz$'5oy.)ҍxDB٬q3eSG׵dg:]#;DQ,Jh:Ә2h]oa~`r x3w9Nwo[iDKe2ps"ǓE)ԢGr۴VKN2K<D΀έ!{yVKmZ$ZY[w!ʀf Gd4;=r #|3r٘`dPpd+X.iaz}h2h](D_Sl(Gut0ђD^[ &) ?E*)qD\Пϧ`ul5 Ť"8{~BAI>.~ #-M?؊T@4" цVlνƑ̣0Jren"aS Q6V6@T4 y⼍[ Rڜ٤ @@{LXcI7Cped0*Axmݙ~I3Y:kt-vMKB,XڄhXk_=D[zvk@NEsͭD?D{6LLixuy,\c0×>"`ȉͬ)Y+/ A:5Hfe0s"+C_A׍C笠n /ۖHaFxȸ 8hO1A~ W\ ]}m@Fq1b.^u=CtN4ͮ>5ME`9I M)8?R,>aN޾cHCty*Iw'V%aQ.}q>ska6=}Nph3&jɬE`'G(Qvj> C.dB.v}*g;A\ YM TOAiBlqj%ZsȑI^i+C,V4\jֶ\]-B "cҰ DPotخ0& tiZXTv0=Bn(1jM!^b)Wh¯msSBOrxy'UC} nqdg_%M.:3GBjܑT1&"H4OF5WEvreJo͏7l|q" &;?f3j0-Řp55ַ82g)?c0xLu>Z6%y@>D4'E[ToV>WP6y"G_Am7 OX=V mM_ ayWv9ȡX.8^A򍱏Ȯ ~UX#㙹-SCY6ƕl *L5|dif_Qb/B/0mF]F99=ep,4136+SwkܢVp:wON+iÿe,.0wPvQ\ ÉQTzmhN~9g5 ̣`C)NQAN&wOdtMp1A2[!ɔ!-0?T^-YQa^GߚS#ŵF{4f ԫ-{^ޑWE|a^S!1}rYG; ӪK8U,xmw->M68- b@ dW t"Ba4!w1)("pG TxgV| 6 lj 㥲y:7D>Dh`YYb/zV}%0vAtӇ<OoSFc,{dn9 tLS'wBgz|| P# ]uw{z|AQGFJ 50dT|UKzoxcWr&t 0#_{TިI8z%}5/~Klb]4;B_(~ S< #WI8^|wճ7EvQ:MQa:814+q/^͝o 8yXJx0lǶ"yhȸ^^ŅG &Kt$;0 TR&D+~0q9YnP+.OT5RV߿0(]=zxb{XW| w43~>X+'vTSlvGFf{UF'238 ŋG.G 0h vrMz:lظS =ԕdʻ&o~FqOŌ$rs/B,Ǿ{.b >hǠ& clRlSsP"Iju~pIRO7-33N5WC$#̅*{ :N18>,gr*_l{#+5@H}8z>ܯ=x xVr$(Lw޲"<,rUp0G#QU25l5~̢Ck{gӜ&[0#{xK5@5f* =2KA J@CkqlyQ{i-iz5DڼrRGtEv/_aNj۞mb$9,\Qycݙ+;K_UDz;wt]-~(>cWs}fVc)+0ׄHh`DG;yTttwn|Y' 䉖vO6;m2;4G"s͚OQ 4U?ֺ̰#:ww,GHy7?7ckDv9Ȇ#4%R'.-2fcxPL dRm7a8ԉY#cY婞/RO;aYG(Svv <2nWS *sApuXN1NÈ OpKk5['hxe9"2|ŶnV7b:E{ ؓ+NYݚ(=TSd QA0Ǧzř`GЅ+ϻvgk/ G]ű5RhEޙ{Bdpe $nSr]$~;1S9]pypրS.G[R CڸwIdn<ߎXG ]!\S=c,_qǭ o8DdPK_i֙&5 %-@$21@9VdwKH.n&sk_KμXjN.dvp`dCOwuHGk-C!(ॐ]ꯅqI3S*;ľu8=&k¸^qųl9r> R|JCj_]q?!88&Ƥt7 aCmgaL_L C3ʜ,,YZ,Z5O:nF^`j^tkgILHX|EP~-OGN\j ~>WAwYyR 6n2:'(4[nw )%:뙓0a.Ms $9 ҡf )bm1hUI-*>w;nڻA_]Er#B>(.YYxSВotPD6nd.l "cM±Uk_JbvRhU+t>!S1”(~SCԌS/tl&+C0/ KoL+筶p7ksUmRX:tȀ43 5@snɐl [5Co`G3ޕ8*rϊq-߼‹7.hդX?<戺QPHQ/~- !/ q?fud_kydrOgZ5gQm^fc>{Tb҂8}O2<5$&*y auL{ ~j7V%XȭpJ?t 014/5p#w6LE5N:\4xʍຟNΫp=@L0!ȼ;^!RENvFnUSk@pŻl7(hr|$Сm>`lq_6b3BrL7|#nGH`כͮ;R|cya޸%k:̱ h5 "r|Eh֜N[H=НZ(n fN"BJ2"CY 9Ni}гgA4Z V f)6w(QJ|j .F( iߒɑҚ^IYm=9\5{fܠʦ7ޢmWPiڨVPhZf ݐ=8B Y܄FG@Y5œiG H ~ GW`vц%N)H88#slKl-Be _Bk|𢜿Q?Ii>ڳHWbznu8gw̢r=L~A )kA%s~E38迬RFl*5KMS߉+xSf <H"k_9^S8]-od:}0GF>(E:qDHϞ_,zICb |ޘE'IdoDd=qf8)c˂Z=eO.L]jih؊NVm*g1Hf|P9x[܎.n zb,mZoU :K/ޜoMs9|wNQri㥦 pNpt@rk#Y,9Ư/8F(ՊqMn9mW쉎 k)6MO0ÅoAx4~/'` 5#;}q̊>C2A}i}7>q οeF=̛DǝW@?-.2?_ fX}ˋu[CB72W .=1@7*!Wo|ýWM7Y^yeN7^.OFǼ=g*Li>$[D'X'?ª}l@ß㘎_wPMc* EL59X#Ҩ݁v?]D L*:{ vYd>(WxBT{0~\PʼNj"di4n"ޞݵDa{IQXM "M@0 +%Θ]i=E5wKHd| ww҃5Bk-ݢt{MBgWBRgn$ s*&b"3 mOD4e3JQV:- ҽYtg7:B]B^ >cpS:^};GaϋeXY.q~ Zڕ"U( `&/H\QnVGK c9^C*s|p!P B{Pl/G(?Sp!S;9װ\ Vب]DH؏ |2w~e 4m 6ePֲ!u$т=V󰕼2^g}w~׺9ux8#/)AxdX;/l"Rx-xamF|FFͻDl eZ0B]rC51 xn+ B;/WȳU&̛`dܫI 7Zۓr{1цC񕴒Bt%oH2?7ڱo?8&RUcXe;=*p*dh0B]Zh?BE4*uR`rKx?E#Hqm7U5|#a%NQrMS9C'@E[S&nVS4*^ȗ"`>J 1rȧ.Uin9z.E(PjS跽2eKJ@ʎ. Kԛ?V>͠Y_,3+ +>h|$~ }H<"Zgtm%[ #Yqyyl8%L5y+lkWKF*יV.Œ^= )y ht!ŞӶ`Bxߍv1F^y 8%@^|%eW7ɷ/vae'J~@a:2+ļEd_fdu9Zu(0D~[dɑQ>O_k 0vC$r?r?4D+fll^%Ր 'BY>밸rZDsyes`ڥZbiDsZ~>Pe@MŦ})MIб +FA]}1~^5/Q* crvX6ԱNW_:ȣV(FxεUV(M3 HxٮP|fۋ^wy}ܑ 3˖0# Qz8) {w` N0d󄼫Z}°t-,ۋn8iV)[ɐʉx>=שMMoYhau甍x[_HaE@$f+L%idM>&0X4Ml+jf"qL] €iFԊNC=i*t A:zWn$ٻ[y3s/8 nb3<pd5B#hPG*Rզo7Ftbe`H䛢 n4Sf@oGڵn|ss 1M:tȅBPTNcK%VaH_þT8;pObh Nx[08,&Ȼ`ϻR{l\G|vZ@=C>kvCB\WWc,V+k^n^^ֿ?o89(TCm8nHsH2a3x/?qD.[`4 /\SP[o0&/Y ܢouZ HPqμW(re?'I"Z.h>ADI Б͈{[ɹ7^`3vePNXbW8B!1aHUCfÎ X{wZ{ +x(;f$jv:~=PM%lFb3 6bi̪ܓCH ,=0xȹy;RYH:{e=dꇱD`U7d̐8-d(y"?OFW=(y* !bx<YIb\##G35 4&=%m|!cV4;ҩ V1AD"*&.# {N"=_AȭB`<*A@ag3-fEf~My$v5!* ?Bs\x챗IAIf*$->12,ζU^ӹ++?I;CGp.iS[M^m }G]'$`N%kvuG6PzK8bqNv_>IOGި;F)<$b,EVS9 !fg,IOQ154c%V-Wx&cc)pvx1&tΖn`GڗRrВ,fYnK*-ip/8&s] R2,C;<#1\ࡧp2v!7yV_CLRDX157~C||?'G?$I$$l(Td|$snSTg81b _E%!*͉ /в뉩mPJ xpj'IxVD&GfUd3,ަ; `~~Ny?O-(Z*ϙ{6ХP严,&Dw2ч}J~[6> Z$F'a\1ٌDE6Htͩv֚R9UXw!RD-d4CAE^T&M]B`o9PyH+5Y__&>S'.Xa4j{{Sʙ/wعp 6hP3|_rN pak9c պF\#},w0Cy8Դ! ~qެ;Jw/C-~` Wdn^@hf(V`Kōkwp\TR_ĀC n-!,69ˣϫ=M@i|YJ uWKQp2!̨S-on~w/J IELIޣQ B ~"ΠBjt'D"Ei,x;0/ΣhW1ƚ}5;NF* T*@ =ECp`vĦ0DV-4rn* q-4hi$᧤g^ )_;Þ 'y]aXJ^FڄkSZ¿nC/Zxb3wN"Iz>ҭ]N~ϝՈwW$)=))%C/ж4\w1bEB Kșy0RHߑ!V|>5fv*4SM{4cʘt𔟍{cG~2Kx}K!լ.cB#\"j벹q4+^J\a\L6UNS׃~OEI[v?уk'x;SU^-׫qa4-js b[S=4L.(z oU(~u0lMpWKJVx`j#PcroÌKE!b$<*MMH\Lj}Wlt^Ɛ=K'DO9b^6OE%7~c $%L Did`E>Iw3l7Ȟ >ΈRigu LԙF[ w'CB,XńdX$3.,y,f紝h;aAZ}3l.5l᪴Zai`l _S4Ɂ[V#,%J>㷪0%ʟv 1CBBլ N%d{'ޏ 1+,!U sO SY8J' &kB*`RE$.'8ȵXV[G!rjBT6k kuR!D8PA-{XpCͭHY\?_MGC 臛A/[ޡ~GW=+0v8п Ǎvd_.'LJ-pseܶ[4ʱair^EM,y3w;#Nq"Z #ݮ81KAP4nnc+E@ۗE 3nФ-OD-\z4C\d-=w'}R:;]Gusՙ傛 ˥o͙{Åcv@}3Q}Bjp=%[| ogQL?h.`CWВg#Cv)\ ؞L@M39/Dbrt~aZRBY9HJLm7g]0;`{!-KKZ\B(*NO}6rBs\*֒w'93E-1 qv}kkqa&fv0~0; wb<9 3Wp4HCh۟.dᄌ|Ș%EڠyEtކ?RU ́jlj9[3ٚҍǛWa|A#~H֞KUB0cEϊh 4mXWi]=/GivH9%C,]=HqoRY]Gr4bSMړe,5~ӄ6iߦd$rWh nGt[l#~ oo#VQ4}G&6u -#ӝ5q^ Q[p-^X罃~/>.S@jRGKWB2aCyχhʔrЂqY?%#ik# Zן˟&~T,[Mf#JUmh "d:fO <](s;`ytMFcu9+҉_k+ + ^2/'Mz^n\D#2ru_rqae뫎1 @R(bNe74rTH%ڀ]F0U d e l$/0EX_m̐X|?@ڬiҵ/xX8 XV3׏^blIZ #Ҝ # \1Y d9nj$@Q[_wf-`JDƞl[W6K7A0܏-Xay/iý}lҽg1 ){#%9 uCc=\ȡex` XXen TƲՋc)~6%A%=k 'DTT&dߗ^@ [ pH<"x|fp^`qCc!aV Hoh韇@ʆ!$?dhZ")g`dlkR8aMiTՆӆ5aԇoE`:Nm73XRs "B!تAsK}2mgJH~)b;; VP5(%"luߜ@n We/A쮻ߓd߀m#B8f"̙7{nmdL/qڙFs3z$/u+cӒtn ] so5ҭuYNOq׷w/P"iYM8 >ڛΞ:>0٢{a2QrncB럶<(ꙮUK]ب6#OHrǦf/}Mt( ck| qTv^^|g:a͡2C@lDU#Z刦ikheTܪ('2(mx T~{:tr:n.)>ӝSH<& 9uȅv8˳^NwWH:Gu` Vatz tK'(9+]̎%la{4';'0]l`_&AGeN+_N.@."~1! Wdwj^=_fWqSd^}#rvEsKW•TNH1 nd54%U:lб 7Gm쏌Pd! b7͵r  ^#NwC'%H{ŦLχGGYu~mN|9<@k~ҊaPVq+hsE*G>c #|NDa" @ePl͆ z],/3Nw9>H` t2 Թ*L"<8Z[:ˌ5ejO$)y-MN>0Bw-F&1G:}"GGY%H u31$y,d C^ޞqרNjiS-]`Ѕ %m@1B@u$@5&*6XcJsi_ ,)x3]ctI`jy`ATa#:L;a\(TDi B%_K2u.^t/8Te;”|NxM"1wg x!:|eS`,L5dtskUu\5k>F$XqpܓUKost/h6%)d] w|*-VDLj8.ESxx[_fJcNBR$+ZO\*y"y&h|$z,?59c_پtB%2;h#skh j)Yϯ`9Kp~oi3fzT:ݿZjQv: :[h泉![V/O1B)1sVwV5~yQLl!AF e:_h3Ֆ|-p6;ՎPzSV|pzLMߗHjRag!yg^:NM8d߸bС'kd/iݏ{N(NbF҈B(mx3処g*/q]OAp7>[Ο{fXݫf_eHV0(tV^9GlϗGv?o ][m ЯܞSOȡG,x9 3˃;TnmlaK| ?}%  2Њ* G^1ɘ}W,f ^P"]*^wBP֠o1"́׋ 摝ϝ:fϗG; kg@1-%oyQLWg#r>]{ 3㞈fnD,#{PHfF: j2lHתq{І/;\,=$ƈ!^CXe+Pzo ;H:<1"CFzy9f)ޠ}M]J Fe3n=7XY\ RBAUɃ'h\S뾏*GkY9A܎~/ʟB6$l8 7N 𿘷4CR# 3TI'dϬteGsxʮn0-3SG%+\8z\ٗm7DwY˙H^BO>uxV |Ԑ!3f?G?BEZs19k1v4wrk-ށ9<,a#2M`{l+IO>X:iplq]U+P|ck(J9y')i|N>y8,g[r0ЉGлKnQnkقɴo4t|C>4N‚,ʕT{Kw1tZ%o#3hwJFث[e0F'iB5z˥EWO ]zLJnf Vq910ݺm<Ԫw,z˜!1NgHzQճ&|Vjm}~NU[#8/`Dp[)X =Nޠ pk^uRF̶)-ޞ@ңcm?M{ՙһc]o PAo(Uj"+AR1Ŧ˜PŪ1]V/_L 5˾"=~(0ze9bPt5 :5|"ɗÍ>xkRB:n2ݛH.rLj\BctFrg{ƿ9HA]Б*X,<:eє(}r(f'sދ誷2R{CsJv<5T$[8$HH(u/&aDtO-9 YF58+SO!_ʒ!%Yљ%B i(=VvHeः8#Y!*HK=HL@ǡs ܟR;؛54lRÍѱ؆tk 96#dMZ&s[A,;'IN "IDYz hW&f+wg9x1#(ch^I]0*D3hV=@ջ>}5dŮy,3^BRbj^G ˠ G6y%"ί*d;"1QK@P5Af  \Z4K։tџ*~_=s K_N[b4+.qZǡDx<5_"HTzEcWS=4:wpӈ*{ReYE MGhy>_a2<:zE4)BU-* ψuLD)IK|_)I ES23+NNX|##<6dȨD8cu* |Is|wQ$>ÌtF($ʡp\wٻ^qDfLķymAD %2|ƙdO/8C4wCkMv"3uT] qZvZpC׏6F,htIsRuWNyЂ?*m``3ޠt|8596`uE;`:8~^M) 1 ox C؆ˏfmD Nby#G>6 {gn9ӏqM p1ᒰ*azN0ˆ?Ai+¾&Nq3p4!pp@qlYaז.(Ͱ_ Lb`k'KEM%[=EY"%Q3UA)Pdeo^g=tDDg61)?P[Te>1唸3Ӯ-;ǫ$W2RFMd~l^p)QEZRKǘY@6es!-ej7FXHҾ)<@ M_$VT;O>H=}2 PwIt׾EBtpEOȈ̜dQ1ս! Ĉy .+6]HL}ICԘ?K BmէRv7߿ߧ[@?L KA oڍ:H$ U`Eq؟'U#Wm#U05F( :,%:fJUi%assvp,+c=TD̍1Zz\ F)/ V2{(Q%6:pD38a{6`G0j ``ݼ2-XHË](p.re\皺wCch&_z\AiS6*roAq~Pc PO'SL7:z%+soo~sUc-b:$mS֣!z*ރ15q.ӏ-y-ii: WEFz*dGz9>fʼnW t},|9)00Z( hC]_lEFuDl0@z*14z_"8Ӑ>r{\'J|{*iA_\3!٢oEy@9&xcI}ݸ99[G =Ԋ*XYs|q>1XFsI-m:6HjKGj+ʍ z ?bM'3j7+Bu٘h,a.K|JfTgpxa{!<-e[(myt/f!y2+on*D 1X+p"֧ybz; |iMJx{>;ٵEEU0MFIage<}F)}/8]6E;gn,t'h~o8ʩ@hoz2z=?H9e:d<4!P_Oۮ[_{U_=*WCtsrKh[=8X&MMx=eUou= kέO8gFN~tΑ vW'Ns 헗ސ׍ ٳFy VRyH܁=&,1\rr`@ӿdb莣8gb8p䪊6dfKF]Y*jq[8Q^18tQXZR]H2d98'CLh 3p!, լKxsDuI& u?&9+WVY}ҠIA@vEoӗM=Hkr/! fd^ԯraT&%IwoИ2:u*os֘|7C'È&3.a\`Mۈ{%uZ^oYjmT?pFόi>$B\FicdX.IZvds&ݐx4$H-]z]ofix.gc?bA(>IW,ϮP=#YU#@w "@!,-0F0k-xs:7^E+;Wc@$jTi2i1m{Ip'p5eZ<9v0&LWݚY<~Q [$YR9DZ,zɌFk y[@~ӣ;n3b{5E9McNj2>R:95NlQwmt%)P׹L2 ftxdz(/]+xfSՉC/8.>Ig\F5\U_|Xe&WyIB&{ĚآN(MLM)*0-Ca 3րlQ_Yise|/ƣ!LucӅ-;jԝt|)$#B ]䌇ôgPOIGCTBX2iEbB)pH'zPtďD_kɘf(I5_e yoWO@RN"&Y!kf9h6G~Aw;=9[mY#+7%]H>ngU)㌔ZĔxI202}4DlTWr|˭-(+ݝPmTuph-}o-DN[UjPFlaIQvI  >ʓ6R 4tHA%^\.6Vu2pgy7ظG@e+ێCM,') hb5uz`3ޑbheulK~h. z+~pc J3tMixc+4r\ʸe]yt&oڡlLop4TAylR':'̲D(r[]-, v3pB%xB(zP]tFopi+NmExhꋏ6h Tc]'K95Zͣ쩭 yI> P`ݜ؞cBV/J\j<.mwiC.wZL6c['t Tr*aG{>R^Wzǥ ;)L }Bm!akiezOm#|Ia S!oNV-2_. AmYs)A3}lۗBp~5^ L^q?jeV"8,ԞrCwЖE:d0 P=7PkyJi|_/Ff$EWO%5:~!ljQx&B ms46 R۷@LϸT9ơΫ@m۸W ^ jLn,G#+n Naq2s;ld1$|qlCtEϿ"'C'(`EW4k1PN.KKf:WTy:ED& Y#-}pǯm|!Zrj|EKn["uGl- `5>DEUdC$1qu+HS.>Jgn \ v&^v[)=oꎚމ[W[jʃѾ,P 4~V(qMs1_#,PX6fyc\{6Z EJ&j8u_S v`gBBze[o"3?/CQ࣎W, jqUj́W1[؞B9Ebҙc9{UbNgt ^eˁ8pa&?M&v[=—}Ƃ`Vdd cힴyt!}oL:twC췵2HI09%me2ŵm 5rcLK|o7>p12 t;;._:$/S Q.sp-|miw(\+[rO3HdAs%`!GgU^r=E!ʢ pT3mȖWP6% {Q(: ?xVOq@\~, ѷ.3qcwH> .urQecyL|]BʞFP:WSIt͸Mֻx!G<{vxDBQMS_Ѷ~BF_%z3CK;3"$q{ƳZgjLEOcDJ┕NRA^Q%D4&`C7Z|-+oXz^W3Hh}܅*NvE MUk[F9->\5|Sx1l3Op Cf s.M;ܑ9w@1*Ozx~ҎOv΅w 31GLv"[zcq5tԙ.-`N,&|㳗nk&o67\v]FhgF9^扰_Nf!\x 9`l<.~ Iҙ+#JE7'}늀 Qޓ?%w8CQ{ gDڃ;6|'Mo(!d2h-T`-WvA{Lhx)$k.ҟ+da5_w~R~V8s%~/} 4n(۸- b%B%er'Oger}*s}%ɑ[[T'lܨ'Cg֌%ly7mXM)CY_0ImF_!JxZ1[@T=_%n$#^Ri;rvӌ:}8q;(ӥmmI1p 0^*&5&&hl8tRX8@W7 ԇ[k8/J6]]rY{t~&@ٲ0+1]X!Jxv)E+kkg䶆,';xq, ׌0uR:+Ί:/Xsf,F< 1S}hFHKotMꎚrN3EOA1wF-TpHz)]mQx\,$-rĂTGAN)}\c |ǃaH7V4ʇ-E6uZk󇗎vW_eཚDJCIr}pEVfjme\/ra: Nlڳde$ο^U!DX2ʁ+ xut6TQ/x MxBcs5+N{/Ʋ #ܗGN"%@hTWid6^SNyg(-&, M\ul*PŽ)JJȘ7#揈b%\k&5)/l"x?g]V@v;4qD-\ZaG!6rfn5Tdy Z fYhA.'lX6m&=7_R@( %[kXn;'^`Uv/+*(?{2@j6#IKxK!T@":/2oh\Jur iCD|(ߒ&W;Ҏ @.jיh$QWYh[R>bRd `2mԒ!26aXRlXGCn/wGvM+CN\M0܌"JpjM!\ z?,_dlzDE`q]^u%h}oʋSp{{7(.ZKavJ$|/0 N1ЛVC֊2.՘A9EV+A^E14GQ)n2DIk]B=Jf#=_r"^=S{>ڨ?wjz*-A ߑkX4bfr8p"ě')xr_=)+K̉)nws&m|l:'vj!-$s OdQ3yu* ۦ}^8|W.iv\=oI}xk\'[ҐGQ''N|qUQW 3U+[yS`}mU{xN#[%Z t㯜<(:A w[Y7 {Kv:~=ǴYŎ(t.ǭ;/[E4TscA.Bv]1!kv"9иa^U[r ]|2ƃ(KO'4RҪَ2Й ;H7T QNpwGy!}.'aR& IЛcNw^.؂gmŸcAVgg*LJKldj# ˭q˸$^[C0u'P2qbß®.\MMׇ@9j1u绠FܰDAd@Ajxɢg5=:Ȝ#Sm==}dX:-I/H!XT0PZG D?-O/XGx\D?9.H*Mَ^;d&JEτ\h ߊs;vjMn|?!%!+Yisn$WL.WQA,e̽9Qr-i@mH"Bc@ !nXhdS/\>`':_ț%$.g$pA'OY >a6 XVTYMgA?IH M~U`!"jCS=Q`  30*nL u3P%ֳm$찓"&,=$L9 a0?^Mܤp#vhAXJv]E095Վ=m=q.yC10){|X',nzR7hZdS:嵒!H*'bh7"+G [I/dZ57xx'ψ3µHʠСm;rKkƇ,[-wYV܂2,Vػ :8ծ3R.q|T|Ʊ ܹbwP뮯%p*ҟ̜:Y3?糤1IxϳCgnޏ 0 jZGQd|"Jϼ1ZtoCTn#H2C'.x~)`V]" A1\7eQ0!NɐB厛6ɔ)!}yoV{6Vq7-ԑWy]B5H;B'<@:xK}Xqm_z ?BU $!6ZqucgG?&tUq,ђ;sa%t_f)n<=p<"J}LPӢF)2D(YЋK+ZS#%^~M]opc}w^k"Pc{8K -cܑ:-94 e+F{猀J_<hDݽ8]٧K"n>Y[;/ƕS~/3Ĕ߭DHegKQ?XWB4CF9Jc̳n؟XmWip(!ry4e> e"],b=> `?l]``BUk 2~RLDQ ܃j ,!ȆBA6j횭xC`e1 c (l.Xkv2M)g&?7Q0+i,qA]ۦaF!݅YWUⴙhOø^pLX"{4d$dxϫ  -W$U-!:; +jEN_KH>VI ȒǙ̃d!$Uc Jlv)@ I-HZv:K$E7T&|i& JYs%4VC+!5$"^2s&J" zxl˜ ܷEL~NMEZᦛdl]*id%'u& թy^w(Asv TjB[yC0FmՇ 7k#0@QR&z6cjQ[xجJҜ1>l]2]j-@)_cBIhߌ/.æV4WMjYq&pRwz &<~ء)U+]Ħoy")K02 eCueW79 ye˔Kv^lm&̧UѸdt<_m).$}\~'TȺnS} ʄ/}ߌ_\ ~C"k gg`Dğ2#-!A?IQ zc|‚BA !hOX6FJneJ3}ޯ L#Z-Ar2Q9MUOpjsuLY9B987J-tٌ}$BW:U "CMUɝ!eH2ÀѼoSk/8B2fp,v_N/ltID* ېns |ȃ0ވd8t1Dsڜ"m ,[Q7M{kě9j С*Ş1LQJCGI:V9huq{_*`E2+x 7hʪQ(CM9-KvFl?7K?hjo*J"W`|b\C<ҳyCgoRZcA͘&ZWvN'0XSOA1nsy:n4[6P'NCV^X~k T70I#) 'N=$4F_ 7q/H{o"4s O!IANἏE:W*2 ܐhCJv^.MҹcA4O^O`GjR#H0KXE#-E4bh'z% $e&=?}k'Jճ%ub(*lt؃uljCy{@f~7q*([JY8t'pS+jeCx4ڡDs?`ڔL ]#Pfs$K:3{0cbOluRl5!-bdaYyǧ(I xEQ1CN*"NmGߥw-ax=H_L>YbХ#|ZcJ٘]yӆ=.iMC!e"c+O3 >LzÔ3-/'`srՀSʛ j Ï~,v{N~͌ǁ{j{!q/ U5Ѫx)U޹[S+J?,߭Zrm+T UBQLr%2Dv`~&>BA3ςx U  UÚD_.)Iu>lQQ=}Dw%忮UGKUxo _ʩV8G?&̟<<\g"MXW U磤IF"Lv7Wn|7 /NE#JX(U?+MjV1fOdTHɋ]Nt<7zG$VbBNp;Pvz{ 6i0nJK~m(UstQ $o>s{fPSXqTqq"3*SsH]Ij:6/"t=b)w[)#o?RtI56PqHT,51cjKP,]kQOMޡa.ʍU~^3h}|犸9 ]ߟy|Uvp"pDO~vdg-6.(pDWPFSxǜڙ7I!&^<+ v.'nJh\ wa:iUpkL).զ3UoΊ(w6jl+ w_2zfYSN|6 ҇ӱ(U҃Ⰹ?uS 6PJ[f,|]Dӣ֖1ۍ*E;səF:ъue_/.+ L,[xR7~V{7g"_5,V[f=q4%LzS[: n 3* <㒫UQS)24ڙP< *rv=+_pֈ_6t"fnRQw٘*N~%[5 ?Gz{$Fy$uvnI:XR 8W0-ع UiOEn,l\;9IڀjͽYQ;\I[XL^t=L%a. muGoϾexTJ=׋W!))uplaЄ3d6m|Z / ,22.G$[}Ϸms274-b26lbf$➄?WOf[eo@2>Yt/&ՆT \ÆcY!:xv>O=I|6~b,-"Nq#h _U, .Ii)y0]ym(Wl4]@=i*~͞7FP"3:k+ϊ1_~ßޑ& + _FǏw|v fӷEջA ˌs(:_N",t/TN3>kx6vlrUӘLM)BB@?kk ETi|%݄bi^&۠lڟ'B}NVhZTta@R̭p㙏|s/lk Qz6 ߷(w\oYrL̻z!vg^Z,uevLR`LobkP^?Ϫ@/PIds(rX|&O%G2_$@Sm{2B11"0uf- 0N!4a{BRd`BR4IaRMqIxbA??y$B1Ffݗ8 ǁWv^m[(BЖȄyq_g/J>4'eWCدDف!afDT91O [H0JYzA|N&D#Oy4/V (|kAY{fgvS,zVlWbX $  Qq[|Y&?K[]:^4Eo|a#. [hmrWlЌ_aPXw8Nrq(@77J_ʣ2k#i F@dӆgxl9u,'ȟWz]whˏ2  9a+Dߟm࡟`-GC4xJ yW&W(W['gHw9 dm9:+|"p&mz{qMa 4myz"#38|xvq FP<7w'C,DCSfr` W:1Fz%~y#tۜ<)5siWMf9 )z+HeŇl);oo}٦hU%T#-d{bFOG9?br'IA7-uLy,b.V q\'R^A{&Nt sͫ!ӄdv3!BYbpQQE|8d:Lf 8Qw %>IJjgYjS}"2+։ nrvO}Ni S )AU<qWk(gttkJ)Hktg`SV@@dtMlU86 ) Ð+$ @r4Q*҅n2'Ep/Gqmg~4 !Ϸ| <^_*aK>ޔzI+ZfÞl0DbAHH( ))uW/4藕Sq3{x({pmT"[Lu0YCnvؗc m.pIwo@nC5F;,k{nYobA&WjS$ekHsGOv"oFUG'/"v\-(4(# 1t/K)?>lşFVVJh%u^VY{~ GZsW$83fY=7+=mXh4d͑>.„,E!% |qAsuiZ,EF>}Txaf&EZްY Z*E9=lWo 5P\ ay AH5zxD_PPc#SOHޯsZom~FֹB\[S9M1$ ZfÚp׶ޱH/~ψ7QA[fPŴm6 b͐S5q-:`'^4E:mu 2YU\]if6;M|])'ql `x/=!o 'nc1r2zh՛=C$Wϰ: g)]oen?mpɌID3W ^b8M@,Zml3W&E1h|5&eVtv?2 JQoo$ U 15Vf_;8W4+#- h-OVƕ!y-_,gc/F&/磖wlEwp3ϙ|܍;1lPN름!ۮPu0Yw6/r?l~^G6ؔV,f)y=*K3箪6?F7e~g3b8G*]iÅ'A:MecA[{uIoxhWTRoiUQ\A}`gT*XP (sPq&"4u 5Z ^]Y)pgܶP!nh\-uEUۉ3*!Z,#h,FA] @,M;5Ӂh?ɨπ {Mwͩ͢@З8=ঐ0 &5`eqz(? _ ޜWfJeFzKq[DW 3Or@h,GFR cS#Spe_9I6t#P+/0`'d•XB2Hת0Wߡ&"'Upxe'WGg X/D8!"&!fe*V$VB\Ef"I,c5h|cp4J KdlS u;2E:2sH1zCd"+nzB s| _ GhB]3]{&;ıNSwJ?Γo/@龯X=_L b:bkzqQ-O$}{E+m1Py4iL[Pγ.1eo>UUTδnXA_8S@lpAN0ۉ V:Df )ߙU>OSGƖ%% ''ǁ M{t`K!-; NT{.cI-4] Y@u"kaϷJѵ KSnҨ*kX1OrYIǨ?NI1oq$K&L`̊Lk^ʠgLD&}&&b5pdR.1s<( Bgُ9;~Mʹ>K d(;O|`;?tX8j09c9 œ-Y"cTk ۽f%geg/ܨ;ѠP,M(@خFpJ4@@첂8W[1hf+"%vesх —߫S FbTaqK8ۅDgM8&PoI(Q^l'(Xl8ЍYľ D c: ǂjġ$!?l8&AkƛN"{!RM-z<]Ng#`4<ﴣOW.҂A (!8RJXiS8Ȱ5B78D  ;b42X b4#Ng HRƻ:?#XBG3YIP <8+ŏ@ßC`U|'z7QciЕIRvhFt @Zfa1 f"EV( V6(;N aC Nc?Yٱ"z, #"ƢX2LvV.ߌbq`DW 'Al˕n섇 [0J"!NEsTIjo=(C iJ .#+H,%~:MƫV8mm]Kw{ _^O=TdGgeBj4^ IXB +YTYx gQ'SN ]yoro^Kv^aXLF>:s&]} tW&&2[Dm*[imQ(z>n7Uڗ~ۭ2Mu1ɋ(\SQ)7eY%@McY:M!94`X~>CE&h.Hf3=fy1հft^ie>#F\:e)#)z~,bS8`q.NbT5v/Pq}0hM%, Z"'}륋O+Nt֡['= Dw$k'Ys-od،u=?}DSg]e!&ͳ تKX.d7C12$G]̀^IXZL"F! Ǘ+x{0v@.ηiƋbKif`iV 7PCWBZ}֧yˆz'~c5i꘳R9rBL<6p^vS kn|dBxmLGzҲH1e!پmdl?4 W=(b3`G/xlXu v F+1w岏aV(뎸|X% 0IXN P+aE;U8z. uv Yw*ׇ݇:=b<߀L*`)9P4, ClŲ?Ɋ(~/BYb㝲^}8VQ>5 RdcaChj"^B.zOB )K+I\)8.snQq9 koY'w훀9RBw):mD-BC a-hhYCl]H=Kyc. 8^y|۩-Au)6(.c+{RL}D'y.?7^ }k\A6ֶ2r{K[O[X<PsHe9(;){-y(WrEM8 )%rf1+jY{[,TóxeKRLm'*!GyzMz#NV CO%jv.92cd/ ' ߫r׊؊wCmײ\[}Ǖ70_.uAg4PZ pJ1tO<('cs",Jfk='[݃εtm޻beYZB/Gr7Ț Tl̖5,\Z.~VGͺʃ*ٸXh`E g0@JCnQ 2$Q6R\7QPŏ'>bi/DZiル68,03Jm-ŸE3qjm5+bsj1$<f(\=%3rcCKy^B]cOlO oktߖR=yA.B@ꃺ hb+J$tv *^Hc/GUK#^Țj~~\~􇷌b}`^{68Z']ܭ%T L nɃO$P%唍1~C%׾$*.!%P.58 'NB8}1 Ph"^:1ӍAGq^3cK%p*AC5.c6([7Q3%>6pU=PCX -ZL.afp\I_tmt~n` ;y<;)E&SힺWݍ0{astgY>fɩ~y|#AuqzUȑjl -kvyV{皋lރkJ;^C-kuqj+L$\#1(TK6YiOH`Z1۽ΕWݥF2ӝ O+zu4=(p"EgngBPȹGDzT`(1ѳGDͥyzeڜgga vD;mɬ'^|!cA+&'PTzx@?{q~<~̺ ^|yg5Uv嗛jv֥t`"JbtJ׾c0E7Nb[{ n / JvKueXqb()OqJ0靈_!qU֎d^R1,|׬|3.䴯tlepRpiOd{UC_rzjsykM 58pC\\̧X;uVp,[J[ͨͅϐ O A)d_7k{APvZ+s/p\Q E䦙+0BN'-~lr\Kic̸nqRh`EkӦъ[f:!Dt1gpXAD7 բ]?XP$%/ ^Y!uTۓ/{[ShOKbʘk:*?֧ vJåP/c1C*A^;_Gh93X+[һ댼ztvK sbFm\c]F)Ӵt3@41ypѿ-IPVS.]ݣ-MHf1_h}#M#ԃXmE<(/ v?9_1W#.=eGrd&`[]9ؿaScvhN6σ ǒ~bx:`4ˢh(LbQaKcS_J GA|="#gLTcIi5 j1Q˷68ٞ5 "0&S%UcO^ilXnzQv;Ԥs h0;EF`G+GGʎaR"ɧtZ4fr.yFF-#.á"x:0k^p ViJ"߫N]]RTv^q+2z"#l3|ȕ%9XU tLϿ*vJ 5. չxB\%kwbbk5p^v{fRH%ef@jgmdz}>BI0_ WK}Eٰ$YnPs+$a/P1he̓k2*V7iAG[ȌDx5FNzg$ p$/0/J?PsPB ;^hJ A&hѵ6&g٭Oo颁CIk-irn0##iώzeRj0t>2_paj7k]w^r 2HkV51\mXԽ*{iEben6+u<qb |KdmދC͙jXOv$mPlYQf_|M y-B07Y6 q#\X_k@b.Er` &4送nZ,dM@y vp(#Ewrr6}r\=Lc%zD5DtJݖCN^Vl٫=9WO GHbe/-JìHM%~4A9!ZpW`J+9Cd\?JqTgIYF0˫la$ԯh QB/=A)OP/.(T35w,` 868j%%݋zf0Ga/&2% i[:ylJaS72_g,qFy|N^Oe@J][tv\CLWYOU?:}l Zg Aj4M/i/um .Fn=e 1d g&!t0Xi|Dzqxv"4)umK> G3j . L^vdK10n;wN7qAfnjMe-Cn6i9~}rx#2G+ZVSm豔ImEk/- Oo$3|S>rEYNkBHJ 9::YwtpxGuS*RuGfb 5T_t)ދMnbNMhW|@B2ڸ1?VBķ4kBm7WpkHde7ⰹ~F u1~z$vhauSW>lNrR?gGٱP{N*IH@zC|{Mgds |g̫!iFuPeDAe`igB&.ŒXV-gΩ@QBÙE>R[<ȋf^J?`(; Rc1QW  >,J]! +rU+)J+!( {6A@'1-#ʫ1Q GB ZT ǍyuHVSТwwWKh\ؒ=6*sR^5tHgE}՚ A* 14*nfLjO(AZn<ȼ"\US25/:$`+{o2#KӇ0bSM`f9"{AL[9g\x'uScBoSU|UL>6W]j[0ROh+!cyEQCrX¦8Q AVVɷw݋A@ d{$iz9l̽Bg JAȻ5 nJ H `f6 ǫKz뛍 b^U}@,mױ) 5e%H eT,~_̱fv+ВzZjMi޵%+s-H+cӃT=*ixu2Z%`whTNO)xt8A:Jtg)4ivGK>8JtEX}ʔ3 ))K`Z<}T)!=jt@e_yt jk@4&fy4Tލ?$165!Fߙ"BXT/eO}f GJ9 &9S)z1:-9Et:+Ŕ]js}wU"n|Aw%mD0{TQ %v 7rR=Fީ`]#3Q#CՇPK*8k`E<xr{lcַYΗrXbBEm]F7m`>;B)mImd*diЫ>k>/O\ۚ!Ug_/YI7@c/.>B3rWݩ`"39alpz\A/4 mihb㧽o?C|^q*ubܽd`K8 v$ |9Řfh[IbasŶ'/FW*j9EG* g-?\O__*mR.O\7pXY> 7Jg[IrGߒwZPU#jq׽h[tN _r7 FhPX[:3ħԖs35թЅUO^ȩfm5B+;rqB A)i*S# T]us 6XLmAfY>RVbhTU[ /ߜGpW8tG?ՄԊ !A&0Eʐ]`(2S+.h%rOB3*b j;(9h񧭢O1P4}7`芬ǚ^X  eǛO)PAq{3:w]= <, 6$JtAجa;u/:Ǟ_ReMr`RkvH::`sZ- \ )S>Yj:b/,[.(Iוb{ُ%mӅH;=0{ nXm~]A4ÉlVu.9=|7P=A{r H$*; ChUI+J[5cgP{^2l+ھtpJ;nF94]{!ZF'{,ҕY\wg^NJȎȆ28i Ǚɓx!_bv{0c"98e40<*iZ1]gTHQL{2MrY~y'7aaHК&VH7jŃ*q%rY}1=^W} T%8;2/ǡ,bT wRC-bDrxڠ PKT(7nwrG[ᩐ2buF&,Dj>53S*5/Lc66D]г]F_{#2V%I ʂڻAE~x(DjE𘟓򗛀δ[jk_2=1 >ƩX›Om0Ք;:uMWN; 'ј" z-B+$?RPۃ]YIqҝ}ǕV!vv( Ydsl< [:.d?_Hvm7ܣ.:(A GΥ.ZjUx2t H@la+lTdrKɀB@/(HDxԉJPtg١^Լ-h(m?$;18=ԏ`9ZdX;X6p 4'h ̀ʷwǔK8\giWȂ2+.I[bDC({ RqPm~ˇy^Ё"yfPa[| ?0a͍؁=Fp$Oߴʭtsۗ= >J3) V#}H@ *]O:ua.rҭ("4xQ)b(ߩJʻkv9|9[7=`h#L_uޱѨS-/#&@)]Y[qw ^eH2sxA׀+3)J Z;F0ƶmk+1o4*n~Jszc`])F6=Iػ8KDFVa]܇Eco+Oʵ DyRX!זo-rEJG{~2`w)ˏU]LUC CPW׈fŖ`m,u]ChO]f?n7tV'?7sT^@k>g NCzjv>/cLv#-LA ,}p07 j-Xs4[HHq=`[6N"J\{– x6 s@/ u$4 ꉀ #*3iȰQh= H@S1TƛNZdyX[./?t 1}MMb Zg V]R.$yAϾ/&磓e^{ީFM,E"1Oμ%eUJKW-v݄\tUExBzy9.L;?/r:°~_ .ljvaXi{9~PE)ոI?hV8s-"0֪02+k}I9( hc^1[V"8HPB`lC!?(c; ~yugB&~X&3~KbE-iȡB2nPb@uZ)kfY_*&p.l=M>' ip7AUD?->Ҟd4JW4ख{^; 3GIѸLi ܡ  Vm۠V#M~\%>/!}Ҳ*OϺb&p%@ctOkͷ2DJOЌOjH)}K'"C#RPóO˲m߃*cIUWw+ MLao$vꓑ&d@z֞ 7 ^iL"&hǽGsV,gY9Ԕ'fIENjـ}*K_4;@wS}?UW=8^S̵ĆjdiLa-/<]W0"?"Gݶ$ *N:chպ)`S]ml_xC]fI2^tT ɢ8vy_PRuࡂ%xR~nicV6~AbD,d+5mIGȭ@9E͸D1;Bu: AleFJTf,vEb*Ga?k*3\QhHTlGzsNO(; Z/um*Bm˅CU ƥT!)%1LyLq>13B()UitZߥr mXb_A, ܿ`}K~Ęya8B I :)8R}T7| Eb8|p3"T⹼ <{MvGX[ ^P#{Ap6iU|砂>, Pr J6 B\ؤƳr&GnSTSd%v&؜F'1ztn g#; WsbsGxF8 Wp47[?tPeu̅L1 5l_vs*OBywrBBAQ \vufUC#' =󔦻yрi*a9`rOd1DU?` BĦ3֗e2̡#% lǐOiq+wvIAc-ks vż'*ACΘʬVV `zەWdg%wS5DiR";̅0b.jݒܫ_~R= ʸ#NϏ*0 L"KP:Tq\ZbLӟqV+ 䋱0W.ĔHW9eP93^3gaA! S!.r.剨HA5`pliW=Pֹԓ3D fˍIUS_k&!rا7n~޼Cz&@ ;rb(+a?6D/RC=d W<^^\ ڠ+y5ǝUJظ3yҞʳB@^(͠gЙT=-Wr=͉ẰPK[yNE\ tJ gbSfji'eaIe*^8}=sg\R"<~ 7*;j\=I\4mN \q % ?>H,= SuQ̧u j:( oPx͈$m=)X/eGnxauD7. Й,mQ'0fP&v:u@XRM,ru('>trHNC\yρYDI^ W<5D#"o|73~jTYBeʯ''^EBi%uGb%kf@|J );mgmd` a|?%/sO+*SEM9<쨥l\Kk&py3N!̒2*]蔺#Q0"۲|`]Uth?7#[XUp-OQڴgSnpaSdOF[)IXJQ(&VRb&  v<8L\C-`oJR8ZKVb4ˉ诚h-䲰( ;Ke3'SLк\[B4*QS5vS4V{&mf e)#@|ܢ04BXY# tt%Jp¶W.ѵHՑDXNΆX!+}ot tKm'); "F J\/-Vs^BJ?1 ;d#rAgEufeY~[Y[2s`|n%|XDȓiX7=ItA΂%Um+w&dCbT:C–*g8Dgc.AHj %m֋&3R C ? 5ΰu3 I\Zwʿ  pW:Bj:K & z|nCɌޟ)ӕ=~ZPvU2YGC*\#hI1 "j{xOogĄ/mmN#"b]:ك8 4T>һևa0_=ͿDz8 ߅pi?}s'GaĦF?8)%0VMʷuCYW2KWc-JtDG!ܯSk0x_Ÿ&_6t+Ѹ%* ooM؋XǶ1~ Th%] 05Q |sPfAùB\a ߏQuP=i彋M*ܔcAm<ͼ|@Wb&/\}8Z]!1AQGqlJ-kh W7d5Tq“WH=?kCub.2'IInLig9WM%rY bФ9D/=Q㨼F H9)FmBMn3Q'}:2<&xjaoCj:l[DJ {ӄ/*}"+ԩI6Ni%3GfƟۭ\c JVRd?p7QwUR$1E$.0] L d;z{AS0k.3Gi,G;ٱ6arxIz "=}-l)Tݝ4;D G` Od Fnn|NjߓO:, cM-)*Cw<7CU ͼir|T =T~v}׽ ϲHRv /? L`Ɣ{ Z(%$y$Z/!M(0jdxŒ$ܼ."NƷIA;ts`LLΞ* ѕu&0:eV̙>>AS=ǭT%4ZZ^a0_jcxϳT+HמF+?F5ʃqoMV興0d3)w8v (G#qi=TŐ6]]Uct#zXv關}mϗ\S#l\ CCQ3LufyEpij̲!"^cZD:-zG%7j^ ~E4yXK/-2H=rӖ[OeB"Rk's1\5xKN(6xps(01 !܁Tnv?Yǩ/I<桕lK7Vbz wاFc 98bJE;*^L-MQure)ZZE0b&"bYj: qۅ]84`pxEmsTCL`':5:c]|e1-Wpl7Q`6{{虛mK{Wdq7]}(J@rGTRxJdQl~ f̱h4IìZu\ ʜurd<_Ine"bu+?b*Ԣu QDzߝءX1~iSퟂTJBA=z ʝ|~Rx^5(q~WEáώml>rAշ/jO.qG/?4bǻb-oUSWU0@uz萋4hhF's)n0[a4'0W3(D6m`5db;/fܳ8Dv0x"hT,l+nDצbv%ψƲkYxRF4IK1U ],*oJZ NNB>1( Nҫv=eilxAmqUU_ YlFY$DGF13_4*M.^%L.".U_3߿ۊw*ܴOhu% 4SDy :_}%CָuTYZ8WRut#<KQ0M_V=7cf}njؙP]CUS}nwӂg ֳ5a§<9!c 3DffT{J:C 16^RnP h_S]Kg|)~ʕK#Rn5f/8=d/ɵvޜId-Mi[C\UG4_"2hm᪽}df@(8&1C?QyUS8v"R7ŋ9JtHҁw?W-tB*iLîÍf tQN_s`@ ٥(Nd@QG<2{Q?PԷ`7/)iJ8E@]y(&=|E^w79> td 6_W>NPWTQ|/T(Y1Xs<U'P=RA 0N#ٵ}v#󬶐`@vk kFiK#-V{(?K9D 04qo4 yorlEӫM?;oے:| z7D!iBELP 2{ñq6=Msck&Bž QPzU~;|\R=]@P^WY>nTU==wVÊ'}-v&έ)= f{ Ss àM [Ͳ}慖UVÛj[1,L!i]Bu=l#6f\ˢ14kmQ=PaMAK9X&_.:Qi +R᎓^$a ÎyWCE&ve.}z D>FRx5<"f:'Q]:RHhU 4[;~foC{@%ST:,̻hT@'m;9SxZ&.g#lR{y)1 0g!pcRMPZG Yavo<#:-((Fݱz:e!Ś$P/ѱ6n)#iL.!mUAbV?&"qi5dDzdTߏ*'uNf_sh#=śe!,􏖕6aܿݚME)x×rs(A^Ѷ_|ԳXxD)Նo "R =K%"#~ Ή%O3|LR93tBIcꛊKݣ {n7u0kZX_7aOvI)OgbDLsDzpT a;\SC60;mހ fV9h%KFDKC)x\i Z%*?"w}\9z[9 [-D:=ٙ:M{|qOCl(* $_?,'{ }u\'&c(!{J>C(h9F>/h}Iihd"?/zNYMلzdXqj@bJA[{ 8%Jj`rװNʇq9`y)6KՎM*DGVNX]KJBߵ06 v֯y^(*A:2"h)1Oj&}gLjCNl]ZaK0+o]ɓ8"eheG$Ls٩4MaNԹwX7kPݞw>_',!փ\ ^q5ZVsSL8'5f.;dGuməsgj/8ʘnwL{patY96DįM[܇mRŪm#mn#u{'"$UqCn9@m5YJ p=Jkدu#7&OO"JQ͑{o:F>zL. br ѓ8WN;a7׭Nl!`,_0 &`.>׋h#vK+2~d' Ȯ rDSCvBTR:;,Kfc:3L7@qF퐖նrdF=/<D0W*{IcD쥕̍ܗOLZsqo 2 Y?ퟅltOֶ- Xg䇀'Uh^@eش:Ll6{?rCiNN9].qM"mOH"%0a vGhs3nO%VKX54A}^cVaZ#$?A:U[Af}K+}.mhY+qhJr]Gjdo[0T&JiNY}IE5s&k{ʢ2y2GEC6-554).`52 0#m*'-cւG#;JuD ʡq7gV1OGFD pD\ e@r [K#`ǵR+ A$pʿ:lJ^d aN?Zik :hghM(N5 7yN(CKଲS,B)w-KLO'qP1zct=|mq阅$N^&zZt N +=3XvU'?ѺpWA1(+"Ȟ[VEA+j̾JM^%\n3+$yVtJ-1|+Ʋo]nU& bSX1#Abf&^?Ǧ%}(-?i34Xp%evQoDjqĩ27!*_(sd&_p8 o N^bb3rٔ%v0e~bYd͘:D2Rd.VQr^!A[(ܲߕX&EHWTO8SpRN1`eTd7Cu99*E$@+H69z[j!Czh\)!^[C<%6ha\,Tg(\@t@Ʋ)7*[/Mwt8"XwwFxU%8[%8[ AEC5t_bR LϨ &,j:&LV 9@ TXVm8ޕU)2xoUy,KQCf"|SsuSWC_'¥nܸ>*''by:Sɚ,)b 0 &;:&F4X.&^W@^捆6Z/s\siO}Ljl>_3QszޖlDaH+~ڹڢr6ˇY* ЬJP3 YH00D(IB'p[mA?v$bDڬa®R AF`\e6 3̆x_LK VtTumS74)2\h=+CY{6$ (/Sen! 9cgS|J1~{tP4z)nИ9"XS9}8PPk,r !K< pF7#1;gUlQ;6t2,h]Eꐒj?~[YSJ }C˖%]r+GN: \i@A4M/ f&g6t;|ʖ;(#_4!!ԝ 㯰ԐpD G3w"ʎȆG2j&z,#'Zq X.m*Z7pik2J46!׿Bs:I?}3+篸V3_5S,/2?qQФ(~ -]Xf|(:LBܾR ^ ؋c-1- 85 SP{NOkOCqxr",J\|Ӱ3dd0۔#-1GΟ)du3;{ s"~GrE3>Rf4LLS-7듿PYB#6H(6?~; Pu>ui;T݊j/6"snG91F2`itڵ臈BeqL  M MR7^QL5?q1Tr**)e<.0p<[ al.oR Γm:^, T,:9y<,}]{xtTp Xe"'}KL3b.E(S?HN)*n͇O#etC]ud㔨n"#dZF[=Dǵqigd`{ ̟Ϸ#n~>YTPYwگ BBU~l]@|caM S@hk9a-eߛR@H"/٩MHG:N.&S92ɶONR48goP%TZɈEʁ=W ۬ #WhB|v2r ЕOm'r2L=o zŇ%6 ; ,57AG0_ƣT]ݳl= .t\Ês!C}wBI` =928$Ga"JJE!%26#T[13i]I{])rp:RwHKM1ѹTJZDYMLmƎ55e/y6\y YVDӍymZ~ }.9q@(#!l~9GQ$],hzk,G3= T-]| ")߳zVϖ8p:0o "x|ݮ]iܘ4%H/"ySY uBZ;FX/Sf`(2 rזZ$5|3;7WMf3=LX /X>_ܣ_^3z1sfÂ@+Wτ49{fLt:!#"Jw.}9%Ȏ~\NΪ74,IN|P\6gl-]OQHA wez)`WwUm( 2ʘtr%Q4eXxH/煨D'U~Qiz))oI MwOΜraCAۦn©=+|*@c§1չҋ89,d"{6́IS*>aIrv\kN@n vO[Cʥ3a&P;/'w ۥM6e-M(S~)|Оu/ &K1] fC 40drتGe(2FMd;Vҟ Sڭ_˼mWKeMC8ۇlt9bb{qWh|V.tjP_'a?!_ i>dJ_[:]C,VηOÇ(e.S( SVrNLY>TgtX6O^Nb{2r%g.[rkubi?Ꮫ!WajÜi_ƍ: ,6s]-.o .Q@hApK<犻G˄I@Ӂ)O;y^O6OyB`#T=.Y=XY=aCWmdq05y\e4!͜8' e-VE Hv u`[c[͏0q Y ` iq_ҒvB%KO!?ب0a0Lo:'ٶOQ,LO_2kiT&=G_D~Dt±.-{kcGF4~*. 6pIx`\x쁨HmʍOsҬ3''$/X2@rӚ-UD_:P1vޒ!ۘ!eGJ@O$c$ \K`O3I(Ɂ#Site9*J3 rM#rU ̤'~Kw>T"egPL\F#*  Kg#G +Ӈ?x{n-\ڻx䏃G*ː T CwRk*ۭO⡃d+( ҡJ~#Xf 4pzP_SXfK =Zu=E̗-C¹nZ{ͯi>vIsCAٹTfD5XJ3X":MAv<Q}$gvL&|'j z~BY8S3Oy2@xwҼ-9Ꝺ!I<,GPQh:[Dݷa[$?& S1X[@("s8}ϴgd<* {@s^<$8%ɮqozT\*\m{[\!m "b^!ܞeN_.뱮82d;ODƤcpXeaX^#^ޡ?03KNPE"k2wYPrM!DYܿve׮UNY~3/&ya Kiͺ2x8%[eˣkA][̫GGh5uP3A/BBQnfh00a-OLʷtF#@ʣ yz?y}X~uIU[mȿpJ&mlt{ /PWF|":q*3} ʷXoZ5q>ä^#CG?m+@/P~Y`qïQݻ. ]$:8nߊFԋNLN]'Jfޟkv@? ]2esg?3JpA}f la.0:AY'm<+S,_7Rt & uQJMR0 ?x>XdӬ=&aJ*,Z栄ͣ#}Ua^*^7 zsSee4 s`:fb8 :gHN$F}4<傥 Әo-Z[҂?VN}^-BɉXlתRV ^%N+@y阵ݺS(PoxbPz<Ӯ|%{g|zߣy%F3VV:x' hXE&P5/)ʜQIduBd|7mt|p:T?O?3;ʫ YqY2-EG 7QC%BVЦ/F/1o=|^CL*!Xc/e@?]јƇ{\B=|| ֙/,  K{L3Xzث,,nt;](-jh;7]4ĢZ_JN^1$t΃j+h.βD {$˗ vݎ$'O)!NT!xnaUɯ$4\Km넑Z$s'aHsW̝*yM+Llamv$r $)O`j0:g^3)`Иd.Owԯso#3UfG<$<b5Z#="b7~ !.K[SgPBs&03y=؟ +[,ƀGLj:F퇽/A ؛BNwh1=,̸$xН偶M0ct*xF\]{\zIg C /%f0;\WAlPq'nEUDϟJu 3e.aTsa'K}kw+e~4l;o_jnb og88I34kh)ښ)80]Ow%z <6z`L]A+0y[OB7;[+Rs֬NA:QAc >*ޣW"Sl֫nI-2(q#{^`h.kW58gp{8-\/ٺwŝ^78"~c0f|z2u%V|ꄿdKO3Ȯ ^CWYb #o[ :wlݏ#oL(`>OUOB. pF4?4>IJ"a|55s2^Fr%“?+Û8#:éո?ꏜN~z"rʆVsV|SӼSH⇎̔J 3ȽDz "C+%0򢹁ؕϧa9WYS]m^#Crs<|9Be BVؤ afNt6ɿnuao!h\ؚ s"$7%g9$$wL]lQoh-^3: i v$nUWrPʟaUsUaSf9Z7hnI C~uepyS 3XgH GD'T` $9lb8Q$J=GOA4ev׹Bݿ8VbmwܴO=n%뭵{n!+T<+8UETGsMn"Sb¢&,()p ǯNΉ xo.%~. dGdX֤]s zeâ84s:nZ\ak^L}f+biusVZ0 S Nx*F7:q^J,,W'ꢎe16:\\? Duݍ1Qd'2hJEj'/DUJM&>&EJ&B9&$V = xiܦx&R00b5]ԑ;rK.)F=^eذP6E7Ob)s,NzQN%d:VIԒ)JxAnW㾐"sj {P7J$iƖ@qQ3ۍylp ˯7(0Dś4 jEfkruoĶ3|Av^u@Ns,jRBrOlSVq|3D%I Ŷ,Z{5oӥZb2FkĞ{v~$'tQr`[~țJ[? \c dwE7{:ih{4.u,]#osPyESJXm\2'8/9RskTdV%p|aW8Qzv 1b(#V!\?x?D*Uڟ~~ݒ{~47"W>h~ 嬧 qOկ!:E,8I)ZB/F3Tx] νo  / G5 jhR~8@sT ^w3Vn_0unzܒo،Ya׌o*Wo:<Gyk;%}>IVVGLmpٍ^ Jm,#yI(WUJ(]QHCĸ.!λusM:ߘu)R; cNJGAae`H&aT6&COBy,_Zj1X;(.2olg|v&$L-['Mém_7[gV XCʼ9fP,.`]X L(̫a{vWQ+AGf:v/Mi0u觔CL }%#;> z+y) Ǜq!Ql:jc,u#3#XX7yM-7R >eˁյczlD"NӶa22TUPır \!|ba5A҃v7#:aEnjU7]Ğ Mfsk$Dp6.ŒsIT-f';P(CQ0_{thѪ\7x?cӼT1~W, O#jfRj2S 1yvƔikvf]!DQIVio !Iuє*7| Y,+ V(m%2w ĕ&L;ip\c͸߉N'Azy[8JG1&໯U(]uql\Y@a1\+xևiNF7eo-UdsS">㴧B" o9@ !Ƨ7ᨚs&9֑TH)/k%YD #Yn%&}c;-ԊVt1ORFq/+Q M3h}b4-1[`5c0}bwf at%P?\,]ㇼ% vOց I/Br49 #sl+q$h)|$o+mWMRKt:Ml\ \dh$iՇ[ˆf,0n轆5~es,-ÎoT]toi[>\EZaN$("c'Zϔ.ߋ8ͼґټEhAF%I)/2nmJRPxk ` NeZGHp!e;{C==s,sH;_l=#^wԃk{]ddG'ЃҲ94U'/:)scݴ9{^7ߡzos+/P8OaQ䖪nm )#z= /HC ʎ'z~,KIo B}XGCJuEmv-`DH=rRV&5-6t$Zc!\(sUFGcQb]r=~UӖ[%yl'XC/Xoe؟҇R*.H!6_N7r 4P%xɖI61ZK ]ߐgQBb?C?E2N`6SpN8nxqnߪ0 _fYF+(eRW#hφVߙ6$+Jբ ~3SgRMŸo;;5Jac}IpeA3|ǰҖ`y >+J;֌$7%x[RY^G$g:fNT '*;5OK&B8Xɩ[Zt;%dlw:lQخ.V3A( -rlU=`{(jRO[DZ=;ё㢛 &$;td>Ys=NZJ 5rVr}1:u EmТ8 QLb 0y`Kny`KTg98P˳;=2l5%jPfzBǺрD/aBnCj\I;BeD/BgRV8߉%=k[& ܖIfA g/whZdVWc4UrkA!>LoF=,7Mrw `{}tq_Ka .JId)4<*X<q45CTP;p}e"g%aE_9>i:!9hiWB_VrW5!>y+T@ [<7ZͰL$O{ z@ClՂGkVax>x ;A)"\yEFM9ԨSn !Z]] ~v*?^T#y78곱;Rݷp[j+OQ$E :Y!w) ;dJ4,;W nSQg"nPUZ(fd_yэyΦ6$WkTH9"TE qNJfXvybb{ &AA4J9bj#zJi`%?:mٓwBxa|0z|Z3nz$'K'jD>GK~p$?4h Fu#`({PÅ Cu0t?my)Hd 0mfIU'S {h*gd^L@Ԣ X=:SĦźl Ƚښ.qS F=NAEjP͔-_2 BƘu@AO]K^]T2]a :G%PwB$Qtձq*lGo0zۯXt: /5>nћbc"իg=[7mf+,ڋXf"s1X)G9 Ԟ!Gz_Qw#*lژcϪ PT ʎ~LGH>KГmcfms*4!y8oc0| Ov+gC յʸ/`4pO._\2cunߥ-վs?`F0.b5`mYV(F (|wq@n=Z9$aj?B~9>#|fB4' `ɜq<BB;SU~ G 4r-rGdhp[IƽsjT+~ᕛ)xNXa'y{P\ Z&8Ŝmiwk/D(HFxXV /l`R=w6.+M6dqi#DὑJ/@pI 5Um6MތxϾB@zZY|z5̀{l`j,x0rh B,[PCUG P܏xONt' ǯ7-<~~/ͧgRO !kqRy߅-.Vpu^ .qE?#}]=/X`c_eI@ W{5A?tF<un\k?2jDpJxtK 8 z8h'筂^q fT҅oʓߥwi-(hȖ7< mmU~0n 5TX=r%2gVB\M〤rf $phxTuMoVԢ D+{oafYDxQEi=P>#f"/y0VUhZ 8 :  +OGOVwhCilCRUV-* Vm/ImPer:z9l̑Jq*(o 'C'^*!Fq`TӒQ~CthO=wrB"Q]W@GTp,>WLtP&"u~Va>`Tv]TՉ'Ql\Bn:UI3ѕ4ZILYlt jez# y$2Z$}uA/nFLmV`yi2հU= &K=1mTj\إBEk lpy06%JI!`KfZmJĉcoG al\1su<0bb cnOq,B|2◴`)>Dڷ.AE՗"(X40ХQA DiX"k!BNiR]\$$)D[ߵ<0 jn##̬At;մ~$iޝq;ޯOd8õM[WC|IF^jS7T/j94#zz13dq|CC RpqN*إy-_Jsy~:Ҿ0xo(S}j[Zr?9*c=Af%i6p yx?2T@AT{& a V¡1M!LidQ@ .pR!-FC)ۃSVta*-j|z"߳}JU+}nꡑZH0)jX-Jw˖ݵ3/_3Hҏb1[+JǍP*]zV"۵_.|i%O?q#q󊉒Gɔ=Eeaw=s2 gJB=(!c(pqSuTKd6H{ k>5?xW&IIe(O^Z]) 4ЅkqYN 9Gj݂hgT'Ř3$͆:ak~mDBgOAR;!%"&g#ACbم/=M6~Gxt\?gqSO`+>*Z5QgU%QKu? #2˩Ud|`fN px*9%>+P5!Yk/eH+'=0-]߅/F͏1hNJ_/`:(2zVnM e<[4ee9l.Nj@ί=SU fH{dP8>5^a2Τq5XQ9ᡴC{S(w܇.L#󒯏8tRxӌ$?whce=M #8"Cy7+~oB~4\o|c"OP ԰/d˅kzrNsַ=2-o\Ily_Xóa#5@R-6ݲL wOAmF9Թ;-0i˲vm=~3> dMcG#IPZc>`#@w|)ҏmP"Ũa y9rTMa,P6.JE$۠bG'!mGw6@}a6,&uCB.?o"5G" `uۙD{TJ>*3)fCܐcO&frs BNmL!؅`0B+0V~= Ҙ%Y)ml).e5mdaSd,c,6!Z:_3aƜDcےYD8vd*Z#wju=UǗ"eBo Ş}iSXP>^ϯHNk-9 COf]1m ~hܠ&g:̫'SCVI-RJ1Es/r^0v.Mu:U㆔.]iq0HMF@nRK昰7*KDHVd½31?D>02XP$auK)~<ϰLrYt= Ȧ$0 fk{Ddl^Q0"׎HYg'4zӌHDOe_2W˄eZ׮IUscZvt1]Q\75C <=YHH&E$%n J%"g{< Lr wC }7S΂8ׂF؃pHBH?{3N{N `9 A,Uo=Gk!ظolGgIW'Y@ZcFb=7Mn*%iz)POlcHTE/<1!%UK>GAH]s~TF뒠.Z}W(Qo9G 5R? \"8"8#uī+pSd@{]݁Hvςlf KVuXO~V}m b3Rs}\4L 5b#~X$-v2 F\?qׯ{ RV}j[V>eWlWWI&"~ΝYؕ7D?,gS?4Zl ӗD8+yL/ghIlkj؝ُse池!̷=WliE dF$4P{I0 Hxe "I q.=!;Id-<tU@oVz4 *P[տKG6H*j1ƍ\h$SiMnjh <=>T g()$!A1bB{Ebtԩ&++V9tڇ(X!N4)3ezW6ǚ&~;Υ]8#ᜋ Afۘ^JN9pjL5kc"M,B* ֵtd7jpp8gF57~Yڹ ^D: HျegohN*Hk~%FP\)#_K٧ _f|-J,{YFZgz~h4B|8ua`ص~3'3sNbޫ!s#I܊}lEIv ʹԿ( MM^Un?G0j@l01O O4vIhvuo4ωp*M}&#$=).z٫RmZg8,ҧػOrI?e \_:NLpCmԝ]YgoȎ g9ce6#y6*!0%71FBл:fLU 3EM5ܱ9=ý`CpPr+AYƶҌFm^.U8D|vb> p6H }97"MϜI;*%^ m3:=Ez2L"v7x#á{pUCg* k[َor v^i@T)V:  \mc?.=YՉG!ZٞA.u)MjF57<2d7KKp yUX&lWp;o\\x$^dxc2(L|]{ߖʺ+?=E:#{x#]=wh,sGXtwj{"zWIH@t7͹(^i Mٖ6YVd$82vil4 OAW:0a,jٮDĿ0፭9|^9@=1S^.o,<)V%~WDDuN)5K_WЕ܇~h]V\\d&{Q>y"S82uXsfKDtd` l\NZYЬ2h,|{SW>dUBeAd__?0W n5+s7-?c? ( Az +.-G!= ^XeH+}oR=6r?, |S_OjT 8z5FX")@+/w,:12ٵ[<{ @) ƋQG}#'OmspăH1NGErjc0XC.PpSk!q8P_㫁<4ʣMygbY};sJTK,IO4)bBWkBMFa0 GKnj@@s09[]W?g":̩~jcXe~֋{C!gOWL7:F#߉*5x^߁kq(ӈaw;,×M h!-ˑuѩxk,ժ(_ȸVtF[Wœ3$D3 uPye4v9X+{/M[H".كֆ)&QFx"bU3m Ζ$ mV&@_},kU:'z;XNFu%69aĀ E06Ôwj̱9 !c=:8(zB/?&lG jEW{cKcӬ:?"v=D߫nVH;T*4gn#dt.A]TR͔HCnWl83~TyUi(髥FtQbv(9; +eq %\yM3^ 2s XP7Zl ;G?(_{6*4 A!Gkaư^dMo q&LU͋^B%* 7eux#Ѥ%fC9ՏKkpK G߿k'B˥).BEHBbF9x@qa^ N|VјZG.:eP |Hce$k9ׯd#?r^Йu*n\Y-.WrQtk7EIlkm-1P\%ucLRb \4d)l}`+Pm%Wnmz znH-2_nLػȈ2 8:Kw]4<ҮŠAp2J!ĝ58gjJI@$w61!rOF9-ap>X?Y6BkZ5ç mDxu~6Q\ix̵k摪Wqρ9 [ NWfB. 8s)zL3O~o"Ǿ4> $yэ"Q1k7+h >0X3dR/fw$117F3>fӃsw4Fq96hX̐41r0 EGW6-ð~năl-^=~ ",Oa#iWK}drk>Bܗ1aր™"R$4L8 ,@~ 8묃+0$Vh'.):-CT`1Oz+\l"V.#5fkrդ˕&A=547` fvD% a%,Xp}@Ε ڳ11VHzd]48`y \dGp^N?Y0 FKCZibCFvsĢm<a\ݒ2/MaAfc\ 0_UQ9ҘN#7|M.}#SJv*V6:ŅZ}!|.vtw=X1xkЏb'm$/;9=֟Тax7E1<sIt0tS()LrӬ zM@Hxuk42\A"M7yQFS5bnݹӈd?xYKх^ԁI؛].>~c ѥ;g}WB^_Yk*nu3D/SļF.nn{z ;*j)N?DYY=AGIoF#aeJ#QS66j$4k<4- `>tE5vg%H U8,h+3#E.R/.SR(-SE7zPf w2(Wܺhiʹ@=P7 rK2ͱ"{N 3-^@KE RcL  nJpQ \C!hKPoS r S|J Oipa$W&cnׂ@ $Kb:QQHä2񂿶EYGE $ƓDaġn/In-#Ro1֫UM 6,A5} Aw}`*`"C!DI>G (k1 G gl z%R`sӒ3Mw52f; ,y]6Vjfp(=(g[w=6i$4=ۘKБ)"ʤce-D%lۛUg Tѯ!2e$-bD+%@?sg d9U|/lQPa1؊8k%KoqZ_R!3 +hw.m)Ah7xfj7t|Yb!ux`'`uӬYF[=oGR_ȱ Fw =EN_sZkh 7Y򈘒+TZ4dVQdbMJf K,*Âq8W NqV-ܘR꺒Nƞ-ϯ üeikSt9E]P-}jPܴ)ؿF#'} ĉT / -} [7apG`@t7t/Zd"#m]?pI|w.Z/4A [{Fjc ?s^y Z&"%e`a.@ ߓQ= e=<*I"_'N4ḛXcBOmB|/=槛c ΍_t|(܏0TA3ncX^?KLS8:P  rgkI_5GHmڊە(^ՉHqfd\2-,GTWUq- QXvssx}R@d fEQ#ש Trjcњuz>|wϘ|F ?Q;α#41":N(UFOp3c"SFӝ^'ocad@zalAE GUWO<VX`,m+/m-bOXF;~*pKs0|Y߮}{:ԓL֛gvN<=cю$/AA oI0AH*j=z[,¶ldfoD17i; -4׃f LeY׌.6 +QԆi[ $v];eW.m;D9j{ISXR E9sH#s9qayс>/k8ߘϘL6+ѱup0CΤ gXm^ jW+* 7^\XZRQt^dϘEͷ*Dt Wܮ,6 8i) QXgaJ?//%q@^5g(cY#9,5H뙴)*'ED7>/L"?5%ք0kK+%I? \⺰G-).JgVhD-Vsؽ %e ovjhzvV嵉hkbۈ_^<Ћ!NKjI6Wc-t'"X,6ʑ$ZԈ}d!_Īl<^>]c)]JU5Y?#sUꙋQ,|Goe8'KA]N=)Eo 4M\'b跅D~+{%mre<09#=U(jZz9d돺rxCFj :κԣ6xAp=4JݵGa!=nw'6 r$P=Eg)uMvõ ƒ@p0A-M vX/аRf&&nN\+>Je䢷Q׮fJV;?^V":P3(YUbۅ5_R]ef+?Jg(5gs_N#]߿!Q6bQ*;k ='U@Ns/A]i\<fJُJqA=u=-,Ez>.퍺q v*c\ef7kxrjɴZ8X b$ks5³_ q-VA'f $~mȜ_ӽu'Ncrˌ(9^tU *Cu[bG׏8~Gҫ;R.oO̬ʃ@,6U Rɐ m!V_dCXVIwI\UvYf9| 9bMev`^vL;['w58Q;MycwB8N.w,RpKD"e`=Z֢$\aB]tv0:쳙J/0i)[nN_e))kT[=zf<ЖKw5Km-h+RHy`ej;ݽ8n\\!ҕ7!V%s웺Rux)X=dVY";$[R(.r+Q1#eO!Z"Ǥ}8X.FUyv]<-.!Uw^HWUe/yD;t24܋$-ai]ӁLZѨ\qVݗ3ewwӫ=}{`C6^HhU[ބ7$SW0} {B(R61S,{!p M1ސ>B80⻩Bj~p5Nqc^Y~D'=8F!oPq; fXHI0Ŭ^Za`yJo{7a1m-I'Z><)5 O x$"dH#(P+-"%^$, !&3QM9+ȘH5`qXC 0ڛr+4鷠1!pW8[3BF2A>4FXSQˬvHF?P-'Cѭ$ 9`+/R'>Fmrz2c*'QgNX^33Jwϩmq0f*BHSs@`X s`-ͻE&tC܂1whݪHܣ༬{^mƭHQgOoƇ,U35 \(̞Z~~E,~%w-3W'*91m;)Vo%Dm&q*$ȃcX4FB1`EVr l>,saB9Z X{HEe#LZ-+R ;DØSh;wrǚک4ƴDCP|{i C>3Po]cTƗ6 n2mT}@o]b,q KB]H2/$fgpҙ#Fv?trCbDy.YlPrct3"O<{.FPATu0׍+W37 mˍ95 ElN# ^)]o BT}gm!Rܢ$(EmľVT)c%m3Ɗ]`hI*`Xؕd$#Rp&uQgՅ)Xb5^P~=VA|e?4b:JJqe^ ydtt-?[%C1ZE.w`n2'_2c: JE!Tܿd@ԁuXzo+?wAa˦U[tFqw햄LWLy="|}}$GYmr~%h73|1Ya5e@Lfw CpKNtmC}/ws"C/&s"#:ȷjtDk*<ks YEzQo"% ~'zPD2( z࿴MPkPLE%_ōA4 gFɓ0CM΃{FМ-Ŵ?D^2]&;*j!l +.,}{0>Aq+`vSHbUperJ y@ί=wg-eoNp"P gqSAr X?M9ʾyIT(>Z07 soyxKx49(.-(AջgA6V{6W-ǃ.sq4+_^@) ++5 /l}DGdsVl$՜LϿ(w1tMҚCe},8w59X 5r.$q^'E d ~/Xq7&qؤK+ &1!7OZۧXH?A>(?+,Pc}9#_r^7\r\ ^d`xijqݐ6G3`4l+ZT3}eӯӳ$=I DqI<@LV+0}`I*_[q#% {ݛ`8 /Ad*z8;zPv5K[:r ,\LudmfFtn$U;_8Dftڢ D&Q|\-mؙGSm.=,khaE1 ODfʷ dˎˎCDmC>p<>z(c<8UTH6p}E_s_UQhk^S([Q0i^" ʻT& |U.}+3˴sq _[LGn5bk"< _gZ!k,Is 6[ *4MפLcWƊNWP=C!p ǐ@@^Uf(fbΛқGQ݈ "YM;c7eBXĖB vu2 -&9TYTBej폪P V?y0쩐Sѿe'\*DU 6GQlɂRa6M@#Ux˩*(G x\-?RT 2+nҡ,aDFF&N$,)$ϳ~6p>s%jٻ3b+QL {+CP@<(## rFu,(]|;n.Ms4`7;sz50i@9$8꙯jNF}0  V09p Su}E#L{ g;*\I=j:C ]rJ ŋ4MBz&x*E"Gs%N w|lր 6us]vVCɛ{ZH`nK~ a=:ki+?AZ!Ήb,GmAGJ )іx񀩊Sg#n!!;XT]P x*F 9"6c)FΖK 81MOZ+ȤZ6xV0!/Sd/ar ֔ fzK^r&[#O~0pa*}mm6z̨.Y`;y AX-M=[>rV4 Ǹ#7E枤=I?rt_[/`a8\"֕#'mw 2vE@[rR@ko#!^~B-eEJb]SKS%zEH}I|r}@7H1!mfZ0w\V*t#xԿT fwuS?G: 9q#?Y6YFXuŲtFVXَ?>rC/QL%4Kvk͑-dԄIGPKK DafA8ҹFdy۰8O\l~Ň/[0h/oQb{`Bb?Uh֑) 8 Ny;*p19[Xmb)jTIo𓾧I&QӸQ۝%Ts`۱K_%>Ug'df и"3;  LY%3VEaP <3].^ȫJ3nP1ڿ~B>w-g n琐f"cɟ`{M3UL0=]JPƲ3R NZ9Oiyh9 ZU5RD-1+A,n[/AJcXvP#%3oFlw[} 6 X%{үS#8_# 5ɀҋDɲ'2mYɕoeaRJ#C_;Fgu=fFW eᨶ~@'?.I[:TRYn/P>Dj# _Ӱͷm[6˂yͱh EZ -~JaȈTToʂ]e>HtfzB|*y1CDDݎ~}0?/o5M;"lXuZ֎o<~wH89 @ARO<BjG/ g#| q.O l;T,bDVAR; ;<% WYS@|wb l!R˚ZɑW#vܿ xL X$"tH|Ш.hsP dPWyy\7!m̕ֈ7d(_aʁ`UHYݗ>Vew1 Ί/< mB;2գ7]ggS+td{e]` sb%..F9Ş_rѱ39CVPf @k{ɔ-~Ȫʺ_*hi:W*Zݲ0|/Л]\ 0+sx럈@14n\[{}lhGR :M!Uԧ¾-_>E1i'2|SL&8mZ-dQ'> Kk! K?paphۭzn34MmFdS%|wM-Gzn{l HqGsTF9>4Q7-;Ew'NUM ?A=X[ٷq27F^)_y\M'{J糾sUmhɚI}-Y).Kr8T64[&dQFtۣpX ]˅^b:4}R'!fhIVa5^ɔc,rDLZnPVВF5L+vd wۡ^6kfKiM T,֫S$5{ ۰'>kyEPg}[V"\UƵ b~Z XHVV7Ly8L|1o)i:5,LmP_pV3#*Q-HCczMײ (ۗ@=iQ.M5 `&8ڼ '.Z2(dycGL2^U[Ll=iFֺ_;׀k)V;\C;c2typ,ۻက;geMz񟩎#!ZƵ2CK;3EDrD.F5CxUqaKlni|ȨH|Q1 ciNDaufNRpŶsT=.v\ly-aCYu}>R&?XA.jGfvk эfoR_Y;9JMzUqJ]g$ȀT* P̵Z^&e |;!BQF*5!BfzP##kؕv)#Q h?Jw۴rElFS21t"^;%ɈZc ?ͨc̓$vJRJhq.@p7pJ+:~V}˓YjrNF^^ڂa0]p҆&>/ >`h>NX%̳:kY]8 /y܅x֧TEouk( > ΄=vmޠzCaC>d;0XHƗ02;c4{9 Иuw~/Gc$llQq| O.w(~TtpxmE5NPM*P.|K,.qSjxVs.Yʑ@>jf3FI?dbLɚ"㨞#\ f{ǼӍbg$.-uX9IB05dN%p?Qsx( UMV|.?Wc`^]t5"aNW[7 CCN u3a,P']yRѥkKt]M GRxj1NMݔ6ږj'th,|0u1e Ԗ Eq*>`0Q.{~#ضj$p4-⛰0e닇~uPe_B9$rKonDWWiBi= " 3Yj7N<㿃X#nkM"7~ev1 ٝʔBD&IWi%%K']I]AZ@&]G]q~P-xÚd;t ABExa^}hvJZ ,mj忋llon֔[xkE5r9rZ@81LT?OSyGTkSvW6YY~T 9 8XU:gpV17™н;p'nt\L6{[#} H ԣݴL-iYdY~Ʌ6>4UnsԃDmL2}1Dҗ-ic5T31OtFa*k\@t.&PZS/Ō3Ā:e~cm޴P=|]Ƨޜ$)70r ' ,4qFn%rmF'gϮ/Aځ^ JRQfP)6ܐSIBm&?=(.<_g9Kd(ѠasJa|aJJǛ6x:`%ͅqC hO e.[ 9a`\XFT5¯RpVݲzlH9Zyecѹ\"biou 1P7 &f9N,dStAU^҅~"t*[mI&2.@%FC& D6tTE-Z\^@$C.69v26=>}5c>~/6 iT!fR(ydX{o&٘E0_i(.(̹5"qEJvUs]W[Uf&1J3UH0/,կFP E: 0+JFm]3z pW~0-~a aMݛAEދ^^m$- P/q67da ԰9,w *ST)-3zI }o$̾) ҄ΟO- ey $M0%t,-2+L* f{F~Eʿ4@d{:rXG v-u5+=wj--J#"Q+8fITIZiyrnE%OI4L8A>8W8nOc Տjcp   =f:VWUwxK|dXdR @2}~l{Ѹ>laGO;=g^>y#KQ>_K04J md t39gm#rtxA8H#z[l$\f In7?&(\p\\Z]ny`xf\SRwXن,!A!G1 9yD@&Do/a&>djѲNu}g}+!RQ%3jR?w ;z]ӳ!!۠t=D/Ck)k/EOo!;-]w ,_!$*ـU(Xߝ8&@uЮ;LES+y 1-u o%9H:>RW6ΕR똍 gSa coV;(JJ<̞Mܮ3QP ag7 |Xln."M[n&<">Y[ڸ2?*+t#s 4({;"CI!wa1%$U!IyMȅCfHBMz#&(7z,-e'N;}f[$,2]{ɓ 23Kjc_kVE6Gq*/kcm͸[g yץV+5}ݤhҹLu <~ȠB\F?N,F8FZa6w#8$4.+KedDc8$!pWMƇSNlpD===dL?JhIy&jS#[< cX;|q5xcc`^KQf#>w2/ӷ87ON2 <&ve~0h10#?uEM$-8hL'+'m{tB?k+QY)ƜHֶ`m@!Շ=HIGuIO7 Rh"#|RL@🨥Pldئ'ht2lA.GXjQ~Bg.NX)?:X2\k69g7|v VM2=#rtUJn{RV+>EWON7?zB̠͝EP/$\p 3u˯g4߆b ÊHpYGGq$BBxagoYdBMGTIL6+/Tʩ왬g8Pro$߼>4$\٩I4PV`/IZt318O ΍svzsr?HWBCn檠m+Yț.Xˢ}?Hc:LJ\#0veبE{nY` ڞ&)HS jcWw WgfN- qY<|^ˁ}mmHD%C{"CThR;lkߟRNխ!P)N;OuہdDl:7ȘVv;nE!k@0i%OV`KSbI8 y^ 7{z &:)m|9Ldufni")dQ/PׯJ,;j/PW6U:{9^IHQ!:^tY-Z(5-K@зKcaృ(FW9R/zZoh7@*hױmw:^q 5qHA0sd9kG9UتP`!03X髜H-Y>9«R_nƢ#&Vjb3y\}/ ș3○pPUT/2[NXi Q\[u&Ia1%򯋴=CGwŬg~sPmT['3qfCaw)R[O[>^"|UFDaH=A@3 ďG0r_9zᱝiJ6]x`o<G<O]~w<@6IU s6 A'EgLNH=%:c-XަVm厓D[Wpc3挎P dy7j>햩t& 2L*qYX|M1M;ٗͩ;,YKy.Z_mm T?,EYgPʶ<&XpCQI䬞 8j#j:ۡk7M@ݼ!c= 3|Cfl0+HTjߴ _0Գt|WYUk$ҢȐ~ AeF c"C^V~0 hG^X8=a7<8zrݍ:Q&0Ub1@(SE)I$0ݽ7㎸Z-J1D'pÿ?߇f>T t004D6d=&.g[NLX9GFF/ese0D$'T~;LkD?bTAL6Չcr ˆ] KSNs\H &"2 > ADCsopZ wPRTW}GY3*܆}"Z.yP Cн) &k|pl3Bsf^E Tg]M:+ ψK}S-:%DǐC1|'a*XTW7ja$o=J] )W }1ZQRG@&f"DؾoLHe&>t[_^\\5?}QY! 7$.j>IwOIWHOҜU+B%RFt_qMJ 74f>-4)8&1 4%aU t@XE&)1} 9)e.rUmd=ALSG6Gs28~3؋^` hP"/,7v8D=79wŅP'o$^XmωQof$7Z%8!8<"YCuD;VhuXxwȢL\k-[Ti%SNѻQ|pU ܄GS:RL~TwSJLg`cuYy_r MXן9!+ 6gQv啼y UN} ;ufԩEf@QC+bl~s}WL+4 > ^($Gt[twĿPuki?nh Ѐ*r; _o=>e!t\ԟZI<5i)𱨯M7-e4bzĒ&omOi~ 헔5P\=HXa59Rۭ788~fV>39u,ٺN5>V8!୽$j ƑQ@J'Zу~J ^u :pB`ڪ!FqxTEg2zIG3נl'>`6 m)%2ѓ S$n$S"#1 s[ȱ*m0ەٞ9jmn.n6,B*ֱcybRj%P-N;ߤ2-('boI{FiX ߯- TޜͿՆ깓́u6^:o@anŊW`8q &_¶5?T@S;CI)\ @I4 * Pf' 7XLCOͼe\"n6@@a6B0\%Ck%)f$+Oz܊ƀs,8gt3tq^4љpM2Bۓ&[P{ cgqMXhCWN4 G0˟=5YEL1_.L>ڭ:t)˾.)rvR/ oP#5%Hal^ ]e/H%euAǝF`|eOAנDqQ7kwXiЛ+ 5"=x= QK#:+>΄ո:=7Y7|Ćۣ,$đ,Y98RI-RR m\@H)a?ˮbX vdf]a6ס1!g9FG\t*eCTA|#v,HqeGSʐwɦ"@Јoe|byI w&IWPi@źP+lIbyͨ]f*=EK_n ]eْt%<)%j '??b|!Nf4Ühh62".Q.}8{h,(U4gWh`9/C0 81@l`Gca<KLXP^Ȱ#(RDN]LsohO[uهlztէU15BJ?؁1^ ?;Xa 9D?5~ɎcWe6Duip i~"UDP<:Z~H< [va씢u %qpFZS>@a$]0#'Y}'k"-`4]VQlbI}ꛌ̓–B9rI4 QGĔ^n!]e&}!v>~=j%bV_* !/y \5D)}Vm;B<ӁcN{CEYP='ö$g R՟iѭ̴ƛ%ݗ^D&Y!?yb)$6[JQxSJ41ytXBWcoF-0wمҾ8r W\.mXF>bؐze•cT?!ԵE4eTu%.(N2m#>3)Y9DbFձ*>(\|UZ qH76<>_y/VÌ"쩪[N} st3ɢXy+"BqZ"pՠ~2'{} +ā3Tȹ353D\ȱsכ?./y}c⇰gQ#:,>~TX Pu{ p,(<Őz hܑHs(*mҏm S)9PљvWxo V7S?9jFP<u%Wlު'&@(B6@ 3.iAN(_NޒQyH!w)YV.t~Sx~s_4`0R'pKIhtlNyu8?Vo]!{H'bWw a8)qzt' ퟦd2%0[ nxhCHt  q$c̺<}5x霯h!ˮF_.|q? O::$KLcNU\%rVO0\[.ArKk-׎/ۏO:C:-4M H.0voX?^x.<]6$w1̠m`쇦arIN愵QMi6V_s:9֖c~$9Ny|22&dSU/n*[?~ J"X `/)~M#98Tt_ktqҸDK}%q[V-^™p `Cs9'7F GOl7jC Pxi'= :Na)e&xGN~% ̝Ԫ 4hKM>Jz{opE!a qFۙADJSH_3 VRv](:N!ux+ c7O*7J]YJ`6j[a0J4Hag |E[,P=qu:5Tݩ\V>|#1Y(LѳVM<%b@p/eY'm&b/,FafL^`0\wߎj,08W rhgU ]>tnyMy{mMU`)Aw@N(AjQ5¼W1Ţt]fjY/?|1{ˈWYψN\RtPf9<4/'gڵ 1blP+ك }،8G=_<>n"~X# U JmjDX.X,"^L9%2% u2QWr*5(qxCbX} WC0j׉ѹYج#?'2_לKdyԽg+>͋ҲG >T``@:N=$,G]~Ȁ-,\}t$n!1M$̼]h'^D4`n M=Q9IC2Ƭ-Ó.IYe+bU?o] 8uūRblSUPIRCH2d8U΃ˆrL`,DկVM6E^ HPFUeln (`X.>rn+}"'oނĽ_X^;Zާ>ug`(j ݔbŞ[* {DZΔcޓܽW[51C$}p5]tG~w'RDZCNJ7ASk\҉jMId_/ 5޵lQJ|<:¨I߸hFRi ǏI1)@~K⹖RF@ 6Y-ī0B 7rXN>O0PsܢY !} Rӟf'M:azj-sYo![uB$s R9*K j1w.I`]ܷȒm೉gY')vFJ58`˲@=}"Yn8./D__Nm%sNZO;ȵb/M38ѸzBAkɛ?X_֨(a( ,T<+,uogvq~5K[^=j"ED V8efe@w uAwo<|9o7X`.&al4~u)%ZtI V.F%)1D~[3opXqXKSMU `kMmc -r]bSba+ -S s'IZ Ehyfgx`s=U/9gڲD?=˰M`?(&nD%~|/f5^0KQ+X|3T fձ2j-d[q_8ƟO<ʷY6}TG틔˷DVY ҆6י p66ϫ(Q@BЏA<袈e bSBSXz> 03w/Rȡ XB,ιl0_ ;FrV6E}Vo r4蒄kR۫9>+Oڒq#6[ (WRg՜*EQ%DN][c<4:J>ƓԷ`V*i*ќMq+ s7CA8:u?/u"@#]~IQy4CN=瓼Z3T*E؋O A l>V'`|$yjzq/%k*g`*Q`Yk)=B_6FSNpW㼒tOE`:dp&?Be坯Sܽ)!Eޙe͡9POJ XE:9qNW< aS Ƌ=$fHcn}Zi hn_^)bb1|C؈R:Hdf6^Ҟ=JB%# lC빱H;ޒr{K<_}2BQє\`F<.| MPaa:֞p\u[VDӧ~׵ATXқJ8ąLɡߨaΎэb Y~i ?60!b䱅Ǐ$Ƚ)"fnF9?G#c =|twt?_q'>=)Rȉ_V"7ͣw>mxFUl9hrep+,vX訞rv C j[8*6[GzQۚ7Zxd Mz-xa|T\|/E51g IJ _[L9gEp^ML)|CR,N!Ûv7[A|>sdh%ΔYou6aOT9`'.jʰP sƙ*Rm+ܾ:KK% 7r҅CȌ":2G[A `*)3Ĕ# "RP<9X@X ٲou`-+W}nq-sƵYLbÀptu0pP-x@ߥ=w%385s7{aR)&( kg!|+s6TS>WR 034ߔqx"iJAژK[b d͸ +-Vn!L(|5|s6w]̊R-qS#[F9#8p6ެk`HxY=#V0JZ:ǝr.24„xQo^.Wngc꽜'r (vFUNlt8)p .9XL 8Ai,b7VB=Do+!heLj&;CS ȵXT*U (xeQ X $]D޼Y9|'bP-/u*I[ u䜤a[{r==7&ϟ@SmY1N+ƼǵiG̺:3l߅ h"d;/kmEw@" es VJ}<4΁X(\W'V&ﺎцLݻM#nkPj#@~[nAK %̝WVV͊ɤ 3 h჉F4#1&p5*&FB+h8azĸs@"߻=k3'{ CuD0O`4(DjgcYSHXqnKDv`Ul*qkm) um_:rZԌ7:﷗EP[5Ѿ|+ݨb3&ؓdb$**s֙[y:,w_' Gg^0W:M-j$N:[i;(ًɠ3!WlЬcv} DBߞXQn4•jBM/H:R!T#0Y[4qI55SP7riVgك;R6 AГwM$O֦_gfKUofm8kVc[X0H ,|sN.&^1P*G^Y͐_iV(3{ ֯f9Ēh(4ڲ$ GeٜR eV ΁13KW"®Ƿ FI )T<ʶm M@uSdݤ'> VmQ Mց|^6EzVmUز}$7:?`N<ڮԲI':X^0_+G؀^[F(̙ Stݜ^\ҧmxa|EԬp=MI~4E 7CmM -ǯ=-.( ;Y]~/;y^95BʸaJ9El_4+?Ķ2'خ~RZ0N@$0*8pw!A6G9ljC֜W:~KG9!U+>$y,6x4CW+T`f٦[[\ 6~y`jtŚ"r 3ޢ?ψ#nV6Ao!\V*!dO.jۨQZOP1삢̈z"ZʨЎVQVxxubNE+44+?ދ}Wa]o)JΩF/0K["z03c/0O ,VZ0Oт=n{]Qz-IZi]9C?t'6%xo5sJ:Hח~Ѻ%gz|;=Pi_Ynn(DٌX-hzu-=LI2x`rVcU> >q*f^jAɱz(翓+m(={k:׉o1ȑGI|JCw.`k4fUh$!*"|„c3 6;Mp`'FIҌRZGcsgpi@!Ve+ cW$̤B-Hw|mdaϡܗf(e_v:#rȗי7V)aۿyHz*~[ˈRi4҇H+FKE4Fh{=%aΙ5U:Tˮp=쇇cH(/Bҏ vki>RK]3UmsCg,P(1g!n2 0GRDWtA5?^bǏid?RbfW9]$1 MCpS8]c= Tg;1MҼNOO/ߟm<4aU_E<\ꬩۜDWs]Lķ,"#LkT7$%C%& A2!ntMoM9̂@^RDK=+dom;m.9XXnO{)N7 I$[h<999djA|Zl˴T5oXɕ/%`/f/ ѐ^ [h$ >cù2MH"aPeQqm d'L{ѣg̈́ B5뜈0I m!G? h>]c]-YeW`uyaڮiufeqG6llÄld1)/'Fĥ̕2¤㺞Mz&ss^M/dO7∱c= ƒEYOqf&[ 7ϬY}eWQ9}ܞQ/σ%0(گC]O'"IC!o٪? rKX/ zw;C ~j x4:4CbÊNdaY!nDC}.,waմf o rԻPstZU%R:PZ[2ԛPDY,ٹb]O:Fo- fUa VĽKdTA*ܟ!ѓ\2(ذ#yLLBC@1[R>$$ ^^)b ڑVydXcx=bV6OZ%g͋r#4CL.;Kö4, vٚ ƽV%~9 90zji{McB{] [1&pmo6* _ܫYP5!BqZ+pF^JuDZr㙠aM7?UO.ĘMmu|@3c^Sv gEQ ;+1UUw$fH;4Id#ѹ(-/u ҃X8*8y;~~J r͘aSR*5m]XCGLG}v jH%2IT&*KRHsݧ)mC3Ƕ{WLڨr 4oh7@}E_[OװV lgsg̸ˮpl/Wy.섬)rmn#d_ s-t)keT,tMt2b!I%Ũb+}^: bd9)]wbCÅP.%7,Rju>X2x&(J?Rs~v]T(&Jyu]w([L1d {3xܓ&)]\bB[{r?bY(7Yv~TgF_)4 &]L U~{/X sOVyһR?`5oZtb@wV^Jr+lw3*'Y.rh8 #z!5ȈiX\߷r-DqI04GK/D-/Qrva筻Z7Ձ&NqXL(&!/ YBRhJ:П/Ĥ3g>*0yjhە-%1DYki^s79R^Yת|&4g_ll**K&:<2f/޶er V WFE.Y}؃o➺ $.,(qJ3I=}#9gX;d!|PA ߊDe`&"b.R-k볹ZzLegkltQ /Z#yBd>/]FX,J WU'm<\K{9ppmfzsVUN]˶2bA`#> .m' W Ǘ-!!t# |R,vAf{NYh! Y[wo*O7q)2sBeށ>t6&ޏ,Q2f)7omY |~8)^r05S\mL2VB=ueaf̎btd|=.' <^)Q,q>DahXYp|+x󥕧g\芡9E.EA?3MX̘vίGJ|a]LB^ s>4\QX*,zXߞlv 9v_\q|:8èM2k=eG汩+Il#ېsG6{qpOo t~F-ơ`3f.ڳۧk9E r:Wu9w1. wwE^_ȜH[ƺI)Q%d~R][Y p)b/kfZǵ3Θ7 zd5X!Vzvaڅ~6:R%5Hč_LyiY]#Â9ٯ}.C;j"UnY~W,R-tZ\Hwc)d'x+ ]S=MzF1EԁeA+>#yh:jG>xp<,)F7qz)&8Ph8zj=vvԐ.|C,4N XAy!,靐k*ݐf Sz 4s?tiWouH; kf bn#)|d`^!$uG3մ<6a!35Σ9|d>&ϵ1M\=(WK2cCdˋɛ5F8D ]j4v8nz:RKp8q#Z@qOkϛ5%UkxxW g^6sMoCi3c뇢$(6-e !ȗ<\1xa-`gi]_(㣪` EO#Sn>oY5>L]/Pv9D Hw_^"2*UKQGÆaIb^+UxɌyq_ RL'FմR?[k=`d9>=K_WK-)@a@ VU+c)%5z<1"%x.G}'9|鰾b'7hpE{|/l_!d|7B !g+P+c\yh=#jMȒ#!Y:L(M'f7o.LLSԩ# BIb+FtG#JY~O$6kr{<"0}BEv]<?P6ko1'pMFRf¶R¦]4?ze7 n ,x&lI?HXsu(R8D%+/,J.#uݵT¸R `'9xDw 'M(xavA*8><t-5^(Cy-IDԼhVHn'^K锳sa`}•?z4]vv AS9RWeQ+G}D4aR4Lq@V%u}!;Hs2OUF6ۍӫxt1f}iHt2W2* CvG'UA;g:> ǹheL65@h!@tALM~Mh]Ǥz^nB_UؼuvاeD߃c"דR=3ؙ?BA^]pv^Rc\BVWO%TR]iY/=_o`YxZeSviT^{ T8t GAuAt`u!Kq4.:h⽑_߬Dlk~i8Q&JoBq?č :<r'ifVR Mhfۜ-9p_$l3ޤs B x n^G7a%; & y 1o},-Y%Q; :O,Y?b̘`pzZ(]Xk;6qwĴp~F!}͍mdNKϏj?p~gWKʺ#~_?6L*{ZOj:wH?TtcQ{dNa]b‚s/t+#;{ao+/}MzTeJw؛M{]SVYL}K'm']66m_nDh_A\d%ox'ȩqp{'{do-06~ÛL{^aM/Kꅝ;:d*S]epCZZX5.e~Eز8NhL$2-ܧJE $XZ$!R4ÄW.wkI}_[8o8zE- tV#` 3gſ5e)_¤l :LEBל"@GW_wBJ~\~k"eTd]5k9\3^?u&v'03߷ch2Y+pb:[v'2/ghnW Лs6X>,滺_iƻ D 8с$i"kE!o ϩv_/\;mho$%$u04"M?QϱQsE)$ߢ1ܲQ=V]'-٨(n5$j8S$Aΰ"V!:f!ˉ(a]0~qo\Q"aaW(vy}XLŌHl!sLUoi||‡*C?#vFY~PZ`^'iku i&>mv&3 NDh3"~|̰`IݕpF؋ۛ B8o8LnUa$Ո zY͎9ކaĿ4&:H3LEB߾b'wLK3rD{bRPZTPN-$(+ >&'jl<ŝQ;>DhEؐHx^].7DwyjFd1W=O*]6c4>;& k QzrC‡c0o{~1WQU.9Zel4ĶMln t2g9'{0bQ8&ؐUVf#+evi[[I 'bڏt#u-HhA)DIh^f[vqegT'/ hZbG_ BxP8|iYgTP.{:H$/#uZEW|ʎ8Du@-p1OK3AU2$+X'pڌ9}$Z~%F/݉#|xIiH ~uy͉ uŠA ]n]c_sպh2q 3_b͏:3ivBOGw H =ĔCgTKڡm$-Rs̆jK6nc^?],g hИFfUqIA?II _#'ͫjQ[0 /RpGE;fdV͔,H=5 lP~չzwap T&Ek_qft !81Ew>cJ鯐k!gҴi&kٵJyv^$~͆yeKeHm!WD7^ (6{T&`r`ymaVTl&{ hXeW}.,sJL#yJw}9ql/!0$ (iQ6OZMtLhu7' |XdjQ4#"]Hw=橠za]皿˂fի/UxoGԏZAI^1S}t+ 2s߮EWP`GJEVI/D{Rxʞ}OCmgZİGv@1ŌU:*L`$96NN%F)[$'\{q/2ؖCcSXkbHB07NϢ6媅gc Qmz{TNTFmdOo b j'YʀkqڕW $l<@!'Iq&t!gus@uP x\\yN|l;,yI:RYvOfXґPua#m7>:.2QLz<&Y =Q!H~N؍x^?k_2mE7)9֊j'K6D |A0UnC5*@0:0w->K\ffTa,Y5槮^zX^53'~2-p^OB2]NᣡhV6?۽2)Adaw_7<4%3\ kYdr'J/ #WB zQYˇAU[ o_Ȇ0%BF}%J[|VM\Ll)$oe%bE5UДvD J2u[A hE* Yg7'RH*uRm0cS-`HВ\KV>84P=Ak~OCW<5d꟱%uP$w>sPQ~B3WGݱ""Qwusn}nXN׆jԃsl#c d@[faD&A6vOO8!|PRj7p T`}&K  )< eLQÔ]:@t9^=YwJrߡH&.?KsbzH[[)_oRVEw):\cLhྨM!ojh)t3apxaul 8G(3u'|ю9b1 6:rcM_Rz'G$KݾNun gh.fс]+{\Kyc.FAB,S&dR#?;ѿ8'ܖQ|55,bo4_bD@|$ӄ 4Vٷ07u- (5vc3v_gЏ}Wش#UX[d/|~9?Db"IQQkQg" '8Htv$vjݕR}1 1ӷ%.2k`)V#(ʪiйvQ,>ZhhWŊh޲]">XqP?YGTk7|rwaJCSR!BZ|/c$24> "댱%' }x+=.VL9iQTB5B1-wAc}OrFn3v,jO/) }d &|-;ׅ\`V 3&a#blQp"ec1 +A@JК9Q65͑?=Hl>a0S 0w, BmdţmRP8b4)bD |<Yvv}]jSv1!4c:<} ɖkz 8H~kG!) n PUn{|aKhb: @M-z zrL[hL&J1s&=5_†=N# 2`ԉa/RWER$f&m>3uNEtUK.^c9wص/|ODxybW@4KNf;b,C,޴q ]*5! !ݙH7[r~-E۹:yF(0Qm[r*d֔®iܜq4e%P?I_Y& 2p,_B&PgR2X5DѫT{?|tY}SApG"P4B]T]s{0N ooR摙=~f{dg { &bB(#m%]HXcY"`ڐ0}z !ZdҨ BOuwdG6ڑ%@NoS.-EpRN&oFls wWX'Jߏ ]XY)3WѿM2:e/e18/=6 &}W/!ׯnřeБn2-j;tAyaa3 (M]QD=v1jI)R+7 E2QC/Th\NF+FOA_ puI}9n.pJeiRYxU1%@ gP``HB$+vݦێ|[ W+\0Pe ZYm햝 F)bXrTrur/4O59CT>&*+:yk^o֡8)I~{ V^I#r]u)UdbQȹ6 ʿU1kvl`սke@D@*/+W%AmmI6 \ʭErB-TMlD88<$_P>d,TAIܨq0z!!D:@;e?2,ob^L3zeT>Foyb4缷PbO3zÍE\$6EjBf,܋`4sdtG+hkP^}Z2r.Ź0T[ ?bj>Fif6uO4f^W~t4 ='f >(is4͉[W5Li̜{ 8(I:UT {PuN5 %Tk3.Jb]c!XvS@K{ׇPu[+/[*J ul@PEWq$3+1Bz0-_ ]{gߔeC gbD>0Hbiՠ{1Ґ_J+xa3zme 2ݻ BT뙞$/X2zxS1RD Ɔr* &G)=HGigzpWpEnЇ P*1 Ag6-:i *j*xa>e71RY̓|S=h=0o0E-zDn=)>qf5mԋ^das5 4RS9M% QT}9 %r ێJ'(2@eΜ(tn^HuaJ"PH>QUW[P%ܧ>e*k1mR-Yu8hE~ 6H܌)*]Ve΋U@HK"L}׋![CCdy>Fw6mI׋r7QxUu'W|D+m:C6Md"r*؟g|ATm:t4 Y4F"=)>E õtp>DF`M)Ȟw͚:}!.5t:G缢w7@m9 DWiZ֔|4:2Djo~( { br|"*?-vN2F%Q:}N=fUQg˪O דaao2yޕWW:A'U{VDx<) 6rzDvUY3Yݭ3/MH Ѹj-$]Z3;phIykؙj#w 4 *iMc\e^i~dA+[1DPBH4xN 3g:H4Bj|ӜUQ?ۋpو@EgEٜsGvbiLy2)fD/GKU?3uEe;|fCJ;3ҎIL3ivJֶ)~`o9W;u>ӤsM on FR5|d_N7>HW(1 NR|щTu9T9 D1q5VJ ?.<,ƙz.Jl}?tՎ^V´o ` ZnzZ5U.sD9z!Op&N䃿@Y%? tTmwAotA֓?tK8W9Q4= M>E"\p {0B6|"fCMnw$qwp]0YzHH9 x]^׼p`HSH(~YR3Q5"YEsӏ~ On¡tNS5 9l)NIk?ĪMT]R{H|Q+kr4%UP4 v12-HFdJt~LlձoT(p$.d\G"&ZB 6$KL lPs cHpܦx,ݝe 5ꪷnG*wTN[FQ6apdifiݱHԖzu/0>Bcl! !suCewE3э$3(]BV 6]c`SN-!Ξh݈(Al,^~Jb9Ζ2l{ *0Q oŤ7JK\ݐ-cT¡{ ˮ>v԰!aƜVfVuʘ4&p@CܦʠfvT{{W_it%$h`%8`ToJrQʟާFI頋J|€BTçVVs)4V"3ߚk$gx;L Wh_(@jStO pYH.u]5EۅYoN:mjbNr;D$0j*ONGX}R ߜ/U]?X0@CA=l- +2K,gڐik⛻a64ѹi,맄 [pNi#3de )O肾UEuN8MW4,z%Hon `գ+Z@a tRLwfc)ن v.E/~|LvԎ栩r޷N$QY/33P`Y7ĉ:[@T/UV}/ Htk V <7*]KyN^RƋ!$ +Rn/}9yo:%󥔨mGHs@{67 dll]jcj~,{ 9%YW!] z9# i[x6qvKi ,G͕4Q^o9oBǮ x N:k P2ïUdNxkw٩'30 q$Nt xmEz&@<Eޕ+iBFKδ^K_yݝz<"pu܊c-PERr_4Xo1et8t؃?5oѥ/0qNźM-1BWM}JDH`FUDHġ>Aޠ6hZx'p ԸG͓=*LJL5"qǔ8w'jXC3uGKP((]t^[Ρ9c8zkmv\[ѥe샮] BĐm*oS\gdB_$?6Y5`H@;9>Rھˠy~2\pYd􆔃Ʒ>p(25Zl 0EnJn2V٘S"RؽՅe?"Hh_x(^~. }:ܚ?hp6}jPd.Gph酘~BIh[UciOS|BiB%+*~AwBlO㏻&ecsᒕ։K$/q1YRB0 @VQ b?4)m~ʊ7+]_p>]$OCt1fhi/9dG<[Bcm=e,~7gW:58c0r,!+r+ SndEQӴKx A g5O<gN.}߱ɦc%:w."?JR?WR&E菪I ox"*ۣ{,يSl@U7zt: DARPfb"_U 4E*xhEE8Zh ?5e͡SWo?:N‘*@ԂH%^v3xaGYrtVLzCX<[$/I[>3J61mGYɫHEm%Z0 '~! /[w0+Bُpt !;`8 op6ŮG:VyYst+ZQPl"i3w}mRqi oSz:͜@DpgfhKõ9`Sb7a['هsT2'p)0͜m N!q |ǶkǜQ'/v3z'X ޏlpK!F2l-/O[g.{<"Yvzv zrom$CxQN0 >k4;(k?h"90yAy|7ExuFrM ݦC1,H!廾r>ִsՏ).3y."1m8 _uy3i'eSswng Sq4}w}tք0㻈C>rj&g;T܆o۞3dJn`ڜDkBV6Y|P!d<˴W:[Mљ v ~_ǁ7bH  ,ܼ,Ѻ2EndU[V`Xu[_sD39SH8gҨCT%L1N֓תg:K F3;s8-o+)ڔxXlz~>+}_835~IYy0< WTp(_9>A/Ͼi_^ BކVы2B= LܘD.}tqV ŠUky5F@Sdqp 5g!$4]J0&ja⤺N _)NtY,.]dVx?LM8jiM7! +NcJs6MǦ_d/8ŷkJ/\uQj 6ePj+Gsyg/]FX{*;3w!)(OI03KwrFQLRW tX`ASMTQSVb*SCZN d3aFSVY) ̿;ȲC ׊;Xz{y-^12u9υ"@5#:0WDk14O2pk޼ʂ$_o'9"Iڤ~5CBjl%v7RXYoGChoE)rfFhK{c Es.3u.=liw E0?lʧImbP sB.61P*_ȝlZCAqQRw"i;qӂu,3F +R%$<0b;?K*um'; 49> krEp@+޼V+Sb>r@r;^~V:/T{s%2{͵Ss|8z1pWjhC?="i@_j7YEI7fYѧEɮke_^э9m@~ *ʹɁ}_eBہGqxj'bH+|>?a[.5n*?( V0$&D 6B+tQExS؀l^G7 Y04|_ۀ1,-u - A{9uLY/TbK]ܱo6QZ('ǓI<=DRVW+wׂɈ%f'9VoZ/.HpX)b&WH}Y/TiE INp0 V_L[P7y)pMoScXQ:*Ѓj"׵"\<:>C|)VL(tƚ`Ж7Ah]' }Ó֚6y>y1kxNT)S>!D"brUjiGDb&AsJL4_#Hty4$+::Zop3T$\=p>͞sCǞ2r+~z^/-#(ti~qeZQg'}ܥsDvl1'#0g<S&<bՖ.jy oNՠ5`+{O`P[&$!b[ isoWob/%OVGo! w֋W_!{kð_L'u~k-L`znn74/r!'sK.OG^f:RsG혏h*G #|?ڎ c)u9u S !CկAh(/P%NS-eR]8)Tqt*[|R0U˜9ǘq @nd15ҤaPf _{F]A0ZEU Y?Tpyk, 4= 9mኘi=0ERއ^onԮf o2c!rh0ö9(Ǡ:cՔG, +p⏄C!S8Ã96Ƶ2UVox Od+ZIrvgwaD@]A>6J^)>ATcvۯS?ӈEwQO3!1x_ qr ҹHOv~kmfrI᣺f6<SN垘yPCJs)Tmi,(V}x^ qɹrGw\Ž`n, k\2/[{|i!Qs4Ke05ϣ,Hb0~vߊ.RpdDO`\d*eR[ 'N?_X +ϓ| JǝB&\`Tfnyvl|{T~j_#UƏ I kC̝r9`ef3z6`:wP4"$&pAoqoh7Le=!Ux^R4It(>EG{ħo/#&5ČW?$gsf(&LP6P¼3yETJdϤs t?$>4y s>}&-T)j٫@@>#ͿLzZ gU ʴ_JS{K8$u~$z $4ǵgo{&55̶wE On=!ۖ '@Pi>m# [W AMXX1F}Э\˼+]9H#I?:C?@­[։ dy+~!%EG⯧ک7DjPl(s7fNQJd@Lњ BAbHwB Ws:?a1k+M?m$[^@iQY'0%Dw#_+6;BoJk Dj5YO`Axm4܉0+ʪ%YTQk#T$z7-p-V3WN39"\͑]]S2-zO俿cAun왗F_܅όA<2t.6|GIUptw~$qL 3~tAs!Q *~m L JTt ~w8!g'4$u?\ 1_R>MW B`<\D;rcRr9I9k ;tnȜ+ާ(!hl%UWɣH,jE^15~k5 PoXM1r ^(*R'z9n _LGIzR$PP6^_g сyWuV6Du)rt8JJo?r+\PzB R($eSп,+VX]]f,8]"~U%{.wMn>(2-~մ1_V̿vQE?|1oԓrS0*GL@yV񼶯d ʰkHR^? /ZgkcZQ热MSU;` ԰C(ȿN+C?i[!45cP}a}!{gz|VU|DcowMcbӺ+y"S b)e)@M%XP@U!oS誡 ߼:pӌḲ69ߡ -[tp }6nmiȻ` ǃ HIv/oH  6읝߻!nN5ӄ ŧU;A s7RBTbmAY ? h8ifN ajoVXe>媫_` 7|bRt1LOɲe؟5 W;iZt6 u'Oְne, `p|DntKjpf2" >1Wd)VeL:ėZAz-lKCkwJVԣ:,3\rjv3;;` KvϏ|T{kh(KVJ+=]x`msc (oV. a2 2\=E={F* ,s28pf_1X܅$^6ވ>ǭC]"T>1߽.% fLxʍP}"ʿ=dcE|<;4o󿶓XÙSbWN7i5 pCw 6-RWYdA5 q1:鹔{> PshjR w8U| _+%Yv(x_Lш)mMjzNPAuP`n3c7\0)S in(td{`X$Qm|[Nhj1kIkdE+h A'>K?0gw` ZKǽӡ-UKɒc9CځR~#\vMjXPH`)S'=H!0ɗ ivm;,|:qB~*d2xw@57=V'e/4 -{q-(n/#(uKځ3֨" \.G"麪Enn=9 ϵi w0:3$`bo<y}D(2[ȩ} gI| fB?$RB&&huon0g8kdbO 8N (fJi8M g Ox"~rU./Ay$wo,UωǶa'YchV$da֖<„־x-?4l6 0N@ʝұ4Ơ9w>7?x@a9aڐy _2\7HЮKb|-90~ ;?AX:Da5_z 1=8^Ӫw.v< {%,lڴmQP{̸Ɋ=ge~ZZb6%8y]L xQ:VƓ)єcᦢ]m Jo%A+Fٮpgy}XSf6$@<# m92?bюDd&ib* uDvl{Y5 j{@tqSoP+[w1<*T߃׍${&"i#Vv.;Ye+VRG ? 2KJnھ"VG>X6<.>&-iy69j!yќ6C'mZ߭ݕ?4pEXVsY䟕1;>c D2DՆk>ӭbWwQ|uh^5Gf9U&G]+Z+ DX ֘߮Q!ư%M/a[g V$r췫oʐӈ uUI>7hF$1锝dO&2-v\U{Z[J A,w\-/%wą.+M1ߜ|5 Vz˂8W9tgdƦjT=HT" INއO2”msr {}s۸k.KZ^\Vр J0ECMˮ>%Дڿi˼ jވVkAęs?#I !^ 65ƀk뽆?dq"H (' *Ğ0Xa]ӫQi\eZjv f޳`ј |Bt1C{N%S.揥5v9k;q4<a~qE*1ϻ}qmg|S8Ia/~-wJϻs^xz2u&NpX6?TړP:,~dw̗kkIj3K ݧϺѱnHy4w(qT;t&wROS+u@Ɵ -8l@vSQS-)kO8` 2859'_ΏͩR3C[KE$ZAIwRt?CGaP?j2ϓ a|DAH;έ&T@#w.Q1P"bv|kl[1d{-bИw+[3Jd6EX蝹l7V`( *x-uOol>1j* ZMvt`=S[2aO]u.7 P ǔJ>-0"Z 1#$ܙ NJj#};;ᕽ*VN^i cxI< (tm-kJX{_̭Jole"igqH Xhza/)u+_`uZN7e|6B= Ŕ쮗^Y_ bAZt \z nOQ38{HFc!l%Ǧo[G;R +c3%|L&1})Td5j9M p͑PzR޴Kfe# 4< H,er_n~  CXp7qݧ#dZ](@H8m*jC%PhKaν.AQB~"+SsJ.`p ͐]A*Erwi f/{c_/boܘV75E1jW_f&9uRl]E>CL'S9tqe@iO%X4o1H+%Շ6lxLO:I 6հ~ hh%݂t(sV{\K(Aˤ/;B+sg@1\DSFK) \E 䙴. VtGXB-Qu٭cHI\,]:t'pc=PJe{B 7pZ8Љ=1wO ȑ* lg1غ*7&\@NX|,(~c[%oR]7_Wyvά߇l[Aipsj4߆bR\@weCr5xTfozu:\'xS=&r)% oF$WMoKlYx6|,:p5%_̞=orɨNPWHu,]y~5$cԲROQ]Bܱ<{* Mxxo߼gڥM`_T ܤ91"FjJyj[ p/u7"Fi@у_"a8FoU`yZBq"N(LXI:,-J\BV҈ 柧Vfz^O޿F&Mrp/{{)5e%b*}^·M_j'^ 3qDԉ(: ~F:#~w;C~.ޣȹ?b_"m\v2\VS?cuW' +[-&nes6*0x\;+qj[ms`ȏU9:BJ0ktw}z/,2ζ KY>$ 3قuh~q#PSUҋr`Flj+5=<±$\γu(3p7RM+JIUGpK<"Вt/7!V R11sO1'Gma`xWrcZ鍣 ?E{}r]sڷ,F7bzs-Y,uPL._Ds}H-)-./z^RAO,- ~PKo[?"Y{lns };Z5+nĪu/_5M_B4& *= l k!yi 4WfL$-ƭƲRO6wx4lLju)M. gl=IqMmA"Y<.,e"$3~ !{6D|^.#?-cɨJ{t6^w|[]u@YPwo^w62+߂@dC;VcU9.\VK+9D;☲ $E9!>f>r|[k2<WZ z࢘ϗNaf 5fdAʔ060 Nj}+p7hiC^%궅fN*-~22bRpǹ](/S]B w$ק-xDu$k@a'kiG++NPyHDIo-_}Tk2O Qg\5"ƸGgֈL):L:J V[{p.0%IȪhH R5J!役)c}{3#ysT졝10LۮaήWNjj2=}sJs'kbDW͡h3}.1_5v`/sp+逊9Mxf+($G_jGi\XLQ6VihUƂw;'`!Z2O-&4sM-vܤIe߂o]K(Ȑm-9SӮ U aZ^Cg~@#*hFyB%/uã_$#cyZ'q b}TO=_.^Jkb!V+s^ֈ>ݧctȾGе໚F1VFKkK{Au\.Lb3R˸\ɦg09dm߰@BQ DYaSTn[xp䋅"}WֈWvd94 .ItcpdE 'Կ7ߚ+f~ь?{jiWd3oٴv^]80'ګv|T^gzR(X)$c0tYnmJE(тՀ.c"iYlE7H݉+*ҩP)3zW}w$h]YiCVgƣ^=q'<tN$G/)Z0^^k`pH&oʓzIIy,UUbDKlu1OŢx:y~OUQ\V6.Lm:t3Ǹ8%Ƌes<.RkI8KfR'HZUMe ZLNXa3Bq'+ShkK=$'Ic#fNTa(DC(B2)| !N!搼\3 M9h"N[QⰐRu1_vxvR+''x%l63&HO'jXJS^YԽp,ꨆ/|&e,Xħ*RET)S/7 `nl x.Ag=S/5.de_ ](4R\ س=ٵ)VT b訛M \O7q5ălKs07<ʦ*z />c?I϶Se%/7k hV֘E8K;O? h˜Cۇ \-@e>b} iqqGS@/@Dg(ib/L? V%jaڐ s{LR%ыy WIs`4:= VmxH,̰t$I@R W\'IߗTv+ϣtk"Y;A׿^ d=?Iȍ]tRa֭Rh`x-%%Ih?Պ&ݠ e"`}s?WW@T+pBcN,}'r:,0@`!=g,_LUAp.9w/5Æg`6S0Kh Ǜ˻HVOf?5oG؍&a+S Æ׊Asd!ɤ6_oUvM w!-+_-4pkWE@{|hwj/,pxv 5WaA0suR 6f f*ӦVvR9mm36rm-zfB.0-v="@+=/y|4~qg8Q+.~n~{zBWAYDpll_~ HÍC)U]nI'X6>ompEBF $}\O1~zANH-0_*@FTˬ ^lGOvK U#!v5xC%"b*JIyB>3"6o{w잖g1;#dSoΥϊKڥh%֢'}GצJbVSm6͙yਆPT*ϋވY: ,,$E,SGΙD|I׵tS`D/tCLsq1jPҰ7泿T ?03ni9'i }&i;np;1cN S 0=ë =YY!j<|TTDd\5wS[Hx$B{+>;ACʋꪤ4=m^:=mOL\q,EFcLwW:?Xg`jU܆C:s ` ZϵxqƑMǡ)iƖ+'RP=*qp*I:qFi1WzW+CDwsV#,%|F؈oQ;sL2%;KDeIYˇo]ٰbGw9N^]4םn`?Wm Aٞsx"vUaƦl@*z*ѭ^dHw3m0ߌ)Cc=I*3@xd~C~Z(KjhzAr˓Y^,tN;U5<2Pv1f{gDk!Xs?#5v8YϗnU([bm7oDBcӞ~A~C|8W<,c+Tt,aT]N NqG5.V d? HBJr+b?h1;ЉM~-JҫsEZU&k[#m iIuGzhO3?"NE^CL=X:*xSzgJ;;Do8FRE@|3HKD8yO)QdYl0, Y3)˕@.;'kf'3jD Jm#No y3Ӹذ a3\-rI'-MlA*=_zg_&@/ =W<4%Wʪl49SBƞ=RP I Ga\oGbmC7[⤬2T",C1J1p(~ *_3gOoy7N$w 5:NX97Don4ѤՀ'$WYS Kl=ݛQ7Z'þo>y? wHp';\!S: .`PU1BA.%_` ږ1>r,Aq!:#.b-n'1EQ#mNDBkS<>vw?L:)\$\Iʞ%K|Vi"x)^E}e׽x7EgBHw\6}T8;oBSyЛVoY͹0yEܿ0ObƄ-Bz+/%cuvi z 4~OJ}N 7A\2tADόv_uT-rw\x|@T]"IkeA1Mj~E1zdMuy(;e( ^}Ŭ⮥QE3c4w]momGP.&>?Ώw0q3E`eyZ$@+OVlb:L;zLAKBNSw#V o^·%+ѻ!$=]E*\wVy tIV$tz31Q[p.q)phdţ[5hJUkSoF[/E?{::f49޳W 9͈:m>TS5.3co!hdl;0ͦ)'X$lA dsY*a fN"tȇ;~J[M 10?=d(kҖCb{'ZAŋn^2R1f_zln[xrW6-`p=&mm/!NJfvڨ!I˨_AY^m3l *4l)o^!~!pRn(8u;^-۳Õ%qhxl^Z3D9dŎw%w&I C.=z%["TY'yXCYۓL+ֽTts)ݯ\xwL62ibhv;SO,3[' 7dʢ0eI?oy398pZ7? kUy-8QQ="ǽ܀%&Zωuq 'FjJ@sMQWkYʱoSޒƃ/Tڲ^BHL4Ϭ0Q&eK9|Oe0Hg献z.tO鷷K]&J৙zl΃CƖ\qdZ:V XytC]/*~e )VK^5b n[#)یNB[n_S]Hk% X1KlJCsJlR/';L 7O*\sdY?13S)EoÅk| @= @6>*+_8-8L3x . ,zJZ> Eǀ xVX~R.8VGrR;C1LW`@!-붠'=\{8o_tFsA 2w+Ǚ(OT''*6Xەkq)[LӍdhb)DgNGjl~kJv}S]{즸3q{ɱdbsI8rc<7s0k > ?UfmHSF^S}iWۭ cuҸUݔDHlkK=-2~-6DC(8!]ϧGٶ.$A*tW=`No^tWٔXօUoӓ@px7(fdYs+>xM&{\%LDxi{0Z8 \x!(m`ʼ`ZU  X,SS0\^q,-PBɯc'Qۡz@ݱݕݿb1lsN_y퉍 3w ]fuIҕV-o|VJ6SF_u&W%'OXt{23RmueRN+9w2duΦB$!7\VK@ $HwVSW v`63+BfK1Jl(ܣqxɤ?+c3]?YK.z'zXfE 7fp `эp\OBɉX2Ly-p02/*k_# _/S\!0('LҁJk\k4omuHo#L!T^qҪ\Eѳْ(TF ߥs uʲL6>4wZKI.L̢1Zr7eOZovYzUL4lL$G/h^}`FRk4g `e/]tއl(+ɶG5gWxl9AD(fuCA }b8>pի/\,TR=Xڐ]k#N]729ْ'|6i>R=KnG!br P0 :nۊ'1i˒ _WSIb["Ԃ^JE,<Ŗ`ZR'!Ρ~2$Zf )OuJCe=I%,c79j|* 1{FIM&{Cܒ댂MͮdF5Y4;-&fd;="2jY ]5KuFTFm#ӯ=]#LKRWWtfC5YxLbfwQj,n-wZdk3,d~UYк.4C `2Ӊt35ݙTLsM3,v+GC0R9%K(eP{SnJ|8iԮT|5Z(z/OKLhcGj=k4[乇ËZ}FK;怊(Z R+K\#se_@R5̲4ZCl&z`p6IP|4zB|j84wI+ 8SG>A ^vHV4a%pb8V)VK86@c5jlQ_*W쐪+&9I@kI3=rf= :`'yaT`I8E;]:UQ>.]L DO/'ۙӒʳa^Y<Δ%~XFf@mmhsJdl0+VmNt4j `h@E<){HJ~DP˭}_cў:X :{`DwU ڈB*3\ƪZO0B5Rӑu6ID{vES~;cjI/b0NT ik _>ռg*D٪"kpa%X%aI&0rȢ}Ќn5]#W>Փҕgr\\ :JP(ގynhzɥGi Kߋ׋oqMO&2˽ԚYl:+Hq:?.q2#M7 .K<"de>X#vG@ _Om҇ ot>ro[ x^&87HWj `露G5q2_yPrù,kfX}bGtd|7,f!w%B "~:û-ZXQNhS%u3j(psOw>WrW&yROcdxqk󁚸M+M.Ti{zR|Ed؜9D :iw'Is.{n`qȪȫTJ&a7k%Φ;~;}Rݪ0V́4Nv9s{ Xu{oW`wfumF~_J!suCXb6>iVx ;Ie*nXhvxrB$/ d`PC(EqNF~P7ҟ׸Hg~^c"M>v,2,)#_}V_-cNO^ilYklY[ը?o6̃|41'vDk8TĬB>e)U[a!phKZ}X;vY:`+ܥTe\͘ENx%3fyB^w;w  wR>M>c 5݊ [{ *4UprnÆ|%[>WC΍Ez_괿%7A- 7SsՍUpCRTz#p#Iق M,DyWC`7p4WnݟNdKT0% OXj3rUKZ(Yc!|q6ɿ!-Ö.];xIcֻt'Q\V IG.Az_+prNi AJ'P\otj GLO4mtIfHDGۭ]cG/fi*eW"u/{edB+qN~}MjRw?DQgzϴX2*Brk8Z¸O4/ 6.1_iL D _Uo/ _ &8)-}K߁zGP^ؘXlե+L^3 ɇ' UM\R} {uA3RE3쇢t4eߌYPM#5Dqve[ m &^Gqu)#]p@>gb>@A6R%t9U>̴HPP].?6W7򅫌x_T5\fqzq\ALT_r'q 0 D BkIeh߇OD-DG 1|(n!eί}k qxy /Pw,6 5ZBc8i-8%oK98l Db+`Ld4^L,Wo4ԂY++z+"՞KoJtQaGVGڣFP(EU:/RB8#a0f{G,/0b )ib,S]yFe6u+Mm+W^cKSS*#<9冎VDO+D0U=+UcsQS5m'B(%U},>\H~E u2&< S-DCmýAM/T(ߒrƄe/8pl$w< q˅Pqن8}ϵ, NRK&F搚Qw٤,IJެ$aPLKl|TN{J 2wFc\NP$6[.^!Pe4"]z0Ko+ r3~E u.$[7W* :$'Iэ^d^k\=WbR*Wޮv'[QNnDtV=6ZYxʨ~6Zi- !$PzSc;S CItEUbmpx5 ܦs8׭UZGԁ + &G mLhAOs6x n[ؒY&pN xTOܜn_t}@L:]^g eʑ{ROa9-]4Rz*Mò݈ [(ߨ7[]sܻZLeӺqO䍞x㖪nr(c\G.8~67vK+ia؆s+x\`kсO4r@Ar.ǺSk;9*i,eL+yasf+mI\ya]#m41ڀUI{q~El *gh}E)Z~ CjcoĀR\o$KRTrM{ 8G+I?-4vk\Dk($ľBpXD- @U}vW^3vkv2>Gd_y+14 BR,IpְohxW:ЮaNߦ7Vl"8ȖLqDx(-!s X?/ #t J|T P#F{2F$`/crv(Kk=sR5Ė8NЌ%7']Ao(S?6/\{C^ze9|29!g@ܡ?E BDnZ!w394u56GI AwA6;2e |*Q< LpI[xwWiّ!*hU9 "s2Hƻg1IVǜûVEh\zt{ nas\O,l=.QюX }_RwLa#S,\o[!|#R2LEH)P[w(8'^@feCo <ש'#`J*sx! sfaX}2NP&N@o.=#H·mԮ+icS菫S[.&w모Lml؞q!AorɃU&،ZWyI̿떈o[a?k!@/!@Wï*FoZ(nIf* ɋvfZL1xjh"&DI3o!,O2eE_A>Nl^3 e\eAeDMFK> @aNw ]xb6w{ N$ómfZU>?C<|,spQO፩By>E+|67X POԢn/S\n-!:# r.V,|.U3Cqg9r.+k]GsdĞ+0/J!kYY-AfIP>UlVeJ>3ƜGNQZaR O_- D3Ԩ O:KSHo {@O6\K'E'6ܐ1V{N+#7!j R l|ȏ^E/OFb&Xϱ>@ I z/(`8)FxTRF[RGHH悌9qĢƤo KH&LM>5oT-w)̢̈uѶwThL1hlwΛ@5`ZIД&%_'|\7,IUW.;86ξeP*/S5AG0hw=փ~$,;O:sNv aTkT!lejuuCjGҦbULL:zwia;.J< ~|q,Z?%w^(cD?%cKfvST^GWq_cc* 2r1aKm8fYq;+wU1Rq!|#nܭth1%Bǿ.z86X'󣶴$J%٥:yOFM #- a=(y95c88hrC[W<+ɋ~G8BW:X2*z,Z!elJEJϫL綬 YMьEoye]?Jg |u8OK>7lطz;MsZ0E]҆e?h{{QZ!tA}-/:WR2/˃u|?w'*ɑv)TkS=v /Ⱥ\EFdC-S>YY!֣)7 wX**}8i!& -C%(f疯F0=/?0jϜ/]Z86362@wtz6 g`Ȱ-٠'E.S⮓ h2p8u)]9X}8")(A;>vJY MDRȺeK @xQEUdը$4E۬gU7ToԴRu4M:_LU0ZfBF4*Jƀ*T Ϋf# wLϺ} 8N)IYXĄ1\軆C`IZJ} ?Ӎ*T,yٝ7%,p֓WW)-?c.=5)ıH- lh>EV+tV 54Yayy!s҅]G\~k?O5LAg1Б₺D{Kxj!6r]䐙:rFC?sorB4Z5C;pginq8L?$Ǫ2O+$Z.-d_힦t%࠾%?Ch"P(raJs;4Љ`O:)7Af uFи4^Pӣ@0_w&;R6aPk~cU'7FS75o"D" _YR'g϶?wQ0`BUO\L YHl .9w3"}ˑԦQܥSVG28&Ε މ0D@9= o`V̭~5vQù``P;1D#Ms"Ey#XϭW OI( a]0dHX.xWzT+*!0Cr[h@Z~2wKM{*dKl:pʫլ HpC GyR(~u؟`J[ ]٪/KeWX(a`Cv%Y.xql5=ztf :~шĔ5 _;7Ow˷l cVju׿p>qjX;ƭZkǍ^=!Qx-6"}c`ųbfCگKȵ+egg`Vgu@K_nN&ى֭7Qz`Vy-5.6 d* jy7FU\l:F>8:te3}{!9-|/&b>Nj V*A]xNt9%%/skm^Bܭw;4Scϯ֜[;*jubuJw0._OV ԤÀuE,D).5|wUw^Dp -7)DcPd|/)jZd2j3㽊ϧxxeW7b~N>r b, d["Ioؐ>ؼMmٟz$J#~%$M4աI zݩ _r+যx[$%ζ$[ 7lͶehw䶡hý✝A>_hi]eCf:]y)?cœHl+B*bXwیpԀ899_bѮ=M'2(Dna8),Lꔣ#t}5f'"wAaX[ם$׀0뛉F_)DAրz2>2zrbhԂ]Oeڣ"V|f^g弈W!R];kNi A4"DWO?IA'ҖT4er׽.u~(TNf*Q)jHjw,ɼSOiTl'.K%CDۑ\B3SIZ" 6 Y^\ >g]Mu;9(}%n 9yىal{W3iB[_iQIjx?jy"SǘhNysI\$K5c$w< f!Pt"0#cj*N|>rYz[4ZdhYzTn*rxA[O[m_aB%%upwƳG'"~B)6:Tr8̈&4׌i)UKbn^!6Pc5 Eh{]:]9Q^'/\Kp;rk><@TDOg{6:nF0w .Mf_q]3CR;DG6|)SD)#HMڌaAQlt@wr/X0G,p@Zҿ _rkG/Dz?YT $.\;rT@U}L< ~!xEb߱рU@:=V/]}+ Q6a(/rc݃`اr›D)]Wn̠|hwTt] < Ww-r´}+1=oP8@ʍ@H>+J dhV^ܚAm٭R(QnU*$pl^Űcmm Ec%{lr.`h5ج@"sޛJ7 vXѦ lX%(g(VCDwa繷+llti3/1v1P !?u,me$CI )WOOxHHŪ0h@'Qu9 Syc/凛.ɷ6eY1q>w @oݽWB#02Y1Wl%HP#AàF} ܸ{Vi![sUn;f X*4/jD *)ڰlN;iMD+&FOx 2/so,J( i2AdlSP0S8h@$t:SĽtʔF 8@y 1Ѹ <$ۄ᷑9ˆZQ $,#nEƭ&wƭhJ‡SdZiק ) y7]"I8@myඏ`S`+qn⑎҉HSY`T@, $)Gy%K*Ϗ>8 ԍuJ/T1~^=#M0pӋnyh1fx,ο°ŕZ*[1>5l6ލQ?U]"4 -g-Eh%Ǥ@|\vWd^cIKJh= -1Nj.fD>`rECE%FϽ({o`Q o8I1&G!ˮ3h@R'#CwmR6=&tL?jjeHPŇ9!`UrFOS3%8@+'Ifp .Ĩl'F7:q>a@-Jln$L6Ԅ-.qH۱ RT^cIAE~8ƥK#@߅:CvX!TB0ri' f<0[Xi'ټ4*6zޏ#foa\{X#k#U fU osm"c/$GÍ|Sگ Ie>}%r-BnV#u {]gW*8S?˓"_`5xw>x=ae22꼴ŮvEEcs٨W l3U\8Z] {vjöc`^9OE000ťsxh /5w\uʾ ^(ckX؟Ǩ)2JI<#^U'j OFpiT2BͲ-[='{DzZa=KՒ1]h vAٜ\*}_:0AَU͚STP'aMm^ q.G0׵:V뵘? Wę>V-Vwcd%6 /(H)6`v1G Veg3<$_R@;.SbLEPx2s (^^+~WUĂL6*^|Ş<P)E:K#Zd۱OQvKfF+@!AS^$nGl8w7/I/k.TYD}S0@hB1 /4~OEhϟ&~-:s1k XJ=BjMy|rdԆiz0 -l{!q$kSԞJe%{|O_1= g/<jaط-ÉKko1M i 5tA91̎@J>I($9t"؃߂)lG8DR 4q/iDopBu<46:ż'cld61}e#8v ZT *'dV^8+zK`}(|o6'_|/ht=ύ=\`7RYP>N+%s^1.&3sͱ:6Hlu^"' 鸲ݲvPV55ʻ=3d_Iw[Fyٿn*3y{!Aѹg\ [/R ku32{xTZ%# LEřCWh6lhN{e,-? - /UΗw]i|CYpu7he/ $p;5&!ESMq{'+bKa/4E~F˷F8Y<A&2h.Ƽ4K0<:< .>=DpQ]˔VoЧ@j$  o]%_`0҃dѫ|pa7w@Q6l̈́) o%Ի?ra)t<p%I$=YRa}"gfgS(amZ-ߜmsv_5?tTNԲ:=M_*eS'Hs֊@BK N ˨0 E2]`kѺ)ڝ"fVuW_,6uQ q I:?d-BE%ҠICKߴ6-0TrһW6xAe c\s~'ѮpL璒wl;=2 =@܁Qŵ NUIFJf2( # E`+@$GLGZJwcsSBhvI9 vm%4D-ݕ2WBINQm~Ɣ3H:0~^=9l=oV- 5E7w.;Z-d) Tms޴X#lT"u{":^$em`9|?MSMXpԅ<"VzCz}׳Daw-W!\s/n4& g J 1sG1 Ѫ[eS$%NُfKJ̝5 f̣dUYE-)Sz^N%EЎ֤m2 .L'DI$ƈl62`@?Pb85Rϔ\KqGX5 iL|S`Swd-IL͇$wX7ݬЕåS?4#= : 4 Ϳ.!‡:;s| $(OZ2I2G93XdaM?FVy톸Ν^sLdBO~^T!Wɤ|~qc*Tgwjơ"mH|&1р3dZ'6MGtfEYy!OΗGPF[ ǜ5j[bo.#,[ntyVt}ӏ7 `:dle?|_܄ۮymͭ|C~I' [1R NyM.=ORs1NL`#{&q3fsk-6;\8=+4w4 +bx a6FA<I' 6tl{nϳ`O:MҶ<fTh&(!zH9Iyy֮$$XN +D2mn͙\\'1-1K9[(ݪQtZ2с k2_st?FM Y:U'foRH˩ҏr|_w% :iXUg*A.`&7|* gԷM)VsNݬ)n} 6r1 }FAkL-~_Jʗ]g-`ĘKWӨ?q+<_AÞ,HI?͹ &L~mV\iS羻ۧg V0⳼PǞZU޼Q ư}D'FጊewX荵eq/<H7@uZveV>b$!uƩ؛:ZA_Lsҭ#;SMU!jla{%֑2ڻ12c@BqA;2{^5b%TD5 鯒]meiҟd %,h{/0ę|K1eW Yvwݥ ^p)P #ϻAM )zݒ/+.=v`m̟(q?rBF@O-wǪ0`Z2?C($V *9=a'v4<&&0s|>d: U3 ؛=fj>fԱn1m{?vN:7ѿ^5{!.z-7IOHBB{ٜɦ?snR@Б:90]՟0 BtQ "ͧጮ E4m? zXq$ꉆ $?Ȏ-&8CaC04ep7WVi7'}3RNTaыTz9|>RFD9D V­7c)R:pT*3M`RX:`weNl%=EGd~WM'`m(?AppsGYEsfW0bK0)TT\pc!gl[^>F>k@cD{xE#Ȓvb#҅*rz}+ԲNa)vF8HCF+K1AbB0׌1 ca3~嶉}s4MNa|g l8yd.CPwX5*,S/ K#|΋-(KiuQ%0 e`H>Mb.kӉ.i;}zOHH@:z2fsAH3>[ 83ɳ/\āB2cvȧ{a-%8흓pj45d7AbFt4b;NXL'Ot;B rT-9=;IoYMJ&"-9Y͕! pϿ?F&1moR{ҢbG0_`:†o_崣*W CD omlU=gFyi:DerK  ~4zgk_6bӊͼm7iGv%K֧AQ?wN*M$gH+LIrtuXQ0s*>7͆<޷Nn Fjs JZDv;d &NUpc2Q[?IiNƕ@ ?m`!y4'% fSIrl&vO(JN ahS:"i򘕚Zk>u\`?Gԑm KQc襽] (Ȅow Iqfr,lq2VHtx{vE[I7yN ~A,[}_ 4ߚrӼ: ۽G sۣaIczn\Tp;b3dz)wD7!];*2OB7^x`#!/#:کE\ߐ^?E;MשX׬^GbspqeR6/yjTsU ZvF Rw(@9-/F K+#B/w' nradĘ8=XRQN%}e2f~ ׼aFvJ}wRucs@Q+)z0cmhJmϵ9@ 7UDCz]E8r|4ͧvK:FUUAb>p&0C?˩u"5=b5rwW#ęN70`?i)<0w_ ^*&'uhc43K[@Q2I.AS0ʢXrثp+S/#>QeoUU9"PMSXCΈ e/*CA=3s6m]-Jd+@J Kc5#ҨRosm|"!L{t//o;kwV}r}AI;Re{iLȬEnڍW&$Ե?vϳ'XY IU {dǬ!V"4 Y錈[*x}39Xb٭4'|ȱE: DS:͏@#G׽b{Uiy{w>]H,f<3\&>ba2tO 1P#1~ϙ26mOk(,mvwAIƐTgtkKr0:Ӽ6bii%<96 vTzر~/Hhp./{V6r@W4]R, +F!LG0.PIQ_6ϵj.\7Ad٘MMyiî $ozSaf[ ^D)磤D"&G@7&uS9#C^KP(U&W*`ʶzi0pLT!hepVĮy[$2| wP8kk;!)[Tp JM18:"cMgWdݾgt~4ӿFSbt345i&E/o5|xkfibևRT\:>bpԷ[KEimiW-#METy c,/2)reåF20Okr-i1.mhY&]kޚ ˗mudN2yuo봡*w׎"l).=gl5?tDeXHbL(eٓL@3.YY7݋]vpd8A?4£6 /HtAJgQ|)9rc_N$96F҅y>D[z~yW%ېG+L5}T/Yp*FkdzNs~n¬O7A&& qP^bN>r1@>+_ Uad7c,ѵ"H ץq}kf 9-O}>^WRlOL@C>&Jk+\VxVg\QOœ_uq)f؜"΁зzo yS<,# 8I^_|FP3MN2XK,HSsB+ՈF(f`xvˮ3:,"&-H ŗ#?+SX6w)b,h/9xu)PIIehHxYlEnƣR[Rl^OT'<@Eв j893U؏I;zUOE|!: GYWu&yV{>8|t6T~kX,>mZ lO/rp9΍Cɜ }59ajݘ"RmءU+C̮fO .S{yepAZ3ǽ߆.2PI;ρw_,A::[!mIhEWHrK s uA!+nPz-gi92(c#~e?|ѻۯ%&aGַ*}}VUYR*9٠B:(B2{U?#`oKX_4ḻy=ݹ@8':VQ~Cm%BU1 @"wX|fYӲIbGbq]n9wDʹ4y_V^ JuF+Ux+7Œ -7qn9r.ʔԊrxحBrCXm=) @T)gM%.xګŸk54e^B;aI?I>a~xŒ{y9th'sfTڜ>kw](b~4jf!eEo`/3}3+IlFRg{֙k٘#H[ On|j9b\RdM¶@8P6^TbCQcKd?jVDU;L7"v ?-e Ύ> D̖!vJڠFiuƖ.n{**a!BNS<y}YVn()^cTh4>kT'Z4Js_D<(֯}covO}Sc%Ht͖vQh0^7r9UeCO(<-v/R#=ⅰXw:tdz4 >4:Ff[?GD-1F@ Bsu࿹f+|}c-Հv7MF;|T8PƷ8A*z}+sQmb;NZUW3V组+N'' b" ` "8#בq<`yl2q*'ō7Û^d-*Ge37r}׶ CGHo_uxR":gqA2==V-BDCt a_[6iM ڋrr؂1}EʋTQT PPi[I[}ͬæIBJO s:\"Ѻ/S}i r/h^z;C6\\q9 R~|GU͔ I/LA 3Ѯ*Xch@($+U`F9tpjqTᩳ7/:𬡬`+ LJ;޵[Zkm;!nKvد O ,1Rz?b "%m{'l3. g$ikEAWd~̕FgKSJ'fe]{oG@swͦ>v*wrsC6Y)X>J)VN<-J;H쾘>x$Zwi`{zu<[ J}\ĔMJmgp*zc$!X92`e0xMH%8#~4v>sޑkPƛR& 8|!zh(QFV>u;%z,Ԧ|—J h8!8AG$T6]ji? rw̔ -^E+|2Sln([{Jlnҫ\2C'i='lgrfah3Y5#nr'Di?$Vx5"{ЁcPA)јw =CϏ㎢S1 ILx۵̖W 9!辣m1$t++Dz㴊SVIyA&9lb*Ê/9 Dn[Ip9F]2T!+t~,Zlrבsg3)trT60^P쟳İe#F-ӒdĴ1;uXnL2VZ|VؽuѠ|C AZȘݯ'|X|Is.vs:2<E8`.݉ 0~S<x$gUW$H1IzmJső0R my֦o!?E X O>zwQed^W_qe&$q =IO UΤI~/uY;hm\HWa37+Dh-Tn6q Fcvq,:<:F2௙Ӫ7\~ (gd?~o-/\ƆvLHT*ig}V$Ƴ2 .4HٺndYnwˣ K`Ę7R2U[g&.kKRAؚ> gD佳*8G mi`%3YzTEȑ7SMp]d6s-_EeIkд<Ä,N|lTw:NljEy d4:Lc] ` +҂IFOzA`d W:Mw y-s(il L朚E: R̪6}ve Vp^əl6:yɣO !Nw(U& +SGL3'.0Zfῆn، 3wgN !\18 X߁9~v^{)-Nd}jf[{ d.treJ:2$c$A'f(G'j}9Ba9)[KRI otA&@gmiwˆeiDm()tޛx"GV?mް C hĪXŘ|<~]fYQ61+#ΜNE{Xi4 2`&,`334N&b7@y ֏St]`:e,J֕6٪&4:qVU U5 9Tuyxh[pOuT³m9m7uƍ+tH2RJӗJ?2 1:WZn%.>roi4c*H9H-JwMr.}va0>Tޗ v;a:xjρ̛פCv9L$1% C>{m ^^`s1+TVyYjm}8D%ؚ%*(;.u@l0nj!8&ɑY@?֡EQ +J! lZ׶{>zmCq:Dr )  9iPst{:c @^,o{ٶ=DD$$%N\فXcoGjyWv2Pu,MUP8hAdWv8;5uj<'9~Fr&cD:zv)Oit"4)sOTO@9LlŞ4O̖! Q/#=вCoOE9Q(\+/sR+W{4F?~3)YoK iэ00>Eiؤ zr[AVXΏ3㽲W>l@f K.(>-aft5&&T ^e ^X9XC"Q!?Q%bAֳ( rU4<K^KM)7T HA5P„!3b6gJ3Z\J߮Bd9?"z94@G4ŷAlżn&Ovx,)A`̭a3]cw3.0mwƫ۔JjT 'c 9#1: }A m3܊Dң;S 1x$V;Lv|bB!#ӊE o>|KRP% r, g>}y&zy(z}|Wmb<&|4`E'Ũ5B!4.fK|HF:=\$ߛ;Wa%/Y&ˬƾ"@i-|!=qEnH{*Og0ZkHˠ7'hY$#VF΃*eX$g&~ѿl|zl,/Lt kZ<ĒԸB'dN"/%63*GZCN;,?Tmoh n/b9GW yMN[|7mI8+VJG)(c8+ѳ|џ3GP>P?30G.$Q$d 7fT6\,Yڕ>N{J2o17T;a$D\Y; »M+";#O B=nW*Eq!OTWt9l /v_ lBR-gDE<'\ pJ2Hղ)ԇkmR56IΌG@CoRu-0#-&[ a9Sƿ5^mҸԥdp+?%hpWn x$|6Eu%{sdm'v b\6 N0,,ڜ0]\V3VZMzKO|(.+-|UH/Ĝ)ZWѠUHI ~-0iľAH*I Kf+jAӺŌc >A y hjc $'=5Z) ,a&]3ӛ&3It],˨QOs؝Y_uR 3-e֋#(#. nb:bR, zR(PDNJҏ#~lemlk&85 "KʊG<7kFC̛gYD2F``$LXOI=QJDS1,ޔԙ9 f7@еV|pmy}_ 3 r.s[7K7oOV8I "b-֔uI+*S|im$MmjgƒH7Onk9g 2fyoxen#$MI;qqs{DL2)J?1NSe9H _'yf:nPLo~oq~ׁS1ONr妑8x7/pP9Qi\j-D#uFw''\4 oOs]Lw=ֱGkW̙0Mrx؈gPs _LH `]_ `![[d|dfd>uа2> g.MS0AlIwgzZ ${-'f $UhEtC"w'Q 5q n',{onݝ? C8ʴɋN351coGb&@F>B-C뷦Qȳ1&XSNJ$Ր7AKdꯍ^:l%,V˔Cn/PpO3[XfTB_0I4 $s}qnshT. 3{hCba Gbml&  <#`Vբ&zKTF Φ3jp'װn7ڠ⮥U,5EU$قO9_C +H;Fؿ<~9\ J6rBxg,֢q\̦T6ǀ5Q BV-W@ȫZ 0Q㈰SrB XV0.=do/&!$@BM3ڲPt3ǓSb۟ F6Gl^JJ%H#y GȬN /Yn&`bYWP:::[axFF72$Ӗ6)R,4{ jE8㾢Snփfެ}q&ýq!s Ut5(ozM۸rb=f;%V8d6HCEpM8'N㒼kj`\{k:Fڏ^"߳<ƎPpǎԮ'g6,%:v{GJ+h^6ܠq49u> z71.[_ov "A"d!-Q ҙlejK#ʩ ï2L3QU]0 ;AE"lk)|Ki$>ٳ]'X1GxfC2g? |368N7ա8 %X?\y>O6Ew0=X A:jfK.𲭵d#PJghJ㔆M*M<`V*ࠤ qRs̳YXS3>e}ߍaSS#_ُT}35?:g-49Rz e:t&37}umy7Q cX%1xlEĤfe9ģ4/JU{$+ .ڨHY<b%>~< uE,k| ֪'=6>`] yW=h/TbDif$萀&vX5t?~y(hv'{)/켃xў 4TNǡ.,G,(C̎ eƎٺ݇>׷!nAl\j]n,c%_#{w79S[43WA]'\Dڧ uqѥMWJlUǮOս̦gۊ~gωBTz~?*{޾DTYEWA~dfcXySrnko^gC avgddT .msW>hDw97ef-"xBh풲 5s_Z b-ECPiV_PapNϽMјv toj2A*>ArG<_!XB1ʹO: d& \eR)%Ў?sXV -}mSMb2ȈO! ^nV vI=PFjG:!-WjAxW_4RIӄh=hg,َ xnTs)_,u}L|e7M,Dq Hٽ,VޅU/CSex/K I3~R|49c8 r;ϫloBN(fy {l><6%v5? ı@v!#U,;,b1Σۆg䡸5ḝڭn,{0kHO0z2muiD^|~"g16B .Kq0h(WHlsđMf뷼\VBtIğh< Ro/3І :f&2YydՙAǜ!UQh8Hb[IR(%O܃B{ؽtF0\)*g%!!BgUS-bKČ ;i_\yx":Q@ ,y4|mgrk]a++!Soj5B}UKa~K͔nY2P]Ŕ ^0F.LW<Յ7iib&o:6Zh/f\q33蔘(r tvgXr4zi~S14,, V"<e` Ν%5uٙ>Pv^3e䷸l/^Ozi$]y$]MLxO z(2nύmaeAωܨRהaf/DOv^ pG:<-EFr4`ǏD{7Zv^:w !tOC`> e[)_gU\M!B\0XaWTpFT~\h0#FPg%WHb ]rkyGc?Jlٚ;"xp ?»He$ZƈV.M (2h@w־u>ڌEa, 2)4*ǛՋcUT۸DN<3m)%c|B+a}unG +\ v|2bf^-$M~{>ꦍ[ NYA1 :sni#(Fj: m\I,[iLjF 4%b>0@@%F tXeٯp]ҽovy߮aTeu5puMsV~-^L|:ɩ~hCaHщ:V$rmj`(p\X|dȐ_ z@vm.WlGU6+±1bHka5O90W -J}>m.gɈpL2~%PL˱xQ$lI`u[uB XrXqVW ('qIy׏V{H/>eإE$78^;~Mœx ڌ<(n9y!\2 T8XuخJ/b_?zmve`2fqMQ2#^WMQC5]W>}k$,㣚ev ',qE0\͈4(.Tl($FisqG "9ֵ ]^ 70sZRbD򄛻x>q h*X0Cd 㯜2b'8ra~*|Ps+RrDE)"MFO`L94 ВyIDu=3Wu+i{ZB cξ zU 0F~u KjRt7J̍+6kIvOGQ2Ym cE9ї8QT L?[o\6wȹg<׏y%_p@ox ,(Fyg5ڒu4I{6G{t,JJKޢLgT4K ne8}6рZo7zv#  SyjbJo(@tKÞ Xsm["t|_`KOyd`>r`91cCv%HUFK :ATr܉c2xNq:b}L:=@_3B%hooTGpnXYO =Rd|¿l~֓v!A¼d2WU3xen1&% }܂OZ ="Ҙ{?x b\iVm ӝE莒:aoY E5%زw[\}Xdq,Di{~s`*"}=G]a:!]ԁ-4 ݯ/"tlC6?MÇ<'+^ ҅:uHS X8?H/EsI%DŽ[1|BQ%m!ȋ 0c|z.Iߞ/dѧ^˛;kj ?U5\~+)BثKb!vC`/bIE̗5.N`ip+)[/ޞBzU$zk4{ We2H,z[Z$*o罫D@Z /,"s|&si? M6\(Kqt{H67 t@ hL?۔/5>K%[gfq#=PXY)BA2tno<1fKiwկyCaP}-1gkIq:*a,Dl5k-9\Xś `.6rtOSle@5oCrz#~#9#K7̤H^hpZ3A&F]Y7х|.HtkU^vtwOu\j9.IޱR\6ζ(+;JrJ\nI*ncQIXVěXO7cЧ:n0Ooغ+8?vÂ)Y{'۹mCG!"xw)=qkVA uTX1~O~IRchU.# +"lHlG;[)yrɀ>! 'f5+ o";E_/OM7Gvt({OIA` 9կrT_))`T2R]};$@繖0˗K#o﹚hԘ(p+ ߀'ީB2OWƂjDvT0H4kA0BݮhƢI+IĦembx>tfto] b4l? kiRcJh|}_Ӽ!e9U C&* >a٦~їYUE + up*t}[xsxOR!Z_6IBdzCB<0"ytG^Vro>2 e6v!~'-պ*Xw>KGb)!ICT?3֑zn't(/HP8ƖVm~{sʔI]=yȐjySE0rƖ *2 #z[K#W.E~PW({/iI#&)Pw]{̑S?Ǣ)lIJΰLZ/ 0.L&~R^*+q_zO oiaz4xse^h/ф Ƨ4whu-,2IS"Gt\y: q_]pH_&I;fAUxDuͺ3"߹Ũh } g eǀ^y3-˘Z>FN+sHPY9̺='4B$ (Ki2Y; `o/u*sS| :ƹEgj۔Cm*/l2H_ȿbN F  d%SMD10|< h +.GkY>_-!n-}Es͙"zWV` JlZ`no\jX5=ԇA8?jZeoX>T_+Tu%(T@R@C5qpPGvE 3,F'&M~"=DL&fH,h5'{؃83O$`"V?KZZ.]L ZZ4%-bؾ+3S؊,NJWkYL8xz?kwuMflb󉉛#2ezoGdЦ9ڜ`~+j9≫A9tՍ3D8dfEP2όu3>,{f # Rw%| <܃@u7¤LONY fty>AAEfc Pz[N RZ=3LNy3>Rʅ+Ե; W{i:ND혪T:BA,/+՜?n:;r9շQFyNE\*0r&=NϏ~v4m,MqN s3O$ם=ED%LA4c_"_!6: 0&"mt,qI{YrᕠSA1z| chDLrH{~tq~|hf&r խBcIGVWiWvńo>Йke+DG_[l:~ J_/fhp1ٳ/HA,2" +nv% eL ɓwo>( pOzv¹1w:iRbUPOߎ lYrb?GDDK["X{eWr>t\ʎCL^oFK2g v/m;()U(mV<j[?<SCM"DrJ$jcpa#_'[;2 Gx]s/O+V=ptm ~hyϕ:̆ dm0 L"j*,9`kDv 4"KbQ\U##*ˁTۨG_xWj* [7ШJ  \Atset78 #b,IA~ 491Cx{ *7|/1UUv ~'Ss v|?^L8@$7^D_+C {''oxnՀ`U3^tju8z/ ,aYTy( #t}97ji|&ϓݔtʉ]Qiz{dTaiwq?Yʤ/Y i۩8o[IF3X wcpޕ;8ewI쌱E fyeP8`jGIdُ#-` d`eM!{nA,|?$Q-mh<Vk<1:^hnkGv1"@4Xx lnRAutf'qbt>Y]׸ʩ5GFdQ[mD\ƽUx8pn&Y_PR[qʄf:Zb>r pD=jĂ۞rQ0{,{\kK)oE`y9 HI]H$^R=`SPC.eZva(/C \9}0vpӅ~o*u$b$?'n96QCnO-`1rmi z2O:38> 2,xUU<PY`wrT+d#r/.UH'"N(/6YIõ*T(Yɼ#Sm}緹˃#'bw07XԸ-k$aP0Rsbd<nE 0z ʠ3P.pcAe>oRQq)j3}7]bo A=fڨ~e*ʒ # r)R-E-:@Y{9+a &2P0ezFuH߈ePCJ$gH?+TKl.?g.W OU܎ o-ˊ gczP]O*n)Qϵ66 "_7$YR~zb.L/RYU9%N_2_kōU_ۗ^) 73ӞAϷ6 %49VbCς!=Gbe忋h2?`CIQڀ27)bb kBj,*U# T-6mz@iIAS1iF FUEs-;A4EA(!.MJX}"lMhgz9;͓8`xb߹$7ypN @C{ (Ǖ8‰s+ UǕVצGŒX0h2| 6NAѣ6ruqhP$;*8 P\KEC|peF2)5pa,'*R>+#zˢrLL$Vd[[SWyha[\m 7c&vw <1ѴSaR6>!~>-v)Tg/veU0/ t?TdmKu% žU|Y;|p /c{zg&K)dsS] )`=kY;l_3 KPWD<˺&<+C#_\ q? OR )1ôiAcȾ3^rA{# [.Nq(.ǃ=S8$RƻrqOkUOXﻖ&1R('oi0R47]Rz5wR<'1H9RfҀ_[cP pL[jB= ip[g̦۱ +<~>(| 5}[cKQF٩ҘBSŻG`Yڞ1:d_D5+at,﷔ԏÃDcSkm@C 2N ,C4[e '&!-3P! iR_I %P&4[׮J MUk\7fk.%H ks)q$JUmRtt~BS~74̜ IydqFr'ghS^'M,ƬyX~9j[ۉ1t\嘒$i`Eړgq5ҜGPcBkb$t `R5u1r$Z_٨ Yũƴfퟡg5D)5;^)+&gTp޸FO_رG7+S53 ~d8]pA74X4Y٭F6:+ ٬n%&]QFUXWCU`s6t2Qn撄AF&nxN 9s<޴QL~ʝ:S,~RYL1v@Кe-c8+]Pkmy{S yNˑ+Q+t/g̭bNT^@R6<0>8&d%~⨖x&*O4/bp |p`$Փ[( Hk7,}]ptp?_JƉn̂wOQc9|~nY8 6௮H4]w$dHyqQJڜu:@@ IF!/q=1ڕa+& '#_IzyzrqKԆut|gl&$ˀmrPDl[RsM)3>teeqYx-]cBj*_\r$ @8 u}NItE8$(>GW4 bJCϪx˽˛;8 a(-0xR;>~0F@7ft2;fPy)vdrHBI,RVDm31O|;PT{'=h]s9) I#&n跊|lvt점$1е$c_v3b)jQC=94MQlК?pI |Uslow]~XW* //SүVUB!ziZ҈P~S( ~,0]NYyo6 k=VQ'Qf8(Q8|J'p[cUb؜o{>,o;<]? e}8ߟ࢛pZ{K[#11U%umg/\ak9LűD/6Ⱬt\2,is)]RV0H8FQ}E{VeADT:~0[r9mOW2Z7hXTI´Dº;be-A"ܞɩoF_vs_ 8B;(?̀fz>`NEX=1#(#f/ߌ(I =kptiޤjlGsLȮ ޔn5~ BG9=mD`?YjF%Er KuL`}Etg?אsTBwEW8KJhۧ?L R^?괢Ib%dKס% +K!'JJ•sL47GǸ:;10@PRf|s;풎:m˛HIܻJC'&eM';ɳX2Ӷ1ShBbJ-;ٵN'vvohl_ y.1t&MAZBS-W'D#i˹LJۭ }c=sՕ0.qڨ )w+J%|.V]zZ1/ߤbs~Ԟґ?NPmhqca:Bv71xZoLYոڳqU][r<4)LМyc>l9y_b2zCY^t$4+|!CxZD2B)NADž?0"tRk(I-^ <^wf[x\y t:ydCl<7HWzY| K7koi!c![z.YaXSX?9…].s48)c\K$ce@@%XGlK5*?ԡS;ʸv,Rb(Bt|^ 8}[S'GB&4 J.+gDO&5!Ӄ=xYVݙ0zɐ/ _sj°O}KX<blB x8)EW;$E2g}vmE+Ҍ<'}mԝ- '#CaĥR/訠p ?l-m peq/r,}>\2D%_t#{heQIk=%3þwvfYVBqo'M/N(y85S6瀽\Ю OWn#GSX}%P7\,xa9.Qvv}?]z[ t λV5_! =I\1~ɄE)Z[l~[Z$ՖL6ۻI0 ϦP" 櫨6 jwdaR`=`ꫪ9::F&m~n ^EaU1;V$MrtFZxm5.my}Ji7 3E}bm~W%~?~Q9 j~D Z2K#5b~3m {`+g fVҼV- }Y5?ܺ-bԄ:Fr,"v$žBbUS2b kAT*tX7߰}%E w8[mV%R7gmn}kb ,e0laRw(z)`#Cxa:[%FԱ|h 4SHXyA?qKl_u$l0>Y}jŢs℩ F92V/GHIDr/l!T͖Ѥb)݋qYE B Qr?]1݃lNs[mRC!!OYr,t: vF9^6_w#7Cޤ4R0  0ѧ\>ݿ80%9#zV,vpt_`3+.$> {hGZ1-)9ķ -*He@W 3'F3ccy˝nCgLj_wR/UPtv-w|!"ړ`Z0C\K] 5~;a+?q'O؎TJZS~qQhANY-G.%&t _a<ׂ26rx0nvpMi]k).$". E?X_.93X:6'W&^-au4Qp 6'Br&BAoXo S8dXp+E ?ܢ\:|z| _BZa[kysO2;<^{GN?zp瓩"IYN䷁;DaP>;NBC#?+g\9s.ϓ0d+<*i0dg9Vg]ҷ%kvK$f^imFw\P:ʶ<Е#=pyqΞCC"u|7Aȹ2uUXp 6<D^*kAŧd≜-k5Ş3gT׼ QSbRAݲЫh\AK蠕x]CǤX/!eEH͏yCBX)|}vVn o+0˵{EFڴ/C%n4VuNJ.O 汴 z 6aWe_2#’uy{W/pj;;J~oHC\tՐqtM;Vy±G6ۨMpy}D|0K;O+Un8Qܓ0$M#C[^X;q_ ::3ic~ΫPH  j*q s}fr#ji=kuXjn0k5zc~…Cdt˥کmgmA+Y9@ˍc._<ة~ ae6 4Mi/C t~~[C"C Dž(}~7*+>OcgҤd7\A p,0.7Pޓ܎:ms:j'GN#!ݸ0V0-!E s/a}WVwkQڎ4?:}y5(.S"^-Fu |ܿh M>@Toz`Ȯ BB7Z܃:,\>*ҙ g4 "kHue 85hOϿi*:ZdaHE2 -o/ T O3 AU2(Z8CC@4s{uv[Fgx5 -nZxӸxo:k|pu(Lm+^y0Gt0\81-amf?}0,Z~1rݴ=rJ腀xo:Vw͹\*`bq꼩=>n~|Ujzsw:Q"&<d> P%;v =p0'f"1@|yLϮGtyDkZLͻ,_}e,CZAZ{ lau*.^ ǡY&KK 20pljrk N|Nf$'S:_=U׶aXW֯ݰ 46A·Y >ږRl(o}AH5ԘH|$Eyt:M%gKzpHľAYתֈ=,6R|ѻZ}* [IJ )ݷ,{ OVC(dut${Uyro*摂[g XEåg+,|v= j7i4N? w|~FGSoKU89(q8 ۱p6 ab4ڞ􎆺1dKڣ tHѾ y5ۖ$ O;1(PoKrC?R (4þp֥wK. !uL̖NfoM!s I-Ћ-,T][y$Piܙ'߲`p>;p\&}.hB+}TFl)1!y~̌5vNߠulJR͖,\"ꂐ⾟dỎ~*'՟|HYDEuA"#C#dX.eAli hLQ(ыZl wGjrJqXy$JG,pD>4uwF\Wm֮2ΧCyx{ztZ`QanK' /ETu r'*$tn. + 50&d yTv#b9? g_fzW=52Ae5Jv̑IcӅ<RWkruN,nт b3ZW 2NJmw3S>xǪrF;GNiMmԔTl}sR#z u3zBt2JNX5-$"ʋdG>7  5i:NCG$c}iƹ_]-xy(\(X aK.Fށ<O` Vg/de! 9S]Z :8LZN7d=O!,")˚aigz.<uǟ;p&ý.}T2K(8jG ^GFn:76 _%C]3 _K$HkLYu;Ju `]@g]G~`bīF&لO/.oy4nd Vlp?ɐmE#'~(yi!an}]b*Hf7_8[HE$jQHWǺdو3Cq1ms 2m) |RO%_{e~# H5p|ҽ,ϣr@beZضNkKI[l,Ё%m$5  ˎ.Eobl_g)]f,mp .0Ox z!M,Kd3m`b4LVtI+6z7N(M rSBuH̶*=E 8JAşa|qٙjp8zRb\Dp- Sm50p./3xci-l/}Z2n K13Y!qҫ2+Jd@}mLҰOzGPrv$g -ѾHL &5GgMIbF0uoAjBZCσ8_@%7)T2B/`#>m>Wf[j[n_$VPaK#!NVBܚ"25C>;de۳ٳϩ'R<eg/i*." t3{_J93w.-<~n~ ӟ:|J12aAq@bd砭C5o_5@Ʊ=Me 8RiEZ|G5tk..W<;aI ;6`;]1GfZyOF o˭Gx,+r*bO6F䔋ٽK⪹Z"=Ia`> m[|U=ž]^@153\"M!qp!9}l. {%sW<.pvC+,[0ёǼ|=> @J`%b@ #c`˓ )@Hv8+/_ -9R`Hlg-Ivk fle 9uk`R" jKhYTCowHP>[8ѹޣu n kkAqYTvGKYM^&ZKd4..4RwrmDg#ek̲l-##{FV-ݦgCk!Qq d1JsW$=ng>HD2Kz;I$ϑ{u-IFيgpl=S5X,'h~ BMV?3X4j6Nq|P}Gu7W9 E<&CXur%xJɠPzj;:/n۵GOijCk6!W~^>P-ʝɿ]$ڝ/KM;GNz=ZzU$20l,5%]5BK!*ؙ@^pΚv;L:V;9z4-Y[eӵ{\ %l# j hDGp307;; 2牵roI p푵A}73@-^(fd<0Z5ƲCs; ~C%mh h|"]KdiD 6@cuG ɝM%G`H$Y .ֵ)X5TO:X`dMBn~!5sf"R:E>.ZSgȇn `7%2U#!5$Lx&8` 23`髽=0A?laRϾ[*왲n"\Tԭ9^Fdo]v&[jK9+ԣ -N9~`&cۯ;6biI.]W%>X&eTH\m^g0{?/`8?G ү1JFaJ` YHX%]G'9K_yO6̺=7Yz Jj+O2gOQkE6gLv`KՔ!W%@ƫth%TpveHY5 R( Ij~bAV\T0~ڗJ'"+5 -V0F"o@+*b$ }?4wHɽ%X b>湔Ӱ%HOyj!ey2\&7NHTn,]Y\Y)܍u\Č7#Y[ +\ٲߎbC;w)b.!GY4ANG,vYj. ΃W ;)y3jiilj`DotY?9xq\ 0h$wn W^Qy4 fBim*-cpkgC@Bop暄ZXMmTTg-`{e F&e9ҫŹ2oL<>Q.f#lѥ`rE8^Tq^.l=_ru7W#Ĺ+GPP l$Z9aO!*-Tp@{88 j/HWHhĮ#)К/WӹrOjb YHN2ufգX V0,l )3YO}TL xpz/:Q/ސEݒaZ8\*#0jj&vj0PZiJ J^ߘ>L6]!Amr",K35,@ʞ/t b V6[zյh&k écVP  |ZjZwJ' ԋ<9=`ha8WYo L C|]xHhhX-+'")BsI \wخ> dy^jE9D|0[Qx~,Eytc k$?fzN9#6R3c@[kM>KCwl@#y~4ָ\47O][!]UT~HF*3^s^F[Rc O*M({3]eB$OC\[6eGD< <>hJXvaӜ9BvF#~|I ƤSOw]/-2H=nY-Q [d" tę>hqEbqa+2)قJb-23O^Q7\ E8<-Կc-1HxLyfW3e zx.ˣ~cw1֧I\p pGp/r3Y9[*VzFz4oxcGmܹNdCYb&v%9ڡ;2֥ w>I2WN~s\*?{>dCotoFrFl`?ȅ#*:\9{SW`"ÚĈb85ek;;>KC_\3fgb96r HmJ=G, Pÿ`C9n_9i1h MH_%XW,j9X[|t(e(ImV 暘^hWkrqCcLiM:,.m3lI7w{)S tIZ\tyKJ">5tY49:}} ȩ R^` Fg&av4UMD!iZW9 ,l5 )O@S{F413TMqwrc0,ȧ } q^a,HF 2VJ1Cq;KX߹Ieܝn F*Ԋ3d܉S9 \rY! Aw$lTpSm۝^"ozeb^ ITF}i!z#} h@pI ;YՋ4ͰF]SpiIfҾ8s[(%.AU/ V ͔*ÞbxQe"9^,q+U3U[X=0% ^fP nlaDVn?.qy%Z{R}O"<Gp*e'ZҤ%$3(Sf&,S^̓!;yB9K]uɮy[W V'%F0oCt&:zƻa > ^m)c=gQڥa::]R#;Jj\i3c~boa+gR`In~ǽQܱ%R oDJעȇiy;x%U~<+qcav!Hِ͘';YlC-֨m)IH3e<{zǙma#.Ӌ@KdM 8}|E+ L] poөD7iU޴VW"f2`ۊ%uQQ!9%:xwI孱帡ɇE jd)Ly/L= `:ʹKL \ѐٕr8bϹN$mM}V2pCCiڄNqw8EZ28t ܂ԳM` ѭ<0\oy" *ݦ[ِ&4{·]1F 뇍2$[0DQ0 L -2[&lLp\S 񣕈e4=g9jDɶ!i,Lr@zX4ˠh0I/z"9s4Kߠf0$TO4)].\sZr474yoG@/Z!KD}9N)-rT*[:v)Dv葿o3TTbH tPG.ߤ3%CO 7Bj0sme㿌a)&e6cH1It3as @E45Hإ#ޫsΙ8R~EG~7ڕRd}boX"Sp7qS5N񼛍׳x'j O +-u*} PQ#Ŵf2I'qqlcҋoZ~%++FwV:nQ6YG+ӑ%|խ#ia`P|`ޚKXmu/<؛'G3x<1Gccen Osszr.#Б'Od5r&n·ǿ`g *JM oKe _zei g u,Xq~@K%~I\/ñ)YEU2n:,#rOCuPX 3wyid]>}߳y(ä'yB{W6pW_{gAOfk/ jڐA 6c%Z\|'M9fxV{uhYb q9`?$}yt׾=>99`rH|\_޿[RcYYIWOvؽgyч!1c?;|S lЦ8l=@0]ZME hi{?w0/UnD+pL/:,#uCA +oAǠ13H-& *KFLyE>R*ڝh/7hB: m 赶b%U䊐q3BiCC ckePP[RnDfaw5oJ?X\JI- -X[(*gF{UW#%@ "Wu0d&9Sssw͆n}muu6Lg)^ىY)GY#ǁޖ }[Z&hMw\1U!;5^*zV[YgCZPF̷LH.k/V`X8}vHJܟҦjٷ CJM/4i w@:Բ["KM@E}t}1d@X=2 TJҬ"|g=rN5#TQP~*!OI-2&"I=!Y@ {7Zk$hso/6Gx5:q\i T6*1k(SyLdFK/3VyLG̀ G fx՝4˧\x(fK*4p<^\5I9{wˏbZ¸B{dkc >8h龃pG^HtuYeasR6> 啬fus<d0 (sV9_’%p *?8(?(_a2P>-~)bC zu!?gB527tU_ xBϥ?;qoWkhSұxkE%1 }&6Xw Ό8'(3ZYDröiR%1uO27)/Mĥ&MK^)U4S>XRjh]Fdjp;y+j1]IZu]yG=(ݦuBJG*=3K0aɂ#%OĚ Ib}:mSO澧Z|2SS(x'\aa(In'7rder~z3mlv^v@Q.utnjX)`^*i>0y;Ny`sdAƴu+KP UpA?~;V76ScGf)ryɢ ү־';_mZ\j7WGo&ǫoY j>̦۷d߷P^ .R5ퟮYJE&^i̊+$iaߧEB6D7gS^,rIDuG`>I-"z{?Jyaе;zQsB ١nBfLUa^=U<_ }=sYS=IM=$H]~L!de~p'. FVE5@ڱ(Y};B-,T *P^)qX!'0ͣΈ<1;"ۇ*T],dk Qm RIv:$ϹMׯ%5tG_ aˣ>[໓UQy>J?u;Qe,H`L5)Al6 |䈡X]GI(:׹D„^j;]]jam,BEco>љuD^P6] =kH]7{_%?Sjiu:S j& 6􀀶LԅÄ-T#a}`qAQz2KD uץ[M Waʹ|BAʷ;@tBWp-ɰ3*fc|rWuxwW5'a9 T /4blw֛[;M6Ύrjw?|S*`4W͐w 踍~~fo(ank nWb܉E-!S8ϴє`OZ(kx_id#omVpB-QwOVsDŅ7]!mF!ku 6C:le 7UuF,WCEu9J|.syaэ"!+4Jv5c/WhZϔѐgߑ5jBb%lu@3 =1y0@KeJ Y22~OvNi9J5yd;n8N'c~Ji @g4[ۦ$H۰Y /Y$ `:[ʁpJbJYpe[3Gd|,1"LJafrLVnh[ڒ>GϾ_vN^sM(p[h?\ }MEfO)9t:,RvrH4bYp!v/g:fws> %G ٠lp R/ ? L:@C5?Qu FSv{Vr7XNK}$Xa Bdȓb$i%o$yxi3dI &hQ?P0~ βigl(d/] .q& ^~k}2;)~`rGn%lFEP3H :nϮ/s+c1KHNCHP+xAE3%.WƓ_oڑF. NǦ8;T.}]WδspGcၓ{Kw]nrbΎɆ`Ͷٝ+IH'PX 74^uw#F.bmS[#v1-{7߶㣩P$>ة K61=CC3"!>ེq4ωAI3JS-YCq'zݒؙ[wF4"1lj_&<VKqpL3[9a"|ˋfriA |>1rqw+Y@(@ctm@}3λDmR9­?#5do> _m{8qOK+`"pV \9nMpGZ v;4i"~Sedهi ~g*GߚQfჳ0@g_Nrh삏 ܚ"(P}_^O6TFC/^=rF{ne`d*dmm0Jz0VȨ HBh;0}Use;6͉6zWHL֭:vn&~bݤL&P{s荳`O>Iεz 0lE&xkEMߺi3ߦa?FE:1tT{q>H<So*K% v`*}Dv Le^[X/,^T 1pD7#ǼM|H~t%]nآ2$o,BD.FB?@-'Y á%2'm˭ۦTbŒվAaL9VEJ,&BS@O>B@abSvum㖡0pD;F=kԳz 3e[qpCR^@n.#'dwrdRW,T1nwoaQJyoz$)7_@㡊UQt7$1 vBӏz(Y7sjuQЈ$W8ݺ:؎;eu ZM H)p鿦 gj'=^2.wVlqA}JKQJ&Q8"@>_J.Rb'2oMVc\G_$\W'g9=,R^7bl`/ϯ"PP]&Ҳ:B/@DwN!4u`Z`|6d8Eh)w^R.O^O*ięG: T۩UҹO1k&p .2`p˸_:1G8xF g3v5&q4",?9`^rtT bth2YOM w}\ƿYrRS [.n>l b v}^X9'F[&? bF._){출_g'8pʯ@Y%ZՉ_'j WnNY\0kFΖ *5R.lD,P5h Qy(P[qƫ(2N+Q;9Ib koɮ VYة,ãtu VkʖɲN|u+WҔ?0DžJ0t.zrF"9*},#w:7΂dU-Xd\ 80 ;uܬcӅq1ѝ!^vGen78\*MwSxE! #%QI~S*Wlg51Lab򰣸DN,G>QG6E _XJp7Cո:*Țܐ2'dzLr@q/~Ɣq[~= 0Ort|7f3CbbYʠa`mُnP+|t<<3 os1j?z<]-P%"#-zek8y+knb-ŧ1njcS)YAt1g n8\iC''Q΂i5@6 ȡ lY)tZ&nIcVP#O-H ?S"N_ymZeQ2VҲ2hR6D mMNk@ W û8wYPֆL+ еJޓ""*dZGv~9^(I0S`ŻY)2^:DŽ؛~`̣Vѵ_>V:r?K P @{~R;5@+pv%tt*_>{~OY&#۬wL}Vy#&ˉ x?Y&;nK%*"2f'S"A! ,;Y32k n}ܮĊo_3R|ȅ+ hN g5I\`}o!5x煱eo3/.wHi:5}o 㾂b.Ѕ:)V h KiDm oӎ ɵ< `ہX0et#lIe֫פ1s$eV0et8koљYKdر/XΊ#mXWaY>@PcW+W*5  tsPwM89bm8 Bz ?Ĝ*Aj,T̵qU{@%&0piTH%^a#^ l`VaG=HL6\⢰cY_ԻG"9\ s :W%<%o_G1sqjWb}XYgtWo{'>([3B X͇hVf,;7"Z^Z,NXS Ah?6i*!XJ1n7v{f$?ԝ8ʶ{&b9<%ea_ǞPX葅əoh®R@J?qߊߎH$M+.]cJtݩ.22c(FȈyzb1n q&|6zz7cdx\Bi^t7r[Zaʑ56OJ`Bq^nHP5qϹN(}<+hyd4 jt^Lc0@,F T{wz^~>Iz\[\Ln{!^|V%kؗ'zO TN1#S1%.漠r TͣEOlճ)lZJ>;5Gaȸ.f!ό Yp}xS$ |.wSj! Aj2A0myR9Xh-T&-Ѭl!UMi>ڜ4갿Ղ}\pntR@SߦKĶ ݤIk=dXGuŅ*vPSx^WޡA9]6-~ߎq 'ۥ}9JawCG {̔`M.g jRoL?F# yQiw}if'ku#]br1μӦMdEG⏥s|%=xU0Lԅ [$;I@0?^*[ Ű%D1YvD 9d[ƶ-Aݔ3+aFf ;RC1ѐ΋W+q^Dr1 N*Y#lvߧ7?%C<32U*y~v%E$*[炒PKm sn[K~ivi/F̸f[^2 ζژCBaP$͒.%1/0:aఎ)2'qƹͼZh iru|/=pt_(g\cI!֤Gő#䂸m4œOѦqbh>N0'}m1U^(icZ0uIr\-! [hR2km-ͭ]OI({O% /k R|PWC-شNh:cN1R`c |,r&,PTNs?sPή;ەT5YϢ^ЭJ+5]{FRXO4y&6!8xwFیM,GxC .1 KP88s @O}1 +f|"Y.%`V5G:%6+/}RtΕmo9BC%\d΄GsS.`OI&UA@ԪrJ⸽QQ DGUvw$| ]B-"sbp\fY)FnI{p45A=zR;V|YРOTwR1Q]%gCqswF3!6WǭJ, tO` ;@Wo7 !nnÜm9EGX~ibϠ`gsz *;ˌÇ! gP5Vjm? UEPPk뭰ʪh/V-)'~gCDJjv?x2-s N'j%q`STYnG{8BN~vL jM !(_r-qVe!}ڃ:Rif3~ i}b:}7%6P+ sxv1\qД@hߩfGW}H9b3Ownq|p‚fj }YzSjV'[g\@Y AjSłq1MNL'`Zs"aöC f {H񼸠M ߽55`eIkh{gS`jouেP6pB/.=<| ݯ%ϲW +Wma\=*&.'tn .LCVw5/:Я5fV>y`g}bNAچEȕ8x9,}KW-̹)D3x|߲@dBr\%.:>֣e  McOqkM?o5}l)Ŝ#U70 ,\rbn#{'E H;JHR`t[f a[};rTV"ӃO)UߖUsu$Wx[Pdh2RsxX-:G>[0էf&O-(FDEh[hSl#΢w{'V˶YWnc8)'Cg/bnR,!BNMeݙaɺg Ls/gg^`a7^X ƻO'$?GqVMﶽ&'֤/$6v4acE#Ee9otq{XopL"Ѥgb8@'+ikuN0SRc]6T*+ c.1Ȧ O2R['Yi;4i"? ^U5& (>yiZ'Z)F^ A*watTSPC/ ,):&㕼RPQD@AVdӦ_Ov9~<[5:DPGO>rBf@1 U5Uv @4Ӑkjm7ףM˸4v3,k˧ u},w%TCR?i%ЊLm]Ji\}&e6NjњCoU~`@Y0&X>ӈֿQy>_[ }i9 ٕX߮mR8"˫?ڕ,imґn$i`x[H ;  %#Ni~C$ ?3ޫ,7n uf/d^NϏdD!iu"v-|KFy€b:'y)5ZiW=WG袠Nrf=Ta|kBߠC3K*x-F{%1@\ K;[WPZ!h(4GS7Bp >ΤF3@i<7!>ϔ#wܑ߼ 00ml[ٸ޵e҃a+0CJk[ pGYUQ6 Jd\N s5.NHyЎdMvoc<)<&y [qp𘃉T6Gy/Z7Ε@Í4 @.x1sa{zUݦjje@Zeٓ !t4lH}%Sib6(/5u}+ tIR T|KW S+; &w[t\,2a_ z#;ZO"F;c%V1|`oCV_.j$虀)EWaĞ6/))+JQHXMP7G͸LeP@!VD֪-T +3=/_ϡwqO\ȸ;JvɴEAcOHI0v~o?8 $垩̍pٴjQpIV: 1u:sѴN Pƃj*&E8᱓I'mUX yâ'V2uO 1EsPB_$YJ ˏ$2ScbP<b%dV!v4G6~T"ֿI"h}iNZu3:k56n;Rʑ忴<_]#%X=R>ޚSRQGrBYkXօ&.!J(jf dD jYևtae5%ƛ nǖu/Fc4uuyd,f c!3Ǧ-iCu,*JI,Ox;R`,/ ͦ{g_A{h!ѹ_fy-fs'swMMb*3xօZP ?MLq)Y|rA;CeNVfZe*D0j}Op@…B`*f5{vȥ3Iթ.6 f=1t8Ng9#Wp.6dBb8 J Ϳ@<^ 57d}!G\{ШX([(uBT+DIΝu9?RͨÅc{Wǣ}K;ƍ80@!z*#uxiӑB"ve&_A"*”cNE pOs1΢` ,Yt 4fSC}in#FP52Mi=_o-1|To0 Anc륓 ::⋄:Vx$2|~c)(J1Td 9F]DСSO1^^܏UVD᣾1u 99A(TЩh(~Aٹ#I2v HxJ36"TtTR]_ۏL^ l#gǏ1z"\GBueALKu@}5E_Fd{Iro,3S6SW@y?~&"RA3 KqgIrOTS?|%@C>gվ' -tfCbT?'픪 DD.S\AEj@qt{$D774|A$Qâa؅o^^\Y*@ ǜ 1h\\/0 ^n7{>*vW{/&"pկbˉX2wc8%9RJӅxa;ʿ=~z԰R4>o|ܳd1Š`)&+[Lp4zQ̮&g(G$v]N„ŕB=9T=pyw.f5Zzю2= -3N.:\ӄF6e_} q3|݃{cڼXH|+D@+,/I%H/AM>yueˌGk, \,Q+pgm< &;uEkǼPςF&x) #S|GE'AYjJEo҈`7ۤT?2e>æ|_Ymܺ-VkCCe{~ ja-Vvl*(tuUi 2f84PFo% zeTISH)`2Xzɟ[ 1ZtDr`ң5{Va'kE':'w5pe%d:4 s{6AM%9/QX/"9T1; N~lvZq֜8q{bZwAO0$O`sT |zYQHEǺ{k}j$ >~I?KƸomȻ1񚒚&9ҳ;җGmYX4]Nъ]b3-8mΪ Ma"6iShU!Cq:RcD$9kMMGj(IocLϬcY N;w֌l(k+;t|fU7 xpݔ [ r;\mW\5b.v@vN \x(̖صPa4珸GQb6H~3$(M [mqps[#|ANiKb O;E8,16?ᯚ]?QqD M[p5}D}}tld9Y1snC+,>0ӡ?"cZhX* MJf \=w]WAbWgIŇT?ue; 2->jVu+%"l}l7 !RÝAi#Iuo&ЇL$ҸN A@j}\'26xk h$nQa.QZ[ܪq=.'攍qmoV}rÉ-s{VԪ6<ƟU.PUɋEtXJ%8n&[S#Q$' ?CF0D'Q|eH/ ^~uN f>|n[ݰ:YSØYю5b fPsŖȄL /F,F9@ OJ!``= fD-p3$N3 u>p0߀%Gr5ZsfV3&>Ep69P,Wt!"oDm;\VU3ƛ"•s`UƒYfonxOK.}Empl/J緇jB|o'6CUSC\(9z~4Ij>]Ê2$h۴Т)BRb[ʋ%  > qL%`-'c?K" ͝30 Qjoe; F/a,+Q,zA{'{wSĶyxnN͎mdAIHS>]eadT+:Je82M+4=Cn1?H3|d^ HQb[am–$,C̼ďu J D7) `y幷Inxp&h3n>]@ۭꔰoN`1)k4j=!\$8[|şP1 +hdj!hILnIA( k.m=4J |c 5y ̈́`zS77 hEv:P l| n^S{ɜ4&H.;y?2^/>v8B&3=>JZiUpDS;~џJWnBnΞ[K[;1} uR%C'=Zx"h 2U[ryV,BVE\ǹBjx!Tw0.k.>zL:o5F:gǰ=CIU /so z =!UOEE|$4P3,ʭߤ4IjqQ7^~235ٟ w7Dn69=>49bZ旙nQKiY5lx>4'Ayss'"$][%b\YT/ ķeUaK=@3G7;ӵtÑ鐴,@UK]£@6Ne &}\5H7en8qHlHy4(< LliYRY @9l߹V~Dr[[D%ݕ1.ì_k55ec/mrzUldDxJSH4b7 >k #7b@ϥ'}N(BM{  ٝIl;*\7)Ѕs~pM 'ޡfO.ߔPfB=a7Җ wp #*N#=2mU xQ<ڃiB_*g(D{? Or1N0G'Ė=f]F>l0s!fRjoIj͙;m:6JU0_."ֹZ|fD3zGz4QX혲; ClZ@geɣA"_Ӿ]-zja殦brb eJphX_w%˱̌{̃ )XH& ]ղ ',?S:xpK#xh L@f[e"\8lb!pz<؅҉e)LzNs,xs@ r b MW4Z L(1ceË.@}"5coOJ=~adoZ)x^W fܙ@a9riӚ#4 ##jA#b-sKGQD551؅/u8ukK¹ʚŌQ fV|<m7ӾX7܂Ӽ^gm366aHz9౑Vw[r tYѫHܭ( 2ξEdw,?H Xò$ ܚ~x#/$$LE{!A'nѷO?aC:"f6m T 6VG)8 (SlU񨒧:cCÙ$ 83KH˙M$DpMk`iWe^{ *UZ'lcSCe=k:!AX;ㆃL+2XA}` (lŽpd㹆ζoeHvw׹U mjOXt Vz!S媍J,R< PW}PWc3m$*% 9TgqyB[0%"ʾ=FO\gVN1k%QW+ctTTCeUC)O}x-W2[v_<4(.# '' y;_g^)Jdgd4zq%Ep`gw?>=Ƒ MD8tH87VObX}CV*YA@wR*: YʇgFZGD7P2&^ChŞ:BΔ yF>JV81Ii‘e˷IHL]E`ēV[a᫉p02>J(]_Ȕ1tINLdX;o졁&ص-ę>m2PO"/ϝmaOL Ӗw~Enop{|z89Kɑ040U(nBLSG:zGdhϓ:.Vsjc~^p]8<0 VgnXz:cFE6yx;"/ugN79U q1wkN[zq}P08'30VL&}{S 6& $lo8P*CII $oJ9kƚe)6'$oGp 5;Ӕ"n.m]j%.ȉ9 ?d|''hgFdع@o!(CmgPWܶǍ$L2(Nzzq ڊDgv%J :b8b3`WnNY t+4:”}{PD;K3{rj0]@m\@a[ݞ K.љIgD Ou=7,-n2ZmFAi䦴FmĤݍltuU{d㪆:N@ǵ7*Zg|)'iA-Ѻ@UɅ#fp=q0%GqcR3k{o Nz<ť"f=pR<"2;PƊavtD/6KX8vgYpw\W`A"/;N/V6EOIƵﬗ *F8}4TXRsdG&aLF<4}M>-S m8N-R֥:v@,"bb~dp-Q_Oea$)@ୄ50Vm՝ l}ؔmDxP^5vh*B/(c1@u^t{NeѢ4}`sl(Ćͨ&ӡ0=XXK_o h %1ܧf?O*׶OɃ]\t@:L i+9K6l"(n"g\894YhS,F)iP=+K@'B?K0Τ"<#ᬻTS+I5L.+^xxe0Ǖ}X.9Bݻ_VV-ɫ@(=C?toL.N K Q*xU,]KSy5*܉bodžH{t:Yr<"PT٥[nhOTh9 ssIVwS Ie` q,5(w>m9 t#|>ϼPi c(6[_Hr ۦ7pH4%uUߧ<<fb50?sfɚ ]oiRK=4*d//bkQB sP==k~؏x;}nΩVhɊ[ AaDv_B~Z*8CmxΞs<s.h7z$=^*v_t)uFv^~>RA_9|ғ܈& xuyBG )1eN6p@<"qޘ` G)6!\/xJEUqߩ>{G96}qO_9+x_klq ɓGa%ҤL[?N(f?B}= ˲bp@*}dU .KX#k4{G6Ghԍ󊶁nXu߸^_\tjhAv.{`^nIKS`:hEʟQ&82<ܑ?t`LќHߎtItlPz= 0~ҵ%>`?4_LwpFC}X*e}/&;jcrOf\ꮹCc40ۭk~ЀlϷt7Eq󢉛CzZK/B*Xh}A%5EJv]t%AO=]C6( 8[!BE{n]S<ŕ؇Tפh3L)"KoBKm1"{S5> `Yv HJݖG^ M80$j V*/bWt&,a^0|'/&(qdCN])K'6"Hal.jEr0r)^ltjpsnX*lvx@ F@g w0$*fZKu+[: } \C4[|gG/(SG"[Z9}g M!S)^N{O)>݀"jIfN"k%iUкy }!0 ؊,]5w],%*bGԻ-s|K{ i̱YX!58p\H{ϭuYP6ȇơ>ia pw&V/;>) KwS""5Ԉolu))YN٧`XsCN>1LuLFiZ`ۏ;IqY s'*)崺2DsVLU&fUdxLew,E1 ş90x>]J`M ɼn)Bw==VT2/0aHp]? u"5ֺice+X.чLTઉܳpf}wdĥGyD#<:r 7$ vN4T͵hht$ruIb[M7|4J}"b[:`3DKi3'< lpHAP.O\{/ݠ4+g--k {|bQY#Z(h~3~f p# %ғTɯlNVkDgD)V- mל:F~5-@09s],5> : c; *Bݍrޕj(A~+8zD}h֫ª&)KmP`x G$f+sq?t"j7#&8FƯN,QQ0j1P U5Z'S[ S[ ϭis^_tDX (%V |Tpz0Q/.w((z굢C\֊Kic. Naܘojl Ivu*IbFbdZFKoұT@S5\>֛UYktC;e9a :#T;RP5Yτj `#9 `_uU[ 'a M]1be*yj77eea,J&PP dX87i† s{޹q9!sQSKc2[WB"qβrx&@G!UVAH6BS g5 [Wei^Ej^y/ mϱ33E*ÅTb!=Ǎey)TըB$M زoQI2:ohyCBm/0'b&(-y6~޳B7.R(PVn*קZp ^\d[=6y\iaY3Ȯ2'\ÑTb T1I'%Mu[ G㒞l+j~rra,,?ضM7 T_0Y;G>+Kz5v>_*33@򘎇?a;jR(ˌ!\AZI7rMI((nSS(xus[qAMΖ2k#F 1du`볠)뀌u>f6C-QoA*Nh3\ c%W #@߹sjIA6-.e2j%\(FJȹTK,iZK7xxTyYMbV][2T"|^dz9.YWw ûX~kzj^ȁSG[vPF:7d SВZYQ<'ņ0v p%alW۳N)Y lEBIpHd+ *ɍUN e+w6'bz\4o?)j%#I6:jYjCy.ֱ4'̿r\F rgUk·4Zs6/9V72HVg߰OV9MM(RH*##<]x%g::Ȥܜ>){8xg$ERZgvDlz<\)u2iW`F.*Hb&9˞_\&n35}#& ‚x:V?@Jp@=CcGV?bD2\.hJdGcTO3O5F -"U>uuk/ BF*=0Jri1hﭩɠ+O/o]&bg)wXwxBR1K{4JH5CdB*bv{F¶OA+]2ߡ8w/U$ xEOE]2jOq zW`dϹ7_61T9΃`Q*]=ݹOmmwT( V$AB%f:t RVQ-j$IgnyM T(# VDFz[YuCp%?&Ou/=ea]Y(eעMT Rs |pCd7kF m~d)x w^zMZF ϢxkR'fU#RMx y!6Ўu 2x_^ :""ă`'\ 3(FWIĠ 5|fJǀN jN[!,@*8i"Y2d뙦 yIY=9kÊ׬ݜt-mAW#w &/X}FE,g@wof5J!F^ܸc'KC+kF!W  ~KL5:$,9 wS8ld~z0Ox1E+ju/c{ë pL>H0%AJ(nb_38KgҮQwL,-jd OjfGC/`@%wHTSaDPWh.-+ֽ9dJJdv߇M;K99^$nV-dՃ$dI6&4ϝOd5l@[]f҃M7ٚ \V?+KF.Tፎwp1/퐚5ƔFإPqCt8Bh%V?;sϚœ =(߀Øoˉ~迁ǯu-#Gg/tS3 +o>8^g$ߺ?Gzxaig\sb8w@"K8e@OZ"cXh-ǨxuhѼO}ښ^6)@&{fg<1XڡSik4f_sh/+ 5(qfz1YЍ ,4p5RS! ׽jԱ1ً:2Dm.E~{iP* 03aUЮBWmgHA'?3iTC4d> zAu*a+k4mkPCD3XyMu^I+Exk_2kW=Lb@~)nAKU&^g&+ToN.M.%&PmM%%U;Gd,ROƉd`gϋL ]R}!k0.},Y\j] 2% 'j[tjL@c`xKEngɩOfTH=@6AfPL'5)xCsWɂz5ksg~6iz@xdF78}gK l 98nDGțƀIrٍOۈ]mK@,Jb~>w펌'AH%M4*vɳZ˛@99ibHrL/ĂJWWW14޽ea 9͔Y~=1 g/ /HPsC!_ɼ?> @G2$_@YD[6k0#u]Y]kVȀa~Qw~탘,iN4sA` frm&YJIA C;Z ;7֢-Gr;Kz9: %vΣɥF*x}Lt弊U攋xe ɚS=mPzX0ȿa(\7*0₊Qd04lҐPIR}>FN5dw*9aܜ{Jk^aƒ6]zJ6w;H!%8vcq=GyM"q<{x> hu(F8dbVvתi>r5}҃XeqXhS0|tȸ=KC~(|':u?$8X7z52.Q[mdeG gη;ʣu䘻`L eĖ^e zOj^XW9Objo?bm˟U8qSJ`|~etJlV{>;G;ω@;6{< 3x":u>HH G-- ;܁Jͭ逗gRWHLG?'%҇<ʝF_g:YH8}&b.D}.$_\6{ L?2- 92R:@OvJp`2,4^>-)ޡ뤦3>dd}ONRqۖMlʜn?˓|V$ ΞtI3 9ImIed(>;lyGf*:Zݱj+=.=PFTLbjZY4*z j _E  {oI*AK*IJ٧kUEYBN^R. y6b5[e <(nM%&Ƹ s,_̰>0za+3{ ԕ+&_s,oB[5P< |mt#"䁳 NU&]gUw(21|oی$C%QL_[|B޴E\;b~ RWa$79/Iͅ?it. NMW@E/s|e0E'\ -B1R/dcNDzynw/-yxBͺ6rb5*哫k[\ڤM: <)r|v6(Hy-(?i0_" 'ѿ1L wslVF➜4Ċ&K΀c!AX+1SHQ@/^e*\bE <~$-j!o{ c Wڃh2UI=U:ոGcFL}y pX5(!p}罝C:#iDPLJnU׽mqU,auO}޺3jIvx)PepKZ}p>wrEo+9tz0RJ}Do:ӆ6Rt;* xwHZ/e!`@6ޱhshfz('/1T::)K|)DIP$gqiNiJ8.0R ̓L>հOS( $#"kUt3]IzKk}%js7Y~Cz<$%Dt#EW9{L5Va@:vX;3_-eqQ~f0@wފd*8fCl-Brn?MXZ*W"#⻳1JA2z3fb/T ;fDz ؏bV1:m5^ 63<*U&dyJw޽F{ºOƶ.HzZhmh¢sO&B]ؠR}+sYSe%F'm`"Y57f(fhXFJ#C ב0@ݬZG IN4/^%Bi&pfBk%?#lA D3t[ Q;r&&8 ~I z!$|־̍Q_➑OC5TOF,<1(w)ϹǂheQrqY9wFCl([%*3TG3P^?F$}M٭ ;ⰵw0 -i|P ,'#md+NBGUe>)bnੴG+`vQɵe^[Y$r lϓvxUgyܓNC Fa.Qhٝg䓣u'tW'ۨriU`?#Tw8jR}fZľޝ'\zZ 2Z Jòu0ΰJ[7%ߩ*~ޅBG=%QP)R~І!H(6smL"1f̯u95$׏ȉ.>N$9I"z CjKlT꟯~g:@X9og=;\mƮK2XHU {2E} ș6w,er-N̊UZ5ѭٕZ~k,bZPu )(WAplX-9 퍻}׿{Z =pG tB'MԲy)/W1J6'⭙. k1DY)nOVPͰ 4`ʙHp쯋$! x 22Z/ZA%ڃG9h27BKPq gy{mԔKa/ :cgQQUo;@4{#Y1#l͜V^@[2A*%MW œ |"n4B~O%gSm z+Kt˥ m,KlAr`.a2g}tTS'X?;>6/R6l%-.OL%(x(9]AWXd*|Pd뇞-{4Xa&aK.Q;yl LcyM4m Hͽ^LJJadN#gWHz*Y)[/oOzd⿀h㓢V_~ NL.ވ٘f9WT[)rVw_ɊJT]sSS,˥t'\>m9hD]v6 C#5r+5ս[]%}wqNQ"H x_ME]JIi#V h% $mUYye.ԧ[ؼB2rՄo]$#.C/Sf`r M 2|SH3k¹  -؝-8'єup)~_/]^@Twa",f'I Ƀjx.QMZ[[C<ՇY!" o1׀Y讑1FOPq1o_ dYA}V9#q{x+̭x ʅ;cu?7fѡ}0(--3: iHԅ7,qsjFM;]S ͣ."ϛ y徙 ^-#WqjZXί!67ڥ"@Dn$߶pH%і3pg&w 61a$vP|MLN8~H2~0yE %3}Wq=?ijՑ*0ehA˪4zZFC]G:ra8?|˜]%vk$=OƥCPhOڇZO8ξw g*2{t[k]Xib5=#!$>qtQFdmxe!sA9BKiaqtmF6}N9!y#NTBR \ OQnڅ9 m cd=J)TʳP) ʟ9o)O)u|p#-GP*r,S3yt56YW6L訷lRNRԪn&k6՜]XXݳubaXKƨxG1q=Q TӉF6`F'R>TT'.q"^ii&"BzQrrOɷx hp&6wH~~Ѐ7 .Z%Ip|m0a7X}|.0gug|(q2p sk y`ըFʾ,g(o/X|lP;:CW%z!l|+?AhDk]M3 MIl:/ `L&CyTa:"&G7\ĶpgnI q\T()D;Z "O"Q:>sS KL\ boeX&9'/OЈ},NkҙvkUe~4PdPNPጝh-ۈrz2DU/$RGU!IASj % 1u? jӚ`!Kc%oU 40b\Xn+)4CI΅`"RD [\*` *p"1H[<+JG}MlDwhm!4n,L/0t*$p ׃7mצ/xsBxI|gR.v+DmyDoc[nJoznfgv; %ȓayd?CWDZZ'.4..Df//J vAj9|홀Ik`TwEMPu r|oAswύ* E};>S$.,9O 0Q{eD4څ+; rc5IU'GQ[|k\'%̷mZ%Y2E]q)irNJ+yNO/7, (.vin$+V42d^I{CS&=}_O F| ],]ÅkXh4gs7I1MY3t[ɀV%a!dgVPxQUw1a͐jITNl8-x)t jrYLܾY>>(Yk2-):6;"NB::_cDNz栜;1a|*=X4G@wuҝc<ܲu#'*TF6i8Tݷ'Pb\ rE4@;- ?ozoP%M8|Iq"*!'(po>*s|M!{dD-^ۼ>]*`O Tba|S_f$int> 1CUbMi#m.8)OKax,ԫ0w`7նJGm5eY`qEx@+y\ UOCVUP1Gor,'Ɋ8gjvFMqov>J&2}BN.Oid@@z5qਉ9Ā=awi@H}O_)5^ba n&-?#\<~!F֘ OT+7H ܸFAjGG_&!/-Up} / 5UN{u*W!fSMK"MMApD\a01cFog2ea1b 䦵+Q;Ci$MQUlz`?C&"δZ@r}|9-[ZC!~!Ӻⵗ@R[=_"A$nؠ7n:OY^Wo(D6muT T>$CNa7Tfm;q]y[I ໰8W2oOzkumS/4]?)L]?n;KMƖ*`SpS[;uU$zQ>,żTF*o|7Þyaf y59Ņ虗dcE t=RF/cYb,e݁_+(<FCdEg~J xj &3,x^t(1TBKs5%nV"A-@EÜd@XJ^ _yfa7\ouص0:KʡK'`vXgMk|ԉdX71c8]MI;Z=`t -*y͝Xj&}u̗CϮσmFeXo3kʧd eqbT$ i 3 ecD=3h>ZMZԧ5zaN iӸ* Z7ڑL$mjջ!jb0FKrT MP&RD{߆|Z քCoC*qnr߷_i o^/9m ĺD-T ,b>zd[ :|>JFNpXruds!,A2鉏pG";bUD[qՉhJC`)s .NdM:FqO4V$!WYxk۶&VݣA*raʱuzB<`f(=ch*yl w k.vF*==ܦ4R_*ϴYPDhܙ'F?:]cƆmn4D>}؜\c_5VQ›> 1aϣ`:e0V'"n%5 :2ycϭa_ot&E3'L{ 8(,$t.eşfَMb/ +< 1:d:??:͗6.Z3P&2SuW}b> ֺi@A] 򤘽d3釱0fzp0?ĩdLgOCsS s,bM#E3#@Wk%#iowLL|R@h60Ӕ4{`OA3Je*|kVٛ p`BŐwَ>0W+d5K޲.ǥ[Ϋ0- ljnl?=s0H!{k։?Yg |e𴰉VapYlayUZa{ވ7+7?8H_AA4= aHP Fu(Si-5(cYALǭ7M6:| X`@rvc=ć&;rShhfq.< vZQ滑F=-2%)f^gusmAͫg'2oQ\ix<:Xzdc89d;n̲U$׼:P,gKoihC~k(bK{)=x#1-x_2i[y_ }+ɧڭjK\&X,tj;DayK$Umt>QM* D1炙%w]b-jVسIf@HFz#Pz6 Z2Z ^E Ѓm%X*Ω׏4Y㖃~ůq" %O-w&xRwb8e>=>݆bb&5}~瞤3 F$;AuPُWwHl8ENr͝AzˣaGT1ll0 u_tWRÊb5TjV,Pge4'hŀvE&~YG;/ȥ+^؅fqa9Cr ,9GxU\co:ʠy{Oӎ+EVrCoh]1 9~fZpYQ6rHٳ8gןR35Cy,Ɔ+_kV<W죳9%[$=P"<}JyV~ԫ&_m}j샋(2 +;yQdęז2ۅ 5TO%+V>!-Bd*xy:ƨbL DoH8ҿ3Jk)al% P4P0%Hc=o4#ILة+q.v^S|Aة;6O7?-ցWN}K;@[gaY|U,b2+鳧OlXF2,:^I;œS3zox ZsʬzUA7m@YMDw~dxB~j4U4dÆEN"Ei+R{dpwpHɶ֮tcL&t7htr:+V\>7A.-FoJƺ]NPVY@7loakYO3e7a qXM=v.]b` >sLS,1 ;I'54 ]ųdv&WGv8W$3PRfN[Ъ#: {p>gewGY^r/rY70z(g_s\ZOݶ xݱ@FTcq5(QUHc "ȤΆcrK2Qqq6nej\]QڤE*{qɀ7B;6f: q;&ZSSƶt_f #|:?d]Ub*j+X@Rͬ#w"XdO?be;kxAm7Lv^Y=)N:_nߚ%>yٹ ~:߆ȵپIנtIK7v%zQI<֩sKjpt|g,]Gk0&mȪq"R8l]v[T|1G =&}m#}JFvrJ&tg/it3ݵ^mgCWW!ba|jH.i7z ,*.+igmvXed9\+toc2'/'ꃬI2Z%y .լaA/̖Wu˘Z^U~Aw]|Z<| S7\[R y"ʊ':Bǭ;9G3ʵ?v"eyd w 9%YDfBp ҼaÆYj[hKTLmX\PkŃKlEzCg&mKlYZ˵PQM2UU _A5ݚ%$i;eo~o w"#Y]e2ioQ=B)c]c(?OM nZ\~:Uֽ\ ãJy!R۽[0pzzDYcqAlUU)ĝ-) KMI|µї>SZDW-h!>D6#LX&<SdOM>r'bDuk6yJdU+TV%a!2 $6O _ !:2Kt$rQP^R^ʹpev4i ꥸ[d{ARI^9k*)9cn[$ c: _בx mv x@T_~h#_1 B_EIx+dmi/8dPeŅkB^z#:!iqw{w;Un΀#vҮqW`BNL _Mz>!2n}(.7% | ^n*]68Ep#beT)v 6j|WbBR(y'KwbFdi!ڷ/v;Yd AdؘLrY p׷"١KWe:u{֘gʪ]Khv%6_oI2z(M] ;W--o0懽*9;;Maò h=W[C[78od<߆&{/i*'/^NCDG9yxˢuk 'T`%xwcˊR2Hmv s~ח .s%گмpJ{":1\%Dd3vi'mXPSӓd̛*A4܂]%e&UV7\|l0e&V>!~0Ap/\ĽQﯸr,Q(6a7`NsLQ_sTIlq41g6{ ?Wd=\b1Q+y2 !2h e?|Voxh^-IbVp;~6o[ ,Gԛ< -:8a!uP'> TdŽFgG@y(d  KV|,}[Dr|TyfL>TCxoғU8\Ă>ޭR5Kǒ3]IpoQs6U|Қ)!E]Fȷn̝lD>Ax_){! Sq1R ͣ޿ rXnHS/hOoXL*+ [YYuST+}6)iiȤ2-CtQԈ6ܭ 4 =ày *.k\j?BNdTC6eP_m68JSkcC"} Q9b^VOܱż?Q2Lr؃@bD|ZVݗ6tXdP"EBPe<nqݒewwp"[rQ 5n;3%Mdm!BЗ>BYe'qP; yjaܡZvX2)qF;asu}ړy\mt+$pǍߡ|!r ?dWs>{ǏeDKB0 ڈ: Ta~5"M"@)řz:=QߩCŲT B~3,A> O8\IՖQֿKA)Z ¾.K.OT>gh Zpgv̜X_op?vxї j oƶt {s`&2#c|(QzFփgDz@9]Kd8$%K!j;#J!=! q  <+VRG5.bߧUc#Y;,(5a:#GԿ,Wei=A=#T.;"F'Ќ8.ф ^z=<}ENfɦgnW &2{&ip`8㩱64\hVqlL>{߿6GjZ6~xca`>>AaV ne0O<{VKD<b3 B;ȏk\;ύbm&t2P_ͧ`2ӂ-X 4#B^YKò ن1B~:a}LnJC\p ogk#nxSSuțL+PjUb,0p.g})5iY A\C.ci.X4N L$S:T5H)sM'*#}K?~REOwDnL%E{TOX\gZ({A@ḤC!sm1$T"1Jay3k)g5 ikc#S0)` 8uRgM\oƤu͗ZB9/Ã6_!U 357 @zC޵{VJH78Z4ʪbE.]zJt21o8k/r'2;y2'VE:d$:rnj i6UǧhW6^^U֦3Mǎk9)/#Nmm9$aroiNsnCvߗ.lT`iS%pJ+WOդrVH3IkFx-'Znf) Me@[Gj-v W^F'rAj?*eV*a=ǦWb! %[W;24xprK|'j2BkVVjCS;ngʕmE<[r_ ^lJ)F#ڧm+S^-*X]#:r2u$V,=rdS;\V> =8,5ª24~µ}VHeЙ"0{ZWSY<켢5KӬM9Aruv]\Pld]/ܫr^{5e*v&A^{gTRNpϟ .%ý={qY95J7YAS,ѩ U+ "p2J/@Q7Əz*/y>%+4?zأ#hA#RۏS!n;TnMt nrq@}Q:391.loE߂?TFvTD3;K^i 7,*^%,w[P9jϑ`|MSk0f@X6rBy kM~n|O`A҈0f_#ڳc`T`Es/FkmBiB%~n$]ox,0CexQj_k¸% Fm>  4FPZ#C0?7 C}&xK F 1?\{ Wq;8O4 h_H\w7c K`4Zᇍ1ͰZ{/-}bw)+ECi ;RܳG-e>v>uSz+F`?!r]2`0Fn5=1g"xTaKc|O;=v!},Cy *%2:3*(&z }Yn+^Aɧf{Ү=댒$r2!:pJ#~)Ĕf&FNhLOo+>T>i?_ ItTk;:Ъ$=.'}¡{p m*-hKDN1niM$ǣt#}+mv~Z55]b 䶷e"ґ)ÆEMVakv(,ngJ^(ߊ0R/+="dY Ѫ]#iNo?{(>l.q@H)O7+ v>u{5UiAT#(P9hiT-d_Cd5eȮ1 y/A^nS~\Qڼ+nQ aK,h/wȝ>o,L yGK>ߊ]GCsxOPB06G!jUCD%]6cU7}`AtU!SԽОU$/ʌ3AyDGǾG =@/qqBvyT'ULZ1Vh4 C@ Wlŝ2_1ܢFe]&j8Z2S(әQnZbW T%zyԉ5U SEwLg8.7 $"1 A\G3ݕ ;ÞWÙc]%oG0ĪZ(gqY(j(,Th\tY!_wN40Z(EDZq5!J./^?rҼAC0ski =b6* gP Rs,ۮE͏Bᡭ̭+de&4bOE)mJpãtb"~liv)f-2]8x.XҪm\JYXի8TlA{6*/4dMBa#Y6k>xT |2$L)kyziAfcwi?`d8ց Zm>mG>QѥPW] % D' RѦ6eT}oZƟ}Z!j'*Lbrw6 ]!N!Ȳ|ڡΆaXDR>\LÙ0TcwcC ٚU-ToH7EP!TmWچFK)r9ƨe659]'$!Ȭ97 ,3Je^ԹSvif|kR\({-Y( i?Lgdl芦Vf ᛕB֮?`Ol3E ! _E0& {5\!拰IKHR5{Wۘ@Nj?n)Aa 7Pf^Snl{m_G=WlrIijuzDj椻ex Dh;ɔZԔh[iH R)[=goυ;jŵF:V Ѷ o`]cObsrUR`ޟmO a0+*WxwD ؀e.]0ӫEZZ>:Jkƻ^6<ȱhwcx.=EING/w]Iv>&݆ZiXm 4t$u|'-Ъ~=pdS(ž'P;.JhGPd*x˵SK JFE4ӻ"kjf],ܮKQm.F9לXv[7BZ7$epq 9nm?8WWV)'av;LE?CJׅxH£6j'Mad5CQqH ҥ+7F{^VG1BkO>&y$Y//>AAl 7gʍdc8J#Q>eCUIwBQ-D8˔XaKqW🊥/cKߴZ.|GoN:pk)lkG9$ Jm-#o#kl`I xޱWISͰ$,$4JDDX$.yYq<:}z4zZ[#qPȲkBRF*ڊZ gW =8@P&h~ci5 5VSu efiA 7!>i }BWV*I2T߭"#,_d6癵O z}I;N)ED(c^3a& N , Ovm$}+-i`—"YBQ/5סZ4-3D8"Z S%*GDq~J0?2]aCHfA 6#5k0oHpqOg9~ZsV?aFZ=cۚMX2@Mۄ |0RyDpE͉dhYBcYطwz.M|e(FP]*gI@|v"qVwX{(WF=t^ r8BQ^?0Y~Op xҖ30fKJn,072$ͼ~ј}- d sY.\z9^#c"^&#DQWj/'f_X iǛER =5GnE?p~}>>i9H%~$SCm]re%u SX.krax2˭KbniCxPJ*NXRʣ1Ȉe>}Yqj9rBQ2ࣲHe8ڙ(dHvɲ?i4}bᮡc"|;I/F\d`b2vB| y幇Rh 2:^JP4?NZy?aJXJ1K .j+zfA A4*%kr[^u$ș1t+g$ɾ,Yf#V#!Л {sc'ZXv߬ G9omL22VLZk "6O b:4Yހ͜( hLl"ZKp-JAj 1NsMb3`XQ, ^5ll!A |->]D) ;?0}S"#1ah39D]oVfs/ ")gD9S+֊ !j)aO[ӊ-jz"0"DcU=ܨJ$5C:L GY[ ̉& W얍j7qRr\C &tc >F~Yi鿆ڷGd;7A!=^+IX~Ѐ )Ϧr4W[X*Ʊ6\/MoPu!Mv…5Hh6xJiz9%bFKyFh2V9^ :a"g?/gaNŕ63q[I>β G$r2mh9r<pE#-?io#OPS3Ć|#I 'lb_*}ДƎg&tA= Onڇ ~d؂V7@HRhE*Gt#cjPvt꽯kR.BHD{,b&=8;vCbzv"eVz($&}Nұ$E+!(\{bz粗gw0V2?`OLsΙ5%_Fo$L`d֛CՒ[HjV}QTӰ= ,vмXĊ ހ)/ B4N=);Ke|0w#R)U.׈Pa2LϠٰHJyԑ|!QWӡ'fm|;) Vxq㫉6EPK'I3i`9RKĜ1eEvߓxlXn5g hwc?dY<#r ez.zyb V({4FHM44Kh.hŮ@0s/dTHmX])$[sB܆s% ŔASԌsk"dO`k_-/|}f'$ ³z<ŃIO 1m$?e]pe(᭗P:k4 J6ywwӷ+2ݲpf.6k[r# W5fy|6qReƔΪHf`ΘhP$Q\"=}('j]OB)Ew[ZwfMWU ~J4:=ggZ&eeS,R]HP<<ߨ%&sy Zu՞2(sOSx/c;nuC t*i]|%P_1٧+mu~=o{O=SgbTsLLRyħ~<-F hr01~ R" Y3|Rq;Ghܠ =3/y6|r{(~/?zH~zݝ'O[%H8ΡaD;/ҝ,SVDᯠ6#׌3l>KNj wQ o8EQϪM^<%r M8WNYx5` U { +4TOεڸt[h1BwSﰊ0iHS<2CyogZ"\dp!QTg`mhz|pZnE'b.[u_'4ۂIxpf|6TUiyM8]Q( 2,]zڪj^vs0ikH ]2e-.yH[ #ʬ_bR6G²<PCrvUg(Qz ԑRRW_x^,V ^lA#& mڎ !:ݥx" Ska۾ϻ𿞶9S MCw%j ='/%0v#A/q_Y] m?$:}$%v -pn5u+pIV(&~Y$µ)4 jSm'%%2`Q=TQNkܪX%h=>1| :d‹6t7sS4f1o&z |oh, oiq?qzahtZ1c0GXҰXdUSϝX3`F7{1Qilom!; FZ۪rS !& I<ӹqE_tEYLlefj,k ?[ߵ! av0u.JyXG(cQ&$8=u/*V=5|šOc|Lٰ|:cb#?cgeGBG;- UGЮ GyYmEK d Ep>CU3Sh`ҷ.|S vq+\:oCKrf.*"H,Ȗ_lm+KԻ2l'( ѠN2U۵}mJ=:=Ol $IzoeRफ़)0'4j?͇8੊1z//ߠq O_ ug%)?KР*P2;}Fo.Ǫ %hJ G=2M2f-gUz7; ,9owb'KR^s}Fˆy򧕉5 ,8[K`Qބkpnu7ZOYUKr uip3W/[:M%![ءȋNK~"@A 3Ϝt򣘪5~K!40c,Z t78ʽŒczF|qU#_!~=8X~f'H" *{jI*1¶:\W$rVB2<35;݁e"~qc7t) G_^֦=nOg nMkd<;}Մ1/(Q vƈxv0JZOAx+@e=xZ2a"d<JSSuMPqv;F4&pHn nf`2螊twQT@pvɋj S\$W QT?[{Bg:(7T7k A1uHUH5Dغr+ aL ȩHRc7AZvR/ɯ tD=aBǍY5vzMTE$Ǯ.'ʳeԴ#thoLXbǝYΔ*Vj`@hU+d:Z'!nX]`yS|Bio;>hiOWDx*ʐHYZ'C^$9ڄEZXVXKBN:ʰ1Պ.hI8K"S@ci&b!ƳngX^}X&U2i!<=tgQߓ*J]τU+><n4Tzh@S\!ѽ{q$M9!ES5ρ)[%ID7zGz>KӲ[fVnI$۔W_c<s#N+QU ^D&t8|ͧ%28z)ʘ) 5 E65 **V]M/\eIeZ3 ]ͺ, 9K7 ZlW.X\ M_ [5lԹ57Y;į4C7uQBu򧌇Rt_f4w t8B6/-i(|siNzqrn"\gux;I5,)6˗s h!)6gHNm3^6M5U)zɈ`FMKq m  #pߖa?1A7YS{%LH:)_~1,T釳FRI[ļNZV ҷm<ȿtqh|DKZ.p*h*yX*T{Ҳup# "Fn-0/O&ʇ,OB x[E~QTgN˱{["Ks:H-\A,vkAW9x`c>wy0-&wn>-ki\g;ͷ3b(UHnn%z)csf8l|[/1q.w"h`ԷP5WxJf4NM`>jn^r n /QşRRP2{~O35lG`8s!N{\5"T>WasS=,dcwQQo# Q=OQk"+]H)4Nu}6ʼnJZ@3G _kmO1b80ْO/;5pb 20ΒzNVE-B7 ޜ/Da혁'J`!$Z&9+Zbe xv# Z+rsOu'jѮ[_"EHQOxreu..?ڄSqDvk,Z ]*7IZ߷!z, zN0TDCQ~sco7K$Rc?"sKj/i?*<$k2/LA42w\i/-i]AwǑ?r$I;׬; KIPEz.k^~@Of(͝@IӹϾ 5q8!g~bjd #-;(b[IV?p {]RTQ91}Xa+վ뷯IdA_4rEXp>=2kߋ̀29NY%FU j(ۅ%TGޥ'JmM [D׸j5xJ9G'3w̗!zZ3!<Kv+5.8zzIm,+ڟ@g pN\kY |d{ONu妦6d $"`>Ef]IPX* "_!Norg." 8㏅ىwp3giN1j e[xuΌKp  H{O]/j+'-=>ЈVZPE֣[_ێ(!= s4§;z1r ۄYL )PvHfثtZ_yGi>&}9 %<$bvzh]6+5 b /~YiH)^Hf]žIb7#+IwU(LL}) +s?fH ؆?ۼ9 ݱ;6 |Ыuʩ]vlI`7v S:82OC]VaE_R)Z( L~KlLT}HshscXZCO&g$lMvo25$ 2ebz~zDoHbAg)UhtK u&{}G+ XJ+/V*:lS _rO?zJP2JS?lFC,CW)zac4'E/VSC ,fu>NZ/Jr;0ᜳjNZ \ ^5)b AYbVΐ4R~9cin:NO+ sT1LS z`(4XK#eĖ:90eČOi2كnSYɵ7>{KL b3˴ 7DY7cU/DMw"pszjZ/Uӵ|;p>;WpN0p/(X 4<~:&̡v8 + $-z"餘*A#zdWb:=!C{5q眗^#R|ժ1ǔ[ _9#DiPʗ߻]Z?)tLfo2nOyE&\|E9p}t"W5\# o a<EAJNyu h#Gy֤_DR)[<3=5 gipFWX ',R:P%K rBEEt'mgմjM*v rж&nYʖzT3NU3 DZ @y 9k@GdIUc`hŨtB(.o6(x$H&4btu{Lg^uBD`u%#CULX]c<&mt;gL/c:X%[Ay(1 Bj} KJെŅҤ']6 0u1) x,-_9rjUt/l{X[/4~=V}EhmjwVo,;o򰳑fmp}}.(@QҶ+]rK^-(vh vV9H,_IJwrD ; juDwAB"|#%Rs G3 &[ɟ~*&z4W!Cuzc`ô2NBA` )ήܫI<Ċ ,k"eTbH,lte6crO9t^Ep/x,G(??WT~bpT hk$;x.rH3=gP %E؏ACvP5OvC,ĝTpy𚴣 I~m$ӊ4H]o6\rOm,:e%y]1JQn]C'Up@OguM_% P2(3J)-&MQ;sc!kj1sp5m:1,6N|}cĕb|J б2qc:נ@^A$Y\ܥ0'. k K0ʳ/]x2p^6`PcRe`D$ü' ~Q>NSQ;yw'VR&V!!ן?ze*AQG4RĀrε^A]pWjL76CW9>BaU?IJ4M@!$1+aziFGw @ i(,B-ߏaH)xLM7[GPAo'O`ƮAq00>(h*Q`֎? ZOyU pyU-)ҫFz؅զ?f2GQFDbU@Y>C=K9҉q<X/\Y_ 'g?nZeYE-B˅+mbJ] 1y2uj\qZC5E!'7O/^8ABvuһ35;TlSpH(2[Y6;w>1طmX^Y5AotYN<H|6~rhIGȂEX{ Y#Be[c3θ8pNh)cP07ЪQ6?[Xéڈ"nwqeP*DKi9+~ϷD~ʐ"[ZT/ҏQ(!n^HVA^`űUPs7PrFb'FOݾZeRR,[R63^=-7-&Q WAC 9?(_ĭW8㰓bjbjJ.F gX6VS]xtTPqI 0EtmW!V)Zp:p͈%ԟڒ;+|gFcߌғ/E"A8ͩ0?B8{_U˔O@鱿Kz@u{sIJZB4PtCA*C}iN?xo>5k]O6.2낓N#`&(:: xyɠ=xOduP2nOrw_yOO[@M8_ Z%7e&Qz2V^0A)U t[R.Tj[sEl k;J8_ζ^(ONxQҟT]Z 拆dN&SUf dEě-t:]@E͛jv!,#݁[W)!B /k[q}gχ F+Ex(+mcP0P>UXdtNҐIjsÿ)LMDž̋o<_9W~1d&ʡ 0MY t OnWr""g8ô'$0 ߈ُ8iѢwÌF VZ!.ʴhEj}rF$)רJc\qav mSקymkYj$9q5 E;Z3LM?uY׀IRFEtu?(6uy0'"֖N6~I$Kϱ齪_>[px?rȇ o3{?3#MLnisxR*X+v%un>q4!kx2gɉHϚȟqQ+CSe}Hr# T-F,HFSC먯4[tef%j'4"Tgv` ;kUzh̄I~⓷&ۋ RzU5(dO=ٳI= ɳ0P1dڬNNpH5@hnAU}miVv?1d2.c%Nila7`eÕy^h7v`Bnv6BH0͌6VRGjIWщrlp _4 LG9kT;I@\4O+P$PL xu@ƹ}I1xv}L&z eO+YvMfժ*[Hx"O\'|xnQjwn+o-;3$/dsvw" @k0ۚ;@^ ɩ`;VfxЇq^cyVfo|&)>JZ;bY2M۵QB{!je 3oZP4i7$>笾G~,#*7{'8Tt[4 X[QﯭG) f.J-}|d2F.8m@1hJf="θyޠzFSe.U ˔3P:ʜpfOT،u!!vBL_ fdL})3toos7KޠU1WpI8qw.0Mn”NŸAI(v$8ZRHER\'c7(D,CYkFM(饈;l_^e uK,9&)8PYnD8noeرR;q BkrR]K[ӈb;H7q?pDZ@;qxT݇)+k7me-a/P/yHF>;uaN]b% Wwd^I#%{D&i>fR.V~һ{}dy&іn>SaR} 7/t{KNٽ;Xq=zwʏIXR#:# EUkֳvOF6q,\U@F~Fg(p~5ït0CűkNMݫل{Wc(=Pm /-B"oosKclS .KBf,XfI}j:ZcpB$Eu'^< += ?-'xa!I.!*/@UzFz@t ijҡq+$1 .s- |4MdʸP= =6=.q>wP! BŻwڦI|NF/|I3) K(Nli&>o{a > BXƻ u1Ez 6Y!!wl:9 "a +n|Ffbg P+3:Udq/RW+[[Rnc!ۻx@ҤS+l%P5Q ;2YBPϴG'L~u|ɞ_j%֪\+cм`@xX4Tafexrn_ˑd١ j/ѳxeB ?*̽9*/L싽c9xRJc>ehց_-G\f*w-md҃0Â2 cIhkēQo1j6`#O;n'v TBT/\lx*0,R2͇2cW:Q!o`JTW;`)]nDẐUu 1ƞ_9g9LAzWFxguaFYAK&p`^H0` uLxΊ j,n{IF5^y>7nܡ@0=8yYI2t& mJL~OM?*w(:`<uFTͽct N][-|3@/2DEOI g_|Eg5v7<|)|9р>u.ȏV_Q٠w˼?;;Й E8cl㈣"&Rv_SԆ\Ü^04PZ#nf wU\ҖWR Eɔfaj3`np>q_GG8ޫ<1oðL{^݊^24ѽ~I[#ih*$fPL*y/HxyfODV+As 3{I AS`@3I]*VK~eNߡmA,}HOP@;,vf}?q5_0{nY_wa9fL$iiIk܏>tx @!1P'dni!Zgsn>?' &';|ܪLV)j!E4VDf΍{-fͽ`K>D DN fb݈ɇJY:sFJB[D ?뗂`QA|nMo6pND,6/<+1Qi3|?),܆"ܮiY69#M;9S@eoLH.Q2@yz$EzaF:aEA, ƨm9ji <I.GlYr" qsV%)k-H K" NAk\{)l";=Zih q =?q1t1 ;,D++*˾AJ[JA zZٽmb*YpHJ]>K4r8@Ri"BKg$I2VTъ}[c{]k> uF'r\ s;y-9ԅ@- 귎 Z ͦif:frI:IP1&jsMr=A|^!e`#_z"0n Q#mr<> J+ݒBIk%OOt4ߒ6T3T̴d/ g/g*_yrCNKw"pΣ eR%V2 t!T3ea/Bt}=sZL:`A/FRgA-sԎ =jGg3y΢'zFE5o+ctxbJv] z*ssbIqPbĂ$x .hs*{/p`hL|(d[{AT FwrKK".,wn=֡ؠ ͒zQ F#ݪ;!}IړXR΅.EmD|Vs%Dqa<W ]mtFgO &>7p^~h9IaK4ZE"g?6q;TQtj1 ڜ3sReVW->vBKNn7 x O> [Q?"H >SVb_z[OdzQ~'hN #Q ~qVwv -ϕr@BcuD@ii.dDU߽ 0t5q[S;MAX",>.s#8sRXA$k7cS S4.ġXx5'<ɒfՔ:zѳǚR:(*g,`Z|O>q},H_̊)h*.7Sn?M$4`j Wg YZ Ƽ9JIp+7.I(R1H~PFz{gEgkѪyg/p6>HuLˇ$MPz؄DBuͬ'P%ƒzMkEO'"&XUܷ8R ܈pbz vD^|k[6͑wXtrQnno3͍05L&YJy~ ]vO wUpI+zųOubLA4#W^r?8`Ii"1v" ڄnQteHR!O7!Uppm`&'ۄ^x|Wk!JHZ=HR`imgҝcÃ{)H;*@Q`i'Xa'ۛ(.ղ2DV냟('a2(7=36R YE_Zpvt9?4Bs%LK?w~4ցŨ0~]Uc{2ԕyN='YS8PD!]/De-{h8Cb?MC r6c&]!lf>5YNLм$2'tq@OF0c֐noE!9^?^c`X:%Imqá^=fažl芀ɩӁ%"<9-grPifn߫*SХ_dPE2uڡeOn(&4w‘O߰7U)*LݾЈw6GyBĂxw~Y{i.gDp#`̢r:WHʽ9@,r;[s)JDi_:#K?Ǣ1bz|pr*>zH/zQt3(jg''IaLj僻S-fbNH'B5Ct++ W}4iV<G BP<|R+7e=&G\ޝ/P!=ҚiGS'X^c/q-;$$%Q(1EңZ=Xv3 +pAtruG4}.t@eUJrlBR(}ctϯ.En`~n-oilƣyPGy'c#o{(i d-%SqW{Hkg>4y#lo[g$Ps:!8ЊKM`lAQu؎WYS`g?<#҇PbaL. gc$?_P'qYsPg8|7tl!C. "k$;N]Cz9e]GH-q7HPF)1\RCVK68vL{mRch3,v+Bgb`%1d{`N+z:dXRnq]b{>瘕3,j:^91lZfŒOJ%!Wo΄\`_O6h!' 'n3:e8ǁ&\2>/g8L2n^'kd idVG9RW q3fy݀(Ucɩb:m 7eKvTC۵*=̽@[5bK0y/ X$z %/188O?wؠit4Mwq?`0z ܧe<&z"[ǚzk>dQi#_wKN96?|y̢j=Ȅ7Z-b.i3UUM"jo%]g{=ɪt3ʃjT/*&7>xa3N9,Pl3"'!ڴVom:rWj`r/|g7/ K9$"i)V݋^j vk>0Qx|ZǙ++Zrp}8.o]#Hτf3:i}Q |f"ɪa:r lmp+#NCJfbMg,f] a92B0bZ4KM),gѷ`egycS2jڕE[T3UlvJ]Md7I<#YrTӔdp{ijXUrP >VCi kx#Ϸf`(R5T @=;tvS{?h\BLzbVn$֮eb@t.[B>w8?Sq^ = =|{0oi RVؾ pZE7f0Tu/O[U1h>l0J>gN7 t{Y@Jk r>Uʌ= _Kh@9-y1&rtZfl@\7 qP>9]Jy2Ȥ|۹Շ9eygJ'DPeŔVHс#d*ؕhx4]u#Ⓙ}4ܿУnAOcQg {z"+iI봛"\1A:K$z^e+gLA,yՠ|f@fsʳe |"B N/ \mp* tu[;$mQ }ƃgˈ={Ub cG܇jµӭO#94y *;&,NA+lEbJmEqt%I֣iXoڜm̡fj})l]mKM+z4r*)zF <}맞0А:ːt}zѴ+8wcfƁWSՁ\I˥fgMc:8TS>7BB0"pֲ&*-`*zwսm{(;ʝ'K 'Hd8m{h.2!n/5Um)F# M&EB[@oK-G@NZJ<)d}Byoe1"oy9ioVxeaN~׿,unv-6ěD.w=[M\:?c'Ij?eyVn)3fsloɸ2zbd Qx 3CJ [|D̑**QSL oj@7rvD_ q=}2:\Tzج<6ة2@onJڳ2W+.OlW\O1(WYMzV*v@9_sa4܇m_߱¢ o o#Uupu"!ըC@)D q$u݉zuʺNAYlyGIAea5o!|}R,A.3e0QJt,/hWyJ&LE8Xn1k|_NhiAkZ2_{*ƴr7Rׂ5Mvef6e8!4y zzLQf!̸{4Tv|(IhjEtDqs {}G쥭.jH>\fAM+*:c,y+J"v8ZOv 9o1|Wf%}A>Z:(ц)*7 :2l^7F '"þm6i{Xsdoqӏ%-4A8>nJ=}x,1;+nv鵈 !0!A]f_E3.yuSx_L;J=b,8qw;é࿸φ +Ok,>h1|$ v+I13 (L5vyicC:SMH:x3MԸ%:K" 0{rr9C"OJ_b2]wX)\PP"aQ{dC¦g(?"KHαigϴF:LE\Z@̄[xU*FX1[U,a_r0 2ܟʯ?^O3,@gHNCcp @PKj+) dαX'晲ɽ<#L[(ߑ]#t,L'6jG5&ZRxF/-f8? sĔCwJ8{, **<9^f:@ւ1Mo4R!@xc֟\tmj8h/Iֶ$9sA0>HreUfZv]E >zx.`i3I'U-'B  ZԑZd|^mmu:_ïcNӋqHiG`ph[&nA@˯l;y>Z2EsFo1+r{lkP |LDN#CQ׌ΦGX ] J>̇ Zqi7g0\k=}&&AG3vMPAJ(o0QɶvLV(tZGw:yUa-W6s)Q5KB\xnji,GVYv19Nni 0&t oɏ" W65e7\\:֫~OyuOzcFԘ 'ʽ4h+'RSF!j'8oX_(;.%Uھ~r^GPDw:38/ӁVIjr=, w߇v$In3?tG 젓InsƼ%n:$jn)HAQD(+j|!+Zv^s.c<)Z+a2lA u$*I1rq;e# M_~4E@wiؚU?R'F8Q,UIs"q)<@ٓ)Cbվ.DsKQm̷d7+m_w=ұ"׳CX'OlDۃTBm3(-'z(x#^nm7#8Q1P 9jad]\/w*cgW)F cɊָraͦHnV{@8W# *H$|fB \{8Vt)5 } _Fٮr/Fظ)dc)P9DԤPzz$lU(Om!>\2S-!`M+ST1mU7ڠP/+ouZɼ뾫GA7[%u9fvrO mCz/OS/%FJsɀ'Xv@>_,mEupa!R.x~ v6в%Վ~"tyYؓsB5?(*S]~DX8\ܵ/q []*tH;GagC40wكyhf)j4gL @z:L)lVEg9ԅǤLՃi'!G֎TȵZpVe-YU1ɺ߲4Q-M{XDx,-No )(M/ O}:Iisv$'.$?Τj_pGFWh@*Z~4e 5({0&θq\2+XnU(߰ݦQRMK<%c|"ѶבG[~ShyCU}4~r1͞v@nyЊgyYV ?u#+O;ԛy|&[tZI<ڵ.=d(!ɣފjdBAvw3WpY)WzX}3:!]j#Q)g }.Dfw%</K6}.T]&o|9E]}t~ :APmS67l:/wvz;#/ o٭7N`Qx?-_Pz蕅ХoY]nnj?ܚqұ I`Gtf0KXH>m8Ylqukp Mp_!vQaUEy1qEC;xn]+R $ ըhֆ(xV87вQ6nM:d9MҲ *q4<يPFCT&&&#C>NMbn/C9pD<}|aذdS/_dO`J"+ !^! %In͚R1n!I5n 6قtufuO}(xtWx6'X(& Ih.~ 9BY. TRroJ-w!'E] g缋S}D ^%+sP.Cw:UՆ'*nq@i.2ӒAǑKg4WHj´Hms:sPݒ}7bZO8U *=ݞl{(C&CrpMy)K|q% YVЇSs4+رe~k``aceĀhľ+I;  ԡZ_MX4DC92zE)\8ܰ}!a.Il\sS$L͈9==++PT!qF~h^DZ(ӆ]|j|]a[[޺M‘'Ĺ6Ѹ~GHJ@!>s FP[>eƳlWYRT7TW'3oW\m|%֕"y\B<{, 5Ƽhl/T)Z7!,d,SEGN)ָ9 D>BYRO&{3;nyHv mK Ko79]AAu4^bs`H,rž|]} -- ߛ}Oq2R 3)WJ0;AZ״%Xam~D\ DD>d<+% (g`ey@WNpuN.j&3u C!$`"|]Yr\-jhCw̎J_?+C&UNAM"U1mimn:cx:lSO&SMo{ʛ2M571SD6AXvK"C57}h/P3|sa^/FI5tCU=i+UDchP:TW5!{ISʷR #XrJmEh[؂zyco@ortDRB%&enّC"Wq>~]1g'--AAqOtV'}0'JNi+,("QY8V_}n-^rqh>c1A;ΰ2M/(,}&6 HĴLQ 48T!vj`i])TƑZ[AېnXa'plI73렭ƵTp@ilkSx)vjpb~c@vC"'%gS8EſXfrখ r<;FHAI> 妠v˘j=W%3 &d#3j-x ]Ge⍨>yWQo53&[E3dd'qNi=ZsB8 !VE#k[5G̲D&6J9ϥ9\Vb@;J~U BrVvvlp\_Tn(/Va!])MBV=`SXz0eLSzLw#(6nIiщ%X΋oǸEN$ͨ4O/mA!,JE=ybVO򉕷u{3$5Sg|h9OIKT"E)/uT=Co@5/H9VQˮ2/hѱP7)rRq2NO[Y<8̵lB ū*BHiI ;3ˆ  awWS(ŅТHҕJصk7ׇk/4٠H-<ß׏-цr68uW 3G.~fWayVqXN]ȊZFPC[~[j=喠n2V,AY7e{ @߭= E7~fόTk)EQGw_iXROaGR^ם^zЩijH£.:SO9b}&*[8xs3S1p־Roe/=l h"SZ* ‘bqSlRo^Ff]!@_rO-`7t~ў-#}cn&.% ͸yoblAh6'>/-Xm*oڹ}\|SkD|ptY3~X"J/Ju>)^ }Sw'Uޗkn;.~@CEj& })u[^՚;<6nDxI;U"}G .w:ev|/Y3#ݮ[T5ے -iNٕʅby 隁IE ;pcܾXY")X4ڪiMDQCʌ|)n^)XF*aS0#"2;1Py0Q];w#hNlcpfUMK>@c4Ң eVv@'SXʦZ+?uM߁.)`GS=ge|AhRlyϏm>o#_ #Ƴ‘L>w9"mɸ I9, y6Բ8AYQ))| s.iz.ިBiW/ gE|6TO)S"AIذLjw#OB 薏l޵Z[ic)s&N)%E-NH?; ?țZ'm9*+E,*+Ɂ݆^Pa3q1e HyUb^0azvDdM:'Z|g¿"(41e;evkWTY*Zx,j6'v\`jZq!򲄿 ^9*On I:g:6+;imDe$t 2A-l']B1'Pnw]Ƿ21kCMZ$)ɡ(yfCBg {ٻQ.YXcϏp^P7b30FOa??\oO<>8d@7d^hcA q ߋnD!۶]pCQCeϏQ urKr/>p(b-ț-bY:u&o߻zxZ ɊV "I)yH9B^V㍿|O/PĦ 7γWF]d^$x](1zk2 P( mgnћAWvU5V7搉'hi?ES Ec8Dt>1 ̿yRaD(e #bU%.9$Ѳ^* ,jG県|,8 GkFC`CG(H)|soi_#K5{R UN;/ҙ ݒ2'p`=9,~t'~;~R5@!*\L-C0a!>{$RX };j}Idu7Y,`ݨa{g  xU].VRِXES;sn?pr?)n:ᒢ䛑V^/*HJՀجhПRHMhi^y&E D7q9aE-Q"`%r;Es$֧7K4غ@W6/Umi$g k{Kb-;0p ֣^ḎKR^+S)P/pa]*c gJ}bV89iWͤ P%(->`)-D^5K""No¦O%4\qT ][T˜>QݣA"yGɱktnޔkweH Z:0?/|n4|_]A;*PIB}˗vtQ.SҜ7_y!Ib"n줁7(AךǬ.p(sλ%_8;λgߐxћ~Vo Y H'-@(F[! h*15RN&ܻI˼g:RRk- b&qo;Ry=No0-w:aVi^/5 }pK}:m1^Şi-.7a Yv1" Bgx$*&Cft89A NHfg?Bգ>L+8_D =#5/ H7ۍdAt $MET#DLR A8?Yt١i)wcUO!h7|]SKV:R Rϒ6Ү?;ǸoMPn:l~RN$vi*V{OGx}9CQ푧}Y03Cy2>kMbθs>d ֯Z;]::'tU9H7H .~ّ v(ˏC3 jI5X1 >* {E}0C;,m~r }an%sO ²L9]V* o=n7V/N} JP0#)[0z`u PX2uc!p+h᪔Hd؟lTRgQrt$_FPmFyz1^l@,^KT@6;d BG0)$HN%Cۈ1zhױUV1aIeۅ`KQ\t{?\M蹦1B| EP{QYȂc̕34$s|ew7̓<^d!Ef @z_\Z|_)#'?؜/'#`MA<Rdz_}a?kde~XM.5f=H#gjNi#˞B-vLF(")rlm(|;$*q٫ecK-\J[2f"z8;Oo Oi\k#˃OdoK1ii6x$u a4 k=_uj5\0l_3xgML+6/I=\E) ;聅du`iL qnUvT"}$>FK܃\Xn+c}K,Z[kfldPT:X(9dQ[ٚ:߽&A >AV'Ku.tc}<;O][7;<9U4A!$2X[η5k*Ī̄Zp-b^IibWaGokH&wJUHVGl1*"f=gbd#sDhr8JkfZ(6G{ ԄϽ,Y6{ҿ#2{nSb" r-Z\uH?ɈX\QeDIj@Aڍ7nS/ވI}Gh~!`ئ;.,7;4dJ ~ m9E'[ s786dtՎhEbFzu8{^bשTМ/fD52A/:u= AnV,qqOl m`=q"^@]]J+i [o..?'7rHֻ9ͯYC xEyBF2CHMNNLf'B"'.();DC}|EжMZVJ|]WnP[ۯꎻ{yfOjc,^CE̗#ug8!*O Mk{iة骾N˿s"6c/.)2d.t[յ< &N>+@pďS,QD\г˩n0 XWc($G-JZAlx5iF\ Vܡ&PQUhi/%un\F0< iܿĤr}Lq=5$"hh,1#)gR\"_1K%wd7doR㾐ḾUcLųovueJOQ㯨,0s+M^gaQfyh}LDƎ"}QphNuh{-m>gU!.߶0qWDa$>m8/FnuC7;\<.9(iw<9> R} H)GLŰOԍ庸}V-ei+zU 4zr.w]Bs6}"@+RDPKۄ Dѐ)@1]5tC58>%շ^E 39ZtIE @K7XMܨ;q"Aq#;_."e!Ay.bZ8#JdS/:G E9Yc.hZ\umSgݧFߣewԬI/M@bYk0ޢ{rnwQŹ~tj_VJ]k`_'"M@--΍\1&bsvTt9Am$\ikYe%6NmR'0ȏDk.pɬ+ޕ|'N-pN` Y{؟S!j;IĖ+}曻H B2eA: W53>(btWAKa Xtr33zQCD*H ON`hi"q(i] uW2 canFV0O'9gy%s\N HU c,)ĤːcVL2 /Z]{qd[w QԎR9A(t/w(;$q"_O0JDJ0Hˣ_[;z2ƨ%=[7j_.1o&~4F~-9)F{QX.r="ƻ~{ `} lF{'Gluh-%} s0l3ˊ;i ZD4ޗd)c m#L"W<꟎x|0193'Pe}w b O"@CcqZP!NVA䍛~ -NH@k{,şbhLRB6 |o$;s0?ϭ F pw}ydZ:ܿ>5>R]o| T,OWIQ|QoRxCZy{IZ MTYȃ=w=Gnq<̈́5+ŭҵ0ˊC۶eX /瘅=K"b*k%t̄;#OKX}'F(4&D銃ĄR:}[ʞk/ӌvYotx_YxOvx)s[bʞK* $3lucT|L.}p  gX07BYW5Ǜ҃5#KQLMi tv'x9 >˗sz+9 0ID: p`ǗF 5E~]dkƔWO} "0-b \ o֔sSPMדh͈ONFm~#s5wKKj*CvU YMG[xdphbZ`CR栚ȬW4 @FoCiccOF*fDa `4HN_p !Ƌ&!EOe2Q%7HoI;q8j˹^h>r`eHqx+ !J\L8jZ/1>l[$E)]xWΦʁ%@JyrfG ׀0RNX#TteD\ӎkf>%~8N%XxJF%SAn۳ rWH 6ӹY :Wx: Qx%sb0ŎWǣ_CBgP\#=zp"\2cHԖ2(u[@d|dSKui9O<Q_hF2µsHQtsME!TR@*2nO<85@7q< >HӼz~ŇCc>1b]aVoA61ŁF,49+Be;N,5!/LQY]Q \tڒ̇ Ҁpޮ9jpdo?WʜZJ➇q2{0\%t!>2*Oᶝ- :^w`&%G=/sS#<,ʭiM71|t&_+!xyzo;D'%-i$LPqvIEN%J(vF5,#.x|>}}sg7}I]r^) 4$[;{<B *ook]0:Hɷ!(P9Bl͛yE$]Ңjdx`=--{֟&Ir-4>h N\Թ.EjyY=݌0>h j8@X=S&Ӳ&ZPwN*≙~֛*":{nf3<vq`7Trc3vb u밌|jz7:c>N!Ԧ9.k *{P5zaenho?f,HmwUt5akޮ%U+1*RwuRZkgvx̄n}!5ꥼ} V\lH[}(Þ&w9ԙg[dh@jpwE?õƞV34o8K<`?IGכ=5Y~EzH/B5]F RU,*5+kFsA,PU\N QoN{ tw }Lt>Al"Ny%MH88c`sqEPK|)B}v#]t>ἑb=9IQ)aS s\ S?*"r&l# f&;)kP$ (c}~x0L$z~%ܠ΢l7Fi]!q9G4VN5, D5, 6l8c]E1xHP8#t`F.bʽ) [94՗UAr`Ai6*5V!'C9`ԀF[ݾ)C9W EQVejj e`⃰^Rb%r+aDi ezI}?(rbRBoK/ "{FQ !}^fMgޣ'Y2LC~Er>AHedXRiFXOLkFόuB0M2a5 Yy!#9%l3^kn$z#GRhGqz}dֽ#$o}96}}Q5Vv(8s%g\0d@"'57Vb$z=@kσ 77/$:O#֨疃Y(:=7ja wֆτAZ x[ Z}f":t#pD-WPxzbae}j6'{:g)!W=GUۖj8Pbk9dbT2̢Zlp=A#$x5w2=~jγZ k={ȅ#I~U0cզ<>E}$}0p&]X1zˑIj̓ ja"4dkN1J# 2YM>o<Ą }?S?xv>(bP.އAjd$([W1IU%0"s gK:V)";xA@BP^Mmkrf3m 2߄H}wGaZr\ >hE(^z\tW~J~_G-W`Lhߙ#{Bqyk#F\xگb2 >Rm@y 1r&LhPn;Y:i[~~RgAQ`P$BwȲz\Qv3:-∈e$ZW,jp5!|28W ;vE!5QQ7=7X3C1=KשWβj:w܇j"]0Bd@`ek6R /8fAGuai]: HSVT H"jjoXlUWo+Ve.SVG ;{Y<>( g|s{XF 1MNԹ:NhWTW}I_y^zCNL%%U_mܾa/ 50iQ3R7"pWzf!JYN,ޙVswҬٶC" +&k_]sz4! 8/|Lw C5"&¯ԯZ"weT*BHKJ&' ,'|.{;h:D.+foڊ=?h+I=!ut 1$l44_N/{YJLCRs4lP>} & RENfs:p|HJMD}Ia,͑hsA\ 8{T=8^05}WFLL7(0=vdio)`@ tJr3X/u"m$wT*eET`|(2 _oks^ y{Ex]> &\?y-::K2zzԷ*=ѥiBq]J!` (+!=AE~/p ۜqːgsh@PNM(+)[IuX$ {^ ô'cH[|Vy*zm a4hG{^ BfU4)F`(d&730<=eDm&I-8-^&f(]Z& *kMk'+lε(C\p$KΜtjsQt0$/hʿ:uja61S1OWEDjO : áћ3NUIe`t>tM0J3#K֜b@yqU cƇpލb r.Z8( :4$3:`;Y/P$ҵa74 ifn$nJqiձ (cH֋ uS#)("O8?iG \~u6= ]ɚh IGiddZo5O͘WS~\%)rƂBJO$' ]@&^8α)'i6XCȶO.h~ɷ&*5v(XZ:4ӓDO1RNJxf*8u7 #m]o%p;1Iu_{jǁq*—rP]m& m:!! |jN!-I-dhj5\ hmq`!@5qJJ28{T::&x\`/2x8|~k7F^] 9 κ?`0(A71Kl﭂/Q*uq9!k_򄤩jmkoE06㤏_]kto/"N= b˹r}r]7+v?ތ:eͩ>.jsmt;r8K1q&gڪKH ;| G5ĵ7H"}^cSfq[̎⩜ʏN?*9qK)yicŹp&}!wTヿV*5%>YL6a{x&(ZemղG-iHSt!Ψ&*Jˑ5Umr8jJ<9\-6#mm3 2[=!ziHTE*@{f5HI }ۛr@!Q loUe\qw'#2^!ϽcOhuܞ QZg~nEcS`hm[~D0РJsFS#-ľ2d@ZYexzpTls AnEW.vo6}7U`zx߼ѫ\?7 Ԣʼ]>p}2SUUjSEi %cbiikyu]A|pfEݸ`{zҞ tP`er݆8oVnf{R z=`H,UyPAר.H:CN0lh.+uK8U4 ;H(-W7З ac{ҊM1mͤ )ta'(si{! &(ׯ+ Jۥ 2k+5@+I͘`1비2[o6Axbm_[15MfuMpBąYa) O\|3 3nj՚_ziYIO kZW_K*딩.z嗵,s遟[eS?)k3AA[gB&iAJ܃cg'm}RD{~+;F*ƥ.<+>s!469R~c{ȕlkkwBم 8}c!.h@vJ歙/uSSYCW\+XXLR8GJM(j6u{,e@n~d1^ƮVm .>S+;<*K[oj İE=Z)bt{p04@ ˴afOR m'*t0U*łǯKqt#hÚ}huoD1A, ofM:GلjpnyDŶFԸqO#%fvWǩ)31Y5/v6XtujY=MF=B1t:.P0Q*]MhRV:ޞMՆ|H|>RE깐#%f]xu:|(ۄBY(F5,9Cw~)o~ V@N+Fȍ_' C\M 8[w*AAv'K 8*%}e^6G15Ϳ ?q= (#6HЋYl0hILcSlgG!r5sOyqB^RH1SuPJ8{hF7ulHQl5UnPdيuηpB8 ~rfGǕgL# զ検wb$,hz^ӀE ]hy3ɿV~yAP_L2'4Ħ||87➘,F.mŅk1{`3cqb!=N]ݙJ\H "Qli:ԶӝS,-D%Q0/9zcIY7ߧe@5$0ly֤W;_}@CM)$nlam\QsXPJǯǍCQ"VLX3` . /̧8}^^w7kSO}&fEW%naJ%סS )fx@}zٶ6+qbLX~~Y-AI)G=0E# hJ>%ʳnH'\}\r- K~d.8VIHzʉۙIVS[@OU #>a1/x9)y8w<h H٣2AA!>)_ܔ'`g#0|BS+8_ͣ-bhk{iʳONeB=eP GV] 7|G, O{ʤmHwS {Lʹc4vhF]CL Y s%eR5P b`E-յI%^GM@uc#Mv3QsWg- (}rBYx:%uhg21q.?Vk%PůwjSW/(SZL`)]%\SpJWZ%/'f퇀*#;t1~/5O{[@=D7ݸ@Mcei|@~F ʥl}Q)\xşEl 5w!m.eBҡɔcav~S*g62V7JBLWazz$H=)w> "\{"RB=b-|׶= Qu;!{/7PZVϥ?0h(|Hm+t7Z%D&/f:k| %h^A%mblC-?Bf}"cC‰-96Լ>s;uF%KB:)Y?CtZ-qVEqDE,_@.t~vs}3KuB9C !Q`({tu9!/SU0r&+h_)oGN%#D.~T=B:zrlMSKI>wK<jV%<=h+{Ȑu")[`M"x=ubWD$HGNlj#r΋;}(j#to8K OF("SFC/*ztJ_Io&z \與b- f"^>%NS[8/*p@IiIdv 2V.A4 8mHJG0]fQ`w sz*^]iczs SH酠-k ߧ2 (]PA Kl[OSxn +{RVBѺz:j2*twV$%@@#q%i?ykD%'peAIܮaGeP,u [L,Tf.KͿOX?$9 ԫiHHva=~.S"Pmpf "SH."p]lUxMW49ުSm1YY} S}ŔpO%:=Jy#xbȁ(,Hz!4o\_G&ԛ|Ytlق:: [=@?GXh~3*(+Q^r,3D,| h zeps8?| ;OF;X:]A~U732@0)ݟwP'p7aG=28^*3a ^q5\%xc7V!vjK0ܩ 0DOQhamRny(P+Ckcm* 2ZaSV*VW Nq^pUq$^FcS&p ;)SJ]rP$EE߭h({t/v0j8UﵲA{mfӪ,4Yӆ; Ty)Um79=`V:&Hj$z6ɺ[ ;8C*OW5E21 oqx̛.Iџ-] QEk+wRk,:`5wհ~D.B%b"yOJ$7Lb;CK~W?Y.~?XqG V<>7$O¢Lea$9<'2HD!K oۓ"\G]ϜsqB瀤@FO5iҔ{]Ag KUvf%܆ޔ=\=u[Q׏ 6)jC4Ӿ誄mqԂ$F=Eq?dz0,pY6p!4@Oځ_ le,g+bٮ{廾g<] /8RΖ-Kv)&~M-P,)z@9 FcrMv? 5p7@txڎ-ͤxC,L.=1aUW#2 `T/\UҧFpNswZo 8([*Lq:'.pDJQ1oN^h?e~lԍFGLOIw%g!`ۢ3~_mt{e6ޚc%Õ#mv n EdvޯG?$I#J0˭[kv}\GTx{(݁ގ#W^OJ G"qL{Yi]2b5dYƥQ+>-c %c~ˋ]M8M@H/ Htv!FMEl̙%h;gBx9X͵$"hANh;'&> q;bv{w>t,vHE$ Z'ώp/e~tCz& L5'Ȭ'{A'In.\r:a%$΋I@l㞷69fU.څʙ !f$H9-zu`V^/;xXL& -JqD{HQ QHZ[@q+(LIgԱ4'`9: hϚk釟\muf*o9}20@Vl%%SjD-]~1]ws'S_4z}z64`fJ'x. |14N5BK('o "~YB!>:$ L~k]F𻮧wYM<)FG,θ½骞ryx.Ǧ}>0:ce#ά¹Ӧ-We,'N9P͕T1Lj0R$N$Ȩ_݆%F+wԉxF,x|E#o [eϻ&('~궔,:/tT^w雝#8+^N)u½B쟤K9Vo Y6bR~H}:bRp7 hD tDQ!"@9'}aSpgDk,xzq@Hg>pCW[?y*fd;~JHf]稅TZ%? Rm3a_#sř]՟!€8(iDP5}E4`Df7EDn b: = ~kpLvSmj#gQ p %?ftO:2r9ZUˀm_eS{o1NP:&ʼnVXvSKbҌHQ9zl*&G}7Ò3.O/AZUfƲh~A5733bԞ J0 ~FS/X9 Wu d^Ŀm 0`%M!j_@V9|j-I S Z5%IU6/ ' .d+ƼM]gg钏zHBfxO! 2 B3G0UU%کi3G P(ߣYi4O>qx~ B…9 %DJIw+͆tn*`B;r6L[}i1wDcEjǧ25Mf\ĕ $dA~\ȡgT߳x[B)6$CHIK!|hٮrB@"-r{@A14 6), !qGJs><->3o;Gr\@[mY.6I_{hH'-(sZ ؉1YA1g:~7 ;OJ!OdOZ'ɶ YZ