ghc-base-compat-0.12.1-bp154.1.11 >  A bx!M@eeeyؓiaoI.o 7QI w|:lgχ$'*$zܡXjf#I+ 8 BL];cw.{t!&ENQ& q*X8鉌vS>qgPu҉n=rSk i]# _4 X-ijTMY%J0)IQ-~T`)pxe  !!kF*.>p>/<?/,d $ C $*4D L T d  $P`  ( 8 9 : F+G+H+,I+<X+@Y+L\+t]+^+b,fc-d-e-f-l-u-v-w.hx.xy.z..../(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.bxobs-power9-06+SUSE Linux Enterprise 15 SP4openSUSEMIThttps://bugs.opensuse.orgUnspecifiedhttps://hackage.haskell.org/package/base-compatlinuxppc64le'``AA큤bxbxbx;df244f5112baf9601b00ab969ae6b1b9774f727924245900deeb7061327386eb788b0c0ef27a124ddab8917e477fe900f67240eb62bc332b2e4d9c33a9be86e1rootrootrootrootrootrootrootrootghc-base-compat-0.12.1-bp154.1.11.src.rpmghc-base-compatghc-base-compat(ppc-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-power9-06 16520969090.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-compatcpioxz5ppc64le-suse-linuxdirectoryELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=aa164d6575c65589295187021337f91c4655bc45, strippedASCII textPR RRRRRRRRRRR R R RR {`4wYutf-846df6dbcecf155e2c71481214fc9a1320b86a0643fec9f94f349a2072fb01227? 7zXZ !t/.HH] crt:bLL @=`lO);MCm4Uwے'v;@QPkF6/Ov·bxJ> ~.LBNc.Sw!w;/qQ7b%. QAa3܈8bBO#K=@[ޫ=BrT汸eǷlĞ.CXVѥLohz蹁![1Ͻ=\Ht]ҁvAsɴjGk\6`\ݵF]M14a1Zϓ#N1w 0Hl`t:1ay YK4xouSWG-c8;%a!GX1̤0R+42,;^ɷƢ1- 6u.>VP jN-G9uoh4=\-wlAFEl*l-/¨[\-sau w 23n ?ćl p Vg8^.sUbR6$H֦+*zՇzDѢҴk2#[5rX]{̞X3H V+^&ЄiiXܫI1y(K:e;_ޕ޽jCIs Q؜ƀ7lt`2.k'ͦڃ2aPItio;E_^`_WXiz =<" dBl2,N,k7!Sm [ {DkYQ5-.&\7KF" I 6jn!?(Dm = $tC#.{] ~KD7ǩ1=Y%2m ~4zz{.S`Errm(@5%W6pbϔ}<@CrNvW34%C%Ѝ kgVZ@8^!k ȗ4C}r̰9:\I9oo̠TQC7߶ڗw<0;b%^z7dh,l%k{fCQxd04?, @$o/o 3_ DسcD?g [.aKa.YcG5aH3.LJ~B6BE1_8k`̧ kg#F0(X*3pi7}y>ll#;T'TCfiBUPL$--cnq^Ii/vsSsά޸of ^obM]AX6<uW[xYtGu u#nˉF>4Џ?ٓ+GbCDg|cv(5P\zNZZԧճ}_Ziٿ"e?o& |t]d}!AI3r!'{Vgq\Hl ޭJ Ƶ{.[:"]/='IJ뱧jQJ) uU6IAWHl&ӥx oG Y+*|X~Z g 9n)P4lBސ5DWnw,ϯ(Β.wD=B$p9!YQd<c/G֒Th6.3-yk.h 9^~E} v  z#W'w6=/*Jtnv?u`K A%tWny![ė{MLhMjJoI ̴'ڕK]&YE轧]^yεYbboEE,7O9u}dQ 6x4L:/?u֍>CCm.2_dxzp몚<=>wנurƺ~IX6B;IG )L.7r<"[P)eG07& /I Pp۫T u*Q t+ /</I BBf2667Q :/أ(k䤚Qd  x *xE,HaaVDAQ$}npC0.gÄ:Ө Gb m^&F@:x]Wsԕ=A#pcӲ ;1L/M euU V #⹎'p/M|`;A~o;!WOVhϦ |s,2eRf)+Iz[JQ_4H7Vh夌mֺF.vu)u0겫~+(X'6isD=W=e>C7v|%zjIbk(U ).Xw ;w;w,>˒yvIhYXPGw W=Tj5 $)cS!--*NgiMik nၧ݁e1Ն}7P`cE23@+wRvڞy9PFTN* o7H!,s-2kH`pXd Gd^g4v&NXm+r|YLx+wL @_љ Mu4N/yW|*JyPr"T/~|z)߈!mL  s|^Pvu3rʚ2A,Dx޷W($xETa-NUT d*. Y9tKc:h*`a}SȂoM(97hSK} $~.d~ČGLDbu4lS?u1E8<\V-=s ʥ59B6.E:W(P^|=Nvs} c};cJs}"^5G9)rEө8(A5+/GնA1ag"ڡv='j]7|5ލ&&z0%D aSU8Di5[WTޱx7 iB3?AooD""w[/j^*b^h -+DG={Lc=y(]Ҏ S:(ģlgxpqIٲ[Xl[mx-:rlٿG4pN{O&[eIRhRuǾy˝"GZ/Bu{wYޣM;|%REД1sakt0aU>!VЮJ>.;0'3? qA偢w_4жXfl_=<34(}0 E0I@Onv~2⎏x1)(v̀NO\"kn0܆(6 4拠?(<^x5zb/2Gf,Ά3sJte;5X0=GI Pg 'UaQaA:"443g[L,`C(8)'2 INղ /o2klUc|_WS.85wžeG.k_ikS+v;~Y>d@9US_g,` '{e)奼'}!o/#f]>2wzmּ7OT3up-DM3:SrAU ɩ,6wzM©ȹ`%ρ\y`+DXV.pu]z\$.pfeT䄑D) d`kzH8~qGOs-a;lo9U%"c$JAfp iM Q\4Kf3e[ DWcHw({pr3᮫XK-|7'?_&.kqHD&-RHCRSV v[/pf>7h-ȰG\&:|BF-Ϭ0Dݚ[CM N1itȦVCJ>\rgNTIjUWc1Ae}~(;s<23>&kCW~ X!c.=_m̍m<ңDq`.\wE]Kqp qrr[1kP]v|(?2TV8 pͰ܃]^U%IQb^9MnKY+~;6*+w;1GkZȀkt12[h]E0*o G`\O (]f]ni*o(*=p]H0&n@g=Zz1ukWlsV:R4SGWloV2 P~)K6͆u NZgLie㮎eUz{7G㺹o iL+(| Z+Aq 7 #UoF?L>=I10o```*$Dz jڊsqRhuveWf cfEF"U7G֌Kf: 璊rfSӏ}iFE3 ]mBae: #˄\&t-t䔈~KEO^8Ρ SĞɬn#ҲuB\] ިQbu9&OPdևY:!RCT5E%S.cs˒,&=sxAսb%1ڜ͌G8Uc뭊BPPS'2NWxy-/iNEW{rvE}C+Ƒ)pPw?x3! WؔWCY) qG.3gKm[;y v Oz*IS8ǘR6]VS۹h>%Yע&* I i2bZ*5F˘b:]ls @zWH磫LұQ1s!4$LT*ؑi洭J&vҶT#2U JEjAO\qSr7ؽs@$T>+#lseLfLd"˹w3!&Ȧa|z[Ќ9p]ZYO`782Ev&_i+ NH\ZȞ~o3t Xޱ rO]̌ܚƬR;Nt"VZQ\ UgSr`1nve_X%8ۢ{C_y-h=ӬH>A?fi\uJs ;G0ZZOݰ ȫ#Cp`4{G[(4~ *3*d@;C3(~c.&k26} xXo0EaaO1BF9该#'M ~!:j( s6"$&cW/m-VӺ!$RˣFZ>BܦjәK!=%ĕ f%-JG;gtؗơ+y pM`Ym1$-ux&7g/-cGdL{]ρ Ti\9 ՝8Gn$'"aAڰv@!yeۏ]\`=O/i?T#2?98$Cd\nԘ~ZMXW3 M)L~Y~=m~Țn][y3ir]l!]S87UӰSGȘ}&%1}`qrZN1L"egԇĥB`fU{gCe[ )%l֔Yk# ,Nb0$ KL֡;A?w`TY85 <}B|[5.9CF.qXnJlRD"HE.άhJv  @Qm^A}4}2)|ޣBRKBWGt&L=_Qkhi f'u*t-PjĊ5K`#X.7,iKtVob֚d* F)ž}z`^I*@z ,ool]H٭~J1)a bLuǖ]X{մ4DU+Zb畧~~*j3q6"Ie?)To͋hb TkI$Vt)\;HI"PdzBKJ @Ҳ՚bչB[Mw)@IˡP``E$\e@MSwhy">4@ȐꙨj p!MpDH&SӠoE@ڌa48˪ރW 1BBٳq0 gU8Ot@K%w4 b]7G{8{u$,Q k .?Ƿu(&^h ,-0,X_}R`~5u>I <EO XT=f|E0D #ӹ}EnyJ< nC3%/k! C|$bv+'Rq3[898|^(M4(#n$3rίJ*3k :.<nAOo 5p@T\ЊEy1 9+wpǷ6wo3s o(DƔB+/=6ʂc'!iûPj力 /LȚŎko5!c?tmvsN}ZFc t{B9aK <%ϐx?x^k)_jTlsBc! d'_z>OQ5zCyQЗtaT9]P59=q0!2׀O}w'::w҈tGف_ hZ_$U(;5ʣ ϯB 6UYƅAd/ TepJ|B\\\V*YR2N ܘ|M+Nl3F-bcj".욦 4n3$чȥSYkY[}EtBI65tmD<ϋ'6x ȿ+[CMLTms k S"XZet0|Awo)X0qb3UK4ý>JDrn3Q,A qރ81xM# >û. A3XYg7),[9[1B&!Pi *mms!mRY?q~Fک@,d/2QqL(lnp[*?y)٫}:O/ +_jʙt\sH| Xhh?-4Oa/ i!)#2mM\Ȟ]C=z",k.&3<"]R-5![=rVo-38_4jzch 7 *RՁ ~> OlOp<O9|ư\&ݴh2HOnvNճW}r˿lM;")v|c^k?gb`RÃD*r^"QtbӛJ\j\c$OB'ˆtCg'E09|hb7X`a-'6Q8?~]}W nVK@w-X8";[̾`i!XuBX9>s~pswނ|5urёj.+c0y-ax bP4j-tF5*VK3\uB^cq 'i[Sq-9gΓ'}{[^$Aj;֘ ܲ.8`gqCy\YTiҫ 2gm543E=:dPWRJ* {ҏ- @E ,H&JgTρ,-f;؀@gsr)(pz. Jk|oB[b,f= 0Jnn ^3C^/|ӖчYd/4۵`enfl3ц8C}fŪ&~Md¾,^]KT:6 N7үotbTw{sH,Evϛ<\RG%0֎+mo4amP݋cWcT(, $K9 %eFcPlmHq$H_C0$-Yea2˵LeHs}NxdV 5`D'Hɇ|,mt \@9mC{wXlx!t6Wc+Ʀ{RF㥼 ZWDai2mvi.ёٷyn p,O"]0#\' 43j x]ЋsPHtfS])8kN:=/&81Ձ'=.x:zbwb WeiĮ,#{֎\>{>'udG+$8<+I3*EFҫ#YrGTEEz}?8qQ7/EHD!iHQ/# C}׆@*5cUf--R\a,lH/1cU&hL\J7{JJ(lHeVPU&;hW2km tZ&e^~uڷ]QԮ-˙ise)qLHg R_w ;t8&)qW$7hSp)v~f&VL)wr80UCa|k-=eΑ LNS2VT!3yxOǹ -9 " -6|Bm?e+& y04tt GV:̝6'!Qw-[{ESt֜In0)SDqrܧ~;GҸ@&#TyaLHwg$a>S,;<hLTA7)z%9Զ9OqL! ))E$iC׿3Vju2 C۽6Koe>)}K+/+63gMU|Hu9$E3-7?>$ L%?\$Z5:$֦#= qj-h&/I %vk/K=OCo[_BIQhZ>/qۊ$H=TP3<ܽ{XSEag ,w ;e)2J]ju0o6!j`U8߇.KoO3Yz'C"/,ndF}*"+U%B6q`SU:Eb닃o]ԑ~sܼn73S kE1lɢ ΋|ljqQ  ɒ,]}HСp. ~cm%U!A|kp_,\H|Sܒ~ΰk4X0]֬zWؚ#[gun3fc~EDtnO>$f0n$Z1h?Q)m$VjՍ+#.7QIf[jvy c:w5x&إ? 0yŬ?I"z2z2ސW.д7tx \D B S!*\ZMF3[&dd&S)ABUeC$/x)21-7$X K, yJS 0p}'?i@ۺBc#:VBvZ)ߏi:.afqh}9Dn7r F贡Oj4<ڜ(|o G̭MJI?*?N Ƙ|Ⰼ 4-کˢڕ_%2/XXⓜ!uu ۲)xiY lqiq6N MM>!} "P] 1v5 {Z`dq{0A` 8kLjUcaZ{G!ރvvTQ 3sI$E3ڽS#%]9w7)zmճ,SSCsO,Z"L ܑogh 7\V|dOQw0XUR.)/, Tؘ0iix-W> Ӑ.Q4QqK젮 J۟f[c#&%̴QR+ &딿KuYl )h1I$(:+[c;egk[{0m*8G47O"\{؍u*gp@AIj7#KpjqT]2Jcn+F֔E"gB(,I9wKTLwT 2ppU@tŪ#_y=/5iL ;p!p㻻U؈0ۻ @#ZG@FY+0U BYXPOLNSp{Yx_{J4O4|?{j-ȬqV{^eg<فs;p18 Ě~|ټM{/~s}PL0f!ꍲh$vP?by쇠ə> Z܏:1s !jRpChGP 5.$ͫ10: o\/GB*M+8; 'fu/՞O<#|Jah3EK?/NMI~,}MpܛIXn3NXk9 D&4.o}>ц\Ì *̦7B[/1  a[GÏȮ =3FRt.7HmR=w9q'kk_čFDBZ^_W1xmd{ޥ=>ϐeY2E^?UN`$"1QgaY HҌ$Ya9SkwËk4:'۵(bO}Ud\bƇ(yV gl3Afwe%,j.aи{ [`2t|wS$`d R=5DȿU!9ӥw%}^ZRQ''|Ěbjl` |iK'-v!f׍qJ)'H%߭+uu*1MюPhR ֵns-;R`Ǭ% _ápgr8k<:Ӝh/1GAfaz`''*9x2h -=,ʶ!u`D-b].ˮ^ |u`|UUI~YnEMQ7btr 0S5Am d8sl^^ŵUv# 7YOqԦ,B:76|B܂[g'!dk=/ulvb oM\T1 5ܓ5{Es \pG"E}#A_E3S*wgUSwV5Y13w}r<ɕƓ)ZzS4sCa xP/JӣU-#~%縦f67ʟ74UОA~{S8&,! S'k~h0!λU{. BP"H->j ۬6~IR#Ōو9,n6Yo:Ie=N?e'7)  }۬=_Thq.ELJŘhECwqs9.#L3;՗+wj SǦXUZUҹd~1,1'?3N_y ۑFY< NMU! ͻHuL 1DFEfJkV;ߐ=Qq"!'ԜDbTRfAINGY3^g,ӹ5uQvK[;̨ٕTJ a +M vP^Tk#P?Ȯ6( ` | ] TT <,< ㄕ(w B1L1l)s"hq YZ