ruạṛ
#!/bin/bash # This script was generated using Makeself 2.1.3 INSTALLER_VERSION=v00113 REVISION=ea4a1bf80238e28f93160a4fee56cc27b75a11a6 if [ "x$BASH_VERSION" = "x" -a "x$INSTALLER_LOOP_BASH" = "x" ]; then if [ -x /bin/bash ]; then export INSTALLER_LOOP_BASH=1 exec /bin/bash -- $0 $* else echo "bash must be installed at /bin/bash before proceeding!" exit 1 fi fi CRCsum="920620439" MD5="3452809ab949c7cf935180f7283a81a4" TMPROOT=${TMPDIR:=/home/cPanelInstall} label="cPanel & WHM Installer" script="./bootstrap" scriptargs="" targetdir="installd" filesizes="33869" keep=n # Set this globally for anywhere in this script if [ -e /etc/debian_version ]; then IS_UBUNTU=1 export DEBIAN_FRONTEND=noninteractive fi 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 ! type "tar" > /dev/null; then if [ ! $IS_UBUNTU ]; then yum -y install tar else apt -y install tar fi fi if ! type "tar" > /dev/null; then echo "tar must be installed before proceeding!" exit 1; fi MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_Progress() { while read a; do MS_Printf . done } 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_Help() { cat << EOH >&2 Makeself version 2.1.3 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --version Display the installer version $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 --noexec Do not run embedded script --keep Do not erase target directory after running the embedded script --nox11 Do not spawn an xterm --nochown Do not give the extracted files to the current user --target NewDirectory Extract in NewDirectory --tar arg1 [arg2 ...] Access the contents of the archive through the tar command --force Force to install cPanel on a non recommended configuration --skip-cloudlinux Skip the automatic convert to CloudLinux even if licensed --skipapache Skip the Apache installation process --skipreposetup Skip the installation of EasyApache 4 YUM repos Useful if you have custom EasyApache repos -- 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_PATH=`exec 2>&-; which md5sum || type md5sum` MD5_PATH=${MD5_PATH:-`exec 2>&-; which md5 || type md5`} PATH=$OLD_PATH MS_Printf "Verifying archive integrity..." offset=`head -n 433 "$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 md5=`echo $MD5 | cut -d" " -f$i` if test $md5 = "00000000000000000000000000000000"; then test x$verb = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 else md5sum=`MS_dd "$1" $offset $s | "$MD5_PATH" | cut -b-32`; if test "$md5sum" != "$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 $crc = "0000000000"; then test x$verb = xy && echo " $1 does not contain a CRC checksum." >&2 else sum1=`MS_dd "$1" $offset $s | cksum | awk '{print $1}'` if test "$sum1" = "$crc"; then test x$verb = xy && MS_Printf " CRC checksums are OK." >&2 else echo "Error in checksums: $sum1 is different from $crc" exit 2; fi fi i=`expr $i + 1` offset=`expr $offset + $s` done echo " All good." } UnTAR() { tar $1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; } } finish=true xterm_loop= nox11=n copy=none ownership=y verbose=n initargs="$@" while true do case "$1" in -h | --help) MS_Help exit 0 ;; --version) echo "$INSTALLER_VERSION" exit 0 ;; --info) echo Installer Version: "$INSTALLER_VERSION" echo Installer Revision: "$REVISION" echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 144 KB echo Compression: gzip echo Date of packaging: Thu Aug 12 16:38:31 UTC 2021 echo Built with Makeself version 2.1.3 on linux-gnu echo Build command was: "utils/makeself installd latest cPanel & WHM Installer ./bootstrap" 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 "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=\"installd\" echo KEEP=n echo COMPRESS=gzip echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=144 echo OLDSKIP=434 exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 433 "$0" | wc -c | tr -d " "` for s in $filesizes do MS_dd "$0" $offset $s | eval "gzip -cd" | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n 433 "$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 "gzip -cd" | 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 ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --xwin) finish="echo Press Return to close this window...; read junk" xterm_loop=1 shift ;; --phase2) copy=phase2 shift ;; --force) scriptargs=" --force" shift ;; --skip-cloudlinux) scriptargs=" --skip-cloudlinux" shift ;; --skipapache) scriptargs=" --skipapache" shift ;; --skiplicensecheck) scriptargs=" --skiplicensecheck" shift ;; --skipreposetup) scriptargs=" --skipreposetup" shift ;; --) shift ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done case "$copy" in copy) SCRIPT_COPY="$TMPROOT/makeself$$" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 ;; phase2) finish="$finish ; rm -f $0" ;; esac if test "$nox11" = "n"; 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 rxvt dtterm eterm Eterm kvt konsole aterm" 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 "$targetdir" = "."; then tmpdir="." else if test "$keep" = y; then echo "Creating directory $targetdir" >&2 tmpdir="$targetdir" else tmpdir="$TMPROOT/selfgz$$" fi mkdir -p $tmpdir || { echo 'Cannot create target directory' $tmpdir >&2 echo 'You should try option --target OtherDirectory' >&2 eval $finish exit 1 } fi location="`pwd`" if test x$SETUP_NOCHECK != x1; then MS_Check "$0" fi offset=`head -n 433 "$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 MS_Printf "Uncompressing $label" res=3 if test "$keep" = n; then trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15 fi for s in $filesizes do if MS_dd "$0" $offset $s | eval "gzip -cd" | ( cd "$tmpdir"; UnTAR x ) | MS_Progress; then if test x"$ownership" = xy; then (PATH=/usr/xpg4/bin:$PATH; cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) fi else echo echo "Unable to decompress $0" >&2 eval $finish; exit 1 fi offset=`expr $offset + $s` done echo cd "$tmpdir" res=0 if test x"$script" != x; then if test x"$verbose" = xy; 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 "$keep" = n; then cd $TMPROOT /bin/rm -rf $tmpdir fi eval $finish; exit $res � �Na�<�Zǒ���(d93������#1���%�r�#�fZ҄��x.�Bȯ�$� ��(�$[U�s�fϱ�e��8��������.=�A���ye:����Y_]���~�������^�?[_^{���Yn/?{�G_�I����� >��y��J��5p�V B�����Mp<���-��#0��4tF�p�:`���Ǝ���g�u�1G�H���&�VJ����D�`��8��V>������w�~V��X���X�g���c?t~6s�x#���8��+�$šc����=�6d�K���Kˋ�}ߺ��ǰ+��'�OBp�-j�E�D � ���V��\��ƕ��P[��"��B��Z�f�r�A�.F-�� ��܂N�.��0�Xx�6h��X�&���;�"R�a$0⨥�IW�8Y�f�#�7��t�B�Ϸ�_��O����PkoT����~տ�O�[��u�i��ձ֪uZ �� �ɛ�&1{��.��pSa�~(p@Ё�A�1�J�$�e��3+���ĕ����~ < =n����P��lG@u��XB�.Ԗν�F%C���%$��"^t��e��w���T��#�#P=�a1 �ԉJu�4��O�anqr��<�#���DH���':�M��N��i���)��UB���"]D��l:L@�"��c$,߳���p ��t�ҠH�� uH<[3��N ��> �_���j?�B�?;����� b��}���S��y�T�`ȑ"*���4���,--�a[�z�Y)���|{C�\�E�Qr�(ژ� �GdR�B�b�u�R�s[FA�pi���{۰2�Л�`s�;�����%ʢ�B�t��,ǂ�(��f?T�R�y���kaA�M�:�����n Uf�i|�[]^Y%�o���lym�:�Օ�W���� �hLnȞ�Iދ?�'4t��|��"+t4��J��4�ԥ�E�QA���'��?��O���Y��Ux�A���k�C5M$ID������#�S:��FK��H�K��#Oz&�ɵl'2h��>r8q<��[��Q��e�)î?�+��u4WL�����w���҉�O"�߃����~�8�+����O{�_V�yw�}pe�'!��(A���m���%(�{ijE�� M3oEkg���y��;/�p��e�<��-�/�$�l��C��"�a��!������H�8 ���9E��+��K����Ԭ�2 ���g�:�\�$|<�V;�o^�����b�d��2�f<������y��]�@����Y�,�0���q8�����F�bz�=J �`!�h����<3�7��.p�ik�o����r0��W�c��ͧ'S����8� 4N��״%b�e��cz�K�Q�����^���mv*�%X ��{���LJ����M��� oZ1:�FJ�j�Δr�IO�IK��cC�n��jP#�|� ��"���� q����0<�*+1r��"<�"r�~�!J���s/_�͵Ut�`k�d���۞R�[QX$����_�N6�բ�))i���&*=�@'( c���RFZK?��z��bY��R�,a�Ԥ1�`����x��P�K�#Lj� �1��4���Y�i �+2�� ���j��Ky_��{�����!Aέ����,����Ghf�Y�SC�� �ƚѮ���_�!E�({���w�B��k��x~��4�>Q�V{/W���a%���Ț�x�y�3Ʌq(��V�X�W/]M6��Փ�_4Z�M0X.q���� �ш�R�d�xq�oS���ORc� ��+��GJ�%�ŀct�Hl��;8���c��º���'�-w�<g)DC�c�(3��;������;�1����.�Qy���_��#�s�_>���3�=[�,���x��A�h @���=�����'<>��g����,�����%�֗��y�����p̑ �\��/ fJ����� ��, �L�n��Ş9@�$n�W~�;D ����t�5���h��=����p"����P�x"bo�&�#�B����/\��I��-�x,��ܝ�ҋ"��E��ʳ|\�S�7D.�l�5@���T#~D�e�o�p����M)=�;~����,;��ڠ��8� ���KB��t�w����y�S����>�?�e�v���ަY��� �ɜˎ�n�����i&n,k,m˧�`�st|�{�s��=89<��*�k+,�#?H�!��S���t#D%���T6L<�\��g3 F}<��/�I.�'~���"I Jj�c���WP�����N��v �:��9�����*�"NBOv`�ds �V#�?(��p��,�,�0�?�@m�ʔ�q�/�� �mgC���$� �J#�\{c�Xniu"4v �6�� �(Jn��`�^���ku�I�ߜ��A��U�_4v�1 �G������U��^P�F�)������E��\r�̣�;xy�u��L^n�n�˙(8ny�6d�j���~c^PGV<����E"�#�5����*D6�+.��nJY3-1�ͤd4���cp������HybDʚl�S��S�T��v%ۦ��Q����p�Bnp�S��Ǐ.]�!Ҵ�Mm=��IЧ��d8�2ԡ�$z�^��O���Џn���D��'�Q�O"�y#��<����m9G��O:�Cʆ�_���y�וe��F�������[�E�\����s�n+ ���ŠR����F��r$�GYn�&ӭ�2bi�&Ö�zAm�݅Z]��ub>��s��[�1���<�˙a�F��}�g `�X�V�E�z���C"����\�n��턊 �i|LPr��V�6�����6 r��}.l��3����4��u���n��;x���;�n��b�1/8�Mz{�(A��)�i�dҌ�YEa7u�)�uTW���Q � ���s�}���Y��;4#�e�5��� ?ri�t:F�s�?����E�ٴDM��dy+f4��g.}�(^=IBv(As�% ��] tA������0O�S��� ������v+����Ӑ������ }(\RW���)���ks�OT�XL�K.�d�sWv��E��:L�iCAz����Zy�6�et�(���@�F����7g�&f�^@����x�í,���q�i,߶�Q��ɹ�~�����p��Y8��"e*�x�;v?�j�����>�@B�6�U��j���S�� )��n�|1 g����X� g�� �����\YZ��`Gx�� ��ͪ�50������\ӗc��ڌ�G�[T*�W���5 ��~bs���?`�� ����d�r�h�J��'W=bk�B�R�EFɮ� ,��%{Z��������Z����P_�#S�M)`�C���!��0-?o�s4ON����h<ׅ`� �㶍�RS{������ ��ߏ�e�bsdd�����9���� Orӳ�����/�0NLw�?�G���w��v́�nj�$&����I}��P˵V�8)6�-;�|��b�Q$��\?,.��� ���>�F��t�{yԔ[��B��c��a�N�X��J��x���/���Ƌ���>ݜ��J�RI� J!�u�I-��@��Wy�=�m�.�f�GSe�����O?ͥ�)�{�U�k,��U�\����3��<�f�f���i����)�� .[�2ʉ�e�+��&\��X�U�N��dj���>�b�h��_�DV�Z �b�����ayhq���|�R�Y��]"ُn�����R�'�p&�<�m�a���[H��ʍ�>�U�PU�J�R��J��9�ԩ���e+ ��_y�o��,@�\� �$��T���LKTO���#=����Ҡ?Kvf0��TW�%�@�"hK\C���..σOBU�U2f�\+���?������kf� �Ƹ�T��:�C�ɟ*�%��N�o��M�s�����HɛΛ@�}�3,D�)��^���j��%9Q�o��n� $i 4O��Iy��XCX���V �[9������r4ic�="�~��Č.(J��v{}]��f�� W�J[[EZ��<�åzZbv�����2���h��" )��繗���4�l�^�U��-��Z0,��@�nf��.UKx8�_ϖ_�@j��U0�E�@_�l�b8����+z���,ܾW~xa�I�W��'�� �>�|ڃ8F�aQ�u��v8������,���G�����I��=UFU���)�J��gۑFjEQ�B�*R�/�� ���~9��������B{�k��GH�Z���a窟s r`�[�g�8!#�w��(�Oɾμb`Nt����6��qr��)b�!����ལ�������Q�v֊���<�tF3�!�p���Y��ұ��S�����붑�����{?�#�r�����JS�1hq1U�|�Dɱ��`���t�op5��25Q��h�6l��W��k5�7L/F6W�������%����wMz��x{�w߁~n?���;X��ד��J8͂�PAm��9�$~0@.t[_�rJ� a��^E��;�腔;�w���+�2��)o�|���c��߶��@]/��B >����D�O�<.����<5�?IWB�,��A��?:ڿLJ/I��V>[&I�Rap�����^���!>�!�d24q��:%С�����Čq�u�o?�J����NG�ҕ4 ���x�>++������X�a���w��a���⿎�u�`0�OL�R���n]�r�>�g��2m�S�!��i�:|�G2S���{��ҽ�n�叻�?�`{�;X�2�E��@�0�0�I�N����f�������m!�(*:������3�JT��Ho)�Nw#-�E/j1ߥ �>VN�yr����ܸWpu*[��v����}�,ef�� �$%��a �3Y�*�d7���V��@�I�L�]+�N�����'��Y�h+'�R�ݜĹ�ZGirD���3��g���鸔�bه�JY��$��)���BQݘm�vѣ:�ͣ�o����l <q\�,�R�zf�h�G� Än�Hp�ޥ�F���3N���� ar�^���:�x�#�3��?QAN��xQ�W>�3�q��(�4ʉӈ2!�r)��4{��}�H �L%ĵ9 \*O�7�� ���z�/��f�'X{�!z�m�|?�ޝ��5�.�}p /vL7��/1WTU���͡*iqrm���*<�s'�R�p�*n���I���_��\I{C77�/��~f c^P��&�_ ́lJ�}�i�M���|�G�T�S���ߝ�騾�u�h�f�.�Ғ�z!����ZRE�d|ғuJ ��j�B,)M.h*���f2�E�w�NV.��L-���&�m�Y�X��� Q�� %RL2�!%���4���.�J(�($Ť�S��K/���m|��V^z����%��;� ���[�.%�<���>���`�ǰ-�*,�V��{��뮀���T[��}��kk�0I ���d�?����V���x�x��k �M�I3h��v�D�W�v��oD]A�"�_E�j��̧��ل�<"0��2S�oV� "��t{�~���w����ħ�hQ�j����)��䨵��6>�� hÐ��[*hR%�حM,<�5�@$z{s�YץC�WSd�,o�9n�z��_3����kf��4�w訇��ټ0�9�2�*��5��t�C~�L��ި�IN�q��-h�U��|�DLc?�W�n�I����.i����!�K� e''k�����LpI�nL&j����I����N�S���Q����$R��i���@��i6�~t���X:Hg��s~����(�19 J58�h��è�?^k��45�t:,�ʖWO�0�M���(ūR�p�7nDw��g�8��_�Xs)��.�2;��O�t8Ж�G^��]�-� �n�p���v����Pg��7w�`kc�7�ߓ�HK�g��C� ��BV<�v=\Ku��w;A��XL���#����ރ���j��w�ը�`�-�iO=;�<h�6�c�wH���D��=�*j��)���͍�� �g���?z��]��:{��_����'"�Fk[��w�7��K\�,���Q�f�� �E:-��*��`q�}Q��To�wg����U�㉬��X��,T�v�L� �1oUƭw������K��T� ��t�!]��p��g��)K)C�HtkY���i�=������N?z��aD{/��{A�W��0���i�VY��d89N")պ�r�f(���;om�� v��ߊ�8��=��0�ǔ��&��:�����[�ڏ8�o��YH�]$N� ������Q�ݰ}�� L��� c\�Y�B�gl�N���O|'�~J?�pa��]Y`��K�e!�k\��-��8��~~ żRE�oF|����o��L�O?�k���wv:��2b��P������) �.� �ݥ�C�G�J�P�Ɗ�UP���!\��R������A����ʔJ�4�I�A�����X�j��V�h�F���z����<Lp�ѣ���GlG���L[�h&L~�'���|x�=����J� %+�PXSQ��pfr���!��ܽv�w���r�h����Jg��m����tRЛ�4��j�j�'�ǁߠ��)�}�Z�ۮF� W�3n�_r��%T�(���s1���-�?iߓ���k��x����t<u��Z��.T�&�Np�'f.�qa�I@XM�.��w��撯o�5AW2����M�d^�Y��1ԕ�:I �Թj*�:�I��SV5�fP�D4�au���8�(����W:8K�e�;TM-���;�ۦv���A]z��CS �R�+&< ��qQ D3�Mb4V�;M�x�z��F��Tt��={� u��rpj=��i_��P�i�R�G����q����b�a���,�f%�%w�N�.�����J|�U�N�LQ_-�(���d�#:��-�2�>���9*�g��F<1�Ǻ��s)�<��&g�7�o��2�� OҢ��8^u�qd���e��+˯`-3��~��%ޞt�|����Ӆ���!3�F�h[�'k$�.^7�j�ua{������Fh�i8�W�Y�S����s�G�f��9�q��'x����n�m���GU��Pa���t3�I�V܄�;5j� !Aǣ�U���g�������W������,�~�s�-�a���c4�fy�!V�bڇ>�� 9>����݁�9�m=-;ѱ�T���O���eO��d~�F��6��X��j�h���p�].E���Cʣ4+���Ml�c��A�`<<ũ`��p�WJ(�����5 77�d\Tz:��vW�H�w�.�S�/�O�3�)�M��n~�#a7�_�Y��R�o`7���pNף{gto���ZZ��o*r_<��1u�TIM�U�?q nR���o ]VA����n��FB��P,��ɭ�-uhJ~%OPD��or�=%�n@J����ߥ����-9M�Ѝ;X�� �i��`]�B�;�x`HR��h�?�� ��c�D����Z�*_������sg�p�(���?��CW�VK�8���u kӱwfȭr~�KY���+B�.E��ԗ�R���w|�mK�q�`n�&�6*@�k���Y�������QOب{�u�O������=�11��-G��ǭ�p��Ԓ�(d���zk-M��;�+e�)+��'��LP��O�v�7����smy��?*��ua��J�z��S� 1�j?�?�����p���ƾ�xrD%!��`e�ԑO�N�v�dԂP>�4�<|"j���n�&����� �}h*�=�џ��~���A�hչ�i)]i7�=�b�l6��G�(�:Yݔ�"�T�F�@_PRhy���q%qZh}o�����\��c�k�b���El[�"Y�io��w��$lzo!�զ�ы!z��C�d�}u9�7� }�&��p')�qc%S>���O�ǰvp���㒔.۽��Ş������v�@�F�G$j�Z�Ͻ}��3� R�]Y ��V5A7�� ��u��)�,�&�»z^��XYJsQ��;?�v�;Ħ,OJة�_��\��]����ħ2^25����!J8����[-�����~��[�����Bqō��Z㸝]7zŔ��L�v�)��`@c��G��#�!h�K8Ѱ��8��� �>z}�ɫs8C��9fϦ˥� �%���l�#��@��!�\���b�~U��Q�I:+���Y��Sݴ#5B��D��a���go^<����������G���[ߡ��F��Z�?���e~�����Fj3�[�o��{?�(�Cq:����_�=FN��`UK�ىn��ș����\��VY ��حϲ�}{�<������@ ��Ɣ.��ދ7߂(��صݹA��7��Z��ki'���}� q�_�6��Dt���b�W����cC�a4��^�X��\}3F�q��謃$*c�)L�ըN�198�"۸7l_�xJ��5��P��}'��0�c���Ч�6s!�W"���*M�� �D� ��u;E{���tD2�M�k�}U��R]-���7�X�j�ti*RD�/�5,����6٠���~&Z�N��nw�$nD�<-hN�� r��1�Fh�U���+ݽ:C�o��APU�����d@2���0������{3kB�X��BH\?H��D��<�C� y�$��8E!�T� c��-�Z~U /�{w���Jݖ�V�2�(�0o�F�D�����뿼x�%�2]Cy�ɡ�H�;H�K2���Q��P_�$)� Z��wFI����`��l�{<