libboost_thread1_75_0-1.75.0-2.5 >  A `Bp9|P,*|I4?Ͷ|Q>D+[(;>blKuh`5CZ̐P\[f=D<3Yx*nURkL 8dG =W2fјr_Cɻf Uͅ(akRn8C+_ELinSEۄmuWicna ӓjXݒ~JZ3/ ~N4HAS_v3<<77]RSt+Iyj90e8b1c6afe3ab3ad0310ac011e40de2faad88071abd421e9a84e26e250738aa2b3b112b426bc935bc37a6c2273fa9f278955883(`Bp9|rmUePQxSֈݶY1['et[[kø_2)ɑ"t&\b.*&͚0z6W\w J:+/r"1KCK&*a{'jgQbTkʘ >p@ip?i`d # B|   " $ ( i lpuzT(8N94N: N>ff@fuFfGfHfIfXfYf\f]f^fbfcgdgehfhlh uhvh whxhyhziiiii\Clibboost_thread1_75_01.75.02.5Boost.Thread runtime librariesThis package contains the Boost.Thread runtime library.`Bibs-arm-2 SUSE Linux Enterprise 15SUSE LLC BSL-1.0https://www.suse.com/System/Librarieshttp://www.boost.orglinuxaarch64 `B4c12476678a88a6661ef798365f873b6eec0aea9f28260cad72b7c12efe9a76erootrootboost.175-base-1.75.0-2.5.src.rpmlibboost_thread.so.1.75.0()(64bit)libboost_thread1_75_0libboost_thread1_75_0(aarch-64)@@@@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfigboost-license1_75_0ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.9)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.11)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)libstdc++.so.6(GLIBCXX_3.4.9)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1`"y@`__1@_H@_S_s!_a@_P_G@_?@_:q@^j$@^Y^[]}@]X]]m]@]x]w@\"\\@\}\Y@\@\T4\HW@\ all libraries except the parallel ones * gnu-openmpi2-hpc -> parallel versions with openmpi2 * gnu-mvapich2-hpc -> parallel versions with mvapich2- Simplify _multibuild flavours- Update to version 1.69.0 Breaking Changes: + Logic: use explicit operator bool when available + Boost.Signals removed New libraries: * SafeNumerics: A library for guaranteed correct integer arithmetic for C++14 and later Updated libraries: Any, Asio, Assign, Beast, CircularBuffer, ConceptCheck, Context, Core, Dynamic Bisect, Fiber, Filesystem, Flyweight, Function, Geometry, Integer, Iostreams, Iterator, LexicalCast, Log, Math, Mp11, MultiArray, Multi-index Containers, Multiprecision, PolyCollection, Pool, Preprocessor, Rational, Spirit, Stacktrace, System, Test, TypeIndex, Utility, Variant, YAP For complete changelog see https://www.boost.org/users/history/version_1_69_0.html - python_library_name.patch: updated to leave Boost.MPI python names unchanged. - dynamic_linking.patch: refreshed - baselibs.conf: updated to 1.69.0 - cleanup spec file * removed no-op conditionals * appended -impl to all unversioned named Provides: to facilitate introduction of boost-defaults. The defaults package will provide upgrade path in Tumbleweed for -devel subpackages.- Stay with openmpi also on ppc- Fix build on Leap < 15.0- Update to version 1.68.0 New libraries: * YAP: An expression template library for C++14 and later Breaking changes since 1.67.0: * uuid: sha1 detail namespace header redirection for backwards compatibility was removed * signals: Boost.Signals will be removed in the next release. Boost.Signals was deprecated in version 1.54.0. Transition to Boost.Signals2 now to avoid disruption. Updated libraries: Beast, Context, Coroutine2, Fiber, Fusion, Geometry, GIL, Graph, Lexical Cast, Log, Math, Multi-index containers, Optional, Predef, Program Options, Python, Rational, System, Stacktrace, Test, TypeIndex and Uuid. For complete list of changes, see https://www.boost.org/users/history/version_1_68_0.html - refreshed patches: boost-no_type_punning.patch, python_library_name.patch - dropped: python_numpy_retfunc.patch - no longer needed- Re-enable python2 module build by default. Still too many things depend on it.- fix packaging of Boost.Contract on s390 and other platforms without Boost.Context support. - fix build on older SLE SP by owning /usr/share/licenses directory- Update to version 1.67.0 New libraries: * Contract: Contract programming for C++. All contract programming features are supported: Subcontracting, class invariants, postconditions (with old and return values), preconditions, customizable actions on assertion failure (e.g., terminate or throw), optional compilation and checking of assertions, etc, from Lorenzo Caminiti. * HOF: Higher-order functions for C++, from Paul Fultz II. Breaking changes in updated libraries: * atomic: Breaking change: Changed the result of the (op)_and_test operations added in Boost 1.66 to the opposite - the functions now return true if the operation result is non-zero. This is consistent with other test methods in Boost.Atomic and the C++ standard library. Users can define BOOST_ATOMIC_DETAIL_HIGHLIGHT_OP_AND_TEST when compiling their code to emit warnings on every use of the changed functions. This way users can locate the code that needs to be updated. * multiprecission: When converting a multiprecision integer to a narrower type, if the value is too large (or negative) to fit in the smaller type, then the result is either the maximum (or minimum) value of the target type. This was always the intended behaviour, but was somewhat haphazardly enforced before. If you really do want just the low order N bits of a value, then you will need to mask these out prior to the case, for example: static_cast(~static_cast(0) & my_value). Note that technically (to avoid undefined behaviour) you should do the same thing with built in integer types too. * spirit: Removed `with_context` utility: header no longer includes boost::next and boost::prior as they have been moved to the iterator module. Instead include . Other uses of are discouraged, it's better to use the header for the specific functionality instead. * uuid: random_generator is no longer copyable Libraries that were updated: Asio, Atomic, Beast, ContainerHash, Context, Core, Coroutine2, DateTime, DLL, Fiber, Filesystem, Fusion, Locale, Log, Math, Multi-index Containers, Multiprecission, Optional, Phoenix, PolyCollection, Python, Spirit, Stacktrace, Test, TypeIndex, TypeTraits, Utility, Unordered, Units, Uuid, and Variant. For complete list of changes, see, https://www.boost.org/users/history/version_1_67_0.html - refreshed patches: * boost-strict_aliasing.patch * boost-aarch64-flags.patch - python_library_name.patch: adapted to not append version number to library names, like new boost is doing. - disable python2 builds by default - use regular Requires for libboost_header dependency- Use %license instead of %doc [bsc#1082318]- Multibuild requires versioned Name: tag and doesn't seem to do this automatically. (bnc#1076640)- Update to version 1.66.0 + Beast: new portable HTTP, WebSocket and network operations using Boost.Asio. Header-only library. + Callable Traits: new library and successor to Boost.FunctionTypes. Header-only library. + Mp11: new metaprogramming library + Asio: * implemented interface changes to reflect the Networking TS (N4656) * functions and classes that have been superseded by Networking TS functionality have been deprecated. * added support for customized handler tracking * removed previously deprecated functions + Atomic: improved compatibility with GCC 7. 128-bit operations on x86_64 no longer require linking with compiled library. + DateTime: Fixed an integral overflow that could cause incorrect results when adding or subtracting many years from a date. + Format: New format specifiers added and volatile arguments can not be safely used with operator% + Fusion: * fix compile error with std::array * remove circular preprocessor include + PolyCollection: backported to GCC 4.8 and 4.9 with some limitations + Uuid: added RTF-4122 namespaces in boost::uuids::ns + for complete changelog, see http://www.boost.org/users/history/version_1_66_0.html - refreshed patches: boost-rpmoptflags-only.patch- re-enable Python 2 by default. It's still conditional, but remains enabled by default. This can be disabled in project config.- build Python 2 conditionally- Use multibuild setup - build no-dependency libraries in the base package and build the rest of the compiled libraries in the main variant. This should speed up bootstrapping. - boost-devel not built by default anymore. - libboost_headers-devel now provides boost-devel for legacy dependencies. If you need compiled boost libraries depend on the current compiled devel subpackage. - run %fdupes only on the header files and documentation - drop build dependencies on gcc-fortran, chrpath.- Setup MPI environment prior to building boost. - Switch to OpenMPI2 as OpenMPI1 is becoming deprecated.- New upstream version 1.65.1 + config, fiber - Return a continuation from functions executed by resume_with. + stacktrace - Change preprocessor file extensions to work with the installation system. - Changes in version 1.65.0 + stacktrace - new library providing call sequence in human readable format. + polycollection - new library providing fast containers of polymorphic objects, from Joaquín M López Muñoz. + For full list of changes, see http://www.boost.org/users/history/version_1_65_1.html - 1d862615.patch: upstreamed and removed - gcc_path.patch: obsolete, tr1 module is removed - mpi_upstream.patch: upstreamed and removed - boost-1.57.0-python-abi_letters.patch: refreshed - python_library_name.patch: refreshed and reverted upstream changes to mpi/build/Jamfile as we are building python2 and python3 versions of MPI separately. - baselibs.conf + add libboost_stracktrace + update to version 1.65.1- 1d862615.patch: Fix regression caused by refactoring of serialization code (bnc#1038083)- make python-numpy optional build dependency - fix building of mpi python3 plugin- New upstream version 1.64.0 + process - new library providing cross platform methods to - create child processes - setup stream for child processes - sync and async communication streams with children - sync and async wait - process termination + geometry library had some breaking changes, - ublas_transformer is renamed to matrix_transformer - explicit modifier is added to constructors of rtree index::dynamic_* parameters - strategy::area::huiller replaced by strategy::area::spherical + context library updates - deprecated API:execution-context - fixed bad assembly for fcontext on ppc64/sysv/elf + Updated libraries: any, atomic, config, container, context, conversion, core, coroutine2, fiber, hash, interprocess, intrusive, lexicalcast, math, multi-index containers, multiprecision, predef, program options, regex, smart pointers, test ,typeindex, typetraits, unordered, variant + for details, see http://www.boost.org/users/history/version_1_64_0.html - Build PyNumpy module + add build requires on python-numpy - test_lowcase.patch: upstreamed - refreshed patches: boost-strict_aliasing.patch, gcc_path.patch, python_mpi.patch - mpi_upstream.patch: pending upstream fixes to OpenMPI build - python_library_name.patch: we are building python versions in different stagings so drop library renames. - python_numpy_retfunc.patch: rpmlint fixes- update python macros- baselibs.conf: (re)add python 2.7 and 3.x libraries- Fix dependency typos.- test_lowcase.patch: downcase Boost::Test usage of uppercase variables. VERSION was clashing with GNU Autotools define resulting in compilation errors of various packages. - recombine headers from various devel subpackages under the libboost_headers-devel package. Not all usage of headers that have compiled parts pull in their associated compiled symbols. - general cleanup of the spec file from old, commented stuffs- remove non-existent dependency in the boost mpi python package- update to version 1.63.0 * updated libraries: atomic, container, context, fiber, fusion, geometry, hash, interprocess, intrusive, lexical cast, log, metaparse, move, optional, phoenix, python, test, typeindex, units, unordered * see http://www.boost.org/users/history/version_1_63_0.html for complete list of changes - refresh patches * boost-1.55.0-python-test-PyImport_AppendInittab.patch * boost-strict_aliasing.patch, and enable -fno-strict-aliasing for python module - baselibs.conf: * add libboost_locale * rename python to include new soname - remove python-2059618.patch, not needed - make build condition --without buil_mpi work - allow building without python3 bindings, for SLE11SP4 - remove versioned build dependency on libicu-devel, apparently not needed. - split out the boost-devel package into individudal compiled libraries and their -devel subpackages and libboost_headers-devel package for header-only libraries. - remove all the -mt.so symlinks, probably not needed anymore. - ship MPI python bindings for both Python 2.7 and 3.x * add python_mpi.patch to allow proper compiled library loading - dynamic_linking.patch: first attempt to remove static library generation during build process.- Revert upstream change that set default python version and ignored user configuration. python-2059618.patch (boo#1006584)- Rectify groups and description- package boost-jam - add missing ldconfig for libboost_type_erasure - fix EOL encoding for documentation files- update to version 1.62.0 * new library: fiber: framework for userland-threads/fibers * new library: QVM: library for working with quaternions, vectors and matrices of static size * see http://www.boost.org/users/history/version_1_62_0.html for complete changelog - remove boost-fix_include_config.patch - upstreamed - gcc_path.patch - fix GCC search paths (bnc#996917) Boost assumes /usr/include/c++/x.y.z/ existence for GCC 4.x onward while our version of GCC only has /usr/include/c++/x.y for 4.x GCC and /usr/include/c++/x/ for 5.x onward. - migrate to using %bcond_ instead of hardcoding macros for different Boost features - better way to limit max number of compilation units than by reading /proc/meminfo and guesstimating.- Fix boo#994378, boo#994381, boo#994382 boo#994383: Fix build issues when optional_fwd.hpp is used before including boost/config.hpp - Add boost-fix_include_config.patch from gh#boostorg/optional#19- build it from "boost.spec", but create versioned "boost-1_61-devel" packages- build quickbook also in versioned package- update to version 1.61.0 Details on http://www.boost.org/users/history/version_1_61_0.html Obsolete patches: * boost-1.59-test-fenv.patch * boost-deprecated-type_traits.patch- rename package to boost-1_60 to allow multiple versions- Fix build on systems with GCC4- Added libboost_python3 to the dependency macro. * boost-devel will now correctly requires libboost_python3.- Add boost-deprecated-type_traits.patch to fix deprecated type_traits usage in boost/graph/adjacency_matrix.hpp header.- Add the following patches from Fedora to fix underlinking in boost::python code * boost-1.57.0-python-abi_letters.patch * boost-1.57.0-python-libpython_dep.patch * boost-1.55.0-python-test-PyImport_AppendInittab.patch- Updated to version 1.60.0 * New library: VMD. * Updated libraries: Atomic, Chrono, Container, Context, Core, Filesystem, Flyweight, Fusion, Interprocess, Intrusive, Lexical Cast, Locale, log, Move, Multi-index Containers, odeint, Optional, Predef, Test, Thread, UUID * See http://www.boost.org/users/history/version_1_60_0.html for complete changelog. - Modified patch: * boost-disable-pch-on-aarch64.patch - rediff to a new context - Removed patch: * boost-1.59-python-make_setter.patch - integrated upstream - Add libboost_type_erasure subpackage- Add support to Boost:Python3 (boo#951902) * New library: python3- Add boost-visibility.patch to make members of basic_xml_grammar visible (boo#958150). - Fix redefinition of _docdir.- coroutine2 depends on context, disable it if context is not built- Updated to version 1.59.0: * New libraries: Convert, Coroutine2 * Updated Libraries: Container, Context, Coroutine, Fusion, Geometry, Interprocess, Intrusive, Lexical Cast, Log, Move, Multi-index Containers, Predef, Program Options, Property Tree, Boost.Test v3, TypeIndex, Variant * See http://www.boost.org/users/history/version_1_59_0.html for complete changelog. - context now builds on aarch64 - Import two patches from Fedora: boost-1.59-python-make_setter.patch, boost-1.59-test-fenv.patch - Drop 0001-Fix-exec_file-for-Python-3-3.4.patch, 0002-Fix-a-regression-with-non-constexpr-types.patch, boost-uuid-comparison.patch, boost-unrecognized-option.patch. Fixed upstream.- Remove unneeded dependency on xorg-x11-devel- boost-unrecognized-option.patch: remove unrecognized option -m32- update to 1.58.0: boost docs remain at 1.56 since upstream hasn't updated yet * New Libraries: Endian, Sort. * Updated Libraries: Asio, Chrono, Container, Context, Conversion, DateTime, Flyweight, Function, Functional/Factory, Fusion, Geometry, Hash, Interprocess, Intrusive, Lexical Cast, Log, Math, Move, Multi-index Containers, Multiprecision, Optional, Phoenix, Predef, Random, Thread, TypeErasure, TypeIndex, Units, Unordered, Variant. See http://www.boost.org/users/history/version_1_58_0.html - add 0001-Fix-exec_file-for-Python-3-3.4.patch , 0002-Fix-a-regression-with-non-constexpr-types.patch: Fixes regressions in 1.58 - drop bjam-alignment.patch, boost-gcc5.patch: Already fixed upstream differently - add boost-rpmoptflags-only.patch: Build only with optflags - add boost-aarch64-flags.patch: Avoid using -m64 - add boost-uuid-comparison.patch: Fix regression in UUID operator< - add boost-disable-pch-on-aarch64.patch: Disable pch on math library to avoid compiler segfault- Add quickbook subpackage- Use $RPM_OPT_FLAGS for building, force use of the GCC toolset. Be more verbose and fail building with the first error. - Add boost-gcc5.patch to use -std=c++11 when building the coroutines module which fixes build with GCC 5.- Revert the python3 building: it resulted in BOTH libboost_python libraries to be using python 3 instructions, resulting in failures of all Py2 related packages./sbin/ldconfig/sbin/ldconfigibs-arm-2 16149968921.75.0-2.51.75.0-2.5libboost_thread.so.1.75.0/usr/lib64/-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:SLE-15-SP3:GA/standard/b77e22e44f681854178f83ae29c5b20e-boost.175:basecpioxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=5110e3b5a07de7d6ba2364921c43331cfe120950, strippedPRRR RRR RR RRR RR RRU+Ӧh3*Ԗ7utf-84e84d17902946a59a181f00126afdcc3d7a3dd659803a83ad629aac62aa0ec2d?7zXZ !t/ sN] crv9wH~TѦ΅`b_dzy6){u0z?[#&+9yYa jGL WGc8(LH,ҕby@3 Uva36A*{#UV25.BqEK*Y 8˝ ,=V[.;Ѱ#GK%nI>IIwc(˚5ɓ$RFgy9, Vg|dX)7qnJd}:v+DơbsA'l>i2'u2jp%_@aȐ+{VH>-S83c!*?TOx؂?!3Ho(=œMo6|SS i+hj+]4__3@׽1 !~_ԇG 2וQz(峢 E%]!"eJL?uQ DԼ) EFq@0Xw,<3 = @wux鵬Fj>j m45?g[#S|53[F) ;kARm45ȲD_ߵdkN/PT_r.^nU0| #"~T'ظc5.-7GMX1LhGer;BCb 3Q a JK$?*x12hXm`}(F皳t=S ڧ=`  K"&N”I eIgyal dYRj8<}'Zid  } ?zOތYtx)H7Y9zXUܹ͝ BTo}BױL:ͪVj"}ՓBPA !L! 箱RB Hy»KOףbW~(όZ7vFfp>"[tB8N|1XT uJsIYcU lzaeGHg_čST$*te\z7Wfd&>9^, {g.hU!zsahW>nC}EW 'r9{(Zj[^2E$at+H~6tvQX%<0gٜW8lN 3F]9/[9&9J4U0 EX31Q@fOT]dB

No /En>|ۢOGpsRr~pŞzM޺s ]cwD>obZ7a)(ŖoK,yroSCP7Xͻ`K&fs^K[c7 lqFMAv1::KyY`N~ ^ +Xl:[OՖ; -ko&\/khMx 3=VۭExF7#QoyxFQțP 싶[PY#ANC혖0bɥ#[;=ZvFvx|g 2<6S)wVv@ooXخc)]?ZEc1@F6W Yx" Qs`lq``Z7c.ێxi*l#T"n~3|[ҬǕ2`_9S" F_o:ka3y+S]>L,} Q n/=dPgANks.i/rV aƩU^4sq:%ls h6 D]9'96SKYБ %prAZs'MD'tZg12?"DR;|[k~œ"ÛUGel9}&B)qCgO2O1QfYX|EVJ% !Z/9Y3+wU{gɠ,iã>lGOpFi( u- E)sXwΡv.o6?+11«端q& Z*U"Ѱ`C`$}rxt+ pRnAŠ##[(c$2eJ,@jt4{pr@.k._{x,ш/yIM:LwSm\vjrg;4=3J/˝#;{AyJ|j)=AB@KPS ѳD8 5B yVvW|RfUUVf{Sk{nidTfj [/e;QrƲ7mGعE7b75o0mofe-cHԆ=&?pD ٌ- 9U޾ݟ 4,~U\ -)"Jƹy,@]kn1Z%o#{0HT{RCEÃdM`eB>S2Vp0SX=ASQ;~)k.y%ٗGYűށ<_DӴy"gb[[ٺ& Q k3)3nsK0Hu Mh£!Z<||58UÛ6[0֨̿|H 6 ]ɨt:[e)[9atE;9ф"0f$NԹНB4%M+X{\QHpY4iGe@56$j~P/2cJrSzkn#@UfVŢ*,bvwo#!gչyS ~ ޷M-Ą& c$PmɊnI-&,A+Ϸ+b~ +29V\QPLR.VJ}zC+۰'8.Ą.GRH0 q /Rw)%=iE,HK](EߒU\ġ@QI 99^wY Z_N@P$vCރAS2uS)io F{BW[d~=8KHpǜF<|LSYD5ES&3=2[7#knK68Cy87*6$,$uoAצ}-xt3SRBK,¿,=t2$-{i5*^0=iѕ$;]\- bVEf_^vϳSj9~VRiw1(}aȑǤj>3|VY"[F,7st 0TBE1% +KR0طJX;~2LBޝ:`?$ˤtD!kX_ZPKD-&-WW }\A P,!yVI&Z|7XdAC0a7 |@~- RS$  ,^]#;sL:mP%2CZ޽_\?IJ?eKO.cM n6@S\v-1rQRO^ VW;g(l_GYܝ2IH*B (rsҵF)AIhH1^>LDś%om 4I8JpӬ,F)pzԟbʑ1=e[FW zLˬJ /iFRfs@(+Bb =vTdIvV̦Y+]*l5YSeH>";@#AaTQ!K8΃zj@d: iB;h-Mt:|FV)vl211T@rX|c-sHj>Ok6rA)b-f)]%IoF__P((E#U7VbOU>]!cכn#iΣHbo{Wq. Ǣ|34Qo{~=Ia%B^_d$ N-H{Zз!u *(3Zn:P6h~U瘱*0jZ0b#{Upio֩Kv`"(rʦR=h r/Lє+#J'beUuI~WG (,ۃYR- դpt¿[Ҕrхn`]䭖7Gd&EΓITjB7@GU5?=!ofoW0Vy6~8m60,Y> n,ġ͛Qxۚ􉾄5n/J#l2ڝO "y0A56\Q" n.F%#l--jӳAӉw`}3%f b'vȺ <;Uc 9Ϡ8KLUaP;Au[q>ulҁ0 hSŽ3w8+r萻.>|O+z^uM\ej 1ڛVh}4+d =GKj_bR> G2f|=ccQKe~lLuӶF΀~n}ȒY`0_Y>Aǽ/ӰoČ5=JC2trsAw ʆG8X w {3p!&)YGUk(8Kl`0FLAvO/Rp{~{bW g6'^Gr~ᖹ7g0w@憻ZJkz^8 ٠Yg5y%3fjwY(;fuV3MrQ\qށ*i$mV zWY0Zlf;bi}]yCڽb7ٹĎY<щ;DX27oCrE?ff/\Uf[US;Y8U7n(zxP8e@wUArxa#uB11 yK @=:0qɣ,"UEBf4y?%- bl>eh|l[ОwW_/eIcL C7q'`/1F pWO^ms"K_Ys A.B9N]N3 N u_=rx#RIb ⡝28"h*0i'B2# ~WBorM5<&}\זpI]GCx<\1=X??軘h- ":ʿF*LC@ӥ1ۺPCmaZr!,TN]-$fi1< ++d-edQVtY):eJDaEկì^n #bzl񏻞 ʧ޻" S#Z+Ӷ*V`+:rrҩKo4^t!J[.8AK)5l/-rv4l^!K6otcQ ghހbUɻ(ea'}G`.0⠚(er w\Ny W^ֺ 322E=\ ] ZB-Ħm.VLܤ$B^(&&FX o|ƙaw[n(F2@GosH1I4 R`@&ݴ0 %pnА 4ұXqszux&Um^cӷDG 3YD})Z"WOh/?,"u*{Q[H.I4i*2AuMkLF wg@G^E(& F”5QK )@t"Z.VBBAI3sQ o)'~$|JFܛhM'O -lٕ0". h-ꐈ9LiΈM)%n<3O#~4yyP*A:Y7VfVW$_"I~s:`.kkᮦtT܌xW[UkmؤPAP?YDѝSut. Ötca _"UBTmZг\ yQ73Dϑf [ɔTJZiށJ/2a зOq9Nk%#P Hx.zry27l6'qA.skM-cY|c/̱-mr|6ڄ0')n W3 _ D:iK O"6 a4\xkAw41#-$0P}hZ:2!W lx, on''N/ h kL9lNc2Ƶ)gylc%AИ~4nyNɵWhW qtKJssk`1[Ls`6.74 GjNGCSLYD4#Gܳwj 㒊{:ޟ)ðH! /l+z%Ls{602a!&\t*nfIޠ؋@&TX;U\E==`8UrCj^DTy$[1+u2wϺ<2{>JEFYg&MD5+1"}sMU'>]2T]m (!lYH}Gu/mCDع;{ '~Cԏ||l6U =-׊ꇗZ܍|f' (BC׏n)nppzƫC U<\;MZƇlY J$Қ,%pmͥI @m[>ȧ3+;H i-6(F UBb*XEpMr01Oray(˗4a6n2Æt""TnIPcPGZA-Cra>?#,#G]ٍPg.@_u=?#lڭsnuzvEAC7}{y 4}2#v#vb[uo p/|獎J WVr[aDGa|y,o)^,,{ s:)5"fR7V.2?rwOR\$hHTp|W侢*B1)3!XI[bеtlUc-85"KmnHOAzAe `%S~fA$S&zTmwS%Z!EͭL\h䦛DϩM)ͮ\K{a0Z~w2EZ ph'R *߬8?HU7- P IQ0X0>*T*SJOhWM$x rD4r鯑NTۦ5bg꯸~2 g^S<޷=B r\dTX ݥ(sqU;_?r޾ё] [YS \aM횏>Z;KpF/opiBobѣ Cys~l_`VԧJ W.ЄU|_\`$!q|o4ɁđJkkˌ%O˛X$!pv׾,|zo܆;Id1/0:j6we) Q⃃կ(lBȔ?8pn$@Rj. 9;,45[ TV }G}d>s&b(fBĬ5H Uv>H=xt>Ќi6G%G wA$|9j>عx4CG`Yr)?ZPtD_XBLkBsU51:^iٖ9Xͩ8DZ{)܊2y HGoul\3o 8?-XCYP:wqI Us|祑[GL*}hKeV![gYP*&-`6:€eV3LI<_/I,âv %0Ѭ\tNFr[h)НW4?D$ļ,Em-)4k`\KN^ Rb->zQGkj(MK r0.ϼ)0ϻnٵ37>Ì~(Q;ِF1 ٭61 rpHfq%5{ |z;#ʣGx$'~ pR]fobGNpe~pGlt\leF]]Y6޼.nM>هj͓֩ʶ `9! ;ZeVf1L#e%51IO&,MaMLm2ݵQOgSKMYzA! oK/aT ~D;!"",0C&_&'b$=vc8lrjY{/ҚHכ'PB|O3(ls%o#j`E??vxJ7.k,df+?O]%J3Ia˥G'9>S4ƖDO nēK3fw'lu ^zk`8ə=_J7p{WM}`삷+Dl=Nt9H$uJrfM+zم b Ñ h_]>Z6(F^6"O\+e&`G2i8x;>MaܿO-:gX))U(U#<I}ڰ*PFK2JTUn33ONTy}>\u҉,*5urDfF.|v= cmDŽDT^//HqSM\~ DwZASd7A瀞#ENOӶ+cwK&G7#*zRQs{>[HHEգP.a.T/Ve eRZRe:"R״Cr"! gT`,tpKkaIKr{䖩F42 wJQOcGmBDgyG_SUv>W1/RUtxy?%}o6 J<_.,4i.9*NSY,E+8Mn'd_IP';6OsҬFKsJ@۾K7 rb<,!?ƾ c88=إHK^G\F+Ï1RÑ%:WnDk+eEl9HB,o+]І[&Y5AW=WաW2`FIe 8ŦiIW8Ck avz89s~ޠ-Bؒ7r!V],mv 4O: 7 NעkMNYIrN՞ʠ.-も2S|3]}  =+mFp/wX[/NR2aeľNfhQ^#T'm*Eʐ5RsKic{Mmi܄q0SB@[p4ЊlRd:Ja9}&F֘unq$Q gő:!«xӝb`7$$"6gƖxeE1 Nc•Ҫ_xK'!;ٽFp+}33* *kEI߶?w&վWZHUWvuh<7m Z*n{o*ڟ恚O6#omM=`x1܃?g&C5]+g{D,^,`m%SI8{C )Ẫ*KT8>}UF̼8`Xq嵶~;5PtoPrs_D 8e#s_Rn-OQ+o8Mvozv]0PIH_>\<Ӭzsh}v`+<-~~s4ǦbZȨBRUQt@Uңg9~J6bT!܅wd /1jOׁd>q/Fme1FփKiMRT@aC!]\Xb/g;νH-ɒIxbsZk힥d3Ifq;5 N8?UQ}-seq -XAxI]Q nK|]uSܹ>[ˉ2GdOzxGacP8ta‰|@Rۥ:Ҳ^YB~fuw14ORNSJ9~r;>OLi4M|nǣIiyfђ6043#NN|ȟяIaMKDj:yACpOs{zHե䢌oM(>Aѕo؉%~|H}^b>P0`;I$x0yBHv\`az6-9L| „ZIE);x .Y4`~{/}V5IdoL硒%z}3Rmpa> RE}v|ZvRj[4'Z2E%,MqЕH`#sdkɀƵTɹg _ʫvbyE,{}Cx ܤKg5="(8+h*Ѧ%Fò1o,E$&;;I[|\/߫|Ϯ+׺߼ "CXV\ڮ!:HP֖ƖZDvkW/لʩTQϭ[_B|ɒТ% y^q¥2vLaG2rj}Oǂ7T~Q9ñ2. (HKr@~etN~`7S&.id>%uk W phQtC\3`m%YTuT4DgwìsEj`Y'T-H,x6kMVKS!O%NJ`Sx<.bs^ @\Nn[,?Pp.r2 Lh[ڦBv<=o15V?uЌ!1$V# r髆ΜxEPt@<9xbzʷ q߭QVG31V#Ŷ gDU̱sEjb*˄e"B#tē%G)ֈDK[6S*6כ́TS$h, BP><P +#6Y4+-, tOE40.."3q ~b*톚6K0:ȇ>߮^tmv=ae$5Ј/X%xI,pNL3PsĂ ZeͯXGAYoT/ݎb=YWKv}Ѓ \󲋄C X֊v7/||3tLa ޜ-kO-YT&yJAStވX%?`o夼 'b#ŨnL+p E0gw)4!֏J3P9澈8f MdװkxXHň6̉iExjaE'bw8Gb?MDu &2QBB{ӱv뽮VWrVHURWKrfTeut?'of)1̪?0˕eK<țI'~ _2{[oh`:#vWx 1׽Qf&v+m%Xf/ٿ`i#"V3¿:ܧgdZSYtnbK&<ӌ&XtES?/P847\.7".ҷ|;r ,[=x"/3Ӹ*`^XAU8-_t V(UN[cxc-M,wYM֏ҿ׈M6v;TޅI8N=%=Lr}ͫ6lJ,bsT~Zh%XwéYB<-?g8rj=uR{ 6%%zsI$?P{Y<Ͽ|D}A"g4*!M]ƘbS ̞5 5g^GcXZHr>Igsݽ21^mcl`;;uT#3(%ߗ?Bb->!8`hp&dwKwVSM3DӰj67fEG.8 cʫՂ?㋶pl޾τSHEGiihq׸7/T,!~ai e[2m[0?jpw`R]ޛTW"}YK54!>1@؁N܏T Ȥ=b8wTr.^SA\Z S4-l,R??LOT=0Ms%D á{uAȌ511{/@Kkp ]vJop#GV?p58.q60 ff06[!~'-GVesFW!,PrA)%?>tk;eĦ5o㜭&n=왝nX?rg(.5L*܎ȟp  tHdo A3Cɂr"JW,h` Ha(XO\(:)[9'X` p.r52XI7TTG~-:xwڔ}-_򚢠noۄts\V9L+W5M(;d>>Qmu5p'@2}yݭB$??O ] $nhǟ) Od{"S+q<,pL4[" ,dAt.=v,[SDc_ǮzNҀ*\U*kc8$4h+70y$}6-nbmtM} dk\fu>[T] q䃙TTG[k( >QKgbQ0#( EbǺ pg=&w\vTeTԬuK8/-ID;f~_Orhdze)&X۠aR PD]Pz-:G gWeth^l)y=l.k|$&elyњ Լ}ÄT/3g+1OSHh8٫Awoun ȮaC2Akm[ɵu lQslibX8)sDSҺ"}9Z!Puq+jw> J'OW˓EYN} LC )C*ʝuq$5Ơ"}90@-pAU *WC?Nz_G=8nnKZ0KʨCӄMBWNzGڣCrJ8pyeȖP DTb fd2u{?bRڠ[{qQrB=lR4zkϼg"[cV܎ZOؘ%y9:zR%ήiU,)̱" & iŲykgGZÁ>J˜uƈFjܻXmMԋVb"{)K)ݩ9. ޵ 3~Sƒ?ʺ0r}K6OZީ+s&4}pk'zs0 NrFwL﷑ ]g<^ڹo#l#_IR$hݼ? H3Bŝ./~7MY~^G;Go v(,;7n!E;˸H+ġ}nϞl'ӓ>_E&3Di?g-fƈeא揶seh ^y"rͅNm>jMi$%≮ҒMxV_j~(p%3(nl/:'A@֤Q:ďxR:yS"n@mJb"?~.L ˨Q(ڥ| fy:N-Jn8$~]R\%&I.l4}M?Ԃ]9EAb<}.礛ZDO#t-=us:w5>Ռ 9=v`iiL"XoGx]i؈Y^&d>Ol8.IEź,8JjCz$GiU6;0-ZphʹĴxp󾜬0Q6a!cZwbW- 8aq59<$*@m,-3SxSq)޻vI_C9âJهN ,SL-46$І`'ۜ;FwKR%7h/3Pqf6+i,cʋl|]({BѦ `0 H sTM@TR8{iTDk<bC r٬.j w^66S) i%b~sG4R[`pʪ|O "$u 6v=\3h笁*1ezA_)5?$:} ["~k>;bMr6g[[nVQd y1Wm9Nm/WHN+Kͪݙ)O;g9KqNC*D/]}8y8{|1mS..9o-b'y}(@EJ_U xhv7~Lzjq 2rd4} 8$ 2HQkNA;B T8 qF֊;~^*!2O_/^jPJ º̬:|Q]i2$R}0jPƻ+9+g5O/YvaNn}9JKXh*xYQjv_Z6XꤗtmiJG졢~wӞm WN)E=) aan9$W !@dt .c 3 PFSsߵ%( 0ic/ON UJj#^l9݉}^vȝ*ai,@t0+2Jk$10ݨk(Y-;Xϼ8\No4V-evhs>z@h4zD6~˛lT |$QIB|aלW+Qc"jIG\b "n;Мbzed |(]"wS/Kcga:Mݢr߱Pu]8`;`pRhdb@nTΛAd:*P˄[KNjb@AB9AaOY{YQ^DN܍#l/l2wi`ЂR tD*، ϟuYr\\ea"NN#kIΐGK'ُF;ݺ"D%UP~@9^"M=ň/⢮K6\=e{38|Ʀ|rq?Ԭ;d[4\_wJ4Z"ૡĘ)3yHXō5 k8"tܚQDI{CY)uv!iK V]b?$(VI WJ+ڨaZ eeY$~ `2I ikWwT_,[c9D|m Qg>u*k\x;gMl~?8ѴO`Oi (ˆ~fvn,L^Tߢbf5M֯7wJ*PT[Ħ8eWv)vSS}AD..t W$z=[!?;>7H8PEJBoD+.xrf>Yfpq PpaRYXqBRq] 'w*g]3rʨjrqM.#;0iF:=(Y݂:+!'-"ș}^Ձ5 TPsqߙ(ǁZMw+9RskzLdV3w&^E()`F-h|ӼWb%%gH{lJsnZx>q+C:FR[*]\üaVb 8۠}2n@*|8$* 5E%ޝSˢJX}_ÔznqFN8bޗbjΟuIT,%@ͿU*JCln%h 'էٌx/Ə"xЎmIQu*UVrZO]<- O{Uϸ"N*W|nj8z3'٧9_FFLU%GDF^%-6Մ/U.)Z؎I#P+{9F(0]܇͏YYU 1%U}2~'k`pQF@!so9'n&ԐWzOCo┉e߄l-9b}}\H3TdJ6yRzdRjCc7IBsA/-2ZY܌`)5JJwլҦeQ!JaT?ׅi~ña B}[TOvt JS J:pRacSqq;N AQy q$.MpFnNcD6=J#Qs-#ً(yGS5(& mp> *y 3HsS_jU'EXH`~ f*k庈t\jSf0(D9y>% G6Uʒg{2WǮ-"O [BbN+iIK̮5i4*0ugXXqUdYW.kA|$p[ +\BhU˷7=́3VCokE9Jh\- Ndd1g݀G_1py8'ө,Ց[s>#+EPs7trtPGBhA>MIis#rN Rf2!V@!=0dbXLgCs:ǻ? `&aמJ?eE)?kQc.[OGͼ†Q[T<zjŃ9VmX |*h\;!h9>ͩ5ib"F.s8s*Dž5) Fn`d;@I7& ?2FpPGUlqr.0OwߌUTI5V:V2J {;XZEw/[!y [}C\?kT|&KdRA2|*&!>tzX3BJhT1aTE ~JWf}> `( ` 䠎K)ayӳF:zxIq}ii![ID#C˕w"&˻n_r];{#k#2r~b|"rz23j{wt3TBNwk'հnmkHj3>1YjŜ5b n 8fv^!S@yQ-ժ6^ $YKPT;SzfM坴4oז) 1^ Xw{sNt0Iꨐ3yM@l^<#9ڦpM, $ 2e`c Z׽ x3b>3Su r-X$s5ϝXA<חRQՇ~2CI}Vɧq9hˁXM`*1Ahnȟ-^:ؽ.qJ<H|_c]\jW~.h.gt|XoN"!5mx;e sIM/p'M-Q:9@$Q~%jQW1ә*ԉtwa33գT |OQ[G]re" r7j kV;?sꆃ f@cM[*^VցegeA8F`\$\*~7س=$),c|>7+lKhʿqei7_`βL?U}*cuEYUR-&Y,j61em|,6{ )oIC( , ;Ey&K6_ҥBOw.{[48PҪ'cƠӿseaOid2G-#gpTScn,W& Wtz&x49c@:4ئ&h,ȬQF!?}Ӡs+thD3Q|յhjy!!A4t(|CK=D(@5'?ņJʥd G4<h/T DRpƂs9/Ar1&8|2`TsTͼqFh!FxsɦHlmZi_Z. SI5 i  ߊADTƚ76dd0rpV>zs E<.RĎ cns 5Wp#*jTYMul(à g~#YϺFWB Y~}ۆ㞏wFV]L( \{B/"S_jCdKhmB7n }|k#`reFw|o!ĞC?KڤDRP*DjъC&Aci0V A?]u>R@؝]U_ !naoV<$677F+w䕃;C#èn|bl2";zڔlz $hF|fqܰwUlf泀Ktb_3DXMֶ+td鰡8b'Lʬ, {yVtXj_6Ůs^nͳ.1*PCPɎOCb#yfm#Miߵ8Ŵ%ז}%"{}jPcp/_$c, Q]s#U rTv6]d]xwWx5\l3? BC,uy4e㮝ͨGYB[2?nퟤpzpXFn^ fԔү7ۑ$RxɫYF+h׈ 3eX󹭪bt=!%͸h} V>iR>:Lf ˍiى1}dƘtkGwP>JF[YA2%OtS;4G"ukW*[3]#H`X8m~1B`rsWP el! Y V< |AWҙ1ws=|/ J6ŘSeŃ5sH& ob|-:`o'E>bԜ49FOXNG