|
#!/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.6_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.6_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.6, 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.6_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.6_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.6_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.6_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? g=V ?@UU??~?G?hjd?7?B2KE??C%?$].p?hY$:ye?/c/Ǚ)ǚV3dM???5-BK?2???'Z?i????9g?sϹ??4?????:s?~>g????ϵ???\{avAY?????Yv??;???;K%eَ;##?Mm?/22r?=???ߨ?#?_?7??A???bBw8`??]pw???&?{?WV??*a?L/*?*? ??:w?,??ɿ???Uoγ?J?c?:?<+? +?qwdDd?#?f~?1????[IsN????a?Q?cϝc??s?η?ssl?f??j7&?z???ر֔?q???Ӭɱ&%N`?3?i???ӭq㓒????i???Kz?V??????????????|o^?}jD?}???l???RG??0+e{a?F?ͦ&r??4?fd9??<??8*i?5!1>9
|
|
?Z?0>???DkR¸xs?]?=?(ۚgsXs?m?~??I@:????6????$??oM??;6??شts??w??')?([Gw?w????7?:*1?)HOL???.?U??dRnV?????
|
|
?/?f?"B??yCMZ???k+??V??ڊ??ڊ%????HX?c??¦d??j??KR\?s?(??*??a?*b?[E????F?
|
|
?%?ڸ??u?J^*????X?L֤??)AJ?}??n?N㌍KN?w??:??جY?????U?ԭo????"L?|c???C?M?'????i?&???k???}?Ids?]??i?r??{Z??Uo???՝???Ǿþ?O?M?t?߲??z?H%?G?P?{:7?K?mЃ<d??⺗N$TxϤ
|
|
??????ڢ#?P?????I??7??r?E?NR_?ء???5?)?VP?CW??Wҏ ????Y??2k??????Q/??{Q???S.?E[???穭??6???-+???kR?NAh??儎??????ܽo?(+p?? u/1\?X???]?EI????ue??.y??i???2???/Vt3??j??ǥ&????1y(\?r?c?yX??&??劬U/'?????qqr??+(??Ղ??5XH)??(????+j??,?[?W7%?4TyEMQ_3???hT,
|
|
D??Q{?5i5????=?RXw?hMK?m?\R4?ZT?F?B???1G?`???B?i)?I?L???t?xiq???2?a?^?5i?2?/m?kF??&$0?b?ӄ?:?g??0???m??;ϛظdkJlj?4?tVT`-?*ɚQ?K?'k???O֢$?
|
|
R?ﹷE???!?oE?-0????U[?^s$ٵI??cA{??$a]
|
|
?CAU>?x\"????۱+-??랝??J???CU?i?o?A???Sx?-??i???-79???%>???v.????AT???y;[???f+_6?%W??-)Qo????;Q??n??m?x??????sKJ|ɨ-v???d?&{?>???`M????{M31??'z[??Kޖq?w??)&W'$???/56Œ??y%Y???l????2ׂ"??*Y?se?B??<?}q?x?(R{T}ekE?d?W?f?RdF
|
|
P?iR?W?U/'o 5?]?4????4??{ަ??k?R?X6????ak?0n?^?0l̐?P?5b}ͨ???Q???L?H?&?fO 4??x???Ǎ??")(*??uI"븒?KV????%3???!???\????KV?KFmsy?Oɬ-b.??S?#?j?3??1??7%:????O?%=?K{p? :;??{-Kw%??%W?aj?l9?A????[??梗?Ȓ{V???C?A[?9?y21M*??YҪ??o?jz?Y5?<????6?[?/?&?Һ??^?n?=i]|ޑn?
|
|
i_2j??h??ۦ??Kؗv??ާc??{????|:}*?h2??Ԋ
|
|
?+??h???1l??fYn?????R???U[???H?kӽ;/?????o?o????W|S?a?ԗ@?M?:*??mr???>??5??v?????[??V??NF?i<ҹӨt&?T谕 ??q[??j?OmtR???³????D?R[An?&????U2?T?r?i??#?`?8|?H6??ԑUHl?G????웑6?d??ټ?xr,?G?b=;FN?1?[#I
|
|
?a?am?}6?!Ο*??M՜i?bk:=B??Y+l???(Tz?Ћ??YF?
|
|
T5l?e3?<????|<њ?4&???͑?=?7?"?ߴ1????_?H?#?:Ï?$???Ke??X6?X???y???&$f???ƥ[SՖ??Ē???a?t??f??~<d??֙eY%????1\U?? ?#cY??Ք??%n\jBb*??.??,<???,{?V$?%???????"?]?HG?l?*?@u??s\q2??4?=?n????2{?Ük/?ӓ?ި?Y? ??{???k??Ɏ?:&6Y?Ux?J??ٚIAs/?۴???y?|^fQ?-??$kbO?3???y?Vζj?{???t8]??X&VV?Yl???Q??\V?ŽL?ja?S?J???<r???jÂ??y?M9??ٷ
|
|
?o??????<X???w91ܱ?+??0z?|o?r#"e??1??浗???1?¸H>Z?{??)?b?? ?e6I??ck-v???֩?l???????????8f<wF????Dzb?RS,?c??|?L?Ec????q??T?-?????JG?E????6???֚p\?;?c?]Y?Vv#Z??ܶ|?}[??n??Z?W??N???w%?)|??udRjZ?W??D??c}JK;*9?-?6?.*;0ֱ????4b??E&???ri:_?uƭ???Mf?s??GYG?o?76-}?Z>???b?Y{D??t????????)??Z?(??P??0n!S
|
|
????e?????m?q?K?:S?Y??K???oV?1+??l?)Q̓?>փ?#???͓?^i?9?R???c/?mVn?|?T[fٳ?f??+?2*?QM!g??
|
|
e?!"`?,??)+̑)%?6>j?O???شY?:l%?|r^n??"pk?nO????T?U?^k离5???zK*9"?8??@6K?,??`?X&?/?P<?Ֆ?G+J??
|
|
?i[e??4/?o?[e??).????О?o??/? /??=?=???e?Ǥ}ɗ?
|
|
C???m)
|
|
?1??m???˲?[j??<???o????߿Д?)?Dg:?????"
|
|
?BY??f?n?Ī2??
|
|
???u?r??.?omV?ѭ?ׂ?B??+-ɶ?<??J21?????Uȧw??g???z????m?my????sʊ?a?+x?cؚut??l:ũ?NgȦ?<? ? ??o?wфR?*?%?M??p3v??Å?{?@??X>^S??c?????5??C?P?e??9??an??ŕޣ??V/Ҏ?~?=:?ָ?%??C??:?A{?R??5v?]???S?>c?;?z??Z?mY9???5????-??B{????i#?V????mi)?/?Rs}???fOco?]???&??UL?o???;??N??{?y??? ??+?f\K??R_tx?UK+??rߊt????d?f4?ͅ?Һ???%%v~??i]ye7_N??3h?]YZ?b???ҳ+V?.F????蓁???0?}o?0F??*???b???UB?~??????]????s/?r????2;?ЮץUޕ?RF?(???e9q?/?[??WYַ??TF?y9EeS??]u??w<$cA????r@mֲBe9?JK<???2Qھ??)?e?
|
|
Ww???5?O?~?ϴ{??`?*NT???g???૱Uhҝ?e??`O?Lo??RCi?o??=N?%r??ބ?2???=?O?hU^???-?܃&9??昒!݇???1?^?2?L?&Y??K?~?W?9??y*L?>??7?<}6Y??c?f9<?m??'??l%??a?
|
|
?K????V????FKvV??^T??υYV??P٨s_??&zUqe??hi???4x?]?i?Se??.ek??????Nv+?Χ?T?CJo?rT??<04^V??N8c???$,ȲZE`?C???[?lTH?k???Я??|_?]?!?N???l??KY??? ??V??P??{???yW????]z Zm?W%Z?<?j?- ?}=?aƇ??G??D??ҹ??X?}???覔Z?eޗ?{F?Ǔ??{?A?@4T????z?? ?N??9?S7??ˉ?u??)?k?db@??Ȑ?Nt?=???ٸ??Qq???? -?t?D9w?3?/???B7錷?Q??7?<???ahf4?ɫϢ?˰?0??P?1?5??"??h??Ԥ????y?
|
|
?c??VxY-?CJo??T?86A???[l?9????????)?J?a?~ݗ???n?;?p???????"????QwG????o?3??g?rO????????¬?R?jxdH?ēx@v?_?kX~&Úk/???y?9Dߜ??~SX?ⲩ?l???)??ֳf??>T݉>yة??C???v?$??i^g??b.imbl?Tv!?E????Y<9;TR???Y^ċ?g??˪??5?x?_?*??~??%E??zք?F,?ـlCkv????Y??1G??6UD?H??4#4?JP???K?9Rۊ??a淥???ol?????.??}?@???????e>/??7??U?Ϋ'Bi#???l3͎|6ݗ?5?(^??I??+[?0???#"j-?Sت?b?Lʏ?.?e?DO2??Ryf;F?*??L?"xm?j?????4??`???n㑪????c?j?N??L?J???$J?E!?D???9Y^?|????D?I?#E??>??a??C?VT?????T?e?߶?|Ǖq;ĂW?????_0?˞?CJB?UQ??JS9mܾ????9??.?>??zpQ?C-r{??ݞW4z\?OD??B??????xDѭ?{IF??Л????2???q?6([?ԤȽȈmo?Bʣu??|"????]Nz??m??rTwU!?k??
|
|
????n???f???2?ke?m?Q??jRh;?
|
|
5넴*???N?>5??s
|
|
?A?C ??BLE?n>?H??`??[.4S????N$!^???????K?????fA?k???F~y??(?x)?B??h??RVW0?r?U&٫'#?j[ޗQ?-:??Q.]??&F??ߵX??Pߤ???[?????s$??~??|??M?l?v?[??,???\i??R1n??~?????<??b>?0l?km]??M1??K????l???:B????y??/d??q?r??t???;??>-??BJ:?ن[jm7???W?{?n%??%??????rQ?????7`3?z?u?N????-??5??n
|
|
?P?}?_q?_U?`??/8???KeYF???ҭ???'??_6֤?7?K??ϛ???U???esZ7Q?wʊn?B%??]??fFK/v?R?qP?mL?J@d??????1?Ch
|
|
?L????ޮ;?˳$f?Y?>?h )l??tA]?ڪ&?E͆??W??'??*&y???v??P??Y?v?0?H???c?=bqR?ք?V?8?A??F?H?_u?^?(????
|
|
U`?z??QZ?6'p"##lt????????3?9??A?0?x0,"*bP??????^?M???@??5????Qf?|???=?????xb?H???3?gT?7?c_^?N??1E??b??c?e;xп?-?_?Ɍ??t٧q=?ׇ????ĥ???_?E??=<]ʞ?_???? `?w???????o??&???"?,]G?i????"?#??ךT?????f
|
|
?=?ɿm?R?? ?`?????? "e??n??n&??;L?z??!????'?????2?5M춵?k?`?
|
|
???:??*?B?#CM?LS@????_m?pSׅ+????1u??3u?\?iWPhJPp@@l ??[_?t?i[OS??1~???0C?cn??
|
|
?ѯ??c߸??L=V????F?`?5u?c???????t?]B??1ئ?º??1???j_ԣ+???????3?=q?|??[NJ.)ҟ????s4ӕ? R?@???>+H??D?'???>?????????>5????f????qm???V?]?>????g?ld?Z?m&?m?U?>;??}v?=???>???S?`?????_??a??+?}???w??b?&?9?>'????}~d????gc???"??J?K???l;???>?ا3?ta??EC?F?
|
|
????=?L?? ,?^???a???&???ߛ????V?=?}? .???S|??????f??????3?}???}?3?}???x?7Q|???I????3?}? .??Me?4?I??7?}b????0?X?'?}??g???fm??>y?cg???S?>EĿb??D?R??L|?????????>???<?? i?`???????]_ytS?[:_????Ӟ??4l??.'~??G.??}???^[?-????=?o??P???NϽ???Qc۷??????ǗV?l%?w>}??A-zd??x9&!85?1jݮ???ov??k??{????^???C?m~
|
|
????G?6Ι???maGwF??y??f?8pK?䠲???<\?fӅ?om????o_saG??????8s?>??^???w?=???^?ӤI??u??uw%6X????a՜??{?????3???????c???q?]?v??????I?|v?}öG???qA?_?=????'7~r??_^5qǷ?[w?r?ϙ??????rL{~??o?z??Ǟ???s??l??~?wJ?v??_????,?O?]7'????P????5O?~?#???
|
|
y?#??N?tɡ??Nn????UXܣa??3r??s<??=????M??ܝg?ߟ?j????:p????????>9b???+????Q???k^?u?9?????7"'??????Wg?%~z?!秃S&?ͼ?T?}?G1?_b???U?ú?+[???????q?ayӆ䔏?????[???D??Yo5n}?sћO?????#7?Ϋ?4?嗖YI[;w??ڛ?????????뜅3K/~?5)??c?i#.?;??:gř??????vם??_?}?i?ք?a???Ӟ??????鿼e??Э???q뢚?_{?{????sV?SϦv???????????_}??ך=?t`j?M??ۈ???sQ??)IG??????}??g??J????????ͥ7<????????g?L???mX@轿??>?u??g2?j?L?????n?5????y=?????33?l?ܴi????s???p?7K??'oX;{??.>???];?y?áKc?;??z???f??5c??ޟ$?
|
|
?מ?u??r?O?3???\??Os?k??????뎧?_?ӞN?~u?g?=???E!??)}??g?ńܷ?o;o?w쭟????̵???qt?k?ƽ:???_;6sW?A????d?#;??>?r?>???>??>??A????m??ܣ???/?^??q?>??}??_?g?S???0'??????????1????W?9g?_2?sۭ??+????0??>??@Ϡv?|????P??4?7"H???:?vh`???v??=?qu??7?????3=??5?0π?~?>?Ǡ????N?A??mP_??????*??}? ?????;?OHw}???>??A?I?h???q??A;?h?n??``O???p?@O??n:|?A9l7?e&}?^??Ơ=_??_4?Nj??6(O?A??Q?~
|
|
ƇW???7?{?????A{??A??
|
|
?g???i3????%?ql??=Y?????/??z??~Ƞ=?nP
|
|
?̃k
|
|
?c o1?wY~}hP??
|
|
?5???v???^?8?F?y-?@?z?v?jP>???T?
|
|
꽏A??3Пe??7(??q?i????Gv6̧1?u???S?_??`^0?C?A?a??~~???e???H??xh??1???y??
|
|
?A?/6j?????1???????A??h??M????=@??)???G?ݕ?չ|c*Z??_???8???????)/s???6????r>Gȗt?|?>5?&????|?????1??'??n????~*?????M9?????|?8???w????Ʒ8!ԛ?Aȋ?Ƈ????=?ש?_.???o???o??K?bn?tG?-??ZQ+??r?`?5B?TmgT{Q?&?T??i?????]g??o݄?S\~????p??,???A??*?W>E?s
|
|
?R???"????݂??,???J?-9???u9?\-???q??G ;???R{????n?zD?Ջ?Tz?r??봟??1???|ñT?Ã8_Q???Y???·D?V?U????Rv?Tv?J??H-????G???A????F??????]\?M?߉q???I??Ҏ?A?F?Ԯ^?.(??.??o????yHo1?V?'???;M*{???b?ڞ?????[]_?!B?u?D?D6??s????Lj?iڪ?78@??j?Nj??/????ʞ?????????????觑????ێ??7?n??]5oV?yH?G???)T?? ?_?
|
|
??rn?G??,?Ƽ?q'??j??;?zY??H????/???k?ho5?f??g??o???_??h?'??N?y??\?=1??c??yu????Y???????p^?_?^????j;??\?*???B?"???.??L?zܾM?/Q??Ţ?h??n?}VoQ??????T????/RD???M???v??^??C槜?U?#ļ?????Ry.V?_,?7Ov?|??+r???R9,U?O????Sj????7M????|"5??[?~?ƫI???b?njJ??E?4i?gOi?/V??}f??Eu?|"ƫbѿ$????\??"^zW??r??,?????$?? ??E;?C?J?@O??@1??lS?g???1??
|
|
?å8M?w?ā???x??#?WD?56??????v7??Q?%?,~??8!o?Y[???????R??'?K?r~[j'?x5?v??z?"???zя?w?Ǎ?D???NjWw;S???nw?(?"u;9/?????4??T???9??M?K?8?P ?[??AR8'??&ʧ??گ?*D{??y??:???>??;??y???H3N????s=?<?(犝?q?I1?????_|(ʿQ3/G???y?I??H1?H?$???V????¯L?.p
|
|
>D?k5??E6?ޢ???P?Ͽ?r?l?.?/D??Ψ??
|
|
?Ljx@\x???_8~X??.?s?&?>,??L?????7R????BO??+:?vr?(?^u??q`???r?g??D-?K?'?qjR?Ϸ"?5k?y;1?ԋqF??v??S???9??k?)n??O?_??K?OzL?x?:aO????qi??/?iu?-?"??b1.U?qIꏿ?z?|K=?? ?u?G?_/?????9!??m?֯?X??
|
|
??*D?}Q??g?xI??C?Y!?H?d??????v?¬???E???\??Pi^?N?6?~?B???8??h'?86Z?ss?ڞ???8?o??*??????h?b~?N??|?O??u
|
|
??J|?h? =1?]I?T?h?k?z?M?P??K?V??/?E|U????E?7?H?v="????ƜQ?;[??H?z?\?eޥ?&??x???,?[?Y???^?_???p?q?X3n?m??}??B???8??}?]?~???i?[?L?8"?mJ?:?_??.?)b????-??B^?u?E?Z/?m?h?R???d?X?K??ӢE?T??Xў9???(??j?8i=u\??????(??u??S<M=t?N?h?R??'?[?uyn???.??&Q_?b~??<*?/nd????Qę?or=???]b<,????ei?/?= Ʒi?!G?߿?Ь?8!?a??s??&???4????/??????/fQ>"Δ?$=͚~?h?w1H??W/?g?؇??t?j͛QTh?????d??&k.?c?&?????Jly?R??$}L<<???k?W???Y? ??>??ѳ??B.?????????)k??6??:?????%?YY?|!ߖ=]\??*???Ŷl+??q?]?\??+(`???m%?9?:????~???tfʳ1V<?L0?vV\?>lp??+Z?G?9ʞQ??Y?ŶB??Бk?/??H?????Zu?z??U|Z}???U???#??lu
|
|
~Yy??nvW?????Jl???B?=ך?e/???*)???MWJ҉?.,r?s?g-??m?ʭ6x??8?;??[?3\*-??Y6?\??
|
|
ғ??q?jYB4l?????EЬ??٢?DK?T?B?gT?&;?bJ????f)????Ǵ?H????(??f,??q?A??p?x_y??P?j?|5?:?????H??$?!]?M??5??*|?0???J??j??Z,U?a??s?
|
|
sX?(d+?r?[?$?
|
|
uʖ? "7X?:?U?K?>
|
|
Z螗?R?J???????PVʆ;?L~VaN??????5?4?J??xE3?Y??*?]?̳???xs???
|
|
ن?t1?E??#k?M??hҹl?(*??&?#m?qm??%??W?d???{IA??l?[??@??X???X??)????qL??L^I?M=˕?rR??2?wݑL''?X??<w??q??Iv?+??{?C?W???b!?]}A1??X?$???I??7????^F҆??MR1>?9P?c???S?b???n?&??5?KXFY^%?Ve???*??_j?ܓ jP?
|
|
j?£?z❪
|
|
??r0A?FÏ?"Ë?oU??5H'?\?x??B ??VZ??g??ʋ??* ݯ??r?*?r?{???n`?Av??S?(d*?
|
|
?J`???۔?B??T??TI?|*?B????l!_?d?f??ꅇѯ?c??g+????galA??)?!P#
|
|
???<???g^??+ȱr6??K??<?Y??|???_???R,?x")v??m\?_?/???<?[??q?
|
|
?n??X.?I_??@?#7?'-?.??
|
|
l?S i6?f??:?f???W??$??e??*?Uf#?/?Uok?+? ;?rt???_<\???^??9?+??F??n??8
|
|
?ky??;?X>b???1?Z???@d?SФ"?????;?p??⨾??'Xu.?U??ŻRnI?1?k?*???˩7O?6???\o?x?I?~mң???n??&>?"#?y?R/???YM???E??U;?L،?n/ߗ10?M????J???????????'???*?
|
|
?ټ??????Ɨqi??(??
|
|
?2d ??Ԣr[??֓????æ??\i??͈/-*qH?????tI???y8??0?|?? 0???l%ʚ?Kn?F??>??F??{4???Ç??fg?NX??.dEw?? ?ZʧI2?3jF1???*,d?j/,.s??\m??=O??0et@Rk?S?v?74F???Z\Tj???ƹ?r9d?"%`?????
|
|
Yh???6ñH??n8?)#?ʇBRvۆ?s??8=IQmF?J???,͡b접?V?=??Jx\?e?? ? ??`dV??z???[JAQV?h?F?ij????):????$Xs??G??0ޡ?Z,?q?Jdq???H?N???_?h????">Ʋ?*?D@+G?u?Yϖeg?????yY?U??O ?j??qr?f? ?X?$e<84(??b?[YD?:??Ae\#?)?y?䑬N??
|
|
?vH??I?Be??+S$???7?ܖz??????v_~????'M&??A??~??Vb?Yf/?;2?(?o(?(?Pĥ?<u_???{RՋ??N?^?f??wW??`Ur???|EI?>G?\2N*?J n??4?Q??!?~?/??gM7I??nC I? K?H???rz?R?xO???n?"`<?I????j?W??y??'e1????4???'_?z:Y?eծ??t$?6RUӚG??V?uUM???-D?0?#????B"?u3?MKNQ? ?w?UZ?>?????&?V????H??^ J???xo?Ȉ?%"???¢i?4??V&}??p??????>G?]?.?ᔆbر?I???3??b?7?^P?ܑ?%ߒUm??WIq)[*???/??Cҍ_??f>Y%FB??H?$??LQ???b?0?)?>?%?3?.e3U`??>e??褌"ap8?n?y????Y????aS??RU~??Uw
|
|
݄???n{pJp?>pI?t?E?8 6X??`Pv???O?T6<?
|
|
/???o,?9 "?? 8?Q??m??j???u*??p????Uʣ????"
|
|
?h?????e]?v?Z?Okl???????????R???F߮?G?????t???z?;A+Xr;?.?OWzn????f
|
|
_,???|??5|?x.?B???.?????Vk?b?<?2??гBÛ?????_!??ȯ??/?hx?????Z???Z?5/???k??
|
|
o??h?j?<P???z2?z?_?Zy??p??|??O??4|??w???y]??ި?3?sH?Z~??H?7??????c?B??????Ӆ?
|
|
#?k5??ќ????B????"??j??D????L?}????????M?v"?E??+?L???h?H??m?fM{?A???A?_?ᛳ?~
|
|
?(x?M??q>C?G
|
|
?\?7???5|?????M??????VM9???7=??!?ߦ)?ra??7 ????ϣ?????y?~?Я?@??>'?k???B?F?x ?\?????7??G?k?f??J?M??g?k????+?~
|
|
_#???ة???B??/?????B??ωZv???i??5???35?9]???y!@???k?\??-????=?d??G?g
|
|
?|
|
|
!ƽr
|
|
?H?Wh??B?
|
|
_#????/?F
|
|
@Ȼ4?cB?y
|
|
o? "??j?B>HÇ ?`
|
|
?????)B>R??I??h?
|
|
!o??˄|?????5!_???r
|
|
?R*
|
|
?!??A?k?GȻ4?j????#?M{??F??5|????J??W?H
|
|
?_????_`??c???ˤ?K???? ?g???+??/>??u?/&?c~
|
|
_N?7?|?G~?鋮? ????O?`?G{^%|!?k??D??; _K??D???G?? ?w??s?*??韙??D>??t?I?눞h?>???w$,?oO?»?Ax??.???B?|??J?)&<???r?7???{???W????~?7~???C???|
|
|
????_K?A?????W=?? ???\4?j"?"|W?7????>Q?@B??'A?????????f?????Z?G?? ??1?/!?f!|§??B?2ߋ?O%z? ?/&?6>????????H?j??&?2??@???G????????5??????&?? |:?SO?9??@??DO#?_%???????t?;O???75(???????D?>?&??t?'???#|?# ?B???L?!<??-???ȧ??? ?j"?Ix??=???@?¿H???u?W~?~? ????B???H????i?@??D???B?Z~m???'?m??@???H?? ?"|? ߏ?? Nx?^??@?!??w? ??'|0??$???i?'|$m???I?D~.?A?-??A???߶? ??g????'?]?/&?%?5?W?~b?"?#?մ????;?????U?G????~
|
|
?;k ??????o!??????@?]????̈́oG??'?=DO??h?'<?YD?Z?>???????F????$|0? m???Vh??????~?? ?P?g~?? ??ń?O?r?O&?T>???w'|5?? ???#¯ ??????? ??ȯ!?}??%??? |?? K???N?F???E????f?????/"o?T??:??D???3m??O$?a?C?¯ ?ф?I????????#ڔB?C?? ?/??$<???'|)???ȗ??+???o!|5?????~ᯡ?ᓉ|
|
|
?¯!??????@?w?????+? <?j$| ??E?i?'|
|
|
?s????)O:??"??4?'?m??>?? #|?# ? m???D???????w>?? ??$<?}?|????b§???' _A?̈́_D??&?,b?2?O!?
|
|
Z_Dϫ????????_??@???'?;?????? ?C???D?]??H?f?O"?y????? @??????S?|0??Ax3?+i?O???|$᭄?&?˄?!?V?[?1?S?I?i?'?????w???YD9????ل_D?f?W>????m????W?????"??%|?w>?????? ????? ?"|? ???? G????M? ¿A? ?ӟ?&?}t?'|?#|1?# ???ф????7y??????~J?KڔI?????a?? _J??>????w?E?/#|5?????_"?+??????E?k???kߋ??????/?g=??@?? _N? ???.??%|3??$?y??Bx??
|
|
?????F???J? ???f???????????=ф?????y?+?B?'?A???I????'???????K?
|
|
?/ ?"?K?j??@?e?_H??7??O?:?>?????D????????O?z??I??_D?F?7?E??7ޏ???7"o:??Ch?O?/?x??M?`????0?/&|$????᫈|??Hx?>??At?'<??I??=????????????3??^??C??D~?"?
|
|
??M?W ????????=????;?,?? O? ?#4?'?2"?"?
|
|
t?K?X?? ???tH?:??%|??F?`????t}Zy<?R??7K?ɲ?????H ??C-?&??Zn?a?
|
|
?þ?H??????u"`??T?8???Zģ?ъ??q??(D?
|
|
?C?Q??j? Ñ??
|
|
??q?)F?4e"?
|
|
?4? ?n?7? ?n?7E"???̈/0????}S?3???|? ?Q?pK????#????wC?7 ??#??Z??f?=??? ?D????G?
|
|
?u??╀????_??#^
|
|
?7??x1?????A??|#????M???i??????
|
|
،?#??f?q*???h?????? ???????G< |