#!/bin/sh # This script was generated using Makeself 2.5.0 # The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) ORIG_UMASK=`umask` if test "n" = n; then umask 077 fi CRCsum="37980426" MD5="26718bd8f4bd9c90fc49738e4cb57a78" SHA="0000000000000000000000000000000000000000000000000000000000000000" SIGNATURE="" TMPROOT=${TMPDIR:=/tmp} USER_PWD="$PWD" export USER_PWD ARCHIVE_DIR=`dirname "$0"` export ARCHIVE_DIR label="Makeself v2.5.0" script="echo" scriptargs="Makeself has extracted itself" cleanup_script="" licensetxt="" helpheader="" targetdir="makeself-2.5.0" filesizes="27165" totalsize="27165" keep="y" nooverwrite="n" quiet="n" accept="n" nodiskspace="n" export_conf="n" decrypt_cmd="" skip="716" 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 if test -d /usr/sfw/bin; then PATH=$PATH:/usr/sfw/bin export PATH fi unset CDPATH MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_PrintLicense() { PAGER=${PAGER:=more} if test x"$licensetxt" != x; then PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER` if test -x "$PAGER_PATH"; then echo "$licensetxt" | $PAGER else echo "$licensetxt" fi 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 -k "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' ) } MS_dd() { blocks=`expr $3 / 1024` bytes=`expr $3 % 1024` # Test for ibs, obs and conv feature if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then 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 else dd if="$1" bs=$2 skip=1 2> /dev/null fi } 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 count=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 Makeself version 2.5.0 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 $0 --verify-sig key Verify signature agains a provided key id 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 (implies --noexec-cleanup) --noexec-cleanup Do not run embedded cleanup 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 target folder to the current user --chown Give the target folder to the current user recursively --nodiskspace Do not check for available disk space --target dir Extract directly to a target directory (absolute or relative) This directory may undergo recursive chown (see --nochown). --tar arg1 [arg2 ...] Access the contents of the archive through the tar command --ssl-pass-src src Use the given src as the source of password to decrypt the data using OpenSSL. See "PASS PHRASE ARGUMENTS" in man openssl. Default is to prompt the user to enter decryption password on the current terminal. --cleanup-args args Arguments to the cleanup script. Wrap in quotes to provide multiple arguments. -- Following arguments will be passed to the embedded script${helpheader} EOH } MS_Verify_Sig() { GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` offset=`head -n "$skip" "$1" | wc -c | sed "s/ //g"` temp_sig=`mktemp -t XXXXX` echo $SIGNATURE | base64 --decode > "$temp_sig" gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1` gpg_res=$? rm -f "$temp_sig" if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then if test `echo $gpg_output | grep -c $sig_key` -eq 1; then test x"$quiet" = xn && echo "GPG signature is good" >&2 else echo "GPG Signature key does not match" >&2 exit 2 fi else test x"$quiet" = xn && echo "GPG signature failed to verify" >&2 exit 2 fi } 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" SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` if test x"$quiet" = xn; then MS_Printf "Verifying archive integrity..." fi offset=`head -n "$skip" "$1" | wc -c | sed "s/ //g"` fsize=`cat "$1" | wc -c | sed "s/ //g"` if test $totalsize -ne `expr $fsize - $offset`; then echo " Unexpected archive size." >&2 exit 2 fi verb=$2 i=1 for s in $filesizes do crc=`echo $CRCsum | cut -d" " -f$i` if test -x "$SHA_PATH"; then if test x"`basename $SHA_PATH`" = xshasum; then SHA_ARG="-a 256" fi sha=`echo $SHA | cut -d" " -f$i` if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2 else shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`; if test x"$shasum" != x"$sha"; then echo "Error in SHA256 checksums: $shasum is different from $sha" >&2 exit 2 elif test x"$quiet" = xn; then MS_Printf " SHA256 checksums are OK." >&2 fi crc="0000000000"; fi fi 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 elif test x"$quiet" = xn; then 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 echo "Error in checksums: $sum1 is different from $crc" >&2 exit 2 elif test x"$quiet" = xn; then MS_Printf " CRC checksums are OK." >&2 fi fi i=`expr $i + 1` offset=`expr $offset + $s` done if test x"$quiet" = xn; then echo " All good." fi } MS_Decompress() { if test x"$decrypt_cmd" != x""; then { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd" else eval "gzip -cd" fi if test $? -ne 0; then echo " ... Decompression failed." >&2 fi } UnTAR() { if test x"$quiet" = xn; then tar $1vf - 2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; } else tar $1f - 2>&1 || { echo Extraction failed. >&2; kill -15 $$; } fi } MS_exec_cleanup() { if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then cleanup=n cd "$tmpdir" eval "\"$cleanup_script\" $scriptargs $cleanupargs" fi } MS_cleanup() { echo 'Signal caught, cleaning up' >&2 MS_exec_cleanup cd "$TMPROOT" rm -rf "$tmpdir" eval $finish; exit 15 } finish=true xterm_loop= noprogress=n nox11=n copy=none ownership=n verbose=n cleanup=y cleanupargs= sig_key= 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: 92 KB echo Compression: gzip if test x"n" != x""; then echo Encryption: n fi echo Date of packaging: Mon Mar 13 11:37:31 UTC 2023 echo Built with Makeself version 2.5.0 echo Build command was: "./makeself.sh \\ \"--notemp\" \\ \"/tmp/makeself-2.5.0\" \\ \"release/makeself-2.5.0.run\" \\ \"Makeself v2.5.0\" \\ \"echo\" \\ \"Makeself has extracted itself\"" 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"n" = 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 CLEANUPSCRIPT=\"$cleanup_script\" echo archdirname=\"makeself-2.5.0\" echo KEEP=y echo NOOVERWRITE=n echo COMPRESS=gzip echo filesizes=\"$filesizes\" echo totalsize=\"$totalsize\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5sum\" echo SHAsum=\"$SHAsum\" echo SKIP=\"$skip\" exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n "$skip" "$0" | wc -c | sed "s/ //g"` for s in $filesizes do MS_dd "$0" $offset $s | MS_Decompress | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n "$skip" "$0" | wc -c | sed "s/ //g"` arg1="$2" shift 2 || { MS_Help; exit 1; } for s in $filesizes do MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@" offset=`expr $offset + $s` done exit 0 ;; --check) MS_Check "$0" y exit 0 ;; --verify-sig) sig_key="$2" shift 2 || { MS_Help; exit 1; } MS_Verify_Sig "$0" ;; --confirm) verbose=y shift ;; --noexec) script="" cleanup_script="" shift ;; --noexec-cleanup) cleanup_script="" shift ;; --keep) keep=y shift ;; --target) keep=y targetdir="${2:-.}" shift 2 || { MS_Help; exit 1; } ;; --noprogress) noprogress=y shift ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --chown) ownership=y 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 ;; --ssl-pass-src) if test x"n" != x"openssl"; then echo "Invalid option --ssl-pass-src: $0 was not encrypted with OpenSSL!" >&2 exit 1 fi decrypt_cmd="$decrypt_cmd -pass $2" shift 2 || { MS_Help; exit 1; } ;; --cleanup-args) cleanupargs="$2" shift 2 || { MS_Help; exit 1; } ;; --) 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"n" = 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" export USER_PWD="$tmpdir" exec "$SCRIPT_COPY" --phase2 -- $initargs ;; phase2) finish="$finish ; rm -rf `dirname $0`" ;; esac if test x"$nox11" = xn; then if test -t 1; then # Do we have a terminal on stdout? : 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 >&2 if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! exec $XTERM -e "$0 --xwin $initargs" else exec $XTERM -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 "$skip" "$0" | wc -c | sed "s/ //g"` if test x"$verbose" = xy; then MS_Printf "About to extract 92 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 # Decrypting with openssl will ask for password, # the prompt needs to start on new line if test x"n" = x"openssl"; then echo "Decrypting and uncompressing $label..." else MS_Printf "Uncompressing $label" fi fi res=3 if test x"$keep" = xn; then trap MS_cleanup 1 2 3 15 fi if test x"$nodiskspace" = xn; then leftspace=`MS_diskspace "$tmpdir"` if test -n "$leftspace"; then if test "$leftspace" -lt 92; then echo echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (92 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 | MS_Decompress | ( 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" MS_CLEANUP="$cleanup" 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 MS_exec_cleanup if test x"$keep" = xn; then cd "$TMPROOT" rm -rf "$tmpdir" fi eval $finish; exit $res  dbǵ0(tH*HPSs!s ˊ!@FI<Ǽ؜I9o{#ZN:9U_=>y> zk E7yNzb_ox66epS̒$,nKa?Ut[G:xuUY+P?F,NYU%j|m#n:OT?[I? 'zΒ^8t@6aq'l U:OoaNUMaSml6󍆺8kuM)"84i0&=Ջ$̦z?Q70FI)(J`|h7a2}NU8wQ,LpF&gN2 _/AӞ]8Wt6 ^:_j+yu^a1tf0)EvCu2'(PYPPꡡ@ϹV&#g6f8Y mi+cf L!g?5CCXY&0ޙ$L‘I&d  f)Li,E"4M|y}e@`aqMW_S]:S0υ /`ӔPM;8 ?"0z"U '4dUOƇ,+" oypԪd@ *c.n֪f(XK7o٤]`c&Aog*D^S0.;IT|5_2>&鷗b phwS|uu|re+Ir!DwĽpI3J N1:?+<Z 7 lNn4`h1N-5sA[TQF?sqhaUwuBx40^D!QO  ,NFxAitc@ׅhN 6GaeF@ 1"TQSPkE nڅ$յ67'S +d}AT-\ۺ, S3[,!]3N7AS^xJDNaӭ/,sc7wW&SYƬו#G2xGF2JP,Nc<^IkZ7׌>"!DiHU@S$D6tF 2(GG4"KTOtHcȄ4 -f#ঀ$ Z ӡ(*x!u +B(2S9<š^N#3khvQ#l45iM^ںFDz,{Eþ?=Q눥L` @^e"Q Y0ZƜ`< E5^RwȥPv/V7ΔLSC/NċP.rl$f5#A3V&!&FhR.ݐ`"& ڈv"4g KO!Z66JvE̞p0@(nEu T: Gz CughқM UBXD3ϙSMiTRJ%G y~6אE}Ea)JopO\氩HZ$C1@)6oKkv #bu/'Arul jutNb6Y!^F +,4$ 1w0u-5 9mVAyUql1:aE 2hEmUb {!qE7>mßW+AQYI<LĬ?ZdQxa. 3bĭց>DRVvh+2=|?^#P+Lغf: }\-n0J3L$:,P> nm1LNЉIZD-+2 5 WWhD7'; :6ѼH1$ܑ0.~H>(Hnp\`* H@Kc4 meC{iwAhͱWb'6LNj7H@D6d2CPi^i5#Ӝ h~j Zk21a83A(Ak4{>8 P+eĝxʆaxg'oIMݙ|3ݯyq}M;{C1z{<%=hoG9 4z^iyHd^|C 򣆬Oh)/4‡ط$:~=/8DَEu4- yQI}E]Shk 9$X$Pl.=Pr1#}SW>u5~c%eG9es(2H7~jk*;G,֪$  wV%ųЖRi6ApL"!rg6>.θ]P(|ݵ"gţiĮ"v_Xi~:mk FgO"AJ]HΆ,qs5.p#&QԛRDNjk`[b7"Iu^! 0+  egC|u?}LXh>p˧`7iօ1.CǬ؝ C;eDu¡%۽MR{St#)aXʄQ(pEi۳g`%&7ؙgƧ DlPUb<#kS \|AٲKP\3C㓠\`"=L_{[2՘WQ) 1ghA!cB{ 05Shw Szv"]P`4a{wFZD/llOKހpRԕngP$ \,1Ir2( MLx;5.RtNGA>:݉0D|:Q[1Wͦf?׵g-oX3'v:LԢ ,MU,w֭jL4R$BHWͣA{=: n"l>!D';f)U ^sF L9f #&\R 2~ $sgp)yQ|7/o0&!C/&mL[r o,_" x࿰3\K`1v{6'L[y'p vbЋņD9ڈ0D`H3*xF[$Q'HQ-OzmA`JD (RJqlaMԗuI2 7!:%PXug0e ȹ&%b~Uٔ%gpF]ˎ:9$*O(ɯ;91x"=MһUE24Lx#]2s-:/)#ExȲ؁11f&Y6Ʉ'Pg4馳7hR@t@=Ԩā = 0F+'#PGmytQWZ͋:R'C>q{i_7V۝F:@cutNZs;<9ΛZ@iur޾i6켉/yh:s`uJ0:NY/Jɦ*lNeQ (9ht ",q4<1xL%$63$:mNCLYʄORKG1E+ W :Mz)'pd!H\\[ g"ِd .$+FnyKSR(bh3vNPB$ $,pR:()}A1G!aŎO}9a0uIG󸤿:9G~4 .l8rZZl3O41}%*nz4^VX굢]/}g-rT h>#aL"X?A".}& iG[Eet4xm-p}hN ˗?QV6eW oBsM7&ə(YG6IXg/ XBA91#Ӏ$ѧs/X8D^' ߲QoZvI;m:;>+M$P95%ޭS}DC#ԃd\C^uW܉9f>Fa66\Ϗ` ɺ^p.R; F&v)v֊gu*6EK q?H0>$7bxlDSx<䤓37qQѵ+HB8ggJZ0^&[378&:/D,9IK﫪$RA[*b #`XGc5 KfI5u ;n⒢}Hl:xXsFNyH[g |fW\[(hR Nc1F?O[ͽV}/zysh{/V'vt:ζѠ7e8]A.k͍Zg8`;xwwW$z:tث/YߨGIf:_5yv5J3ԁbA2։G:>hnG /njꐪ~Zt?E|Z2&"~}PRD!K,sJ|( Ԁ]z,H9fCL rfꈜ},`uS={V} h~߯I%g Yҽ(i4&S"5& eB)fB-Za@`X3DqI'b@$#q'mN-/mn$Jt:g 'wJ\b19 =@ vFjt0$1 @lvwX%=vut7pٛ拯k":&2aDL2,1J`g_jBDN.Ra`)WUݬ*k4F饪J0>:AĔJ){&ͱ)8AXІ#iOB\hԉz=$<9@<D uRm~6g-^ ^&Wq$z 4¨f髫6Ș YԏwaH * Hl8H?F+&IxUnZ&m.JMT]k/,rw?#fsS5aJ.czs-yr#C[P:̥&%&snz2hfJ=y8R.U vȞ٬ ͜,b'3B Ƅb5O5 s?4Λ!Bv ] Zٍ[4Wp3V $Mp2SM4'|7J;y DƒA)&{87|9kp :3ÓٽZ%w3XY g9]V(F}41~srD.{QB@F, _f'4 gju/\jR__W%:ۃO::Ƿg[]U=;X##1pPE-Up+Lͅ?SpCXpt!hp~x h1$yz3H5dfdG;O d榼`*8!(?Yo3S;qpJ@ "m:G| #":L(؇[ՀG0QtLт<#YǸ ӓYf 'S1 {x͇lVn%-~ \'{udQk^t 5EO.y=lP$Pz D}ʺh@po0& {W+4M^1MY e@DK*`\  |Cb :2"[D]5NЂn7CJYqmC%$M(7ї嫓OW?Nϰ'6PKE%*No77MKuH0iqVH4nW~N+ 1}6{E/bh{ZLDheɐ^33Mbр dZM5`ٶ:|lV"饳pel'7U~;F`W>z/f 9tX܁IE#Wg%-f7*S-E; [kgT\QɷNYw>m"XcU1{HWX?,n?|ǏGIIޙ.91jػ'(܍O> = 3+X Ԃ? 8o z!b1!@-Ϝ}Zׂt0lF༢".wEU@QyƃZt' _Y½vUZ=>ӫ֏k1wƁԔ@_V FD,ta4X3ZdE:V gjIc8[Wt9qtȜo58;ȣIAtEMh@T=≬"yG{C* [Oؽ89@r& =)͙i1i7X xc: gZ!*[_*W92?HE%26Òj׳qmjX 9|"eE5.^Tapq\h:eyB{t&( oWOk6ىAQg @qg^mҼ^kCO@R!Ю>8r=d{E,!]$Jg_!@]J&Uׯ=Fjf0ȋAGn3cH#(pa{5&1t٭N'viͷUӋ0Z>wrr7shweB[qAEROj+Zm)VuCT,f9io8"7EP"nvЮMgp=!SWtǽo\ii_$Yob !-[?@PT)ʏIPYę?'t:7|!R8F#RaoЁf.4]\fZ{}MD@}E<ί THdO &IJ Sx[w@ ;JrT.#o;E۸ ի:}7R1W5YsJ71uLIbaAih9]ٳP,F9gX]+5n+]#gϸ ؏c:sq(&`X~R9^heWH 0*'@X"pP 0i4xuoR ;g , zؼ(G*_dљ"AqEyQ9JHtf8oTa$P/ޅ7! 1-5'Y\K(F"oB4b`?UvE Y:eޠdtEkBqV\+t9=A+J׻7jTwC̺SI}9W68䔐|` S8TP Zzd)U%!0VM 勳۽k8M܀ңdyh%2%V%dYe{H4զHny-7Ӛ~ 'h5=qH@Z ao(3OW:ȹC2Ǣ F㔫sO56|j@)gFPe”H_C C BQ&k emſ7a~zbvm5KGx8[5~\x~^iR'oIn4g8$Δ2d\o̎h?ZpG|tLg&̻%<>rT1uU"[CVB6za̧6CRQ6h5]*ߓ r!!]Sqʹh0 {}jcTZ4g}O:76>d1;R%&=R!J~ı],xVp2ɰpt9>:lBσZ?[ =/+PA,G&ƭ,y*+QY$akE*>0 {A/uHގx{TFH\5WQyԾ9F7vVW#1%ȋ\Z4rb ppB5x?̈&6v P+ MIiF$|u\f_1#7ڭyGM3,>Ҍuq%օBtql#4Y}Ph,:9cn {<Hu=8CK>׫$Vu,a=hL6Ixㄴ儯">XYLm֟'7Qu QŐXY; )^ ,.", ;Mad:a-_YySM++S6I }$D`TP^p1 M󅃿Y">P L8GOD)Mc'{aꎬKsBsU%NiCۙu+i|WkJ9_Lŗ\K MR- 9m3rrdu%.Ri50GOoTܭߥj˔́%ƇY߄^@*6#.`O TsH0|M >sF946+O(ԪD&Jsݙ-_8O"~7et9 _́ Z~qs)6b'U<е}Ӥ#Zѐ|@nJaCAYf*8'Y2Q9r4LTbȍNo yV,Єxs@Зi $;hO. ֔n,zI^Rc&+>j@/zC @0'ϻ rƾR5{T5i B _gHtIg7ᡍًR{fE$9QxXzTnp 1,qsű\10L\(V[#͚ǕyG8[]:* R>ɶ:rCj3U{sO'IvM]%?\ۛVY@81AvҏZd"7kgE]~JNUgrԪ.Jz(>D *>F^0e,R׻J VZjPU<7I^O @5]*QwEnpNsmtng2C[- Mv@Y+ =LY#o|ئ:?uDM KOm}#5zn;qC_5 cL|zf^~῜b)+FT>6Hʧ~]mKè?BT+-|*^~R#kcxC68n<}E;KH bv!͍xv,k8{ہ=8 ANs51^8)Lj<՞?Kc<\~nln^?G__qybzMD}jV{UYFu%Ng7*/x,53]^LE&^|:r^]Cu?WԎJ^-t Y6&ǠfNe?Tý ogo oi C*q}> tNrS ~~4Owߴl];^LғXvePWJ=mh81g@ 'W损wZͣ+nK%Og`V |MM:ؔ alT2ǟ" SP"3<6+RU'݌0TN0}g]K otr|z~{|"2n]uG=i{~;>80`! Sv*+,YJ?d6:eکp;Pcd^ϲYt&z/w}?l9vF͎6`"<_{YY?amR݌H@ _] ~fYg9F%ž&aIsu>lxWp[l/vԽ}Ev1ԋV4MSNE)#hR $ryS!mP?8!_~~\f`6H莜qʦK'ezBbO%P˗o/_k=W#}w!Kz@$Qy忸y,ύ> #}F`z_33I F2[ool C@KvE8jZӹ+h)c*j^ ћWn/Os4o||j|Q@rkèβhU ·VcVn666U-hs%J,|r0||)'yYwIࣧwhr=9GjVaSw̅@͚i"->~QtTOƚڗ(SIHme/P#8ĴWu r)͒y3QO\~vnzɓ|du{lsQJ˼~M~6jᐥaHUkVu|nӛX؛@RR Y˅$Djw KjdgHkN/im.JJeI 8#Y܅2 tF;1b;`b OxӢ =Jp!-vIaE9ˢQoH?ȲRҽ'"ИT&]?]@75:, XuL-g?;+'ͳ3uyRYC*;]_ NƓ&SBy2]~I[BF lKsԽt P×}]Re Vv5-\ R󪫳x`d5j Y3ೈY?Ojه!>f[VsvwOCYҊN;AQS]Wպ_J3 $ x]MO' ȚulЍTՐ9"K\.XH\qh=tlTb.1<ؽj%"Ejp [RcEqyAբ_:aV 4]^+n:~ؐxpڂ^ ʠD"6؜QqV59U+${hٌ0mTmϙlx(ܬ`C#{|Z*lĮV/:ýf d;'7}W,0\.{D_A].*K?t+I`N`0}-7*o/!_e Qz*\Mq0iAOhץcz8~r)e7]#rMgt?[Zw6'wY/EXCrm{P2I$,A_q^wa` X>NЃpbҠ#ˏ"n)יaVoa1 =<a;tJgbelD8<^N 2T$&t:F#|wd|uz}Hy$cB|c$oڼ\OQVԿz:DxCqMk\Xl͈xc أj[4Z!4t}( Q\ d)]$`&'ty7REʉbrař Jd"<@않 b>JI )F7[j y:Jg(M8=b$oD^eA,׆PwD?ʊ+$1cwMB䵙yȪ2Ib T'Y[ST.{}tSWdƵ5XN^2w4z%x!>rR㜈PbfUR \.ۊ& ~T|`09jn }ۢjǃ>5p|)k(>z`·+[%I|Qә!e"C)¤o^)c8;hXӤ+TP"A'^Woc/<^YJbj"eBK8˄|eF7"*/+pBwlw B+L\#m9qMX^KXiiW-V/{U/&\GBAj#S60u6Z][^åy NP%)wa0ud=&HtL{zV 0Ք S?̉g(ߔFNUcsťb77UB Ti¹ݶb$^A$ȸς6=A`D㝋r}o t9-Vb_.щzkά0yYNqiW|_M?9??kUlN$gN!kԠeyۦ;8^q\gEDбkJ>a]@Ay'rc갥͈H5vAヘ_? o5jDͪbP[k!߾B}} a"n}[C>t^[{|>qx7}y:f⼹cVUEpJWE,G?-.*@o]CwdHQnW0ӭ{ [wéa4?Q3~=btUy`Hj U}޹|_UTU4&FOjElq.ϑXpz3pP\$1x6p9s΋8M˪wh>]@PsY/j`n ;G9Ͳ [r{IZRe@#*=%5ee ZPZ]&f;~(X#gnwi<6 #Yc/Zbp3\)4GM{6tyi#U6wcfo#'وL[ՁŚ ̕,<.l̠%Z0CZ!.Dv>-9JT fg1Aݏ{ww_q~`/X91sMo a׺,F.@Se8AyNRke ʂ u=0\FȎg.,PȉG7riS^ǚfNicnWb7&RrrNNQX'ûgew9Gz7uOÓ(o".}ATP2^ m )pxʽ~hTLTע$My@s{u~C87C$S?9(&iНۑ)OKuVgȝp/DI|N`M[klN}HgBn?_L./8+^zWUve%"e 9z|++E7O90zUk V0Le'% \C>Ik TH]/+ ]'OQd" 5?aF%Pi~W/:U2߲e/;'ၟ%P=5ǨdSr!i'w( CEC֔"z,=N~eÿ j֤A&TH | fW`v:]<,N}ޤ'C4w9k] O*I3}ǰdd8\/铦#w,&3.1..c']n# X7't%)Poz|?i8+*9VQdN8ΆD:( NtC"݌rFo?u,<ů^rx?^Z<mNϿ;E:ovHuCnsO$\%X JwU0"*J[b*GG\%}8>lirwCFXm$ɮ'!m@A30`pQ`lZRV &LtD[A:HY8dn Cfvq7q=-'-tcJt1fM/~A?H 2Κn=0/r4IR"t[QX m ԯUJ@߇d($X"NwI4=hsuumzݼ88:sj46oGCU@),V}9B@v)X|h$pp,v|7zL/b4h$S&HzDm>>=l⼸z|ٻjon߱7/oTkRR=qo`sɄIeDw͕;xuh²|0%d!yؚjMg~ ]Xڅ  (/VP#eO /,B 12V 9f]Ix8ft0'.鑭f@{ _'w~J&_foURtNHP"$v끒C\Ay&ܻNC"C3nѻRlPL*l\ܝ:"tS.< yB i6kz] ӨC+b?2`%b!z^l65_ܝU׸x ,ѧ^s;ut[)[+Ox|5G>i=/92 bt}/>rE7 fË:& 2H ~D5ë*5LՄ_r쪿To#C7!&V#-XP^?t4ߠi:=hj,y%[\ǰKWs?_k|_+ Wt cc%+%G;(#NXG|b, $@-H-m2꽠{/@$'9:S1۴%MZ-ڗH˛23a ?%;f:l'ZGp b78ThvZQ؃3kP)r ԺN6UT=FU;!X*_ʥ՝U%Sk<))6%j8Ǹ.(T{b<^Dv{/WfL4b`+,FeN䱳cIntڀzU 3$2U _YMRVgߟLNw+|U)oMv\%G]c-\ QufpVN϶sUOIj3+-gZ/PB`]U܎z^n@efnin6`sgxWb?b8p/V*${ 'c[S+yzX϶~v1zDᥟ vm>~eGɘCÞ+ߖ2<Uؖ-裮fS,db`̍`nGxלW +=1ͺ/GaX೯ٕ-J*7Yd(KrK~<=joc1SL&2]ߢ`U߹̀iY++{Zl>ø4.q.G1[xL rM.ꝽڔNuLWoB1L8om\rmme}[a+hVgcsˊcj9=`BLΖH<#QW}rK)1Rn#/{z>Cꕿ.g W|աY%Xba(2iiY,]WvǷ[yBe&+{g ՜,x:mu?GpvzM׳+>f/.T]]\:_P5iyVK54 KtՊ_m?5ZL-̅kW/iTPN>aa|ܴ~E]t!1ML8SZ뗗D=#?Z>s 6lƷc|c,\yh8zO?8Jɾ>WT}?w5£>y)%I:]Ϛxхԡ_B-|AgQKX[S6FL3I9Z fxt]b\: [UFȄxsƿz/OНtvEaτ$/6S4*&sM?X/c_~_u(N8gWZ%,7Ӹ~a]pBxAev{KGWTXX}H숿:s$6;s$s+fSz86,tT:_\O\/׃r [%@Cvg7Ibs Q 2aiBEýg=_sP.S؉oY?А~ܮk?SQ*qC2]^=x.tT~ {`Xtj2} a+lR+LJ(v{|>dy^ X3jqg{@";jX%!^Բ=߼v&mo+8G<Xgt猪m>ah^އ1z -9]*6 ]mPw%ɼ6J{^ )zڽ{k9Tz4d RF&iؽD+K*cg u$rVqy.J҈Sn`Ϙ`xCk:A6y{ Yp2:#Y R59DcmGux_b̐Y{ѐh:~=0ߩaXl&$Qi7Z<$“!ޅCŕ=O+K^B\t>c[Sgə:u>]|p7gfˤX`9+~~~Ώh