libsigc-3_0-0-3.0.2-1.25 >  A ^p9|ݕ+%7Lҗ'FH^c<pᘇ&3ALa Mf0vkL lv(4:MՆ[z&?HFXTJ(`46jo_@?1䇖Sr?u,M^d9rc$Dw?J峠Nwh f,`b򳝉H8 +7`N|d~-jXUacx>pC#?#d  =, BSsy     ;^| (89$:>@B!F,GDH`I|XYZ[\]^ 5b c!bd!e!f!l!u!v!w"x"y" z#$#4#8#>#Clibsigc-3_0-03.0.21.25Typesafe Signal Framework for C++This library implements a full callback system for use in widget libraries, abstract interfaces, and general programming. It is the most complete library of its kind with the ability to connect an abstract callback to a class method, function, or function object. It contains adaptor classes for connection of dissimilar callbacks and has an ease of use unmatched by other C++ callback libraries.^mourvedreSUSE Linux Enterprise 15SUSE LLC LGPL-3.0-or-laterhttps://www.suse.com/System/Librarieshttp://libsigc.sourceforge.net/linuxppc64le sA큤A큤^^^^ \7 ^Z869f8d5cc75412224fd0079933750a005ac8f243feea389abf5845d62d1af00ddaf5d0f77ec00690c0135813fb9cb43cb68391f331ad8adc96d0180e83e154b0b4612f9956d47112a98cbf9630d21c20b810cd56599e1f944be52359c962dd0897628afebc60f026f5c2b25d7491c46a5c4ee61f693e7cfa07fbd2c03605979blibsigc-3.0.so.0.0.0rootrootrootrootrootrootrootrootrootrootrootrootrootrootlibsigc++3-3.0.2-1.25.src.rpmlibsigc++3libsigc-3.0.so.0()(64bit)libsigc-3_0-0libsigc-3_0-0(ppc-64)@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(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.15)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1^ ]s]fl\Z̧@ZZWQYV@X@XEVWq@W+5W$@W@W@VV@V@bjorn.lie@gmail.combjorn.lie@gmail.comyfjiang@suse.combjorn.lie@gmail.combjorn.lie@gmail.comdimstar@opensuse.orgluc14n0@linuxmail.orgzaitor@opensuse.orgzaitor@opensuse.orgjengelh@inai.dezaitor@opensuse.orgjengelh@inai.dezaitor@opensuse.orgzaitor@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.org- Update to version 3.0.2: + Build: Meson build improvements. - Changes from version 3.0.1: + Build: - Add meson build, alongside the existing autotools and CMake builds. - CMake: Fix the MSVC build, enable warnings, and disable unnecessary warnings, with MVSC. + connection: Allow copying of empty connections. + sigc++/adaptors/bind.h: Make bind_functor::bound_ public. + test_limit_reference: Avoid virtual-move-assign warning. + signal: slot_iterator_buf: Remove unused T_result default type. + tests: Slight cleanups. + Remove unused #ifdefed code.- Update to version 3.0.0: + Fix tuple_transform_each() for libc++. + Documentation: Remove some obsolete documentation. + Tests: - Make test_track_obj.cc compile with clang++. - Don't call static method via instance.- Update to version 2.99.13: + Replace the deprecated std::result_of with std::invoke_result. + Build: CMake: Supply SIGC_BUILD and use CMAKE_CXX_STANDARD. + Documentation: - Remove some obsolete documentation. - Rename README to README.md and update it. - Reference docs generated by Doxygen 1.8.11. Hopefully it will show up at https://developer.gnome.org/libsigc++/unstable/ + Tests: Add some necessary #include directives.- Update to version 2.99.12: + Avoid compiler warnings from function pointer conversions. + Build: - Replace the Visual Studio project files with MSVC NMake project files. - Add MSVC_NMake/README.txt for Visual Studio builds. - cmake: Require C++17 support. + Documentation: - Update links in README, configure.ac, libsigcplusplus.doap. - README: Update compiler requirement.- Update to version 2.99.11: + libsigc++-3.0 now requires C++17. Use of C++17: - Use std::apply to simplify implementation. - Use std::invoke to make implementation more generic. - Use constexpr if to simplify implementation. + Build: Require mm-common 0.9.12. - Add mm-common BuildRequires: New dependency.- Modernize spec-file by calling spec-cleaner- Update to version 2.99.10: + slot_base::set_parent(): Create a dummy slot_rep if necessary (bgo#167714). - Adopt the use of %make_build macro rather than raw make command, following the best practices.- Update to version 2.99.9: + signal_impl::clear(): Don't clear the slot list during signal emission, to prevent a segfault. And add a test for this (bgo#784550). + Remove signal_base::erase() and signal_impl::erase() (bgo#784550). + Various minor code cleanups. + Windows: Update the MS Visual Studio build. - Move AUTHORS, ChangeLog, NEWS, README to devel package, mainly developers would care for those files, silence a rpmlint warning.- Update to version 2.99.8: + signal_impl: - Use std::weak_ptr in connected slots, to avoid a memory leak (bgo#775871). - clear(): Really avoid erasing the slots prematurely. + slot_rep: Make destructor, destroy, and clone() virtual, instead of using function pointers that do the same thing (bgo#777618). + Build: - Visual Studio builds: Require Visual Studio 2017. - Add tests/memleakcheck.sh, to run the tests under valgrind (bgo#775871). + Make --disable-benchmark work (bgo#774732). + Make silent builds really silent (bgo#768797).- RPM group reassignment- Update to version 2.99.7: + connection, slot_base: Use an internal::weak_raw_ptr<> to simplify the code. + signal_base: Do not derive from trackable. + slot_rep: Pass a slot_rep*, not notifiable*, to destroy(). + signal_impl: Do not derive from notifiable.- Remove pointless --with-pic because shared libs are always built with it anyway- Update to version 2.99.6: + signal: - Remove slots() and the container that it returns, and the iterator for that container. - connect(): Return a connection, instead of an iterator that can be implicitly converted to a connection. + Use std::shared_ptr<> for signal_impl reference-counting. Instead of manual reference-counting (bgo#764935). + slot: Use unique_ptr<> to avoid direct call of destructor (bgo#764935). + Add optional benchmark code, using boost::timer. + Make some single-item constructors explicit. + Make some member variables and methods private. + Remove _ and __ prefixes on variables and parameters. + Header guards: Remove leading underscores (and trailing underscores). + limit_derived_target: Rename to limit_trackable_target<> and visit_each_type() to visit_each_trackable() to make their purpose more obvious.- Update to version 2.99.5: + Functors (mem_functor, ptr_functor) no longer need to derive from a common functor_base base class, and functors no longer need to have a result_type typedef or alias. + Emitters and accumulators no longer need to have a result_type typedef or alias. + Remove now-unnecessary adaptor_type type aliases. + Remove some more unused and unnecessary public type aliases.- Update to version 2.99.4: + Minor documentation improvements. + Make some constructors explicit. + Some more minor uses of C++11 syntax. + Remove unused SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE. + Reformat code with clang-format.- Update to version 2.99.3: + bgo#763616: Correct the license of some header files from GPL to LGPL. - Change License to LGPL-3.0+ following upstreams changes.- Update to version 2.99.2: + slots and signal: These should now be declared with the sigc::slot and sigc::signal syntax, like std::function<>. Version 2.9/2.10 of libsigc++-2.0 supports both the old and new syntax. + sigc::men_fun(): Take the instance by reference only.- Initial packaging of libsigc++3 based on libsigc++2./sbin/ldconfig/sbin/ldconfiglibsigc++3mourvedre 15914103803.0.23.0.2-1.253.0.2-1.253.0.2libsigc-3.0.so.0libsigc-3.0.so.0.0.0libsigc-3_0-0NEWSREADME.mdlibsigc-3_0-0COPYING/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libsigc-3_0-0//usr/share/licenses//usr/share/licenses/libsigc-3_0-0/-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-SP2:GA/standard/cd218372b0a56664de411c14a7790be5-libsigc++3cpioxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=a387a7744ba6d71cbacc6404419a6c2e7e8b273e, strippeddirectoryUTF-8 Unicode textASCII text PRRRR RR RRRJ#{dh^utf-80035b09b69fed609003491855358a5777525d56b3520272d3974683b91bc7386?7zXZ !t/w_q] cr$x#+99(MTIx]6 M{UWl/̕~D:>Е(Xi2-1G2"~C}&(KTtO~:-;wՓ D<٤R 4c E{/ H9,vɩdYOUg2|qt9%(DN;1wa*`YS8.#;0y%44pc #u$HʎsNw B- :eS33[+T+~_фј;Tjbk!`VS"hU/9R[WUb270Xeࢂ&NDCGgyk=Qd{!;~c<8v^~P⺴yvo_SRD3/¤R} <ݑr .Mb7HFWO~ZkMC_*32jKs&DAlԵ?-~Fy[\QJ!>F_SSnQ*:;tKv;?Fڳ p z qW=l6vp½H#SH`~r0U糟ۧwlN]fz~W0L_,Uhc8l%Xp#;Ki b%}і  Ӫd{5{1+F֎q^ս EK`-RTpj-+Iڇ7BYfZ".(TkvQ0l&Fhg՚D!fqЃ*ܿ$94NSS6űw78MIogęщ}S]UȤJp<*Mw+ΰZhD׻TGzg+Μ_Y>1S#_#x&}9[͔5h*ͱ5ĖpG8̝_2hC7@xK_4Z03Zbh##I/@l_' b|bn]_#@%jY`z\u ([5sɮȺ5EOyx)Ӥ䞙BDҋAB;yzN"X=UM66(R©ZLqa"\2DXDǜ=iՀnp_I<01;WnS@BSt6I?%,L&qg9f(1nUe{>)-sFE@μ呬{ b>Ks br3vIֳ\D%6s>3AQ/h `hjc<؞:C_ȡ@a*{uBe9EAXD,7mj8LXqnzAQ[fF 'q衈5o*=;N3_=9QS,KVf=!SloWIovR!,XUpA5 Iݣ},xK:|C2y3R5Pl ˘DznZK<\K;M!"ӟj$&] :ޟɾ㥝v[+$j)p7I ƩKa?͂J#љLBcIk̍vɈ\O东˕tf~euֶ $/"h7߼V&RКZcf@0n"ZR6⍑fmn9z1uYwª)DB[h(O`mK[J"NAض8P]UTtbGgYIUz%թ\DmHAm4r4:&f[Wl{#Q-f3}N5 ^ l໽6,RNV =ei Ͱ&w5m(Zje=@ F˨ /[u{ZzD0yT`vjPXZ_8M *{1&MTc_}npiGk-bi̭y+h*B% F%\b IF{׬6%&11/ˎWDUH d{^+06>` d,YioJM \Yc8hͤ1T4ORi]0 Ke뀴02mʘ- tk%H Ő]u 3>V7BT`%Lq&v Đݘ\lB,u.αBH>.^A>;RZ|1Vs}( ~IlG!~7.\ɑx ĜZa5ӣc|auлu:t#ud<7%oɏp TChA1؏k%WLy@; L'UTs)77w4W ט2u*Pj%CxirZCtb-.%N]$> U/fp5Zn {=i&vrGi 4;Am-{{{V)>(6͜aFWkÿx+'*|l:ǯý?}NɵX.NKL[kbx!B},p; +>xy;eک%D8]T:6.@+bq1ad|\eFg:%$dj,,9+u]~qg&&D(WD6OpmV!9r[p2hq-o,#'pY φz듁f]nWZj2:/UVm*7͈ e վ؅f3AetUps!ig wPX o24\na;$!%23+Tdy!DȜDШ 5 sEG`K<ӂC^0fr(1SqoU AtnKn%z1-f<ݗ:{UA~ & $CXC}/HY:/!J~{ƕ2B~hjY8hzG<7$Ǫ8ԍ-\[$"?Ob!ÀfQ`c,aRw'ļRHHZd$/tm@q/=K|?_l" d#tR `&] Z a.hN%i}@ o0QL?;Jҟ"{99 9PMzTS)%F39VSN(ў0=Muѭ6@2;tfJSg]ϗ =T%812kX~S滤#uk?7V/( #xaK֞]nLdEb@88V6[6mwc⊌NۭK8kghEt234o]A@m6b59|J l̓t[nzl[ `iSfc֦K.-{#7F 3W*6KyI{7VI16R`]k ﵵ^WZd\Q?>@}HGSH+,>i[ۗ`>)Lٵ6\ EƐFVe2h?&}EcϤQ"[|&;Qou{snxְlw'yq? FpPou(|ѻаmՉ sڌ{P-BȨIX!<ē7f^Rգ` *8ET\}ZEY)Z$iCNh*6V<î9{(?-} jTT6ԅFNɾnoLݫ0 ڶ0QFK䀳]ELr)2١0ijXU_t {׺G[0h0I{9wFSJAÌ0V‡`1tR\Fn?%sr^U~55-A֒+IzRVQSŊDkoA |IPWy9vz4WZX[BZL 3Mve=>wL@}WZmWE*y(8 /N'ZFY͉ :YBϵ"Tn<'2=pk(nv&j&.> ZQҦBk(H3\uufF8w|-Y,:mHS;SZYEMnBԎRIK#1MLk=ܔ=pWggk.,8ޓ(8yZ8Z/7po.@8Jٗ.Ww_ҭ]k'@2.(ru/'X B'j6w* dCmMʱje4-Y3cn>0|.>Q6j$]?/A1QRg>OD =V r?gy st]19pڣп%Ulj M EXA" d1|"7,g"<2_ N,,(wP%J;+O}wDQ%2OXWч~z 1k."B\f0!&B :+N Tn~FX{S55c[?)%LDi`ѫ j"F~AAcpS26X.QGlpp Oxu!c=*[!QI'I_H3C7Z!׉-AyJU}vK?:`CyRΏ)(jKw [Z~%˖ w?Eܦi&]!K- * |u5 |n;fUl7:7>zn`*WZZQޡ( [3>P7/McU ho:!' @X)=?c%dJJE#BuQvv:66 /6 T9/Y@cAɏ !rt.d=Vx,35J ޚSxG loD ά0U݌ZX0/!BUpwjJ1]ؙhsZa`Lr\uc-F;| g㬵]ZAHO0M5i?^>Y|߯x,Lz1s 4*K?yʠZ B_.MS+6D@rv îf'nGr.CsVim/D ~ze('t(Q)9Z|~CU6)39,n۠M^%=gۚHϖN!Fu2>TsJq*bWeԫd^SP&?idbuSOvBh/~ ))UȐ wg!`e>ŇI='c*X IX٠"()mauSIJk!z03B bV2:u@YRiC.BĢ5W<չ I[w@]7Ӑ_d+)*:uBWbaXy6]4v5^:igb=Nz)2ϗl+CLA*{aWV0On/>#7fw6ْ (?'PEP!Nt\}l $pvP&}8#'}jzgX s)nsw-KxYǭ\qf4̛\ ̝@ wojzuO+*5KMAdb([@rolwܳi‰`CJ\( zN% 2s}J\ ֑^Я [OͭyBĴ kv$ ^rFc9c-?9w%E+ hL"Fj-\؊uOfrkYmGTͳ`j:}:gj^Ecq%^ՠtm-c0m]cܝwUNt.f̴ܐAg+"J90,B\eA3 HbX\ `l<5`6_fB)~bL'iY˹ J^V.AA7A%z呉ƕ=+2A u)/LA!Y>bș4|tR;Bgqx)1}s#M0ϫϠˍe^E^&Oߏ;TS fEhilZ.eTfػ5 W7 _8Z M+%E(e>8նc4qkl@wa I+x_*ŬPPg>~@c+۰?msǬA]z,b к4͹(,0!JB$Jk;3ɝհx(7)}?u4&6E-2#wEjÔ$:>uI8}Xr@G(MlkK@dfh,,x_A]w37TAeu= X1_UnqrBDt NhST1=FJ b00:!Mse d081.8H0!nH8bh+=& c')ʙbR'ZoV\U)~ Tr wXѾ?`\ܞأ/Ѹݦ-<_~{!>'(.I@c'#qZ8CJ!o|?b~}+a:'0vuA`:n|C~g[W?vn/ b']- |1d(atG޸7B~DOUmvi==iEr;;DuK:/%ͬ-$R, l*e"#^^m;(ii(Ly67ʹXќ\FWTG %'xw^JVZ<.OiU1 ivl>_P@ԃxY[5 (\,3v-^cu`9\B ꊤfj ~hZ׾Hz`̭L!yil uE-Ծ;C=Ą.H|{lF0Ogڮ/qj~GvysN1Le:ƅ۰։/1㐨%{[K9' \YN?Rz0H@W+,+t]%XU,9}QEIZAa`% j@eGzֶ/bbx3vwa;^kU@ h0D_> Afg1UYP 9ؤ} IQ F>3)D0P`׮@5KpJ6c'RU[[z?lo#W؀|] }3D__ɺ.D]ݫi*fW\Dq<tHJj}u֍ju}d͐Lu{(q!Yv6F(cqR./}) =^S :iݭcLEǣ,殚J|Dy[G{?yDqM/ ,ys_R֚FuMYoo10=#[f'¿eao\%t q3h(#( {Qp ԎVĎo=J% \M+5I-aFל} ϰ$l(6pք864chGи(:`%s @s33n~ZoP6![;ޤw'ϦuZȲuX^gA) Y<0]-4pnJCUМ- G4MFqJ4V"ǜZ`0Sk=U(7!NFzOݠ%?,mW`(^@ra# mv?\jF#9~Tm::l8pC>G8n%Rvő=2"7#Bu;[u`o զ?u =ƢԇTsDi8;) F>LG6t .Y2f&6%Ft\]|ǣ^gjɑ,Gթz?"f\Y+STb%DIdqsJkHƢ@@Q0lk 673`M5芵|ڜ!=YnwEհ'.%XKiVMgb\MŢD9$sW2 ETtҺ&_7Lo66 ?nU9.Q'[[EW3U]$kv^@}%Im^WC05:9#%y,8la~w! 5X.ٴqC(Sv5_n q+Q1=9f%l|LɵȫRS{tB/"۳{ -*@?AֿAs[FHi^ނց9:̈]%*zibhۯ)$]-QG^3)())zgG] <=keĥ7 F(O&Y G}A"xOFg">)d~Zts5Bu s TJwɕ \hw#M@s%:I]Do'ghΗXU:]Ȏae<5̶L'u>'rRgP4LWoțZpGp~G 6(ȉ<#`ێg,aB;L,͇9ITh;eah>P21B;LLz]Y1y2-̾7$;r[?/GbvBѫ4\>ca=.xxjB(xB׺C=>]"94 /"k{j./pa:ޥw$J%n.M&[MzjIm&c+r)z:DKgG%Xy~MxkF5y~"@6C7&Xɟ3rDTn}TqvT NXUؤ}AQ/`.#_P|r2{yh!U!ϞpOD/ ׯ);L?630ݣHE5i:^b>z#+eWl[=Y|E-ʬߜ}UP#lPFǁ򑏋Kfvy b +bD7gVeݱf`8Kou,3V>"TDdY IctYca {CA1S\wMq>5CAΠf^/SfrJ9 0!\Ɋ(#XLB\Ty/gVQ e'C6Gl|[P+a;Sw'<}x2fUsV<[?W%=yCU)m,¥h.Ȩ?kףkDZcf(dOpgNtKfU/Ѩ41/ Qꚨ62w3)jdd2B̨k/e&>Mx64>+,0}%δ,K^VJ>,C-i.gĎۛNΈE;əhfGax ?H=) Æ:KQ 9v+ʸ]gP v2r&N1&x@Lvg{j $?;0~.GD\e8,@\mjnXu& {=gwP9E- I MgMe$!bWڏ7l7pr-.M]^"+(]r Y Q/P3K^(m(|< i(qj 6xRFxHȹ7H$WT̝#Ŀ6zrњ܀{Va{fg"*!эM><91h_wctp=t G(FKI*N|?EӬө-`6 gQ^9ú2ƃbt3>\l8CT3Վ55Vyr#b>;=3h""@ CTx8'7Jn 2SAZ?_eF@4l)𥍑T(ArTXI @T 4O`g+99Ԟ|=7Gp"*!"G[u^-*wAF+t;T MfGDOpri>WznŘLk$Bc,ĴSLِ4~e=/!&TsNOfHxD%cqZrW۾an,u _$e -FlJ 3Bƌ`UP Pa-%I6ƅ%Cpj){f:\ؕ3y+0c,˽Д>y ^ND,-gܤ1q?,DޫB{@&(.jl Zw|lCHzEhn9/ w)AFIM1.%e,RnH1).]WsxFn eF{B;QI3Y*Gғ5z"AùMDP㬱#@7X =M)8}Wݪ*}^ʳٓ-+^+f z{ m'>aFđ3/N~.k@MԵoG9ngq|/K&z#{ijM({pkcN9ǏN jXDGqQOy\uxq9|g_Ԏq6+9/(Y~圎 Na!%-tWD˭,@[wͪlywoԿ={l_" xo ]e;5(ӆ@{>LI`#պ~W=-/p^;Gze& -L{{Eh>0ugH)ԥH3'夅$!HJs_zKBRgOW|[~j;/#}^]ȅAcP;/ElX0L@䕹"1Ce #cuw;^gfx-2{'E!udj7k$?oK1nZ:.zQm剆P {ӈd6n{bNfH1LUO~M‰ ׇM ^2PQ8Sb/*aGpƤ_d5dl.7{2d?E1VEiȳ%1'~0PZC'#(ڥ؝.|LZ9+xIve=bïgU7'R/orI=h Jȗz&Ye?̪Ϟ2uJR)2C7YH86:] Z̋x֙ōx\]2'@<ĨD0٢́XH/کl 5Q1,%*:Y=}~\XS L]l;J&P؊twۓQ@fv+~_WOlnPD)?-B@\N/m4B? G"9Ⱦh$5\hwTֆ׈aD:jS]0<:7j$sV2q'tC$uZ0{ lk|URF&b{g4'-A89^(J2cgE! %to\uBZ. y|Z}&0/Dv')쨁Xf#U NV߰W^ED+7v2t4~7u* YTm6;ي4 GkNﯓO]rezg:D*V^6Э7!ǨtD'.xz<1-Mƒ!&+I.AsG;7)SV퐪zi{ӹy1!)t.,ј(-]g=d {G,}uZg͜m5\;D\$ g`Þ"ѻ&~Da2j`J A.=. GOBJ5[ {sg+bA;זp6D4 7mLYm{w0jҡTy 8oZQ׻}u6Wf<8̬CM+s+l51o? 1_Q3O~w=MA_lMx, b4CZ 3 X-48+mZaSm$/|6dU8۸z;EVoP n ! EJN$ t(#purң볿6A3<}ߎ=9r3(?UmC͛2?7~I$J^x*d2V\ ;v R =cyXmz[&>g?YEN)}bS颈4# HTUa'Bx̰y#wΝ&DžLJ(}Mz=bpxs$jegRզΒ-g.l(F(=غi|"JE3=VL5 C UGǔ:ܨ(ʕBxT=!k )!69|yت kQ ]Q qSg\*hX&80cKzsn=^,pgG AoQ'I3b=H={zĶl9 ` )v}*NQ;6$5~_:7uי|gn/(F@^mO>&aL5&LbV6?dٚky+^(Ѕ6yomUx :B)LHg$o +選؇Ф]܍6ymZv֘bfUlJ(^hr衙- F ~B[kcѹ@ա3jL_p/d*-Wqn9Ʉ?vA4GLB]WU,݋pd`qY26ϋr)Dh>+^܈+ă:P@.*F<#vY?-hVT68U,Ex‡vo=yW<'v`PRg?pЎp]h42Ĉbč2 yDzi H29};UKR[W_@YW]n (¥K=IE`D^X7Kw"P|i >+c}e|0Q_ꪠSx#FBLtT?LF%̣!k؝- =wڳO.3_E:fp bSCtEMWd;ID|a%?*Q]ꔁ@(u_3QDU)H1X`+$w3d+#1bPQkyM􃈇= =bعy [#8SoQ+Mg=;|G"ZI|w]G?+"㮥"[Y(‡itt &Z'廒. `6\9W" pZ!dkpFzomƇy8<ώз ]^v9%@rĸz'Xu;Mxؘ_MvKMhHzJ1yW7O6͊׀.D$:񃜨p@K%OȖ7{Kn4P89Br)S_M=.Qs1 cid^8q2V//qEM'~ Pe؜| l2T׮}7pJe!V!P}{ "BaX0*xM#2F+_f5*1T[k_ 1i͛n,'/J|A9L݋Z:u k ,opq ӱ4=؜-%/B#iP=Ŕ@9% v@6 H:4k݋4c*sS(dI W@͈{ǖU:;xܘ A}8}!˱60*~x2GW29z3pS-qGAxG(Fiq_dz tR7fL{?I\=V湺dÍN^43z9H(H*1\p-W]%M'P ђ.sXai]FS <@_E|N&Z 'Cmᝩ}u̵*td;}Z'_9$  B^pSdOP.OM!<ʁm;,XASJ(zE1ؙqQhUP-U{񝽼E!qyR'ChRN| UC8ai͕EܖRɎo76G(>:y?-x^%̣I_zڡƌ;>#nJ\1ݬ3JY9 JN`N$2-HĖdkrdMsO/2m PZfsq~AM")H7]sfjгMG6Nc)-o!QC%%(CUӿa[O2@X3㇅k;*L #wINZso\޳Tur_Ų^34We8 1?XvߞsvuFj%%]\H4R-gl@(ن!91>L}jl}K 8*M\-jTKGNlDás((οj7HDBkcޥ`b YZ