dbus-1-1.12.2-150100.8.14.1<>,`cG2p9|2V=ýB#B}G/FK3?GPu+y{4c3Gj+32TYl"P2A$x%misƳYtm65 ݜ< g, ljLѸZmNHQ-Kr}af2T( g$+PN/q)eێ-1E:DZIöTs(ygЎ,_oW/TW]n3^Ug*&u'ƷLf >J?d   7 'DJR gx== B= = = #= $=%=' =(D(h=)\)*,o(,7,8- ,9-,:0,=>?@CFG=H=I=XY \`=]T=^bcd.e3f6l8uL=v@w=x=yNz 0blpvCdbus-11.12.2150100.8.14.1D-Bus Message Bus SystemD-Bus is a message bus system, a simple way for applications to talk to one another. D-Bus supplies both a system daemon and a per-user-login-session daemon. Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon).cG2cabernet_SUSE Linux Enterprise 15SUSE LLC GPL-2.0-or-later OR AFL-2.1https://www.suse.com/System/Daemonshttp://dbus.freedesktop.org/linuxppc64legetent group messagebus >/dev/null || \ /usr/sbin/groupadd -r messagebus getent passwd messagebus >/dev/null || \ /usr/sbin/useradd -r -s /usr/bin/false -c "User for D-Bus" -d /run/dbus -g messagebus messagebus 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 dbus.service dbus.socket ; 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 # Lines below are temporary code to disable service restart on update sflees@suse.de boo#1020301 # These are potentially not needed on non tumbleweed systems where updates while running a desktop are not supported. # This seems likely to only effect the last version of tumbleweed where the service files were added and can probably be # removed reletavly soon. # Get the current version if [ "$FIRST_ARG" -gt 1 ]; then CURRENT_VER=$(/usr/bin/dbus-daemon --version 2>/dev/null| sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1) # If the current version is or less then 1.10.2 where this change was added then migration needs to be run # The following line will return 1.10.2 if its newer then the current version TEST_VER=$(printf "1.10.2\n$CURRENT_VER" | sort -Vr | head -1) if [ "$TEST_VER" = "1.10.12" ]; then if [ -f /etc/sysconfig/services ]; then cp -a /etc/sysconfig/services /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 else touch /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 fi cat >>/etc/sysconfig/services < /dev/null if [ $? ]; then rm -f /var/lib/dbus/machine-id fi fi if [ ! -L /var/lib/dbus/machine-id ]; then mkdir -p /var/lib/dbus/ ln -s /etc/machine-id /var/lib/dbus/machine-id fi /sbin/ldconfig if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/lib/dbus-1/dbus-daemon-launch-helper fi /usr/sbin/update-alternatives --install /usr/bin/dbus-launch dbus-launch /usr/bin/dbus-launch.nox11 10 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 dbus.service dbus.socket ; 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 [ -z "${TRANSACTIONAL_UPDATE}" -a -x /usr/bin/systemd-tmpfiles ] && /usr/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/dbus.conf || :if [ "$1" = 0 ] ; then /usr/sbin/update-alternatives --remove dbus-launch /usr/bin/dbus-launch.nox11 fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable dbus.service dbus.socket || : ( 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 dbus.service dbus.socket ) || : fi# immediately restarting the dbus service causes issues, As such wait for the next reboot to restart export DISABLE_RESTART_ON_UPDATE=yes test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in dbus.service dbus.socket ; do sysv_service="${service%.*}" rm "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart dbus.service dbus.socket ) || : fi fi+|FA H@      ` fh FW5@:q1\AAAAAA聤AAAA큤A큤AcG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG.cG,cG,cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG-cG,cG,cG,cG,cG,cG,cG,cG,cG,cG,cG,cG,cG-cG,cG,cG.YjYjZ YjcG.YjcG-cG-cG-cG-cG-cG-cG-cG-cG-cG,cG.9e984094dfb1060dd844d32e216d47929afa37e752daad68f31b006d4ee1b11b2218b9313dc6d2e07d85751f318124cc5138787358ae1039703321cf6b35602aa6f50dc70ef082a110dcdb164579cd2af221b90226c5e0aca237edcad98a1c2681388a30eb69e79cdfa3c8eae3aa9478441c6471bcf3e302b91ffe099954ce3407324d1ea61367d681a6fb24f7c8d96230317837743d5cdf076c93ab105e56852a0b1b4df6ddaf3a3e1949c3cd6425a65eadefec650e3a8cde498edef85b72509178c24f15a86785e5de8897fa63f39f112f023985ec10b4e829f13f87964ded1898758fcc15f005129585cd06a0ccacefe80166e6afc13071551081692d925e6c2728a3bbbac27c74f4062f9d63267db9739dac0e1da3d862ace4802bbe1eb569e73b13edc76078c9dc5b2d3df87fc6e7434e3a2a77a1a7f91acfb90bb5e5db2fc4cd6800c10fb3ccadedb82c1670e0cad20614a19866246762432f343b4b7533d5a505cbd7f348af8dbf5dc27bd9fd52b118764029c7ef76c10f0e21cdb67fdf54f2e8620527a92491bb4efd177f1b4aace3c56876fdbec433c1dfacca32f80f2e827b4c146d8fc7c0cfb5348056916e6c2b057ef40d77d55320472bbacccae05359bbdc083b8db2b49542b26429166b5e13367a63668a4e8ff8a1b496f7ae19d7b51e1e6da255346ac6acbf95627baf14c324e84ee841d90fab98bcc0e9942b7ac7357065180d1c2f3f00c11d17dadd31cdc3d7e59c623eb733beb3e50cef8d6c76ba6b7eaba0c987ab294f3534f3603dc5717349271cef7f46e7c530727abc7f3e09dfbd851b91b2b70d62730ce4e46323718ad35d635011689940ef6f6c206f009ddcf909422f3651c687b4623a5780fb7486c6d650e5332f57c00d6be118938a267987dee9ef442cdb9a5cba6d1e7303be93b0013b0948f20831921e5222ad2317b7040e0aca41b5c9a04141aaf20143e15072eb19394248eb5f5e5a19e2584de5acbe9ef4a792e39d9141c3a2b60fb592bf4d7c27cedd7bf8d201f4c2484db3de366500912c63d834154173c7886e7ded484d4fe1dde4b62f6d30b59b02757b6a8cba77f6273f07848aa1a81cdd02d0aaa0f86d3c73f2ecf5488531760e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1e7df1afa9b3053ecea02387bc7078dc6ccb9741a7c7187857c8ff81ed2c1092fa8d4b6dd65f3ca4b45dabf24401bc95f632d394fe6de9d8a383cfdd1d6a4c18eb50d36351c097a51f55797cc823d0edb35a265de42c22dafb334847277b82e27f9b01aa2ecdaaef35f680549ec69dea19087e76f4e0424b0d3cb160338f5364f2b0fe5198af539a4594bdc36b96139ea1014f04aa850bd6731f5c05d5b88ba2124a6d3cc397fd4e5e27b19634246dda79f3f536b05818fc9d980e77ac85275ff91d07398c4b08a2f4a79f28559aabda16eeaec4a3b3413384abd5511fd2c431497d07cb7a8f58397a3edb3e3a3aaa0558d6d1fee848cf4f6e85f70e5cf77e1d4166f6a343877a2828be53aa45c9681b035c3a30d72663acb0c86f1f13608d28b/usr/bin/dbus-cleanup-sockets/usr/bin/dbus-daemon/usr/bin/dbus-monitor/usr/bin/dbus-send/usr/bin/dbus-test-tool/usr/bin/dbus-update-activation-environment/usr/bin/dbus-uuidgen/etc/alternatives/dbus-launch../dbus.service../dbus.socket../dbus.socketservice@@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmessagebusrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootdbus-1-1.12.2-150100.8.14.1.src.rpmconfig(dbus-1)dbus-1dbus-1(ppc-64)dbus-launch@  !@@@@@@@@@@@@@    /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(dbus-1)libaudit.so.1()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libcap-ng.so.0()(64bit)libdbus-1-3libdbus-1.so.3()(64bit)libdbus-1.so.3(LIBDBUS_1_3)(64bit)libdbus-1.so.3(LIBDBUS_PRIVATE_1.12.2)(64bit)libexpat.so.1()(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)libselinux.so.1()(64bit)libsystemd.so.0()(64bit)libsystemd.so.0(LIBSYSTEMD_209)(64bit)permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowupdate-alternativesupdate-alternatives1.12.2-150100.8.14.11.12.23.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /usr/lib/dbus-1/dbus-daemon-launch-helper 1>&2cG`#@`.`@]:\=@\ and rules in dbus-daemon configuration can now include send_broadcast="true", send_broadcast="false", max_unix_fds="N", min_unix_fds="N" (for some integer N). See the release notes for 1.11.18. • dbus_try_get_local_machine_id() is like dbus_get_local_machine_id(), but returns a DBusError. • New APIs around DBusMessageIter to simplify cleanup. See the release notes for 1.11.16. • The message bus daemon now implements the standard Introspectable, Peer and Properties interfaces. See the release notes for dbus 1.11.14 and spec version 0.31. • DTDs for introspection XML and bus configuration are installed. • [Unix] A new unix:dir=… address family resembles unix:tmpdir=… but never uses Linux abstract sockets, which is advantageous for containers. On non-Linux it is equivalent to unix:tmpdir=…. See the release notes for dbus 1.11.14 and spec version 0.31. • [Unix] New option "dbus-launch --exit-with-x11". • [Unix] Session managers can create transient .service files in $XDG_RUNTIME_DIR/dbus-1/services. See the release notes for 1.11.12. • [Unix] A sysusers.d snippet can create the messagebus user on-demand. Miscellaneous behaviour changes: • [Unix] The session bus now logs to syslog if it was started by dbus-launch. • [Unix] Internal warnings are logged to syslog if configured. • [Unix] Exceeding an anti-DoS limit is logged to syslog if configured, or to stderr. - Enabled "make check test suite" - Patches removed, fixed upstream * fix-upstream-drop-install-sections-from-user-services.patch * fix-upstream-increase-backlog.patch * fix-upstream-timeout-reset-1.patch * fix-upstream-timeout-reset-2.patch- boo#1027201 dbus-daemon not found - boo#978477 systemd reseting under heavy load * fix-upstream-timeout-reset-1.patch * fix-upstream-timeout-reset-2.patch- boo#1027200 don't generate machine-id in %post systemd will do it on first boot. - swap usage of /bin/false to /usr/bin/false - Use libexecdir=%{_libdir}/dbus-1 rather then /lib/dbus-1- No need to set --libdir anymore now that prefix is /usr/bin, * fixes boo#1047532 - No need to set --bindir, bindir in dbus-1-x11 was incorrect - Other fixes required to properly change prefix - Don't pass --with-initscripts we don't use them anymore.- Update to 1.10.20 * Fixes: + Fix a reference leak when blocking on a pending call on a connection that has been disconnected (fdo#101481, Shin-ichi MORITA) + Don't put timestamps in the Doxygen-generated documentation, for closer-to-reproducible builds (fdo#100692, Simon McVittie) + Avoid an assertion failure when connecting to a semicolon-separated series of addresses, one of which fails (fdo#101257, Simon McVittie) * Documentation: + Update git URIs in HACKING document to sync up with cgit.freedesktop.org (fdo#100715, Simon McVittie)- swap to /usr/bin bsc#1029968 - Add the following fixes from SLE12 * bsc#980928 increase listen() backlog of AF_UNIX sockets to SOMAXCONN fix-upstream-increase-backlog.patch - The following bugs were already fixed but are missing changelog entries * bsc#867256 (No longer applicable) * bsc#916785 (No longer applicable) * bsc#1012564 (Not applicable) * fdo#90004 (Fixed Upstream) - Rename the following patches as a tidy up * dbus-log-deny.patch to feature-suse-log-deny.patch * dbus-do-autolaunch.patch feature-suse-do-autolaunch.patch * 0001-Add-RefuseManualStartStop.patch to feature-suse-refuse-manual-start-stop.patch * 0001-Drop-Install-sections-from-user-services.patch to fix-upstream-drop-install-sections-from-user-services.patch- Update to 1.10.18 * Fixes + Re-order dbus-daemon startup so that on SELinux systems, the thread that reads AVC notifications retains the ability to write to the audit log (fdo#92832, Debian #857660; Laurent Bigonville) + Fix a harmless read overflow and some memory leaks in a unit test (fdo#100568, Philip Withnall)- Update to 1.10.16 Fixes: * Prevent symlink attacks in the nonce-tcp transport on Unix that could allow an attacker to overwrite a file named "nonce", in a directory that the user running dbus-daemon can write, with a random value known only to the user running dbus-daemon. This is unlikely to be exploitable in practice, particularly since the nonce-tcp transport is really only useful on Windows. (fd.o #99828, Simon McVittie) (bsc#1025950) * Avoid symlink attacks in the "embedded tests", which are not enabled by default and should never be enabled in production builds of dbus. (fd.o #99828, Simon McVittie) (bsc#1025951) * Work around an undesired effect of the fix for CVE-2014-3637 (fd.o #80559), in which processes that frequently send fds, such as logind during a flood of new PAM sessions, can get disconnected for continuously having at least one fd "in flight" for too long; dbus-daemon interprets that as a potential denial of service attack. The workaround is to disable that check for uid 0 process such as logind, with a message in the system log. The bug remains open while we look for a more general solution. (fd.o #95263, LP#1591411; Simon McVittie) * Don't run the test test-dbus-launch-x11.sh if X11 autolaunching was disabled at compile time. That test is not expected to work in that configuration. (fd.o #98665, Simon McVittie) Enhancements: * Do the Travis-CI build in Docker containers for Ubuntu LTS, Debian stable and Debian testing in addition to the older Ubuntu that is the default (fd.o #98889, Simon McVittie)- A note for scripts bsc#974092 (remove sysvinit script) is already fixed here.- Don't restart dbus on upgrade - Includes temporary work around for last version boo#1020301 - Add 0001-Add-RefuseManualStartStop.patch don't allow users to Manually start or stop dbus.- Add systemd unit files to start session bus via systemd - Added patch: * 0001-Drop-Install-sections-from-user-services.patch + remove install section from socket unit because it does not need to be enabled explicitly (see fdo#92402)- Requires systemd >= 209 and drop the compatibility pkg-config names that don't exist in newer systemd- Drop useless --with-pic which is only for static libs - Abort installation when user/group creation fails - Avoid calling %service_* more than once- Build the dbus-1 package without X in the dbus-1.spec - Move the dbus-launch.nox11 to the dbus-1 package and install it by default - Build devel-doc package in dbus-1.spec and don't build any documentation in dbus-1-x11 - Make dbus-1-x11 package contains only the X11-enabled dbus-launch - Fix some rpmlint warnings - Delete the dbus-1-x11.spec.in file, since maintaining it is more complicated then keeping in sync a dbus-1-x11.spec file of less then 120 lines- Create new subpackage: dbus-1-nox11 - contains dbus-launch without x11 support - Rename dbus-launch to dbus-launch.x11 - use update-alternatives to switch between dbus-launch with and without X11 - Solves [bnc#934214]- Update to 1.10.12 * Security fixes: + Do not treat ActivationFailure message received from root-owned systemd name as a format string. In principle this is a security vulnerability, but we do not believe it is exploitable in practice, because only privileged processes can own the org.freedesktop.systemd1 bus name, and systemd does not appear to send activation failures that contain "%". Please note that this probably *was* exploitable in dbus versions older than 1.6.30, 1.8.16 and 1.9.10 due to a missing check which at the time was only thought to be a denial of service vulnerability (CVE-2015-0245). If you are still running one of those versions, patch or upgrade immediately. (fdo#98157, bsc#1003898, Simon McVittie) * Other fixes: + Harden dbus-daemon against malicious or incorrect ActivationFailure messages by rejecting them if they do not come from a privileged process, or if systemd activation is not enabled (fdo#98157, Simon McVittie) + Avoid undefined behaviour when setting reply serial number without going via union DBusBasicValue (fdo#98035, Marc Mutz) + autogen.sh: fail cleanly if autoconf fails (Simon McVittie)- Moved dbus-run-session from dbus-1-x11 to dbus-1 (bdo#836296)- Update to 1.10.10 * Fixes: + On Linux, when dbus-daemon is run with reduced susceptibility to the OOM killer (typically via systemd), do not let child processes inherit that setting (fdo#32851; Kimmo Hämäläinen, WaLyong Cho) + Output valid shell syntax in ~/.dbus/session-bus/ if the bus address contains a semicolon (fdo#94746, Thiago Macieira) + Fix memory leaks and thread safety in subprocess starting on Windows (fdo#95191, Ralf Habacker) + Do not require systemd to have a service file if using it for activation (fdo#93194; Simon McVittie; backport from 1.11.0) + Stop test-dbus-daemon incorrectly failing on platforms that cannot discover the process ID of clients (fdo#96653, Руслан Ижбулатов) + In tests that exercise correct handling of crashing D-Bus services, suppress Windows crash handler (fdo#95155; Yiyang Fei, Ralf Habacker) + Explicitly check for stdint.h (Ioan-Adrian Ratiu) + update-activation-environment: produce better diagnostics on error (fdo#96653, Simon McVittie) + Don't fail the build with an unused const variable warning under gcc 6 (fdo#97282; Thomas Zimmermann, Simon McVittie) + Merge dbus-1.10-ci branch, containing backports from 1.11.0 in build/test code to support continuous integration (fdo#93194, Simon McVittie) - Avoid -Wunused-label when compiling with libselinux but no libaudit - In development builds, allow OOM tests to be disabled as documented - Accept and ignore the --tap argument in all "embedded tests", and run all automated tests with that argument for better diagnostics - Fix the systemd activation test under CMake by installing the required files - In Automake, fix shell syntax for installcheck-local with no DESTDIR - In Automake, don't try to run manual tests in installcheck - In CMake, don't run manual-tcp test as an automated test - Add travis-ci.org build machinery- Update to 1.10.8 * Fixes: + Enable "large file support" on systems where it exists: dbus-daemon is not expected to open large files, but it might need to stat files that happen to have large inode numbers (fdo#93545, Hongxu Jia) + Eliminate padding inside DBusMessageIter on 64-bit platforms, which might result in a pedantic C compiler not copying the entire contents of a DBusMessageIter; statically assert that this is not an ABI change in practice (fdo#94136, Simon McVittie) + Document dbus-test-tool echo --sleep-ms=N instead of incorrect --sleep=N (fdo#94244, Dmitri Iouchtchenko) + Correctly report test failures in C tests from run-test.sh (fdo#93379; amit tewari, Simon McVittie) + When tests are enabled, run all the marshal-validate tests, not just the even-numbered ones (fdo#93908, Nick Lewycky) + Correct the expected error from one marshal-validate test, which was previously not run due to the above bug(fdo#93908, Simon McVittie)- Update to 1.10.6 * Fixes: - On Unix when running tests as root, don't assert that root and the dbus-daemon user can still call UpdateActivationEnvironment; assert that those privileged users can call BecomeMonitor instead (fdo#93036, Simon McVittie) - On Windows, fix a memory leak in the autolaunch transport (fdo#92899, Simon McVittie) - On Windows Autotools builds, don't run tests that rely on dbus-run-session and other Unix-specifics (fdo#92899, Simon McVittie)- Update to 1.10.4 * Changes between 1.10.2 and 1.10.4 - Enhancements: + GetConnectionCredentials, GetConnectionUnixUser and GetConnectionUnixProcessID with argument "org.freedesktop.DBus" will now return details of the dbus-daemon itself. This is required to be able to call SetEnvironment on systemd. (fdo#92857, Jan Alexander Steffens) - Fixes: + Make UpdateActivationEnvironment always fail with AccessDenied on the system bus. Previously, it was possible to configure it so root could call it, but the environment variables were not actually used, because the launch helper would discard them. (fdo#92857, Jan Alexander Steffens) + On Unix with --systemd-activation on a user bus, make UpdateActivationEnvironment pass on its arguments to systemd's SetEnvironment method, solving inconsistency between the environments used for traditional activation and systemd user-service activation. (fdo#92857, Jan Alexander Steffens) + On Windows, don't crash if or --syslog is used (fdo#92538, Ralf Habacker) + On Windows, fix a memory leak when setting a DBusError from a Windows error (fdo#92721, Ralf Habacker) + On Windows, don't go into infinite recursion if we abort the process with backtraces enabled (fdo#92721, Ralf Habacker) + Fix various failing tests, variously on Windows and cross-platform: . don't test system.conf features (users, groups) that only make sense on the system bus, which is not supported on Windows . don't call _dbus_warn() when we skip a test, since it is fatal . fix computation of expected . when running TAP tests, translate newlines to Unix format, fixing cross-compiled tests under Wine on Linux . don't stress-test refcounting under Wine, where it's really slow . stop assuming that a message looped-back to the test will be received immediately . skip some system bus tests on Windows since they make no sense there (fdo#92538, fdo#92721; Ralf Habacker, Simon McVittie) * Changes between 1.10.0 and 1.10.2 - Fixes: + Correct error handling for activation: if there are multiple attempts to activate the same service and it fails immediately, the first attempt would get the correct reply, but the rest would time out. We now send the same error reply to each attempt. (fdo#92200, Simon McVittie) + If BecomeMonitor is called with a syntactically invalid match rule, don't crash with an assertion failure, fixing a regression in 1.9.10. This was not exploitable as a denial of service, because the check for a privileged user is done first. (fdo#92298, Simon McVittie) + On Linux with --enable-user-session, add the bus address to the environment of systemd services for better backwards compatibility (fdo#92612, Jan Alexander Steffens) + On Windows, fix the logic for replacing the installation prefix in service files' Exec lines (fdo#83539; Milan Crha, Simon McVittie) + On Windows, if installed in the conventional layout with ${prefix}/etc and ${prefix}/share, use relative paths between bus configuration files to allow the tree to be relocated (fdo#92028, Simon McVittie) + Make more of the regression tests pass in Windows builds (fdo#92538, Simon McVittie) * Summary of major changes since 1.8.0: - The basic setup for the well-known system and session buses is now done in read-only files in ${datadir} (normally /usr/share). - AppArmor integration has been merged, with features similar to the pre-existing SELinux integration. It is mostly compatible with the patches previously shipped by Ubuntu, with one significant change: Ubuntu's GetConnectionAppArmorSecurityContext method has been superseded by GetConnectionCredentials and was not included. - The --enable-user-session configure option can be enabled by OS integrators intending to use systemd to provide a session bus per user (in effect, treating all concurrent graphical and non-graphical login sessions as one large session). - The new listenable address mode "unix:runtime=yes" listens on $XDG_RUNTIME_DIR/bus, the same AF_UNIX socket used by the systemd user session. libdbus and "dbus-launch --autolaunch" will connect to this address by default. GLib >= 2.45.3 and sd-bus >= 209 have a matching default. - All executables are now dynamically linked to libdbus-1. Previously, some executables, most notably dbus-daemon, were statically linked to a specially-compiled variant of libdbus. This results in various private functions in the _dbus namespace being exposed by the shared library. These are not API, and must not be used outside the dbus source tree. - On platforms with ELF symbol versioning, all public symbols are versioned LIBDBUS_1_3. * New bus APIs: - org.freedesktop.DBus.GetConnectionCredentials returns LinuxSecurityLabel where supported - org.freedesktop.DBus.Monitoring interface (privileged) . BecomeMonitor method supersedes match rules with eavesdrop=true, which are now deprecated - org.freedesktop.DBus.Stats interface (semi-privileged) . now enabled by default . new GetAllMatchRules method - org.freedesktop.DBus.Verbose interface (not normally compiled) . toggles the effect of DBUS_VERBOSE * New executables: - dbus-test-tool - dbus-update-activation-environment * New optional dependencies: - The systemd: pseudo-transport requires libsystemd or libsd-daemon - Complete documentation requires Ducktype and yelp-tools - Full test coverage requires GLib 2.36 and PyGI - AppArmor integration requires libapparmor and optionally libaudit * Dependencies removed: - dbus-glib- Update to 1.8.20: * Fixes: - Fix a memory leak when GetConnectionCredentials() succeeds (fdo#91008, Jacek Bukarewicz) - Ensure that dbus-monitor does not reply to messages intended for others (fdo#90952, Simon McVittie)- Account for openSUSE:Leap in the conditional for chosing right local state directories (boo#941352)- Move common-begin sections around to make pre_checkin work again - Unconditionally build with systemd features, there are no cycles now, systemd no longer buildrequires dbus-1-devel- Update to 1.8.18: * Security hardening: - On Unix platforms, change the default configuration for the session bus to only allow EXTERNAL authentication (secure kernel-mediated credentials-passing), as was already done for the system bus. This avoids falling back to DBUS_COOKIE_SHA1, which relies on strongly unpredictable pseudo-random numbers; under certain circumstances (/dev/urandom unreadable or malloc() returns NULL), dbus could fall back to using rand(), which does not have the desired unpredictability. The fallback to rand() has not been changed in this stable-branch since the necessary code changes for correct error-handling are rather intrusive. If you are using D-Bus over the (unencrypted!) tcp: or nonce-tcp: transport, in conjunction with DBUS_COOKIE_SHA1 and a shared home directory using NFS or similar, you will need to reconfigure the session bus to accept DBUS_COOKIE_SHA1 by commenting out the element. This configuration is not recommended. (bsc#931066, fdo#90414, Simon McVittie) * Other fixes: - Add locking to DBusCounter's reference count and notify function (fdo#89297, Adrian Szyndela) - Ensure that DBusTransport's reference count is protected by the corresponding DBusConnection's lock (fdo#90312, Adrian Szyndela) - On Windows, listen on the same port for IPv4 and IPv6 (previously broken by an endianness mistake), and fix a failure to bind TCP sockets on approximately 1 attempt in 256 (fdo#87999, Ralf Habacker) - Correctly release DBusServer mutex before early-return if we run out of memory while copying authentication mechanisms (fdo#90021, Ralf Habacker) - Correctly initialize all fields of DBusTypeReader (fdo#90021, Ralf Habacker, Simon McVittie) - Fix some missing \n in verbose (debug log) messages (fdo#90021, Ralf Habacker) - Clean up some memory leaks in test code (fdo#90021, Ralf Habacker)- Sync changes from SLE12 conditionalized for suse_version <= 1315- Update to 1.8.16: * Security fixes: - Do not allow non-uid-0 processes to send forged ActivationFailure messages. On Linux systems with systemd activation, this would allow a local denial of service: unprivileged processes could flood the bus with these forged messages, winning the race with the actual service activation and causing an error reply to be sent back when service auto-activation was requested. This does not prevent the real service from being started, so it only works while the real service is not running. (CVE-2015-0245, fdo#88811, bnc#916343; Simon McVittie) * Other fixes: - fix a Windows build failure (fdo#88009, Ralf Habacker) - on Windows, allow up to 8K connections to the dbus-daemon instead of the previous 64, completing a previous fix which only worked under Autotools (fdo#71297, Ralf Habacker)- Update to 1.8.14 * Security hardening: - Do not allow calls to UpdateActivationEnvironment from uids other than the uid of the dbus-daemon. If a system service installs unsafe security policy rules that allow arbitrary method calls (such as CVE-2014-8148) then this prevents memory consumption and possible privilege escalation via UpdateActivationEnvironment. We believe that in practice, privilege escalation here is avoided by dbus-daemon-launch-helper sanitizing its environment; but it seems better to be safe. - Do not allow calls to UpdateActivationEnvironment or the Stats interface on object paths other than /org/freedesktop/DBus. Some system services install unsafe security policy rules that allow arbitrary method calls to any destination, method and interface with a specified object path; while less bad than allowing arbitrary method calls, these security policies are still harmful, since dbus-daemon normally offers the same API on all object paths and other system services might behave similarly. * Other fixes: - Add missing initialization so GetExtendedTcpTable doesn't crash on Windows Vista SP0 (fdo#77008, Ilya A. Tkachenko)- Update to 1.8.12: * Fixes: - Partially revert the CVE-2014-3639 patch by increasing the default authentication timeout on the system bus from 5 seconds back to 30 seconds, since this has been reported to cause boot regressions for some users, mostly with parallel boot (systemd) on slower hardware. On fast systems where local users are considered particularly hostile, administrators can return to the 5 second timeout (or any other value in milliseconds) by saving this as /etc/dbus-1/system-local.conf: 5000 (fdo#86431, Simon McVittie) - Add a message in syslog/the Journal when the auth_timeout is exceeded (fdo#86431, Simon McVittie) - Send back an AccessDenied error if the addressed recipient is not allowed to receive a message (and in builds with assertions enabled, don't assert under the same conditions). (fdo#86194, Jacek Bukarewicz)- Update to 1.8.10: * Security fixes: - Increase dbus-daemon's RLIMIT_NOFILE rlimit to 65536 so that CVE-2014-3636 part A cannot exhaust the system bus' file descriptors, completing the incomplete fix in 1.8.8. (CVE-2014-7824, fdo#85105; Simon McVittie, Alban Crequy)/bin/sh/bin/sh/bin/sh/bin/sh/bin/shcabernet 1665646642  !"#$%&'()*+,-./0123456789:;<=1.12.2-150100.8.14.11.12.2-150100.8.14.11.12.2-150100.8.14.1 dbus-cleanup-socketsdbus-daemondbus-monitordbus-senddbus-test-tooldbus-update-activation-environmentdbus-uuidgenConsoleKitrun-session.ddbus_at_console.ckdbus-launchsession.confsystem.confdbus-1system-servicesdbusdbus-cleanup-socketsdbus-daemondbus-launchdbus-launch.nox11dbus-monitordbus-run-sessiondbus-senddbus-test-tooldbus-update-activation-environmentdbus-uuidgendbus-1dbus-daemon-launch-helperdbus.servicedbus.socketmulti-user.target.wantsdbus.servicesockets.target.wantsdbus.socketdbus.servicedbus.socketsockets.target.wantsdbus.socketdbus.confdbus.confrcdbussession.confsystem.confdbus-1AUTHORSHACKINGNEWSREADMEdbus-1COPYINGdbus-cleanup-sockets.1.gzdbus-daemon.1.gzdbus-launch.1.gzdbus-monitor.1.gzdbus-run-session.1.gzdbus-send.1.gzdbus-test-tool.1.gzdbus-update-activation-environment.1.gzdbus-uuidgen.1.gzdbusmachine-id/bin//etc//etc/ConsoleKit//etc/ConsoleKit/run-session.d//etc/alternatives//etc/dbus-1//lib//lib/dbus-1//run//usr/bin//usr/lib//usr/lib/dbus-1//usr/lib/systemd/system//usr/lib/systemd/system/multi-user.target.wants//usr/lib/systemd/system/sockets.target.wants//usr/lib/systemd/user//usr/lib/systemd/user/sockets.target.wants//usr/lib/sysusers.d//usr/lib/tmpfiles.d//usr/sbin//usr/share/dbus-1//usr/share/doc/packages//usr/share/doc/packages/dbus-1//usr/share/licenses//usr/share/licenses/dbus-1//usr/share/man/man1//var/lib//var/lib/dbus/-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:26362/SUSE_SLE-15-SP1_Update/a27dfb37049e551bc83ca8970183ec1f-dbus-1.SUSE_SLE-15-SP1_Updatedrpmxz5ppc64le-suse-linux directoryBourne-Again shell script, ASCII text executablecannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-150100.8.14.1.ppc64le/etc/alternatives/dbus-launch' (No such file or directory)exported SGML document, ASCII textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=f0cec44af5de08dbe8b9829fe06255772a7920f6, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9842c221d9493b0f335a3c4a2baaaed067c87c70, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1d95fa56c8089b5c48c4491f9f0b95553a0a9f3e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=78ffa6b392b329cb833b318970079c4ebdd0d3bb, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2659ac2e373ce44797ea282e5c998f07bfefe5bc, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=aa8e803e8efe3c72c5de764dda4ce3ae86f7a973, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=af9b670918360a6844a77aa4acfa489bd2a64981, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=666e43b5e28b695d4a4289c754e118c4c47d93f0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=abe384b0629f8be8c4af93ff83293af9ccc7b6e0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=040ae89c94b4c2ba087921dd92906b148d62dcc0, for GNU/Linux 3.10.0, strippedASCII textUTF-8 Unicode texttroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)cannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-150100.8.14.1.ppc64le/var/lib/dbus/machine-id' (No such file or directory)&.6=D  RR R RRR RRR RRRRR RR RRR R RRR RRRR R RRR RRR R RRR RRRR R RRR RR RRR RRR RR RR RRR RRR R RRR RRRRR R RRRR  Ṷ̆5# See comments in pre if [ -s "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1" ]; then mv -f /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 /etc/sysconfig/services elif [ -e "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1" ]; then rm -f /etc/sysconfig/services fi/bin/shutf-82ba165dabcfc09624654da2da6bd1f73da0be7112b7b237e0672adb88e7704b2?`7zXZ !t/ /]"k%U4h/_b63"{Wm1ռy*W"Ҁzֺ%*[蚝`,-lZlb$'vY+]#X R4kBA`1qƴ6%+3ye+v@fD(58~th>N*ڤز*LlAoOC=pL_nV Ŧ٩ɾ|&JHAHKS&hգpkpB6iLa?QQ m[,ܢ j:-TTV*q!л&V|[SXUlU#n_؎-Q_da`?z槵 2j.ORf 8a+uS֦c_/l\+"$>NS;_󤞄O۠tR[Z(n~kI‚|d6dHe~|‹{(A/cBFoLqk)6}2d@a_z a漵SRlCC sQo,hU$:BA"uyvQ6 :W%-bU١ JgSn :\۸&V]bH[!z" OG n}!mHi1z<@gCb Z[LT3$߿/_KeyUCD8Ff-QieYoWicgl鯮w6H"O9ŶK^0 "4EARa8V$ x_]zBn@#ԩ&#!vᡛRkS!EQMM 6ʚd](0:i"v-+GOWZG^!']lqx?R΍n\={ AVH}|E!q|/HYք{PoY Uog\0׉JYW 'Q\g!i.)G|9sBN,n9>U#BGp7m{_ j*% J]\S2;`-4&Z7Y? /V)HSaTŋ htW\gbF@r3ƶ]h0쎹zLؿF>!-BfV At݋BflD7BSxXAz}W3nM24%cZdR$))n9oV$UaxՍ01?mПAJLB[9490G|8E\q7~Jf'&j;K!CzeGfO\x~7WdXghY%TPEc/$N a >;>J*_6Q8<(UbdGS|& ѻ&0;dJ~ ?~*~T>Xe QYfAEgVykXDn& HVAHߥ$|Th.SngMEa@K M_[=SNN?ya}uA]NXujG' VRT&ZGNmxY]'j˅'$KAs,C8vMO%;mcYj9vT7 Y6d4FR%5ol>$aӁI $5GXrܡDtįj zwd4;x~bgDk:skYBG̶I?Aubj4Ђ곂0u UPu T R BgkDW]Lп:VQIB*Rr[V>8;NWS|&yk^T~9SbdwKw3.}z8q$6- a;%C$eIDPio}GR_ꃻyӌpg[Z]R0`91lM^Fj)z(כjIk2Lkֵ4Yњύezq)WFS.>T<aYHfk }au7 ti)_ JȠRIqQ>CUTBox*P i׺ hT_~p]0 ZC.Eg~²ѣ^ћQ:%J-ָ3iՕih Ki!Fl!V۝x{z ЂuwXdQiC/CA|l-Gyi@-]*3u<o5x=HRS@Cz3 ˜6OB1v-w1ce|o4ɕ}U:5{|VZ.-ŦO)e7[M=ޡVN=9%!z"wTm7icք!X=,J%$"bHGtAM?%a!P)MrmED$%ʹPe,$;^$cnF-V{d=ZHk0RltEwC+fXFi43K#gf,ﰩ &QoP).%qFOlR߁O <ݻIHO v4M #;N=hyoW;:hxW7s"x %Yhz->g_)ѻl >*쓊(=. @w@H#gt Wޕٸ&8ۙFu+kcwfK;-~s򕠧s~`(RP(.d~a[>Gh)A(PYBiD ג^5 qؿC}V^ܻ&ֲQrM<'.q]'ka _,Ju2Gˢ`yvسI ]̊sӖ,M*Z9^5U.i+ϸ796DHoBc&M<W]y}ƣA#Ί ¬x6~̓ ѳ%=W~0brw{-_Pai 'bL=;#O6hXŇ?GP(Dt D&Yj&ha+j^Plu6!US}j} @љR /.Ҙs|lCRpT~äb$5i\'a%WZZ_X J/5i09u歴jM=0_oOFqw82τWz,uOU"`db?^@ DLReD9 dXms,%@efZA[B3>]i1~Oɼd9XdjcX ů,! "t#oλ(ŌQ bni Et4I, _Vb^=Ӿr_`ð\c`%bzp ɍVb [8沭7t;T85GrPL!Jk^$YI9Y){W#WGYjYq]æɭ .yXv_r@~5g$,GZkoƉȻ M*uֻS+өiWr58VInjZ `+ >}A1zl y֦~p( MW&+3\Hqρ͂+jkED&ԋ. /K-?U]=OXyhc u35vK5X4rS,ds.B-Lt!$bY+_Յ:9*-G!f; | H7zڅ*J^QN3ŮLjpST$m/^SvՄI ǐ?F sSWr^DAyC'-G}< @Moտ9rȝkt>d}hb[Rќ Q~O{j@Ed7 jrXPO@*K3>1ݺ=^ֲȌTOʭ4BHμ{`~>y_Ӎߵ';VvPL$́Bgj(b1_~ˬIXbX&{*w gYm\bX!c_:DUz1^ \)f6s4O,ڬTT[cUKb@sY3SЃEzY^rc{&w" Z4$ArM4`;t$._!j Ew_lܥ)};'qLd2>ԑ6. Ȩ@]ZIuM ~WV*Ex#L'*tP8 Mժ}:نW ׌ ~)pC4(_}-NͿ(d@:jfifl%~@y+{'bF{ELLĕ)CuJiU3?IP]3S&eYJu+6v 3&F +KX4M7#UnR pFa˨}40M+w9!"p)=x!hx~[ZzQO^H*PKUk~Lu*''koa)\ a)2(ټD,}Rg}`w,HɨlGT;yPX ;jJ#wX%r;[D5bH!ħ+_j=y,^?^llnbV4 e/d?ֱBy:^[fGߍTV"f#þC[M쀥Yk}n_B4ΒQՁ /S˄Np>t# 328hb#vd*{b@#{ʄXʝG9A.GkMe |o?߉"ݕN t^vyyP!rk$ʨRhҌԡl]v&=miLdynɍާKp`^?ЅN|cE,Zѹ Gf]ocVMr.ʐO+ X^NMW SЎ{6 } ~f)m`}[&\d&K[ JA@jpN'*YXʦ:PPȢylZֲS1Rs!`kh+=ت }Dfۖ|t?ՄR\HSFoY@w #H]*p,gQLW59)JM~ pOU'uAJ0WyL]{p{0 %ihRO#P T#P'm`Da:[kSi$zbsW=vҕD<'/qǙ<# EHlgkȊ8u3G9̺4$\K? ש5pUp1LWDPj5M7:{4)ѥ͘BދFgӓ(tsMa!G%I-e-,F<¤uQ6|^WV YaxlKD<Z5(C+ALAhP!Y\^7Da׿6%x HsQPmtwABޙW;O&w6#sUίw sDpl¬F*rcik &`qo5??b+n3buC0GæAE*pj1gkoCj]j/(MeEE|ڭħ|?~De~mV/$m|f!c7 Ų郷`f<(ٳ&֟Da=]!`w(bC} `ҁn%w}D9Ex*Z\?Z|Wp**S݂Ƈ_U\vpYEN :Ē>̓5\XCw`ᚸ[{1N\v) 0BAi ,q2;^_m'_nzĚ]7}X3ib4$dlZ84}#bEKT9WhM8Ϝf7n0.n]&GUPbgsǖ Sq82?F#"@r,6 ^+)-Q{B5"YWBɋb^mtJhzG(+Y1|h?\r1l#No@&_Eͮ55w]w4wI>K. Wwbv=/ՎڥEsӒ_:T|!2VjfŸ-s%A3riSE bwfIt~闵/c{J^gk߂ۇ>^(|BƠ J K1tJ)ס4OA(*)ۇ41.ROIaW#t O2D43 qZw5{zDO:t|n#J-`nGiy6,,&Z'1ӓgTr,V UVI3#dO(Ln;c-bi#TF{=SwoYȋ݊`jIcZV6]C[m; 3&Eׄ^LX+_U `FoM3>\2%v;sbsQYItUvy]KSd#:'h;\lߕY qM&ocM+Ft̃K*j$,`?5UK:I[8%'  QFu =={yYHnDF}Pa)a[oگAR_k\C#( `CZ c5<1}\ ]\ryPk.U׫KJbfH EډQ^OS1?-wm޵MRaɖ%bd %6D3Rȇv ~$3daDn~?@े4Px y'pK3 ֳ$L ]pQȇ wnoMG'ؘ^ׯ*/h* JU:~ .OnʨJ)h%ѐz MXctBAU/sIVA6ݣ'v8Ȑ%y$S{A7Z?F*qP0}?اeox0DN,}J,&#O:%?qiaф$mcৱRhf֋o?`# ab)4u'i qab4,kXW0RW' [ToiJ]|R1WakFȼ ˹!(QXkctgP%!\}p7 'OA (-pL~ p8M](p;M#xYO40}=zC51/rcݻ_'Оwe.YrK,|%[&pU3ܩ1vD#vXtcd}J|%_^cBes23ۤΛV~bg"AD<Ƹi-w 'G>pv re6ӉsSnbx&LjgzGSq|ci; JK; D~ 8R[i?@8rn?gy@igP\MQuF5\A bƽu&R &aQ:i&=ٞW#QEʹTYuS&63 ו*j䛿> j^U 9o5 =?_Iv׾]'ԌuJnM?>ZoĦu@w, % `bh\|_AEkm7)7>%_&F P/ Q!O5$Nű,ۘd򅾧0(іcc`-J~a Â@տ0jUZS{H&y9y"Y HY9r{7L̋?mdM^-YxMlr|j䙅IDt 9k 1L8E/U_Ί [gŠW :yqت†?`޾# hA9Pz/lh-Z] gwLvURf7M|}eCkfKΝ$x͊_vyeXkŞ!_֣j 9oo_f {Z ÙG~QT-ܳ/Ǵ!պpIe+ CQ&i?tk/s/0ɀGï YJ꼩Cǹ?rqAt2˒:aA5ē􉆃@nݪW!Цj.OaՐȖ}|kzd) SfSjH$y@Z>$4 6aSw *%΃v6Fv!4N۾fשPw3 xbGFDsO-G dRXTx(?W(¼Ay\ ?6<3ϬrqzkԂ$`JuD/Y\5Xn/8 R1JmNiPny&e* Q_}2Oud%`.b|65M_a{ T Mus s8_uqL,aE,:CX͔݉8+['8vZ8;@7zhpde+RWdy+INn+C l8b.u~ \S-2!K`lS_Nx(80?B[ pok eDŽec'q!V{sRƜuX&7RVAt'+*[Fs|Ev#;kd mRaP? p9BKUX}Y62KibиYWuT,.V˶vd2Vp6Yv9 \ ́_X1|i^GK.YRu 㤽o!WN(p[\ڎ+cZ#Vm]9JTZ! ·']۽aC0z=zu/Y dTs=\A3=M MT=%ݕа)lRUT}쾉3lϖw35~HQhgDǦ+xۇk'[@9oCaգN^Orim6P`oD & 9qDN6NoZ/7'\(scLڋpti~cvͼ+Lҍ:}{U1OҚi݁{b͠>fأx&U}h&C"IqjA)yWryk{1hrU; ַ,+=,mM=y  l }⶷|wUZ,xe(TȱYl=<\h#@&@PϷXeKpg@j;I J:#?  YoC)`N֬q$r(oA ]҃և3:=E&w-4zzW6D^U0S! z}D }f45 1g~t>z0:wmi$.ɴ}RͰ d&q,![g,30rgLoKw Jɒ.? .JeZ(M ,^1C7- %r6NPxF O"ρ=DhB\x799@-*pO>sTK'd8u\Rz`@\9.(KspFZG34\;h¦WvHsI()M.欻GnQ5; <J\ujgY/8cUsz6ͣ&TG*l_zujV}fxWu;5'(Z38aSCɻc/ms߉CKgN\i1K_#" O:k=7[` ܙP fuuI#+n9$fFY78xIGs"eJj=+;(bܥ7Zsdd+D: M6GŅӍ}-ok! 1g9O T ~ yefgōd,{;Ş\~1sA,$=>2eZ`4N40Q:G/ 6(h H~\lVH\L1լQTi`"[Qs& $D)PM`_J(·QglJZfk,Qhzfm%#uoT^wo'nRR·ͅn?侮L*,'GH_z\7Gx)$t>nEМRL{Ç[e7v ! U3HuɄwy_ Bq{ #2tU[*Ð?ȊfAٽdA= #JFA͜L)˩Fq cPp~¹}ߢzR*&T,?Y*AݡZ5L}_ai/cn-lxţڪ6g!}X(.3hxtmWi\_V"38"Plt+{m4IRUAb[4i"K1bHS ~taEi]gvcWCHu}ѕA\DMKJ«ctI1J%Iqż)K6^ualڵ/񉅭=>V"Zy iϱ5m8U">5Wʗv-l)lDjE8j]9袤]l< p"w_JX U(%h Ejy1-pB@SiᾸucq#$X]ǦLZ-Ugێx*.,;C'Ӱ0*eLJ\8PR4Yߒ ݆5\5rϘsN5qWf}#e^tO,mp\807HC~F.mjjh$ ݫƤm6DFZ.?箃_0@.#lgD&%6QNw{=\ m'd+Er%*%(Qe}F6]py4l|9>s<]sgE F)M ة8$%T O & wn.}SV(lkPB E8Gd8~rV eib=Jxxu"N~~'~[5 Q0Eo=e @/z_8y֤;:))FزkT/D \4cx+QNHCJKLyܖֆ dv>+Dŷx!n&KȈM6TcQW,^ng68·:iWG<'B2f<773HETΩn*,C)Arjnc:NiLg4BUҍ.Oy`@>5뭩Cj"a\{؃Vv/!9;=z\k <;;IfHˍ=l-v@ܵ2Q5R#w,ma'w-[UBґ4CHd}cw* @5rJ@tC(J!gB +dӴkeOj5$]k2+Ot#q:6Rj/mU*b2e a+$(;!! nq /GEi|h M6r53: \!+Z&?wlͶHEU|Pw*?+Ŋ0-t1ؽ wԦyOgot(Gn\̳=I T˧*+t p񃏳Z g_ ɉ~ЫYm1$-xt1 )M~ iAz:03jg/;Es!_d{P/k-en&:x2u) _v֡N׼ȤjINcG } 78!/E~r&k$/^PsVrIlaSB`&]c笤R)ʳ:# w{:ɟt۞xnj۲(_:fȩƧrnቱW|-bhm9b8HfPvi^26Ԗ} $g75!mli;]CiSH`@pIz^X]k-?vb%EXuaa+u ; mL{"V JՒc'[B,mW̧Vb VAT.7>MV$cߦ;$Ís3^o`J˷GFoZbKBn׵]TA:qp^bIkv~! $T)_. z8[fYR̺B2&1kQ*HM$^jZżfԪo$-ˆR*\P6:sjpkyK(m wԆ ERu %Vqpg6U!sR$6IU"1?U IKGG㉾\3x`ٸc'/:ktZGt;sbYPiĎ l[r+L%Lo%8N𬒿?(Z+kv-<hk<2hrUx4UX;\p CF.!wQh[)V!v);u 03qeq{ǘ0ܖ&JY!4/:f ݊ QXo3a}dL'L?]lN^v:lHЮNb#JFZ6U;Zf&Yk!@9FL1=sP0`cPMF/ đH)8,q.poq;QSal,&eYfYR$p${] fU)RzyϺm3I/,_I9/~a8k$܃@QcW}5%#;G-> 99]yސu=z2/~ =Ϗ nBs DziG=f_.+(dblrW(?]P G>.1B HD9ٚP};Xle(nNqwqzcZrX%XuUP6\wVB\GCqe䦴% qȉ=n?b *$)t@ vEc$V ݓ6XE͒T.y;Y\dV{M"}:i,+mkIN>݊㱿e;( {KڼC-˺:Q)=OzЗpI-t_"t#oj7n@+Ҁ#͞a2 MGUcU:y3FO x{/Uky䲫-47c 5xvԝ޷ %-A5c e0h|]Sod" .צ15IJ`9k'=|ʡWuBHu#1Ȥ ;Xe::c)mSEkL>}HE`ݳ@F g`zd#`1 F 3?R<$ţL9KdqZ|is B+m\57+ˠ9Z2بV̧ sg["O>0~%p? ^JG{kAuJ>Q- ״ش$CNA,l,Gf?y `}íp~BڒIGq)r%@"42{lT܍5q"Sl!& N9gMoʧM;yo8&4 ̯L; QMD$3rG Of}ҏ)߮JT&ᨋJCT#d8sC q[Ú_Z쑍.2WŊ_sMU3dIꍽT_95>=ۘgcȸu"w*N}S)!5YtKrY죆{ӋGH l(__sR圮r/;kUrH~̟L2ۖwiI&X<}qQ<[w?Uז,`mh+EǐĴ. pi2RQ? WMpiq}x??Ԫf(3Ҭ0gul VsYR賅3(Jڵ,PՀQK2"AۭRԹuCaePr{xsX(WOa0/Kgi8ĕɢxZQ$0V!/ێ:"*;AX̊l(-FQ#/!EYfbE-\? ch&`KaAWgP`w/Ɍ% @ I'0k5:EUN(^}>R g$ӑ)E)}kb}]m]U-ږ|yC`B.#W+ B%9}(#%X'Y&Zo}(鍛؂xɘl,<5Z&U P}1"WhblI$\R9pqwz5o! |hþ fCY&T( asȅhz>;Քe0.ʂ6*8tzKUhbWKx ֕8GyzMN4Ơa2VD~Gx/S93 N,\H| f0}rp=fA֞Th MWI:cp9|ᇽI$5Ҹiqw'" UaF=+ ŀUjC8|fǡ9QIU"WatE摏,zwQ=xXzz@K #3͎Pc\ShBxmI'Imhf! hh HwSy%p#M.^< ȗZ⬵$R9-v 2WnM]UQ5 k<HL j3%Q$rѠ/?2I=TE$ܹ8usC3YnL0.%Cj XHm<eB$``FEU/ݳo? (AiQ{x[b"yS7sCC) JnW2 quK_Ra|Z&ӌ₦ 8A>qH\[G>@AV*h\7PͲ# 7WY pi:ՂN62AN#?̈G)[6i|iw/ذO lujWLl[@ Y:Վ{_BΣ{ ! bA+ѭi9AvUF$A$ܭHw_hpKftMP]lVxmdMm*E?LڰqY`5TݠB݂loG\z@GmÄO!x1XzѺyI;E=𓯥* gVM Ӧ/rp pu7CO ]Vyo#YM@/kkL xGqZ>{)ˤjWw,N~+{~Lm 2fW=k8y:/JS%$MG/uvmCR55쪎0tD:6?0pn"q{Kӿn!9z (/p5p^HSVE< e2'A? \w}qESS8:nN&`ßV{2jU=͊+p lPj['Zc{ 8M|sYDbn ~cG ;1X^0e(k)r4߻K ~@x{ ץpp +Ю{?'2,t&"aǐ*{A'a@NJJD1+ x2y/sRMy` )5/fʯoba@k"nu$ ĽtnԩG)~ttB!|}McN 9zg {ܾicllpwTf.<=>[^mZ Vz:0'9N[Ih,B^:=fb#S{[O;emY ͪR;pR ƺ FRTU&2E8{(kP:b{Ύ`WV_g~bz䡦fY|L u|89PQgC~Ubbj#|F^OH #PWv 9|٩Pù0CkTR+\9] FXyG*lK;a|ߙ*6-R#WU8MlzG&?>")I( :^gw$4PeyNf.|n#Yc!t(,-5$OG%<+Q##נDB*sM?9{PE[|Ks& \ZA1~:qws嘒?^rDNb^ `U\]Z=x/$ŧNE9٭tKT@sڤXqɼۜ19wt^ʸ7 S4~]gO! C%;Ou,|fe] [0_#wùӂ1GI{@2HVQ%v2`\gHDK/ OHo*PZ.jgi^:!!~4md8ѣH!\-`Q98 4{_rqaV?KEePKI pЖ)!蓜E LG(Br?,cȚ<'5pZ|؀`JCw㣊S (jZ nvE.l9L ny/bAO`Ƀ XD%,L̄m 1==lI>cFuXKp'I}Vσ'AQ1_1Kw+CjoޑJ90m #b.@9}g,Mqz+FS}qXń{̣0ڄ>Y/fr A.O]h5f%֥\ c+6ԟ mI#E7&md˿Zh%S^ka$`zaA jC#h xϝȒk櫟$Uz-щ33'۫! um5 P2`lyCʽ G_:#H iuFa|& :|ѣ! .uPzo^?4F'UgIwN؅QA [{{kJ']umt/S`FT,Wg;]ߌ~ݍ>pZ7A㾅L6 N3[g#J<렻ԅ^dlk]}nӗ 5Mu^u\A1 · Zy" ju/V;(?0Ewx n/B6j5-IúKYa=6))9hepE:'Ju1aYܥ6!8UP:qʿB7h!"E]e?4ԲMS-,Z¯?>dGnC}o;C; uEM0qgtKBMi-Z8@tdHp^{ ^$;ݓD! 8ykiHC kl] yINAonq,̈́—pr4qXMP$blkXYTL_ٙ_p4!̬\ĒL 1c[BO1 ]b9tͪ,M'}RP% K$bضpl?-1yQqycǂF9PyeGeqSsVxb0hDD~] "a ]2BIKPm!\ d<r ܛg|iπD9n@I(w}MT/[iz&:ڄ8jiu}\L-fC[ |iY7L:b7JHE3gpQ[*qUu>'z,nz!m{P-}axyf"  ^$蘦3Hd<ٹY>!VC4}-= 1Og.Q2P4|c-vTC&vw:6mTX(wms*-/Q:뉄hhU1!~xy`:I O8!Xir^~OvNVb p07ACa0+/O,T3'BzB *mk;ׇwԥHp %(u, SW6mCMtLfD{CjՌ3,kF{3ŵ\ZqV6x_Rާms0Ϯ@"JsX'I/3 9:i-8Ǐ8ГZӎtBy'p,nsR=)w"p$4Pk p@9x9RezKߡQJjLLO<&e w+uLλ:z4-9U9Di3}䈉z^tsT0idB~}%KLMPyP*ˆ$ 4e)^a._u~绋^xhy>{Fz;A뢱:$¶w#4DXQp ׺ XhBfκقnWwfk 8eR1x~ǒ+$PB]HQ& ]],rTӑd汃4=5 Y>ecKoSs nה6$`Z.̉>[ȘOɎ% a,Vlb{:Z=A9gCiMcW6()YNq4u^;1s&BϸOPO6r> ҕ /IX twpҠhAvxgx<0k~~I W5ј -R[dj/zWk\I.ySo&Kav<u^jwyqm:ponEܦAyiމl:o"rc>W6\BH'm K9]:[Y|3 VXDZ]}q.[pAM[?"ZȦRڵiΫÂJf",0fJf'^EFOGrT^WdTٵUߘ޵>킂de@%<Ӆ*ۦr,؂DJMN[ɍ<68\xxU}XmkRᮧҨCU[B%CdT ;& J?\v|x~Z]tyaw[ܯr?ZNmiTv8g^h"G/(A+u=l~fU_WJa tcfBrd6n֞bxV(YQ([T1D+qPAS*N#u|OCL5(s"58(l]:YwX64& .?Q(aI  c wk#π5N㥅=#=䬳BɈѓ@4&I$66bE[ iIą'phPjھHT?ҭ&鲽wmIJ=ajޢD1C oMXS+y-u7k0;7(WdF99J`\- v6Cw>XG\6F1<~ڮݞ-UW x11꯶Wn?z[Z+Ӯ<۾&  ~}Z"͜fC)+&S35+IoLf\ ( $j Jhu@9Y3lKyeH&Ss=q4bW+̦~Aە,j'IY60&ۨA1{W5S,3cjh̉Z|_>%0{"k[RMPXVAPE T(N0|UGU5V  R.^Kz]>솅f 2%?UuHbAE .ɜ:.r%G{89yop9m"E-cJEEy'B^-FwTTJNN^n/eۻiDO~XVƝжE? 慉J܀M.+Wbݵ-N)(*i"T4`↎ZV&x=@HD|$KAL|8[|Uߓ_-\A%I>Zv^ 8, H5~kz_"\]њ,KDnAU[ɒffFn٤v5m]F_L8O_ z&D=y'v^ VN;c>b|7{yszk^* ,ĎM~ k2WYx 釧1>֛ؑ({| C71C4wUG" >CߢqzV%.?#yi8MCumb$D mC; &W7ߦE=lx៪P{]l6_+x뫱[`oAĭ_'acGG 7\ɿC(cBP?nNn#.5 <7zgoxu\vi8:k4j{N۷~p܀wb*@çr ٲYI1+kV{WO?x&SP +g$jM@g~gYAHcq^$VFyFꓘ4H(U6O/KViLk\x(uS|w>@IUUߌ @4[~ Č- G "tQ}һQJHAM;Wy?1UJKabP&#5#K]J*xdB8Scos0?|0ԤN^d{ 9;?vFHtZBf I9 ʡ$~w& $D RyDu ] i_jI)ښn,L*tuj^.SxR +m ORs Q %[o mfT7-Ń.-D4R#QԽ&҈waN!@l{ Mix4ǔ2ޢl45/1Y֔7OE-ʬc혇AwI1|pZFP IuQ⹙%!9nT|LF: &qhO@bڷW%_ pc4dۮkxarx w$uzx7ֆ 9p1JU~i1rQMcOuq3.NJ GhOg9,m!] 2^4 k·#+|pMduD W$ahv5ǟ2Rx Up֒:LT=lzLpEE/Ԇ(MQ];cI(R]7 nTp u0!1 JZVвkCZJ_OT)QlR N(YQ^z%mwq>D*%#SSgd q@eq\!<%цj3F" Y׳Ҝd(K@y+WYΣhD0ViA@ȥ%3zbN7 Q"ͶY.a-?l?V R}=[QK ExRDzU)oFFܳqsF}G!~]iRz|1Fr O)ґy:6rQ6=ofq}Ԏ:~;p|.˄9w5XL>o'hys% WܼX_j؅m_iPF#C(Yhue8#\=*t-\,jW$ 1R⩬@xKzIúx v-T.ߘ$wXR2`tޜmVמ drmbr_?7Wإ}>$f}2mKn6o^ #]8v#!Z+y%;hVyzA7UIXF xPgˍ,ahsˇpj)3rTVY+~sU``A~4Dk+>HbC"HnkcWiuԞWhɂ@U;n!O ʏSH ]GfOCi.}[c͑q~7y+P(Y 7o@-"vGTm*40$f1/џ=KH +%LC5Z+4hJ1b}{ڐQ;B օ3hmxW#D1"69a?lV7OZɉV&Ҽ'-l>{n-`7Je.9M_E?1`pp0ao!Hg:Т\:*jXPKêxɇ7lK-V2s,Y3`_3?W^*RLƵɞ?Z%V_Qw*YIC؀m$W*%Tz_yϴYoQ J"X># sNSCVCqe!.x]Hy.uvR;  \Fg ȹB}_Fef)fHPhiZM+=uZ/Zx50Ahɺ&_K_Dl4j'dz7`D,-⻿XI [{lF?3-Vοf c༦+]0GQ^ч\ki:gA۫_>ljOL'QɭM V^(f*U#4 ݲӏ\i Z;t]V X,5vŝ'* yWj _ss S p 5Q_wpoWCLĦiG4#_y_uzi,쎞%th4+ow׳}mbgQo57]t ΄6:0Vrd ֙wqj|/.5[(| 4*Žb4)u9ci*B0*)k?GPL~d̺b=M&Ԋf[贄j-IIeW$HۗpJ)Po8Ȉd|1I:YZY=˱%>3Z_?}Ns2̩䝝X&2%o^BJnY1n`$+ril-4QO2!̼d^hpV;JU*oBfy]G\YBilK`㼃"3L]U.זg:9ob͊Ꞩ#GXH]MCD>70ɇ1JDކowߦ|p0(Ȁ5hȥkf0PiQKCYf`Y_,辟mD)xYk 'TGNohנ+ѯ [~)2H핞*Eս"ﯡaf3mb1Eu)@/ȫ/Z[jdx9iaty6/3ӎ2M]}C\b fyf7 #x#N{1d1RT'o 0@Xy h V*l@$boF %1p;y`,E#dK٠/vc:U%Ơ0fiЯZڳ#;ۣ?91?LDuhM<XR*:>SX,xB>6s|X@nnE"n:p(Rmn'.[8\g=Z+Hb(T1b_m{Wm^ ޸6Cx8RlFfX!8.U 1xa>aTS,0aN^fuG H8C }om>EYU8K"?&O :gmL^H_BEmѪřy_gf6d:*J"phͫu>SM^Lz~!:Nc(;̹1Vn1_ RXkHs:EL=PwyFx.D j7C }u"2,l&gmأy/`P?Z9hC(B|Hz$c!_˱ ̿ XUɎ)u)]UtyoRgi!b~'DvF13 R$ ;IG OMU0:0ueb5ɇyU 8KX zN<3QUuD/WS#=QŹ=k8n{< ڥ!K7k;^Q_O>䱄#InDLEJt@ǑNPpm&A ImK@%Q"&hPOZ1q8q6dǢ_n@GeCNDzMUoٗU 6MF8 RMJej}S#0IwS@#0ٿEk&TсV#dhFYз|ր{eCxMjB\A M#nMdB5w 9Vd1],2 Kw6=+(辿@8f[N-*lU y'3ĕO 7+2$5 o՘=G3#spM,PRFu[$\J~/J oʼ4Py]_؈%\(JҖ϶RC)dx5DwDx7fA½Atl+/._m7+n.q='e 3 3Q4yIP^we̎[DAK5)m7cx}=<~39Ǡw6xq!rWmn.D+"( 'K9_fh%?BRa|<ȫzBʮX⮴|u*&n;'yλ@uO!L1u6kнju]8Can#AU'OҕM.vy7MY)ksCN2Bh/o#*/C4et.]Y߉ahqnIVTwY3CjYPȍR=XMvkh OO-K%7JtkEE`7{5=PQ5UDzؔ)Q*L_@Ⱥ4oE[5'4fڂ!D%'xǤE[suDS(tDn,'_C7]M6W ڌZwJVFKv$s-OB;Xt"E9ΒufhO'ZsB!lJ熝?ww?*(;K~DO,kZe`QT @&^hYRtقP (&R<0_$6CARly^b(d>?J#MdvRHalۭ9UttY-uy0kBe9^ Lam9(u3c Ɛ2woopn㠻0Uhjz_,pcH~ ղ 04>İֳ(Yk#ʞC-x}R O `2IE(d> heU24XYVHi J̚Ia\?$냿 _"I""a|SFWKOoKjt!PwѧT\#4!5/l}iMP2Iī`tN"H;bV-%+*as? cX s P2X>7m6]jo7[j\i)ȱ`;`]%mNq>Lf(^z5`rIx欮"3;x1o2' rB&FvqXLaq'1{ #]KW gpH)^oB9x&Ȫz+.!xR\4S*r֬` F\ b;g ǧJNmkpZ~(D:Z jFޔHq<xItϻ}uĮ ƴK͢;<8z55KGXcfpbxGG >]y!SRxB+LHa%Ɇ|؍>l#Lw !DcY9wh@FD jTGzƕ^!þ9ˍB,WA2vkڠ& w'V/]>6M5@A_|6Gٱ=9؎?7U~n<'{ci"Yoj3,N\xI׸oUp^6G22:ˉCekܦlFbEZ *oCHك{[ҝ gsY.Ԕ$n2o[75/] o)S+<ܲ ZAǰ$ut^罴<ϳTwpQD2@H~GaIXơ5 fOU7$ߖFixR-n1ݫ2~02 t ~.,[θav!Fjᄡ6r"{9pfͮY)7Q{[@'ζ܎_:YlPdXG3~ղƗR!mEևVc893!N-٬@vM+;rUxf4Xm'fUi`5Y}_4GB)܃5#S0LH"SqW#ٛm%fYL/ua16߭j/*7xO^[lB1kjN??SfXːkKa2SYpy;ǣxФծyG ;yv-)kdM<2@]1fk, e5`kٗ1&t)\}%[ Ϻ1 Q5qGF-m]W^יÑPs ",NU)2OsX&I.ǥ]Z1q;Pg~2L$iY3_Z+һAM)vN{_q!M ,>˂㊡MH1)<52$2Hpj 0fIC':C@aBaz-:^wKuzR')#9%̞¸RkrA3t<֦1VBӂ9.RصEq|W;cX\4~2`yzi[D:]?7i0r75Mvܳ<+hњ$M'pf!6 sVhGۤ.Ɏg5cK &y& j˿%NW;5 Kaxm7} cu6?bW_gBs3dg:z(Em(/8z(-EL~Ik?d'K|aH),NǍ)NQ⃃gd?ގs~ϱsD{$ݕ@X9jTI]gF3oz+X:W6 [䔨iBb9Kt zQ>+2}Q>ip CY  4`eg<(PA5c=eODknXG0So!p h [W}k04Z7>a6xht#P:Y8}q1Rt ڙo|P?&9kQ77#87U&R\9KC!l& RQ鞁<=QרQS9'Cj7CB ,x'#u`$\+"t#3piv3ښ{2}{1G{C%~J߼2_5'7#Gޓ'K&\0-r`D;iڪuo/}D; d-}KW#-۩  v0}X+f\J4И/TS:p{=3nc{L0ˍRVf=.?q/F% Gpv|KOKfP)H9CpW4FL~ 5+$ $-M?\=> y!zoVG$@d^Pe0\k4j+|˓* թK>ӫC Ix˿fKΟúqQ)L=6*/TOId:$Հ:hvfkq8nj%) ɮ26|o5MuS7&i-8mCQg[VFfIJ ]@G7 n#:b@YZ!4+#Ssik3_|"$ 5wrʈlHPCѦ75:YƴC!.d#,n+\dal޷ tXUL` Bt:K`= t }YGUѱ7S ē3 -B/5R@0N %P - {MecQ%(o@pVLpkr$x•W@{9>P)ruge:5WCCw:} 0H=S_҃D\_10ޝi S 5]T kCRK4xNlPWyCQQ;X6NfoC?\1z}{@ JJjB1&;p~ .@>.FJ ̻@|Y+.7Qdޣ:]> [t,v\XクN pt4`Kk5}4B~nI/$&_W,e}k̋_9s#e&^A@X #ŏ[YҭR:Lh7fZwHUd)y!Q{ Jʹo`Kg׋ڦ1mRΪ ;.!_(CvXv 2*+ :Ju/f֔e^O[̻Բ\%=~>^EJr}cZG{ 0(t9(pw}Oh*WR2dAWCAų o܋,OCo]襮$0Ngpkq?h%QI,++OZ_I=iZ.qnȭsLjv{J;YW!.dŃQځ #M΂mUM6.?V*J2q {t$# ReGٵ 'Y3B7^ȑV3s 2Cb/-Yk*+SNn;̿C)Ag`q#a$-jH~fp3hmѳݺm:A^[8eOO) ]OeLGVJU&­W)# 2 9sT׊=mzſ~ȩ4͜VݸXm!Zvb(-[6p^C 7Jf JBxן_ScAA$I]Z(7*.8YiWvW^ʨk0!8a&&j"d=Vb9c\#<ɶ YZ