ghc-base-compat-0.12.1-bp154.1.11 >  A bzȜ!M@eeeUY&* <>!~pk禣ѭj=i#L\Lpj3J@FD)Lx.慺l~;9t QGZZ+ 4$s?Aw0>p>/$?/d $ C  &0@ H P `    L\ ( 8 9 : F*G+H+$I+4X+8Y+D\+l]+|^+b,^c-d-xe-}f-l-u-v-w.Px.`y.pz..../Cghc-base-compat0.12.1bp154.1.11A compatibility layer for baseProvides functions available in later versions of 'base' to a wider range of compilers, without requiring you to use CPP pragmas in your code. See the for what is covered. Also see the for recent changes. Note that 'base-compat' does not add any orphan instances. There is a separate package, '', for that. In addition, 'base-compat' does not backport any data types or type classes. See '' for more info. 'base-compat' is designed to have zero dependencies. For a version of 'base-compat' that depends on compatibility libraries for a wider support window, see the '' package. Most of the modules in this library have the same names as in 'base-compat-batteries' to make it easier to switch between the two. There also exist versions of each module with the suffix '.Repl', which are distinct from anything in 'base-compat-batteries', to allow for easier use in GHCi.bzoobs-arm-1-SUSE Linux Enterprise 15 SP4openSUSEMIThttps://bugs.opensuse.orgUnspecifiedhttps://hackage.haskell.org/package/base-compatlinuxaarch64)P`AA큤bzfbzabz`;b7b937f5e3ee0915be5fbe7a0d0e1a0966f9d1d78d337a4b3e9f5a566278a930788b0c0ef27a124ddab8917e477fe900f67240eb62bc332b2e4d9c33a9be86e1rootrootrootrootrootrootrootrootghc-base-compat-0.12.1-bp154.1.11.src.rpmghc-base-compatghc-base-compat(aarch-64)libHSbase-compat-0.12.1-EotHHFfFQAJ7ymd9XZQwmL-ghc8.10.7.so()(64bit)@@@@@@@@@@@@@@@@    libHSarray-0.5.4.0-ghc8.10.7.so()(64bit)libHSbase-4.14.3.0-ghc8.10.7.so()(64bit)libHSbytestring-0.10.12.0-ghc8.10.7.so()(64bit)libHSdeepseq-1.4.4.0-ghc8.10.7.so()(64bit)libHSghc-prim-0.6.1-ghc8.10.7.so()(64bit)libHSinteger-gmp-1.0.3.0-ghc8.10.7.so()(64bit)libHStime-1.9.3-ghc8.10.7.so()(64bit)libHSunix-2.7.2.2-ghc8.10.7.so()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libdl.so.2()(64bit)libgmp.so.10()(64bit)libm.so.6()(64bit)libpthread.so.0()(64bit)librt.so.1()(64bit)libutil.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3aa0_H@_|\@_;^@^0"@^@]X[@[O+[M@Z@Y@XQ@XW8W @VvVppsimons@suse.compsimons@suse.comOndřej Súkup psimons@suse.comPeter Simons Peter Simons psimons@suse.compsimons@suse.comPeter Simons psimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.com- Update base-compat to version 0.12.1. [#]# Changes in 0.12.1 [2021.10.30] - Backport `Solo` to `Data.Tuple.Compat` when building with `ghc-prim-0.7.0` or later- Update base-compat to version 0.12.0. Upstream has edited the change log file since the last release in a non-trivial way, i.e. they did more than just add a new entry at the top. You can review the file at: http://hackage.haskell.org/package/base-compat-0.12.0/src/CHANGES.markdown- disable %{ix86} build- Update base-compat to version 0.11.2. [#]# Changes in 0.11.2 [2020.09.30] - Sync with `base-4.15`/GHC 9.0 - Backport `singleton` to `Data.List` and `Data.List.NonEmpty` - Backport `hGetContents'`, `getContents'`, and `readFile'` added to `System.IO`- Replace %setup -q with the more modern %autosetup macro.- Re-generate file with latest version of spec-cleaner.- Update base-compat to version 0.11.1. [#]# Changes in 0.11.1 [2020.01.27] - Sync with `base-4.14`/GHC 8.10 - Backport `isResourceVanishedError`, `resourceVanishedErrorType`, and `isResourceVanishedErrorType` to `System.IO.Error.Compat`.- Update base-compat to version 0.11.0. [#]# Changes in 0.11.0 [2019.09.06] - Sync with `base-4.13`/GHC 8.8 - Backport `MonadFail(fail)` to `Prelude.Compat` and `Control.Monad.Compat`. Because `Prelude.Compat.fail` now corresponds to the `fail` from `MonadFail` instead of `Monad`, some care is required to implement `Monad.fail` on pre-8.8 versions of GHC. The following template is recommended: ```haskell import Prelude.Compat import qualified Control.Monad as Monad import qualified Control.Monad.Fail as Fail data Blah a = ... instance Functor Blah where ... instance Applicative Blah where ... instance Monad.Monad Blah where (>>=) = ... [#]if !(MIN_VERSION_base(4,13,0)) fail = Fail.fail [#]endif instance Fail.MonadFail Blah where fail = ... ``` This approach is also backwards-compatible with previous releases of `base-compat`. Note that the `MonadFail` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat`/`Control.Monad.Compat` that backports `MonadFail` to older GHCs (by conditionally depending on the `fail` library), use the `Prelude.Compat`/`Control.Monad.Compat` modules from the `base-compat-batteries` package. - Introduce the `Data.Type.Equality.Compat` module, which re-exports `Data.Type.Equality` if using `base-4.7`/GHC-7.8 or later. If using an older version of `base`, this module is empty. If you wish to have a version of `Data.Type.Equality.Compat` with older GHCs (by conditionally depending on the `type-equality` library), use the `Data.Type.Equality.Compat` module from the `base-compat-batteries` package.- Drop obsolete group attributes.- Update base-compat to version 0.10.5. [#]# Changes in 0.10.5 [2018.10.18] - Enable `BangPatterns` in `Prelude.Compat`.- Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner.- Update base-compat to version 0.10.4. [#]# Changes in 0.10.4 [2018.07.03] - Make more modules `Trustworthy`. In particular, fix a regression in which `Prelude.Compat` was inferred as `Unsafe` by explicitly marking it as `Trustwothy`. [#]# Changes in 0.10.3 [2018.07.02] - Backport the proper fixity for `($!)`, which was accidentally omitted in `base-compat-0.10.2`. [#]# Changes in 0.10.2 [2018.07.02] - Sync with `base-4.12`/GHC 8.6 - Backport `RuntimeRep`-polymorphic versions of `($!)` and `throw` to `Prelude.Compat` and `Control.Exception.Compat`, respectively (if using `base-4.10`/GHC 8.2 or later). - Introduce the `Data.Functor.Contravariant.Compat` module, which reexports `Data.Functor.Contravariant` if using `base-4.12`/GHC 8.6 or later. See `Data.Functor.Contravariant.Compat` in the corresponding `base-compat-batteries` release for a version with a wider support window. [#]# Changes in 0.10.1 [2018.04.10] - Add `Data.List.NonEmpty.Compat`. - Reexport `(Data.Semigroup.<>)` from `Data.Monoid.Compat` back to `base-4.9`. [#]# Changes in 0.10.0 [2018.04.05] - Sync with `base-4.11`/GHC 8.4 - Backport `Semigroup((<>))` to `Prelude.Compat`. Note that the `Semigroup` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat` that backports `Semigroup` to older GHCs (by conditionally depending on the `semigroups` library), use the `Prelude.Compat` module from the `base-compat-batteries` package. - Backport `(<&>)` to `Data.Functor.Compat` - Backport `iterate'` to `Data.List.Compat` - Backport `showHFloat` to `Numeric.Compat` - Backport a `RuntimeRep`-polymorphic `withTypeable` function to `Type.Reflection.Compat`. (This is only exported on `base-4.10`/GHC 8.2.) - Introduce the following modules, back until the oldest version of `base` that can support backporting them. If you wish to use them in conjunction with older versions of `base`, use the `base-compat-batteries` package. - `Control.Monad.Fail.Compat` (back until `base-4.9`/GHC 8.0) - `Control.Monad.IO.Class.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Bifunctor` (back until `base-4.8`/GHC 7.10) - `Data.Bifoldable` and `Data.Bitraversable` (back until `base-4.10`/GHC 8.2) - `Data.Functor.Compose.Compat`, `Data.Functor.Product.Compat`, and `Data.Functor.Sum.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Functor.Identity.Compat` (back until `base-4.8`/GHC 7.10) - `Data.Semigroup.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Void.Compat` (back until `base-4.8`/GHC 7.10) - `Numeric.Natural.Compat` (back until `base-4.8`/GHC 7.10) - Introduce versions of modules with the suffix `.Repl`. These simply reexport the contents of their counterparts without the `.Repl` suffix to provide a globally unique namespace to import from in the event one wants to import `base-compat` modules into GHCi. (In `base-compat-batteries`, the corresponding suffix is `.Repl.Batteries`.)- Prefer the new %license attribute over %doc.- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.- Update to version 0.9.3 with cabal2obs.- Update to version 0.9.2 with cabal2obs.- Update to version 0.9.1 revision 0 with cabal2obs.- update to 0.9.1 * Use the more efficient version of replicateM and replicateM_ introduced in base-4.9- update to 0.9.0 * Sync with base-4.9/GHC 8.0 * Weakened RealFloat constraints on realPart, imagPart, conjugate, mkPolar, and cis in Data.Complex.Compat * Backport Foreign.ForeignPtr.Safe and Foreign.Marshal.Safe * Generalize filterM, forever, mapAndUnzipM, zipWithM, zipWithM_, replicateM, and replicateM_ in Control.Monad from Monad to Applicative * Backport .Unsafe.Compat modules (for Control.Monad.ST, Control.Monad.ST.Lazy, Foreign.ForeignPtr, and Foreign.Marshal) * Backport forkFinally and forkOSWithUnmask to Control.Concurrent.Compat * Backport Data.Functor.Const * Backport modifyIORef', atomicModifyIORef' and atomicWriteIORef to Data.IORef.Compat * Data.Ratio.{denominator,numerator} have no Integral constraint anymore * Backport modifySTRef' to Data.STRef.Compat * Export String, lines, words, unlines, and unwords to Data.String.Compat * Generalize Debug.Trace.{traceM, traceShowM} from Monad to Applicative * Backport errorWithoutStackTrace to Prelude.Compat * Backport unsafeFixIO and unsafeDupablePerformIO to System.IO.Unsafe.Compat- initial commitobs-arm-1 16522138710.12.1-bp154.1.110.12.1-bp154.1.11base-compat-0.12.1libHSbase-compat-0.12.1-EotHHFfFQAJ7ymd9XZQwmL-ghc8.10.7.soghc-base-compatLICENSE/usr/lib64/ghc-8.10.7//usr/lib64/ghc-8.10.7/base-compat-0.12.1//usr/share/licenses//usr/share/licenses/ghc-base-compat/-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.opensuse.org/openSUSE:Backports:SLE-15-SP4/standard/c034fcc7642c6d843526fdafaf912053-ghc-base-compatcpioxz5aarch64-suse-linuxdirectoryELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=a1fb92dedc214a727fbb5ebb1d04fa3f27193ea6, strippedASCII textPR RRRRRRRRRRR R R RR whzl?_Tutf-899f476e0184f93b2e9be993374bc9f3701070c6001d5845d0245d1c4682c820f? 7zXZ !t/0M] crt:bLL $2_d1ok=w~c !k7zT|}rb}AGOg2;٧}kW8;t4SѼИVva 4Tg7@t:/<Ҷ&#+J RE=amj_+E5ja}(4fǔIJȂV;_}ײ+:q7`vmjˋ5 'dAM=fS$ mnkR #.*fDy gPz:kd3Tmo'MlAɇ_i@<<T*E4buEW[H !KDήq^l ŭ|Y{wwNb2rš/?UJf[ĻڗG5|qEE$;&IJKS_4͙.'7Sm ( ٹ (%qTǜ$&E`_&|!­QH 7z1es؇$1u)u"Zv/ BoeUj}Lm{ӏޏ.V]r5]*J  pk7~T )1坯V9B>#[IdOU_ '6[ٰ-!5Vrlj_$~jJ훻#F9+Bz^GI1΀3h$eڇwA\?#N@} oN-yp3<`cNXBKp6W*`d2K&?@⃟nwݜgK5xφAx5$G?/wvlvkfKMp&t1lbVS7H:8+LGiM}1{5 !yLBvPn;v_3f7Q-IA3ƞǤ^2Up#nojd}5ˋ _){F<-4z[y( SSMvji5@^h-36Ȣpt?h@Zά`s1H+00Vl{&`8ETD5dsBvʛqձvO~L@2GyjU|3^"G6J!cƐb877۰M}qН>&򟥴6:oT}VRb}/LȴIfzG*0NW(Ff&fEYf F)gE;h动Zos +,즯jUľr\ݦJSX*{:֜#dǗJ#h#Im'嘅M$~9n+b4ueaF"Fs U"0E7_<Hxr#K f$uV|de菺Xچ?%.@84y0 fUZxv,Jg өs@*pB#cp DlOGڏT[hts½ѵ"^ Թ%ǁ`Y,FBr,MX6ތtW*@ȇwh7@*QĠ >iPدu =dj3tD&̓;Y٫;0H yxem/+0P}L:RM&B0o C#u1nAXBrV90!/?I i^0b@Éڀ,u~h<y)fh'Acf=^c#Bdu^Lip3Lyk{zdK2_qoLV< ^3ufYT aODM'8?ߠc Ӛ{} Z4I域I'}9=Φ\;dJyK0,JTYz:{SĻX@G2g@ꓽ_bYf~x;5j JSOuqXU, ⢼n_P)q(Vd8pwMnZc쥻Jsoں7>4S!i bIFD?P|6v4NEOuTWjD wtWr#zt}kK2!+vQ0mH+b 6l8NHACGJvŲԗħ-jkGm?ב#1|xyOL P)h0ZQ<>W.o)Sҳj uj)_! ¸B'gRT Hěm{V=V Ƀ.#3d4) ٿ-,.y Ps(B|||IfO=;PO6O9{x@e~a2]#\ӆ,+  ףv3L9ty'F}g-<պmZ9e0uY(euKa 6m{j8e^``OЧFĤa>X'WilRR#$Go?+ˌ-Iŗ,R7LXy 6a/S6 ٧Anyb3b wAi0"\kB`+N[<ƇJta5 09]Ƌdz|-ס}<}v,-tw F+:ܗ#`aNmn|- oF.JMTElj)6,G>46b<:ۋl1Ӱ6- [c;8nhkBN2} 3GJ~ 񛘤Gڼ} v +bjAqЛdDָ6P?RMN4%=C󞑖>mm{f]A_5[܉N)@ ~;.>fEqU&*}QAȺoVP :!|15t.$=\WIܶ7BThV?@@i]-%hzJ. fbZ(ۙGcћퟴQbCANqSCk?Bȉ=+Œ\PnYoDi;AW7?9! H*wV.q'n?yţfМu߂ ;Zj}X3Iy߇Go6|qER*ͱ2.1c\0%6h^m$}&B~d:M]/F1QP3s4%=` p[ŋ`kl+ܸ71LMe]*9}8#N ڹT~(^ǝcz1?wHI1U6UL3fŁ?}ᒉ0"]s@ f$szxq+crABv^_cXFRGP8A33G^L;`esMyz݌\v'i< Vjȳ(Me5ɍ5 ˦c5_}~ Z@A@&!BaP܊N?d/j?ҽrJ9|((Oόo同YNb.0.!oDmn;VGR- m;{u E|ƺ;:3ⱲпJ)C|«Q쭄*i.3XikW23\5(ʮu"3pt-ŕaR].?ԁ[x½8$-08QĒWG, )_D]j(22)6gTkoY?"3נ>Z;`FXnA_qLMROBRG~ӷO]7Z"nok! Ɵ6mgvurKUsI̜\"?8mmz:G7DNg8Ӹcό݊12*IYxH˴!%A}9ԪT8Ǖ|lb1y:to%$iǑ @F*<*Hx?2V?Q#s<6HG3ӳ[$L(ZmJDO &ӛDQV+0)qʍK<^OdƓd<[@guU_ 1yD6#Mɘշ̝Jř\6Ç_#D%0hʺ3xT'q=EKkg9m^zvrʹ69vg4~2ޙq'3\! /v@.+Yh>U~c\>5wži-G%+2.+\j8TLwیTc](l^NsΤe8dd;c&"Q#i, tI#n]gb^ GY"0x.j)` ˍ,"a0nf~%вlP>y!g$t5kEmTr|oԩz}  ݝ$rS+l`QY94h!pHA1{G'B|(>EnDޭQ);rK rM7wO?rk1lVmԥjO4Oˇz*νJרm @sK^t,vײ j+yrKn]-󸧳K9"ZpVǦ'zRȽ36iV49WH|w3Dk*zPV}hZ-#$,VDvypґXdu9D4JD dDt:D^]" hw=Jy8 \/g3Xzs96fٳurpߑA7= Lg-፮u9vUXXm^=ɟ_R>)[evPAscʌ>(M%"7KWp4&Mmɢifb+B(Qj4;9$^X-XPspG!JZ0%=[\O$_Bb j/r0dz?Mu,4Te%@_uU 榠 ~RlR!~APӍo XRjD.`([>Zhw$ \AqhF Aq/w za&?*gBHy .K+_4G?wObg8ɟUO7i-|pLdN8ZBT#gS`Ǽ;&am$+X2DowsqA?3Wc{ۘHK)|ӒUU8->mIp'Ҙ/vJO5N'r0vB[HZJ+$Jv0YMxv&^N F*:`|33`D&ls}H({N!{7N]&cR&4 W \`3ˈZO7HҥM.wc-[UV (͗K;:):Z A~ s4 Ï<3C:UBߍi %fnjUhD"IZk7ZW5``a'Η$Ahf|>ajeeAյ'HVy7+a*%;ƭb*e++gEIr+ƴD (̇(^#U]Ai":N8AIOh .RK-$ H6Hn+Uw*C^*^oa8n><q3vīXWU+^o{/1 zQ&OBIŵL1펌;Xʯ5(mdH]CI6$Lӿϱp#ؽ1N&*Jǹ--M2)"HkhE:8~n{.*&O \;`&R߻&i-܋ 3oWbVD e9>dy9X~}:ƍ; 7Ԓڟ8{)_cq;srYDtH)l0ߴ a'JAҏÂkM~؊8z,Fc)4˼w#Wu9#&yzzDŽ Yhw!Wu07א;yG+]kg@d]g2X>ƙP͔x6i`Ű))VP]͟0RgQnIV ?{* J`VD'E֦̿6ķ|dX5x&hZp;sp \._]HOgYҗJv (/˧,[rGyh)mhNWz]@Pf}f瀨q{M[ -]04 ley}3x}[ (@`A7]PB>8C;8}O26=2䳰 +t-lt.n8<;54v:!mbBTA#t0}"'~1 jt\ӹvz1qD!.S>DXb"6&B'1<<]h]ȿHL_J Ju8 )kٮVM')@M{Q| cŬxdA.qYZõvK[F㪦$\pG~򤂁[hQM%q@W6Poh(_ R{XSǐaq c?/35'NM,yRzScZ i[&3{/=ԑT˘dtkckGIi|s_Ք1"[ 3J9 7 MXK(qB7 Tg7&/гE Ml"kY9 OWjќGo\i*nWt)cs7;ig' *JS΢7~Rl3(v[WYޟ&-D0D\sq49f.ND)U;BqU1[4""hN#E\1_{Z ֵ$XCEZŹ$;2e,V&֦4۶A*/w׳Df`8bOwnE4ڏWlZ1|wEPV; 8(2,}NJT*Y]pmV01 n"#+q/؛Iqg2Ԗ?[L`2[Fv-G;ȬRz\a-LLMc-447w0`;d4ۅ9Z-^0h1_& oƜ5ɊϥOR [wv/8 &9O*D> *q5.A#0$NC\`o+߰(`}w'6n*nk$>сQf֦k2gDi K_h-k擋05e~dUᏭQ9(2zK鎦edw B:SV‡+=hyDbYé43$;3-dq|#i(^3:i #A hҤs^Px h3[3U1dXHȒ =1W{(j$,`PUrAʅbwoD AÓڬy͙{^3$֒uƫCA!Y^TS$. ;#<]wB[mT4KJ5NUV7gQ\}@1UecI'.ںcҘxu?o,۔edX(h]oEK97^G"Jȡ>96K5,6wuxA  8*1f1y5 Na{ʐ*b6`m+o뚂lQ&ʚP7PXI]o0UFqyfә612x֜jc?Gi@GzS({ ae~~Y3'aUt!kmBeu….`){Y5kIŞuj=]ٖ!~/lh_zӴ`R\ذ"~`J_[Yv?(wS>>np֙Q/VԥRmkl)޷|v[܂=2\ WFS`(pw#G1bneI92miğXǷ;]jn&6ƯA\ԩD`-,}?5k1~e6Xgbm"g"wg-`=eUu%O S=ne;-cƽ[Џ3}eƣb4HF9@/BZe\i=+ɩEC,IMד^`B{Py/lG5z +|LfL "/uWV}Ն)gY[s 2IGD\3WҗCB'n׏g [k<ݸi;_ZU!cA BU[fa p9I(hZ*dU֥]lWudx:CZp(jV W-$Fbb' ДFHb!YEq2p>;5,?yÁΞ(ee!B#HhYb<aUk@|,_ʡ @ Q 8W7$t5plT%K}úD?c2 r!=  JXm<6 *z/{*#f:mͨN+ù m|Sjf6Sg?d󰞆~TŜ*apL'Y;_HxQNIno:D%Ĕ3El27RI>Mc*d' I n*,Or! (W/-05_)Q[&'I߯Dcto6ْ,,O^ - zJ#3z/ڷ 9|'>F:##x#g]-*)>b5kv!#ĕg&4͂KaEX 0 cp'%ByދNt1R>!v >Q#x]weDFiR\u.2oN+#| :$4,1Gڙ Bz3)?So n+qI"<úWRy—LcYZN@H7-ED4ӻPVnIϋZ7ğ]~lK1 kAqp0qc'Lzì53p͎Vϑ,Bwӂ`]O쓱smhoFֳׄZ}lH?bXBpvޔT@kVmnxWw2H׈ZAGum*?ٝZ:J;#7 T77UgvyHN p8Mnk1%~.%2X|*R{P\,4i!sōHٸ8[ݜQC* ,u6}цQD2 iv)}.lkЯLJY1^N9z6/ K(E0#ΐ9F OջcZ?)IФ`n JbyʹK/Y pDIĞFsǒTw7(񺂔z؜֪(aUKAtڮq=6 s=R[;:E{qKJfHgSPN&ć.B(: ݥhLuڐ8NA(nkn&y?6)=D2-lH^*pLB2ʟ۠F=#&-P'nPN0AG&mE2W W3 9Q,[Upu")1.\t78pG GzYF~0p# # ̠q Lg&@.RT~.vq[-kvR Nі )"BA G c )hER ,tO.zPu|pʈRJvx`E`:z%SO<۹:@&(WBs%sK'=c Z'#>jv/ƭ`X%.a4QrE3fR;u{+,Nn7> ,V%No۲ zQSVfݮv]9*l2=HQ;m!gnf3lvȾi\+V$w7+t(d?z a=2S޳䟬0.uB/oq1m~zOűbߒ$6K4 !y?M7+JE3<ZOM2G\@$ = U~LxBm532{獱yYmy7Fn9 ݅nk qU-\se- cd73!`5 v_\MT{/ChZ/8JcFa{8b0&!5u;-6!f=2 ;@ Ǹs415M3t11tvɣIKuCQzkȇ^RL uv\ݱEPSG>HEtef?NNɬӽ@[n04$/ Kw K HW^^}HRԒ KIe7%W)9R1x:82 ,(E7Sab) JT=On8}4ۜO?Z\b* &Gr׾Q"ޘa|j*!da9|i_[ ̘ ? s% s`jh6V[Of$'OQٗ/~ʇ $%ǩbVY *0:/Lׂs%9I-';~Brr)5:5 w+ʞaUipôX6 Ff'}:I?Vh9"B_iI=@8W'րol%6WLqZ%s%jRVEu)&Tt(|>ėnZB:ٓ?'aR:岹F7R`TaDa2uo@ |a "&%zK`o(r*>Scށؒe˨5;1;].[D5@VYF SO JUPY V(Q>~n}WOu? W$>+HomX7u`_biҚMZUî\`NbgT9z |sU+Ǭ wV2x]OapHcwtUcj P{pBq.aվ5{l)Ȼ%@i+m qj_+h=QsuŲ"Ѳʣ9 Ȍe?fvkg x"Jfl?>C~ %0Tr`;+o"BG *@jH3"D5ޔ'5ߺ#QŎ0Ig%!i!(烯;gUjh!o!$@ֲ ו'U|χ%:>[.KѝȼO1T1Hw٢ͲA4mѸiD,v**}t9+LpprOU]؀'Dyֻ)˘-ֻ (wЮ`chB"Ι;ݕǿx1oߝQ$??&%d١H:Z39n[WqgcR~kmvѫb1Y!<;A"gF'D##kKU@KѦڒo@]AIy ѯ*f+Z҆~dj-UqSó.=bQEZ ɻ&_HgA9P#Lpa.#G&:ϣ/֭6Z@orU^/m"V=(x[& 5S `͞(|'Oaޫ[_7tfuL+lF~}Xc0cɾEPTպ/:L_^bڏi"PB3M\PTXGHMWP\n/˓ı8$obHZRB Ikv|[PeX(kP4i vlJ;{m99%< eBB`e4@ Z\1X=hD8{.š+:e1A=4V<[[]o~<"HobGa_ 0 E EG?Ϧ&^GVy!k \nY Pzr{5ɯXH@fa䙐o;/P *aWqSK(5rŸ]7'yidzZ(S`TbJΞaBCsv%/L*w˂%v?MuY\|,CPi/ vf;~fEU-ܿf:UK}S] sH+(C=8Y0ͺ J.R"I*J,X#K Du/ Z1qL[1WHC+PRX2d"㝹n[QUN)Mc``k;5,*z&hfQ~<ŠQgM([G4:y ^"A7rZj:Avi&nߑ }<0nk,9`>ߏt%mo4%ax3-|%L1kY]RV=Nz^x_eu~Nf"=B n6gZm_{Gmݹ:[X,#)7x )`2-d}b)BN@_8[FPkp,)q4~Oy'z)R,Sb~Y3ĭ[XF9^C&ׯd* (DA9s n(l/۪BaTEEyBhP2qaY\h3,>g[&I9L`17sv#T O~HYկ.(uxykз9Dy~^}ɰ"9a{YaB 2hlpz":"OBc@8l=>.5F!VkKKcݦ ʑ~c:qYƎU꺣\Yԛ& JjP@x30aq(:$Q=S v{MF8g`RtDN/bHwKFkwT\*fJdrAܷ\wn]-DT s֏V_Y;B]ֶ)r@jAZ,Pְe=˹$K-׏8 yZ7理{)/lUiVS@A/!E46JmfªŊ(ns9ѥF(Y'm ) ~l)=R @+jXq٣8s">\?m'9'jT XVK;hC,@KNQJגdž'rq"`84%fyn2 q$ӏ]# 갌 q*  cr&^3w_$c0fxl>QsV:IRc42y;b[f Lkl۽+w! fK.>fOtXR @j}K~jw" C`2uNZxu¶{Ao;m 73pۃжg07}NWw0o2R,RXm\c>jHbQ! k#k J'RA2W*