libvterm0-0.3.1-bp155.1.5 >  A de%yI%z 5_cE;p; "^HzǻvxҪPjrŮws3r KX@F0aoq!Q8h HWhS[kiIm?I1–PéD

7C_S̓qp@88?8(d   ?HLX\y       H p Z (|89:3>4@4F4G4H4I4X4Y5\5,]5<^5nb5c6Wd6e6f6l6u6v6w7x7y7z77778$Clibvterm00.3.1bp155.1.5Shared library package of libvtermAn abstract C99 library which implements a VT220 or xterm-like terminal emulator. It does not use any particular graphics toolkit or output system. Instead, it invokes callback function pointers that its embedding program should provide it to draw on its behalf.de%Ds390zl23>SUSE Linux Enterprise 15 SP5openSUSEMIThttps://bugs.opensuse.orgSystem/Librarieshttps://launchpad.net/libvtermlinuxs390x:`JA큤de%.de%0de%Cc|4459ac8a22ec577950898ea0cc612c13993edb4412429c3e692075bc933cdf8566c627cf44f0c59daf81ba442e62e9b3d3cd1091a41e116de5ea9058a57bbba7libvterm.so.0.0.0rootrootrootrootrootrootrootrootlibvterm-0.3.1-bp155.1.5.src.rpmlibvterm.so.0()(64bit)libvterm0libvterm0(s390-64)@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3cʂ@c:^@^@^]@]xY*Y)j@WWVbVbVbVbV^@Dirk Müller Matej Cepl Matej Cepl Matej Cepl Matej Cepl Martin Liška Matej Cepl ronisbr@gmail.combwiedemann@suse.comronisbr@gmail.comronisbr@gmail.comjengelh@inai.deronisbr@gmail.comronisbr@gmail.comronisbr@gmail.comronisbr@gmail.com- update to 0.3.1: * vterm-dump specifically emit NUL/CAN/SUB/DEL * Optionally emit NUL/CAN/SUB/DEL from parser than * Don't bother to emit the unrecognized sequence in DECRQSS * erase_internal should only set fg/bg color, resetting others * Added vterm_screen_set_default_colors() * Delete mk_wcswidth functions as they're unused * Also accept DECSGR sequences for superscript/subscript- Update to 0.3.0 (unfortunately, upstream doesn't provide correct changelog so this is just log of VCS): - Pass lineinfos into screen resize callback; make it responsible for reshaping them - getchar() into unsigned char in vterm-ctrl.c to avoid complaints of comparison signedness (LP1894806) - Avoid remaining VLA by bounding the combining-char search to the max supported chars per cell - Avoid putting a potentially-unbounded VLA on the stack as temporary working space for character decode, by using the tmpbuffer in on_text instead - Set a much larger default out/tmpbuffer size (4096bytes), because now a size-constrained caller could make them smaller - Permit overriding size of outbuffer / tmpbuffer as builder params - Create struct VTermBuilder and vterm_build() - VTermAllocator field can be const in struct VTerm - Store INCDIR directly in .pc file rather than indirecting it via PREFIX - Version bump to v0.2 - Selection send and recv should use independent partial-state storage - Also support sending the selection - Replace vterm_push_output_sprintf_dcs with a more generic _str version that can independently control introduction C1 vs terminating ST - Add a selection callback for query - Don't emit any mouse sequences when mouse reporting disabled - Remember to reset mouse flags as part of overall vterm_state_reset() - Add a usage comment at the top of bin/unterm.c - Capture unit test for OSC 52 - Further bugfixes for OSC 52 handling in various split-write conditions - Bugfix for cornercase where two-byte ST is split across buffer writes - Initial attack at OSC 52 = selection management, to set the clipboard - An initial attack at documenting (most of?) the sequences from xterm - Notation fixes in doc/seqs.txt - Provide state fallbacks for APC/PM/SOS - Other C0/C1 controls are permitted within SOS strings - Recognise APC, PM and SOS in the parser - Use 0x99 as a C1 test byte instead of 0x9F because the latter is APC which is a string introducer - Set _XOPEN_SOURCE 600 unconditionally in vterm-ctrl.c - Make libvterm compile on arm64 Macs (from https://github.com/neovim/libvterm/pull/6) - Ensure that resize shorter does not send the cursor to a negative row - Remove debugging print on DECRQSS - Regenerate fullwidth.inc for latest Unicode - A much more efficient find-wide-chars.pl - Accept OSC ... ST without an intermediate semicolon after the command number - Fix printf argument types (https://github.com/vim/vim/pull/5456) - Partial bugfix for uncleared area after resize (thanks Jörg Richter) - Recognise SGR 8 for conceal (thanks Jörg Richter) - Define a new dedicated 'state fallbacks' struct rather than abusing the parser callbacks one - New string-handling API that streams in possibly-multiple fragments - Remember to length-check accesses at cell->chars[] because it is not necessarily zero-terminated (LP 1846869) - fix memory leak of vt->tmpbuffer (LP 1843449) - t/run-test.pl option to abort on first fail - Accept convenience formatting in ?screen_chars assertions; makes unit tests more readable - Include test script line number in t/run-test.pl output - Add a short unit test that resize on altscreen at least doesn't crash - Only enable altscreen during unit tests that need it - Better handling of resize to try to avoid the final memmove(), and not drag scrollback in unnecessarily - Can't lazy-allocate state->lineinfos[BUFIDX_ALTSCREEN] because that allocs during byte run - Initial hack at tracking 'continuation' marks per line in lineinfo - Allow run-test.pl to cope with empty assertion results - Be sure to clear DWL/DHL status for blank lines caused by scroll - Pass 'state fields' as a struct into resize callback in case of other things it needs to edit - Remember to store a state->lineinfo array for both buffers - Do all the initialising of VTermState in vterm_state_new() - Rename realloc_buffer() to just alloc_buffer() since it doesn't need to realloc now - Rewrite of resize handling logic to hopefully cope much better with reflow- All my previous builds were just figments of my imagination, and neovim upstream claims one has to use 0.1.3 only. So, downgrading.- Update to 0.1.3+bzr767: - Remove debugging print on DECRQSS - Regenerate fullwidth.inc for latest Unicode - A much more efficient find-wide-chars.pl - Accept OSC ... ST without an intermediate semicolon after the command number - Fix printf argument types (gh#vim/vim#5456)- Update to 0.1.3+bzr762: - Merge bugfixes up to v0.1.3 - Partial bugfix for uncleared area after resize (thanks Jörg Richter) - Recognise SGR 8 for conceal (thanks Jörg Richter) - Define a new dedicated 'state fallbacks' struct rather than abusing the parser callbacks one - New string-handling API that streams in possibly-multiple fragments - Remember to length-check accesses at cell->chars[] because it is not necessarily zero-terminated (LP 1846869) - fix memory leak of vt->tmpbuffer (LP 1843449)- Make build verbose and respect $optflags.- Update to 0~bzr755: - 755 t/run-test.pl option to abort on first fail - 754 Accept convenience formatting in ?screen_chars assertions; makes unit tests more readable - 753 Include test script line number in t/run-test.pl output - 752 Add a short unit test that resize on altscreen at least doesn't crash - 751 Only enable altscreen during unit tests that need it - 750 Better handling of resize to try to avoid the final memmove(), and not drag scrollback in unnecessarily - 749 Can't lazy-allocate state->lineinfos[BUFIDX_ALTSCREEN] because that allocs during byte run - 748 Initial hack at tracking 'continuation' marks per line in lineinfo - 747 Allow run-test.pl to cope with empty assertion results - 746 Be sure to clear DWL/DHL status for blank lines caused by scroll - 745 Pass 'state fields' as a struct into resize callback in case of other things it needs to edit - 744 Remember to store a state->lineinfo array for both buffers - 743 Do all the initialising of VTermState in vterm_state_new() - 742 Rename realloc_buffer() to just alloc_buffer() since it doesn't need to realloc now - 741 Rewrite of resize handling logic to hopefully cope much better with reflow - 739 Recognise an __END__ marker in a unit test file - 738 Add a version check macro - 737 Bump version to 0.1 - 736 Recognise SGR 4:3 for curly underline - 735 Recognise subparameters in SGR 4:x to set off/single/double - 734 Define some enum{} constants for pen.underline field values - 733 Run unit tests on outfunc instead of buffering logic; truncation test is no longer valid now - 732 Optional vterm_output_set_callback() to set an output func; will eventually replace buffer logic - 731 Implement Query SGR by building a tmpbuffer then making a single vterm_push_output call - 730 More efficient one-line implementation of DCS and ST rendering parts of _output_sprintf_dcs - 729 Rewrite vterm_push_output_* functions to use a new tmpbuffer on main VT object, push all output via _output_bytes() - 728 The F1 to F4 keys should send SS3 rather than CSI when unmodified - 727 Expose cell colour index as API value (LP1805035) - 726 Document REP sequence - 725 Rename/number some more state-related tests - 724 Renumber the 4x test series up to 6x to make plenty more space for state tests - 723 Implement REP CSI (LP1805050) - 722 Add --executable/-e flag to run-test.pl (LP1805034) - 721 Ship src/*.inc files to destdir (thanks jamessan) - 720 Add unit test for fullwidth emoji char - 719 Initial attempt at better handling of double-width unicode characters - 718 Fix implementation of query on bracketed paste mode (thanks jamessan) - 717 Need to use 1U << 31 to keep C++ compilers happy (thanks jamessan) - 716 Make sure to use CSI_* macros rather than hardcoding (1<<31) in unterm.c (thanks jamessan) - 715 Add DECSM 1004 to documentation - 714 Move 'reportfocus' to keep numerical ordering in vterm-ctrl.c - 713 Merge lp:~jamessan/libvterm/focus-events - 712 Move strbuffer into the .parser sub-struct - 711 Internal rearrangement of string state handling in parser, to better fit upcoming new API - 710 Now that parser 'text' callback should always make progress, no need to use the strbuffer for it - 709 Bugfix to account for UTF-8 decoder still consuming initial bytes of a partial sequence - 708 Improved handling of ESC parsing so it doesn't use the temporary strbuffer - 707 Found another document about escape sequences - 706 An improved CSI parser that does not use the temporary strbuffer but instead works entirely incrementally - 705 Move parser-related state into its own sub-structure - 704 Fix -Wpedant warnings from t/harness.c - 703 Compile with -Wpedantic - 702 Minor other syntax pedant fixes to bin/*.c files - 701 Make all bitfields 'unsigned int' - 700 Use an ifdef instead of commented code in parser.c's debugging - 699 Ensure that all enums in header files lack a trailing comma, because some older C++ compilers won't like that - 698 Remeber to 'return 0' at the end of main() in the binaries - 697 Avoid the \e escape in string literals in bin/*.c; replace with \x1b - Removed _service file, bzr on Tumbleweed is too broken to be used automatically, rather use upstream tarballs.- Run spec-cleaner. - Fix `libvterm.changes` indentation.- Version bump to 0~bzr696. Changelog: * Add S8C1T control support to vterm-ctrl * Implement querying of cursor shape in vterm-ctrl * Remember to document ST in doc/seqs.txt * Adjust linebreaking of 'break' statements to avoid gcc warnings of misleading indentation * Implement DECRQSS on SGR when set to RGB8 palette colours * Reset the pen between independent tests of DECRQSS on SGR * Bugfix for disabling mouse mode * Ensure stdin's ICANON mode is restored even if vterm-ctrl exits on error * Initialise mouse state at VTermState creation rather than as a side-effect of DECSM 100{0,2,3} - fixes LP1640917 * Pull VTermScreenCell.attrs out to its own named type * Merge lp:~jamessan/libvterm/reproducibility (#307773, boo#1041090)- Version bump to 0~bzr684. Changelog: * Avoid "\e" because some C compilers don't like it * Don't use wchar_t in unicode.c as it might not be big enough * Remember to pass unicode codepoints in uint32_t rather than int- Version bump to 0~bzr681. Changelog: * Bugfix(?) for SunOS (thanks DominoTree - https://github.com/neovim/libvterm/pull/1/files) * (Alt-)Ctrl-Space should encode as (\e)\0- Move description from main part to shlib part, since this will be the one that always gets installed.- Remove unnecessary dependency from libvterm-tool.- Remove libtool files. - Fix groups for libvterm, libvterm0, and libvterm-tools. - Change package compression from .tar.gz to .tar.xz. - Change %{soname} to %{sover}.- Change package name to libvterm.- Initial version based on home:gmc137:neovim/libvterm. - Version bump to 0~bzr679. - Change package version scheme to match openSUSE's guidelines. - Clean spec file. - Drop obsolete patch libvterm.optflags.patch./sbin/ldconfig/sbin/ldconfigs390zl23 16843502760.3.1-bp155.1.50.3.1-bp155.1.5libvterm.so.0libvterm.so.0.0.0libvterm0LICENSE/usr/lib64//usr/share/licenses//usr/share/licenses/libvterm0/-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-SP5/standard/23f94712727f2ca36c85d292fd395332-libvtermcpioxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=5dad89274ae59c93dece916d61eaaeb4bda0f5a7, strippeddirectoryASCII textPRRRRF=z{jNutf-8248073cc03cd63e9b606f9ac7f6945bc71ec64b0f64396e9c4a82fcfa6681ca9?7zXZ !t/Aws5] cr$x#HtGq"=4-1dHtDw,氫%R#))㉌PʻѧpWMP0 *asVdFb3j|mRV1xH$QyI rN*A6oe0VijYQ6T<\/=|=܀Kxj\ R-'vr,ZqfJE6`T'4+DFM̧F }&c xtڤ_A `I? ̐cj Pf#  f`<#8o:nvdp2 r4+ RzP5H9MYz|LU@^N``PO]" 4®^ mpc#;U2A{jMdxcf}ż1At O|MW(_d L$V/trҷ= xN@Ә:s?KZ1}U%2_ $x|Obb ML0(E8[JuAu9{X$A^/g3P/9;h}Y>q0 qCDT\6m ZF)6[Mpꟈ{hpZC.(1@؏sO]HR>-lY1 *gb~/yɖ];k^l֣,fObz3lqWw$8oeBb Mu!=X:OAF4LHkRNY] wQ7?DiI @nÚ'sCHtsS.|?#b2Esvmc `L]Ϫ0^ߞnNQ`&z9F<Y7.U=n&'pyBRlH/0!xVŻ͂Qṧ6( tkʞNDu;'YjLI }*6mmz %SʳY̖Mv1 P1nVyZ|-X$;bV <╃%SN^M)o~_TEv;'`o/"vw7V(7QUra o0WREYgu2~@R߭ 8 XXEe -|45$ ;mJ#9l3dQ" UL@\T7jsHw[ڽ<$BG N3dA]]'AnoЮPN{̬$xA"%YqvBi 4$oq" 3D$oD\H'S>%Y[_s)vԹߙJDwf9l;?PʃGq`c@;+?X+?˪Kf0 ibS|\[3P8yDI+ù豻E*@qTtx`ϖ~kxcQUN/G\AuP7LK[Qf-@M"Fydtw}SKFbbfZsin7hO*S1W -7~E<'Jnbl¡t'|w|6HBy.'I#Da _ :Ns2{RDh 4T `"WWdWj[B :>8?Af%-m4I8CWzha8 I2 A7uEt@ iW 9R©d/uߋn"EdgNk['IK]7`7_"e < \`.a\soZG~(zz@Gn F'KX&r|U^yH#NmLyzz5S$a#i#> EFӇhms)UffлجbF_9QWp5nn_4ok~i+T:K:6]20>la"fDKaep@X\aK}Ib*SMaom,+6 w͘<h5y(E^9DNS,Ry(aH|&*~Ahd3 꿆*@[Cw _oE^5U:c!nsʖejx7%&I9 +-R vIfZLmU/m>F.3 y?]@ӝk~&wʈ9+*b|z*&~g ڃ4"= `[tWRaf"vm{U|I=v9"$4]OS gӲhUnZF98 E͗Kbo=Az&76PPvԴ`}vvmj1y",.i62YڥUDS[1n9o+n"!G:r&9{doCmᬘ?eصNyEtH>ж׹YD+9[x]fXMO#K=|AAGdv\6Rtd|׽T;KSCgNXX] bEꔆm7d]\u 4$ZFˁb­ӀI n9,dLY;Ejkҳ׍uī%)Xo#)ic]38_ɧqEJ/sB+ N? : SلApr@H}v']Hl ڳ*dԽqw  vІ?G.Gq4oן+ՄXxPkekNߣDM)viHQyhV7σVlu;8V& PJ ѐ7G]D %zU-P/rǃ@y&De,piˡLȚ)T o%>\^ZqVSר/23S>'\ᯔFY BC/>H#(.gi{iejr9Lȑ4n͛UJҝH8>.K~l(`͢D(ء{7(3gB}%P<꤂+' L%+:c^oaqi ^aMolE+Z`Id MӽoۀNU[s$Fܓl*(fzMƝgח?؃]8@+[S)[EU9&xՄoHБ Cvfޫ` g}i.|+ qnI "~ޜ:CwknL30S5h؄Y7hՍ3ҟCӞ40B'k즩F'c#1?Mnwh=z5B"pM4*EF ګVvC88۰D"}fvCud4nT"C^LYVrxw bH&j\Gtl2JRW8Xj.h)a 7 W‚G\\P* 2i7 LGr7u\|A׊(~>m.jxUwOQ @4G1hݏ{Sk&^5')B"JbNQy'QxJ˚튿ZP F\3]8S5⯖)Ūq G鹸P!zMCw=<~V=f !_D7=xܠ5Ǝ@UfuR!2h~yρ\r;UbV )sB sCFKM\@žA"LobQFO ubp¤aA@{C:k_}E*=D4]EZ!&GH0tlIY&-X{^N!y8T? 1TRT|yaL,2W+Ӵ1Ə2 4}q<ꂬ/Vk:~96ܳ~6ÙjR=-d4&7{}c[r9QGXZ#xTqm!.Pק|Tp✤08*G!Lfr?&>{z HʪYdUz7-RY9D6b,q[11i9CxI7]&P!0,B~ኢ]D) ͯAy8_,hwJJfEfzKY?rp"BW$bPn'~7EzܥhP+nf{y4"^3TIɓlDž-L*}Rq,h]Q%:c oRa&,WSZԯqջ?Z;l/;UTd5֌>epSU״{%L1Lǒ;RA3E^,Ny}t/96|1`b G``>>À:4DI% n#サ*uIM}SaCʠiutʰ~mmqqNf5})R*ʓ}QB%j )tR9VMq#ڏ++jM'-Η˕ H)29G. N+_ATI\N˕ DZP{p] ] !c_E@z`u#1)Ob"cCdM֞=_)hl M!ZjGbQ|z?o)ץ_Z1V9 ?$"(GaB\#B=khKe\,t0'8}./0H/#,y8%RxZyT?  ?]%HDc a D#TG?5I0C nEuLP3.aLܧiǑ/L a +Ud62O͟@&mOnuNTi9[m%<']u'.cR* 5'興6$I.E.G߈U?<|I?2h#̒t rȰ*p3`~QmA'RcWЗmߑNȇ&݄Ċz+i!ỏNy^;ښR-)RYyXҰ  EZuYkǩ=$Hm!7M"_Cm] *dXj7CǏR0]Ne.#cu|џFU8~G2ˇЋ"苄l@6 C8D;!\FH= Td`Ÿ$דZB >C: LK&Z& %S¦]t={?HeRHqj&$wGuAVi#Qh㈥t%S'dnC:iUf׺'oW%D']!KP?n;arL^XVĂh,B8F%LzҢd? O-)Q`Fe:ȔRW@{CqNq](\ 6U߄&~!eF}YA0zMȅdw|v)ͯ#¨ ԖN)w:}Em RNgVk_rJ02p{DΓ@T"H%Jᵏ&c)A#[c$7t& &#<3vYt&N,;=(M8mGj'!q˅IInUқʌk]J$%(3"̦{^5O w'_ńV_F?m .Lox˱Ր"|_񢅓!w+cx3JsÞ0ߋhJ&LU,P}^j<sApmqӶ Aš{0|7>ġX^H2#wN9S :,o@"M"$tq|^ݭ td\z%T`v(**)FJ E1[Vb!Q2].>Gusbv2!4Wr<ŠR~a0gqЍKbƾ!Pr|MN }_G"bfskLOl뎎Зguk݄`J9Xڈ{xh2EcY]G="T97˰Q_ FA\r)@KEz ŷln<&)EH]WØbm9$l ­Bt6D않|% 6ku!<bl:{õnFYĶ‹Nh%gry&n~킐.u㗼Y( .`2QXCC} b|([LP.ܭ%HJkJxxȢt~VI+.u?dak'LPFQAn\]]x]൯[' 6au:ڏi8wL@MRl2>8 82-9H)Gf9k:BjULD3S \>'8m~qKLL(QDʪ:Ε7fCK0C[`?Z~0Q`辺 }@ r+-ly7e8;Dkr4l/L\)7xDh"a>LցQ^{+j/M_-WJB})vs\W V"O-X2djK՛ήt$x{)g,`V;i62 ]#$@*ዦ ^}";@$UoB8&XNǥ-9LE+OI$f|ϒhTj,AyYbR <*HIO(X`yX=Xn9c{e\ 铗pТ/[51ARhk|kqkdmbq(֋\PX[=۱_$s{H*]UY!UN!F-yvM%~bɜ7L4T5X i&`n} YL ?tBie]=d[56߿љF 0j}Qc&4ac"GirhfUuuQ tH=#N:n#36soCgdWtȕQ:j"`b jM< T ido m/$ "5RfFewY dCץGL.::@j]u e*ƙś6s:RPΞo^Tw\}&^ʜ5*oB\qJs2ҀX'ٙyNJ8-1Qʢ sՂ}"h&xY0?Ё6dc͢ m`Da6"b~ p[P!FƵUXdcDuq)2 ZIFE>ʷuE_H]}RPon9AE}[:9b_U$IЃ[qypR 5~?y= >I  [`(jRʵ2NY(&p`CZ? /sQ0LTbh rb )q]_Ub/Ֆ)q,1`jMy1VR4ԌmrdM8@y~D!)&L )‰V3,Nt8K.yG ;HMslü|Nm ൡe4ϣI+*dM@xzl]WRоI wH?8D82.HO{>F5UKwiZ= sVy'm NGf{m_ܮXD-i & 2@;CU墲ި!L9v½>&ʳ9({aM8b0n 6Bbz+.~YO GYYbj#5rJS~#^ W7 G)f)Yh1A-8-A߸_LXC (8MFXY:6^{2v L|\;QNtc]H8jze 羑9j(ۄ@ZJ27,&x=cqVbZr#ΪG[N$_ G{%:L%k:{RZ C0>89VP$`Z5:#_D|qav3knIb]b]OMhI m3!w<師E5\` ~W3$1h Jɪ`,`ڻtKr_w2ɡ_&UYM,П0!tOq*'Ma2Pj:a'n))MT߼&{uqJ ǑdtUCpQZ:> -SsFa_VȅtC):!|}ֽ|S(y٠^hU1DK!AŇ~Hz7n}C!4~Qn ٞdE5.Rd~߾@d R(NG|D1N`댭Hr%ƛ)Sʷ8OPVX[•J,._ꚶV؆#ǣB>R}k!;IfʒNUC"{eYh1^!SAma$6*.b,D!Ɓ~x;yD6X :Mn#+|lg,tx-:,|d 5z$BK=.hѽ8nktGAbwuu13sniJkhLA䡃c"S_L;3߮(<Lo~jí0ؽOjB5аB׮Mj챑YdM4<|5ԥ%Ix䒚ZDDçJUu5*H|㸅{13&'Y k}(Xe@)d7OhM"ѲʿXc Nˊ* /D3%.4*roZKF)*u&4%OȯiYsE3#8AuXyu7*@YV2Q퍀e ۥ@]{J<1J%| rYx?JBH>Rw3I*0?4!wʹ6a۔w-W8"']=quzj+zWrumH xW4O۲,VvSXin/㾩4VR"G}li77'Hl[/`ۍ]5OI[h/ L^%,>g|eM&m7lEN)BPF '3cYA7.2G0},kY[F'zCRZq#~?XWkMۀY2]FHA>iʂ_=vsKfwB}e)C'TSyskԬ{V?At]b5&y)/jfu :`yI"oJy8Pi * [d,`curS6d?,.vUٺY~cZx8zOF=8z [f>LmR7)R~YBzUHG\1"hڭ^4Vّf`;5L=wBH1*]yIm|,x r̵ b;A 臤Q{,rs=hLmս] 3xJNWFBv*L27fDȄr8&ڬ4Bbk=T:bbB^ K=4l%dS,'p1i?uF)n!2 :|7jXIVaň^*-4Иn d~@L*qNc(WۘnhMa>(D$Lz> Ӫy fO@ʘo$ἸrY+9{Ny-sX&ݿRAkԸٳbfY5+|BLu^P.ʎq?Rm4x7ar Bf Q+ * ̄yWw%Ez<μ`P2eW*#)k+}q~DKn/Dp)):΃i.FjFy8eȍVT]+7"̃Ej#8V8@ Ʉ5K!nÂ;ӻړ](ER X}Upz*+gR~4bvN>bJ54+W{چJ3 6fT@ϴ/լ׿g XyO9O 9@C@ =f[mr%#ȥbvĄcB3GA̬~&>W!y;5ʉC&5 W۽HڰH@ WHS-̭~HqFS<9: f8? Y/z}B*)UR<'f3 .uH5^G5pm3s mK(噬XbȇR㇁c=8g ϛ)!XJ j7U؊oiQEfhK! L_ (DNJyQK!."!a"*OE0Kk0?:[p ~H wWS{N sׯ2bhrqVO,KQE;VysEpAVTsvu+ `g=2Zꡝ ~.NCm"\y$L;/8{ɂG9u->¸)V>!~~ ԒtEC/cVA9hVYT@\Ř'Z!\!(7~΅ZQIդD}YM->}8j]TΑ(p6@얹¨\ Z 9;RUaYI=.~@{7d+]`鷵<]JU~_U⏑ZA,RYNM=~Αܜߣ%2;pxam^X݃xݧ,F\D84pRE?{;!6K9KLA y C>=2ۋӉD.C6+N8N^uOjGBkݢUy*EgfL.C`|hv%p;YR6foȎ-XˮCxqȔF^^#>~#||󋄙94-~곯ݔ%A{5v,`i>AQ_6׊TX )T>||Hmbl OO(A]n~ڶ3Ųg 0 ņb>P7*Y *jEvb+Dsˋ`k& Q fܘc2URm%J^ES Kw(KR#oYl=ص} Iiؐ01LUΒӣ@{kEC'F6}ӢB脍Q<wP޿BNH7=]srVdƥ}cAHop|{'yi'~7c8@!۫/$2#_44#қWX1Y$ M񌬈Z.+d 9smOjs$P-LF%gSܛwnfHu >x!)A,1!zQY-7NeAX)-ӛlf/~nX=\nsO̳񕻈|adߩv"Ph 0(7,ɧ2 _ Bl;_U㈇nke+nPXUu`/7K 6SSthtI6w9hzk)H5=Z74FdPUM;=wDK1қ!leG_=wM#MPy3J"܀}e-W#v-MUKG10x ?53lZ#K1%Һ*ï\s:dYV{W5МhJaK&eӂ 玛Zu֎k ]:kq/0&:*̽BYz*Tw<FިUi[a=gP)P@hשQXZl$G!4ɌRzKLOo7[Rkpܑ·?U+Iiޫq]+$0Q eq3շ-횦 ;t6QsksՆ+P.'hYE 5~YgI 4*_e# 29qf0sNBnT* h3ib8-<4iVʤ7[E s@f<~[nZGOtv$mHBZ B vjxȋdxxby nhji6DT  Ӟ`ͧqsNXWVP!#ZIv70:=tX׈ՙ 'i7@] @,DVI{7Pxm&0mh![vIio{^ ZQ1wcKdH'jPaص`,\ 2,W(q`/ :L!c]S k83j=k}hsF&-!e{ K.=WM׉0?U~r'vQޫkؒK[Fe5(Qu P]ΘoFcORN.\cl6,QVc'q2 6w-蓤EW3'g&(*x~zvI%'RC8 {Ei41_ہQAQo=weȧ5nû%Pa!㲯R;(VMcTL(:Ԑ='`)E87tD㌫+-g*͟Ĵ*nKnO oaO.Oc}?ͩEaU,HrIQ@ˉTk~' ,L\ FXK' :Tz#*v/‘! zk- xH{Ƃj"ʀzp J웁J+uP(%J .74|:ZaNħ0`\|qm7W Lge][Q<\OY.E&.՚/>rDu"ATooE ?ɖ\PY% 0bk! "#hl}&A-׈|Q$Dcjp%KPGGPoT^Lܞe%kтmQ$eKnr4Ɯ,X \2M7 3.1E^"~sBeޮ `2VDHxly&^H}ӏHb cC~3!?ѤZ/Ru)kÞw(.-!a|wN}G w뺚3P /`_ѧy8d5)E<at?O&(E'mgCS5>@o[CHsi2*lk:X$\YY;El9w馇ӌBPߎAK%3vE6bb#C‘c @awv`zϠeC<#IY_dDAp!%;',$ǜ(?,埰5šv.za -rîr8}$gX%*jxuS-K}XU1[՟&T6ȁqx@`CSA7W_ߜkAiѶ>>VXc;ByD\q&w̔ЭVNAdp 5^W|?&}X(jp(g߉=p gE-=\e+T8ϼKd0aiJhi7U_!`>61wl1@y^ªnrR Ԩ+Ȟtʍ{yugYc17dH-ە9pCs]]iKIطUo$8g)4qХ7?hϵC1_]is"BRЩ8g稅 *q#.-.0]Oo-GI0B#?.s s־<|߷w=7ܒ^4.,RwBe7Ojz ^/q{V2 M}@Ð濬UFa &cchI5Z[㦝s$DbS*xIΛwrx|*},..nw=h Zocf'=ݬlr\x!,3Ri^Bgb*vh.>*"zkRysZr/R(󔊍%t\hl%>a(D^R`Xw\:g>vHQiAzrĹ2T^!$p{7-*xsg5:}Cssy /l3@7}Ӯs_o|>Qmj}FU$utsCNO\'K1Nd8s;*Mz0P_}Mڡ<PvHD`Qڬwi 'zY\o&Gx"ɹ_QnpPs\g)fX4BОƾ17e#gʆ$ѳϵޘnw>i#{dNAu0G=ߓmBqi@wʃ.I{x2c*g L{=wjs5pv9fkމD[QlT(Irc9FUĐA8'6k2nbg~h=M('M׿E3z1騍%,dTԯvp5ڤn]}D-H3/߂:doB LȽ%V=}B,z]EKb3$*W~N$'؋/S w롡Io&D0LlL&2b3Va(<63U?te-v"̗d˳ ,WS͂NhǏCL>ƍZ=gЩ\\^aY"?bb'0fl |xa\$ lu "i1&(v=bVQ-^6f-E 0R4g,Y7=4V1T2IB䪤j -;oKLjZ-6Zڼy'-V JJfԡ[7Hӿ迠2t>tCD}0YaLgBwzI0tE] Q"#O(Z|gf1g̴U lI{N{Tu۶Z1bն\{R\TCmB\*Lଜ΂}ZAq9qΗJ|zfgj\_x(K6HQZޠHNOH%(Qحܚ<:.DeA@ 6p|=8C'V zz,+fqMbUi~' Ud6`JA'PkRN{ֶD >iW“Q4`8NO;I pvfE@'])`m_p\ϧݔE|fi| Ϳ=J R/NfiNyLLo]sx T]$Z:o +{O0.f<>_< E35PnN6$H4P>O&%Dx'b@Ÿ]ם6v0:ɗۆGJd.٠+薲VWvp){.u!# oϹ+P-zGfȎ>/dن#{Ř4w,۽܌y۽l?eBs6Fe&9O\'; lwYaya%-"+)B"e ?T9&vm)c-"r.h { Ŕ-A/|Ki!&KLdFTgNA6f1g%]I$CSZHHrk%s=-\. dq (Okn_Pֿp6 '܍ϣn?7ZKZA_i,P=?Qw#sƒJ-c'MgM)U\<{o$*ڣm.8.{'<"yڲ9.6qyu@ہ{bؑ$B=1~x.k5';ȹR)%К"+^ :zn\C]T[X\lX0[l ^]hPnӏ U ѮєcP{,Eiv&u9u׭GA̗8;WrۊI[j,UNkjA5aׅQo^2 H識ܒ0BR=Aa4$fe'CEH)P$ӳU2Д8ߣ$ɤ4HTɍǵsEg͒>@8zFHeT-,$ld?.!R1-8gY}3mB?cUI6;kX! ^X?\l' Z~à{mF+ ~# ܐ|T- R> F 3WM}]0ٹ 5ܗY )a1"Gof! ;/g"@(Z}K C>?ȝ>ěHꙍѺ.j@cvKxEpfq@_(=n JH##y](3kiH YۦPğػ&˃B bَyyh<";z̧񕒡!Vix́j'#d)}%zIhL"64Llq״zC> ߷݈5/,9#cxNCv^yɿ=q/`(BO.YuE\-Y2.):%2){{jh(٣B^œo9άO6fbcv5H%gL87ub񭄞f=^;B2#%j:1>Y+(ȏ^I?p*^k¬@X)e\)ԭ5eЅv9,bwmʷ]nE0,msoU9;s5ء1jԆoOc"S5vϩ^$ ?@bأ{ٹvL3IG+tu;$%4[uz/)) &Ěawi*cR/▁6*ǿdZ58*:g885d>\;rdi sɕʤQ e[u #$1Midg^`>жjўr"Y=-.vYi֘D8'/x:<ڎd0GvDH`y':fhjx@m6M[MThY0Vg2}-n=ݫJ1*7,%kRg H/3د*R[ɾzZ.ҳx٩z' OYϟZR3rF 3oy~;ptx\&Dp:>3Ԧj1-y+t6W,} QZ=-U\hL e<*UveW[ G1Ն\| i ת&8Rk2LD1_}D^cSWFE@QȠ`d2O`3|ΰ;Iۀ1 )s:O}f=YCBd_4-<)"Yl-+{/9|jrYΩ y.cB}/^s)h)d..A$ KU.b1ݟ|wCᏲ6v-$av`4S.HIBKsqI5rmd.RGx5Op/RXO>oZ?PauʟJ}-()h#]'[}@C$r@_lp[!g)̺h-O3$PEhcLWS`@zFyҿP×MX2PFIsƒ.Sԑm`eS"زq$xIRajO֑); FBQxǏNR{  ,^~ rV sQ0 9T_tӑ+09ƇW^|_ܚy_Ch5uĢ"g)iHC@L[Q ^S_5] C3- H2Fx{ s4\#z1_`̔k\:A6;RcpKi4\w=jm#lI$Far$mZW:^"P:w IJQB姮(Vl*lS(gx7s: 8*0mDD!J2Ԝl2 ryuI}x?.@Oe9_爽E72(`v) %>{] t9?*wyOPS45.80n@n0ηB)5FMK~W]& Jgo[X rtlz:Z((?|NBdp0v0T0*k $@x9x컸J2>k;~q#"wԍlZL(9m1vPՈ&mfnx8juN%o5-&.)~*J#vPc`39IPxIv*Mb]DbXy+3,mk_vc FqgӲW=iBQ3)Ƞx xV$HዸKDz?;w;^Y>*&.b5?aòjCp\oӂS([AGUVvF$TWk\];*?d5 2_6"<1] EG)T|n4/lu%`)y 3Z",e?8Y_4pq.Ne֢'t>‹}V/* 3!u#() 5+S0;J "z?akH1Gě\/m8x,Q3 s6N tG+.M9v+ ȔI*e yEwEEdkӸO%p``j`zNcE>/ YZ