2016-09-16 23:07:49 +02:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# encoding: ISO8859-1
|
2017-04-01 00:17:31 +02:00
|
|
|
|
# Thomas Nagy, 2005-2016
|
|
|
|
|
#
|
2016-09-16 23:07:49 +02:00
|
|
|
|
"""
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
|
are met:
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
|
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
|
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os, sys, inspect
|
|
|
|
|
|
2017-04-01 00:17:31 +02:00
|
|
|
|
VERSION="1.9.8"
|
|
|
|
|
REVISION="6657823688b736c1d1a4e2c4e8e198b4"
|
|
|
|
|
GIT="e596b529d8125b34c9a2fc90cd08398021d2c6b3"
|
2016-09-16 23:07:49 +02:00
|
|
|
|
INSTALL=''
|
2017-04-01 00:17:31 +02:00
|
|
|
|
C1='#.'
|
|
|
|
|
C2='#-'
|
2016-09-16 23:07:49 +02:00
|
|
|
|
C3='#&'
|
|
|
|
|
cwd = os.getcwd()
|
|
|
|
|
join = os.path.join
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WAF='waf'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x
|
|
|
|
|
if sys.hexversion>0x300000f:
|
|
|
|
|
WAF='waf3'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x.encode()
|
|
|
|
|
|
|
|
|
|
def err(m):
|
|
|
|
|
print(('\033[91mError: %s\033[0m' % m))
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
def unpack_wafdir(dir, src):
|
|
|
|
|
f = open(src,'rb')
|
|
|
|
|
c = 'corrupt archive (%d)'
|
|
|
|
|
while 1:
|
|
|
|
|
line = f.readline()
|
|
|
|
|
if not line: err('run waf-light from a folder containing waflib')
|
|
|
|
|
if line == b('#==>\n'):
|
|
|
|
|
txt = f.readline()
|
|
|
|
|
if not txt: err(c % 1)
|
|
|
|
|
if f.readline() != b('#<==\n'): err(c % 2)
|
|
|
|
|
break
|
|
|
|
|
if not txt: err(c % 3)
|
|
|
|
|
txt = txt[1:-1].replace(b(C1), b('\n')).replace(b(C2), b('\r')).replace(b(C3), b('\x00'))
|
|
|
|
|
|
|
|
|
|
import shutil, tarfile
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
try:
|
|
|
|
|
for x in ('Tools', 'extras'):
|
|
|
|
|
os.makedirs(join(dir, 'waflib', x))
|
|
|
|
|
except OSError:
|
|
|
|
|
err("Cannot unpack waf lib into %s\nMove waf in a writable directory" % dir)
|
|
|
|
|
|
|
|
|
|
os.chdir(dir)
|
|
|
|
|
tmp = 't.bz2'
|
|
|
|
|
t = open(tmp,'wb')
|
|
|
|
|
try: t.write(txt)
|
|
|
|
|
finally: t.close()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
t = tarfile.open(tmp)
|
|
|
|
|
except:
|
|
|
|
|
try:
|
|
|
|
|
os.system('bunzip2 t.bz2')
|
|
|
|
|
t = tarfile.open('t')
|
|
|
|
|
tmp = 't'
|
|
|
|
|
except:
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
err("Waf cannot be unpacked, check that bzip2 support is present")
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
for x in t: t.extract(x)
|
|
|
|
|
finally:
|
|
|
|
|
t.close()
|
|
|
|
|
|
|
|
|
|
for x in ('Tools', 'extras'):
|
|
|
|
|
os.chmod(join('waflib',x), 493)
|
|
|
|
|
|
|
|
|
|
if sys.hexversion<0x300000f:
|
|
|
|
|
sys.path = [join(dir, 'waflib')] + sys.path
|
|
|
|
|
import fixpy2
|
|
|
|
|
fixpy2.fixdir(dir)
|
|
|
|
|
|
|
|
|
|
os.remove(tmp)
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
|
|
|
|
|
try: dir = unicode(dir, 'mbcs')
|
|
|
|
|
except: pass
|
|
|
|
|
try:
|
|
|
|
|
from ctypes import windll
|
|
|
|
|
windll.kernel32.SetFileAttributesW(dir, 2)
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def test(dir):
|
|
|
|
|
try:
|
|
|
|
|
os.stat(join(dir, 'waflib'))
|
|
|
|
|
return os.path.abspath(dir)
|
|
|
|
|
except OSError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def find_lib():
|
|
|
|
|
src = os.path.abspath(inspect.getfile(inspect.getmodule(err)))
|
|
|
|
|
base, name = os.path.split(src)
|
|
|
|
|
|
|
|
|
|
#devs use $WAFDIR
|
|
|
|
|
w=test(os.environ.get('WAFDIR', ''))
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-light
|
|
|
|
|
if name.endswith('waf-light'):
|
|
|
|
|
w = test(base)
|
|
|
|
|
if w: return w
|
|
|
|
|
err('waf-light requires waflib -> export WAFDIR=/folder')
|
|
|
|
|
|
|
|
|
|
dirname = '%s-%s-%s' % (WAF, VERSION, REVISION)
|
|
|
|
|
for i in (INSTALL,'/usr','/usr/local','/opt'):
|
|
|
|
|
w = test(i + '/lib/' + dirname)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-local
|
|
|
|
|
dir = join(base, (sys.platform != 'win32' and '.' or '') + dirname)
|
|
|
|
|
w = test(dir)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#unpack
|
|
|
|
|
unpack_wafdir(dir, src)
|
|
|
|
|
return dir
|
|
|
|
|
|
|
|
|
|
wafdir = find_lib()
|
|
|
|
|
sys.path.insert(0, wafdir)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-04-01 00:17:31 +02:00
|
|
|
|
import waflib.extras.wurf.waf_entry_point
|
2016-09-16 23:07:49 +02:00
|
|
|
|
from waflib import Scripting
|
|
|
|
|
Scripting.waf_entry_point(cwd, VERSION, wafdir)
|
|
|
|
|
|
|
|
|
|
#==>
|
2017-04-01 00:17:31 +02:00
|
|
|
|
#BZh91AY&SYV3<03>!<21><><EFBFBD><EFBFBD><02><EFBFBD><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><@+<2B><><EFBFBD>PPC#-<2D>(b8<62>;<3B><>;<3B>#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&:{<7B>fڳ,<2C><>1Ӫ<31>k<02><><EFBFBD>}<7D><><0F><>wncz\w<><77><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>9<EFBFBD>^<5E><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>U<EFBFBD><55><EFBFBD><EFBFBD>2x<32><78>ﯳ<EFBFBD><EFAFB3><EFBFBD>7<EFBFBD>[<5B><><EFBFBD><EFBFBD>E#-m<><6D><EFBFBD>{[zt7m<01>{.<2E>{<7B><><EFBFBD>u<EFBFBD><75>#.-<2D><><mc[7ウ<><1E><><EFBFBD><EFBFBD>n<EFBFBD><6E>g<EFBFBD><67><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD><EFBFBD><EFBFBD>^:<0E>sw<73><77><EFBFBD><C29D>:<3A>9<0C>֞<EFBFBD><D69E>#&#&#.<2E>#&P'<27><><03><>T<03><>f<EFBFBD><66><EFBFBD>B]<5D>w#.Sv<53><1D><><03><>TҔ<54>h<EFBFBD><06>k<EFBFBD><6B><EFBFBD><EFBFBD>t<><1E>=<01><01>F<EFBFBD>#-<03><>(<28><><EFBFBD>%)AAw<41><77><EFBFBD>+<2B>*#&*<2A>#&$<24> <06>0<1D><><EFBFBD>]><3E><>Ɨ{<16><>뫽<EFBFBD>u<EFBFBD>-<2D>N<EFBFBD>Z<EFBFBD><5A>u<EFBFBD><75>M<EFBFBD>k<EFBFBD>oPON<4F>#&_{<7B>J<EFBFBD>N}7<>T=<3D>^OZ:<3A>D<EFBFBD>/]o}<7D><>}<7D>ԟ|<7C>̧v<CCA7><76><EFBFBD><EFBFBD>N<EFBFBD><4E>|<7C>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>wu=<3D><><EFBFBD>}<7D>n<EFBFBD>R<><52><EFBFBD>ŝ<EFBFBD>N<EFBFBD><08><0B><>T<EFBFBD>i)ֶ<>Q<EFBFBD>N<EFBFBD><4E><EFBFBD>Ro'<27>ס<EFBFBD>փݶ5[hh<68>ֈ<EFBFBD><D688><EFBFBD><EFBFBD><EFBFBD>[<5B>{<7B><>TA<54><41>]<5D><1D>@tG<74>ր<EFBFBD><D680>C<>{<7B><><EFBFBD><EFBFBD><EFBFBD>]ݷz<06>O8s<38><73><EFBFBD><EFBFBD><EFBFBD>7.(<28>AO<41>"[Kk<4B>Ӹ<EFBFBD>ϋ<1E><16>><3E><>w<><77><EFBFBD>h:i<><69><EFBFBD>#.<2E><>{<7B><><EFBFBD><EFBFBD><EFBFBD>_Z<5F><5A><EFBFBD><EFBFBD>0|<7C>TϘ<54><CF98><1D><><EFBFBD><EFBFBD>T<EFBFBD><54>8<EFBFBD><1B><>y<EFBFBD><79><EFBFBD>h]<5D><><EFBFBD><EFBFBD>o7<6F>}|㳻v<E3B3BB><76>]<5D><>ݶ<EFBFBD>b<EFBFBD><62><EFBFBD>[<5B>֕t<D695><74><EFBFBD>ǣ<EFBFBD><C7A3>.<2E>o<EFBFBD><6F><EFBFBD>n<EFBFBD><6E>{<7B><>}w<>{<7B>vefɭ<11>z<EFBFBD><7A>^<5E>}<16><>-Dy;d<>A<EFBFBD><41>͇v<CD87><76><EFBFBD><1E><>`<60><><EFBFBD>i>><3E><><EFBFBD><EFBFBD><EFBFBD>M<EFBFBD>ӏ<EFBFBD><D38F><EFBFBD>}wW<77><57><EFBFBD>܌:e<><65><EFBFBD><EFBFBD><EFBFBD>r<EFBFBD>ק<EFBFBD>{<7B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:ٽ<>w<EFBFBD>X#&o<<3C>t<EEBCBA><74><EFBFBD><0C><><EFBFBD><EFBFBD><EFBFBD><10>#&<1A><>Ѷ<16>Ale[<5B>v<EFBFBD>Ev<45>+KL<4B>mm<6D><6D>Uή<55><CEAE>{-<2D><><EFBFBD><<3C><><EFBFBD>i^<5E>i<EFBFBD><69><EFBFBD>.7fo<1D>).<2E><><EFBFBD><EFBFBD>4 ζ<>mz<6D><7A>#&<0B>uq#&`<60><><EFBFBD>{y<><79>'5G<35><47>訢D<E8A8A2>+ڒ<DA92><DEB6><EFBFBD>nY V<><56><EFBFBD>}<7D>z<EFBFBD>Ľ۴<C4BD>[<5B><><EFBFBD>݈A<DD88><41>z{<7B><16>-<2D>1<EFBFBD>m<EFBFBD>xJ<>i<EFBFBD>k{2<>k<EFBFBD>Ru<52><75>vu<76><75>(<28><>G<EFBFBD>`-[̻><3E>v<EFBFBD><76><EFBFBD>><3E>==s5<73>Y<EFBFBD>=<3D><>}<7D>qy<71><79><EFBFBD><EFBFBD><EFBFBD>2v<32><76><EFBFBD>/o]<5D><><EFBFBD>)<13>k`k@_m7<6D>Wi<1C><><EFBFBD>Zl6<>z<EFBFBD><7A><0E><><EFBFBD>z<EFBFBD><7A>gq<67><71><EFBFBD><EFBFBD><EFBFBD>H<EFBFBD>_Pm-rW4<57>P<EFBFBD><50><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>r<EFBFBD>]<5D>F<EFBFBD>B<EFBFBD>]<5D><><EFBFBD><EFBFBD>+<2B>k<EFBFBD>(nf<6E><66>mU<6D><55><EFBFBD>m<EFBFBD><6D><EFBFBD><EFBFBD>;<3B>oYt<59><74><EFBFBD>E#.<2E>j<06><>Ճ;<3B>זW<D796>kid<69>ׁ<EFBFBD>6<EFBFBD>V<EFBFBD>v<><76>]w<><77>#-<2D><03>#&:#&|<7C>^<5E><>f<EFBFBD><66>#&#&ȝyy<><79><EFBFBD>X\<5C>=<3D>PS<>#&.W{<7B>{<7B><><EFBFBD><1B><><<3C><0C><><EFBFBD><EFBFBD><17>Ӹ<17>{<7B><>sn<73>wsNQ<4E>ȁ%rq<72><71>m<EFBFBD>in7<6E>ʊ睛Swm<77><6D><EFBFBD><EFBFBD>3m<33><6D><1E><><EFBFBD><EFBFBD><EFBFBD>ק<EFBFBD><D7A7>{<7B><>w<>l<EFBFBD><6C>+w}<7D><><EFBFBD><EFBFBD>Cl<43><6C>G<EFBFBD><47>fn<66><06>n=<3D><><EFBFBD>nz<6E><7A>я<EFBFBD><D18F><EFBFBD><EFBFBD>9<EFBFBD>چ<EFBFBD><DA86><EFBFBD><EFBFBD>k^.<2E><>٫<EFBFBD><1C>i<EFBFBD><69><1A><>ᦈ#& #&M#&&<26>#&hѠG<><47>)<29><><EFBFBD><P<>#&<01><03><><EFBFBD>i<EFBFBD>z<EFBFBD>S@<40>@ <09>ђa53$<24>?Jx<4A>d<EFBFBD><01>#&#&#&#&#&#&#& <09><>#&C#SM#-)<29>{Bd<42><64>OjG<6A>OSO<53>4dz<64><7A><EFBFBD><EFBFBD>A<EFBFBD>#&h#&#&#&#&#&<26><>)" @<40>i<EFBFBD>&jm𧩠<><F0A7A9A0>Di<44>@hdL<>Q<> #&#&#&#&#&#&D#&C@<08>@ &I<> <09><>CF<11><>Sz<53><7A>#&#&h<>#&#&#&h#&<26>Q@@#&M4h <09>&<26>?<3F>O<EFBFBD><S<>0<EFBFBD><30>@z<><7A>(#&#&#&#&#&#&#&?<3F><>k<EFBFBD>Z<EFBFBD><5A>p<EFBFBD><70><EFBFBD><EFBFBD>E$j<><6A>Uʷ-[<5B>r3<72><33>ն]<5D>`<60><><0C>ն<EFBFBD><D5B6>I<EFBFBD><10>"<22>5fԞ<66><D49E><EFBFBD>\<5C>h<0F>LHI~<07><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:<3A>c݄<63>4<EFBFBD><EFBFBD>2軚%<25>]<5D>aޝ<61>X<EFBFBD><58>1*"<22>^<5E><><EFBFBD><EFBFBD>Ī<>F'<16><><EFBFBD><EFBFBD><EFBFBD>Q#.<2E>'<27>G<11>Ʌ<EFBFBD><01>B#.d<02>QL<51><4C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>dYIH,P<>媾w<E5AABE>4(eݦj<DDA6>qә<11>G<EFBFBD><47>Fe#4ӛ<34>̕8IaA<11><0E><><EFBFBD>R<>eM<65>ȧ<18>=<3D>җ<EFBFBD><D297><EFBFBD><EFBFBD>՜qK<71><4B><EFBFBD><EFBFBD><EFBFBD>,<2C>c<EFBFBD><0F>P<04><10><><EFBFBD><EFBFBD>|_<><5F>R"<22>)2(<28>m<EFBFBD><6D><EFBFBD>V6<56>I<EFBFBD><49><EFBFBD><EFBFBD><10>A<12>+P<>"<22>2(IҺ<04>Q#&̤<><04> <20><><10><04>1o<02>x#&PDH@<40><>h<EFBFBD><68>#&V<><56>P<><50><EFBFBD>+R<>l<EFBFBD>Vm<56><6D><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Z<EFBFBD>ɑ D<>f<EFBFBD>L<EFBFBD><4C>P<12>I<><49>&<26>%<25><>#JQ<4A><14>I<EFBFBD><49>J+2LA(ɵ5D<>0<EFBFBD><30>Y(<28>Dhd<68>D lc"jR<6A><08>jX<6A><06><><EFBFBD>Ѥ<EFBFBD>M<EFBFBD>ѵIK-)<29><>"#&3e<33>(<28>A0eXƴZM<1A>-#.M,<2C>P<EFBFBD><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD>M*D`E)<29>m <09>*<2A><><EFBFBD><EFBFBD>2<EFBFBD>3bM<19>$%K%i<><69>4<EFBFBD> S,<2C><><EFBFBD><EFBFBD><EFBFBD>ʕJf<4A><66><EFBFBD><EFBFBD><EFBFBD>bd<62>j4<><34><EFBFBD>#-l<>h)<29>FȑQ#+<14><>I<EFBFBD>h<EFBFBD>0BŊB<C58A><42>iQT<><54>h<><19>H<12>Ȍ<EFBFBD>%i <08>b <20><><EFBFBD>"$<24>BD3$<24><><EFBFBD>ѩ104l()b<>TE<54><45><EFBFBD>H<EFBFBD><18>BE<42>JR<05><>dbQ<62>D<EFBFBD>RbQRQ<52>KF<4B> <16><14>F$<24>Fe5$Y1JRlDlk&<26>E<EFBFBD><45>3B<33>I<><49><10>ŲX$Yd<59><64>1<EFBFBD>MI<><49><EFBFBD>(<08>2QE<51>%<25>$f<>!%"<22>(4$<24>(c$<24>1e<31>0<EFBFBD><30>Ŋ<EFBFBD><C58A>Dm <09>T<EFBFBD><54>!-%<25>A$<24>`<60>e<><65>e<EFBFBD><65>M`E<>M<EFBFBD><4D><EFBFBD>DR<44><52> 3l<33>iK2<>B<><42>M26(<28><>M<EFBFBD>J<EFBFBD>6,<2C> Ji&Y(Ј<>,<2C>b<><62><18>&)2<><1A><>4<EFBFBD>E)<19><>%<25><11>BK(4<>Ȥ<EFBFBD><C8A4>cII<49>,JR2<52><32>FaE<61>%H<><48>A<EFBFBD>D2<44><32><EFBFBD>E)<29> 6ƌ<>,$d3% <09>#&<26>&T̫1<CCAB>e-)#2Ś<32>j<EFBFBD>IHR6L<36>ST<53>F<EFBFBD><46>(<06><>Qlb<6C>M(ƥH<C6A5>f<EFBFBD>b2ə<32><C999><EFBFBD><EFBFBD>"lR<6C> TF<54><02>d<EFBFBD>6dҙ!Hc(<28>)cE<63>J6jT<6A>I%)F<><46>)"J<><4A><EFBFBD>h<EFBFBD>B1<42>)<01>X<>*,<2C>RI<52>$P[I#.j6M<36>"F<><08><06>I<EFBFBD><49>Lfɐ<>M-<2D><>cI h$<24>Y<EFBFBD>S"<22> #-50<><30><EFBFBD>E<EFBFBD><45>&J<>JK!!Fť<46><C5A5>ưfU"<22>IH<49>60<36>ad<>"<22>h%D<><01>)<29><11>j6#.hhI<68><49><EFBFBD>K2<4B>6DJa<4A>Yd<59>,<06>H<EFBFBD><48>e!<21>kjZ<6A><5A><EFBFBD>$<24>Y<EFBFBD>R<EFBFBD>J)&<26>kAR<41><52>)f<>1ILe3K-,<2C>-LѰ<4C>Z<12>X<EFBFBD><58><EFBFBD><EFBFBD>B<>j<EFBFBD>O<EFBFBD>ky*U<><55>%J4e<34><16>X<EFBFBD>6*L<><4C>ʈl4hiiE<08>&<26>k"0֑<30><D691>j)1<><31> S#YLL<4C>3Y6<59><36>)Md<4D>-4<>,J<><4A><EFBFBD>+A)J<>dɚRMA<4D>f<EFBFBD>4i<34><69>VʑT<CA91>VaM<61><19><><EFBFBD><EFBFBD>Dkd<6B>+"T<>f<EFBFBD>J<EFBFBD><4A>JSL<53>Ck"<22><>FU66<36>M<EFBFBD><4D>-%2<>Ihձh<D5B1><68>%ck%<25><>V<1A>$Ƥ<><C6A4><1A>Ť<EFBFBD><C5A4><EFBFBD><EFBFBD>LkE<18>V*űbfѭBZ<42><5A><EFBFBD>#U-<10>QH%<25>0<EFBFBD><30>2Pڕ<50><DA95><EFBFBD>6<EFBFBD>"<22><>B<EFBFBD>m$<24><><EFBFBD><EFBFBD>fCb<43>!2<><32><EFBFBD>&<26>db@<40><><EFBFBD>(<28><>T<EFBFBD><54>F<EFBFBD>e<EFBFBD><65><EFBFBD>m5<6D>Sj<53><6A>֕(<28>*<2A>5K"<22><><EFBFBD>$<24>d<EFBFBD> <20><>43L<33>m<EFBFBD><6D>d*<2A><><EFBFBD>D2<44>I<18><05>X<><58>1"<1A>И<EFBFBD>Dͨ<44>3<02><><0C><><EFBFBD><EFBFBD>M&MiX<>R<EFBFBD>EH+,<2C><>$J$<24><>IF<49>f%B<>$<24><>#-<16><>!L͚<4C><14><>fP<66><11>dH<64><11>0I<30><49>HL<48>E<EFBFBD>IBM<42>HM<48>4Ic#IM(<28><>5<EFBFBD>2<EFBFBD>Li<4C>ʒ<EFBFBD> QQHBQ<42><51>b<><62>IFaFL<>R<EFBFBD><52><EFBFBD>S+<18>X<EFBFBD><58>JɳA6<>CF<0C>ѣL<D1A3><4C>))fZ<12>H#H<>d<EFBFBD>b<18><>Z*<2A><><EFBFBD><EFBFBD><06><><EFBFBD><EFBFBD><EFBFBD>f6<66>62<36>h#-Q<>$d1<64>&S <20>S$<24><>%Fhh<68>SLY <20>-I3h<33><1A>54<35>M<EFBFBD><4D>TiD4ђ<34>-Y<><59><EFBFBD>lْH<><48><EFBFBD>D<12><>"ѶhX<68>@5<>M<EFBFBD><4D>C6<>EcT&<26><>Q<EFBFBD><51><EFBFBD><EFBFBD>jL)$<24>B<EFBFBD>K5(<28>R<EFBFBD>#b<><62>-e<>M<EFBFBD><4D><EFBFBD><16><><EFBFBD>K)D<>Ib<>l<05>cZ<63>4PJmA<6D><41>ԕF<D495>F!<21>`<60>)CSb<53>F<EFBFBD>F<EFBFBD><46>,<2C>F<EFBFBD>"<22>Ȩ<EFBFBD>#Q<>,Fl<46>e<EFBFBD>FɱZL<11>h<EFBFBD>fY<15><><EFBFBD>R<EFBFBD>JBISbQ5V#-<2D>#-L<><4C>LE<4C>Q<EFBFBD>c<05><>F<14>LڊJ<DA8A>mJQI<51>4<EFBFBD><34>Ƭ<><C6AC><EFBFBD>E<EFBFBD>"<22><><EFBFBD><EFBFBD><EFBFBD>,<2C>(`F<><46><EFBFBD>d<EFBFBD><64>Q<EFBFBD><11><>)#-<2D>H<EFBFBD><48><EFBFBD><EFBFBD>5<EFBFBD> b<>%)S-1<14>d<EFBFBD>d<EFBFBD><64>0d<0C>%<25>E<0C><><EFBFBD>Jj<4A>ضS&<26>$c)0d<30><64><EFBFBD>Qif<69>[bM<62><4D>le1i-<2D> lVѩ(<28>H<EFBFBD>3#.dfDƕ"(6f<36>֊<EFBFBD><D68A><EFBFBD>[&<26>K[2<>A<EFBFBD><41>R6(<28>ڢ<EFBFBD><DAA2><EFBFBD>mF<6D><46>ڍ<EFBFBD>j<EFBFBD><6A>e(<28><>l<EFBFBD>JجY<D8AC>-<2D><>e<EFBFBD>5I<35>e<EFBFBD>H3I,<2C>4lQD<51><44>%<25><14>f<><66>6<EFBFBD>Z<EFBFBD>&<26>L<EFBFBD>Th<54>)<29>ld<6C><64>Z<EFBFBD><5A><EFBFBD><EFBFBD>),*a(<28>a<EFBFBD>E&<26>$֘bIV+E<>-3Vэk6<6B><36><EFBFBD>ke,<2C><><EFBFBD><EFBFBD>$<24><>i<EFBFBD><69>FQA26<32>c5<63><35>%<25>L<EFBFBD><4C>#e<>Q@<1A>Ēe$Ț<>!l<><6C><EFBFBD><EFBFBD><EFBFBD>{<7B><><EFBFBD><0F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Q_k<5F><6B>?<3F><>#߸<>V\#-l<>+yAP<41>M<EFBFBD><4D><EFBFBD>#<23>D#&Z<10><><EFBFBD>zW<7A>(<28>[r<><05><>sIe<49>v<EFBFBD>u<EFBFBD><75>s+<2B>]zm<7A>)]<5D>3<EFBFBD><33><EFBFBD><EFBFBD><EFBFBD>9<EFBFBD>J<EFBFBD>чfJ<04><><16><>),<1A>.D<>`<60>hRBH<>{j<1E><><EFBFBD><EFBFBD>7<EFBFBD><37><EFBFBD>ѵ<7F><D1B5><EFBFBD>K<EFBFBD><4B><EFBFBD>_<EFBFBD><5F><EFBFBD>[m5<6D><35>7;)a#A|<7C><>b<EFBFBD><62><EFBFBD>X<EFBFBD>b<EFBFBD>]<0C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<2C>ɢC<1D>5m<0B><><EFBFBD><EFBFBD>@Ể<>
|
2016-09-16 23:07:49 +02:00
|
|
|
|
#<==
|