|
#!/bin/sh
|
|
|
|
# Display usage
|
|
cpack_usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: $0 [options]
|
|
Options: [defaults in brackets after descriptions]
|
|
--help print this message
|
|
--prefix=dir directory in which to install
|
|
--include-subdir include the laview-latex-struct_0.1.4_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.4_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.4, Copyright (c) backbone@backbone.ws"
|
|
}
|
|
|
|
# Helper function to fix windows paths.
|
|
cpack_fix_slashes ()
|
|
{
|
|
echo "$1" | sed 's/\\/\//g'
|
|
}
|
|
|
|
interactive=TRUE
|
|
cpack_skip_license=FALSE
|
|
cpack_include_subdir=""
|
|
for a in "$@"; do
|
|
if echo $a | grep "^--prefix=" > /dev/null 2> /dev/null; then
|
|
cpack_prefix_dir=`echo $a | sed "s/^--prefix=//"`
|
|
cpack_prefix_dir=`cpack_fix_slashes "${cpack_prefix_dir}"`
|
|
fi
|
|
if echo $a | grep "^--help" > /dev/null 2> /dev/null; then
|
|
cpack_usage
|
|
fi
|
|
if echo $a | grep "^--version" > /dev/null 2> /dev/null; then
|
|
cpack_version
|
|
exit 2
|
|
fi
|
|
if echo $a | grep "^--include-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=TRUE
|
|
fi
|
|
if echo $a | grep "^--exclude-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=FALSE
|
|
fi
|
|
if echo $a | grep "^--skip-license" > /dev/null 2> /dev/null; then
|
|
cpack_skip_license=TRUE
|
|
fi
|
|
done
|
|
|
|
if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" = "xTRUEx" ]
|
|
then
|
|
interactive=FALSE
|
|
fi
|
|
|
|
cpack_version
|
|
echo "This is a self-extracting archive."
|
|
toplevel="`pwd`"
|
|
if [ "x${cpack_prefix_dir}x" != "xx" ]
|
|
then
|
|
toplevel="${cpack_prefix_dir}"
|
|
fi
|
|
|
|
echo "The archive will be extracted to: ${toplevel}"
|
|
|
|
if [ "x${interactive}x" = "xTRUEx" ]
|
|
then
|
|
echo ""
|
|
echo "If you want to stop extracting, please press <ctrl-C>."
|
|
|
|
if [ "x${cpack_skip_license}x" != "xTRUEx" ]
|
|
then
|
|
more << '____cpack__here_doc____'
|
|
GNU LESSER GENERAL PUBLIC LICENSE
|
|
Version 3, 29 June 2007
|
|
|
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
Everyone is permitted to copy and distribute verbatim copies
|
|
of this license document, but changing it is not allowed.
|
|
|
|
|
|
This version of the GNU Lesser General Public License incorporates
|
|
the terms and conditions of version 3 of the GNU General Public
|
|
License, supplemented by the additional permissions listed below.
|
|
|
|
0. Additional Definitions.
|
|
|
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
General Public License.
|
|
|
|
"The Library" refers to a covered work governed by this License,
|
|
other than an Application or a Combined Work as defined below.
|
|
|
|
An "Application" is any work that makes use of an interface provided
|
|
by the Library, but which is not otherwise based on the Library.
|
|
Defining a subclass of a class defined by the Library is deemed a mode
|
|
of using an interface provided by the Library.
|
|
|
|
A "Combined Work" is a work produced by combining or linking an
|
|
Application with the Library. The particular version of the Library
|
|
with which the Combined Work was made is also called the "Linked
|
|
Version".
|
|
|
|
The "Minimal Corresponding Source" for a Combined Work means the
|
|
Corresponding Source for the Combined Work, excluding any source code
|
|
for portions of the Combined Work that, considered in isolation, are
|
|
based on the Application, and not on the Linked Version.
|
|
|
|
The "Corresponding Application Code" for a Combined Work means the
|
|
object code and/or source code for the Application, including any data
|
|
and utility programs needed for reproducing the Combined Work from the
|
|
Application, but excluding the System Libraries of the Combined Work.
|
|
|
|
1. Exception to Section 3 of the GNU GPL.
|
|
|
|
You may convey a covered work under sections 3 and 4 of this License
|
|
without being bound by section 3 of the GNU GPL.
|
|
|
|
2. Conveying Modified Versions.
|
|
|
|
If you modify a copy of the Library, and, in your modifications, a
|
|
facility refers to a function or data to be supplied by an Application
|
|
that uses the facility (other than as an argument passed when the
|
|
facility is invoked), then you may convey a copy of the modified
|
|
version:
|
|
|
|
a) under this License, provided that you make a good faith effort to
|
|
ensure that, in the event an Application does not supply the
|
|
function or data, the facility still operates, and performs
|
|
whatever part of its purpose remains meaningful, or
|
|
|
|
b) under the GNU GPL, with none of the additional permissions of
|
|
this License applicable to that copy.
|
|
|
|
3. Object Code Incorporating Material from Library Header Files.
|
|
|
|
The object code form of an Application may incorporate material from
|
|
a header file that is part of the Library. You may convey such object
|
|
code under terms of your choice, provided that, if the incorporated
|
|
material is not limited to numerical parameters, data structure
|
|
layouts and accessors, or small macros, inline functions and templates
|
|
(ten or fewer lines in length), you do both of the following:
|
|
|
|
a) Give prominent notice with each copy of the object code that the
|
|
Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
4. Combined Works.
|
|
|
|
You may convey a Combined Work under terms of your choice that,
|
|
taken together, effectively do not restrict modification of the
|
|
portions of the Library contained in the Combined Work and reverse
|
|
engineering for debugging such modifications, if you also do each of
|
|
the following:
|
|
|
|
a) Give prominent notice with each copy of the Combined Work that
|
|
the Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
c) For a Combined Work that displays copyright notices during
|
|
execution, include the copyright notice for the Library among
|
|
these notices, as well as a reference directing the user to the
|
|
copies of the GNU GPL and this license document.
|
|
|
|
d) Do one of the following:
|
|
|
|
0) Convey the Minimal Corresponding Source under the terms of this
|
|
License, and the Corresponding Application Code in a form
|
|
suitable for, and under terms that permit, the user to
|
|
recombine or relink the Application with a modified version of
|
|
the Linked Version to produce a modified Combined Work, in the
|
|
manner specified by section 6 of the GNU GPL for conveying
|
|
Corresponding Source.
|
|
|
|
1) Use a suitable shared library mechanism for linking with the
|
|
Library. A suitable mechanism is one that (a) uses at run time
|
|
a copy of the Library already present on the user's computer
|
|
system, and (b) will operate properly with a modified version
|
|
of the Library that is interface-compatible with the Linked
|
|
Version.
|
|
|
|
e) Provide Installation Information, but only if you would otherwise
|
|
be required to provide such information under section 6 of the
|
|
GNU GPL, and only to the extent that such information is
|
|
necessary to install and execute a modified version of the
|
|
Combined Work produced by recombining or relinking the
|
|
Application with a modified version of the Linked Version. (If
|
|
you use option 4d0, the Installation Information must accompany
|
|
the Minimal Corresponding Source and Corresponding Application
|
|
Code. If you use option 4d1, you must provide the Installation
|
|
Information in the manner specified by section 6 of the GNU GPL
|
|
for conveying Corresponding Source.)
|
|
|
|
5. Combined Libraries.
|
|
|
|
You may place library facilities that are a work based on the
|
|
Library side by side in a single library together with other library
|
|
facilities that are not Applications and are not covered by this
|
|
License, and convey such a combined library under terms of your
|
|
choice, if you do both of the following:
|
|
|
|
a) Accompany the combined library with a copy of the same work based
|
|
on the Library, uncombined with any other library facilities,
|
|
conveyed under the terms of this License.
|
|
|
|
b) Give prominent notice with the combined library that part of it
|
|
is a work based on the Library, and explaining where to find the
|
|
accompanying uncombined form of the same work.
|
|
|
|
6. Revised Versions of the GNU Lesser General Public License.
|
|
|
|
The Free Software Foundation may publish revised and/or new versions
|
|
of the GNU Lesser General Public License from time to time. Such new
|
|
versions will be similar in spirit to the present version, but may
|
|
differ in detail to address new problems or concerns.
|
|
|
|
Each version is given a distinguishing version number. If the
|
|
Library as you received it specifies that a certain numbered version
|
|
of the GNU Lesser General Public License "or any later version"
|
|
applies to it, you have the option of following the terms and
|
|
conditions either of that published version or of any later version
|
|
published by the Free Software Foundation. If the Library as you
|
|
received it does not specify a version number of the GNU Lesser
|
|
General Public License, you may choose any version of the GNU Lesser
|
|
General Public License ever published by the Free Software Foundation.
|
|
|
|
If the Library as you received it specifies that a proxy can decide
|
|
whether future versions of the GNU Lesser General Public License shall
|
|
apply, that proxy's public statement of acceptance of any version is
|
|
permanent authorization for you to choose that version for the
|
|
Library.
|
|
|
|
____cpack__here_doc____
|
|
echo
|
|
echo "Do you accept the license? [yN]: "
|
|
read line leftover
|
|
case ${line} in
|
|
y* | Y*)
|
|
cpack_license_accepted=TRUE;;
|
|
*)
|
|
echo "License not accepted. Exiting ..."
|
|
exit 1;;
|
|
esac
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xx" ]
|
|
then
|
|
echo "By default the laview-latex-struct will be installed in:"
|
|
echo " \"${toplevel}/laview-latex-struct_0.1.4_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.4_amd64?"
|
|
echo "Saying no will install in: \"${toplevel}\" [Yn]: "
|
|
read line leftover
|
|
cpack_include_subdir=TRUE
|
|
case ${line} in
|
|
n* | N*)
|
|
cpack_include_subdir=FALSE
|
|
esac
|
|
fi
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xTRUEx" ]
|
|
then
|
|
toplevel="${toplevel}/laview-latex-struct_0.1.4_amd64"
|
|
mkdir -p "${toplevel}"
|
|
fi
|
|
echo
|
|
echo "Using target directory: ${toplevel}"
|
|
echo "Extracting, please wait..."
|
|
echo ""
|
|
|
|
# take the archive portion of this file and pipe it to tar
|
|
# the NUMERIC parameter in this command should be one more
|
|
# than the number of lines in this header file
|
|
# there are tails which don't understand the "-n" argument, e.g. on SunOS
|
|
# OTOH there are tails which complain when not using the "-n" argument (e.g. GNU)
|
|
# so at first try to tail some file to see if tail fails if used with "-n"
|
|
# if so, don't use "-n"
|
|
use_new_tail_syntax="-n"
|
|
tail $use_new_tail_syntax +1 "$0" > /dev/null 2> /dev/null || use_new_tail_syntax=""
|
|
|
|
tail $use_new_tail_syntax +307 "$0" | gunzip | (cd "${toplevel}" && tar xf -) || cpack_echo_exit "Problem unpacking the laview-latex-struct_0.1.4_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? p?T ?@T???>?#?452ˉ????RQ3y?`???ـ0?(?8??E?7G??r????[^??????[j??DM???i?k??VjZ??k?}?s朙A??????wb>????k?????s?Z?W\?o??8w??2???\????2??<?qkLt??=??????#?;dP????;?c??;7??Fvy`? ?1?]r??̑kg?L/-?-?"??:w?????ȿۢ?:Uo,??X??7N?c??[??g??8$:v??Qd1??c^????b`?/5??:?3J?s?Q??`-(ɷ?f?i??????ƙ?3ƏII??4?%ܛ?2???J?6gfeLH?2'NHMK6?NJ2gf$)/i?ǘMfs?
|
|
,k??7χ9?{????b??袻Ṱ?S?Y??e?|aV?֒B??EI??t??u<ڜ?2:u?99%)-?Z?0>??sj??$c$?]?5?4?\hq?slcd???$ ???o???'?R??6????J??`Bf?1Ex?䓚\???;ӷz?t?k?k???d?d?JHJQjw?U??ejAn???E?? ?Y!?ý??&???ڵ?@k+?Wm%\tm%o4k$?Ii ???Ӌs???y?%).?=?$??j>??m ڭ"?O?^=?u
|
|
?W????_%/?NJ??Y??v?֤??-A??:???FF?q&$??:r?[̹?????U??mo????"̂|????G?:M?'????i?&???g????Ids?]?
|
|
???r??gZ??V???ɕ???þNHK?Pu????\??G????#T(?=??#?v?A^2?Շ?q?G'*|g???G^RF?ё?(To?Z?j???hz9??@??)?x?PI)ii?ޔg).??+A?K?G?^Q?I,_o??C????W??騏^?}?o???-̢=z?????VAN??k?v+???gR?NAh??儎???????ܳo?(/vX? e/?]???R?]?EI????se??.~y??i???2???%/V43??j???ץ&????1:y?\?r?k?yY??*???[?VN:???i??M???t??V??`!?T?Y6ں/?????o?>??m??RW?%5Emͨ???^??4$!?z?ͭI?Yo??/??κøsf?}?d{?ls????%s?c?z??uɅ?3??R?????Y??2[???2?aU??>?5??2
|
|
z.m?kz?'$'3??R2??????3?r?,e?;ϛ??4szBF??L?tVZl???sg???\R??֢$J???߹?G???!?E?+0tk?+??}?H?k???ς??I????|?-?Dʜ???cWV>??=;Iå?I??3?
|
|
?2n?.?5_?ů??[$~d?=?Wn?ڣ??U??ڹ$???kQd?????li?қ???Ԗt\Ҿ??D?%???i?w??g???^-???W!??疔??Q{?v??Oά]???*a?????J?}??f???_*?????|-?<?<?[L?LH??_FB?)5I???"k???QJu?kA?ڽ*Y??si?B?켬?qO?(R{U}ikE???/q?????S??m?T?VN?????i?Y)?dih??M???!?{c?h뾤???B?A?tC?1CJ]??Ԉ?5??Kk?zŢ7r3"?;?K?Ԛ?%PM2?5?J?n?֊??????%?[ǥD\n%??8M2?g??r?0?W??_1????J?ɨb.??ə?G??g{|???L?|?-?O?F䥾??zIC????1~??Φ?^??]Je?u?Q:?KN??;52??#}??/??ޕ?C??d?}?K?yk?LL??kk??j??߾??}V?5????A????K?˶??>?Ϭ?sOZ??w??eCڟ??s;?w???f?????k??????C???t9?N??o4??]jÆ?%???hn??wr??7?t??{????Z?ʪ=w?ts$ٵ?ޝ???gMsο?7?{A?+?)?W?O ɦY
|
|
2??6???q???5??v??x??[?ef??Nz?i<?et?J-qX?Ȱy?R?0[?S]?Q?Ȩ?R?֞(Yf).???r? #=A?-7o??<?v??????9rK?
|
|
???ƾ?i?MFVɱЛ?[?7??t,??c?DC??s????)v;?.??::??S9=5ܫ??3?>l͢Gh?2k??xB?
|
|
?JO?0S>??W?J????|??'Q?QtO4g??Mg??c? ???E@??????mL2x?Q??X?|?Og?q?????l~??SjZ?:o?Ը?l?ݛ??,SJ??2<??b??ڇ??ҕ??w??L???g??ڧ?Їc0?*2??SF%?BӪ)OaS????&?[?^??@??n????"91
|
|
'&~?v?8??D:?o??)+?M??mi?Z3a
|
|
?6???Z??
|
|
˭%c???'b?Q3r+`A?W?$1??z??5>clB??+wT??+?f[&սH_ӂ???EL??0?Z, v{???fgz???-?mU??2UK?p??[X&fV??l?r[?????4?????ާ|???x??A?պGo???|@?C?꾙?_?Sߓ?b????? p??Ϯ@n?x??{;??m??<6?}tUՎ?%?E?E?7@͝rF+"]d?T????b?MM_a??p??6?M ? ?)????c&?pg??HL?%6>#ݔ0????/ɔq>4fNHL?䞊??e{?ю?4?HQ??'??q??]?????1????z???Ʀ汍????֦?s???֒?
|
|
v?o(\rg??@??g??G?fdf???H?C(-????q??R<?Q)`????c7~??jN%f??>d??Y!?e??Y0n??_n2?Ԛ??8?<z܄$s??q?YÕ?m????#
|
|
~?sx<䭕?sw J[M?e??ІDy?%??Gr??j??/E??k?lk??H
|
|
??????N_?;? ?Y???`?F?????t??????|??H?̙?:??(
|
|
{Ym?rs??]??ز0?=`䫿PP?FŸ#?*??bka?[?.D,?eQ1?%?nJ?ƣ@????j?S-?v?:?????/?ݭVY-?????wKEZ?k?vn?G???0i????#R??
|
|
ܦ` ]?%?R? ^˄W???״?R?j????MV?????+y?l?;???3????m???E?#??緡'???L?T?/?ӷa(????%??=???m????????<?F?????mv????_??\??>?3?X????Z??g???????.??L$kEG?~fe?B}???[ec4kAį???yf?'?|K??ML---????)??.??^?ja?z[^?~???r?1?w?zt[????ŢQ??4?l??K???
|
|
B???|?M(?X"܄??2bw?`<?]hyF?*???3? >y[hxyp?W?P?????^??SkV??x[\i=Z?k?"?(j?У?~i??>?k???u???/??^}'??E??=??3???o;Ȓ?????b?_J???K??w????T ??d?'oOK?~??6{{?>??uk??MQĤEka???T??G???~@?, ?@Y?n??kɭ??^?t??
|
|
w?<?"=e|Ķ<?Mwsᶴ?9eI??_~kZS^??w'???ծ\?] ?v?jٕ?m??HB?j??@o????X?t[?R?u?Y??"?r????l??.?j??H????rE?}+??N-?kui?wvX?(#????N\?O?6??V??m7G???n^~i??b?jW?!??/?X?/??P???D^??/i/?L?????xKw???]d??L??3?^b&?H??"???'?6??l?4?q??p?'?f?5c?t?????Ǵ??9???D?ҹ??;?_?hսP?1?W2xM?:?cr?t?R??d{5wȴ3??d??.??9_?????[az?Ii]??????^k4??l۵>Y?e?_l?m+U?V?Y??c-y?6???ċ???/m????Q?J[M????,????V}i?}?????X?]ʶ?K??;?~?V??O??Ə????(?y9`???Fa?pFos]NX?k-1;J!????m?}7X??<?hm=??]+??????C??QU???????.?*t?N(T?????4̓m5η?(??: ?f?|*Q???FP?o????3~?????z'J???$??{?ez7??J.??3?~???}?G
|
|
z??I?Ҵ?}ԓv? 5?e?A?B??8\L??q?N?]'?%D??4?c??\???%???ۭ??gi1?&?s?-1?????+t??xk?ف???K:u??fz#?{?Yj??tSiE^?]??,u8Jg\LMzI?i??`\??9f[,%?Ҽ??U~?C?)㒥?)??R?o-???????'?+cc??6?u_??U?w??????????2D???c?????{????g?ro?????h?????2?jxdH?ēx@v???T?kX~&?\`-???q?1\ۜ???SXB[??bk_???`?Y??h??B?<??E??????v?"??e^0?_6??v16w*???"@|z?(??&
|
|
)Zz?[^ċ?g??ˊ??U?x?_?ʯ?~???R?BY?
|
|
k"?'?l@??U;??}f??<???Qq4?*??$V|??ѪW%(l???vk?Զ??g??mim9??F?&???t?#?lo?~==e??ǻSN????w*r??-???w?\???FG??˔?kGd/??$߇x???c8?????)l?i?6&?G?ږ?r?'??J)??/v??J???ym?j?????4??a???n???????c?b?N?q?R??ߡ$ʔE!?D???9Y^?|????D?E?#?=+}.?+2ݢu?jQ?m?'?.?r.???_
|
|
?;???!???/|??)^??R⯊"???P??i??
|
|
^Dk<?)?%pY??EŃ??j??؛V>?????|"?WJ??<?#???K??????Ķ???Pa???N??&E?CFl{{???.?y4?7?rһ,~??_?Q?E??S6(?S^????[4???؆?????ׄ#˵פ?~>?/f?i~Ȳm??j`????ď???
|
|
1??1?d#????o?PM9?????x??R@??_?'?P?TM?|6ȌxQ?L???Ȅx?*;(ee?-\e??z2?+???Y?ߢ?w? p?*?6?[??????M?Kɺ-+i??3Gr??7_˷)\Q??FiG?MɌ?>?_???6/,e?v?o7????R???#??Z{zSL}??????%?b???P?quy?~??=??(??M?#ʿј??b???)??s?????~?X?xU???V??Mb[U??'a~??-yk?;?x6??W]w???i-?b?XCt?@?
|
|
?????%
|
|
???@?:???(?-֫??f?&>??????&%??Nb?]??Dmr՝?mN?&?ߧ?x??v !?PB???M??f???a?-????Dv?????3>??τ?l?k???G??KbV?E?3?:??6?NcԴ??j_Ԭ[?xU*hq????b?G??ju?J?? K?U:??~????X?j?X???5???)%D????!R?W?W6?y??G???Soc
|
|
???J???NLL̐!C?????2???c?1?<0?`?Ű???;?Ÿ???????M/?+-)?????]Z?????>?Q??Y;l?#a1???????f?X+F?V^f?TX?̂?x???ZH???ry??֒???|?*]dp?86bJSd4?LlO?ɖ?<?Wv?rn?%?M?,u??N??c+G??8?-_?s???e4
|
|
c?f?P?0?ir??o-?l?(m?/ fN*(?-dI?????????e???? ???$66v? r???v??????˿GR?F?q?]@
|
|
?8^???2?8?e?}
|
|
W?l'/?w???k03??Y??5??+????F?"]?H????K???k???L?֑ߑ??7?_P?M?ܠ??Q??????????P?7C???J??T??:Z???'???}?1?R??>??u??c?Ў?@$??WW?^??`?z??{??????=ې?X????????Iݷںu
|
|
??ڽSh??291?&&?`?1?:?u?2t[8??2,??xC??DC?`{?]??aAA A?o|?g???m?=??u?gFd?_PճWC?~?1z???/???ǐ`?o??????p?Cr???ئ?"?w
|
|
?7a]Գ'+????w?M4$?>z?|??{?ʮ??
|
|
|???c|?d?-Y*(?g?g)????b????e?y?}^?ا?}^g??????)???????}=?l`???S'??$?-????g??v??."??}??#??Xp???3?9 ??sP|?R?mb?C??-??ا?}??1?9A??b???G????g??,????????ہ}:?O? f???s?h?W????ow??J?W?A??*???߫?߾?s-?\'8#?{??N??ȾG?O?E????ﷱ?1????? ?}0?;?}??????}F?O????????&?7????}Ʋ?x??????>Y????f??}?s??<?>f??a?\??*???_??O!?X?g:??O)??ƾ?.c???Y?o??a??????c?J??Q?}>?o`???Û?N?|??L{?OB|??!?~??ݒ???????yy?????J???}?}'?<??_?F????7?{7???_e?ؿ>y??+}p풓W? z!>9,??????6vݮ??Ii?n~??˛#Cz?㧠?^}???Z;~??/?k?3k???"?Y??G?v??à-E?????p???ך????fs?NSm??5?v?$]??ƙK?2N??* pg?#???M???\?[w[J??ۼ?'W??4??g???֑??~,zgh?;????z?m?Y;?s?j??'???m?
|
|
??vK?}:U???'?V<??????I;?Iغ?ӡ??Q?ȜyoLߜ??6Ǵgv??ƬGo???y??+?<:$??Q????N??iw???a?k???v?msr?????Y?E?'?????C{?P?/?>^r??GǷ]????,?ٸ????5?????????t??aE??????^??_?;?`?HK?e??9Ԑ?o?c??s?/?8???]_?zӫ1?>????9??&?||?>??C2?yˉF???߹?ؐY?
|
|
???w_??? =z?????
|
|
ͯݵ???Q7??Ѿ??r_o??hp?kO?????C??.??<????Y?[???????פ????*g?̲??N?>?s????O???Tڵ?????W????ğ?|??io?F?a??g2??????QY??n????????q??^~??N{???:8???2?^~??Gn??ֳK?.?}??̓"$#⺻f\?}????{Ŕ?C??????>??S??\???z???km??_k?Iy??o??2<(??_]K???xԓ???d?c?7?RP??????Rn}????}7}f?4dgCș?L\??????k??^???O,y;xo?҄?.?????cY??{Ϙp?χ???????????V???c??~?7۟?qn^?9??t????+~??e????=????'??ܿ(???eoyj||D?]?????G^?qO?
|
|
O^??Ȅ?????y?K?>?u`3w???O?
|
|
??3?h?/?h?k?'?j???????>:<?=Z?{A???????j?C???[?y殈0U?:j?u?6s???m~?N?\?c?X????|???3:?=7ݨͿ?I??SÃ???:zw??#????O???ѡ??W?C{?i?3t?yWG???6o?N??B????ͯ?i??:??˵?9:?X??u?Ot??l???Q???????s:???i?;t????{h??~???:?????U:?&???:?d?N????g??=q:??Q=??~?k?:?]?_??y{??X??|y?6^????3F?<?:?kD???^ԑ?#ߤS??:??':??O:?ޯS>?t?O?N????/?c{u???i??t?}^??????:??f?r?#?Dg\?c?y?N?????=??c?N??ױ?V?????Q???k?:??봫???V??????S?}u?g???\????N???O??o֙g?ױ?Yg>?ש?ku????ʕ:?A?2u??H?|???w??Y?S??????!:??
|
|
?|?ЙG_?3O??^;g?p
|
|
??^ܥW?)??u??9??=??? ?????|^7?????8?w?m?s,???x=??_??;p~?Q?K9?/??=8???z?kgr>Z??]???(??Ћ??r~?? ??]??|Ŧ?d?}E?͜T???|???
|
|
?]#??F?}?~?=????/?`?????o?>?K?b?n?tG?-??JQ+??r?`?B?LiglGQM?T???#?=p????~??'??$?O?%??ǹ????(?U?|?h'?Z???_?Uع????Q?Y??6[|e9?^.??αt?a???&???7ݥv??$?Y?????_'v?
|
|
??k??z??J?R?'??-J;??[?WY/sD?K?mP?Y&??R????߆8n[?8?+??J?wq=?+Ɓ???~S·?1R?zV???B?g??߹Qң,?}?8sP9?t?6?4(?yB???J{:????e}??;????Ӥ,?]b|hY??+ڧa?2߰ Q??9? n6>'?C??
|
|
{?~(?WK???UQ?-6e;?'?i?G???Mg??]7?3ѮZ6+?< ??A???!???/??ƛD9w?#??_??|?_帋??yCg???]D???x??+D??f*?)?[???%?Y*?f*?? ??q????x^{7?[??oE{xFY??D??)?}?d??????u????ΫD9??`????)?,1>?8???M??]ٯ????????Y?EY???_?S???b?H?N?67?W?????z?V?9s?F???Z?˜F??H?XiI??W?<ޕ?q¯?i?(?J?TY>u??+O(?????5??????Q?/??????^f?y\??)?k?Ӡj???qަl?E?????l?I??#??#???D???w?+?Y,?y???I??????vx????^J=!b\Mߦ,?HagS2??GHq??ﺈ?K??!.8G./?rkjQ??O?n.???R?i{??D!o?YW??????2?R??-?K?r~Cj'?x5?f??zb(??яl????m?]Չ~'??ۅ????~?;D?C??????Ge|(ͿǕ?+E????o?g?|$6?F)~?Έz???Q?-?C?hR;??g?v?%?aC'e9o????ɱV?G?G?\?S9N>&Ɵb?zV??D?7???h1???0(?%?????????U??#?N???y?V?????G?߆???7Qn9???w?)?|??m??ą'?I?????#?=ר??b??Q͏??x#ݦ??zZD\?E??+E??*?m??kE=V>[??-v?|o??ƩAn?߈?רj??8? ?i??-?g|?ү?E??|???b<?y??/?I?1??ɫ?=6'??lQ_Ɠ?r[.?+Eܛ ??b\?????r??F???9?^??)?/??qB,??D;lXϱT_???U?~???/OI?*~??гB???&Q?+z+??,??Q??'??_#ڹT?Ҽp?2?m?t????q?Y?N*Uql?(?F?=?b]SyL9?N?Q???y??????+D??S??~5???l??z?E???R?+?(?L???俓ʭV?_??U?*?*?.\????[?q?T7?x5??2?٢?Ǩ???/?.?4?ǫ<??0??jO+????:վ?S??6ո}?#???R?1?>???X??>?????V?O???g*??p?n?;)?)?BOCoe?O?W?*n9j?"??(?z?nkE???u?'s?z\?_??+????&????ı?nG??W?X?I멣"~nP??D???*??(?4?8,??~?z?K??????"??]J?
|
|
??j??(?yH?_<???}+???3s^?z?+Ʊ??xh?_???????[???????_?rhQ??0T?9R}
|
|
?~??q???????FQ>"Δ?? =-?~?h?w5K??? ?g?؇??t?l.?QZb?????`??Xs?c0?f?5?[?Bk??b??o????5?+漊\P?[l????Y?!?IZ?????I??b??xZJ????)
|
|
??"K?tq9/????Y???!:Ɖ?R?r??nq1SUj??s?u.??`???c?Щ???X?"?0??鵲????{?,??&k-?[?7?#?6??=*q??/#??z?d?Z????{_??????Jr^???<e
|
|
??S???\??X??f?8??%fk?? ?Zl??k/???LWF҉?.)uX??g-?K?,???x?U??8?;????3?
|
|
-Ŗ?Y?\??
|
|
ғ?qi?j??h?x /eߋK?Y???E???Ω2?R?ΰ?U>V????+/?[??R??)??i??$???/"?䣾?ƥ֒???
|
|
|
|
?%?W??W?3X/͋1kK??u<??]ß????&?rY?Rm?WHա?%????|?"JƊ????>???B??%(??,o?*?eJ
|
|
/??Kn?T%o?ZQiq>(+c?s?(?$?R??s4??*???8*u?A??S????y^?CSo?R??![?"?.??h^u?N?h^M??M??9?a29???WwҨz?_V)????1??ƾ??I?y?L?X?]4?tj???K?l?]??-'e?+???4r?]?{wQ
|
|
????d??r??o?4}?[??b??3??EO?7??1 ???17?"??KI????45?s????????w5.?y??^??]#??????U?kuziu?bZ????{@
|
|
?[??Tx??YO?SYG???;? ?R????KG??E?o??U??5H?n???? ?? ~???,??b?T???? =?k?r?"??{?`ށ?c?Nv??T?(dʣ
|
|
?J`??????"Q?:Q????Tl)??%lyç????-˳Z??<?v ??BK?0?'?s
|
|
c"\Li
|
|
?*iX??B<?<c?
|
|
?_?+?H??????+?I??e!@A)???!Ţ?'?bz??????<D?QT^(}+??????-?v?na]??"A?A?q<?]??o)?8,RL%??\?W^?(??Q?Pm?
|
|
J?$??墵??Uf#?/?TokrW2v??k????y??/`Ҽ??s?W ???N5q?^W+?!hwV?|?&`??cQ?`]!ށ?????JE~MS?k???B??am?O0k\F????w?{?1ǫ?
|
|
??K*7O?6?C?\_?x?I?~m֫???i??M?:EF|?b?V??????%ҋd??V>????^?/?c??&e??6?\??#"W???e??O?7tU?*????#5?E}?/??V?Q ]>e? @B㩥?|??']-??#?MW??Pϛ?^VjwH?K????tI????8??3?|?? 0???,vy͟?n?z??>????c?h?!i??a??????)?]?
|
|
???Ps?&?DϨ6?9??[R?
|
|
?Zb+w??\i??=_??0yt@RsٜSKuV?74F???l+-?I?ߝ?Y??@?o???ij?ڲ?g?Ew,Re8??m?𡄔?ζ?(NoRT??ĬP?3=Ks?;h?????e?^? Zz3?3@??*???X?a???vK).???P?1M-??1E#?V??k????;?R????]?,?p???)"?(???^
|
|
??]??X??S??Hg娸.?5?ݒҼ\X??0/??%?|VX?n٬8?+|?????:?Pjӽ?E?+?_ЩL?k?7????<?ը=???
|
|
??I? ["?4eJ?+0??3?%?VEb???????w?@Uq?&s??A??~??b??,??Y:???o(?(??ť?<e_???{?????^?^?j??uW??^`Er핥?????s?и??TT???ix?,?C??~??Κ??!܆@?F?@?i???q???J=?=???????|??&??;ڪ!)_?y?^?O?bPs?mb???}Qd??d??U?jNҐ??HULk^tv[?5?#?o?!?X??֏????-??eY߭Ph??`C?ȋ??bc?#?jz?(
|
|
b~??M"#N?????JJ???rK??]?(????u%???S*?`ņ&ed+/+b?[?žo???X?#;?}KV?a$v_%?el?(_?lI7~???E,d?qE
|
|
#%???J0?6!?
|
|
¡;?]?d?̗????T?=???;??2???????S??RCc=?ë?ME??JU? /r",W?)??9V{???????%]?(i? XgU"?UX@[Y????S??|kLt??v b??p????t??GA?????7S?????:??W??NKML2????m`? ????/k?vhC?i?
|
|
????5??????O??@Ø??????Z?A??\ykhKn?ץ??J??????C?????o|????%W??????Ej=??o?C,S?=+T?a(o?/???p?????B~??7???=??/??5lP???*?V?oR???P????e??:?'G?G?U???
|
|
?t?+T|??_??[D?kT|?+"5/p?F%?#?C?S?{??E*??fng??+?*>,R??%?ר?x!_?????|??/??T????Ne???_?$?e*>?+?w???`?mR??.?8_)?e*?A<??F?Lj?n?6???5B???2ߒ'???&????????*>F?*?E<gP??+??>o?Y?$?????Y??T??X?Q?6????|*??*? ?}*?F<?~Vŷ??Y????%B??o?>_??Я?CW??*=⁐
|
|
? ?}*? ?=??[??+?;T?J<?Q????Oůh?U|?x>>{?????*?&??ݧ?cZ?~5/?5?R?g3?J?)??xc??U?3B~??o?%?U빌˛?S?q?
|
|
{T?}??G???"-ƽ
|
|
?H?W???B?_+???.?&?OȻT??B?Yo?("??J?B>T?G
|
|
?0????T??B>F??I?ǫ?J!oR?˄|????9*?e!oS???|??_)?????[????#?]*~?T????=J~?T?*?Bȇ?????W?+?|???T????_?:?B???A?????u1???&<}/W?%|?? o#??2_A?|%??~?鋮k????O?`?G{^"| ?k??D??; _G?>D???M??5p?2??韑??D>??t?C????8?>???w$L??H?t»?Mx??.9??B?"??D???~J? _I?=?_D??_C?7 ??? ????i?!??D???A?_C?.??#?`?~Ox???] ????w.?9?w??[??g ?
|
|
?|??OǓP?F?0?Lx#??{# %?cߓ?q??O?x??I??ߕ???%ӆl??&|?3??"?_E?m??F?
|
|
???W~?_C?>?_F?k????h?'|_"_K?"?????:?_G???"z????ߏ?i"?K?w?·??wg ????F?7:??7;C ߗ?a??????????&|????O?뉝????t??$?ل_M?sO??????O?爞
|
|
¿B?J¯#?"?D?¯'?2~?;??O?
|
|
??0ѳ??7?????A?????[?7?f»I???'?Y?GްW?'?r"?-D<??F?[ o$? ?? C???w=q??K??Gy?g??????? ???9????m??@?
|
|
¿L?J??M?\D?#D????~?W?¿D?X???;¯!?Tbg?o???'???D?>??h?C??D?E?? ?B?D?Y?+~??#?/????f](??F?X:?~0??$???>?????????ɴ?D?"?? ???g~?s???E??Ex??%|??'?T>???? |
|
|
??%???}¯ ??????? ??ȯ!?]??#?H?? |<??@?}??J?&?'?E?Q???'???/"o?X??:??J?d>??§?H????W?8?Ϥ??h?C?Q2mH'??g?g????{?????M?+???H?E?7???_F?? ???W????iD??????J?#?;O??%????5>?????>??9K?{o???'? ????^??&?? ?A?D>??1??????????w??????O?[ ?M?d????>h??~???Y?? ?q?W~3?~?k??ع??S??????/????#???????O??D????>???????y?'??? ???t????˄"??t?K?)D>???$???U4?'?D>??f?????~+?M??????!|6፴??D?"?;??O?\????S _I?<?/"|?k?O?e????[??K?N?? ?5?_C??????;_D??[ ?????D??w???-??A???O???̟$t?_%|(????.:????G?F???$|???O?
|
|
D?D??t?'<???Mx?Lrߑ???@???ˈ?
|
|
§????"???儯!?-t?'??D~??????|-??~
|
|
?{?????%?l??????'?+?|???E???o!?{??K? o?L?w:?????O???|???H?@:?????'?????O?"o"|%?? ?(? ?:?s???E?_Cx?_A?ӄ?$??/"?7??!???_F???_Axm????????h?C?MD??O?? ?3?o ?c??G?E?o"|3?]??%|????%??2????????????#|$? ?"??$?b???????????7~ ?? J?????9???SD???F??W?m?W?/?_D?;????e???+??_"?d?? ????H???I?? ?S?o <=W???????ˈ??????/?h?'?_???_N? ?????;??????W??i?? Su?_M???:G'׃]??$???nh?1??7?_<?#??V???I?Acs??????G+?k'???+G?kG?+G?adž80 h?A?0hNG?0??o?Gn?7? ??1??}s(?S???|??a?pK????C?C???wG?7??#??J??f?=??? ?B????G?
|
|
?U??╀????_??#^
|
|
???x1?k????E??|-????:??4????_OlD?O|=??8p8??x??ĉ?#??? ߈?#?&?q?????#??} ?G?? ??#|??8? ???ߊ?#>8?G|?m??/X??c???Ǣ??D??|;??x3?;??? B??<?G?
|
|
???J?q???倇??????#^x8??x>?;??s?@??߅?#?x$??p<??x??q?D???I???D?????a?S???B?G??#lB?????#?x??8?????@?i???s???#>x???0????9?????????A?7?@?????#?8?G????j?????W???#^ 8?G??}??⥀'??????#??~??\?S??v?????6???c??A?O???#? <?G<p??8p>??x`??x ??q?B?q8?"?q?V?q?????????????ϥ0<?G|
|
|
p ???0?R??,??`??x??????F?v??.?e???̀???u???ī?B??<?G?p??x9?9??⥀???~?G<?C??⹀????F?O???p%??x?G??????? ?B?'^??#x!??x ?????? ???#??G???G??b?q0?j?q ??????%3??G|
|
|
??ć???????G??_?č?????w~?G?????u??D?????x???+/C?/?W??R???ċ?
|
|
?G<????s??Gl???x?g??????@?O?O?q?????1??C?'~?G<??????#??"??8?K???>?_F?? ?
|
|
?G??q ?W???~
|
|
?G|
|
|
??ć????p-??x????č?W???w~?G?????u????#^
|
|
?-??*?o???W^??#^x-??x)?u???ŀ?A????G<???b;?
|
|
???i?7???`??C?O? ?G?x3??x?-???D?[??? oC???G??Gx?????????w???????#??G|.??=???S??G???
|
|
?p??x???č??Ļ ?E?o???x???ī??#^?S??J???????#^
|
|
x???x1???????G??????? ??x?/???X????ē ??#? |?G<?????D?ߠ?????G<?w???(?ߣ??????} |