www.digitalmars.com         C & C++   DMDScript  

D - Guide to converting C .h files to D modules

reply "Walter" <walter digitalmars.com> writes:
I wrote this in response to many questions about it:

www.digitalmars.com/d/htomodule.html
Sep 04 2003
parent reply "Philippe Mori" <philippe_mori hotmail.com> writes:
"Walter" <walter digitalmars.com> a écrit dans le message de
news:bj9bd0$4ir$1 digitaldaemon.com...
 I wrote this in response to many questions about it:

 www.digitalmars.com/d/htomodule.html
I think it would be very usefull if someone can write a tool that will automatically do the translation and that is able to convert most standard C header and most Windows headers without problems and also header files generated by MIDL from an IDL file. Even if const as a type modifier is not added to D (I think we should), I think we should support its presence for automatic import without being less safe. So we should at least support const for extern function where const is supported. We should either support fastcall for extern or automatically generate shim...
Sep 05 2003
next sibling parent reply Mark T <Mark_member pathlink.com> writes:
I think it would be very usefull if someone can write a tool that will
automatically do the translation and
that is able to convert most standard C header and most Windows headers
how about yourself?
Sep 05 2003
parent reply "Philippe Mori" <philippe_mori hotmail.com> writes:
"Mark T" <Mark_member pathlink.com> a écrit dans le message de
news:bja5hm$19b7$1 digitaldaemon.com...
I think it would be very usefull if someone can write a tool that will
automatically do the translation and
that is able to convert most standard C header and most Windows headers
how about yourself?
Since Digital Mars already have a C/C++ compiler it might be possible to modify it so that it would be able to produce D file. I think that Borland uses Delphi compiler to convert Delphi files to C++ one that are used by C++ Builder... Another possibility might be to make the D compiler able to import .h file and make it visible some part of it... We can start by importing POD style struct, function declaration that are compatible (uses compatible parameters, return type and calling convention) and constants (define and real constant). If we do that, we could uses a special define that the D compiler would define so that we might modify the source header if required. We could also have the D version available as a define... Thus one would be able to force something to be ignored by the D compiler if for some reason it does not works (and not properly skipped) or would be able to add some extra definition like shims for the D compiler... and even include a file where someone could put D stuff for things that where not converted. I don't have much time to do it... but I think it would be worthwhile to have it done so that typical C header files could be used... And it might also be interesting to be able to do the conversion in the opposite direction in some cases... so that D code could be used from C/C++.
Sep 05 2003
parent reply Ilya Minkov <minkov cs.tum.edu> writes:
Philippe Mori wrote:
 Since Digital Mars already have a C/C++ compiler it might be possible
 to modify it so that it would be able to produce D file. I think that
 Borland
 uses Delphi compiler to convert Delphi files to C++ one that are used by
 C++ Builder...
Well, C++ Builder can compile Delphi sources, because it has an embedded Delphi compiler. Delphi compiled object files seem to contain interface information in a convenient binary form, so further parsing is not requiered. ;)
 Another possibility might be to make the D compiler able to import .h
 file and make it visible some part of it... We can start by importing
 POD style struct, function declaration that are compatible (uses
 compatible parameters, return type and calling convention) and constants
 (define and real constant).
Just look at it: all you are suggesting is to put more work on Walter. Shame on you! Digitalmars is definately not Borland or something. He doesn't even come to implement some really vital parts of D specification. ;)
 If we do that, we could uses a special define that the D compiler
 would define so that we might modify the source header if required.
 We could also have the D version available as a define...
Martin Pederson was very kind to donate a pre-processor, which would be a vital part of the converter, which i intend to work almost like SWIG, which allows exactky that. There are 2 reasons why SWIG shouldn't be used: - it is designed to deal with languages almost imcompatible with C, and thus supports very few types; - it is GPLed, which is bad for us. We want MIT-style license and/or a donation to DigitalMars.
 Thus one would be able to force something to be ignored by the
 D compiler if for some reason it does not works (and not properly
 skipped) or would be able to add some extra definition like shims
 for the D compiler... and even include a file where someone could
 put D stuff for things that where not converted.
Yup, generating wrappers in C might come later. This is only requiered for interfacing C++.
 I don't have much time to do it...
Neither do i... Nor does anyone...
 And it might also be interesting to be able to do the conversion
 in the opposite direction in some cases... so that D code could be
 used from C/C++.
Can't really imagine - there are next to no libraries for D. :) Besides, it's much harder this way. First, C++ interoperation should work... -eye
Sep 05 2003
parent reply "Philippe Mori" <philippe_mori hotmail.com> writes:
 Since Digital Mars already have a C/C++ compiler it might be possible
 to modify it so that it would be able to produce D file. I think that
 Borland
 uses Delphi compiler to convert Delphi files to C++ one that are used by
 C++ Builder...
Well, C++ Builder can compile Delphi sources, because it has an embedded Delphi compiler. Delphi compiled object files seem to contain interface information in a convenient binary form, so further parsing is not requiered. ;)
The point was that with C++ Builder, the .hpp file will get generated automatically when compiler from C++ Builder. I don't exactly how it works but I think that essentially the Delphi compiler is called with an option for that... and I was wondering if this might be possible to do something similar using Difital Mars C++ compiler... I think the main problem is that C++ is so complex compared to most other language that it would be more difficult to start from C/C++ files. But if we look at Borland, they start with rudimentary support and add more from version to version...
 Another possibility might be to make the D compiler able to import .h
 file and make it visible some part of it... We can start by importing
 POD style struct, function declaration that are compatible (uses
 compatible parameters, return type and calling convention) and constants
 (define and real constant).
Just look at it: all you are suggesting is to put more work on Walter. Shame on you! Digitalmars is definately not Borland or something. He doesn't even come to implement some really vital parts of D specification. ;)
Well... these are suggestions on how I think it might be done... I understand that often we don't have the ressource to do everything we would like. OTOH, if it is easy to uses D in a mixed language environment, it might help it a lot to become a popular language. If I am the only one that would like it, then it might be ignored but I do think that even just for implementing the D compiler C stuff will be need and it might be a good investisment... Maybe the solution would be that D be able to compile for the .NET environment and being able to uses .NET component.
 If we do that, we could uses a special define that the D compiler
 would define so that we might modify the source header if required.
 We could also have the D version available as a define...
Martin Pederson was very kind to donate a pre-processor, which would be a vital part of the converter, which i intend to work almost like SWIG, which allows exactky that. There are 2 reasons why SWIG shouldn't be used: - it is designed to deal with languages almost imcompatible with C, and thus supports very few types; - it is GPLed, which is bad for us. We want MIT-style license and/or a donation to DigitalMars.
Well, I think the solution would be instead to modify Digital Mars C++ compiler and/or other tools to be able to output D module... But maybe the compiler code is too complicate for that to be easy enough to make sense...
 And it might also be interesting to be able to do the conversion
 in the opposite direction in some cases... so that D code could be
 used from C/C++.
Can't really imagine - there are next to no libraries for D. :) Besides, it's much harder this way. First, C++ interoperation should work...
Well this is true if we want full support... but we might start with partial support. This might include exporting functions, POD types, alias and interfaces (for functions and interfaces, all parameters and the return value also need to be compatible). I have read that D interfaces are COM compatible so it would also make sense to have the D compiler generate information (IDL) or being able to import an IDL... In fact, if we are able to uses an IDL (which is probably simpler that C and surely simpler than C++), one would be able to do an IDL that will be usable from both C/C++ and D...
Sep 06 2003
parent Ilya Minkov <minkov cs.tum.edu> writes:
Philippe Mori wrote:
 The point was that with C++ Builder, the .hpp file will get generated
 automatically when compiler from C++ Builder. I don't exactly how it
 works but I think that essentially the Delphi compiler is called with an
 option for that... and I was wondering if this might be possible to
 do something similar using Difital Mars C++ compiler...
DMC++ is closed source -- and that for a good and understandable reason. Pumping it up is bad for community, and for D programming language...
 I think the main problem is that C++ is so complex compared to
 most other language that it would be more difficult to start from
 C/C++ files.
True.
 But if we look at Borland, they start with rudimentary support
 and add more from version to version...
That's also our way.
 OTOH, if it is easy to uses D in a mixed language
 environment, it might help it a lot to become a popular language.
Certainly.
 If I am the only one that would like it, then it might be ignored
 but I do think that even just for implementing the D compiler
 C stuff will be need and it might be a good investisment...
For implementing D compiler, current library is almost enough.
 Maybe the solution would be that D be able to compile for the .NET
 environment and being able to uses .NET component.
Yes, that would be a good and feasible thing. Someone would just have to hack the D frontend - and it's not gonna be myself since i *really* have other things to do. I'm even in the process of loosing my interest in D.
 Well, I think the solution would be instead to modify Digital Mars C++
 compiler and/or other tools to be able to output D module...
 But maybe the compiler code is too complicate for that to be
 easy enough to make sense...
We *don't* *have* DMC++ compiler code. Nor do we want it, since that's what Walter earns his living from. There are open-source compilers, but only TenDRA doesn't have licensing issues. BTW, good that you remind me of it, it's frontend is worth taking a look. :) Ah, another idea: it is probably easy to make a D compiler that outputs TDF - a bytecode format with which tools associated with TenDRA project work.
 Well this is true if we want full support... but we might start with
 partial support. This might include exporting functions, POD types,
 alias and interfaces (for functions and interfaces, all parameters
 and the return value also need to be compatible).
The difference is, for rudimentary support importing C, only declarations need to be generated. For C++ import and for D->C/C++ export alike, big sets of wrappers have to be generated - which is simply a different kind of complexity.
 I have read that D interfaces are COM compatible so it would also
 make sense to have the D compiler generate information (IDL) or
 being able to import an IDL...
This should be a task of a separate tool... A very worthy one.
 In fact, if we are able to uses an IDL (which is probably simpler that
 C and surely simpler than C++), one would be able to do an IDL
 that will be usable from both C/C++ and D...
That's the way that SWIG has gone, and our tool should be similar... -eye
Sep 06 2003
prev sibling parent reply Ilya Minkov <midiclub 8ung.at> writes:
Philippe Mori wrote:
 I think it would be very usefull if someone can write a tool that
 will automatically do the translation and that is able to convert
 most standard C header and most Windows headers without problems and
 also header files generated by MIDL from an IDL file.
I was actually the one who has promised to write one, but i haven't had enough time. I didn't even start the project, because i announced i'm no way willing to do it on my own, but noone wanted to join. This leads to conclusion that noone actually needs the tool.
 We should either support fastcall for extern or automatically
 generate shim...
No, not necessarily. You cannot even expect multiple C++ compilers to interoperate on __fastcall, since it's not standard. BCC and MSVC implement fastcall differently, DMC doesn't implement one at all. In general: never use fastcall for any interfaces. And if it's used in a library, i'd simply make a #define trick to convert it into Pascal convention to be able to use such a library with DMC. What would be more important, is support for C++ classes. Maybe through interfaces? There are also differencies between compilers, so SWIG simply wraps up a C++ class in a set of C functions... Maybe it's the way to go. Another thing that SWIG has done right is a selective pre-processor. Mike Wynn has also put up some ideas for the convertor. http://www.l8night.co.uk/mwynn/d/deimos.html 3-way diffing probably makes little sense. I proposed configuration files, which would discard some identifiers, and point out how to convert others. If the scanner finds new identifiers which it isn't sure how to convert, it is to add them in some section for "undecided" ones. And the user would cut-and-paste it to the other section, which describes what to do. Also, since we would have our own pre-processor, we can provide all kinds of syntax inside the header-file inside "#ifdef DEIMOS" or something alike. -eye
Sep 05 2003
parent reply "Martin M. Pedersen" <martin moeller-pedersen.dk> writes:
Hi,

"Ilya Minkov" <midiclub 8ung.at> wrote in message
news:bjaioc$1su1$1 digitaldaemon.com...
 describes what to do. Also, since we would have our own pre-processor,
 we can provide all kinds of syntax inside the header-file inside "#ifdef
 DEIMOS" or something alike.
If it would help, I would be happy to supply a preprocessor. I wrote a C99 compliant (I hope) preprocessor for another toy project of mine. Regards, Martin M. Pedersen
Sep 05 2003
next sibling parent Ilya Minkov <minkov cs.tum.edu> writes:
Martin M. Pedersen wrote:
 If it would help, I would be happy to supply a preprocessor. I wrote a C99
 compliant (I hope) preprocessor for another toy project of mine.
Ah, thanks, it probably would help. :) Is it written in C, C++ or D? And did you use any parsing framework? The only problem is, whenever it finds a macro definition, it must supply its full text to a function. This function would return a boolean result, which would tell the preprocessor, whether the definition has to be discarded or used. Another thing we need is some parser generator with D output... There is a ton which can be adapted. I would personally like something in the sort of boost.spirit ;) -eye PS. I reposted this message, this time my e-mail adress is correct. :) I just noticed the one that was entered here before has already been disabled for 15 months. :))))))))))))
Sep 05 2003
prev sibling parent reply "Martin M. Pedersen" <martin moeller-pedersen.dk> writes:
"Ilya Minkov" <midiclub 8ung.at> wrote in message
news:bjas5p$29v2$1 digitaldaemon.com...
 If it would help, I would be happy to supply a preprocessor. I wrote a
C99
 compliant (I hope) preprocessor for another toy project of mine.
Ah, thanks, it probably would help. :) Is it written in C, C++ or D? And did you use any parsing framework?
It is in plain C, and I did not use any framework. It is attached. It is a library which interface is defined by "cpp.h". "main.c" implements a traditional "cpp" command using that library, and demonstrates its use. Documentation has been a non-issue for me (until now perhaps), but the idea is that the client keeps calling cpp_gettoken() until end-of-input. A token returned is valid until the next call to cpp_gettoken(). Errors and pragmas are returned as tokens in the token stream where they appeared. It is left over to the client to do whatever it find suitable with the token. Normal preprocessing will handle errors and pragma specially, and emit the whitespaces which is also returned as tokens. If used as a frontend for a C parser, whitespaces is to be ignored, and there will also be needed some special handling of identifiers - keywords would probably need to be identified and given special token tags. Preprocessing numbers would also need to be transformed into integers or floating point literals.
 The only problem is, whenever it finds a macro definition, it must
 supply its full text to a function. This function would return a boolean
 result, which would tell the preprocessor, whether the definition has to
 be discarded or used.
The library builds a table of macros while preprocessing. This table is available, and the "cpp" command dumps it if given the "-m" option. This table could be used for other purposes, of cause. Regards, Martin M. Pedersen begin 666 cpp.zip M(^U_&&T1[,(VX4.H:!&]5#T H1:I5#VNC M_O3H$Y2EAJ]W&C8;U ]5&8Y32)GAN: QY;5-.4^MX?[%M4Y[TLWVL%^&:8W& MPEP9*$/": Q,9C W`F5FDS:3"&9MPB2L^,K*8+?T<+\U-XC$)BQ84>H"(]'M M\I$N1U 2+6BC:I%A!E>+L&D7UF&9P&6."V &H;(4= IN$'4D<H;Q&U#SD"^K M\ J-7P49S'DJ^KBQ("1L?[FX2.)RUL6WD\ASF9-"KBKIB( ^VY-XCL3O<N8\ M)Y18*K. G%F PJ#G1Y21PF MJZNJKT%DH%J* AFOD X2!BKI4Z&FF HE[03PCJ-V4;G78M!6A2,IC03O"[/8 M(><DBEIKB((1EV-%$X],X;8HZ8PJ?+9FMJF_EUXRZEY;2Z2D!6 EI/--'5*5 M$CZ,+)45\AH*):]_EWHT#O5 M[EM83ZA=?W#FPFL\V/ ;U<9\[0R<ME,7$D[::T*U'H7X&!J(?W9W1\3Y\7- MS,*5]1 ?NF^1L3$>2Y'[A_+X?^31^#Q M0X=XKN ,U\OND.T9K[7<X%=M]S_.-99[E^NE!YS/.WF^G8=GJ\K-U'P6_W:= MQV,_WLK+;N#RG_FU8],/7 `_,3^]&TIZ9U,OGZW>3HL-L"=&Z^V[\P]02P,$ MV3,S9V;.K#TXZ]/M=#N GO[']02>=K[/Q(A:>QB/7' =Y])VKFWW&IQWDRMG MW<XO79$,?K)5`ASFX+YY.]7&D(62)40!+7"L%!/Y1/L;1 92I\.%"JP\U;ML M&#E0L H>1 .Q3P]W=PWIG;)MRWAF:F'T343/93I6WDK&U 6WP >2FF!12F9 M4C ]R89VER;;--TLR8DAB^81_]E,J)?0ZDR0N7K5YI%'6\S;AE*?=!KMX&>. MI5NM3%T%-/Y!"CF8>4Y+DT1V]<TQYQF=]MKER=JKRUWNF%ZUM#N)4$D(HHV3 MJ8)JJH"K]NW")U;. CK1'LOLNLL TO3?<SJD^JZY8E/--""WNMUSSK$FC;Q ME;EP? UI81EPR41=O-FHXT V"+E5!^.,B"<Q)%'>,"L`QIDUDJLDC/:L(I.4 M6:N[W%5678/_?TUAGR^^.A<93K!D)WB!T]Q_`U!+`P04````" !5NR4OKO>7 M=&Q;<=W/D==UJ$6:1(E;=N^V__W&CO/6)$UYN6./PQ+$M6?&\_IX;'5>=&QO M;6\!CKWK21^H[TV.J+F #T M'_X\I*P/% GIE"^811>11:D5A51^:!!8J<P]>=3+*F])D;O<H^Y\PJ 5A'QQ M[;H>C#Z/.Y .[ 5S`6>2J'NN?IS&A 7I.*38T\2EW $C9NV>RPU;^ &<:2EJ M(=8EXG\R:(,^6PZY8 OPH(:X`\>G&?4*"3(9>;W:RFKB,#MDQ'5]:N""N<IE MXFD==;#OY-G;[?J38F7.P-,DR\1R25+6'0Y7O:'Y5E8/#U,7SM L8L*0.R;T MS#K M,9L[J1*FY(P$T"D).Q#X48U669'(J;(O-_2Y60EI/<YJG:!-*69=19&OT'7/ M'>ZR)*QR7MATN9=NRGEADT^8)S.BQ9T)<UJG^6K7^A:JN6 $6Z#JW+'9UR!D M483:Q?6(TEJF<ERNX.J%YM1)Q6O7E4FB>QY ]4>B3+0$YD:L2;)#D*A1]"K5 M4L-"Z8 F\6NU7J[6=BDI,2KXW\-/?7J:<>ZA#HI^HVP=C<;#WZ\&Z<4 _'OF M1: CB4HYM5EZ/CX#QRH M;" FA3KRM/::MGE];_*( Y3A]2<Q]]DM>N5;N*$ARCWKJE[-=0_C7OIT^OX= MU-Y7CFLDB9K7J+ X?M'<G3.A1G 8 (7,:J]*7PU ]W:5Z1T?_D=6<;#G8+4 M)F24*KT"CL1TCWM8O;$64Q7.?ZC!2QV/3A13%C+L/H!X0*C "P8Y&((OKD_O MW]95(4'N_:IXG+^(&S(R^?8_NAQ>\"Y8:<:?UO>B49NUB7D,K\/O.NRNQNVW MB=G2G^^ _7J 71%Q%?#GQ3L)[!,0_ <,OAPUF%6,0[>;/"__!E!+`P04```` M\5Z>N^?N' 4_]3D^.CX"?$X7R27PLDCE_04/-S"]F,%L,GD935Y'L]<P_?5R M.KN<O8+52L'\4<&I,[LKUYJ+2XB8YIG<B(AOJHCSJ-*<7ERIJ./UE,+]W 0B M<OF++'B^3 2<*"TW%]D)"8^/-J5,`"$L+81E(E)9"._ZW;N Q"$E7!G &=,! MG_V^#CVC40.O>1XRF0LTEO!;[?;LK/%CW< A-\.NGK>?[OC<P8Q)8!;P]2N> M%8(-00N5,]Z#D98:<5 [8$P;PW9A!3%X>+P*Z-*G"MW^^?8M2AME?(_?%.+1 MB.]M80P\L*HX-T2%QH!,*5$D8,JZ0%8/(V$(SPV%W[+ 69Z7?(^%J9W(,G46 M2\&)P8F=U#IPTY&718.JNVTP"R?=7R,4VDKK_FC:HT:TNTWV&V%W'N=N" D M:A/DI E^X%^8K __$;<`6G?4K<.^OF!O_OUM5US9/<(S[9'#L$'GQP,Q2=OU MZ!#XCL][8:H=`+M>+"MH-)H.CAC^_ -02P,$% ```` `CJD<+_,Y+E\'!0`` M9XH'8HY]/D_[G/=3Q<T_4M<O5!X5ANX"D4*43+,0 2>Q9B).00<(,KL/!0<1 M:U0^XP ZL>>AN%=,/1T[\<.#UXV_;_SZ2<0\S*8(+:G$_#AHF</^ZQIR[E_% M0 L6BJ],BR3>2S 7XW''5'(2XV-[GHBI=WCPK[->D#X4Q>CWX3P,$\XT0D25 ML!7!A794XH01M(V4QYGA:P^[D(JOF/CFU/,^.$;A0]MQC^#F[^MK\""W:#X* M=:9B2\CYGTOV+Q<<I4D&!"R>AJA**E/4_T2R39I[9S[3+)S 0FBOJMZ$.L40 M16Q<).(.O%$ZVY$SY8II'E2B=I:D5A16JU6F$/:FDU0S_F62YV3X=C/=HO+V MYN/5W=7MS?GUMK34E*[ NQ+W*O[A0A(.)U*Q6<3(D%89+OLE1Y1KH>>]38F/ MFJ+2;DA:]$]XDL7:S&)[-L72:5FPT.ZMAN/^('VI5*+<B!?Q;+^HME?%$M1= MZ7!#P M%]Z,WE3V#N);&U/<)K&(S 955H$/O>K77X;+) `,4_Q.?>1EB'')2Z\+K6'+ MJX=474CL\7HYLGAK06(6875.OV+.&V(U-I=16 >Z- BO?C%NCRS?LAL"DTP' M1!(6FY'4A3^NKB\[X)>6FM=X;>Q4(C+T"4D=X!S5DPYL3HK:-:U0N^T8NVXM MM95)-:U7+^SDCF(V!8,L&)4?4\:$.9TH$VO5E8<,,ZS8R FTOFBSV ]R6H21 M1 6L/P6HQLO'/ *]M<'F:JW.I+XZ:I9X\QO>RY;8-E3P+<H=GENJY7F;)0J3 M;O&QUFA8HUFYVO0W3KSRWO=<N=OR&E.!'F-4JRA+G&4NYY;\OI$Y0ZV3+Y5^ MO;O]\_*F`_9XU:'C<7XNI:64L_T9T:3&GH-(R3*;/ %ULD,66, Y[EP:1FY2 M..3-',PJ)2 8*]GL%,(YM7=6^%(;`OOZ16/7&7-A7 Z026"^IM(1PN<BR=+P M]Q-1=4(<^T*E>C2RD/[V;<.D\&K#QA M````" !VG1PO5^[A_L(&``#F M.B"$UT5M%)J32$()*H]<'J=30X26Q1N<[*NVE[NTXKMW[%U 7V#N+NUU-U*6 MM<<S\YN'9]90*;[JM;NSNX/ >M.9G*")9[EEO31#M?([5*]6WU6JQY7Z,:K] M<G+T[N3H"%F6BUI?7/0F6'3C>%3')ZBB47U*9KBBSUA%URN,ZN*FNVYER?.- M$/6ZRE<$RWUBZZ8WP6C/I616GNZ%A_ 7E\HA\3=SR 2!3B.ATTA,8<:(8^>) MS9&)9] LH=:GJ^LB$G.%W9V_?9B_=;JM(C)<=(H8GS >;RRLQCX3KD]17BXX MLKQT6='',<7:<R-AJ/-!_Z)SVQGTF]V8N>(:A2CC*L5%I[E<DA_45MKKCCTA MP;]G/26/TP2#C3";_8NM< )=5H&>=6[5WO2)L SQTU88/V4;I#I<`ZJL KRY M5.W<0)%=<*H0!8JL FM]4&!K?< JM'Z\^8I#Z M6E?EM6YFO=95>:V;6:\U+U3%&RBR"N[F[DQ5V^[.L JN=Z?J2H BJ^ N.A\5 M0%5- >+':==J*YO/]G^OW00;FF=RE6?M9]OY;*/<VC-&<>:Y2=9\=V>>=OQJ M.\_8#L MF\3&$!1HN)=CPSU4*:(<0\4*DE$2B! TRP>#F/ E5J(BW($-))G2$=;LY:A M)4_+%[QLDSS'#MHCS M2PD_S=>GU$KP[)X\A!?.UT I+-G/4ZR&Y&S(0D'.Q&)8Y(+N6!:V^7V]^M!8 M(VLX'-HIEI-I!=8+E!\[DQ>PFC_:6,[*._ ,?^%KK!E0<.T1_72*;D<W5\WS M5KJ%E_D96I-**.&)O )VM]>=?KOS1_SU(\(W !L8`S!#Y.Z MPI#MQ!T;ON+)F*)0\[I]UVOUX[5)J<]KJY.^3T04#F*C^ ".?#NLOOT&27-% M%6ERV;RYE/^VV(S$+KRWR:C;?N/'-G-)&B6U3 SMP*)!!R"JNF `I(E&NN5" MX-L,*CUT!D4TJXFX"#W75Z7 M6YPB\ ,KNMV#S M"%S5UJ=0?0WQGPK&ZXKLBH,D]C5=KN3:&(HDK/4G&TNB17NP<4/P-;Y_.CAX M6"Q1[PBQ1XTQ3'G^221BW&;QG/B3.4#J2RVAIU+,HJ5HX,=7^U98V/ I:D/? M1S"\SH:QIGH!_:$D(W$1A9O;%,'#H MD]1]+GTCP);H;5-V E7R1[;&'K8<^B(;8L(XT5FH]B3JYLT+X]A"EK]&)K(F M?AG RL&%<L<>\C.\HOLW*-/B+AORO&?[ORLI2/O*B6 4*T1.<$*H%"D"9I.D M8)U"5L=V/8[D*\78,PQ,9>Z45Y>4);I83>>8LC1)1/ 8P?*R6+L>EDXUT5FF M][(N-VHU'-;;?>_M^[UKUU*UO-%K>VM["Z#KJ31I`JA;BX\'ZMX#J!\T0*-6 M.ZS6CJJ-(]"H-U^^;C9> _O[)>A]68*G+M=XL3)4V 15Q5!GV .LJ ]F556K MIJ'B?^IR60V$/L7*-KO\*A;Y1-/5^6H"P>[2T!X.9KN86*V"+K2 <:_I$,RA M]3T\J]0BIWTPH/*Q14O[-9:TXTAI$SA55G.+$F9 :V7HH.9.?/2,=.E%K.SY MMS&(E -(GT6A[EJ)9_*,LA$!<([<\)UA"D&VWOB)=J=9P(2?5E!729OM(=D; M><PPE;F,%Z>H%B^YR$D1GM0MH/EVV'[%BZ_=MMN%FQO*L?YP'0^OJ%%\X9"H M#LPU MB-&Y1YP!*_ ^AAL:6B/XM%I8$"VH3*817I4]9&MBO.4809<$3Y:S!K;6<(74 M)V[98?P1+C<>'UH]],/?)?1"F1.ZO*1!LRIVHE3"C YIG\\*PM2(9:Y9.L5) M267,O>?&5!F+"!U3<(5PKZEFF%9K_?'%GA,4$_),8P]RCC0W-?H44 YJ)$'& M-%78:!U<P[1'+DI8W3Y -T$^6K:N>'C=[+(&]CDV%P0>XW=$=P,3GH^S%_-P M;2?ZDA,V;A<Z<5L+.D.%PY%CMM>[T"'N!&-P->I+5XCM2CX]QQ\YG PF',SY M=/%O7ID^R#G3DUG...Y':L<QG-32(Z$;CM!/3FY#NO/T6C*[&:<]2^VTI X M[XC=P ?+9_81&]\>XMLF^\T*Q^ 7`I,(P\\[XW/[CV"R^$LT2IO(PXPVD:)4 M$M=4P58HZ0*<CIQF`9O)LWZV`L7L2+*?U(FM8#O6WB]FCD6TS] Y%C?)1.TR MIR0[RZD)GF4+,<;NG[=MZ+W-Z52=>)?'H':0&C6&T[N(Q#S87&+V^GWI<BR- MLZ:E"%9"65>X(TN:E;%<S3ZOYCSG\2[GS3K,N!Y;?W=Y?<%_2&.;\Q^$C8E2 MIG__O"]ZG<Z?ZBB\F20_'?:'V7+\O> !(ZTZ>K<C>-)YFTX!#U2!AN])-0CW MWUYT1K_%D_UW4MF#WED\R<2+' ZISI(:+.F0);U 22]9TBN6] M+.F))K]>\ MU[[!2?!^([$2+P1\X6\Z^#M MO%Y0<I#ET>9D>8"3KU\Q[O,H(/=I&A/ 9!ZQ>4*_\'GFYS1),YIT)I/9[6_C MFV,21XQW7[_ZKR0+O\A0G&&/43;G<Y;Y`>W ?/\<873/Y,Z<\G6>R .'AT1N MX.DC34ZX_T"&0S*;3T;3\<W\=C*^ 4-?*ZAMTF AKN%I.E_YR?/<SQ_6*YIP M ),PS24\<G3 /BEV`,'^BK: KT)(USQ;\[F?`7\7<H<D$'B"N*I3L_EX.KV= MGB*^)$?=[\^NPO;%9D04' /CU."8WG*,.K'Q"(O^I'-.LIQND+])6FX1DXK' M:D;XB8+/__K\Z=-X>HR_DOMUJ(B;3*XN[V9B$GP)6\>\6%!08 R-3?2!) ? M+/T<KDR9FHU *GJ WU&S"ETQX *"<(=JK!D%TO-'FH.["_V84;5)_C\8H+,' M-:3Y/(BIGW? 0PLZ"DE'L+'A04?37SY?CV]FI$L4-QO(\WRM<=?WH)K.P]CG M'#P MPF=IK!V [!T"?[Q#T,BNA]I*WB"KQC<_5[DD]BLL"D-/I*$C`$320[WNVMBG M7(5"S)/0S)U(8F]HV(7)DHN<^IR2+(:H3Y2H0+X2&(D8H:N,/QMRERLG890S M/AS>?+ZZPG3 $'2W+B,KEA5:M4^;7(TNQM>CZ6_C:;<A/Y6 F/?OXNFDL,$_ M6+Q=+1FR.ZZF'_H[IE]5VD J[='!45VA1.2IL%)JJIEW`6F&F/7)8]Q8.5G( M3BR!N<)]Y*^_RL_??S]JGG!C"]M-_3(\0^LYO*[7,T\:IU0B6N:=59?3QK:* M>MB#Y=UL>G4Y\ZQV;L3+(J^H^"6M% OP'D[=<<NM[J8DF)H<3:ZTL$+A65%S M677,:RE0!4V/?)J.KL> OU /&% [ [+*H,00=K0E6)?Y`Q$NW+)=XDD7EI M M/+TEP MT"PF[/?$V$0CEKU<LPA=?_ PQR]1=,(N.('B(UX41<%9\"DVJ"ZV+ MUH,NT JA?QXF<?1(T3^^L5=E0H>Z%=LQOFH&B=XZ3A,J&5]=:X:0`+=*_1>W M_=Y^;9(ZUBK*#PK7L:J[+- OKF[OQJBGXK*NG8,X&)0HP=)B.\X3. (?^&XV M`T[=>W'T>MK.VW;=0Z+RV+*G<JN <,NU_?X+7GMQ>WT]VG*AS/JE?$&([4RL M')*"[WT _S05"B7X1GUO_!RF+''?-7H]T^EN&]O,TC4 =^)14DG[7>-K^Y8M M<]YPSL.:<[;=MPL#S/ HE.!-J]:ZG8"+DWLIFKV/^1VX:J!VOA]J>]OJWKAA M9[53AFYR9N6AFNWUW"A7+:B1L1C++MR;$'*ZH9 E21? O W&/EC4^%/[U!6" M`JP*FS+]EASS5(M2U3+M>:VPXR*WU1=8:M"O]2HCC+[(2QMU1FLCPE::20KL M_\.9T6NZ3"(>^3$LR2E!QHDD% [)7\[,-=EWAS6S!I5+V&DGQ9+LO!>7J3G% M_R!=)[S7,U%1M4E.1>.K[/7WR?TZPL87RE?8!DGS!<VUY"5_J[6+Z7191 , ML6K%QC%A,')/0['=G4[I0U8Z:*N[[M/%,S .-7UFK)L!NN%/BJ1>;W,F]"JW MQVO$[56B["U>/?80,XZ6XF6[U I$78IL=LVW(/)-!.]!K(-0Q[2K:%-^YVXV MOIGPOV$.!B/J>3AV</,TH(RI))6=% M]*<6(Z21M82RI9] (YD&)U:/F`BIO M$D:)'WL8M2"6B C(,*HR[ >/! #S+52"R.DJW>A+ZMF<6?[HM?*/IL0S:B5= MU!I=P+&^!5MX[K:K<H^(R%K8M=YO&2::AE07N%$5E-<K6FQ"MM\[+)Y8' FF M\;0JQ*:AVU\X]5 54FA9DIFR>) 590*DQ:'X-R1A_UR5&DXW(JB .X-5UA'X M>'A*_$W/#OV_)OE _:?+F]&5Y$&+W]BS?>DNHTLKPA^%R"R*6JUIQ1]'Z+(6 M`DQ"*P\WQN-J(W/4Q;5DN'I-_1]02P,$% ```` `;[\<+U&:I5Y[$ ```GP` M``8```!E>'!R+F/M77MSVS82_[\S_0Z(TEJ2'Y+MI&EB1\ZXMNIH*LNN'YW, MM#T-34$R+Q+)DI1C]^+[[+<``1+$ Z)>CM.S,A-+P&*QV-_NXD$`K*\N]//M M-]]^ ^#S7 M6Q]]QPJ=>^/ QCNH; 7VM7.#Z_9-6+?M>AC8Y(_M^_6$YW>DJL4*7R<LGSNN M'SH#EWR_ M=U#I.:%U-03%O-QZ^:H*^=CM.7TFQ6)U$"/1\:"U=H"MR/'<I: YC("WC9H? ME2I.)J50(]L"(OPN]P22LK%'. $9^;,KIH]KM/(:XPXD[%M2GC6>D$]HQI6C M:T=,,\3]2&U3X RNHX6W*):C1JH$`O)'3T!K!PKZ=X;VVAYX`3%0:ZAO=$+ M!<B^3B$-/SF1?8TJD(BJB"62CVV!P.7-\ [7TN:NG+F59FXIF=MIYK:2^2+- M?*%DODPS7RJ9/Z29/RB9K]+,5TKFCVGFCTKFZS3SM9+Y)LU\HV1:D!E_VQ?4 MH2KK*J'[2:!3]68G= <"G:K"7D)W*-"IVL0)75. 4Q7;3^A^%NBXCN\S#K/U M2HD\-Y[32RP.K \/<,!L+HTZO^VW+YNKJ(=#B+6GIQ<GOS0[J[$SI!:9I+,/ M[RWW[I-U5ZO5TGQB(1M[3MAEHT,`*(WQ*<&X%L8AM8% 8.E4I ;'UII:<(+H M(8YP`(-2C A_`Y1C /+SYTS2I8RN*B?O8(R"\LAPCS#IE'*9&1H]5GAIVT;, M7& ;M.#WS3 M8J2]-VF%5Z9KZQ$&'QF/KG 0)WVZ=L"D*JA"O9]9LMP%KA(KJ:*W,6=5$S(, M,[4F):=U6W ,1DELK;J:1:R00XJ^I65B<*V8-Y6Z`H;:(%XU=IT;'(0P4R.< M-P4<8PR6RF]LI$ZK4YNDT1E!YSX^)=!*,15*L0==64&M\P^'K:/6!8'Q]^T_ M#VJUY&.(!!J,R>=K,H'6^4F*^98&\Q,[$M&6VZ:#FGAA'OB-7.A?$UP(B[?H M18X1O/ZZ;"!.RX:+1VH7$O[1-41J'-J6#W,/_-<8NS8VVT.R.$/P7%M3VY N M07!IRG]8Y5UT%6#KXZZ. M:&]R:6%\L:--+^O32_KD=T*5L=/K*^WAOC4>1CMYAC^_!3_4B.9>';-IQWSJ M1 +Q<A>MF[=^ ,.0K,G[9/TZ>) '7;0NY>%%+( PT^23R%6^SF5DY0<PR&(/ M?B:PD1YU(/YL ,TR>3R..UAN79$UT*R=7W0[E\?MUH44-W*>GLADPC,4.JV6 M0W_11MWGZXWW;%I-:(01R]]/]TPSUFGZ,'I&7Z::9FM)[.GL3.Z]?W HM3JQ MZLO3]N5Y,8,[O_S)R.6XU2G*IG,B^V/"!K(*\F >&7DTCR;PT-L!`S8W%LO> MD%A%GG4JKJ:8A<Q6L+%4QG>Z/0[Q^(%N`R"_JRGY#K?H?!,= 2(<?^C :,2Y MP3/9JK K "?Q;0`D36N_;$/!%#JA`2<N%CNK;OPFRG(_DZ<<7[9-A 59Q8SS MW3R0&S1_-1E0\]>B<R[SE.M+FJ .Z,= %=.U+7<WJ+MSV!L1;2 FMKGSZ9% MG/W.84%#G M=3!7;.02/IB[%53)="ZW+*_3:V?!\,WA>U,^HM0<H\J ESG(E#F!Q=+B_Y65 M*B0M/R<VJ[BL?,Z,0Y5(>$*B/;,7[R^ ;^O)Z3Q^+F_WP1[_8_*P=>EG7>E6 M;:(()^S^C0.OPC:3TR>]RFE7FBILL1!]O\)STST6=!NMZ.("S5BD4=P^V?D> MXBA/+FH$LE19*U"DRCD.HD G'O<P2&CU_CT.(UHU%S*.=NR'=)XUWKI'*(P2 MS6(;(2.NI>\].&;T3/RZT&ND`%(2E!D(\*3L0"!9UQ"V7Z +&FP[AK2BL,I. ML5RQ>6_%C)4DH3U32R%=\P&-LB)$ZLL]638-'L+I]?E0X'()T7!K?NVN4,-7 MQ(TCWVXA*;(MT):<!A"8('Q91.8`9/.?!4 \V9XQ$.6H>2&-ESMP5KV^O3H3 M(O2U)$%G"6JIHH9 >2>_/\?=2\W0+9JM).4\ECB/9<YC+>?",']XPGE^G/^U MAWG:*K18TRJ*&M:LS3>8X2*;/[F*PLTO:/V/M2?[:JQ_;V_IUB]4\>BL?Y'- MGUS%8JU?V6+Q6(Q_[NY=,^,S65E:3-7J.^Y2XEIG%FYQX9-_=M)B8Z482Y%; M88!(V</R!-$DB)[-!M&S62%2]NL]030)(CEF%D-(#H.%`7KRH:D!FLV']F;U M(66_Z1-$DR"21]W%$)('TH4!>O*AJ0&:S8?>SNI#ZK&9?PQ&BYGX3)QGK"UM M\Q8"S44P=MZM,J5#Y\:A^ZFN[A"IHE25I>:LDZU&<3-T9+IKANZ79;/UI=EL M?2%!23G8_62S"[+98Z\W'H[#K\]DOU^:R7Z_").E5X04-5IYRU#FG1 %A][Q M;2*%W42R\=P:=78KK5XO]NGE(L=("QD5J=>O+$^SQ2:#D[?,&%=SY5M %M.4 MKW$*E[D5/+DAG- >N32052]LCQ4O"G=ZV!7V-9-"Q>X4/+]S(^N670KHN.AY MZ%>XSWWHA(*Z3T_;K?,+T3-V>49ZSSN5D*M!8 V.'5VS=/&&=]\**'VJ.%)I M%_CC" ):9HR1W% -%+H]X ZY05$Z-=(Z;'8N^ L>1GY%)(*D]1+32$DSF*)4 MZ&5ERJ&C\H\.1(=NZ%LVKJ3:THW.,SKB9ZZT:IIX%^%,"M,H[;Z \^2'0*IZ M9=Z29T'R/;?\C"&MKM9W`NKWR^QXGSO]^G,\!$QZ3H!M<NO0LD]A)<>O:(? M[ T,GX"]B\FK)BG>_-UK[$4) J/09.=OG#G;ES!KD98Z_3MA'$3>1 AM= ? MZA1I*%FGWIOA<X9''E 0A2 DVAA9'S$1&%NA P.20 \\ZGM;AMWD[M;0,>:Y M&HTZF<N:DS 3]T;JI>=R%&#BZ?I0R8_E%YBD%LX&($08QBYV<_UI3L,`4\P2 M!H;B0<I;'YP9YA96G[RSH_Q\PBN\E$"I89]]B1>'8,HQI52%9I"J*)<%Q<Q+ M:P1%[_> E:3*SB$3"HS,HN?>J$+I*\XP>1LAMC^&DN$IT&::D[2F<UBMZGP^ MP"/+(6^&C17H],'&J=EOQJ1]&.U7$E5E`=]EZ;M)/K-.8KB:T:5BNXW,\%*? MSM-3W'I?;\IW0$SG8N9YW.Q^)> HPRT'=:45)M861%Z(Z] =D>ZI-'G<KV,2 M7L'LQ^.7/QV__!G2-(?EYQP.ZZ"KK!0A.P8O$.$FWC(OW!9>&'J%"/$GS'-/ M008WI^=GOUY>+"_? _[G8U 5^#Z M '$E/MFCK+Q.6&N/:OLVBZ.AX9\K^WU[ M=)%MZJ^NHGD"R"M<A2*.X*R=+! M02%%&4H\QM6?5Q?+B^8,=-=FY>RS]*%[J=R7R PQAR0N) 46\3]L)5LGO+<$ MGNKCH(,]M"Q89*M9IM=,0+:&ZSO)BLJ-$A"E-0*\6FJ!&N#WLNWM3^,3; *A M&0]D\.'HH[^3HP53%K'J75J1[;B4Y!Y*HR'8+%!27J&45S&/I?/FW;LAFL;P MNF!;I&FWDH6JYS=S_&D3*\$YX)!]KF(F"_J_6 O&L.TN/)G#Y1_GY^":U-M< MU>G(,EE4>NIX5UY.10,Y->#N]Z!!?YGECHVT+AY5EQA2[AH;69!-F+3GJN1J M^YTTE >X1:4(*[.-)%IV>A [W:FBK=6&K7,],&V]<;,,\.>1;6V&%9=6+H7? M72J"I4',(R:T`+0%2<'^?=_,EEX;KM%K[=[!6P6.YOU(F'1*UO![TH%Y/3Q? MOE"N15=3$WV+:Z[+-:5!KQ.+\IX]^YH..HE:G3U688]466_.^_HV>L2A#V.G M9 69PPG![H' B]?MW(F\WP,7-5 $:]9HT!Q-ZBD=R9WT6CSBKF_+6K=N#MQ$ M_L!(MQHV7:JFSV'6&VZMN_[>TCP9GHNVRLI.W<[SN1%M1]%?C[LR5T-H**&< M8TO^'?H(Y^XRHV-4[J9,ZM>YBJG>YIWG_>F U+ =LE]!"MI(&ZM.[R.M9]X MYN[[?!!,O14*UJ&92F*E_I;NK^40'14 IS*X>*?976<"'-_O,$OJL U(U0M* MMYBCGQ:8VGMD/^G:1W1G5S\YTK"U;A-UT"K5Q,RT._3548P$:ESMF^FK[T;+ M(U?W5HD^S.\<BAU3"<SM-WI$^P=E^: 2/_][]GQW^,ECK])5P < [1=_PT>] M;'5D92YC[5??;]LV$'X/D/_AJ 6)[-A1[#ZLLV M. _$!1^L8'0Q O'EY4OO\I4W? 6C7R:C\63\,SP]I7#U9PHG=M^')%=<3,!C MBB^CE?#X M_)2I3/A6R7U]<],G\0!X(C,-?,E4'](DZQT??2D2N[FY>__;U:)/ZSC*]+00 ML5TM+-2X/"M/X9G3-&0"QRC Q0SN_*O%FW;P._P-($QRK."6R6Y] [-6Z,K% MWUYST[J=7Y+K--<^2U,A \J( 8]PL88QZMO;][>#C4_ M! \Z&O3LJ)WS'4S^V]Q_E*)DWWBPO-<J8=+FZ1]S]-^2LBZ;I6G1B'8?8;-J MIK8W!],$+8,\M6?=QDAO3+\Z'PWH; ['50,V;!MF,I]ZNL_N,Y>L-KC&1KU( MPWEMW.W;><^RD Y:4C1NW6I7(1TV`IK:3+>F0-W18#ND(1P:!6L.BFVBMI M M9AW.'E/0>V9-1]^P;/Z*(S[2+]KO#JVBOW&\N[FN6U557M",:TR0KA^FLU>: M8:(P[^*24U6(V9;!U.R<S:AFX?2T5)M6^L5B.,<FI;MGX_<60XNTTM7_?+>7 M)IG"8=%ANKFPDR>,-]U]. ^C6-AE',D63!T3Z2WNJ$II[_"1FXNE:=-=FB'3 MK(JG,5#VC Z$_H-F_!%,/P-*P][IJ?63S$_S;&D#J-5,O0F&*3(4)BD-;M-C M3N/BT-;!DA7DU\5/F?2:RH=0AWSASS=02P,$% ```` `KEX<+Y] "(RV!P`` MN"(```<```!I;G!U="YCM1EM3]PV^'LE_H-[K;C<&SE DSIHF+;NJJ(Q0$ _ M]Y!I)\[*O\>F<Y^:CF.FB4/_.'%L5D3?4F8O*[Y)2;[Q0R?(7(P&<>+?;ZT& M"*RZ3 !DF8,L*8CQX?1T3(]&&Z^^<FES' <D)<A9V0DBB;_T_-"]O$86&EB& M.1J^?WTP&^RW(20X#CC"F\NKJ^N_OGY[^H]B<)S3TXN3/Q;'8_J=1'<XS&E] M/#Q MY"7NWF O2K#B(/P[\D/ ,!=8%P*"FL5NJ?L8Q5%:J E$D;&_/T*Y;7,!:GHM M;S)OJY**KL*9\>I+6GISJSI7D67Z>LA AF]YMY XAA>/1LBRT.+D(VJ EN > M3I(HH<!J(*8>A,XZO5V&^,& L;+?#N;8)*5P4S184.*(AIT?WJ*KP: _KNCY M+"]XJ"S9=VK_7.2+Y>+L[.0,=/W33U-J6SBC48)L G#HSB)OYOD!;K5"E!$: M?W8<`P:GR_CT5.0&W'HG 4I +#D-FA<C?U\1J_2<FF&N,4./P%.X__CS$<M% MVR$X 63)0A?* B[ZOB_RE%&GI?^<L)%-"/!0(2!-*2_'V*Q7#B M9 M)L=$$:B)8]9<!_2_*];""P 8-*;6&:BSBX.1RYUICE<U-9$"-MD &9Y48 MQ<-M"G8<T:2$Z#E M5H7 4C\,+-IPU,!4<4;CSYJ-C1I?R!RWS5U><^>IA.T [Y]H]0O9]O796$M MMG;RK2M%)LBQ+5BBVW23">L.\IW2'$5\LL/9K,ZT,YVIZ*.*)*/:;.0B*-G+ M?[*(5!W<E+=%;+/JYC055%&^3H DQX9 6N=/E8$"P>$(G)%PK'B<M#ZZFI60 M4LL55O6S" (,K>T[&E[K-0Y)"IW%;1: UF!SD#N-;4?7]4+WS9&PJ^M\=4VI M&"L[Q6 X&.ZIMJ^&\GYI%Q 0Z$TFBNHD2 (IRL&U_5!>!*"86E:1X.5/70=1 M]Q#W&7$#G M"R%ZC$)T:$*_-33![BL[16$$+C"'VJNZO'K-!7I-)W22/F<PH%H))EG2QZ4= M^<;EZ?>DZHZA)X0#R MEN+6H:*.>,^)E)Y_SR?CDWP7^R'O"!8A2;Y N^7#K>:'O" H;T,\:^(L78E7 M1W& 34=>Y:7H\/CT\\68O^0IKQ#R?=Q+, Y\H%!+$W96K_8%H&!?%1D+E>.W M!*YLQ76XD< "A^4*VU#R[""(BJXX"WW"MJ?L_A5Y!E-F)%RO^9<U7J>8&(S: M%,TUX)+2"EUG!V!'%XJR_.:BV*X8"SA<QQK&O 1 5J*2*4G<+&XJ*<XJBU<F M]%EOB82JFZ5\2G^)I^S*;97-OZ"Y589#GA)R<$6QXGHM1I*LK6#A\F4/[0[S M']%#B).ZP3TGB%)LE- -IS;EE<));WXY3%M"5)<2C:E/:>W:&ZW*Y++9%<-9 MX2;VU&)Z2 &%]:NV3RNBX#VAM M)(7O5Z-&6L2PBVYLYX[32V5?4( E.Z\I*[10`HSLB0J93X6%<][AU)1X$N1; MA&F68#B&!N\>_N)'0G\P<-!*D'(LQ%9,$G4SW3\N"D\6(\8`VTFC6Y) U>,Q MJ;F5Q>QLR>3I;2]%!=/6NMNRN3W^79I %U_+0=HRO?-C- TZAQEM7T7M/6] M+YR+P>8FFQ!]\!G46UTF/YQ0F2^6GWX]_]246MF4AX7<OYT<,;Q\/!,T6^F& MK55=;],P%'VOU/]P*=.:;-W2;D*"5IV$T!X0 XVQO2%%QG%7:ZD38J<PH/^= MKS] \;+0<7OV?]KJ:"*D`KHFV9%1)DP3N;!;DO] H0+SF*V8B44W:\7COBRS ML*=BD2TJEH%=0Q!8FI/E(T]E2BCS<,UW*1CJMB/^P%4HV=><"6JJJ,?Q%7 V M> E3\ LU]9,QE6<"1E=8$XA\\X5EP+ZG6!J+ *P4?AT_UP6/1PYL9S]L02<7 M11N02"5K8].RK-K14]0Q1OAEY8;RD0E=POCS=-RD71Q0M!,!/]Q?72UZ(BR% M;7--XS^8WN,:E4KKCGX\PMO&5T^A.<4S%1WB=<'_K5K^3NU[4<IKD/$J%B,. MY:6>]ZKM8$Q5*D,^'O[Y_R)M<P1WUG&& VW"(Y.<DDPR8S;]%E,9RLW-W?6[ M-AJN&3LLTQ3TPC*_KFTM#KM(1!3J%1NJWR9&SG;KON2K%5Y:&C.2>8>X<G(A M:4847;<C-4:XBHE2.'*-2(M?CZ_&V^&;3O?"_Y-:_8H5C)-<I;D*29HR$56S M:534-\+-ZUUX>7M[?3O10(UIK2:QMKAKC6H0P'ORR$#FF78G0E7 M7 +;<%4YEEKCDMYR$Z0E<<&RWF9-4,26X:PR?P.Z!*(2[J$8IX6E%;R-4S8< MW_["86CI4X>'U7=M31=PUA30 3A3-[=91'GJ&I +_#W5ZY,&[/%LTH ].>M< M:Y/.!38%:XYID L]L::D$Y M:D&NS-:6*<60:UMB">NHN\O8B.AN[8RW_ 90 M2P,$% ```` `KEX<+U&V_6M1! ``410```D```!L:7-T9FEX+F/M6%MOXC 4 MPMJ24,?U"::6>&EHV>W*\PFRP$_40-I/.81^H47.7USQ\ L).HS30;H>2UK: M10$6`'=%+2'9KM\%]48#O1FB3Y\GD[QF'?W%E4\":4*Y/, #LDZ+W$B?VPBT M&D MWFH9\\K_V+D6ZF76=^ECW Y3=H1LU PD)\Y%0)ZY7MO%&::$KVD`NB!5 MMN >&,VY4DR:2<*9W;[F%%8#V M+(QO;WX;?QS/+66J4:PYYU#O7L=:CBW?V>Y>T_P>&5W5^Y'T1"0Z6Y?WP^'1 MG=WM3QM3QNN!>U-%O&)ZI/03\6H^YT*-*5)\(HQFLYM9&]5DL[6W\E,<WT\> M>Y)M&GD!4BT?0?^O95V5^L(UC];<P5%$ H52"28:9 >L/I7FL\EX?NBQM F] MQ?Z1Y.! 473WF8QOY^;A5';L*+2*3JLM6 $C!0LA7Q%:,$\)6_L\=P62_CAB MGG#K7"V;ER KNVT`%RE9>I1Q"X(IN<^PK2?WS<IW/(X?]\O?Q8(Y^DK0+VXF M63=5V$5\,)&0ATJ KA>MTZB9[,A>"2^N(/R*!A5P)",=9N&9%)10&0 $<L,X M'2_WBL(PRK;J .:5V)_.KC_^<8V^?DVG *+?Z!+LP6L]JC#T0 G^\NJ>*$>V MKG._6("PZKD#OAY40HH]%25D2,C'5 K25&ZM*-J8-M"S#N&-:B2'$.=?H9 R M0PNRQ$)154\ZV*2IW[R7-O7_$,G=1M_1DLN9_F_LQ;M8Y44.Y `_2-'B)Q[% M````;6%C<F\N8^T<:V_CQO&[`?^'C2ZV))L^VTHOR%G5`:Y.R0GU"Y8O:'MG M>+X=3D[(W/62Z+7G+,GQZS>D<W3TW>'1#X>='TCG^.3-VY/.6S*?QV3P-2;? MRE&C:)%X](0<NHDW\Y?TT%NFAYYWF"8>^\>+X\,<Z;=LLI<E_Y"A?.6'7K"8 M4-*($W_Y>M9 C=M;AX=D%%//=P.Q,!(NYG<T2;>W*+R1?XLE7%S>C$=7 _[P M],P1+7_Y.#R[&5Z,SX87 T+3C\.SP?;64U=/T(_FL9M0DCU$8I*43*.$T'\N M3>[#J"O:.?C-Y5\'%WOD+IH\'E>T=[I*OOZ4M.1L!^^F8>!_H>2;GIQ0M_SR MBX:!Z3P,P7^W%=?8D]!LD81DZ 8IE?,_J>D8$UJ"9-(C1Z0KW_]LXI?-^_LF M9DYLFB7>/&XA^.4G#GWK8 M!Q3(%*-W=R5LY3HXW,$[^.4(4/Z^,=688(DRI%^SKMG;D;T=HU>O6$[!Q_=Z M%Q_/SO0"Q$\8\*1U_(:F&5N*-")W3HF?`HZ4)DLZL:FXZFMY40ACO9F;[/&! MN69SUK"F3T>W3,V:XZ95NR3W&*33F-"I']))H]WK':DU$0I\0NB.:]$9RBJ& M15N"SJ%C1G98Y\$[830S-KR+W:<PN)X!E+EWG^:WX#A M!<KHX9RK=$)XM9*W\A_#D91<QL=0F*JD#DCP,T*_^FD&T7<9^1/.E86$VE , M%F%V<% `N$NH^\4J[URV[X5D0_J K$H+M$*<.+DI6U043-:6&8M&R2/)(L+, M7U]>.QK_/16DM:N(B!99O,C&;AS3<"*0<*1%^"?SI_";-8X5%'T80A(%B5<( M'ABL5ET>`"0`)JMS9X_A_ 0 ]S8[I.SI\*-Q*OT0\\UN+;!&OZ"G6MG1*T^Z M$DJ%A I+PU(I=!DD58!)E2HOTHA<5VX"^7[SE? N33+Q$^IE_I*B$!8S&!G( M*C*2.$K+44QSQE*)S[%3QAT)78Y12:F=.#QQC >!$\AEY=Y;6F.&*^_"&P>! M1L/IE\2RTMD"S)K'B(&X[^XQHZFNC*'HDT\:NYZ"QXP"#XK=R4\T$]6C#B3 MV02G!0PP5NIO^L6/.=868W;NK,;^A(:9/WT4KIOU.F07E U_ ]SK<D\%K<RZ MU0'??1,;B$B%][A%]$BS5=C-4,2+73OPP<D"NW5MQ"S,%MHK>2[%++BE,6CN MI%>GUX.+<?_L<C2PA^)B922UO(112J:\6UJ:ESN'_N7Y^:D=4"UK1=:.P6P^ MJ^DT"?"VV6Y*GZ4%(';R9)$/CM +W,1EVFA-N<NT6QW;"K(JG5S]N!J'AY\G M>_-+.,(B?>LY1?R4<OX:J TW8NM<PR04I9N9A4VG"Y%T=Q?IP-G9\&HT'%7F MK\\H.C]"(BJ55TE.:ZE67J2N)RMKQ/6UZ"5597,UL:I(C9=9` >2^]3.?* / MX%(I3*[ +O?A,$T>3>U*+I+JI65!FP;;O4Y-N-6KHG,O?FPMQ3 T&NKIE8-E M!F C%N$QLP8+F_BY&V+3[;-2,/7L[[<0KF*OU1<B>E0:X 51RM.0-DI#K(/S MI'0); :"(Q0D]*OK99Q_.1RO=_(-5:X/!1XCK#F4(?9Y15[+D1OCA5P1&B5A M`_2I4%$E- X `A12*E59DI[:G&>M/%9 $SX%6Q%-U 9&123A 83'$:<F,3"- MMG$1JMLI#WXV(R(GT"E W3POG3LKVC?/G]E3F4.SIR+[+]HM,.CC.8B^`HL" M5W=7L/,W]Z7UO%8/I1[+=C)^REO+>,**767\5.HJ"B1\I[E>69_)K2JN52U7 M/;9R&C\5LK0T/]7Z.[4M6O).>)^LF"/ $'N51!Y-4R/,NO>N'SIDZ0;^A&41 M+A2T, ]-4FH&3>V0S,T;95$6-X9<F'HM;?:+'!7+B0GJP^GH`_]3EC$_RIE' M#OVLI GJP,\[ZSC3JSNU4847<)?576&4L:I+'&R"(RXF;'_("LS ]N;,X"7H M'YP73^M8Y$IC!&YD#Q26UP0&,4>BHG(]TXODUEO,*FAF(.O (+PJ+A2'M<V& M_X*A]J/Y'=N69PQK`K>:XH \ B:(>U !LA*6R^*Y7D:MK:;>9U/5Y/6%Y$' MQQ=X;8-T87%S/;SX:? /6W$A$FE9?*ZL,0$:HEK+H()=.MWOV!2>)1%0 (I$ M&MN3Q:*\E"][Y;N<G$IU\4N3TI]1[PLO>1;Y'C]?2;J6`N:'HB5E6O^4XYFJ M)V1I:)VI*N7!Q8MOMIK]9!62&EW[[13,N$8C]TY3X]N:\C:D]F=\!0)XS:NA MS(DI`N\6TRE-/JE=5W42W][[;K^CKB=AUXD=9\'7:E5,'_S,F^7I %J*J54N M.'C\+=")Z1;2&)*-;-H2!((L=R8-)[\J4/0B]:*Z^'A^-KQQY&J+8XO5LD$: M^][ I.RQ!*8Q),AN(JTZ]1(7UFWS;PH:^DU AS0;S>((L6FAC57>HN *T^RR MCJI="_-:P^?/37;+/__=:-:?A=>1"<AL*8AERV %ICW+8>K3KV59O? AY>/B M1WBYM9IR6Z46X)+<19"=V&=&YP#J<5-VQ;1U5(>X>-=?V9?T!VGF9KY'BE? MWRBJKTZ%*^0?0;J1U$I_M9R)7D87M5ONN>-VOK- */NZV?/OI4[ B*E_SY7) MW#VTI MTIHFZ 3M= ,.L0O01 6!P&Q;EYL5"/D\;3)UP7(GI81^ZF9ND&?SUES\27-X M4""_A5U%05G1Q >Z4M'$M[TJ8 >/*Z>5G_<Z1OZ-YVTTUB!>?E+LF/^S`50( M-(X:9>KYN41*IDDT)R)L+,05. $FTG+YY:7,S,4OEI7+]FX.(%YL7[!55?1Z M1*&R%68E.X6#M6ZY&-E!":-CHK#X;U&'_ =02P,$% ```` `CJD<+X0F9UAA M!0``MQ4```8```!M86EN+F.M6%EOXD 0?H^4_]#KR6$"A&-&DVRRC!01S\C: M)" (LZ,=(N28!JS8;:MMD^SNY+]OM=OM`U_DZ(?$5'=_7U6Y+F =O>O:W=G= M0;#VU MMD]U?(9:&M57QAJW]+7;TO662W7V3W><5H2YQZC>5_D6 _Q $-WTYQA)0'>\ MDSEGUIC>VV[2VN0NJ+LPEK.U?I(XP/^V6D EAF=HIO$O1 [%#K5U M'*"C4%GFJ,/F85K!9!0!"A"%I\^W-2+R`.2?;CDRH("[FTVIQ W_"&T'HS5 M'PB3>=->-%/*BW5/L?:08 A=E4-D%1*%01NG]U9X7A6>J!Y;H;E5:'&MV0IO M78 7IU]G.R3]I! KE:Q%<(#SLW/'(HP!KZ L7:H3J1'*:UE4]Q'JX2J^F3D0 M4&N ?WAY>);="KSF+L-:`)W"(%B&QX"RWDWF=')MAE*:2:UF"CO,FZDFU50^ M>;-9`*#YIE=*):G$PY1H)FLL-I5>0/&<_AA$` /-?9FB"O,2O.^>H7UW2B!& MX$9 7IYQB;;9R=FN4"I;4[.*3 C%NKTDT&[F8>V,-,M1JD2A3)G*5NCO_1-D M,^(-PL>K:&(J#J40*=LF(YQ$JQ8KTT*Y<1MM-!'&<4FPP5CN=\;<`(KDNRG. MO\P$I+!41PP.QF0TA72<2E'8<VP`>GOPLY4-A'A/Q((,;#UF(81T,'=R*P^" MYUJMUPNF.HB20'#L:4OT&W3?F7)S6=); K9:W%E$\RXHCX$[-_C&PXN^D \I M5NAJ<*F\/Z^A_6;GDRL\R]&8"\2S"9G4"-XM-$Z D2/"FC "&T5U/]F"1<\O M52[U1<%FDW_$44!1:-)4>JE!15:P)0+AB&E5: ); <'!43;'3LEA]96D'5-X M&67*L)6?\+FHOL<<*C-]*E'+M^MUP"B!*+D>V2:5&%=POW14B;_G%>1)E&YQ ME_(13JP%!*$K1Z0-UK]L/W>DVI;\-;$2?[W:KJ;V>B(07E93WQ 'KS$M_FY6 M8%K5+/JJ/AV/R%OVX 1-11NL?F'!K.=;SLS2=&J[O"7SP&J(=I/GXCQ/5/LP M)E M1>RV]&"EB1?CP5N3'HTA=%G:36 ANX!&XW]WEX^Z56B,Z1Z69.;->V]V M J91930"J1](_8"15_MAO7948&(:'XU[E=V6<4QX !,2<OM*1F[N58$,3U:F M\=G/%2<'-A=PQD0!>!]R!V*:$!<H*R"AC!PK=3Z4A=5Q&(>%I*S9&H:Z^C<( M*88EAV1$C\P)!:HIJ+FQ,MT2G5R]8,/^K'K,8KN%.(MK[Z6=D9"KQXK8;H N M6)>1Y79<JS_9;%(GG/Y[Z6JUPW+UK%6;M6RK)TF;Y,!&=J432W.NF^NP.Z(- M\]LC)T7)F?XV-;#O1_P M;W5T<'5T+F/%55MOVC 4?D?B/QPQQ$TIH4R5VB JH3:;T%B(0GB./&/ : A9 MXK!**_]]=A*:.VH1TOP2Q3[?]YV;?>3>55>]5J\!7\WI2H%]P-R ];%T -O^ M'0P' Z_RX%X>WL/P5KE[4(8/L-NYH+ZZT(QABWW 8:* C#R\I0<BXX,O8RS[ M"7;P-W)_OC3UI6D9ZD(UI<R6;DR^_YQ(D%F<<4&(`VU+]]!FA]HE$$N?ZZHF M54* W2F%+4QC-C6E<S!H^,RS*6MD\!$0RCWE`.ILZK7C2&2D7COLZ0IX4:RH M*!9R7>*L.D^ZWA/;$NBZ.?^A:CU ^Q?B=.NU.%/^'\KP%CK1_LUC^.DSM('N M*9EB8>03,*UO4VTRLZ;/JF8JR:%8!?B8FX>&HZRAW(,ULFU 6V\?;+805CHG MW?D<4]AR>:+L[R^/H)=1(6A5>\Z%_$F9"EY]8JB:)9JW+*,E&KFL7)C,Z+[\ MWY1&5^BRL"/_(>_IV]M'L/'=[6;1%Z4QHKI&'LN9/M:;AC$WE&)KA2X6]Q?Z MY$E5SC.OR!H%-KM>RQ]/(Z]0X-\!"4C?1GQ8M%H5)YFG:QQ=QVSGBZ?7)9 B MA;1I)#D6W.GZ503KD%=!DV>)'];X5%O.9JE#C M`P04````" ".J1POZHESS1 (```M) ``!P```'!A<G-E+F/%6FUSVD80_NX9 MU20![F7WN;V]9W=/:1[M]3D\.#P \+SNV2T2F&%$3RQC2<Y.WI+ST]-?FZ<? MFN<?R-EOK;/SUOE[,I\'I/LM(*_EK#M_ M"H)F*O0U*MLO_":*?.5XEKNP*:D%H;,\F=6P\?" V20W3D M!KB(MYA_I6%T M>$#A&_E;P+_IC2>#X M<T8X/(B8R1R+.!XCL$.39(!F^5X$;3,S/"*!'QDD<OZB$T9<ZNF'!])JKVPZ M=3Q*OG3NOFC08TR=,&(Z=A$-&W3R\2/YH/^C+;S(>?2HS27JFAB7%7+;&6D< M`+C0<T,Z_4Y+JI0(>Y4BY2=K>[D7:^1Z0O"%H1S1[26_KY8L. I$OS?4P[Z3 M=[GELEWAM=)M^COY+- B*)<:A.;CW$QM(<AGI]U;E$M>>)G=>]ADXY7XD"<_ M1!D_S'R4K9(;^>-R":(=2'A,`]>TJ$*]0%$SXM%GW*H(!!)_P8(%DUJ#H'&5 M`7^F3(T:'*T2-\PYS6F81$].$ 6P2 VY-M4RD6*^BQ5H/(R\`:O!O\CAL4F! MX]&6I-TF]\ T6;8&2-UYP+ZG(!0/`R7">A,S"("S$OND1E2]2;A-UI42];^ MLG3LA>F2F>G9H."1^--T.Z-<Z,[F(7' +PGA:5S.,0O?4N'FT42P+2K-2%"7 M)TF"AWRQ.M!Z[&;7I[A,_)027D)C>P'%^7$OF 1G[P64" =[0=7?U^ZY^]H[ M&8SW`DI&^OW RCN4HF:]AQ1A"_Z ) ARML,<WS/="0L7-$]P&Q 5O5P%M<ES M<^&RGZ2%BCPB/T3))QX\B(3^HP<9IIW&S!9D$[4-$KS$/ 8IL4^%OGJIV)]/ MZRL(M9U^"R#WH7;2U>_=W0M1KA.QDNH"`":2U/I")OZP&:=)VL[1R.V!),:> M=%V#T M%7=D^$!\Z52<<L+7 )STC968 ]QS4CMRYX5,"]P/S'#Q\4<-$9I+V<*F'>F M])A48#T^5JGWAZ1?]X>%E"I^&HV?$ ])4878+;(+=9 2\3O2HX1G,U^R0WDB M4"ZC*L9LH;U./+J$LT,Q.HK;IKI>K7M_B4 B+<8]10)J9]>";=O,Q30C/Q?; M*X+U TH:Y9*4?(5_%5)RLBI3OA1'+#U=$"SFSYG#J M<Z4^%]_%RAF[WIBM*F^L+4R*J#T)_*#DMOIZ"&71?6\XZ/1Y7HFE3$FZF<"6 M^?()9I5(`GG2%E)K,S,B'E#P*U[F%MEP/RRX"PLU&EK.R"4)ZBH]G_+]`OBP MM'9I_;7N=4PV"Y(O)GCVQ'M$,]8.VN5EQE.4FIQ[>6EU4VG%Q(B#FTU7`JMR MBEB37*W)W OO/39HS%.%HFE5>!N^/H^3N<7OP_X$W]95WKDH_SE RWL<^3YE M/W>I::G^0S<&"JA\IEJ97.UR0E[FPF _5R7PYU]02P,$% ```` `5;LE+T19 M5JBH($*?FLC:F"58,;:UNX:J+?^]>]GX3M+B![!WY_AVYIN9-9M'?4Y/3D^ M/V?C91\"1!GNV.TM]#J7<-GMOC*[;\WN:_[:?]7M7[Z!S2: T<\`SK36M1\2 M&_?!1,1>.UMLVEMJVK9)B2W^[" P#T;/A+/CPC>%R9>.9[OA$D,M(,ZVLZZ) MQ=.3V6PQ_3KZU 2.PI(H+!H &U/CXVPF5]L0R[ .98W3D]_J7!^^?_X\FC?% M*]R%*QC".1>_N*(V0<Q>#Y24[7N4 ;U&I D>WKF.APMV`I_J5>K\PA:31L'E M+9 $S6,C,+=!6LT(:O56*[.N\$? 6M!+[.\/KVD_5/GANDDW,CA1+#S\D^F] M?11A EE(/&E+ALKB;JDAF;"PKF?O/X[:24?W6#EJ""?[<E8QXGCW1Z-5K,P? MB;*25'>^[\:I=I8BO2OD4ERP[2%"_%U"0(FL?,+I(3WIX,% ?P[B9?FO IHF MB;/BRDV]'?,/AD.H3^IY/FF(C(0XF6? '%%6-L:;E<YDM:IN)#SI- 6EF+63 MQ<_/U?\+J9;W*G%Q 1_=6VGZYJ8N=,1*[S8O7AI+X:35RK:*V,/X>OII_&6\ MYJ:J\(K+XU!^_+RZGE-'C4JDN"6/YO/IO TUT?3,G?CE\W/CT(UHE^!XH%JO MNKC4DE"%/3]D0< L% 386RJ3TD5C`*8)B^FG:9]C<UU :X?"SB</O X&KQ% M;HB8,*Q,R+I^]ZQ9LIA/QHM'ATD,8XV\):\^:T;0_0:)K:WO+ \S)C5;)N/K MDSR04=LNJ<""SE\B&6/7--7 V\))T0D*:EO!R=UR)5O4>T=FJ\A<UKUX+_5] M1S!ZR-[_=&HDX9^2&T6W2BS/3Z-1DD>)"O[\J<ISQ50Y9J)E*^0&RT ^. '2 M+%%A+$V5>(IO5=5FJ\DGK?X;)_4=69%2?1R)E3*P29X_EL]_JY1GXRJ(2E$! M+?$*A2XK*)UJ]CV->?]5WX=Y+Z?>7U!+`P04````" ".J1PO+A\BD_P!``!I ME663Y%L-2A9+*?P(?RWNYW X Y<7Y VZG%FX>&J3;OR;+F$^?7KX_G-NX'%D M*EP4G)%-7OU+2S2-V:IEKDS9[JTUB8DBOF1O -ZSY+UOZ9RC?H^E!<AQ+9E8 MI2//1*UE!RZ&U04?PQK?:LU4921+A42DF%6MLS.&MY![HMITJ0[0I&..*,O6 MP<+R 4>C;C55`XPHD"M3[8Q*.+:P:<)5`(_/LUF7KHZB2.%HY/C'B_VA%9T6 M*.Z96=&=VJ/_5%J'8T*H$-J4;4(0 *W5_ %02P,$% ```` `5;LE+Y;K1NVX M`P``/ P``` ```!P<F%G;6$N8\566V_;-A1^#Y M9;;,"H;)%?B(X1W=$Q_ON8^QSQE67SC/?</KJ0KWN 7XRN4/-,5QL2;0RQG= MG^]Z2GA\Q 42%,-#EL4 MLD\D/1=H"R<!K*+I;3A?0;]_^/3]=#Z953HN5,[4PX H6 H;%'-R78J?C%!< M,)SDCNE3BCSH10N=9\]]J3OE` )=)?]$\TA$/$>85*Y3\BC<:ZM&" *8_SZ; MUSI!DE!1$_)FL1 JH0<--2438FJ0LSF0C\ZP"HFS5!:!=X -(<]X):W.9)B' M"1-.8](;U(%,Y<\[&I/:LQPL_7VBU;L1='QY^,?X8Q ,/GP8*&U'"2Z40*K+ MQC4_Y;DU-'9 (U,;( E*%R%/IW5VYK85EB\:I(IH^CU*R6?NZ Y*QMQ/?OEM MXIF^MT1P"_W:J=+*"I$7(D)Y3M)UZ4:[=5OZM+QY% SAFCI1EA/I+V,=#LVF MK6I"5EA4,;WV0$*IC;6C!D7='B!R%&V/Z\R6V!T\X/:Z:_'4E*KMOK.E;"M[ MY?0+B:J#V*!HN;SJA5]N>Q6]PV&Z)JF FS_+657G'O2E;_D9M\W09%5P!0JN M<'Y[:-W;FT ;.8U5^T>!I$%PJ=X2DJA;7 7M+5>W-SWOT V"L5M[ENOK1"\& M,K77I&Z'T8?G8RP+#C4X9:%F%>V%KP-(EI3NK8H,O0IF)2E5U9NG_P.8%B^[ M`0``? 0```4```!S='(N8ZU2P6[B,!"](_$/LUW4V G%"5M*14JE4E6"2[5: M]K J0L; :*D3V81=M8)O[SA.!"G-K7-PXIEY;YZ?S;POC6:CV0",UF0Q`+/1 M'=[>0M )H1L$/UAPP[HW$/0&5]>#JSZ MK6&<,Z.Y_? T925ERP[Z6NG,4GZ/%5]G"P%GJ8ZW'7EFD\V&B5_%; .H8*;6 M/,G4AO!$&<S(N?;L06FS\>:.4?0J&$(0E7XL$PW$]F$65RXUP4\;+OZH"PI1 M7HE.ZGY8=E HV&WXOHK<;E?R:[')M *;WSG)Q_JL;O,W3DTZYZ)>^3\9KP7* MG$RG/^\?'HEGJQ]'8^XP_&BTR^]._))S(^M'%N"R43E7<%F+_)_26E+UD;5= M6H_8PP375%2>1I/?4VLQ;I,E<5GJ/8SO?\VP%'T&Z?<P-012=I.<Q LZ_5ZN M[A01=FL08;<&,AZ! ^P/H'U [^Z0*T=4GA:LHNI>5MY:<8WHPN5EY?)L&Y&W MMY;4)YDR\4J)16X S2_;]TMU-N(E'F$U)/)\/*+TVS"HD!T(G\D*A5HWX!SV M=&%G+F.MEO]/VD 8QG\GX7^XH1/%0=7-S""R5'HKS?H%6]C73%*/"HU2FFMA MR]3][;L*2&V?[B>;0,GQ>1^>>[G>/5+M1:]RJ5PBXMK61DT2Q3QVQPWV9D$. M&^_(T<'!6^G 1#HZ$1^;QX?-X_=D. T)_1V2[569,YMSYC6)Y'(V\1>>Q!:1 MQ) 4<9;<6!A**=7MY.=>= )2(KGE!^QV/O)()>3^HC&I)(.21!0O8MR_\D \ M^D-J*NN1)N%>/.<!J7C!B,RNB1^$\[ARFJMQ>G*'9FNBT&4> 'NVK!IR! ZY M.YZZ *:V;=DY.YS/.( UA9K]+.R/O"#VKWT MLQ^,`=WI`CKY?UP68S-6/]_ZZJLJ0BE!Z!EBN[+3?7Q[QFYM%;%Y78 :%E H MU=<%Z%!V'$TUGZ'0K6PJR2LCN[-3P (+12BPL ,M]&2;FD.K1Y^QN\5H1[<< MFD+W8!,&.C!;*T"!V1KNEX)ZL(]0S>P %+)"%EC8AQ8ZEK%ZH-/L&X0Z W- MH8Y0A2*W=< *6>"VCALF=I0O>=TV] "?R 9"J:YK/4=S,F #PHKV&>A*!2B8 M47J!9,\ J\(VP&6C0K=M*.MT;<1"7<&"EK6Q\(4AVY]RPA^PKFSW<AO>CV(T MN^']1.A7"\WLL `%$[O$BWQ Z]]R9N\0NC&01N\Q^K1NTBAT(-A\)JG>0]VE MVVR_'O"9K *W?Q%Z+H--_\H=D?_%BW-+7Y_OFZ*6&&T3?,*+N*.9JO:=YN.. M_P=%.]E6!\8R FT*7#Z>3T4$0Z>G+G)CLDRIG8J"MR(WDJG+;^ L/FJFK"^3 M5$,=4MG3.J',F!(U.%'BT'83__OL<Q*<7ZRKZ)8'2'SG\WW?=W>)=7S0JUZK MUT!<1]>+`7#O ;)38FZ =WH&_6[W ]4]M_KGT.\-SBX&_0M8KWT8/_EP%.^Z M]:* T %8=D!6SH9:9!-:A%AA0.0?\7UK%_1('G;8]"T9\KW#B MKAIRL5ZS#GN40CR3:( $U.:.Q]X$SG0Z^_)Y?',, KTYLC=G]-&XFDYQR02' M<>#V?;M>^Z622G> ]V6B*3[!$..LJ.W/B>VZ'C&:8J$S\B+N1QP-)O1,")V? MU%L:<:QV^U(+TADI%9>.2U7 SDC>E_FX#DM M?AG?,H?7H9L'E#P3E_YWE.+W50C8"S)7U3CGX%+V[[1BU6*9F,G?XR6NQW2I MLA!*H.&&]!Q\TK-<5W9P1?NNZ9KXSP8&,M6IE;[HU!DQ^L3%F3=?)Y,\X"2[ M_0*[&N!81^)%C._ *J'5I>HH0T(B54;BG%[53.!9)SV- 9!R`T5LW;%6[)"8 MQ?HW7/ NHK?NNJW2\9FKJ=G\=OKQ:GS [A!4:<SI+>%[H5XKD^O;&8#KA#Q. MQUE0QIWEL\K8$(F93=G!3=D?V&SP;BCX&=]\ C;$&6.*2Q%!FH?#A+ZL YX; M#Z MEQS/TA%E2HW5E-'/U6(*.YP,-4&WN?J2\<4;.L"JV+[A-]!$' 0KFRW$Z_W^ M- BIDC0TLO,]_,.[*P,F/W(32"I2-NUD-"G;9<X0)I8,I-2<3GAM &A<Z F6 MQ0H0'ZIV4 !Y! JC1X]48"L;4;/OP2=O]V+<5T;96C%P>1CODI-8\E!2.]4E MHBF9+W]-S-]02P,$% ```` `5;LE+P[ _]H+! ``*PP```4```!C<' N:*U6 MMV<`LRQKY]0/X8.Q]IEGYIG966;EW ]]NIUN!\%SIKG7R$F2P4[:HU\&OZ+7 MBA>XDVN79W4 ,[\/? ?Y44:HAQV"LA EE"0T=DB:QA0%_CW%]'%0$'YLKG+A M4I:1%CE![I*TVWGI5W_1.,U<EWB#W418].-RK>2MXO](!"P2Y2'Z7*4#RW9" M'!\'D$ %%\NKC6K,),0>,$-JY*+8 \R3/*NM;%.9JA)O]6'G9P2E"92F-C(M M6 %6EF#XHDJC-GQ16T[O1,MS9X<I=L"L-CYG\9<KH?H_,4CED JZJ;$[Q;Z3 M6MA+'FKP$F+88BGN]<\<M%%L6YL;4 VQ:,I1B[SB( XNH3;6<OF*N3052S4V M2U-EV$4;FNI+NRA `5TRD6M=$-+C("%8K]$_$_5?L1XQIB)TQ=$$EU?,Y72Y M:#J]Q"36*>M;P66_AF:J&*W?YVA"M'Z3`!R1#ZUH_0GS>=1!`W:R=%TS;<V6 M&FC P)GVI\"3.4B0(G.)ZTNC)>6:9: NM'93CFI(7XF]/&:L.W%/QSPF"!F/ M2^B&PX2/^M-3.QJO_TOSS9L+^K_6T*TR$X3<8A>Q+VNW\V5T&']O8_J J0MS M('M,"$S+8N#D3H8RO%TMWZD&*G]'I_"I:8)W^*V=V0Z.(N)6HZ7;$3T=Z 2S M0T%6>%O,[8/24[) /3,FGS+DT3CD!RA71 V8&(8EAB&/X4) 24!P"A90FUYQ M5] T% 719/!N[VS>9AL0NS0..4"U;JDLC'WA-['*3G!(R&T4W:"6-A^`U!+ M`P04````" !VG1PO"!23A.4!```S!0``! ```&5X<'(N:*U346OJ,!1^+_0_ M^7)R FY^=+F.ZX!:O2";`'FK^"#O M!?Y;!;WFIT59<TPF %*.<WH "!\$PA )CO4'5Q7J-'MMJ22G`O9E5A<$<,ED M2ID`F1.HZDU!,5 F"=^FF( L3_F";GC*WP?GWUWG9SN M"_704B?C!,A:,E MOE=$],%_?7X9:.PZA-5[^'NVX*]7TW#I]]OH,8YF01+$T33L<F$\#Q[7\<M% M8AK-NLQ#D- MX<^"E<G'AK]\#I<+$ST%D15&<6)YGKO.T6MZO4J+FJBK/LU<TW1R4,E4*N Z M0O(:2Y#I[M3JMO.;LBSTEXJUH#M&,N^<KYD6:$AZ%27; ;6$UB:>(=3L+- R M:YMPA-JSS%J#H1Q?7]'M-91<`5)HF%%.L%3C;]O6H],:4A-]FJC/S)Z/>.FP MT;)XIT8JW9L&EQ7A*<N\=L\PU0&8>C+?4BO(5GJ?;W.ZR^W](VSHMVNH]YY1 M`#L\```&````<')I=BYHO5MM<]LV$OZ>F?P'7-*I9->QX]S+-/&E&<66&TW] MHK.=7N^^<" *DE!3) \ 9?O:^^^WNP!) 0ENXWJR20&N+M<["Z>?9%RL/M% M?YX_>_Z,P<]7H^D[EDFQVE_LK=CA_EOVYO7K/Q^\_O; S;?LS>&[O[Y]]^8M M6RXS-KS/V%>&Z3HM9,3?L8-01 NQX ?12AU$T8&2$?X39=E!)?.K\E6C).<R M"6/%TAG+%YP=C\<L%A,9R =-\?S9ESWD`;[ZX,O*+,\2Q<64JZUH_%)HZ>P% M&')_\<+9^WNH%)?Y_N([>S/*'S+>V.-2)FEC+Q9+D:O&ILJG4SYK;O+\YV76 MT^A6L3QE80R_ACF?LEDJV:?A8*SVX>1 59%P=OVOZ_/A>?#Q[/+XA^O1OX?L M+Z_?_LV(//[F&Z;RAYBS29K&-0^N\$PBR>O-&5P>#INOZZU M^?#BIL5 M+&Y+-?A]%B9*I$DIZG1T,3 +1B> 2EN/BS1GX2H4<3 !KZ _E=&,)/SO:'OQ MNPAE&('_6,[5EJ*XC)O1]?48[-F/%CMT\+Y0* ,;]OL%F&J>0"A'H,X.$NSL MV'R#L_&G <T7QMDBW,QW,OI^=&/S3<5<Y)OY+AW&M7SLZZ\9_O*G][UO>];B M;<^1^%-3XOTC5:&(.;08NX_.?OV5WO[^?2_HM86X]H/K^2 A6XJ[TU3>A7*Z M>EB*U2LOX?"G<?5VQG#E M=%73X<I+>#XXOKJL!-*JF^[F\H?A145'*R_Q>%Q1PH]9=5">C:ZK`^F5EU!G MOY)0K[R$/P[./M<&I]7VL/9<I_#S M7T%2#O*:%M=-`< _J.H8)/"SQCSQO?JXD!+-"(_G^4*S(I+9:J.!/6\UOJB+ MJ$+A*9:TT=]A8"C)S:)*P ?L$P\SN_AB,YDN;1/2S?Q"!M1Q6XO(4R__=1Y& MYH4,<ZB:_KB[9?HR-A621WF*C64+6DU$Z%7MT83?YQ[CO_J.GF!1J3BVNRP+ M%9ZM3&?.H5<;SW%A#A$+E?NU!RCR1=\%;%/3 [6TGW,5QD63%3A_Q&VZH0I+ M3=N= QF.N>I039\=#HZ M+(I3Q?NS;.?#DV*]C!:T`80NAX+6SX\$:[".0 H%!0$>.0BT%&B''8XD)F [ MQ;%QIOI'O\5;-QK-ZYW=)VO>=!R\P)<_;T*:.! ;&N\X<0,*>AGQC7A-F*+9 MI+F$/G^'<IZD;:.-9JP'6O684-:H`F'8FGI8ICR#LZ&N'N\KU_U4*'=X?R:D M:AI1VY">N$9L,L=AB]<PXY.:M]+YG+Q.K:AH9A7=3]BNMG!FLZL7H5J FT2' MWWY[=NE BA(8V-T"ZAI]J!)LFM&&$. 5<0:I\W$B5,8C$<;=2&,([),T,5=/ MI=I87R01>N,5/OW 9UU!D2#GJOGZD=*N+H=EK+>_O]_[T!GXD<\%U1%**<HJ MWW<=_I6'_T>J9&Q^<K;R*T'#N MIQ(CK4*^ZBW,O .ZYS=W !:;,S7<`?T$X =>X;\_]-+V-=?W<<(1.;1ANM+E M8ZX/ZZMP!:DN3?" NL2$$]H]TW&9S2!0J46Q3V_/6W[Y/7<1[HY,IT7T^ZYC M4TI3%S%MN0.EO!"S%WOX-UQG^ 4B$W[' O.%_V:I6Y$%4!/:HBB4-+R3E9A: MI$4\!4\Q*&136:K4E"54 -YSRVE.;T4\T6.K5='3<5CQ8.&B=O6[;U$NAZ[ M"^VJIJD*R6H8NFWCMBP=*MN:ND!Z<)IK-$$.&60K!;D5V>-J$ `V&$H);U[ M$>^05$!!UA3ED91+R%JQ'JH 2X>TM,CQD(X\G&[1MJE1H2M.9SET`U',PPK1 M=(ZH1S?^68EI3%7CW&5)+!I3&%$6`\U9A:ZX6E5-*8?F(!BCUB!$=<"=+BLR M&<Z781UF0]IF+_7^!];G]Q'/<G9]<W*\4YUX'$I5(8'[\409+X -KF=TASVA M66Y'?B+&S.E7K XW2Y7N*W$R!$C2JU[46Q.X[7Q7C1Q%-7Q0_G8A*]0BF "U MJ] 8M $:\('=>+7[5-U)-WQ^43;8.18RC"]%CD 3SO!S3%.#K+B_#C!A"A<C MYU8M>(UK/)%^SOY3\(*72MF?.E02B,*2\ ]<5XTDZ:8I_2Y6$01[M&B&X0U? M9BE^.X4 `2IPD18*AQK2!JNF,(#X1K1H? $1DT+$4ZKU;-17'0GCBPQ(.DHM MCQ1=%_A!G,K+=6F "#HR &9>./-IZ\L4U#CF]&$[S4BU*-9_.2FB6YZK';NB MWFU*!48G07_R2C,SZ;J^W346GP8TU7%$5!<JJHOECJ/5$NKQ>^MC%$*RFK+7 M63IJV(3XL"(92D=+C789N=5R;2S3/,4/ZA2NMC4TI?2_'SU_MDK%=)=RJBE0 M99ES(.J&.QBA *KXIM!F.XRX`6UY)G'>GB9]05\Y6/%XC[[)LXN- *S8H<1) M;Y'?F,7T:U,(;C17`&;J>]Q 46/]]%A:^A99H#A4H]#H M H%&7F(F^&.(<:X21.8[L8^ AS\:>[IH*R<8-1X"*J^;I 1CNSAV*<-QMX1- M[13JR1RO8JP$,^AKH1^M$ ?ZRWRO;D/*>*HVD-&T?8TP='CVRD&NGM)VB:!" MT9)A)KBT74O<I2&X1V1Y,NG (H=K!V!D!ZP_YLFBW9" C;QC,-QH9F,<`NP2 MJ>,L(BU3L1>4B0*KFSS-^IND2 _%;DUBRIJ:9DUUHF5V,JPO;<S;Y.U:C24' ME0&G;?%:!K)Z)$*J3J9%YC \HA9P)6P04+G5H*CC69/ UJ.R%1K4]3L2S-P! MNOK' KKA2#OBHWH,KG(HG'NDJ0AQ'2+2$F'4<\RX.YW99Z1+V"PX= ,(8 N) MQ+ZLA^[=?8-2VGQP';E<\6F_F4*1W/!3HA(>;/#Q5">C+[= UG 25P>/?1)/ M735C)+58J0>P.#WEL2'KPN5UI;]A5=VL/G)AD7>4^X;R":>VGY82J'IO740] M!G,\8&9H899!A>K+HI3EFUUNS=*5?/7LK14MAA?4:VM'(=K&"0\AS7,]B*(? M E/_2 4E/<*7./LHTGY02D/IT3+K-\'^L(W_+5C$S2"<J!:S+[XFD%,1PKS$ M(8TZ.Q%-NPZ(Z=L)%7 K^BM:U2;VXH>?.WD$=_,$'7I *HP>H++[??K86%6: M%EW9P1+%J9.WVECC9AC\C!Y:*_+W^HY <FRIN'Z/ZF]"(]H&?1^)&-2H8.V0 M *-O/P(``(D&```,````36%K969I;&4N=F,WK51=:]LP%'V.P?_A0OW0TL7. MTHVPRP9+PQXZ.E):V+JQ%T61$RVV960[Y.=/GW96>6\-`1WIGGOU<<_QQ<4K M_^)(_R?)W1;A&SFPG!<L/=+%FR.\3><PG\UNLMF';/9>0;R9X7P!95G#EU,- MA66\_EWC: V?(!6;/W&TU*C FSAZUHB=F([?W]VN;[\^J152%((FE^LKV'1Y MSJ2!5%1;#W M:PTJ>,7.*A2\:7-^,BLEH5)8U- #B MCRVQM=3)6:61>XS'Y>-/]1CFCDNUN'IX\--GPTDNU=(5JF-QDP?)I4M3X8FZ MQP&FE2C$3L!4W56R4CT/*;!2<W5P3#Z M+P TTA +.YF DTQ(L?)!,W\9])I"HZXAK'4TL'K!H=5>4&90(#HUCE MV\G+%HV R)G8D:O[!&24RM:P0<$+WXT-A )]V9 [XR U+L$K6%&"%:O5KDJ M[-<;URX% J3!:>A<%U!Z!Z(UXPC!&1.M1T<(UJEH/!N&>_^B\W) <;Y&;>RQ M``!-86ME9FEL92YL:6YU>*U346O;,!!^CL'_X:!^2.EJNPUC[%AA:=A#QT9* M"Z.#O:B*G( ZMI#MD)\_22<Y8?+>& +Z=/?=6=)]W\7%.__2Q/YGV<,&X2=[ M[^1!%/S0%9P7G>9VX4H54>?,?S<DH&HU_)+=P&I8%:NK*_A$C/>_;YJLX0[R M-DV6=F5I\ )W-OSCX7Y]__W9!%E=MSR;KR_A=: JH1WD;;,)H)); DJY=3/L M"8BF;]\<^I,F,P!Q5,R7&4B-=H(163:\'C;"8S7T#IDG$F<=:MGUE3RZR)YQ MW1+JZ #MT(<ZQ70G/.KZ\Q:*]3M*:+;=,P>[7H>U9]3+G%PT%OG'>%H^_3:/ M4<M7=\VEB:\>'TW$;5\<+9N;T"6:DTE7"MG<5YKT;,LY7&_ANH7LZS3%= [ MI(R= 2UF&K2M.P^F2>[F F?-.61?;&8<&M+\<F[N*P_YSIXWWZ7):9;HYQI1 MPHS137LJ[2>/7 4QA12!;O]O,L $G6!.:2N-$VO4$)*<HC8G4:$7V!1%CP3] MOR\%):+39-3D3)\8Q#I M.L0[/RX#HJ*3>= ;*:*,ID+RUP3!>PW)=A,$,A\Z&\;IT9+H[1E1O%71>G4J MZ?V+WLL19?0UDL4C0IK\!5!+`0(5"Q0````(`'VV'"\0!Q,0U (``'8)```' M` ``A D``` ``````````0` `+:!^0(``&)U9F9E<BYC4$L!`A4+% ```` ` M5;LE+Z[WET'^! ``>QX```8``````````0` `+:!O 4``&-O;F0N8U!+`0(5 M:6<N8U!+`0(5"Q0````(`(ZI'"_S.2Y?!P4``'D5```%``````````$`( "V M =L.``!C<' N8U!+`0(5"Q0````(`':='"]7[N'^P 8``.8H```&```````` M``$`( "V 044``!D=6UP+F-02P$"%0L4````" !OOQPO3;#F>A\'```Q, `` M!P`````````!`" `MH'K& ``96YT;VLN8U!+`0(5"Q0````(`&^_'"_Q1C4: M* D``+TI```(``````````$`( "V 2\B``!E>'!A;F0N8U!+`0(5"Q0````( M`&^_'"]1FJ5>>Q ```)\```&``````````$`( "V 7\K``!E>'!R+F-02P$" M<"YC4$L!`A4+% ```` `CJD<+TQ-`)0<! ``0 \```D``````````0` `+:! MCT ``&EN8VQU9&4N8U!+`0(5"Q0````(`*Y>'"^?8 B,M <``+ B```'```` MI H```8``````````0` `+:!K4P``&QI;F4N8U!+`0(5"Q0````(`*Y>'"]1 MMOUK400``%$4```)``````````$`( "V 510``!L:7-T9FEX+F-02P$"%0L4 M8U!+`0(5"Q0````(`(ZI'"^$)F=8804``+<5```&``````````$`( "V 1%C M``!M86EN+F-02P$"%0L4````" ".J1POS;Z>H((!``#W! ``!0`````````! M`" `MH&6: ``;7-G+F-02P$"%0L4````" !OOQPON\'0B)D"``"_"0``" `` M```````!`" `MH$[: ``;W5T<'5T+F-02P$"%0L4````" ".J1POZHESS1 ( M```M) ``!P`````````!`" `MH'Z; ``<&%R<V4N8U!+`0(5"Q0````(`%6[ M% ```` `CJD<+RX?(I/\`0``:04```8``````````0` `+:!8'D``'!A=& N M8U!+`0(5"Q0````(`%6[)2^6ZT;MN ,``#X,```(``````````$`( "V 8![ M``$`( "V 5Y_``!S='(N8U!+`0(5"Q0````(`'VV'"]2J=$JYP(``&T,```( M``````````$`( "V 3^!``!S=')T86<N8U!+`0(5"Q0````(`&^_'"]3;6C0 MI0,``(</```'``````````$`( "V 4R$``!T;VME;BYC4$L!`A4+% ```` ` M5;LE+P[ _]H+! ``*PP```4``````````0` `+:!%H ``&-P<"YH4$L!`A4+ M% ```` `=IT<+P 4DX3E`0``,P4```8``````````0` `+:!1(P``&5X<'(N M:%!+`0(5"Q0````(`&^_'"_UD8I9'PX``#L\```&``````````$`( "V 4V. M`" `MH&0G ``36%K969I;&4N=F,W4$L!`A4+% ```` ``K0E+[7I.PT<` `` M5P8```X``````````0` `+:!^9X``$UA:V5F:6QE+FQI;G5X4$L%! `````> -`!X`.P8``$&A```````` ` end
Sep 05 2003
parent Ilya Minkov <minkov cs.tum.edu> writes:
Martin M. Pedersen wrote:
 It is in plain C, and I did not use any framework. It is attached.
Thanks a lot! Documentation is probably not requiered - the source is well commented. It contains a lot of C-specific stuff though. I think i convert it to D, then most source is cleaned out... -eye
Sep 05 2003