dbus-1-1.12.2-150100.8.14.1<>,g8cG)p9|^2(v irY}IcSRS.ea̮LP^ƷE^ ~`>d?n5\28 ɢ/0<(E ̕LBK/ >\HaHE=T+3,2xV%:=m_﬙z0?US \@o6[ 1i=BEwP2vq;I~Ӡ/)^u7 QO(x  "F>J?d   7 #@FM bs== >= = = #= $=%=' =(@(d=)X)$*$-2$(-7-8-,9.,:1],=w>?@CFG=H=I=XY\,=] =^bcydeflu=v wT=xH=y<lz.8<BCdbus-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).cG)goat16 чSUSE Linux Enterprise 15SUSE LLC GPL-2.0-or-later OR AFL-2.1https://www.suse.com/System/Daemonshttp://dbus.freedesktop.org/linuxx86_64getent 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)`IZ90jZx9)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'9e984094dfb1060dd844d32e216d47929afa37e752daad68f31b006d4ee1b11b2218b9313dc6d2e07d85751f318124cc5138787358ae1039703321cf6b35602aa6f50dc70ef082a110dcdb164579cd2af221b90226c5e0aca237edcad98a1c2619a6b645d5012a66a2ed23f621171c27191bf00a95a02f6d17ec9f9176fe55777c4c075d8ece484ab8adf79f57a9feab5ac0f1d89fd30b6bfcb163c76906bf814bd7c418149c08111607188a862ead0e3b403e1d0d955ecd32744443eb3f90072b7c337089ea72632e8b9f2dd848938e2eff3bf98bf18a3cc6ad978c011179be30326ecfbf068f404db9a16ceba884fc5d27c7a462db6ab4814fdf578453981995813574d1499432c9ed414e58a3b165885fb610da2667cf4be08019bf5dbc65c4c5e591d5361af556329156adc685990b8b3b067185a35889ae2badba4dd9e376f9e3285c01787788a6ca684488f43ccc1b26a7db98c5f062bcbad811be9cf7b5567cfcb88b7f4c47e69db905f1e3719e9cd6233501e8aaf6163d90c5ec2724012963fc78e5393a2a9f2145711757455d5eb22452dc0ce82db3fc4da4639c300f2e827b4c146d8fc7c0cfb5348056916e6c2b057ef40d77d55320472bbacccae05359bbdc083b8db2b49542b26429166b5e13367a63668a4e8ff8a1b496f7ae19d7b51e1e6da255346ac6acbf95627baf14c324e84ee841d90fab98bcc0e9942b7ac7357065180d1c2f3f00c11d17dadd31cdc3d7e59c623eb733beb3e50cef8d6c76ba6b7eaba0c987ab294f3534f3603dc5717349271cef7f46e7c530727abc7f3e09dfbd851b91b2b70d62730ce4e46323718ad35d635011689940ef6f6c206f009ddcf909422f3651c687b4623a5780fb7486c6d650e5332f57c00d6be118938a267987dee9ef442cdb9a5cba6d1e7303be93b0013b0948f20831921e5222ad2317b7040e0aca41b5c9a04141aaf20143e15072eb19394248eb5f5e5a19e2584de5acbe9ef4a792e39d9141c3a2b60fb592bf4d7c27cedd7bf8d201f4c2484db3de366500912c63d834154173c7886e7ded484d4fe1dde4b62f6d30b59b02757b6a8cba77f6273f07848aa1a81cdd02d0aaa0f86d3c73f2ecf5488531760e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1e7df1afa9b3053ecea02387bc7078dc6ccb9741a7c7187857c8ff81ed2c1092fa8d4b6dd65f3ca4b45dabf24401bc95f632d394fe6de9d8a383cfdd1d6a4c18eb50d36351c097a51f55797cc823d0edb35a265de42c22dafb334847277b82e27f9b01aa2ecdaaef35f680549ec69dea19087e76f4e0424b0d3cb160338f5364f2b0fe5198af539a4594bdc36b96139ea1014f04aa850bd6731f5c05d5b88ba2124a6d3cc397fd4e5e27b19634246dda79f3f536b05818fc9d980e77ac85275ff91d07398c4b08a2f4a79f28559aabda16eeaec4a3b3413384abd5511fd2c431497d07cb7a8f58397a3edb3e3a3aaa0558d6d1fee848cf4f6e85f70e5cf77e1d4166f6a343877a2828be53aa45c9681b035c3a30d72663acb0c86f1f13608d28b/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(x86-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.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.2)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.8)(64bit)libc.so.6(GLIBC_2.9)(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.2.5)(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/shgoat16 1665646633  !"#$%&'()*+,-./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_Updatedrpmxz5x86_64-suse-linux directoryBourne-Again shell script, ASCII text executablecannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-150100.8.14.1.x86_64/etc/alternatives/dbus-launch' (No such file or directory)exported SGML document, ASCII textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9a87bac3a0eb34071db29351a0a815c3b1300c0d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2d3ac0bc31f20a886cf7a7df9eb2e4f063062af7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=96c5e0ddde184bff84a80cc0ba3a55dd24847103, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e363595a38d4e416734580b3ef7561b1e077ac7e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=cafa7a48f4d4cb56520ed6dd5d63c8d3662520ec, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=22d28e55c26ed8acf1877b139cc278762526cfbd, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=89c562c6bba257935041f14fddcaf94f5b195510, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0a093bed205de87e81fdbe8e0cadb7aafa721795, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=bf55e195b8bc3afa724269f092e9cb18435558d8, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1e68876021a4f95b385e89955d69a06bc1d22169, for GNU/Linux 3.2.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.x86_64/var/lib/dbus/machine-id' (No such file or directory)"-6AKU] RR R RR R RRR RR R R RRRRRRRRRRR RRR R RR RRRR RRRR RR R RRRR RR R RRRRRR RRRR R RR RRRR R RR RRRRRRR RRRRR R RRRR RRR R RRRR RRR R R RR RRRRRRRR GpLL? 8# 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-8f0662683ccd9f27fa0deb6fb819aa2b4c11158bca456889e9f192107afbae879?`7zXZ !t/ױ]"k%]/_ba3'u+RZ;z9"decӧ*^6SuLu7YnG Y񥤩>B/#wF;@ne3ǰr i]BƋO{ 0*FqE材H{Sx\~i6ƔV]pC8\y,If-ӦPPaSc~aͧ-{ff8d,a8/&gbz[PE x1FĵUDLx_XK$Fбt!֗1G,GA^F؟LW`;;P&!%k+Rg:.W`p"zGyBfP:ZA+*3",QLxޜDZװ!-wB<H[5$]F)/C 1$*H; ]`"`h!K[: 6cfE?_hi*$X8V3EEb<헷sJ}k2 +9YX5%Z:3K7GEqI?)&  @1oY+iJ1Ѱg1UҕJ3:% EMw˺!zhh25%c\rϟߧx0(=J?eEc' ZP6AFT\cިFKxHz%lQ'hK"hٗy\xk}cz?B8a xY6"4[~.?ΙA'i\Rc*=sR{Z7z:~ቓ]Zngɏ;KiKoIv7Gbu&0Rx Zl;"G*ϦqS!NHk.VxT݉#]xj Fd49v8B#61͖-ET`ԛs?5xsX _dğz3\\+}=lδSG)L+z/̴Cff"@H&m~jsWQ]L0c#Ll?IgBO2):5 & D.*9E]l-ZO0OblNW$Jl lP/yw="$3]ύ~gz͛žQZ}]DWpj$sGk .ŲbG\Z<`ȭU#qhzS38ӟ6 iQix()t{|^fjIC'eW઼̾`Nll<Ъ8āJmF3YsȩMQ[ 1J8\Ph@{hV S؀#5mL3!7l>+Gq N?pv&)oOsX7 milv.p{7P+E:W#dU.BFl&WyX)YvaiOxd//~Y:+}Fn?(Ac vXq8{Ƭ=D+J^c^ɈtPs25pM=L N Չ[#gFޙ , /uZ.t2?FL9TdCT9)ΆR1\xe*Ӷ3h%n3qU#Hfْ+"lJWa_keZEB7m8FgЇa$`~d Sn] xL,&0LI49@WU$`&]-bť5S~?olc `: ~ffK l分 "3[x&JۊF&-[60gBW,f G i<7DMꚜ>7c= e!(SHO8G]q+${XkP)x$ν)8;5+]"hhAWiU=Z jr'u+3⹾plˊZe'ٸm[1B-g(EL173o6Q>xQ mKէF_"+[Y[rjV;!+J'tLdj_,K>Ѿq*i_[v,7bq= N,f!.bܢ#v*XɐpPrЭI) ߃Oقx *qft?t-@N4oUC;%^[FcOyn')*nxg4̎ V?9PZϻ9inL ?1G"L’ 2TÉl))01Ò* XӁ Lh>m~|CE]@h 'Z׃WJq%,pH=RW#QYz+O0u},O6s9Jr~G5܁; Iv:Dgo-}Uj\+hۚ8?:Q`9)|yb;qhUƒjN$eD;u"NҴv(H[Sm~!#tBtX_ǪM j @7Um`.e* ;|#fkG=vnl>`q!^،ԭƺ4pn奟lXk3>'B*Ei(sUg:C&M MYU r\f"I9M:<Xش [(cJmu.3ᠩ1S˾g7\e tz#:CctX;й38ogaƐ-*-G$8G?WI#_nM]9FuL%5+6tgiOgdhttJaoȈME-0r|԰"F @=U$5.7BH|>)$M 0pmqn .fXV܍/20bpii(7j辜79bNGcvlY3Rs5#{0;ϯgVqW*FiL*0Z͏kɛT&1j[opҮ,ѐW^S;4"zGcJ\sL?4"?}@G}7܋U.jS@3,q~[r(+Kے)RqAx*$)̤^ \'Րm70oːo%$(^&׀ TbW TZM1Wo`ZEIp!n%\ZU&}V"xu(# Ī8AE2~Ӡe>۽DXc4fQc Im9xà/*qh$FkO^>݂mlt"gV ouZ$0>.^*&J*R-^!>vj?l璙Л=U.ol.DqIehJ$滵>Μ_`0aMR zԚS5e/IcVTﹻf 4Ɏm5l>-| HOJS %9GG1I0+hQr@}dPn^ފR梨&<Uyl z(i>蒏bKO|4YGf_,W[ fgVv.bʝmTC?wk\MJ3DN5i2ß90DkQWfŀp(ZhC._R8^K!)M Y+4ƇKJ漂p1A5~>u8>)⤛I:d/t ?y\hf`g1%y_u# 6<0_2ٮV/޿h-1^hIJO O ZQKo}󂭠i@c^skM!=>iGg@e龺mL?SN3>aq9q.D&_IYi?J7AAo1i;Aaz a5qPz'/C0ޜ>hو0aYYj}N$As9;<}L w]z#qZ8#*v$DU؀VS'u ?^rSxalj#$9ӽ >LWB Gf)CBNoý;{ʰܟL4 zeh[3&ܻ{mlj/ZDMA"~݆VG {I$5 s!xwNvfJad; WccQ<"%}t}AU2H0>H0{u4L\~8%D$"SP ]^*ēGHq/J 4Z%Ci9 G;dF{'u9_R*jWѝWp-(xgBKB:qlPlDdA_g0'(`XίY&->c7c.%,a`W_8Rֈ wYhkr6y .9:(gY^\ :3ȅ`6[z}G95ݰ..fRꄹax>LwwL=w+\Es*RD*qgUf7O|:"g0}io? )Q0l6Aum^45dž*0quVK>R-E _J $pp}^J2=9'`9@;+Q~(0:2Gұy-il}@w 5Bȋ_F 9T{<|XUtECΪ; C-*}nFWQRtXl~iV#,mGGOjoL'h F3g yn]RԸ g[V;`MuNP@sFTiF`v |3Uz?<= iبPqus38vqGaN9Xw+8i 2Bg A'$awm~dhŦ`G<07^/oӸ]Df L5=v Dα((o=r*NhK7!Gw b_,~(vK#\ͧD|Y_M߅CgѰ+2&F7 c-BcY䴧g*4H:`{}@D.^i~XFL=? 3ndYkv 6H`k~WN^pAHwRFͽZ)s&07OfN3䛥Wѥac.WF6 ,Ϧ w9(X|'q$8r ZM%D_yCmû{q:o)Z%YOn;[Q-wKRolRƽ:nl%L:0.g#,#;4'<5j>emEG`j?ݧY2RFO6hwi'VBv>7v Z謶6_}ʹ3;ژTRsg.lZ;_qs "gQ*e S-ٙu}w7T]>;h6Eq;z<邶*&1ykx)چZLVyovFReP`m#2 Xå>]'";n jm?y@%630? . /(O7ʶt_/&c%'#vsIQR惔  O\~4@n{qYt26X0KYҋ#'qf\kRAphy CXmrR}WSir^PtU\:"Fڕ5^Kϓhd'{6aR/aXV+Ku O ,E,kR}q#`l5۹%񼍪p#wp~igyR:;u ej &2]W?ǕtΑ{^RFY5  ?rZTdR*dxdh%#p6?&A'CxZ+et2zX sXuՇ#[ߡ^Y+8RħiFO Ɔ t)]rw;"ب}}`*'e/:0e?TϛkR5k׽(#;.k ,LmU@y}ؿI7%R5 ' ›Ң[#C iϖ<\cW.B?%۫.w1D8IcdA D0l'yUJB-F3NðEiOO ͧqwQL/Uw^&em@oFOyWf'|{Ja;Shŝ$.w3 Ϣ >fs`*F+t[YJNaYny>vjtטvygÖ``bcZ1xsSR G6\Znӷ]+|@m[УH=Thi@AFr/pKżwɺ=hl 9dv)"~D}gm>HCnq"O" ey$20]KYL_ޣhyNMe T?lb\GF.,܉y I~cLv! ܦAwoVK^.CT'qRܑFS7J,)R$6%.¤=ՐxLW:6{_yJEm8oW㕒'4QvdUDaEL[^1Mi/nZI".w^=v`z\x%.(i `-czcײϹNʀ %YؽVRbE$D yaJF2Py”rDpɋ݀3X=>r Uv>s5r \s"hw9S(Z; !.|XQU¹> .y}Ć lXK (z:o$/2( >zNxeY8fVљ5E6V}8m+oٕ648:LCc#g3  _ΥR̫99@3c*Ilmg"ӼO QφcRf?wC&.oXZ'$][fnpWzK0?vq߮eNF|NPy-@ uO,;X>bEʘB/;1oUeZyct%c]2o9#$p+a lMc}!͍Eh$*S d4x/pGq\M՗>.ԩ{I~&+Kx&Fg/b3$e %dÿ @$q3<.Z}A*ޤ役fS2ݧHgzOV"+sE]H`n:ݺ=bDqXS $Vɢ|E%S{j痊E(XHo+gYd܇sR۩ S)W` gƱ]5 DTL9M߷XY:Jy\qWü,AglާVBxFqdnf:X+TK"mS CiLdλwJ%ᫀtNôRocFk@S.1Zcodfؙʑ_eWhwE(A誢7ViLR6צR4iv8[ !>;5eI ȧ~XjVA~명??mi@uލDڊL.z ^Lpkfl0;=TX HTk'-j=J*\{ϫ`p%fjP}@2VuMIiUA ?gݣLFq~j$kL|VևPT*&B,l`4-F{{.Mdթ+Sx[ZR1>Q/R!}ؐ"˪tt߳v G<ϦfCã81[CfJ6#̘][bǀE%[25fI>9@!{f8{w=%ӣڞn9 }\WVT~*B Wp*|fFK ⠷'|EŰ^ɼDHPΩm4\10n%|wʙfv"ٟ5F7͂Yq*&mMwk}ugn~xCI~HlC?aI3kWz(D(Tj:[Ż1,af;]Se:Vlb;B:n΀2p26:C\b.\*_7 =DZ$ri>}g[mǶ<:Bk4`4ǦQ%n0*i,u*gRa5FFdnI&Ci'ߦ@I? _9Ȕ]=XoPrϧ[T3SY@Řݾ:0oSd8g:B^Jw<TAMJ}0V.-dx(5dd҃p2i:=>qi gcA8 ݶf@XJ (yaZ||U34o3s{UF6 }3e;eR#;IEERS?bg)kL ZTl2;9ao{`5H)gѳ3G nسzV)&[]g Q V#hI5B-OK ַ8 .,s| ?9?`GW\6P[EyfhOcijЙ.urN=`GS?5fwgXu2p8=«qN#Ei"޲ie:(`zU@||.xxkZ_!!JZsHWld@U"bjn6 lɯ"˻.rfgxQJA H8/R&rP5|6SۧKΕLZ͌}GWv~DN [ Q4)d.uǖp mA768M8٣m;}ME~)+~ӈ[y@Jn$2ӤѼ$D94FUu@oPXէ'dCT4xOlu^'Qe ڹ|KEQ mL_FfEWz 0@'~;:?zI3py#(ŘpMJ8m'5?zRe]nڐ-" lZWdA8[hܼ(|̅%ӗ:z > d 5x޷5-~D77I= 3pR 1tR<-sbҪ\H.#UCU#JBLˋ4%==iΝV+xFr0?@qy'MzX:Pw /oG׹$:0T>'{`GN+ђU0nUQ(C%W*jAFQ0a!\{x`zIΠFߘ˄ Rl;q3+y̰,3Wn0]CSp=h ̷KJʬ|*J}7/('Mn^19lt*)OܪYx5Qu[jT &Lsp/p8Q; jȇ=|{dZiK3Z2rO zRhaPYRFNbW"NMz=JhSjܚ}ك*#m@DSbU'9XϑFû7:V!x"6< IB-rk]16ӌdGV|@TmG"2һn9}\^96^fFغ!46ڕ>$3۾UMHѡk);.ca+ V%Zbԍ ͑K2w/7jA|[c:zBb"my}mv&'okI/0|$B=lnFw=6zJ>/w[vߺ:t:/.{< +h_+Kz6yjN6ξ;(%TSTT#w:1F5F׾)7eNYgwzN /\M: -xư[DHcZmэ!V|Qx Ɵ B r6H mڷbLf0 .";y@*WY&[ke bq^箿\-)Y֙"qӳH$a07mxb[o4 24pmUNCV3l^ct"oGK*{t2/3Vbddm?bcjkszB7 GwjQ{c6q^%S;u5Q\ ;[ ɤGe˧'g0p\]/4hp]y#|zOc@_ >mP mX>@\iEF̳fZ P>hbJ>UISTݺmfBjh+ô)v9ƍ#Iv>+*;MXЀ‰cB7en h#*!c0)#Sl ۡS ͥAg҂Y8\G7ҥܝ \Wm- /bK5E $t+=Z>J1`{ rEU n2Цbq|^qmɦx'emR:ݲX!Pw9:/.-f !o<艰 tܓ\IxB 0<'{&rl]2w7`35(`-zBS^զ"E W];ʡ2H @'LpLR}pUU֟?Khg)=x(t)i@ K9lsz>HP5"Ef3:W6lj$ dvNF<ȗ u, E:$vɤƼ-o@gVr\\Ίo~{ )>6Z.:칬Ķ]އ9>h\[vw{34o_:gT̖0*5r9[ (~\9F6y<+`5lMЀ(6Kw .lg3r4M?GY  VvB$zK;Iثjxj$گ:[`f~db95t4VG>deJ 70ơryŎ]hG|1yJ}"7j13Qd9ZZPLt}s]C$˱d΃vN5^x;fO@ .ha.]150 9K5f+V8_+t۴ub*"4P8Xf?YeWA@O|[XOg%h2kCG3] fQJߵ/U4&Ͳk /(쒕Yw<ң ?%2hi(M)ћ= D#П ANsݪ@ S@TwaIfB ,s,3{~!=ʐz#2uM'>\)jKfmRHփBQ-<0wr=^;}sPQZ5r=3ڍCJ6Ib ||e}li3 KAlc#*zleR65O\hL`PN:p&MkÖ>GW*=<`"!,!4~LLyӅULbևkuDSFqq%Ş70b0ny';׻ٮ`dʪT>'~ӄ;th^+i).Cgڪly!\Ϊ]Nޛ !8*5"rcŋB]jJǚBh*pn p^~t.O1㭔{eΐT_PJ#8'Q,NUrq@/HGiN" Ӥ%6ɈT;F ٕCH:ɒr'|E`jy4ÜROeJpKA ̚pȎp!U/-1E۫uLXõ8¯_U |_,*ph큐hb(Č Q}:u=4ȼNXg<ךj2e~co \U :{uiNҬb/ZxE;(f!*]PBQ/F\]1\-{kA̾!7|?ak[zD(!5A6-M‘Wk678`!3!*[O=|x?#l^QzV93I& ge)G߿/9܃MEnGiR__8 ypFͅ!*` 8#a:O HL_ ٵx%4@^*k wlѶﮡ T8uٖJc47(DfuA.`Z{Ѿ-rm}p{h`fCnAlBR<@Pf7vCΘ䯲:ۼҮ (Tw,R`U&̫^v%; ڸo#uH+dM$So3ndS'۟o(;:$:+6*\FQ/ffqd!=zxʿlT/qWiW|Y/)%L=kEcHAi,%}3rh bs'}םkYUkD]^gpq[9lzD]6c(q: ;h K>1,82ƱpC5!==tmQYE!hik!֭*v77GΖuɰv'v;,m# gzULa? :Œo@*>5W6%E%1J ߐ9eJcׂ ֚guٗusl |_8{l!/9'pJߝ[;$t5fg|da% s݉8)R4|SҡD9VsAzsafηA#5Ozy.`I6@_$ tA۽VANKmpp,9ʍ 6=Z PO`;;{ +dQLPI[.uU~,/*ۂ)>R3)bQZ/9Unq@łvڿ(w+;iLfl>6zBNbiY*Ō9F Or[9kB {vSЍEM&#C1A,U䣑RQR 6;g?)'hMA_@/3ChH~+ؖFgPhG7xJIeUE0V?D$)M@>gH=ѥQabY˼ZSTA> n~>, d߼03dݙʂ?/THfh 0 iVٴ~!J`je?{!Qn0>B0Pz:=#9m=;+|& ~m}5bIzaӞsCOU1 s#'4tqL_@:Cx13bo{~4e@WzԋϨȿZv?F00-VN(2DUhVla>=}wq}U٧vxmj pqT (ۤ:]k0Npm kG Np Fϫۛw)>,@Nl>5OP@5eK7{.Yz] &ˆ&`T3  ,Okg+`1b|-Ā Q[Ta1Jf/ 2[~,חj7~AUe_p9e+@7;/\g|[u I˕dHs0AUj}XҭOw'w~IVyaKE\g8JZ)3"k7v2W):NjFܻZ3eJ(怒PpT1Z8&!,eHe* ؞ }GeMKBiʿ(̡K2 { =uF@_& K8IΘ SNV5}L*qȯVzD;|Qԉv*˸kc&艻&wH Pҁz&io2OEf3oB{W,qQڗmL$_-<]݃\<=h-P=p i0V/>^X.1w6k("+q*z詫Av0x|}I(WN%XqQ ԹVGƙ7ĦlEt$MqՑ<*|S`B}d]2AWrYKɦh)ʧ0bY0k#I.c2_*7w0⛐n(x $'%;38hex';ED%~ȷaJx-r q%ZxF\^^dt1rqD,$A;\bbK>eaF+m^Kc0Sj?JF%͓ErEߩT *jĽG|_L+-15lv}.\@[_R 46@<̃ɓh018ytfC}fF1%+B" ! Z-741 ;N\eT>MKGƳ|\uǡ3&ߏ) t.؋uk-5`jmuQX_ξյU1_Uh-of.aͫeM̎vmG6>J5skiK7<'mmrOdy%/;g0` :Ё.aTV{CN|Ghz6234yq:&uSnDeXK2i}] X~L_*r4_g"$p'U)4K-3^HGvь?@/z )=4jrsTBhC7QAƽ>t"/|[l84}Swc44FLdе8\u<[mh:l@[7Hr zrp 9HXxE֌pϥne'|s`f\8H+Xat5T#jUs>8A)4sGgsL#{凖xAО4;ͼsg! K cW&K.E yƛzip+Kbb{5gDÑ LB@06>\["ۂDTvf}2 G5H2fd}iqaRBL;zԽ ?SfN0YCr`go-^|e1"iZrn92P$=Q8&gvt6q*1A-Ɯl'&-*ٱK!?f&XdvZ {*)@߮TX:/W\VMqbS*j,4:mmMA2nDgnKȟE*1k ؏ W|$IڨG\2\ˀI8όnա}U\.&x@=:H7͵*|^p4JN!ȧy^BQ.Y I l4;r5x|\Nf:("2'( :=XTlz$N9L$8sllAwLq؏o±i0 m__dk2uHSx1O>qmwk.'߰ɫl>ZghXq9*((*) fE_hc*\IHҐ#g35&eIr#0b&q(73eexpI #*ٓVw% {//wݗ"F0cӺ\y;`%GҡŊ cral xIYy( A&:߄^@: :N/gQ8 z)s,B% [z*ԽA B!Vz]ЦwqBhxZ=7'H=M=GV l3NI.9EUS4v!6%BLǬIz"Oۗ'eu_|MB+c}6ď*}rS̾ Kd3"f6TYe&XUw&&:֙Cܽ2!M {h 6pBNߜӕ q4:qv@7FsM '5KRnD@a s&SH߬nxOĤl[>f"G|"21UJe=ϟ`˙M PvYcJIfF|fGStDK}/gCIu-`Pu >b.pA2A0c*SyDX$xgx޴sS\( "kKiK_8Pݮ yR4gAG߾a`UXK&q yH%/2ENgF&!E"6"|'k` KWyș/1oo޿ NA @K&9K/K77`H* l0BkץJӚ=YJ3X8dnلʍjou* ǹ>pCa9Af8/H89㚄q&1^ei-&U̳=FyUd_M窧BJmin 11 T,!Qs#yVk `2!!5 \wŸ ]B {̅p+y@XqQ`]%6y8Qfi0)s6y*+:_X gxVs4XdEsw_V"NOJeC?-F?{Gب׾;g1ܬTb˥ NIҢKU5Igz+e/lya2De-TM ^N:hR)nT@[Bi [sx+Pw:|cY5p~AlY] nwa;{m>}APYjHi%e\ʂW^ >ZB_ L%ϯ[呹-%VRW:B~9\ݦ9)ʈ;^mg.pΑFKzX}dRQ%EMXOڧ O{^sy]yW+9ۤm9dׯDŽ@9d摅, q)^?JtbpJ] }A3~_.o!On{0') ƌ w4HМ1/]zxu`M{A1I>z;EpZƖUwWNfK6傰^Y}F ̘>i:Oy7Y9%Uun'z;+Ğ<ߜo{ Xut , _Ab= .c5Yl$,Iq<>.G!9a) jDG1Hk=_q]uPPd6w%{ Zsdk4nTܸsc3 OL+6ӆwK䔍>My0buaGDoh U뫟k^{韪Plu}ƦЁ%|@ʹ2U d(WV[Pw<d˥֑TRڸg.|&7A3!}> G.BtO?)9C"; 7ͿVM߇,pjfWn*uZWeoQD2'd"hx m`k@9&楠Fc](˕Fr;"p+.|-\{K$ vTlNkݝתjС;ј4'+ I8kW-ivQ7Eg\v}:7f ~m9RI㌘U%} ]qbvd\gz|vO(7%I*b7:>+Ȯ8l N+׷wJy](2K߀M"^Je*E8 ȻS͍D ,")Q 'qtÉr)+Y. :W:1Cޮ%cM%m2_yMg}eP F&+PSۜHI! k]seR`s8c$/`j fl$W{T DD잹ӧO*%lAdXNƱg~Ϟ}`v Nǔ2lS54gQ*yF-׎0nopHV@$gl&=|>}~V+U$zQ_60u2ZC4vqkT -B1DL RBJ5ghJbJ_A.h0雒‚ItTO$i! ft7ܙ'Vf ^BOٞLapduVi= 6"]5*aŋ/'T_=m˗K0IzXMze{@% >,6BSHYlRNJNOGM5uR̢aED9`4_HO?g5ezYoa!G~̄2XgbbC[18fU\|5 R 5&׏'oJS4T:x"M#<>r1403HìhRPd*)E GATr*ʿ)ӹEe8B}L ޡ!I$1M_ /w o kRE$QyJ_N0HX3%d$ZBS8Z ٬}P޹Ōmc]YOs&9^e2 -i̚F$n& 8 הhFP~;2g m>q!dghitPO=H͔/AS/5үaDn͹[ F}7C/ٻemj [;ptԯp>y7[mN {9ֳ-R̛o>Z^}4:bqLvwjZϮ\Əd: eoŵ *=w7 R7QbB}  i/ʂNp_PFA3"SnMZgM1u~uLJO3yJfM/:9˕ a z}+9 X6yH"~s{J.ՒtPNiv,1mY^ IM0Tlĥl:QkKCuH =]\2qrclAi'_/ȋm1p|b=1@qz(7bXA wէW[lBB sA~@EcS挎+˽~H WSTGJh>a pf.Zd/b 9]2O+ ʟhC_Lѝq_ZN}@aNoTDheiVD8Jj 1&l{&_c<2j݉ H0ǖl9GzlC V҅L:*M8&.ҚFV{Ԋ`B Gpe^ Cy*]N;"6$v%82lP:)(az%2ĉέd&40_$Xw=Rǎ@/!Rh)$lC[\szf\D"shYFa$4e𶙧4C'G ayNSxEVBX!I)$QWzGXfγűq% ֯:ַ-VmNP4_OߞFVTHbƗ̵<(maF)C\gz.tX|.c=ɷJ qfڽ^ OSPPC ۾CbR?@MA@v=ƹ榰\kxA/!bSWwJ4ay꫶Lػk*E7H7`\{2MzbM$; ՙꈾ1b.ݸ/,o5E9UsYK2vkkvi)WSj'/q*jUd? M j[߶"%hTiG1Bpi'-ªRjf^ qЌRWV{XZadO@P,w5_ '+ :E 턥@=C)%߬rV,o2/ĆG"3-2˹%c:QH/?Ac45!愠ZP(I ɱCg,f@ٳͬ>Hy6R(|@ui:Z8 L`5c> Ak^yd$͉=ޟ,-7W MjE i.fp!%}">zqv7L}$jrCPKE==U F#FpekaUf2dPORB \-QDKs#\EUpN$2ߤs%;HKu0ݺMv>siSP Aa1O4nzKXt}'rXnX \*BB:"Cs?kŤm {( w)J%#  "t[[x%PRq  pD(g\æk5/'A6wT3_0ӋW@ ,!m?,"*UxxEX z$ot  ?.u12, //2R " 0FG h +OjjUWu>e͛?fT42}+\_RM>5u]xVꀡY:'?O`mb1j'<&6 Bu{5͛^[_MD jiA< gA*N&#O'i9ዚ(66M;!W2Qł;8 ԘUippƇ׊#9C]HIeTzIjx6\1dmJ,ľ?J jK`Tey 4Р\>XiGU1buLݣ"YQp#? 8{RzM'_C/OK;aBQ_,K#wbcI)x3*ݬCxՎM4]t?'u$Ef Cmq$9pj\U%W#Ut^+ }kq)/[ZI։b(4^Eeɒb&rWeihar߼ _%-/;FӦLC|*y9(% :;֎8U:SzWX!-1 yF%,5*Q$]z(Sh#_&yy~](TIwDmxHmQV)})v:orz3B9eGNV 5s .|j=Sjܔ R p3{?Ǣiyd' ȷM߈釄Dmb0m{f. a )K̨"І 5=QEUatNPG9]C>_҄5Yepy;"dk^&5^F}6CYZo(*)VeƝ](jVc ˰UO/({Ũ_t/xJ!c$w%i8z<"v[i-n|KV,?(ZW9pgל&Bvhɩ)#5'mJ[HrO -"fJN1Sx8 HN+)%AZaq\Os3A9Wyk{1Xct z ~>DacR 3(I3j,GP1ׅhz(Ռ*z&uy $VAح Tm*G\ p>uʠsFĵ8JYv#J/Lykäڛ{{wym6ϙ S(#{3 e0 c(leZczr6u>W,`I!ݶ/R^x,tћW5dS5*H3Gbթa"J;.N7 @EV͢s*F6.2!ҭ#GW.ݡ} -Ij9| x>K@Aǵ6fL3Cws!Lt7]L'`lKNqJE{Qs6T9I哯9#w~y;-^F¼xt4}'ːY~:E&EƜjt0 ~NhΦE65c˸pBLtvMpiuA27U{r%!i'&Xč<:wNⰪV]0͌Yeu/L%I5qۺ5Jm,{j}rJ LFϿ~Da/Hul85>m;3/dmkdgz*A]/+t]3hy?iAT)fN? `ұP=iPX2kՃ)]͋MQ (ee{dUxeѼ m'&=z!u T*F&:\Jn{yN3jP%A*DaWyqũyr*ha+<)r zlHZQC44~{}ad8u]_Tohsːh,=`_m?Fݤl!ԡe-kUǔ,➼s>gO"^b#'X0'=F@An#k7Wm'()}|ÍtB+瀽uz{`bg2Uu;,j Jo(aў/BQ3DGf}#q껌X;܅JNBT)qpұO!LEry6'EYt߭Y}f}W)0I O bR}MOD^Y*p G֍^k(%lHe}޺HO_h*G Px2Ҽ0GGA`l7+ղ Nui5!ݝs*#0p 4^+4&s&HA%q_3_L u`QGt1#Qt+!ZАa>&ަ-OX-I!Wr?{:ח룰rʈSޙ~F daH.y.myK/(UOFSLNm.bpif:Fb"PYk8u XcDNI9fBrgg>0yb:?Gݍ lU⇂D<-M8Ti_ɿJK)^6)TiZĠ.qqMҵ|xaofY. R0 K ҋ2Ctq0B&斝UNAikt?q% `#T5= 6a|1NS8=^_rN?9"ŌG+f'\HnmAKuEnOA?zT)׳K2^"yLVU`!NA;5c:| mesof]L)Jz;dgE@홂#+Rs􁮃sGW&ξXcۅy!9=ywUNd6GWZi7rwho>Cj\1YOF!T`.Ćwr=c, a"mN]*~0r)7rs~ dyf˂Oj$}vL4̽VYk%2E4Nvt0X26FIH" r j썠j1 ADX戔[Q<ݸJy?Sw%њc!? 2g6O,oYhI7-7N{D} ȕi?suZ.oYh?%q>4⛍ꝷ-ryUaQ`}vw.W_ݬOP+k<±Ȼsc8g[?kwfo_'>l0-RDbHeT(U oV7Kj,M5el1TTn`:I VilP3,,=MܜKS16Yt%d_E t i=@|3HX-GX8ZIs()v+8 +/\;S` )G: awTÓN33f?cȤ}cȔL>:)A F1"\ƬՒktP28A gRc*WX;Z q %uՠz ֎. _rP,Pp>rP*y9O=df; /@֋Z e {xY,{9+j?lYT]gj3nm%g#Qzj+OϤ㵐l7Kн$ 3*'+k!=RMQswB#`6̰k2;\~ {kq*lHsi $ώ%M,koZAT#y#8k>d.#w:r7'ݏ()%FzQȻHD{qf$P!yb8$(n7E7{آg,V#/L5FU<{' "Bxd'*NA-ye#-0sٱkH7+* Y-bC/";٥Nv؀ Xx@o˦ZvYqCPك߾~E}Bz4E= _\&m\׶ C/P FYudGz5Rnl]5^ŭ5CƄc۠"&9Ry۽{{p$SVU8b/eIw3?|; Ě~bLZJ̕Ne'\HG*Q{ #D iYGdo>+,4ڷ΁"c쬜ĸ>'anGGͰ|?Y16陵8ưK9) _jcȐ(ߍͽˊěJ T8f޿.Rr2M}A_SzI]]:'X=cT.#9*}07h ݛTzs|bV6L(9K^ p;$BheFsBg.g]7XgG){VěL$ǝqX`rMLUGi!s-jb( ! 嬢@5Ыli TF4wˀ巙]V* ٵ*;>1S?CM0:SKHOD 0l[.e)xFa]a9:~dXIJ^a7mux[,@# m=l/  NXEi7h\\I$۔dbՎ@#Z>p%Z 2x ܯ |;"nx{v}S?FRrW^R`^t^Я/ΌY%ך;ꧡ*:ے p,qa8S}~{uy*u{ѕcbX PqҪ |򷝦Kt[߬=*mCQ!# :45A#_y;DO' 6,x)&4dJ!e :ra[{݃Z2اxIKn Ư' 0wE̠|?% ڟOl`v5gnpUJ{ .L0g8M4akpVKRL\ CRЮ] iuBH7䛕:| vRIy6cϐ[LN#SfQ\94ɓ)eԖg׮,a!WvjKib+a$u?5l/:覷RWX*Z*)x`z^J|wV'4?BUŹ|/.5gKCBVA`>B9r!Z9K8#kč-@Q牅ov;M<+̝4c")VI`$uLu/ø;o~ݓM;G*\_xp6NlAH g:d9eieۡSy7 fs4=}';n-:aI67F|Y|92n(d^Jv(y{,9T꾥W ~wӹ8*0|ۣ\w)N) L5%g z&|!ϔǥ&W=̙Z$A1wḘ+S|?Wabn0Zm: 'L}}0xK,hkB: jG&pp⇚K6gt6<\HpV$?ٙ{se:\ p`Oft+VE'CVOL^p0 goX>iaC?5X?ךSݨy5Ss\+' vЎ` hJ~AǹqUVvx)uۍ~<l!u,0"إ񔩲hv8^G FOUu ]OfPΞnw"SM 'Wo?dp̀a=_dKuZxKQ!<7~iJ'ӭxi V6ӒpSw ot(u=.j,ߨ˙6IDb\l ^-cWM9vxɀ w]\c;Ljc^`RN\;HJWZlQ*Ȧ7N>+娤6euXƚhcu$١JgJ}HV.uv?x#:BqB)Us6F(K,jߣLF#_#9b7)+xZXI8Vщɥ£ @2r~*SpwA.Z .u6UaĿz; IBv-vPQq  h#λAlkr4vmⳂFai4lS;ZS*ϲp;ز\$Y=H8 CoͯLp 7c0oxV+p΁K|ä6 FAɳosҘFbU=hQKp0"C%FjlEs2m;nGGח֌f_ɎzH~2D]ʵc g~ъ- ࢻwN݈ x@#mU0]L/?dJ{ܓ)aQ̋ x_aBsK7i]s'O b#(}i6 ,Kૌ [ 0xu{pI\%'c xZ1xZ"ĝ~u5a2$3L;h8GLfi[BϘ姓YH"sUm x6Tb? %a) s )m_x>f;[\=-p"3cѫ:nCP&K"l=[3۰J-p&3)cޥ UvJ1ܞTm$O)֮eCUq..&0d Ffeb8C!]Z;]S.i`mkK`Kl,yP D'~^7+bHvOSQb eP+,l\Ş|E 0CO >:\p1 \"4$0E>~([PX|Pщaޙ"eR[0pf=Ni>ac8!A\mADŠf|z`=5@FmɈbd:bWmOn|yr{җt)<4;9GVJh6+9;nk56*p%Ւ-Rw?HqӖ;LҼ0$  ?]Xm>S1&! 7fks L+ Q{rg=exM$T۲flQ24mZ ښiIɱ:4B"pL\4UT>׀[U [ms.[XJ-c\*A9B|B5cѢwNGxg{:4}Fmm#C+%(uaqedElߦ% (8W7)3WQ<<|M6cr6NXGgK-K)*Wfy8H 4@ _3 KQ泲$m $1cPKlyyPyrBA K(.Qw ztjK}(cZ8s j 1h(G*>K;/Nnx~y]wVIɺ+jvuFY^SvI*OA8-T '1#rڋ{ͥf@0`QCD5Y*IUPna4k zY!I7 |<c-kZsЯ@P$u+Uz^TFK] 62G/9Ykg9a/=H |k순gY!b͋~$SbDO/BtUlo :Q ,+~ﳏ@~q~"Vݍ5뉜e+-sqI""U|w9J`~1&bmHR >h7|YX~yÇ\~:GٮN!qX1^q Eø@]X=6kV藦R0Y|H8oarRPR1 Μ~,~Go&̐=ԠȂ$R%C_âa+Q]sLg%|lܜAؔCRLZZR#?c^+CTߥ\y$:mWL/0̰^TÄBӆ p1߻\MR,tob2%O3d΄L# LYΡw Ibp ꡖ_YlލH:syO GƑ߸bc"'6DOO/x6@l[s}Xp*t[( +dHxaU E1iC'͇Nmdm+}j9\?8m.xܑUIv>I;t3 HOu2{r,=5b6]bx ʻ kp_s2ru#*c+mi?t!Եj݉Etu=l(' B9֥3ĝ]0/=ĽIi>(hevxf*tBXm:ݸ)m-d vRO !%8&<AXI"ĄfƂc#J=|ZIeL#cQEҴZ5G;"G7q>P ]ʉtWJW𭊌|A3EB=1! D kN,R>9*4ɹLJ>b[$Pj1q|Gcқ]Ͳl DEsym~&y(v/6KPQ.S=AI=ⶪ+P2.Ǭ U>Bx]ن !ypghSB= Q¢Vr6q{ȡZ&}B Dqq|Y</&H!b7272 smԾOW`C|*X%/!opU\O {} (R!&-QW{σ]+&@GH'jL kcB0%Kt- 6ɥR͞0=$//<׭Mo߁&7 |WN7ˀGRk~ ?LA5Q䯛[MV;x՜gwCbw>qux-X`/A?b_KݐT3.ꔇyDDN '^;K=Sbv7XVIUDPDרa.•{.9-Bp+_NnfѴj' ҏ񡑬͟osf2*vɻtoL7ԇex[OJ!ͷ}TNĻد4\g5r Xy:Z,(Xsi&~˴* *ZhMfË8AD.uNo]@E~d4H޼ebŢEW{p%2ć4Ow Zp2g'-F-/LXI!"TުѲ[{ZKWg/xXUr`I,'= z}q}{%KC1= )WoIr¿wq̼=-s 톫Ccs|/1Q܀%ðkgܿt5?_8x]LeQw-&Ԙy(AO] E"2.бd/u%ik@s 06$}s>4un*P-HVp7cwUZǮByy K<`enwO=[#󀫊xƋiSe䣈|YuhNTϻZLU8Qթ^15UZ*{R0*4l,k\= {ճt9y4x&ͯ XAM5PMavO 6I?qûYKsV+]M1]3lÀmz*gUe* xM -ZYkBJNܜ'i|hqvЦ8f7gQG߂ PG(stzˋyd}Bb:5h-!U h2C$!#H.= Y} p2N]NjoA!6U;Z7g\:@)^XBz%^4p9= Q=Nĺ]RVRpZDy|!!zE!hj}08~.A.2]UQWr)H'@,~(m OئITlxab5tda+ 1x@($qQM(;Z潖ʢjCQ6BcN%t[5Ȓ;͎4A/eO1՛{㓊#oƻǐ8(K_k@x 3_u翩Xˈ֍OxR3(^2xo QPQZV.(֛,dt#X'e}d)'6Quȱ0r-'\:W٤rgY~>ሹīR \k<fs0{0(a^xĞ(XX0U&V ";gxN^yY<9M;¨áb~6ap =i ʆV/άJis[*}pM墨8;C5) 姆`:K,҆qZ }ƈ nni奮kZfj`E4DI#/nssnNQ;Ih{<=r ""XH eZe ^[0R*i !7ͽ.+n2,<x.Z1BdcF6>MY]vAGDԥySƫ Q:U - n-4>w@*P^60~%piƢGm[8*?KXFK0h-r1%E75¼(E HAmr4P镛'[[ +kD?Ro,V2pf~ix`B t"MIAMBWб zQQdTw|raq}uA_24)LWU8J/@*֟5Aw .VI OA:j|+O5ku;y\-ArYR 4d&RYW5iWNxhR"b^UU(fT^k*L`6 ?,f8zu$eI"Jl;DQkˎ- ;MEF@ ?*imf#zK tfh LjxJ.O"|z$m\Ajhߦ TT3BjxhjO%Dϸ..~8QauZKcKgPLћm8Zd1v =`q Ͱg%"Xdi@l 'M4kqє"6`*FɈ8=Bqc;ې蠂eH !}[SrʅBR)\>#^"Wu{xUfo -sxX~NӍNLL׾'EMUa.Zu$qJ2E $Qppgm{t%;M/]7f\O+m$qٓ{Ldj]c5#̷cbt ֜ qXׂ,Wߝ,߅9?)`o@"w-f3#[OnE%u+9-#rƻ AS|0`ſA2L ?} ˣ;3$k[ VXY[j;nMP Uq]Ř TpKQr脸6%itZDNj7H)U[56O'g#ǒ82va^MŌQCjIeKv)j)k1)<'T4 %7}Q}ۚ䐑a=wBt~ FKK =~"Wo\ @L$/GEV"xEU M3(Qu4^ nD|yI,MKG|aE:REm]U@cFSly=l ?sVaH g{ubYMѵ,C0U0͔} 𧀳npy-KQCdSUyN!HMؑ YZ