#!/bin/sh # This script was generated using Makeself 2.3.1 ORIG_UMASK=`umask` if test "n" = n; then umask 077 fi CRCsum="2301062301" MD5="dcf59427cb6e460be91a41f2176c22ca" TMPROOT=${TMPDIR:=/tmp} USER_PWD="$PWD"; export USER_PWD label="[wineditline-2.201-MinGW32_Linux-i686]" script="echo" scriptargs="Package [wineditline-2.201-MinGW32_Linux-i686] hast been just installed." licensetxt="" helpheader='' targetdir="/opt/MinGW32/i686-w64-mingw32" filesizes="25728" keep="y" nooverwrite="n" quiet="n" accept="n" nodiskspace="n" export_conf="n" print_cmd_arg="" if type printf > /dev/null; then print_cmd="printf" elif test -x /usr/ucb/echo; then print_cmd="/usr/ucb/echo" else print_cmd="echo" fi if test -d /usr/xpg4/bin; then PATH=/usr/xpg4/bin:$PATH export PATH fi unset CDPATH MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_PrintLicense() { if test x"$licensetxt" != x; then echo "$licensetxt" if test x"$accept" != xy; then while true do MS_Printf "Please type y to accept, n otherwise: " read yn if test x"$yn" = xn; then keep=n eval $finish; exit 1 break; elif test x"$yn" = xy; then break; fi done fi fi } MS_diskspace() { ( df -kP "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' ) } MS_dd() { blocks=`expr $3 / 1024` bytes=`expr $3 % 1024` dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null } MS_dd_Progress() { if test x"$noprogress" = xy; then MS_dd $@ return $? fi file="$1" offset=$2 length=$3 pos=0 bsize=4194304 while test $bsize -gt $length; do bsize=`expr $bsize / 4` done blocks=`expr $length / $bsize` bytes=`expr $length % $bsize` ( dd ibs=$offset skip=1 2>/dev/null pos=`expr $pos \+ $bsize` MS_Printf " 0%% " 1>&2 if test $blocks -gt 0; then while test $pos -le $length; do dd bs=$bsize count=1 2>/dev/null pcent=`expr $length / 100` pcent=`expr $pos / $pcent` if test $pcent -lt 100; then MS_Printf "\b\b\b\b\b\b\b" 1>&2 if test $pcent -lt 10; then MS_Printf " $pcent%% " 1>&2 else MS_Printf " $pcent%% " 1>&2 fi fi pos=`expr $pos \+ $bsize` done fi if test $bytes -gt 0; then dd bs=$bytes count=1 2>/dev/null fi MS_Printf "\b\b\b\b\b\b\b" 1>&2 MS_Printf " 100%% " 1>&2 ) < "$file" } MS_Help() { cat << EOH >&2 ${helpheader}Makeself version 2.3.1 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --lsm Print embedded lsm entry (or no LSM) $0 --list Print the list of files in the archive $0 --check Checks integrity of the archive 2) Running $0 : $0 [options] [--] [additional arguments to embedded script] with following options (in that order) --confirm Ask before running embedded script --quiet Do not print anything except error messages --accept Accept the license --noexec Do not run embedded script --keep Do not erase target directory after running the embedded script --noprogress Do not show the progress during the decompression --nox11 Do not spawn an xterm --nochown Do not give the extracted files to the current user --nodiskspace Do not check for available disk space --target dir Extract directly to a target directory directory path can be either absolute or relative --tar arg1 [arg2 ...] Access the contents of the archive through the tar command -- Following arguments will be passed to the embedded script EOH } MS_Check() { OLD_PATH="$PATH" PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} MD5_ARG="" MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` PATH="$OLD_PATH" if test x"$quiet" = xn; then MS_Printf "Verifying archive integrity..." fi offset=`head -n 577 "$1" | wc -c | tr -d " "` verb=$2 i=1 for s in $filesizes do crc=`echo $CRCsum | cut -d" " -f$i` if test -x "$MD5_PATH"; then if test x"`basename $MD5_PATH`" = xdigest; then MD5_ARG="-a md5" fi md5=`echo $MD5 | cut -d" " -f$i` if test x"$md5" = x00000000000000000000000000000000; then test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 else md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; if test x"$md5sum" != x"$md5"; then echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 exit 2 else test x"$verb" = xy && MS_Printf " MD5 checksums are OK." >&2 fi crc="0000000000"; verb=n fi fi if test x"$crc" = x0000000000; then test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2 else sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` if test x"$sum1" = x"$crc"; then test x"$verb" = xy && MS_Printf " CRC checksums are OK." >&2 else echo "Error in checksums: $sum1 is different from $crc" >&2 exit 2; fi fi i=`expr $i + 1` offset=`expr $offset + $s` done if test x"$quiet" = xn; then echo " All good." fi } UnTAR() { if test x"$quiet" = xn; then tar $1vf - 2>&1 || { echo " ... Extraction failed." > /dev/tty; kill -15 $$; } else tar $1f - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; } fi } finish=true xterm_loop= noprogress=n nox11=n copy=none ownership=y verbose=n initargs="$@" while true do case "$1" in -h | --help) MS_Help exit 0 ;; -q | --quiet) quiet=y noprogress=y shift ;; --accept) accept=y shift ;; --info) echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 144 KB echo Compression: xz echo Date of packaging: Mon Mar 19 14:49:42 CET 2018 echo Built with Makeself version 2.3.1 on echo Build command was: "/opt/MinGW32/share/makeself/makeself.sh \\ \"--header\" \\ \"/opt/MinGW32/share/makeself/makeself-header.sh\" \\ \"--lsm\" \\ \"/tmp/packages.lsm\" \\ \"--needroot\" \\ \"--xz\" \\ \"--complevel\" \\ \"9\" \\ \"--target\" \\ \"/opt/MinGW32/i686-w64-mingw32\" \\ \"/tmp/build//opt/MinGW32/i686-w64-mingw32\" \\ \"/opt/MinGW32/packages/wineditline-2.201_MinGW32-Linux-i686.xz.run\" \\ \"[wineditline-2.201-MinGW32_Linux-i686]\" \\ \"echo\" \\ \"Package [wineditline-2.201-MinGW32_Linux-i686] hast been just installed.\"" if test x"$script" != x; then echo Script run after extraction: echo " " $script $scriptargs fi if test x"" = xcopy; then echo "Archive will copy itself to a temporary location" fi if test x"y" = xy; then echo "Root permissions required for extraction" fi if test x"y" = xy; then echo "directory $targetdir is permanent" else echo "$targetdir will be removed after extraction" fi exit 0 ;; --dumpconf) echo LABEL=\"$label\" echo SCRIPT=\"$script\" echo SCRIPTARGS=\"$scriptargs\" echo archdirname=\"/opt/MinGW32/i686-w64-mingw32\" echo KEEP=y echo NOOVERWRITE=n echo COMPRESS=xz echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=144 echo OLDSKIP=578 exit 0 ;; --lsm) cat << EOLSM Begin3 Title: wineditline-2.201_MinGW32-Linux-i686.xz.run Version: 2.201_20180319_144942 Description: [ PreBuilt Toolchain for Linux32 Bits (i686) ] - Package: wineditline - Version: 2.201 URL http://www.davidgis.fr/documentation/Build_Prebuilt_Toolchain_MinGW-w64_for_Linux-32bits_GCC-7.2.0_Testing/ Keywords: CrossCompiling, MinGW-w64 5.0.3, GCC 7.2.0 Author: David Techer (davidtecher@yahoo.fr) Maintained-by: David Techer (davidtecher@yahoo.fr) Original-site: http://www.davidgis.fr Platform: Unix Copying-policy: GPL End EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 577 "$0" | wc -c | tr -d " "` for s in $filesizes do MS_dd "$0" $offset $s | eval "xz -d" | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n 577 "$0" | wc -c | tr -d " "` arg1="$2" if ! shift 2; then MS_Help; exit 1; fi for s in $filesizes do MS_dd "$0" $offset $s | eval "xz -d" | tar "$arg1" - "$@" offset=`expr $offset + $s` done exit 0 ;; --check) MS_Check "$0" y exit 0 ;; --confirm) verbose=y shift ;; --noexec) script="" shift ;; --keep) keep=y shift ;; --target) keep=y targetdir=${2:-.} if ! shift 2; then MS_Help; exit 1; fi ;; --noprogress) noprogress=y shift ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --nodiskspace) nodiskspace=y shift ;; --xwin) if test "n" = n; then finish="echo Press Return to close this window...; read junk" fi xterm_loop=1 shift ;; --phase2) copy=phase2 shift ;; --) shift break ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done if test x"$quiet" = xy -a x"$verbose" = xy; then echo Cannot be verbose and quiet at the same time. >&2 exit 1 fi if test x"y" = xy -a `id -u` -ne 0; then echo "Administrative privileges required for this archive (use su or sudo)" >&2 exit 1 fi if test x"$copy" \!= xphase2; then MS_PrintLicense fi case "$copy" in copy) tmpdir=$TMPROOT/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ mkdir "$tmpdir" || { echo "Could not create temporary directory $tmpdir" >&2 exit 1 } SCRIPT_COPY="$tmpdir/makeself" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 -- $initargs ;; phase2) finish="$finish ; rm -rf `dirname $0`" ;; esac if test x"$nox11" = xn; then if tty -s; then # Do we have a terminal? : else if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" for a in $GUESS_XTERMS; do if type $a >/dev/null 2>&1; then XTERM=$a break fi done chmod a+x $0 || echo Please add execution rights on $0 if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! exec $XTERM -title "$label" -e "$0" --xwin "$initargs" else exec $XTERM -title "$label" -e "./$0" --xwin "$initargs" fi fi fi fi fi if test x"$targetdir" = x.; then tmpdir="." else if test x"$keep" = xy; then if test x"$nooverwrite" = xy && test -d "$targetdir"; then echo "Target directory $targetdir already exists, aborting." >&2 exit 1 fi if test x"$quiet" = xn; then echo "Creating directory $targetdir" >&2 fi tmpdir="$targetdir" dashp="-p" else tmpdir="$TMPROOT/selfgz$$$RANDOM" dashp="" fi mkdir $dashp $tmpdir || { echo 'Cannot create target directory' $tmpdir >&2 echo 'You should try option --target dir' >&2 eval $finish exit 1 } fi location="`pwd`" if test x"$SETUP_NOCHECK" != x1; then MS_Check "$0" fi offset=`head -n 577 "$0" | wc -c | tr -d " "` if test x"$verbose" = xy; then MS_Printf "About to extract 144 KB in $tmpdir ... Proceed ? [Y/n] " read yn if test x"$yn" = xn; then eval $finish; exit 1 fi fi if test x"$quiet" = xn; then MS_Printf "Uncompressing $label" fi res=3 if test x"$keep" = xn; then trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15 fi if test x"$nodiskspace" = xn; then leftspace=`MS_diskspace $tmpdir` if test -n "$leftspace"; then if test "$leftspace" -lt 144; then echo echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (144 KB)" >&2 echo "Use --nodiskspace option to skip this check and proceed anyway" >&2 if test x"$keep" = xn; then echo "Consider setting TMPDIR to a directory with more free space." fi eval $finish; exit 1 fi fi fi for s in $filesizes do if MS_dd_Progress "$0" $offset $s | eval "xz -d" | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then if test x"$ownership" = xy; then (cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) fi else echo >&2 echo "Unable to decompress $0" >&2 eval $finish; exit 1 fi offset=`expr $offset + $s` done if test x"$quiet" = xn; then echo fi cd "$tmpdir" res=0 if test x"$script" != x; then if test x"$export_conf" = x"y"; then MS_BUNDLE="$0" MS_LABEL="$label" MS_SCRIPT="$script" MS_SCRIPTARGS="$scriptargs" MS_ARCHDIRNAME="$archdirname" MS_KEEP="$KEEP" MS_NOOVERWRITE="$NOOVERWRITE" MS_COMPRESS="$COMPRESS" export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS fi if test x"$verbose" = x"y"; then MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " read yn if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then eval "\"$script\" $scriptargs \"\$@\""; res=$?; fi else eval "\"$script\" $scriptargs \"\$@\""; res=$? fi if test "$res" -ne 0; then test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 fi fi if test x"$keep" = xn; then cd $TMPROOT /bin/rm -rf $tmpdir fi eval $finish; exit $res 7zXZִF!Xd@] }1Dd]Pt?6n9b>G-a2#7俲彉, Z,K}^CFN;v[7LQI*P92蒇WVi8%#wBf,3V"t/k}/X>ÒkTZ̘,oL1)TNcFͭ S]%2JOH2qFm#ϏW%xL5suVKێNJ ZS ̉]}GY%[vL\6gZoE#[AԫMz')UpǞ6P7@?P=Va.k J'΢mݚZ%4 \R\͔Е_x2ߕFP0IaaOӃVN ZsBY7K9-  07cAT- N2, rlTMPP8IƂ/d _8z+O-R{cX"rG^vhO.;Mf<}H#"'6/a |̇q(ϕ\sJml &Y!H3P/5zԌ3F7,^u pr,n7#Kdԓ㱮I\֠[2jǰ;;tCTwmPV_ DaFL?|{c[\uRb2RI '\}]Vϭ@ g۰U3Qkaw}7[i2D.5-gOnf DU:: KCE5mN(/ěE%?SE8"18ij+ÎPpVB1U4!NV0EhBYQ8Z!٥ bƳ'a-/-$V_o[OU hJ7;hQK~Sߜzj=I'S$R\PW8f* sɏzj]_e%U"Ӄg Ai^H;bI@~ RdD.5K3_*?4wfg/bN}v4iXAC4NEYø25rRA,d[R1=0_J] $(h^*C,]PI'/=t̎/W5ban_ NTe?ޜQHg9^/㒅@iRI$< _&!1Gu!+Y@n+>\B9DQJ~4k:3Ao|,5Q8U܏vq,\IF ByBu{O5&G#M"'EU|]֮\k?C[ D͝RaUUMd1ߤH 8s0iJRVIC*2=ּJĪO k^e{8>pd"":߼ñbel"bJ{89IX*eq HIe "Wy,fW2HX.pc#e|_K(7ϰ Ϳ4WO&<3k$1荙@|~˅WY[&TցZTLÊ'ף2mEʑ(,Zl٧)~zRqYq iHmUwMe=ق>ޏr7 -GϨ6g}IRj^bi_C-,L=5˵cUZ H3VpMT樅q(dNw-k>&}|ux -mš9z2r]'Ϭ WNlcX\2}o75^{!!͚icN{eP9mls1 ݖGgzA\41B!ઓ 2>wb<8 f*2&xǀ:D8ڐu|~V?$o]Që(piLVAXmG My$ om9@祚zveb)D^]<,ʛ[dC{h1԰ɶW$šx<ِ/LV)痓>ip!'Vఊ*STQ ,#h}q0% }:&eYf\oũf[RnkuTt+M$e*^.RF9yΟ;FEm6ąM ;VNf󀴇(DxR ˏQQ3 ? C17ŏR$6x'"R zlʧcf1xyҴY"oNZꇢUe^_DU/ $R]c\݌5=|vqB ,a_$a:F[=+mޖbShM]պBj-YV,+=6G^^WΆ%cRy)H! _+zIܔ<7.1Iۍ@}I q^mTkTH:=s>.cx[|ٚ>2Mo .M#|DG\YlE?dž±B9d\jhS8i{[h :Xr^g$D0j(+н!MDɚEϫ0bS׻ȧ$ *n4V>PbR.Ivaa6C2^9KcwzNRa@qN;{sS#Cꡱ9Z6pRAJ۞Ͳԗ6yrb||!#2pΆg2QXɬM?,95T5|q=N&LACEbj.E)0a|h#a y( Fq`2+}/OP7QbIp̅ #)G;q¦:gC_8 yxH GDlKWW w\8&vbY쩯"-|ϤHTJ@o-P}g(Nۂeŏ}p-"G֙uoˢ(#Af^K&$\+8|+s$IjZH ~Pϵd.;.d! Bͼ8N3cd07,@Y74\G|q_b7z>Z}CRB!K5t-UQ>7 >X);Kh$eO04RU s7Snp+ f&3SZm* =m<-ygK^kfnbON+]GdΝN[w`R|}r_fLs}SNִõ(>Y=YEOV@hr]gqц_X>>t z&BP6u&; }?ݙ8esѻWGS)sī-^mrFXsp`{ = RgGG>qB/t@q(6+!ᢶz~ByP[_}OIBp趽x5SmȬ'H1 sL.nJxb\F׹+m4&/l>O-L6=r ~n XV56 \ᙆ$r,z^" oxr,NHuX< g*[NBS1 rz)fQDԌ IbDۉ5YNjW[O`NM-a759!?d@cq 2o%tn BIb&\c)Ӌ0kYv#/2)?C4􉛎6Qzt])CR\\Q~Re Ԝo[ݻ֗ɫ&I!YBJ>kLsTsqbfl8Z}=73(gIl[#r@XANJI!ёoU%G(Rwxh1C!^9.xg@80X gWXPD¢0d]Hf!;0mxP96#jV:j2`=;v WĜѰ|es|)J+ih&&& jZ%B '4]wMOG5 $uF? ġۙPx6aנ!_67p L'<1|_%Hz'dPXs6kL\sc&8_aʌ8R(b-/~1jh ERiLyc.fHŠKQӎ@8pD'Ŋyd%/^J[1, $)l%0 NԓypC F N ʰ~/o"  6O[ePUz"雀'E]e=Ðch=hxE{䯰 /ƿҨNG="G).ZDkR WWʝ/ݺƃM5Lq*?tFK{Drlgw4APm9l[/8*Pp?p췙H*ݦסÍz=6\Ys;kA[!ax\mox 4ŊC &e9Kq-6uvē&X]U,V XdŶ k N0*2+U.RK-{@cNVH`-:2ϒ /cZTi'F/RghyJo {nyy"T *LMUdu(⥟0(e:bэ~\ cWl(tA}q($;a)>+Þݕ)OT@BApٗ8>⑦Ѱ$N:w3Yk~6odZ˄ v D?cBBk=8P4$e\. ?B#nE"=Wrul%;[ɫ9b_ct-.6g,equ $(򀽧R# õ$%1^\GtAX>7q(ODCiZg$; ^#ڌ}ev]߀~fTGHm>bZ{ gt":쬵=$<2IyM*E^o`7{ 7cONeXZ'p ]Ⱦԩr%ᙟX{"$&cVeʃ34N&>;DPBKԚoxS 9"^[LsSIif23fL^7eQl; _*>qԣ ) 7e z}o|s-N\֒G5̔Q_>1'" jEq6AAd^r-l>$@ĩ@rZQ_k'##v)`7UcV@ˍm S'dI<> V4UMfpj), W/4:0 4>$Ʊ(5w}\_õ $ᆇ>̀)ǗlMg]oqޥ75J7! iD(zOuCd^9/"kYay[p oHI_ޭAYPη*#Q) ~~#eϙp0ٞxʈ+.H>Vu^L2ʜ'(w.Oj,S _sOtaU)}{glFd67ƃ<]R1 xxx*?4d+_O:ņ4ofbXƕƸ̋U2ѷ0ue{yǘm ?\);1h"T{j7NuSne=u FZ¦BȒ?ho5PAYjyJFEޏWw'E |.=:%'V[݃&Sim ,stXcm3JMb#̿_2&|)! tOh\r+?ՖX0 ["+΋np0%F5'e9T B=q-3q>FJdɯFfs1MD C0 4Uj ǐ]\ML"𿵲c42 [ 瘯G*#vI>3Y0Xf da]聩W 2$m>DsuDoHX*Ȗ9x}EC6^Is6*>FM?=֝%Euytx!*^7p/_&P$Wssvrp[+R .q=bewтDݾy&Аl@>yU}#ӷ\灢MZƦ6:R%VƷYk豧L|!u3we'Tko+`ؾu-ư&Q}24yH7ynHsp)m03ķ<^z,̑prVrt!{YL>L *(|eͭ&.6eКL0 tNzw#'&gwa3騥v ,ۼi Z#vme~ֹ1gz @$mC'_̩q6$*i0R֙V@VUusy(m>*;r_}#.ڂ\ UPl=-Us24.}fYF(TrwHSqE8ւ!F4E$m6w22 @5 %Τ!. M>=PWmT%h6̺nsBDx_d$ܔi(.TM(-P[숥ոf !uO /l1}.ٔZ,؝\%H:.')QD w:Jf|f;pņ17^ 3ߍi؈ETD|]R^.ExÅrsNR1H>N^c?%CaJS5 AC\iP\@$Lv3VHH˩tkw= UF.g& ޘ}U!5mTfSN> R1v0FP2cjya7paCNr;ێR}*kF) ]>͵ƳU1w} c^9@ Ok7A\zY7ϺTQgm:OYMlW86-t}R9*-X\Hv WB }>qP%g͐ݙO;w2fmlwxdHtb+!Po򣮔!n /uΫ[B|܄ܬkJ^M$+A.^~$g0i4#B8TZ$#0\Rđ,ԪAn:5ze҇ RJ~ h?!ܢƆc'?*Wg/eǼE-v6\Sa  5 ' y=w'ܯܵZ$#p%.GDn`V74ZDs $ƤF$TWا˿8Dy|qw3>B y[Ǩ+oe<;>h5K$qjZ؈J=*X*H=&yXQ$Zs)ߖmܼ\aAVo/;3Lh׳wg7uIUا s-ѹG)TQzҥj;D1"yT> unVEKϬON#XP钶kdpA:y>j=58;mrT䎥Խ Qڬw[H=l)ׇ??Eq&l#h3H 1&5gGgvw )2oD|P{euD|N9'VK 3G0MtE&Φtb&.pS4}jPG\v.rQ'*Ir OuzN8{Utύ9K,Zo5p_|@oƟ!p~KmpXՑ7oH/Rz/© F&hc0Q;TPsض(\98wֳEP%uKHL4O6zn(#Ch!uX8 6c0gRQDpHFTh !MoiTھ[1tV"}&d Wwi%`< /#zC=Y%VfB4OZh2_f9*+FKI874^x]_{'rÿ,bSz}jwg 5ly-wmyB5Ks֑S+IC;eq 3$\b>2cAt)趩 YSh︞_.8_i--ܫZ-! B 2赭,ר_cڰWѼ  rlR}HCyxph؂<-'[s&IDu zІ"Ql7{\2)!Z&uQi8j 7 }܏$L G[[XUK.3KbkzѪk8K aۧnJo]YGt(hW˟}.>zd_KH*t Zvs^A]ūLR26k# Ay{q߱i2:@Nh\K@w 3hU[` мcl6 &7Ġ\_*ˡN:OJٖ(<,n6\j‰ʃ*-[bcF磌4*"gR8!d3C%&U|5V&LFܸN?UB[kxߚȁUڀK5+B9!_X̓ov^SMy KbWۯ0 ޑ2"E$UR`F Dwi6_РuBSI, {={`?gD'2!m /x(i̵=Ej- *6ϒgNØE[r_9=MSV,؊ENL| 0y?SKޢZM Ht}[7]4FVDI1ǽh>{\!tᚮۅQ9Zt1׉:kZ5NS⪊Xq{.KXN7ݍ2K6,_ V锾{I,{Я.% :3QǪm1kBm0 ,n\{g|W6mOMn44fٗ, : 4>_1szUVK|PVL\11 T:Do%[*z5`xk5 N,LGp.{dM\ gs|r흕oQ\DpqY7% @ @4Ej¿5I@nw76jCd] B/M~]FZ6jiRN 2=R`844!LV ޭsMlv_uO߹GfWNU -qo#j$`ȥ:"ǎ%,(n""W#L])(UWM2*/>cu=5ԛ()ZwPGGauO1\F3>c!5#%+Vus-cSOcϾӴMTiH'BH'爷 }[h p _~i+,T/w!8+(8 ɿ*$ zn;MPh*%qf@NȄw%CLvsC>E8G:t 14`<:9ŜGs,Y8BG=&~2JjSN570RF8ӂBϫ 2q)@@t=n’;YɡymȱD[l6XǷC潅.HY ^^х $3gykEr GnT׍>1\LOo9%ȷih9#"PER;Im=jZX=n$4yۮ@-KpnX&|#èLsOf' AU8yMSv5ӏjVVNDqHM׉h 7 W~1mvb Z>zCA;qɖL /-^kPP !(2#! \j>!Y&f=>;D Rs (X]TfuU_dNGi05 dG;lĭi])C1'ŋo渟7Ӄ,Ecr2_rZ* Mx{1S-mFnI٢eh,ߤyAJDg z.!Ӌ#%ɭ 6>~F TD/5r. ;QKrZQߞaE;n.: { 3H$k =S#~)-Y 꽰akZ<ǥ/sk DQK7<0)+̧6AqUuKֵ2}fV2d2QrMaBɶ*~ tkBX8W0Ohf?6b(tmDmZQ+j$b"MfUhשy񺦇%#WI+ʗTCUa@{'O»whӲNՓJ73N(@W(VD +2N`"כ+3=Ev|WlGIaVڹ}慣Vi&TuTFb4|KqiʵNZk]{%LAFMZ.$ ᇏgt}"ӰҭՏ ]z?HL D j~'mG} AYX}akv+OssAeS bPң[ 2)$8d ? ̱yZwܯ `RY^aL4t8qa-$ ?B6mCBc{qۑđi=N\7{c4ΓK֘Vp[9Y]G杩V`N2gEY6Gubwi-FF4-T*BUZ;gϕ-QX&WN}AYo?ύy) WLɕ+!xyߟ6(ehl-٥x! aKn+,ݴ`N1ݏL*e?k)NAloN|;X ,[;ޚm^ǰ;y&J3Sd#"C@łMhqlnC&Ǭ )[q7;ngBDmXvܪ-٠Z Dߙٙy!tN=Ueㄛ ,2݅I)1R|;KqnfZa`^\wK0ԗG_# OD kv@)ZN68;(zAOu KmrW̯7,M4:eh) ##v4wFwɪq?L%onf 9@ nQaXn`3n2gTzݞ<-9%^`4u.sR1r2D*rBlf \,%\xt^vvkԳPVys+qYzX^"2;%ZSsko)WVY:\A=~4Bhφ&f֟g}V*쏺"\7&'( iHd q9^{vLzufm'nf29W 7lhQיB s1F3Y՘z}rmHN|)`uoI\r[;K.t/N@:d1,pU(6bg{2EG)}P]8кjIk=ٱ?nrc˵f{N@!x$"@!Zné7pkz&hqr?ߵA籸G~@RQ{X|D7[+Ѣ4{EfnvΑ+y%*Y}f m9>u}~82aH- ,#<uae% W.{Kd=6C(yQ={g#Wk7P`B?"lI%!W~#I rjDPFLTkN |ܐсCN7 8pvci>:=3ٗ,Al%h i"ɈN͈ܷSa ǎl1Q7{i&I> 8?; C Tnӣ^{ԤVĜhO2I|Q0Dž^=%8LqnX|W]i,hk!FNC[m? 7-(赍⸥`l+INT)EJSwt L"G^Hr_"nCeY`p_~XBod+$ %v̘ 96jJZU6d/fKyH4p%4L1bb R~>un(h;VU.+K9>0b ':T$O«S/ؚN_d|5!ZXl BCq$chbi4if\Z+Y I_ۗ$H,\8hp&wmm2&I46 ڃRD:Y{5 ŵ)ԧ6({PP.TpAVUͿf{ L ʴ?ʱ#nB}Hs}Wh { /qK@\$AU_uV/Lr`3|9nu3Q C.";ll:Y'fq?+K  .D #/ 8j +o 3Hk*ڍ|KA@=a 1.ϖ%\l%+t={Fe1Y-or<&vn!5o$P[>KDqs`ve:agU)75FX'9"Je |jOKyiFT|bԧNM3܏k5FC]a֬Ӛ]3*#4#cn]D6tUGd{`vpʟ@{*TF|'\D)W'nz iv^j)-NGoBPTxMp%29DzT ,зzJAQ]4<(gKl<էjt ~%.8^coK '2D@0,r+IWmN rf#o}TG;B kGp{GR槽y{^qHpϊrq?xKw!o8kU8aՈjl]T̩WSBWrڮXMs3v}ο*A;_!jW2cτq`+\b@u^GUwJ '~[m.FiDK/Ɵ9 Z]W3PeďWZ.. 74- B. KK,1!eS$۴i 9'Hs]wҡJ_5<4xblq\bkhjI7NL,a,Viи]wOt,7zZƤGM)o*E 6$D{yv`67l_i4EhI|AW ~d;34_)U2Bcc*{hgn]Ǧ4 3+9{]Cٮ`WFT1wi@*XCQJN@ ,XpӾ ,<#s2GTA]Dqd޶vJq/@&g>Lp3]f{e hƏ ꛰No]l|N.?wdt솬!nUA]YS!Bf]x'XM0@a r봌 e"-j%iYvVU5we$r#Iܝ:l:^$wU_&uEީr~kSn?%Abѐص'P-7B2CJk'(=I!DE%bx=bq刜r#sw2<zlbFufb$]8-B]xTaT /A};vzX{f]*LeTu(% # &g`kt]X\;㽽RK$hX#~ ׵!&zJ(;ppD%:wvce#^HΦZJK-]n)*Xˆ~՗،^A,`_:6wZcR[N@NO).wQ s?{yć1u#bU">j:59 hytsy>6`y_tG-M eLL*q?3$I;:>}ɬސ]?KuioV$/(>0{k ayӂʛIzRAb%\ZCajx~pΒ!mR_AZ.GRV辤Vk*D՘&I)Fj箖Ҁ#ӝ6d"[$}Xq&.rRï`wV34iYlܗgHZ .2p,#ᡭ?}8jU)Q1#T1bϧ^XSA}s͘1qYm+ǢlpAg ͦL7 QxY *OA>T`[_1ˌXv 3X-IxF]Ú} !<ɑjnL pGDE(_t?&4ͺ˓H|oss. jl(л{D`O?+)l6Y!\>ut]JPNuwJ)J&48Ѥ'Ms?NS_ k6'W]$Z_;I;w:VPzISB>}WD; PD&&V!hpP[h0¢h ,'R6韼y |B8]X#߸+cϬfώAUn~nE[!!_i iYf((fcD>hk([ec6g( ^2!},v_q!"]1ϖЭ6hzUIFnFt%&\cUq0~-`О/Oa*0 mʢ3.lhO2:],TYՇۄq/\qN;G58DWF/\T!۽ 1F4LTdu\'|E1°8Z5˴Ӽ,&M63M !6<74דY 5}ƨ)ocM9)^xzBhMS ȇI3 2+,bٟ ?woL]?;С=Ɔ:u,*JŢA#ЫA3w\6_q.׭+yRR"3n,ކ]ȣo[|1ҴbM,ubrW =M22?5gH`p\@^UfSƔt2[2Vb)B F]1C6cJSFWVrJ `/obnζ6?|/o~3WK UvUp3~eĬc]8&وRDVP)4k"G !Z50R wg?[Vt37ll Fd4iKV꡸F R卶˃2i0{ 6/a  ,tN`\"a :盜LZze%F`Gr?cp,)E7P>a_c{`e;+:FqpgG3h4 V%R0 *8oC^00o>.k!}W56F0b?vN>˅GTrT0'bXg@ J=jѵ%t˃l`5P{uy_#2O3H2d*ރL ЄڹKNGl:w+D~E,QT˄R/1nAߊ&EG\i,>-7b؀T4Tqΐ66\>92#߀i.,I0y3K𯉳G6>ɕeSI)zfMw`ionzPS0P> #M{ n\S(X7vbh0\S#O1|xPs`8">@n ^M0Ndo}Zu&lDz$ M$ Yɐ*E ׶߷qd*'~)WQo>j5؉I#548?/{~F Ar͕^YgYZ