jemalloc-5.0.1-1.25 >  A [zp9|SYw.B'XR"FTj+?_7= Q~:Z>h.35muK*'mQ.D838761c6d474dc54a4ec6d07ba44235c6714d55d11cb5681fe3c273f054a18b0141270ec0e645ddca7f37e2b2c635909cf174601˘[zp9|n_Ca4+˓]5ѰpI]8=JdǍF"n<7=}Ƕ Mߦk@z/:y =U&$V#p!O!{`pmل#Rh?@|X(UWZ3C86B8@^SɅ`Cio\q`Zӭqip߽p(kf1 ʁBoچۧ8'b=2 2vH^' *Y d8>p>s?s d   P:G ]}    : @Xv(89$: FnGnHoIo,Xo4Yo<\oT]ol^obpcpdq eqfqlquq,vqDwrpxryrzrrrrsCjemalloc5.0.11.25General-purpose scalable concurrent malloc implementationjemalloc is a general-purpose scalable concurrent malloc(3) implementation. This package provides a shell wrapper script to run programs using jemalloc.[zmourvedre|SUSE Linux Enterprise 15SUSE LLC BSD-2-Clausehttps://www.suse.com/Development/Libraries/C and C++http://canonware.com/jemalloc/linuxppc64le N}}gBN>A큤[z&[z&[z&[z&[z&[z&36716303dfb6c4e66645092c76233438ff168522c8c57ae20425074809d773bafef38c471df273fcdbcce07751439ba093c2c1b42507659e568e7c193e268739a95fbf9bf2c1ed4ee9932f4f7f9f07a13390b27ccb0d3782cfb6c9de19b0510aecce039b750109627040ef2b024824d2ccf46840d75564accc2538112aaaa3166934d4803ac85503b6bb24ad5864638c15e31ab6c4b8327ab8053ac0091e24berootrootrootrootrootrootrootrootrootrootrootrootjemalloc-5.0.1-1.25.src.rpmjemallocjemalloc(ppc-64)@@    /bin/sh/usr/bin/envlibjemalloc2rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)5.0.13.0.4-14.6.0-14.0-15.2-14.14.1Y@Y@Y@X•@XD@X!@XWYZ@W5W)@Wo@V2Vl@V+rV7@S9XS9XS @R@RURfhQyQ(@Q8@Q"@PPE@NN@mliska@suse.czmliska@suse.czmliska@suse.czidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comjslaby@suse.comidonmez@suse.comolaf@aepfle.deidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comjengelh@inai.dejengelh@inai.detony@daylessday.orgtony@daylessday.org- Add 0001-ARM-Don-t-extend-bit-LG_VADDR-to-compute-high-addres.patch: fixes #979.- Add 0001-remove-CPU_SPINWAIT.patch: revert 701daa5298b3befe2aff05ce590533165abb9ba4 in order to fix #761.- Update to version 5.0.1 Bug fixes: * Update decay->nunpurged before purging, in order to avoid potential update races and subsequent incorrect purging volume. ([37]@interwq) * Only abort on dlsym(3) error if the failure impacts an enabled feature (lazy locking and/or background threads). This mitigates an initialization failure bug for which we still do not have a clear reproduction test case. ([38]@interwq) * Modify tsd management so that it neither crashes nor leaks if a thread's only allocation activity is to call free() after TLS destructors have been executed. This behavior was observed when operating with GNU libc, and is unlikely to be an issue with other libc implementations. ([39]@interwq) * Mask signals during background thread creation. This prevents signals from being inadvertently delivered to background threads. ([40]@jasone, [41]@davidtgoldblatt, [42]@interwq) * Avoid inactivity checks within background threads, in order to prevent recursive mutex acquisition. ([43]@interwq) * Fix extent_grow_retained() to use the specified hooks when the arena..extent_hooks mallctl is used to override the default hooks. ([44]@interwq) * Add missing reentrancy support for custom extent hooks which allocate. ([45]@interwq) * Post-fork(2), re-initialize the list of tcaches associated with each arena to contain no tcaches except the forking thread's. ([46]@interwq) * Add missing post-fork(2) mutex reinitialization for extent_grow_mtx. This fixes potential deadlocks after fork(2). ([47]@interwq) * Enforce minimum autoconf version (currently 2.68), since 2.63 is known to generate corrupt configure scripts. ([48]@jasone) * Ensure that the configured page size (--with-lg-page) is no larger than the configured huge page size (--with-lg-hugepage). ([49]@jasone) New features: * Implement optional per-CPU arena support; threads choose which arena to use based on current CPU rather than on fixed thread-->arena associations. ([59]@interwq) * Implement two-phase decay of unused dirty pages. Pages transition from dirty-->muzzy-->clean, where the first phase transition relies on madvise(... MADV_FREE) semantics, and the second phase transition discards pages such that they are replaced with demand-zeroed pages on next access. ([60]@jasone) * Increase decay time resolution from seconds to milliseconds. ([61]@jasone) * Implement opt-in per CPU background threads, and use them for asynchronous decay-driven unused dirty page purging. ([62]@interwq) * Add mutex profiling, which collects a variety of statistics useful for diagnosing overhead/contention issues. ([63]@interwq) * Add C++ new/delete operator bindings. ([64]@djwatson) * Support manually created arena destruction, such that all data and metadata are discarded. Add MALLCTL_ARENAS_DESTROYED for accessing merged stats associated with destroyed arenas. ([65]@jasone) * Add MALLCTL_ARENAS_ALL as a fixed index for use in accessing merged/destroyed arena statistics via mallctl. ([66]@jasone) * Add opt.abort_conf to optionally abort if invalid configuration options are detected during initialization. ([67]@interwq) * Add opt.stats_print_opts, so that e.g. JSON output can be selected for the stats dumped during exit if opt.stats_print is true. ([68]@jasone) * Add --with-version=VERSION for use when embedding jemalloc into another project's git repository. ([69]@jasone) * Add --disable-thp to support cross compiling. ([70]@jasone) * Add --with-lg-hugepage to support cross compiling. ([71]@jasone) * Add mallctl interfaces (various authors): + background_thread + opt.abort_conf + opt.retain + opt.percpu_arena + opt.background_thread + opt.{dirty,muzzy}_decay_ms + opt.stats_print_opts + arena..initialized + arena..destroy + arena..{dirty,muzzy}_decay_ms + arena..extent_hooks + arenas.{dirty,muzzy}_decay_ms + arenas.bin..slab_size + arenas.nlextents + arenas.lextent..size + arenas.create + stats.background_thread.{num_threads,num_runs,run_interval} + stats.mutexes.{ctl,background_thread,prof,reset}.{num_ops,num_ spin_acq,num_wait,max_wait_time,total_wait_time,max_num_thds,n um_owner_switch} + stats.arenas..{dirty,muzzy}_decay_ms + stats.arenas..uptime + stats.arenas..{pmuzzy,base,internal,resident} + stats.arenas..{dirty,muzzy}_{npurge,nmadvise,purged} + stats.arenas..bins..{nslabs,reslabs,curslabs} + stats.arenas..bins..mutex.{num_ops,num_spin_acq,num_wait ,max_wait_time,total_wait_time,max_num_thds,num_owner_switch} + stats.arenas..lextents..{nmalloc,ndalloc,nrequests,curle xtents} + stats.arenas.i.mutexes.{large,extent_avail,extents_dirty,exten ts_muzzy,extents_retained,decay_dirty,decay_muzzy,base,tcache_ list}.{num_ops,num_spin_acq,num_wait,max_wait_time,total_wait_ time,max_num_thds,num_owner_switch} Portability improvements: * Improve reentrant allocation support, such that deadlock is less likely if e.g. a system library call in turn allocates memory. ([72]@davidtgoldblatt, [73]@interwq) * Support static linking of jemalloc with glibc. ([74]@djwatson) Optimizations and refactors: * Organize virtual memory as "extents" of virtual memory pages, rather than as naturally aligned "chunks", and store all metadata in arbitrarily distant locations. This reduces virtual memory external fragmentation, and will interact better with huge pages (not yet explicitly supported). ([75]@jasone) * Fold large and huge size classes together; only small and large size classes remain. ([76]@jasone) * Unify the allocation paths, and merge most fast-path branching decisions. ([77]@davidtgoldblatt, [78]@interwq) * Embed per thread automatic tcache into thread-specific data, which reduces conditional branches and dereferences. Also reorganize tcache to increase fast-path data locality. ([79]@interwq) * Rewrite atomics to closely model the C11 API, convert various synchronization from mutex-based to atomic, and use the explicit memory ordering control to resolve various hypothetical races without increasing synchronization overhead. ([80]@davidtgoldblatt) * Extensively optimize rtree via various methods: + Add multiple layers of rtree lookup caching, since rtree lookups are now part of fast-path deallocation. ([81]@interwq) + Determine rtree layout at compile time. ([82]@jasone) + Make the tree shallower for common configurations. ([83]@jasone) + Embed the root node in the top-level rtree data structure, thus avoiding one level of indirection. ([84]@jasone) + Further specialize leaf elements as compared to internal node elements, and directly embed extent metadata needed for fast-path deallocation. ([85]@jasone) + Ignore leading always-zero address bits (architecture-specific). ([86]@jasone) * Reorganize headers (ongoing work) to make them hermetic, and disentangle various module dependencies. ([87]@davidtgoldblatt) * Convert various internal data structures such as size class metadata from boot-time-initialized to compile-time-initialized. Propagate resulting data structure simplifications, such as making arena metadata fixed-size. ([88]@jasone) * Simplify size class lookups when constrained to size classes that are multiples of the page size. This speeds lookups, but the primary benefit is complexity reduction in code that was the source of numerous regressions. ([89]@jasone) * Lock individual extents when possible for localized extent operations, rather than relying on a top-level arena lock. ([90]@davidtgoldblatt, [91]@jasone) * Use first fit layout policy instead of best fit, in order to improve packing. ([92]@jasone) * If munmap(2) is not in use, use an exponential series to grow each arena's virtual memory, so that the number of disjoint virtual memory mappings remains low. ([93]@jasone) * Implement per arena base allocators, so that arenas never share any virtual memory pages. ([94]@jasone) * Automatically generate private symbol name mangling macros. ([95]@jasone) Incompatible changes: * Replace chunk hooks with an expanded/normalized set of extent hooks. ([96]@jasone) * Remove ratio-based purging. ([97]@jasone) * Remove --disable-tcache. ([98]@jasone) * Remove --disable-tls. ([99]@jasone) * Remove --enable-ivsalloc. ([100]@jasone) * Remove --with-lg-size-class-group. ([101]@jasone) * Remove --with-lg-tiny-min. ([102]@jasone) * Remove --disable-cc-silence. ([103]@jasone) * Remove --enable-code-coverage. ([104]@jasone) * Remove --disable-munmap (replaced by opt.retain). ([105]@jasone) * Remove Valgrind support. ([106]@jasone) * Remove quarantine support. ([107]@jasone) * Remove redzone support. ([108]@jasone) * Remove mallctl interfaces (various authors): + config.munmap + config.tcache + config.tls + config.valgrind + opt.lg_chunk + opt.purge + opt.lg_dirty_mult + opt.decay_time + opt.quarantine + opt.redzone + opt.thp + arena..lg_dirty_mult + arena..decay_time + arena..chunk_hooks + arenas.initialized + arenas.lg_dirty_mult + arenas.decay_time + arenas.bin..run_size + arenas.nlruns + arenas.lrun..size + arenas.nhchunks + arenas.hchunk..size + arenas.extend + stats.cactive + stats.arenas..lg_dirty_mult + stats.arenas..decay_time + stats.arenas..metadata.{mapped,allocated} + stats.arenas..{npurge,nmadvise,purged} + stats.arenas..huge.{allocated,nmalloc,ndalloc,nrequests} + stats.arenas..bins..{nruns,reruns,curruns} + stats.arenas..lruns..{nmalloc,ndalloc,nrequests,curruns} + stats.arenas..hchunks..{nmalloc,ndalloc,nrequests,curhch unks} Bug fixes: * Improve interval-based profile dump triggering to dump only one profile when a single allocation's size exceeds the interval. ([109]@jasone) * Use prefixed function names (as controlled by - -with-jemalloc-prefix) when pruning backtrace frames in jeprof. ([110]@jasone)- Update to version 4.5.0 New features: * Add --disable-thp and the opt.thp mallctl to provide opt-out mechanisms for transparent huge page integration. * Restructure *CFLAGS configuration, so that CFLAGS behaves typically, and EXTRA_CFLAGS provides a way to specify e.g. - Werror during building, but not during configuration. Bug fixes: * Fix DSS (sbrk(2)-based) allocation. This regression was first released in 4.3.0. * Handle race in per size class utilization computation. This functionality was first released in 4.0.0. * Fix lock order reversal during gdump. * Fix/refactor tcache synchronization. This regression was first released in 4.0.0. * Fix various JSON-formatted malloc_stats_print() bugs. This functionality was first released in 4.3.0. * Fix huge-aligned allocation. This regression was first released in 4.4.0. * When transparent huge page integration is enabled, detect what state pages start in according to the kernel's current operating mode, and only convert arena chunks to non-huge during purging if that is not their initial state. This functionality was first released in 4.4.0. * Fix lg_chunk clamping for the --enable-cache-oblivious - -disable-fill case. This regression was first released in 4.0.0.- Update to version 4.4.0 Optimizations: * Add extent serial numbers and use them where appropriate as a sort key that is higher priority than address, so that the allocation policy prefers older extents. This tends to improve locality (decrease fragmentation) when memory grows downward. * Refactor madvise(2) configuration so that MADV_FREE is detected and utilized on Linux 4.5 and newer. * Mark partially purged arena chunks as non-huge-page. This improves interaction with Linux's transparent huge page functionality. Bug fixes: * Fix size class computations for edge conditions involving extremely large allocations. This regression was first released in 4.0.0. * Remove overly restrictive assertions related to the cactive statistic. This regression was first released in 4.1.0.- Update to version 4.3.1 * Fix a severe virtual memory leak. This regression was first released in 4.3.0.- Update to version 4.3.0 New features: * Add "J" (JSON) support to malloc_stats_print(). * Add Cray compiler support. Optimizations: * Add/use adaptive spinning for bootstrapping and radix tree node initialization. Bugfixes: * Fix large allocation to search starting in the optimal size class heap, which can substantially reduce virtual memory churn and fragmentation. This regression was first released in 4.0.0. * Fix stats.arenas..nthreads accounting. * Fix and simplify decay-based purging. * Make DSS (sbrk(2)-related) operations lockless, which resolves potential deadlocks during thread exit. * Fix over-sized allocation of radix tree leaf nodes. * Fix over-sized allocation of arena_t (plus associated stats) data structures. * Fix EXTRA_CFLAGS to not affect configuration. * Fix a Valgrind integration bug. * Disallow 0x5a junk filling when running in Valgrind. * Fix a file descriptor leak on Linux. This regression was first released in 4.2.0. * Fix static linking of jemalloc with glibc. * Use syscall(2) rather than {open,read,close}(2) during boot on Linux. This works around other libraries' system call wrappers performing reentrant allocation. * Fix OS X default zone replacement to work with OS X 10.12. * Fix cached memory management to avoid needless commit/decommit operations during purging, which resolves permanent virtual memory map fragmentation issues on Windows. * Fix TSD fetches to avoid (recursive) allocation. This is relevant to non-TLS and Windows configurations. * Fix malloc_conf overriding to work on Windows. * Forcibly disable lazy-lock on Windows (was forcibly *enabled*).- Update to version 4.2.1 * Fix bootstrapping issues for configurations that require allocation during tsd initialization (e.g. --disable-tls). * Fix gettimeofday() version of nstime_update(). * Fix Valgrind regressions in calloc() and chunk_alloc_wrapper(). * Fix potential VM map fragmentation regression. * Fix opt_zero-triggered in-place huge reallocation zeroing. * Fix heap profiling context leaks in reallocation edge cases.- Update to version 4.2.0 * Add the arena..reset mallctl, which makes it possible to discard all of an arena's allocations in a single operation. * Add the stats.retained and stats.arenas..retained statistics. * Add the --with-version configure option. * Support --with-lg-page values larger than actual page size. * Use pairing heaps rather than red-black trees for various hot data structures. * Streamline fast paths of rtree operations. * Optimize the fast paths of calloc() and [m,d,sd]allocx(). * Decommit unused virtual memory if the OS does not overcommit. * Specify MAP_NORESERVE on Linux if [heuristic] overcommit is active, in order to avoid unfortunate interactions during fork(2). * Fix chunk accounting related to triggering gdump profiles. * Link against librt for clock_gettime(2) if glibc < 2.17. * Scale leak report summary according to sampling probability.- Update to version 4.1.1 * Fix hashing functions to avoid unaligned memory accesses (and resulting crashes). This is relevant at least to some ARM-based platforms. * Fix fork()-related lock rank ordering reversals. These reversals were unlikely to cause deadlocks in practice except when heap profiling was enabled and active. * Fix various chunk leaks in OOM code paths. * Fix malloc_stats_print() to print opt.narenas correctly. * Fix a variety of test failures that were due to test fragility rather than core bugs. - Remove disable_oom_test.patch, fixed upstream. - Run testsuite in parallel where possible- add disable_oom_test.patch- Update to version 4.1.0 New features: * Implement decay-based unused dirty page purging, a major optimization with mallctl API impact. This is an alternative to the existing ratio-based unused dirty page purging, and is intended to eventually become the sole purging mechanism. New mallctls: + opt.purge + opt.decay_time + arena..decay + arena..decay_time + arenas.decay_time + stats.arenas..decay_time * Add --with-malloc-conf, which makes it possible to embed a default options string during configuration. This was motivated by the desire to specify - -with-malloc-conf=purge:decay , since the default must remain purge:ratio until the 5.0.0 release. * Make *allocx() size class overflow behavior defined. The maximum size class is now less thanPTRDIFF_MAX to protect applications against numerical overflow, and all allocation functions are guaranteed to indicate errors rather than potentially crashing if the request size exceeds the maximum size class. * jeprof: + Add raw heap profile support. + Add --retain and --exclude for backtrace symbol filtering. Optimizations: * Optimize the fast path to combine various bootstrapping and configuration checks and execute more streamlined code in the common case. * Use linear scan for small bitmaps (used for small object tracking). In addition to speeding up bitmap operations on 64-bit systems, this reduces allocator metadata overhead by approximately 0.2%. * Separate arena_avail trees, which substantially speeds up run tree operations. * Use memoization (boot-time-computed table) for run quantization. Separate arena_avail trees reduced the importance of this optimization. * Attempt mmap-based in-place huge reallocation. This can dramatically speed up incremental huge reallocation. Incompatible changes: * Make opt.narenas unsigned rather than size_t. Bug fixes: * Fix stats.cactive accounting regression. * Handle unaligned keys in hash(). This caused problems for some ARM systems. * Refactor arenas array. In addition to fixing a fork-related deadlock, this makes arena lookups faster and simpler. * Move retained memory allocation out of the default chunk allocation function, to a location that gets executed even if the application installs a custom chunk allocation function. This resolves a virtual memory leak. * Fix a potential tsd cleanup leak. * Fix run quantization. In practice this bug had no impact unless applications requested memory with alignment exceeding one page. * Fix LinuxThreads-specific bootstrapping deadlock. (Cosmin Paraschiv) * jeprof: + Don't discard curl options if timeout is not defined. (@djwatson) + Detect failed profile fetches. (@djwatson) * Fix stats.arenas..{dss,lg_dirty_mult,decay_time,pactive,pdirty} for --disable-stats case.- Fix build/test in SLE_11 by using gcc48- Update to version 4.0.4 * Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large allocations that have been randomly assigned an offset of 0 when --enable-cache-oblivious configure option is enabled.- Update to version 4.0.3 * See included ChangeLog for complete changes.- Update to 3.6.0 * Fix a regression in arena_chunk_alloc() that caused crashes during small/large allocation if chunk allocation failed. * Fix backtracing for gcc intrinsics-based backtracing by specifying - fno-omit-frame-pointer to gcc. * Use dss allocation precedence for huge allocations as well as small/large allocations. * Testsuite fixes - Drop jemalloc-fix-backtracing.patch, merged upstream.- Enable profiling - Add jemalloc-fix-backtracing.patch to fix profiling tests on x86 (the failures were triggered due to profiling support.)- Update to version 3.5.1 * Fix junk filling for mremap(2)-based huge reallocation. * Unit test fixes - Remove jemalloc-fix-32bit-tests.patch, fixed upstream.- Add jemalloc-fix-32bit-tests.patch to fix test failures on i586- Update to version 3.5.0 * Add the *allocx() API, which is a successor to the experimental *allocm() API. The *allocx() functions are slightly simpler to use because they have fewer parameters, they directly return the results of primary interest, and mallocx()/rallocx() avoid the strict aliasing pitfall that allocm()/rallocx() share with posix_memalign(). Note that *allocm() is slated for removal in the next non-bugfix release. * Add support for LinuxThreads. * Unless heap profiling is enabled, disable floating point code and don't link with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64 systems, makes it possible to completely disable floating point register use. Some versions of glibc neglect to save/restore caller-saved floating point registers during dynamic lazy symbol loading, and the symbol loading code uses whatever malloc the application happens to have linked/loaded with, the result being potential floating point register corruption. * Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling backtrace creation in imemalign(). This bug impacted posix_memalign() and aligned_alloc(). * Fix a file descriptor leak in a prof_dump_maps() error path. * Fix prof_dump() to close the dump file descriptor for all relevant error paths. * Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for allocation, not just deallocation. * Fix a data race for large allocation stats counters. * Fix a potential infinite loop during thread exit. This bug occurred on Solaris, and could affect other platforms with similar pthreads TSD implementations. * Don't junk-fill reallocations unless usable size changes. This fixes a violation of the *allocx()/*allocm() semantics. * Fix growing large reallocation to junk fill new space. * Fix huge deallocation to junk fill when munmap is disabled. * Change the default private namespace prefix from empty to je_, and change - -with-private-namespace-prefix so that it prepends an additional prefix rather than replacing je_. This reduces the likelihood of applications which statically link jemalloc experiencing symbol name collisions. * Add missing private namespace mangling (relevant when - -with-private-namespace is specified). * Add and use JEMALLOC_INLINE_C so that static inline functions are marked as static even for debug builds. * Add a missing mutex unlock in a malloc_init_hard() error path. In practice this error path is never executed. * Fix numerous bugs in malloc_strotumax() error handling/reporting. These bugs had no impact except for malformed inputs. * Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by existing calls, so they had no impact.- Update to version 3.4.1 * Fix a race in the "arenas.extend" mallctl that could cause memory corruption of internal data structures and subsequent crashes. * Fix Valgrind integration flaws that caused Valgrind warnings about reads of uninitialized memory in: + arena chunk headers + internal zero-initialized data structures * Preserve errno during the first allocation. A readlink(2) call during initialization fails unless /etc/malloc.conf exists, so errno was typically set during the first allocation prior to this fix. * Fix compilation warnings reported by gcc 4.8.1- Rename pprof to pprof-jemalloc to prevent conflict with gperftools- Update to version 3.4.0 * Support for aarch64 * Fix race-triggered deadlocks in chunk_record()- Update to version 3.3.1 * Fix a locking order bug that could cause deadlock during fork if heap profiling were enabled. * Fix a chunk recycling bug that could cause the allocator to lose track of whether a chunk was zeroed. * Fix TLS-related memory corruption that could occur during thread exit if the thread never allocated memory. Only the quarantine and prof facilities were susceptible. * Internal reallocation of the quarantined object array leaked the old array. * Reallocation failure for internal reallocation of the quarantined object array (very unlikely) resulted in memory corruption. * Fix Valgrind integration to annotate all internally allocated memory in a way that keeps Valgrind happy about internal data structure access. * Fix building for s390 systems. - Implement %check- Update to version 3.3.0 * Add clipping support to lg_chunk option processing. * Add the --enable-ivsalloc option. * Add the --without-export option. * Add the --disable-zone-allocator option. * Fix "arenas.extend" mallctl to output the number of arenas. * Fix chunk_recycyle() to unconditionally inform Valgrind that returned memory is undefined. * Fix build break on FreeBSD related to alloca.h.- Update to new upstream release 3.2.0 * Fix deadlock in the "arenas.purge" mallctl. - Update to new upstream release 3.1.0 * Auto-detect whether running inside Valgrind, thus removing the need to manually specify MALLOC_CONF=valgrind:true. * Disable tcache by default if running inside Valgrind, in order to avoid making unallocated objects appear reachable to Valgrind. * Fix heap profiling crash if sampled object is freed via realloc(p, 0).- Update to new upstream release 3.0.0 * Implement Valgrind support, redzones, and quarantine. * Add support for additional architectures: MIPS, SH4, Tilera * Add nallocm(), which rounds a request size up to the nearest size class without actually allocating. * Implement aligned_alloc() * Add the "thread.tcache.enabled" and "opt.prof_final" mallctls. * Update pprof (from gperftools 2.0). * (For more, see the ChangeLog file in this RPM package.)- Add a patch to generate jemalloc.sh during configure- Initial package (version 2.2.3) for build.opensuse.orgmourvedre 15272823355.0.1-1.255.0.1-1.25jemalloc-configjemalloc.shjeprofjemallocjemalloc.htmljemalloc.3.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/jemalloc//usr/share/man/man3/-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:GA/standard/b7bcf75f5b5bc9c4adf312e39711c545-jemalloccpioxz5ppc64le-suse-linuxPOSIX shell script, ASCII text executable, with very long linesPOSIX shell script, ASCII text executablePerl script text executabledirectoryXML 1.0 document, UTF-8 Unicode text, with very long linesC source, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)RRR+(os+$utf-897abe493c05c1381cc0ae4191f138dcb28ccee1567315d72557c696b2086cff9? 7zXZ !t/r] crv9ui,r3{b lV5'\h`KKnBm]aǓ߆ dHw}_hECwv'0]ݿC5HKc.qNN;ZQ%)J^(V Kh;,e'~CT-H+1Λb.Lm!UZ]h{I4`29ZKB$xȩSC!!SMizW 8DOa-K|p|BO^KB ޤ']|2@ƲlTsZEI&PZFV6SGmҶ,ӊ,o3IwTZJp,tDr'ŕlgKP=N=&AЂGӚ[=3$kV4ӄ6\2^?WwE(dy 3^?aPB@ݲ? ޽5^cq8usSXpgD#l\H ٯ=;흂=;tn$`腐ӜBV*%ffmRMul|ԌScxN>4_tjDBp-V:Z@뼆6>B1;LĕI`ŒaDqiF`ԉlFǒ1Vn .!|7`;ŲfH0Y̆Vj^5o}r{0^_SFo|BQwmV'&aA4:k/yaYFVxݯFd3` 9258R[V8RXŽON(ݗPXgŷf-bIʶa~Xi =nfQ\"h5U4k5Jpz2yͳat|Y$3mB[]rz5jM}gyT`@J"piuY>\hZWM@ֳn× xު%]h?T]$JƷ=inlABj(;ϟH [-ɐnq77pZOD6E= LN}YPm 7?0iO8wyD"N[}p*)zW( Qg=[|e Rgj̜3L*i5'A-xȉMm[%56n{mBMˋ/DHǰŮ\,ATa=ԵբvkcZAq@7p_ɌѾb%̱SkܞmHy]Lc(x&sG;߹Lu+|mpZSl\t;3 ?v^`ϠOЙV 7iq7#S]07mD[bIy | L ^ D'3E!s|oL„)ߞ-hӧ{zU@9J/7hʓv(0b%I"T9\OHH 8r%ǭBiĀo<5;`^shaPMz%RCtٌvb+\BH4b5ɸ7?#/]giGZnidbQCf*w^m\f57P V΂YC+CO'ZGC1| .dh1טLi}P&-|8(^^ D VY|( Q(ĦEV)OaeKp# h"aW@W\T2o__%qڱKxH yeQPB7:ԲcٓL@'Er}o!`Bm߈z4{vE`d.N֌11)B=?kru=8!<;SHG/L7N L|cvOj {5t3a?3RRhSk'zĴTHPtPrƀ&&ܩޚ3>"o|j,AT 9!6}no+R&g#cG oyd2N2/eXɔMbvv}[}E\~0=eQ ]v+e;D-QjO!lHeYA<5iMϷxjPgIkH&]nɄoME,Rj:~xo0lka]lR{>}׶s7AMhg>ɍJ2!yv.`R9%esg $8ZБMgK)w4)f2‡ub`6W# }Nj6/zI$5E'x\X~Uk*ؙ g];jV (O2,j2V9ԛb"WN'5֒avh/rx&Lʛ@,uƢzɚSce{.+4Grvf+]c Pm+0?ʗk,/dQfi ^]lz*21naszj .ІlڵBJӌlɽ=ӃFa2~7z{#M,P㪓 Eۘ`zsA[D\P8W5plWV50o7L)N{v8a-^ʿx lPnA'#zIp-nؚ ?#F&g87dQ%tSiBӧ $έ HJw%ԳP즞\}&a.4A xpbnXBz>#բbHm8ACmo [G1c`NWȢPiNPl+2#E'{.S9j¾m>G#l3YQݰ"|\s{ GfZcZ G\qz#У,)_0}#JGz"EՖXTgzUYR(81l!P:ާϽ^1RpUAGO\%Mp[F% -عŊ"qO:eGk6|JJi_=Vf,Za.i0Ӻ.4ОUV-8ŠPf|O'®AI$xdZhQgU1Xq2pL`?Iȩ dA E&QΛIM_ۼh/5{CVivG7_3ϣu_S/:W^~;XD![xHokٷĚRg`m55xXg`@ 777<9nOq BN9@6I:trO=_cἛg驛 KmߪXUr)ři clVBg0:QN&>ϗ澗9THs]|Ro( ThA:ܾ^BCSMIY\N ȒWB 1!~R6IW@A BJ -X܇?9bwA4L, uN ÑZ%c JblX![j>yk8N-PkGJ,RndUҬ5&8+.=$" n08 kڨ(9I6=B0@J UWO[0;VMZ-I}g+ٺF< g&P$Vcns̟0FW񆷞>48K}X.I,vdK JJFVE^Z6|uqݣy /h2`JX mxÈM_f*Li б1&G]|o @h;|8u{A?6]+efс:hSN W[^+ ~poPﯜn+9m*|Ik/-h/^[( K\ZT B`37Ij6%7L{UG sZO O, w :ew!F ob7~±P!["DETbcZPJq~IȻrIz=*d3acax&ͥUU=.'zN0>@ ǼӜ}KXEׄGvv8GgWKɡrp|<,fF d&Fsm%F q5P{j?I#Wk>mdW=S %h[E$}^ӭ|Q|z]LSb/Hϋ1vPܶ,iG\&317/O=~R} FԨ!nGVTFa&Z|ˠyR+Q[UB򬉈ɜ@*~V żBnnuD 6 U}b!8u3czExg_d])@.hMRKOgdboiz tЀ9G i/(ڑ]li*OZ45(^\ Q޾3K#|rE|D\ 67KTc\P$rE9]hF)}|nMOgh@W.m- rĂ9NR;zpCіOY\Cx"}{♕ʠ,n" w?R#*;H۶ ޛ)ʹxl:\4stŗa^ ~EVĞ&\`^HiZ ͘idKq ǂߕ ׯ|O \ap~ (TisΥcPLlCm_]^rqCZ$$8belFyfqLXυ;o >/<<;+B&*QE4n5@5탾%a#zQěEF9LZP`:&~&qd!8w A8ovyR+9ԓBڧLíH W3`x&L d^,IK_;_c,dkI8πVWEya4^ xH1rRG!^V4H1DrB~Hoi&ٻLOb9rG70_lW.%ӑ4|(fm5t1YNuVT/㬜.HU= [WfakSMfh?Ic{\2WvM6%]׳ lg!b}Zd%u)ȓu{ 6>4nR ˻<ʔFuhs=?8QCd.ycAnoRI/ܮ_Rη*K? ?ҁʂb5u}.mBq~W߹iecRk2Bl[tj0A8 Ygt`j`<ԘH&,ƚ`ڡc@kp;=3đ[Qi̹;1­g7IH9@4e}(L:px2}NvN>@Zg8%ci|P5w]L5FG9xg5S D3\ 9Q)6؁D`dО fVqY6MRQE靝es#sN@=Y;ij0oGf6 Ni:\D2y,dYK7lWw6JKx2O%$ȵH.:\t(ýlhw0aÙ cnO-*.x=w؄LmMpm[kMNvGWCQPVY m1 Yǫ%N6JSs,MkNkj{6w: +tO)Լ|9^;5f, 9 x͆|XѥMc<7 񤠫Pic?ciFec .iN,#QNĊ cHwwjdP'QM܏z6' Ca1NK&NYJ%9/ED~'©cD CFh֭}wԶ$FV滈V然O<xA=,y5xq/n&O9e=&F3EX٣/K;U}Jxz9Df¿%;1̓9 |.Q m,D^t"XIB?ecrDI=Ke 6Qd!uJށ$hoTh>MOXVʍЃ IKKq8da\oD-m7mA,B)URaet;Νd-NpEb$qN( yfY ZpU o+cuLӌ| ,7duU)$aiBaoĢ|Iߏ /:@]N,^|3V.$)l-HS^Qc3ٞ`_cЉ{YCż&TO)4 tQp 030zv.؋f4NG™}J+g52>:R|YtJ-cfu 2 d=7I;=d(K+&Gf?#dxҴt-Gz-)ǵ$ IԎюt^N3 ' ß-{o\~uѵ, L":H^bxW+Eׂ;+04nKSCTLg$u-nQ|$ACj8Abxm.FgtIA+h᧠hҠEӔ6f/=,*V@Q/cYqt%t} z /?M;p0{|Ah 2_m`dLWO]B V&]Gڞ$z62pxW*v3< mNv%Pa=\ җD#y" N֮>x\֐Sĉ)N]HF`<$&=E^\cozd%tgGYݽ!%gU*wO#xEyW2(tRΡa¢2ND"/H9pnSsq{DzO8.#w8 ^I%mz}`p>Q$yG41!Z@QW/>SMaM`s`kzBPa :c+1Z 0|ʎ҃ wp9(DjRKIeoY=A>2-G֌HƜynnl3!#\ZQ{)4?^ݝJF8ȋ-K΂(PZ/ə$70lRNT]?PZeQtקR թC)?Z2*Mvҗ+]Tk;5H ([Q=-q AR_~n E"};cTěΌwdq[#`z ,|R/,{7hDN^?XKnY.reV<46Qt[goTE'MⰮɹ%O0Wۥc2Fu.{8B- d gV$x@ލK*( @T. Qg:d6 N§.#f)iyW%o9X=8]IJuHCL-mn4=16;`4% ^If@NT 7>mK>fO-\?N{[{U(|Tި@^^@-NZELUy,R lWFw.Cr Q]MK^൥z9l%ʵaxߢeA9-GhjmUbjLcmZbP>BL.pt̋$MAŽ +2m'P2W8 @ق7hţh,(:|z̐m9:؅5莾p޿$ӱ9co1|uД\4p\<]Zp[1MT\9n!mVoLpEW͍t^#cR^( 1:b׫kVByz佌($ 1.L2?YG" 8(Z:80AyFE*IUam~N9Ox ޕ+=rᨛ y?|zy"<5!qւC>|泺KƐpt\~iyl#\CV`1ginE21T.ĜAC|Z!ފe*Թ>جq&Qee((1[)Tlw)O3gf:9- >K{s"6)To -"ƃMɥ@?l=`ϑP%51w-y/#$Cг~鷏W@-4= r.:b "[U$/ [ 5U}A=D;}%Eqba#^nilব:_pW0oR|M)ԐNs]ut1Z.ENZJN4, ^O81 Ga ӽ Rζ6+3̀5#&VGA}צ#vbRmϝY㲟 FlA~VwYb`gq:ؙpH<:j?Cn/h]*d#LY:@i.\*vKYF4>6kd"k\H h_G#`YÍ3ѣإF2##`+[^LTa&)ӜQ4ͥqV[.ڠ _вrIyQ?^OEלN/W'"vf2BPR 2of#ҿ=RWLB/̝&鯪/ eg:oM1Ў*+(4MX TNj f ?SSM/s`uŅQC,^[]2ygK طR%n?`F!598zp䄛׉ ]Fu<0DĕPY0"['!/@Y}ʀ!W@EǚS PiBWbCބ xGc2Dӏ3,B؋]&X|+Ŷ{v\Xd9'H5W 3J(dT&%ثiHq:G||}bV\+_ 0i7y^>veb>]{Y@z9I#xZRtK>[/yjFGX"."0y؄|ݴlPoҙ`xW4ޜ)p$ ,R]4̟ZDlON5Ab~UTK3y=K}46Tct2` \ :}\?o"QkX }P<2Ei(CF=%h% uMU6j߻K } %M,f^ ڳ^Ri/eG,9a=}!cNu-1ת_IFea6tjK@,މeWu!) .׾Ȁj. ~OiG."e3G'mpnmd I<e( fm9.gԪ|O%^s L@MB}J6BUġdWp/Σ gIďlMNAEW\b_"ؚxa 8:b}AY? ?qOYOrfnރ)#˱> 5TW/>MQ.}*x#mHKfmڥ:ܙ?K>F[j| bUJ_oٳ e ЍVKsJ'(Ͽe&~ m[BHPGnҽP~ <pk3_Ɩ5w?/i0ܺG5H_FMCYwNA26N/ 1z/7;pLl8jSoOM<>rT-NA=ه ;eĶ8ϟs<*9r+Xs$g;8;LמylMehط8j} $7zwf?Wb0sf!wğ3T%}bᷥw"v6sFiF\υ8}Xm$~lRTTz7~Q"HA r^MusL ϭ+yVatT5ͮ<-R%;og8` !Wa^5?Eɜ{ 0$ܧVN:KZ)lx*LxTd`ldOrrӴ#hUPa0"Jb%}@Jտ-AGBhѾփ&R:X'ZNEPâ*̹گ-&k~ԓ@oDwQd!_M<%a.QKZ?iY惉K=L'ODT وqrwOOP,_mء<]_5|2XKkEOL5 ⱔd3O=QőDҋ{;j_9#E%f9Z> 70dJd$΂i6iBbSG:̕'|B<=,~pn@ .f1d|ttM K,(<7:`)q?&ˁ`0*ٺHPL4朹[hA3*7OOew[QlK(#ײ7~,\SKEtMon y18BVvr6RҲ:)owsβf,AEX0VmOQ5fC9TRFh ZUYW͝2 .D\s>_k~g?uُQnG M5N)b..AIzw~RiǓt |%ڦkUm3 .B-i#d%#C]u܇zvE=@!TU~-Pʕ{< d ә[@k~T1G`LsMC$(hP{~<(X. ?~`So@ 'pUh^pR;D = 4ixubc3CЯ;`)_? d'b`֌3!|ȷV&y=R0,zdy֪Җ݇ Ev2Gۃ'xWp毉 qȍ SE!qp(әog]= v9d#vB:`Dk ݤLwpFg35OHQҬ*v@BXy4 ?-6&ZGJ׽0Z;$PA'Y./x.Z>eB%2v h!Q`8,+sn"(3iWVЈE>3I jgxvr% \O& Z`cNP mCC%彧1(dIxkky"8na&#?;p 7=L` imyZ.'b[4)\A<Lo 6&>C*(0G B*{LH^y#/Y2rm%P8-?>/&4B8Y^+:@Np-ٙ 2$9HFsj:BÊtWKnnäϯ,|=e)֚[zqH@bK= cd_G)'n -50b#=`WDȝt{h#UP_Lr `sN+h*>\ayI}?RtWHC]介8N|gVz):G^a]vnPxyd a+MK6K-vWV#ҁF>@~Tql%a{ԀlEJW`:M--0]FNĽRd 0E'1IQ.}\ʺh@ق Zea- Œ nə .&e6eG|J7hGuۚPN}n,#y=^i֎J?(Ǎ].mN^u9jy;, YVpL|JLE_4)>ِ=YUV.+P|v8Kԩ)SѢͯL_ʤ7V…ηT @Ԅ0 kٞ/,MBd ^P]^aFFЇ6 G4|'V^):<CȵτGڲ%*~m_lBy`(0Ng󩒨j=FGF6ƉR8Ԗj-pJ! :rGł)ÐJLHn"R]%tċyZl(}-,KG#4n_"(WLKgrL=Z| qÆH/ElNot) 5Ld3a(E4f ZPS7MLX7X@ooXs!Qt^ڷ Lj55X\I'Qm]Ak^iR %aj~D]zy١9Ԅ["01 I]lDFpë^ z%-y±-x&Lt@jQۀi?,4 -1 V/H0O8ԲY> ԩz]d6ʆTCKO.2"LkD 鵬Q*t \>HAFA@eo`^Ys+(U~bY5poY ;oϯ)#'QOK^|csNQp  x$1 >>X}8011"j49(~c#2b34)8RY V&,iH3TΪVe%+$1f2stoj%%c_adYb1wןk,P[bɭc7DC3c$PGqՇsCLv֡W:&@xB0:3)SeΰеgVHww[)B:᪲謂!-'CMKapf%D ¸B;zIرxT5&sFY Fr&SfD$Sa`W[IAm,DRe1gO}?]nvy6ρ-I~*ZT.nHEm2[.k  gCAas'7` \E1,s.''Q0=|{qDc7JTi*36*",_v,7h!? y;϶,:;>1zs660΄r\z<:3]BY?TʙɃ\=$Rx%_Vc󷐺5]v;Yf}K T_G͜HTLx Tϥ%ZЪŐ>4Y )\9q?9˘^T2Azb,MX^R4uĬkx־T]/;_M63fCc&\ک{~Qv_7d"`EC8AiNIٹ :YZ5s]I\bK6T] ?o|Z [s6F.SJ9++#/2/%N'3)8VcpeE'yg]MPRzY TA7s wn3rf*$SƥӴDJ7:aP*ߑ;s͝;ht$'^E9o- eGb7PδZփyGڡE>B{v+ivWP=*WM\ݚx+ Ltcrd)8) {ۇ7/(P5ȩDz5x)acYm\{\&7n?_!%=x\3ʗ((7͝րj)G,WuTmT_%!pY TxT-Ѻ#Z05Dbc&T 8)1S[d;ϜC ZZQs uIcѣ;Ƥ 9{m [31$ORY9A^^97UdVLs>5e3(& )tn|הeXYXso? B oݤ +熂ʼ㙱&$4F-$#/S1T8$dCO!po XR!/#FV6W{Tok8Ż^o}A RTmi<;PgAo( 1nW @BPHǔѶ.&6L' pbaSx?Ly;|UV3.rnFӴCM9cL&A]|F(dtV̳b\8e>* 49Y,9ڢbG!MP ?%LEJo$d7Vsc >5$ mw{7h2(_aHbg]h["f QUD2o7\.e ˝`mezS ZҸ4HK<@D?;xYCgyGNuI˦^>|8>o,bw+VYj!vl:j˜' <0S~0L(VPٮzN|ΆF76p7tDlJ՞y+M) $~*BgO(7ϩc_QGiLFj3qMҶ`ӟ\7öSQr‡,DRRYy.U\G إ >ޙ=5ёٓ=T`r?cIfb5SsڄU ҞE٦ 7U!֚wu_Yq[~o0bTv7 ?4s?‡>dUR!ZT8WhU*H+/p~/<+dހp݃fh>#4NQUFS,,0JZ!eķl Uv^)fq[ɜ^SQtfJը<յ.+H S= -ClBe6`o|)6?횔P CBUMl4%z$Cn9T(d=jzX_{>=3:YvC\.R\ Y`BxVF̈́{eψվDd/؞B+Đe(;9k-> LUґ5@KV2E8Xԛ+ 8Ys+FGĊ39M'c3#\oFk[/6Hf!Cyh05$6V[sX BJx^A#!. eKլ2 :agWa@k^̯>6w:#MݹoC W*vC50/Nkb1m?"A"s}agF' ;>pGb،ڥi,l aؓDU.ȡuHw J+;@Vs8]='8E,E1Txm_5X[VDzgDԎ5L)-ZW6gmyM@W~yQul10QasKx4eIq߁ٔҡI99,r=fLk,?I95g)JW2RuӨqskgi,Tc k?q]P:&/Ȗ~.%@`{R7nt"MaHp؅$mdmV:NCq$NKKBE/5KBQ˽l_܉wtHQ/7dȢ[j@Q- ^x&,kNWE0s}mIc.:bj>d\9>苬6(YEl0B88 haj  D8COΛy)…ftJ$~;$g۴&c(8~d}}HOqqZ_Zbc"'IQa7lˎunbnJkf+yIPW͏5TgKasVYZ)!~40,o疒bAiay]BmV_0VDhn U3R:E:/UؔŜsߞiPlOڸ/"Rb;FG=ڤ;/?a%m("cy/BƳ zŃ?x1 r)1$sت:ARtC=Nm. ) mn PgwxjUgsPmz2;M0JR(^lŰ ~0nKí}Cdo#钘~܃*jbnDK4`iRr}#ۊslϣ2TF>IɕV70Y{C "gkΒפrR pfMbZ|Nb -QH{3'DNJOz>g(qX/0ŕx S2QD)x(-VT.8;n*`½BH'x{4?廢^͆Eܪbe+Ռ8{T @] z̅ݺ '22ANH3ԘF3J6yג MXIK(GQ f#Cg -\AH0Ej~EErssD c'˫íٓ<ҲE\MH:Q#l͜՚ϔ:c#+Ck:{}Dž/ f9 !p(],sWIR,|Д2DyqN/,ԉПY89"GƮw,xvϞ/9IcfFS&F9$?|DDIHxG!8|Ţ-nO/IE߱Q4hg:0A=Uo-^4,+wYzm\yoMNGVAP<}ÄH]gl,N| $ͭ1avs&CƸ΅@dQO C^ `u}cP Gg [nb.Imy&oUR~gt/qiRxzJF@BI3PnA㿕'1=NJṕD'pF t;$Ӓu'G?}&9HVI9=.RA(g$J sl`SU#,I` ~gl10:͢[zB ig|,Bv!tur"nO0~ޱ3SĄb2=|QeO^ƹtBl#M$幺d H~ sfd8Q5fQ՚/ef2^xdC7ȩ"$,7QD4f4e6vyOؙ2_9xt8wHbmr zM_?G\YbÐ#rHY}f@VZU|>{_5UX J>@"RD\q^P\6<^CmI+/.9"FT$U;HvqIg-)E2%};T'24M>YϤSLC)FG>IfQc3P CoOv$̵"Y1BR PG[06%c.*2%{z|MnT%P冘l^ˍf##L+NRp2Ǚz;` 9_\rRP)PB8GM}8& ʉuU^6ᢲ/-HJΈKP^#1PªӢ9MC:C}QJ)@Y=wgQ5ҙVǕnil7éDw:^v 8?+21 'ʨwORGuZW#_p&{w^E'%)-! 0Bdc56viP֏*NߏPxDrѺY(Vo5jtD,r)ohQf_]M3ænxx0. -[U'o*(k}Kyb4FjLksXB+ dr Nn=q+VbOz1- [=YQ-!+%c\ϙE.LCM]u*}O؃1 YlV EK [_bLl7fsWufa/׸kSaTpO=wXqq.6ET㋺~1 `tlwf&~-6P&֭"t衐;ߵ[B5&sSAP,SIN[~4,}h؅rg>E6FmcnpWb5 7 Xz2]AOJa@C:yyh %wYh6!"9IF q r #Z;uIA:e0 -jfIaRTEyYՓw$0IUzHup~@ZN˄A1kDnkp:wTY|r>ƈkz= J$Ofb 4 xW݋nģVG\dɶ_s< [P4+!{S3mid@pdvV`9 ۭ;w_+9!r>; (lڜl>P$ih@ z9[V иB{(nQ9% ֧G%EV{ aPal< aHY\R8yF0 enQnıus DDžYPٚЧ7K rі`UfUVBl4Yp"Z iZ%ohV== A5 1SbKSW٘=(?N%*yp+8>?Ĵ\jLY2ΗAXOYGy|d&S$D! g o9OLz/~㔓jLW q%HTdpztCUA A4Xج̣TS}vVU]A7oCe6@ӝ b84BEp c̺syB[cקl}f5|T&Jbquq[uڼ"y/~Cbs(s-GeQ3asGjaT$aú{ YJ1ZIRz7:Ϩ} ԜM=DZMkkꚎAfV8zAݙnMT릗pF3XLBY :dqW-3wawͩA 1.xco!9n7VSKR=³Z8g@OݐA̩ЁƖmI`/R#bQ1KS4^`DnXY@綜ZxQ;_/CʼY\%LvW/` BŽߥҞqvҀi󖤹6[lmZaoW FJf@A"ZWf~"v˦rbm0@]6\- x>7) L'\*疼 Ӣ(+"-}hxJu7k}RS$܍w.M8?$n%aB〥uF~J2L0HA:nϒ0+sͤUL= ڒ"<<;9P[ S_ DHMJb7:5p 0wLB,)9 GMv6UE@ރ;>j9[$ZKoi/4-86nE=s Gpb: ذסּdzՅZw[.Cq͂4VǕ5mzGxiSp]0~ndOTAyԖnmVe: d(35;7e2Ώ!l${;%HYಾVsZ:I <>iz% 9gEO8#&Gbʞ1jY򞩵Oԗ?8s>p`.wsG2e١s\|MDmy$^Rp\waPSNsNe5r)xZ_oj.r?aEl>ۀ{,Ӟ~{rUܒ D=\gZ. .E)hI9p)<6`c8G,^[L>DJ~gPVi;# )!L&(*seb v ;oOVdHYOQv-mY)jWcdF1?Qqn ֪Am!&ƫf~B,6=V͘r$_^8:7F |jݯCtv!o,UMv\7+27}+OiSΉe[%g]0R=uCD=8(z̋TفBT`tw# ۼ|1 8]60kGh;T|Qɵdbʌbe/قw%xBs]еaϤXoLfղi;[幰ܰruL+&,0N|ϤJpftÁyI仟 e*,x'ly1iS s<6%@tX\8 ,Td Asij-\‰hfL x]^-4e+oMJX`,O&cMfe΅%[P^|^68Sbׁr}r0M0LXvK#M dqB:רYGj` ߑ'SMPc Ϩu@.~:Lh+M5 ފs?Me;\fوt4ce3X0!R_Mk5>ILSۼ'NoƘ8WRfZe[; @s96b׀죱гMC=74Eupl:N!X^>i5ȳDD/򫬄=ܐ0`,I=/3Jyn W,TS)l WYدB:|.@hq" ٭)}$,^m yϐ LJKRs l'xU238â6XuNdB;÷bI ވ%Pl4)EB$$(;w8dZR$Dasxo#>cۋumpAalcwnc_ɖ3c,ՙi` 2]LC %r MKY)/M|0Gy^BwS;2˜r+av|qa`D_=Sz}+r.8wQls-FGl56/R B\IvOiܾ Eov+LRuJ 2k8D1S=E5'%9,_09_ A\Ie Xj/mj&YE;VcD=ڔjbc$@q_?|E0c1lr5":u։X~%{㒠{ ( ^,7UP{:^gBw)=*@ai$"M|I,Q~Y$̞gXo/< ._Z!nqi`WnhKZr먎4qbc[O;Ž%sbue z`fH*^ǩy`&~prGY@rUV1E/:J. --:b_NO=uZh0g$(/#;1 /s~R@+ TDX̉W_=yU [ Mjt z8[谿(xb>'-̇KIr&1+xIM +~K;_ʴTӜķup~Ͳi.GJwq::Cs퓄DWؚO(Fteۑt07 [OBJjk(voøtûnb_Gɡ'*yƩI8BX*述 Nh@P;bxHRon8юeۢWUFGEYH)4K`~;ؕYp@ o?WB1{hH,븼%dI }ﵨmCcD^\U[6H̢G ,%E\9q(P@c2<=4=9?S(|-|N=, ,VE[!ȤSs Eʫ0o\1 y۞HJTyqKqoƷ}VN_N>8HO!e煗w5 șA5@ f -\?`>=3=V 6G8_Cy QtX}Qb}/zujyB}lMx$SEf&,xÊ>I"s؎q{%fn$^ta8-:Sc $8^`c-L6kFnH1/1F`괇t.!X^_2Qߵ%뿊9TӇ}5\_ʦet6;WI"C[SS?UenufQ<"yڜOnۇh@1uh )TvoF2j8k(*p* ݴ*\0!>XOHO#m5ESp(:ih3syz45wLixv% P*w.tC:WGSAEa! 1ν_~',c5 Qryro|BSDu ҭK3¢, i@"[ X?$dxWz;WL|nb5ie| (BkpOU. H4KWaݧ%YJqϣ^wvx|Rf!F.`FzoSm'V[>8sn5\;2Y$} #G7|:zKr1FLbhtv[[ OzWT:PW)^?t+]"MAlTجWfnYR1o "RS&'ziKkbmc~Q[NE[2tv ^7Ң퐗2duMQP Z < s@ÛZOK>Ӡ] UGl\W&Z4VoߵWـ\-mSdǎ23N:!]L⤗LdSҘp\cMbNT+|Xk=ݬ1~| {ڭL?ҋM]"?D1;v;rxe]^lXтԟ?tMy*ȴmB~!"4bB(#Zl kx_%FWa~r)gywj~R0}2VD'tHg2ZK:wM.|8 u4a~,? Z$gPgUU:>Hh,{'Bp(Z$ߦ Ae-hշ<K60RB5G*i`n2bgzt(fX;*]LH_aƣV| K1KAdy&߻ =&̈k3LR[67g7!rf8tT6 7aaF?gUŪ3NMRRA5'$<*KCCJ%Gd6:-%>^FpJ\XU@Sd^Rݭ:엻Dk2t+x^wLvaCr;Lca~=Tf˭XPsvzK门n !`NZU#|cH p^_:zNpDyOJRC'eM2H3&`k-W6dY5{@Z9 aE.W7cJGqEbNdn +0i),a;bQ_\+z-R&r1p׺$O5X*LoZ@)R,y^ckM1z)mз#l "6z+Ndžpǀ)fw%7UlcW?#׳vu(#1ۈ_"ka`6Y,u}?>{F~?W8Zo|>S#7\WJP,]DHt,{IOO,NR$=Ѳuw?9OʼnQ1'RW ym_"eVO~5 Z&Vu"DC~@ug_h4?X%J;;=dϦ4 ah03Tiū1[JFWIV5<.8KeeXē;f%f6{WiJ@X%u}[^,|}\!rAȹh3R{/=khQ*&$̞l[@=A8`*^=mG8` ]keX p"R}W1^aLh󙡒?3s:bgiNMҔ|fs~ަnq [xA,zK'O.Q Lrcٹ7vydE6p\iQ7wLgꮂ.,ʀ%pTmс72JHN2pz@k$+֨a`jv_;; Um̗Ag {M,)f;xgp**,x2H0oZ^ ƥK@3%tsOڽms{CmV.5>5p['̬Vs#AJw70 AT߉}.c=װUx@xg,==8 r&~agv*_妇 ӨCTFN\D9.n}cxc=jqbۓ1㣿+\Z:˒ɹX gPs xJ, ,Uo!ĉ⹄#nŸ{0V(#0l}Լ#}V|uP k&o+2* ϿdtpkV`3:0@{ax.M1)6XLJslzuM"CU倣yb5v̭1Ud G6vN$|ԖQȇS4Ώc$yrxU֘w4DaDRJTa!39fv"i0|C)ZHO Y=`ZmK%x@>` {xnڮ޷ `lX7{F(؂c22$?|7t}DaH9mfHXV&\73fMBSm0h>oM$k9$lX:p1.n&?ӜbJD1c}ݵZ[lL^UX[#d?;4,2 ` 7F{,v7O_!FNn .pb3^'(y"yI#_Xg-g(^Ē#ƿ9aOiC=@Ç4Zz(j1SńG]7Ϧ4^>\]ϮGvĀ6csTRi7hr6]!;\TQFBl~܁<MXbU#=P@(;KHH!d4 ˻oXܤuΠ)jqrtHV.̨Gf"~C(|2yc8R7j;.)6!ʸZކ{s ~Hnx#D(M5 ga2wZ|uad|' x? yᄉ@-؊$ /QNbR%>2p  :1դ׉$Ye1lB=iG62zrFtђMޫN6>YvdS `1Y:rMָ=R6Ai$т4>57\А8ȱc{8ю]棸G:I\ kym{:?c~#{YKfХX }lɍn@V K,Q=L[t37KJPgXpdb9٠u%BrI}\SQ [ zSg m4xߏSLba#?@++ KT`ɏ]A g2~ Xɔ1IJϸzSi FT`xuc-@]aiۃOˆF{]rDX{ 27qld@HBvJ!w  fzG6@Sԯ896Yٌà@BEU7yp6p_ 䭷ɬ@!Lka F ڞѿ>sF20,ǩ,"vw RGWVLNaӤR㕠.>ed:S&FBQi#8)cуgLXG(E2؉Nx/-@}EwF' VCk'^64 :#;\p>5=Cys&6;"-4ݒ^ O T$U"z3gfY{!^Y'~7+碃2ߋ+(Dz·SN UqNI1)ӝYNn6ӈU*g٘Aa6xH053k~<(1WM,Ww͟&ł! h@J,vp9'`z"uE;uB׼GlHCiZ6}s:v8w:cxBӫ9et#LZf!6Ujǭpy`"ڻF^10Ӆ]ö0 !,ĕ&TUH={wG'ÿ2pJ ;R\ 9D_XA҆2Ok4E"*d~^`{ 8Jp*BUT"Bmfj Qd6ȜG?ݖץ(C @ blyCT)( 7A V%_+$&z`(8nd3VĆL6!: QĚđa]o,>/cTSʔ@cH8h:w*(]vN @qG[~W)UȂDǪFG9irtwDDӵyA]$( YKWùìf:FG7^i^/B}mI]KhlxcRx[JA 0s@_XF(gQL)hKF1,wa$4>ժ&1zl輮Sb+zfx@;\Ls]/[zg<.6& #> &v۲M/`Zod Ӕhp#j~jkRdEt/K^<-FL-bE AіegMK=Bb UdϏ3XӰɗ#Δ&2K ,'U4)(U 4I}=o>|ݛ>,?Lu&aC)/y%BYp+m$Dx/~A04>Ѹ.GZ;jd|ک%7~E(/[C_UrUzv fn-bQʫcS/aZ#[ݲ>SRӝ#{N-l lT!&SU@~ Sqhΰy˛V>(Zky9-׃Qsl\vHs{f ߌ`XŖ]>DB*1I,XYL SNk#("JBƛáESD#jR9{Qo~,o]e? ׈TZK\=T/KӋ1־A|l6u5N,~+-ĉ$Q%}%`G8<ׄ\5M5 @&oc~"i2=Q;5:mlAտ3?N8HDtY~ޮqݜ"nQK?ݲzԳ?x5)l02ՙ:e -r!LwnJ=2ޛֿ A@/)TZ6XW(և/8|h`jV19J,B TXyiHHY3+3YQ&]qgah|}8u񖜦cFybv\>:skjmjPdLmuA I/p:-cu]Xh]G'=j5\ֳ׻q9ѽ`_.yc 2U,R9z`3ܘ~hpl=#[ L%kznI[۶5Yܒ)ÿL49h=yo]dw\I\q™c/X <":\p LsӌUVYybb 3./tHMgpj6VAcQ+ \c\@y=9b5{u7@t k^04v>4\zt>W,_aͣb}]j%Y9 T@fm7)/2ZHkm*$ႌVyKL:)gP d +ۘ}[ކS ZͰZnذIWGA{޵  VH 7)=/g|Yf깗})5ԣV^dͶ@|gTEvPF@YʧDs5x0\R(ÉN@0u<2 sGUy zТ_-4h X>JW&Xt9#J<^[*x0|V$W.\>jX'YgxX=F*Z.! ܭze0uaF^!E{6ٻ̔CP3NZ q "iGAvgF9(h)V RD'K_tD: gF]^-+d9@KībA*_qLJ6\/L^xa,{fZGGVЄ)kR>ime+*Yj+$S[2=/S ԖwJ$8TMgg/akJѸ0zπmB:SM`yGg=JS?j\ʯ'{Ao-BPR\l<$"Kоgs۩z Lc< jm5|+DF)Kg~;60$lth'4Ws7}yglo -yf7̣ mu@6CyBҜ)E~%kqYt̤IN:o-0LҠ&J? :?7vcȏ3ؕꍡIAыZW1: m$̩gr'jo\G&-gEH-dbՒ,M7J ї-eW!y9bxڛ .*~Y돭ЇwSHUS)r[XC,Бdn *9e"uK,.cB3:ο_n1A 3ŘDjrq[ۨ2Mjpt h(.'+׺4\ tS,  ͌1P`t%'6I"e!V5`O!.)%C}-s7)߇ǽVC̃'6I뷾ph-` z/E|}|Ic`iWpfck5W&ELp>8c=?Dѫ pomH0ױaw>X1yNj¥7~v TL\yU** Tt,k5d 7faSF礗&V9h)jW_b{o 3{xbj_>{C;ocƪ\n7cY$)X2`i>RV'[ BK=d6֭DFR=Bh7KB鶅↩]Jpftº8|T_fO~&\+X:4~%Hc/܋4~vŭ! 3"u6- R\f٣$ r3Ӟ+.ϐ' <,CBGrilH7>aғ,WMeNE+KKHL(OiIzXwֿd3$}Cc6dԾL-AbP^WcJz jSY7Ep]3hl=.,mSiz-= 7!\I4ϕk;Q440=v\ bhfʹbfȅWN`4IlT(ze:;dórUwMU`-Hy=u]L4'}SRûJ sJW73>ϵgu(A#V,gDtyә!_ff?ɽi5.?޳;Qgg./A}pWVF@j.ju| mgLi) Zp%Wxʒ'P|G ZEЉ.=oc4?k4)џ[0Sw0G"MmCb('O!!4KyԋY-s^[n -5sfL[zdT|$j߳ KcY#هvmztx01^EJ 08)(wsO1gRȁD8gCj>":b޾~9~ޅ:T&MX:r#JYH |z]M#郩]$g3]az9JXs3ւ(; őXtTVqAkK[?Ӌ=kg@0,n(AXqdkM.ӆэaf@n? (+SpҤ-u(ﲿ׹V7x췗rzJ%EHuH}ܮ$,SͼkRew:caTqU\#F+-l$e4U ^bO|l(X|+ܾ-t‰5vwrϜ%2=GYG,!&j}+NK0? t9*iӘCo˂VܬEu8c[5!0ݪΙ*nOV|D o bda-<W#+,BQKF  h̭Uˋ|{& gA7ԏT=OY0d Ԣ\ʒƃ;za-@gSF`06a/e6.$jB+;N|ѭ/> eSڠ,VOҔ3\_Jq6K;˦Yel^םέI\6:T`1lʹ 9P+gO"aX76})_t90 3CBIAO-3svf?RKЎ.d)7cM wA1=]{hnZ u" K;Eϐn @7>w!@E3-3!;S04SSm;_p"\઎0=M]2…%$x@$mmgF->7oKM7um(5 ӫɜ6;i v-oI͘440:na K=a{4(J\t~ҝj |M.Wsc:7L1w;;XW%!1HAw .،K]YELe]giYPIfJJvyҋԱ,9_`!:XO3*zyR9ٻ4J!Rv@I_y!mT9e8+  ?vϭ\?͇mN6姕1T0r>V19!3#6X2>ߢJ7mU#z-KLYrZ 1VrZpcd `2BafhePNfRq!Y ߲퐃0 D߳Q8ڜr@W;b13}ÅNUJшbB$ Rt郕7u-|#"ܱe+Q*BHoOrb|skub0dۋ#T`Q,0&A{v*. E^ `I{8zg"A ;#^ѐ|qQǷwVx%%ջz cgcn͂yRO+6`=e6pw{צZ|s\Tah아@iNxE"n:ńZ4>aF4i }JCavCv ʞLwtaxP6,os5\}9t[/_C)ʦ:"1BCwR/#/)9̦Vۡ`FEĽH>¨'3~ڙQDP6{T>֖Ћ0,,Zym؂Cw6 7; _)& ^^ߕ?m&tg!Bj䔄yiCd#/HTz鈧 seZyVdr"~7Z If֜FH:xP3ADM&$-9^ _62q:%bFXY=n:'mG|BLcQhm=N ΠCJؒk >5ATa.RL;T%?cVО61( 2FG(JHfI{8O!WPꔄXN:EC.EYJzg R*TKΧITZv5t7a3ݹcIO䯼RlDEjqm#L~Kg(D#҃tKTڶ`Rw=wg.|di0Ne&:s[8MiaGNg K/t_YI(PSqYsZP@GhiNr3pȞ޿=y{ZUM?2MhԺXqXJ$-vH;h c0T,&o}msqe%ft1@V,9oy'h>PHT+%G]A,2GF(39kc%y[:px|i>|{ ms"iYEfog8=!r51+ !a迊Q=N/WcZ m+(AڍGjGe\N|qDZFz( ~qFD;S(2IINFRO&X)2VP9ӚL"̑$m kbZyP<")'I=(\%fl.viCۀ嫫灑GwX\;;HUX_3H.{aǦ20==/rv{O,eSWL|ރ?Ѷ8C+_?Fz8΅+ [ԔxPVtYh> g RCG*!-4Ic̺Q~ aXo(t27%&mDjE3}0Teޅ2&§9[S;N:!I&a Еr̅ 汃bݬbw}|Y*挌ZUMN}$@XqPPvAGe La0LWnso}z95q?dAP.V~||&/=Sr ldͣcFA9Gv 衷t6MNy'<^W)MGvCBniZmV})2 DuWѫ:n =LK+?oOߥN1׭ bL:|&VKIRI%NYK~w!Rxsl!6c˜*$~gw줽2WY`j%86eR"*XѢV@ءPQ zs9[bn" mSC&Nh?`nV*>vM P7vCVq$%6+?zʰ2 y5$!/UVDum{ekWz%hV))R.`13XW?x~nܗ>Ȃ{`gaqshs,zݻ&4Ez bD|70>٦P> F'l'̀ v`Vː6{Z8+_@}U*e*xϨAؑm4 ǥH4GfudA(\h)tXxPIR!x8ao{VU#7;iq H$c4iben+/0r[X+TfUܣ)7<몙q\k2~ Wz}Aũf즑Z 8vyՅ цqHZD;6`s)OukiƓnK!GN.ߣvC=%n]`ݧVlQ O(0f/2KŗvFaC1kSjmtwP?[ CIxDRv\S )1G/|$wӭ)&5RWumi!/6;Un\X/ JwaB6Q-ᆣ/l0<"_Ac~W6lg|A@Կse /:~hfveq❹n ag:/X;GӈFW] [,MѲXP$O]_4$XXeGSf1@oG|Z]b0\jg.Hש)-Cc9mQ@?]:Vv wCGk%ɩHѩzgaa t=H= 5إo᥮6Q+zɺ‡`=$JGԾ-haר;nB95}a޷i|Tǭأ" yRv_z"vG$kjz 잓UWtuQ~.> ̟6_׆ccAcs ]4~ꀎqgop,IG*l.I`q2EQ4l@|X>\mKL(q$zC=i,"c<I崺< å!!ȸi~M>b,{aO|a PK<2x3>2vX93|yZ{$΃}od'Ϙ$T_Gx#Jaxr*;ܘGهç Vri1JDz7G2] ,qɉ\ƣ#)^<̪1&AK#{f ũj#>Fɕ,)):,C6 d܁4Chr]hk\7lܴGQ hX27U<~AMl{BB-TQC0ȑS [̺ayql s0`o]Xg}si@-3luAgdTKw>-Ԭ7e]G%2sXWJ 0Cyosx YCEjGxZJE?PnQ>?kv$Gjv~w$ऄG ,I,səZUNZ"#/8.+ﭘ'|[ttr_~Kݜ)5ؚ; eO.uI>3#yTN[`zp4:CiS4H(i2&O"4枅 J-!;*nxW AɹY.AbY'feuT-$>gPZdsp1ub6rȕO.[(eC#H_DkLw qE2#O+ќ#CmHCތ@, *ԛa@qd D)`qBn'L2"gddG@7}`~.4?a*kNmϽ_{XbiX&X $ۧ54+<hz#9)',bF+ IXB[iY+M5 +u$Y߭%4fuN_! x8x(-5uws{V47pR?N ?_k]Mh?J .Q`>) xvHId͸ŒaL/<[bKݘ(ǯ9xYsH+ A?dHe~SE qd:GJ_=?0KΟBJ^¤Pa oC#n "P n*iY3$6xH{о '%u͇JȤ7#laKRh7wӈ*s9CK,=$q6Үݙ 3K_2_eM?yA"wvP eC"yO!xA4/|LYͅUTTDr_L> Sk^2x15}s6maڋzʂ^"ϠQR]QGM$L5E0&Yuo}7(Ũ=&OO_MlXO$UڲPQ2E͹VtQK})2;")J>IsIR}6Wk2ݧ\Y!9MdyM Y 1& !쇑|h>0Anos~{uAwyxSZZ1uRca`%ǜF n) \^-tTt#bJ#@lmzHZxu$!8.)2IT/sX{Ć;@NW}1lEO#A-{$)jxvmlmOk=xwTl>$&jkG`? u9u,ylu/)1 |ά&]cb:<5m%Wl&7X "M2Y'Kߊ˷Β;>.=Ls>'L 697ܫvdcaR$@f ľ,OK͇Rz4$򠞍0V >zDf$*IkpK 2+C.O? aEd. ]&C(}9u,<_XąY]d> H?Re40[ȴ1޸Oڌwcq,ѳPj=h}/}cgC 9~M6SG7~*쿀]lh\DO[1B1)E\/IgJpI؝Dp7bi֑S s֡'m]?P6}NWMA<@rזZ_^C.#ڍ Z݃G$&9q(G1ͧ7܃i= oVT}:㍯?M+?%%\k>M'(8 >zm5 O5Q,sKN֨Ѿ:26 +{qnplʃp TyTDDq8+Z,}wiƽ}K` TQE9Q+{[g .Yեj.Lb3y?8"L1oAxxT KO;m$w.q {}US٪'!jfdVأe5JdI 2)޲&Ds9id,1bs6~-T +]^%JTV&{57Xg =xsjm&XIu U|ny[|ŋVpkZEe%14vF#X.hF|9QQd'e\*avZ#{}W}'Pl,I4r 18δ0ԥeFGOɴ`+ GMs^G:JZRQ1VOcf_7]NQZNDi77-255_zצGE~#ؼ)M`~FdȨ|R ׾4ɍvĵob- RiOџqq_ 0*=`6!V'_X!H'yRIr(F0؝e4)y?>20I H2F'5⢹E7ii-k {j=^Z6b)E :_ԩ)JU Rlتe9=̓P ͔, rnĶR0Q;QtQ<АVcN`'$ܘ_}q tZg7E.5_B>m+)ӡh95`F(QlCz{|v+STmI m`sEbiAiy\CSu ׋A~9a g|YB|4O5)hU ߑ>R*;J[U:]uI&K{`n.ք2 0AzE]KĄ0qBHRpPb ~Ѽ;E/w# I6rb{mC$8 W(b 9mc1K\KEPovՒ:I! `.{!߬6B#j o^s_Z/T`"8O,ɴLv>-̈&ERs{WuؙIJt+e F9o2PX [mdcV}oB^Գ6!AҌ`7QAIɷ{]ȯT4a ٳM8Ʀ @MdAv:oj(O(_9F9V4GOkK݈-hӋ;dpp =Ӏ8?S8}H0Y^=i~H>>W"&,7ȵ2% DKX%kd#_-  _Fc hf[TSyckVI@.۽fݦ㑫Ĺw~2k\5 uߢjn4L"֝.ms_=e.S͑I4c} ZvF 3 a򫖡I4B}灦CZh:Gf$c2e5?"O!$Vz05e\xn"Dq '24Km4U ~Cym^ۡW`?@oQHѶz|f1?!oŸ4M>A2_c"n}Myܕ4>*$\)ΰ4?/MY}W]kS^ڝVfa>!*-Q+אVE4I;L#.§<)*<2ON4Ln6p"HFua)(0se)Ps}~öN1=(F M9a:(*5P0>MYPwq㣉jVF j>Lāxy6s/ XlS3ߺ+^H&&gFceڴh'\bM@ ,,@MuC_J!/dz"_>ϫwC+2XEcXW]}׆sߖ&:|#^Mkr]LeXK{=s˯"i|9Y|Vh dӹR]f3D7=BG̯}l׽}H-q2YAuøb}Np6&y/=VMa<6oŻkʀjFȹAR QlV txb=W}SE!N>Ǚ4|;C@A׊O9%vtftF?Oͅu>f^Zj?ZȑMerWL^tu8ρTK&oTQ$ ~",MdtZ1C60<.4^,[ ͂qO]4HbTv`askICph,:ZyJ5{̷XQP`UpK$US0>WBLAKRi"I|I;*i֍dTA Z q J >2娦sK &IVdv뭫Ync&( PdLP4_`z((Oku']tg֨wWnnwaMK`¬jǴ`7Zbrq&K1 O4_s+hbܜl$u>j,m3E N';B-b'X-]nK ڶz-z%΃k12>6V+4ϕ9J)Τ(j?؞ʤ!\lARMBtWk,F󴞵ΰ-`+\3n>[뻷-)G*b'g/Q0cdҐ8!iA,wZ41 #7:ԓawCN rWR$߁iCyQ k+?_95_m> G-A0i.{H,S+ͷO-B-*˝== $&~944ń}mdT!J ٤CtjAn qL5dˈ!!)XqǤ*`D﷈JxAV U}%Uu;B @S+%5ģ?) I#w Ӈ;C:%΂hNQϖ Bk7EgdJA/Op":a`9^@< s6V<a[̓ }s%H yIKo;l&5yTJPx`‚fAGLpdVu֬hE(bq*"6NqHt`p À1;U ~Zxu|B)/e׊`LǕpڨVe ^9EjG6C홼kT>*m3R{@%;U(>e'dV2wIDC$uL𺈱o,2jbDX7༆Yv@YI؋(+'aNMGMW:uNJ]lG|$/ɍepr53!J5V5>w&Y~;xi[})5bnh[^yD[O@l6A ,K3+aͅa#5%Jǻ<{OYDŽh-JqREs|%:W%D*, $opPYDqX'"&g┤zHTou ^'XLlSÿqb\b}yW%>]\Ѽ1Q f9Ffy/^բLCaݵ$~ Lh9+7c.A##ٻUJ}wθ C$6ZBXTY_iZ?3e #ǽ0,eY0' KRb f/n+ު2{m)$S$ _kP>msQTq-!HY,rCZp`.99P)DW/ؿp-} W [\,Mr[le%d..$w"ަt<I2_.X‘Œ?׌GsXVn |qFDIϊ5^ܠK%ib:"5(s|5#w\p>x]2 ҙxSޭJ; .'c{ 5q3^77e$R$*V*q5Mye)F-氣)mhEp'%r﷪)Z  HDQ7RM+LLn”BV˔ѷ! O)\]tHJk]|Cl;ezYHCb?X*0i584̇A.xzO5؎YEgևn5/g\16f" LkLu:lV 8`7p_W/ ĐǵLifyv@æ4}G'6%y .m: gD q Gi"4;t#c5K.Q'KD9#3DF6z9[x77,kBkL]78e24x_ݪiQ\XY5a ԗ]&u]לZTk%q;`;imDEoHG87z)=UZ(`Џ;FSGx|ﳚ~N߳7(Eit9bUUg17W&1x'gU#R<4u&-CId6[:t]/5}JGh\Uΐ9ِRW4E+Ϋ/m1׌{8Hi楫%;j>Kg9&!X< Px֫ɬ^.f7n)Lz 0$;_" H,f&eE_ߏ,Ej!od}$b/U)O5M"YdyVnW \'@?,Yn`ZXdgG @܋kip<$ щϰq 7xIŒ7܎u@aGB/Ϸpƴd㿰0!XPt|Kt QN$l$$`cƸ5*bR$B| M{gYKl>} C: ]ݷsQI{;v y1ԚU/hlaBFp ]Љ(0IM?ѱL?Աyl"~iaz,rOE/~9!ʜ?g wi# yL-ZLhx1ҕGoɆfk}<-vOߺf'FoEfN$,\ROfש'#Ds1@ك=ōg?lUr0sNRw  |(24 .M_&ee\Y2,Ry(ܠ.#( ߄hP8k4*`&”0΂I59-eU(V8 Y?&̮ZRfjx{,keZM~~Of{"z,Vo飹Csu#vb`h Nqř |)):0HJE Nouʥ m_RR}=OcS ]7',rl 6Ÿ0ESC p4*L)(lT&kkPËDAR.JtbA~[ose;$l\V$F P%_} B p-f/ |m}?~z2*,H䬁î@N]Ϳ{#>ɜ('?LXgXx[g.0O[5 h/t u]1d|Mg'v~}CbNr3K]KE"RF.Z& '˫6vpf{U*GYdZYA >.BYqs)"Ynvb/ʠQRArPʪ̝Pݲ5B;)?S&arz\; B\!v πICʮ5Wc|([e:'A[ՙpB#nIb{<[vg?LxxhbZzguBrT'u2+ۘ0$D7^v-<&Oٛ` o1Sj;Lh~!nG Rۋ~a܏pY"e (BDf;5wKW+g7!ׄcihE| e1y'~`@7^ɐA!c7߬0I|Dk~9Kc  I5PAaL>g;`Wו)3L$xyNP0ݹٟIKUjt';(v]3q};$|:8-B.,wP@vfElמsMygA51fyZМh#|aކ =$,f,a9 :&; }zCJo! 0dLi ;9(+bfֻ X6&DC ]XGS2km8,Zt7$z F9JkdQ jz35/c߼cT}+|uEًr ^VV3eoX5X=)ugDW1gyƆi\>JE?5\l&Y? L@+0WZ`WR&CҎ!3bfwQ%+NrC7~{_-{Y\G(Wl-k4S ZP 63'eO|\;rW4#@8`zb{>T8Ғc){x%jFͪ wb85 LUBǔI*s,+arz5NUjW3w oYl%jq^8aS">3eJ٣I\$ˣVx 4񢽬<2)&3so%qr<|y)םeeEc7NwőU6T*KNA5b&cJd8>qw#%;u [MJ=.zi@w5$4>ܺQ7[qB ĠWace QNLp~ <魷}cYk #G2_gtnkl-y Rd w붛Zd)A\L=n+8S="u@6mH;Emr5b3m tv8\F##//MQֶ69IЩ9=#?_2x6$,*JxPcY?*PWD!®=dQ^|#y4s'72ӗdao*`k&c갢l [=f5I$Bn~$ .xAoU~W@v3fiǰ 0Kjxqle:YQ~kPwwI#~/5j!Y1aSRgq_%ŖXo-S@Hr+7\ȷޜ~ָ" wJƀC={_-Im wT Ƕ:HV%f/{"e [4[/l مT{ęx\!|^ h-f["3{*.R2xS?lD!dcLۉ*ُ5; Ebe;?Dw<(ۅ_(Kθy8 DjQ2UC=%F\ DI$=D%w I/J}wZ gyaP28hF ߟgLjKiBsQ$uВY 5*oAR *Q+xPY.d\>.ɬA= iVZ^#({h1?>草AAՖB$xj0|y$ngX q{پkt=l W=:%,.UIKQu{x[h !m5E^ h۵pRpK"hEoM(/EDLQ?wG9)oNnqY}P# :"+!~g-'qdP;h3NO,sx laH_c-Dje%؉[u[=Q)|q@;WK7oLga(.F*7Rt{V _Id.L he\ӂg w&o}NZWkbu~c6lh@G_NxziT)cߡy{U}t;MB7O#v(VCXI#dbJTZ `?֊rIusa]-'݌"I>܎~ rDn)59|S Z1c=x:*Ѥ ck'2:LWI[y]=p!naky:BiP&9WV ( 1D3gyv8} _֓ P,k-`bI i c.G%ǵ 4XEi]EҔa8d,\ʖA+4.e8!ZnܙxYR(+a3-$(ڝqRrN|D4뒙F%h!ϚK'{}? a&aQt L!l z"_ *vVQwqwکCj3*#-[>O ~R"l>( _3ZPԉϬ"_l.ĺ1͙a^dvVdZWRVm+)hnܕBqȌUA`P# D0 l=M!8ĕND'dj dg;2){[9wt;mjMˣetɟMF;?gQ&OenZk TjƆabhOG.V=Ok5Ad-f}PW)i_#C6I3A+*t9U/.Ś]xN%T'oa-:tZa,޺61T@"9 ƆߵgQQtleL$,PȈ| N '"LJ" aCJf`Ie9{_\l-o y9et XzCF67MQLӠ) R+&Ҭ}&e+\uwhkqo_d Vͼ O4a|N:J-mDɽ ϒ)=P%agU-< |ׅߑhpNnDHQNy]? Xw*V\PI}tZ יff$ǪnK!127UuBNnb>F x= wη:x;A /W@]2]L [`dLEמ)nЁi~Hqᘹv s%<ȳi}/GcϾduԧRC$ SBYã*{?۪ m65'fۨzr1YB& ]NΒY3ro|P?)*$*j=+’[?VuJH&a&gVLcMZ~:wF Je_?, ^ȣ&^Ӛn1DZ-%1*SG>OƧ 2+>W6 Yբ(SYc5_?ʴQZӅ=lO,Xך)rT7<+W8MxS>d2F{2nB_ A*GS$lo]xk8JBZaPo\hpK?VM5zeT:%`DnG 6WEA8ӑS^%)\RTt*9{h1Y*QƝo]0S]t۵ fOVRss'8׉FG4.%vP`#X*id-Rq\vE;ľнT8RS1?'s"*\PLЊud'ޘ,!.%^*xĝ9#^,^EQLIWƒQJ>Y+ 2g~F@t =q%Nڏ4Y&.1| H?1ofu˅ת^nf~_&JY^/p6md7W+iti [r?Wb6 #xMZUYI0/F3jsO1fk;Z|'K{SVbLMOaftӵEO XP0l*`jN tS1EDS<֑`E|[4^C.]FOҶ{1 ѣ>&uH%0˯)2[m/mX5օ~ T #:wr%ia٩VAGs+0=N0|d$;yUԾJEJ,j-yxRMm[ <6\ʶ(8]XLrf~wRnW\f/fRܵg G$P*L|LW{F /מA4nU~Yy-mܖ*d5lxWNK;Q*&lJj!ER H,aU/Q{H%]hτ8"lFHA*Ah۬# T욓uo,)&uޯDlMcmH+߰ŔtaCmypXjB*FJٓd]L;W9d>??q?~tgtdrGHz89IbG~KVK/7 |b~ P#-ٻ:\*xf=ظ8-"ѬJLs=)=IFt'hvnW1!ғ2ǵh myMȳ[[C.ɕm@8UWiO1&=#715`¡LEG 3b](J^'܋b;QgwX^]X=(A@{z$7@]UK5M2!x M 2~ϼUk9Tq(|<9q.}ap &S%{&3W2cDZ;0՘|*m3ru,3+cƲ8U4,S -`/f0!z,S~ Zҟ jSo h#. rާCmT4#Z`lC]J`Q´Ѥ+bwHmxE\6ն8′$LXN1Gl3֍Q)AWyᩡuPh7aNٚ#|Ɖe/210V-:hW~siG-HH|w_vʟKV_4w"zff #kPFB 7gz8&ڑ/⒯MQE.K3[\GvP{Ϣ dɿ jM1/SH/SBŃoG; ![&4.3Ή74{?{巑4mų-Rznx^WRזWzQBťׄHǃ ݸV~jX۾9{iC(xo[,r"*gJ"%K~P rk 1TPF SE(b:9>lۭnЁߊml(d{8v~MG3'9ri%|gl 0֧0 =k@aI!(5=0A;6p4O}Z. ݪj؂rj7CKc-yr2eQ7 ؟']3> WAU%^Tɮ3K4\Q,Vʧ=G^@c-it|(˒yAGd'xuTH^T]E"uÙ:o@^_Oޯ C?hNp|BieV~FXH~,vF(پAxגl`&򘱫,ҖB@4\Kn^tf>/@uT=[~y_f;$Q A5 =P@삘]7S2@YhT=Ts~|)4!mk`|U?d> WSag';~cɴYW0E +GJZBH6֙.+J u0hLfr 7I'>7[3zRdmEIHQZ1uzZNiSG7CH]Aw=0l jѦsѮ%D2o[ n&c$̶#߅c`B{Or}jLŗʃkr㿣3388۱Jj6Rc^ Ւϣ͵^+W m1Q@_1=q|3Q=5<,C+gnAā{d`F8Zn_W ҍnG[킃gӻqNQ=i,VYj!35i HH&_"`UP.+Ŝ"T~d${7kCk8]3`\(@VA|}¤㽷3!_.lU)ۊizK׀{ܳ>Vr]\tCi {@ q*D-8N܀-;KyVmTMG@%&߁:)0=#$n?@KHk)SrI@7C>!Ԅ!Lk%qw f _Vq|]1OqJTx5{H]8S]2?g8ghW驍ĕȶ/@ %V{YjھGrYuw2̯Z!pZ7MT)*ȮMH:l349Beh-3ϱu@vZ\UN')ѧ1s1^QkӿM+UR؂Yz3RRmZ/D8ʐFPwN8ޥ|3cI b5Jl*ټAfD6AM<ũ){pE2S~o21p(K/-j#V? P~//C80uo_bE`4bζWj\3^F,3.cͦ?-y= f݌G.rDgCR̋nAqZ2M0ڌ<'Ҿ^9R.e T ̫p Y4\( )˟#Zj |$Iq´`o DΠ;ŁcYblT媄x1A@f:VԔ:wqI햙x%2!R] 'OOI8yb"@ϐ, nź.ghCD(^8x&88kX\Y0p[4ʸ/1( O6PA\<㋢ش4Tb᳘v#k8kqwgh+׎Pz9 >񾑋=hT&!soe)_N'鴪3#(0 .g"0S8$)T"VREwEKNƧRybΪ-O%]P|4S2)y̼%W 0Q&xhiyfYf훔DE_8({sZVN-'fO~sP%DßvնGw5ڇw^DE }5<$G2*5>Xw17LwuHbm!萍&IF6γ[@+Becy!2r7Y :jhC)!';ț}iNBbqO%V`& Qפ].!-ݜ )4q\wܒY5D2˼̘b䲫8,@cGq|գ8ىE7԰/%CkORN<.,(KQ-V2p2W:#6rŚւ5è޼5N>;v9= .}{ 0$w,6/[.c8ϫg$#׼H23LvU'> b>^|qŕ]lp#֔_7k=Yx0݂Q<5eJڐ'c@ s.5T+' 9SK4' 4.i-]Lq.Sm1z,Zq9־CqK v4pxPeȖd}2̞ZV 3@^aRv>MjHGٯKWgZFZʠrKCܽ@֍Tn!fSe 5iRB:!\=|)&TA  _9>.i2wT= ;܇!9:'4u~{Y(9JXEܦo|E9*L EXu"%4A7Zx5R_Y㟜~+Sx&&s^`NOy>h3QJ{d4vjt.+Ѯ oQ˶ hU nBc~^L,&B }l*hLLP ɫM-e{SO9CP>tn(pݗVu:w8Fe K]B(gWBX;8rYM"0{$uWFs>V,vvtIӣ |90^Sh`1`\H o_-08{7 æ ,v̡>EIC2ΑOo9ɍyYC@^$>$lah.ΔOgj)S&SH۫{5ۤ`˒ [޴"VuDd9IJ.fg:ab-2{k%q/ʽM (ywDY6d8^7(:'egc'fEPZth1$N(ja/Q>Ӎg2q /Q/b/!%K4̲Y+쮇O[qgS3k ^dKeyHa|#zAěV=|"(@0`8bGr Ej@^ .8(6W+smgb![މ%i`m~TVg~!flrٽ~x2i 癵;rZ[i'v4v*.P&|ҕ54Ī2LlGJ  LTrx~+}3?em~m.y6 "Y=^5PEHh^aNJ~V~]AQ&;GE~{l0fvtbU~o&݄}R_<=ZcLO<%I*%dϤ)랉m bs@sw 0bSݏ.K!R/M)#rjCx~u[pXV9oxR`%GdŹL݉>}?eFHV( zv_?Hᐬ< t0WkO,LRDs~ݱP QZd%w*^ԶHVb>C4 b8;Z5IT5!7'dTH f]Bcn)$>k~~`:{_E6x+ MPN![xe4/"pl 4ca]0=vD% *CӊnGE"7 tНO" BaeVv ik_= YtQIԇQE{>Wf;?/.dLƾ$T,0 AaN߾F׶Vjo`[HS{y -+7ylJ %.TVZ4>߾,DSX!rDmDQP&oъ;3XZhX\m4āCc$g+$7{m^ gTbs*nN4Ӧ"͎\ y&ob` E TZE&f k7ZEp^ 컖(Ҭ;14ee rsu6H9) ?0OCѢ m@eLaղ|\myfEgKЅZ3ejn3i=fT,Db E~[<_[3}o?9S۫%E3f \9C,u=+)>6& PE*6-3p=E=寿5)cZV ڪY͔:keAy@[ JpdɎ_mo?X\Xmg'գ=V%O)#vmUJ/5CГsҠ@$@W-e W0E٩wzs|0]6)J΂߳L:O/?u3u#رo,4ìSL@v%C2n볷Lé';?!4FJSW476،Cxe_K^=S )UslI~t > qL˰vPN=gh{("ٹm)~kXN*gky؈~2\"v&p~RCڃ Bi|&t>*X#z/@j252[|20Y*$'q`=@ # ^&{FE=H8n-t䟺_ ~V0)xX o5bwV/ AT Wp7uaV=Mќ@L*)V+Ct'6ۗғC4UTsS8h!$S H5sd5WV#aRIN]0ьvh_?٨ryWZIR)vXuoŢS.JT|B;g&P׹3W[ r\ FÓ^D!mEin '*` ii$oKH)B+1tZ4S1ĉ'oޯYO"W Xw߉3B沙%`1#[NG6dni}7[ت'V8GG@{yA]қDkW:ZOaS׻woZ\l:ɦ* "Y Ҕq L$e>TEkW0ܝwJ^cDՊ^&)Nb26 PQjȥ*J#Swzȵ$' Zvuxu.><j&=_1h[|O5M$Sc-QV 4X29QT)!d)UZۜJg=[#yw:%Ӧ)stt]e+,%N{c.'R%JNC;v$܌@Oki l<өP$>*f7ˊoxX3_iAOL4hL=V˪ZܔY/sMeT=hCc ^JCYUnu`viA҆DteXfE8z3+Af]l+X36Ye*#p F[ fUKYGHEꏠN5Gyyc7K<4rCL#Q:,!KPGp54R1B5)xn p \R錏Gm"㯋!&g <`V2':~*6S$0x Ϫ$1z `5;76/6quKlX z8@>ڊu0JNAqTYpmug2*E0sUu-H8/6y5u}LFg3WqUo^ _ןj"IBA݆CHE5b .^; 'jhMc  T;c7qȟx{NHB̺1E؝Mڐ+@- o`xVơ_t#Z/JGQJD,X@Sh]lv´dM/ ܅ey|FFo'2Xƾ㖄}r>Q'+o;ͮb0ݕ qwIkr8Uۃ xȊ9LNX'$}3VpExA]AEo, z*|P 1ͽjH݌|zm?͠[=Nk2tO dNLNP?c)"[)*#p24ĭ |`6/5K(kϥ~^+ ރ?yWQ9, $+e ej")m?M{8'-IXHCq/rݬP͹}R-^;Φw=pUżǠ,"[sJd1p@&<ȭ]ZyN<7C⃐7СE_Lu;R^fY q1:^w\Ĩ.zrҋif0i/skj /:2`ZըsB]䈹֋'m*ИVe=l1L>|؝B"A#]ޠv\7¦5lkJe"ؘ((+2ݤɅu6B2Y~[/ʽ.Dy#l3*XK{*]WǻJ-Z\kr̭Svف8lHϳO"Ӌ8%-~uX|.લ<ݴ)(T:e`SΉz|VUzg?IP~Qk{/X'5жi,d6ÈMEY: uS: nb@+k315 Q`lhD}y-^G9p |@>)v$0*{) z*Ȧכo@]PRʡ^v3Yx3Va[fCՅ9ycrd2YNJ6'a;ԿjĿeug~V2|W65O( 0;@EyD,Z 457$8ҿ&Ls ' JmlBt-Op7nBn)TSYa奂FNTw:RJUΐJ T;aw8N{MFɹ ʕP/ヨ4Q)8u)7>ZO5Ջ^oK !ӈD3y0Y p>3REa*N MY ߜ[?=VMVZ;nTӤBEKH_o!Xy8}Q1*[iV'Ͷ;X c'ߍMX zXJScȔQS^l Y |u6;O6j'M3kB`>ӏ_-~*{M3bԢ7 ڌug^ RʺIzY RMɜ\F7&~~Il(A YZ