/[gxemul]/trunk/doc/debian-1.png
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/doc/debian-1.png

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24 - (show annotations)
Mon Oct 8 16:19:56 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: application/octet-stream
File size: 23218 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1256 2006/06/23 20:43:44 debug Exp $
20060219	Various minor updates. Removing the old MIPS16 skeleton code,
		because it will need to be rewritten for dyntrans anyway.
20060220-22	Removing the non-working dyntrans backend support.
		Continuing on the 64-bit dyntrans virtual memory generalization.
20060223	More work on the 64-bit vm generalization.
20060225	Beginning on MIPS dyntrans load/store instructions.
		Minor PPC updates (64-bit load/store, etc).
		Fixes for the variable-instruction-length framework, some
		minor AVR updates (a simple Hello World program works!).
		Beginning on a skeleton for automatically generating documen-
		tation (for devices etc.).
20060226	PPC updates (adding some more 64-bit instructions, etc).
		AVR updates (more instructions).
		FINALLY found and fixed the zs bug, making NetBSD/macppc
		accept the serial console.
20060301	Adding more AVR instructions.
20060304	Continuing on AVR-related stuff. Beginning on a framework for
		cycle-accurate device emulation. Adding an experimental "PAL
		TV" device (just a dummy so far).
20060305	Adding more AVR instructions.
		Adding a dummy epcom serial controller (for TS7200 emulation).
20060310	Removing the emul() command from configuration files, so only
		net() and machine() are supported.
		Minor progress on the MIPS dyntrans rewrite.
20060311	Continuing on the MIPS dyntrans rewrite (adding more
		instructions, etc).
20060315	Adding more instructions (sllv, srav, srlv, bgtz[l], blez[l],
		beql, bnel, slti[u], various loads and stores).
20060316	Removing the ALWAYS_SIGNEXTEND_32 option, since it was rarely
		used.
		Adding more MIPS dyntrans instructions, and fixing bugs.
20060318	Implementing fast loads/stores for MIPS dyntrans (big/little
		endian, 32-bit and 64-bit modes).
20060320	Making MIPS dyntrans the default configure option; use
		"--enable-oldmips" to use the old bintrans system.
		Adding MIPS dyntrans dmult[u]; minor updates.
20060322	Continuing... adding some more instructions.
		Adding a simple skeleton for demangling C++ "_ZN" symbols.
20060323	Moving src/debugger.c into a new directory (src/debugger/).
20060324	Fixing the hack used to load PPC ELFs (useful for relocated
		Linux/ppc kernels), and adding a dummy G3 machine mode.
20060325-26	Beginning to experiment with GDB remote serial protocol
		connections; adding a -G command line option for selecting
		which TCP port to listen to.
20060330	Beginning a major cleanup to replace things like "0x%016llx"
		with more correct "0x%016"PRIx64, etc.
		Continuing on the GDB remote serial protocol support.
20060331	More cleanup, and some minor GDB remote progress.
20060402	Adding a hack to the configure script, to allow compilation
		on systems that lack PRIx64 etc.
20060406	Removing the temporary FreeBSD/arm hack in dev_ns16550.c and
		replacing it with a better fix from Olivier Houchard.
20060407	A remote debugger (gdb or ddd) can now start and stop the
		emulator using the GDB remote serial protocol, and registers
		and memory can be read. MIPS only for now.
20060408	More GDB progress: single-stepping also works, and also adding
		support for ARM, PowerPC, and Alpha targets.
		Continuing on the delay-slot-across-page-boundary issue.
20060412	Minor update: beginning to add support for the SPARC target
		to the remote GDB functionality.
20060414	Various MIPS updates: adding more instructions for dyntrans
		(eret, add), and making some exceptions work. Fixing a bug
		in dmult[u].
		Implementing the first SPARC instructions (sethi, or).
20060415	Adding "magic trap" instructions so that PROM calls can be
		software emulated in MIPS dyntrans.
		Adding more MIPS dyntrans instructions (ddiv, dadd) and
		fixing another bug in dmult.
20060416	More MIPS dyntrans progress: adding [d]addi, movn, movz, dsllv,
		rfi, an ugly hack for supporting R2000/R3000 style faked caches,
		preliminary interrupt support, and various other updates and
		bugfixes.
20060417	Adding more SPARC instructions (add, sub, sll[x], sra[x],
		srl[x]), and useful SPARC header definitions.
		Adding the first (trivial) x86/AMD64 dyntrans instructions (nop,
		cli/sti, stc/clc, std/cld, simple mov, inc ax). Various other
		x86 updates related to variable instruction length stuff.
		Adding unaligned loads/stores to the MIPS dyntrans mode (but
		still using the pre-dyntrans (slow) imlementation).
20060419	Fixing a MIPS dyntrans exception-in-delay-slot bug.
		Removing the old "show opcode statistics" functionality, since
		it wasn't really useful and isn't implemented for dyntrans.
		Single-stepping (or running with instruction trace) now looks
		ok with dyntrans with delay-slot architectures.
20060420	Minor hacks (removing the -B command line option when compiled
		for non-bintrans, and some other very minor updates).
		Adding (slow) MIPS dyntrans load-linked/store-conditional.
20060422	Applying fixes for bugs discovered by Nils Weller's nwcc
		(static DEC memmap => now per machine, and adding an extern
		keyword in cpu_arm_instr.c).
		Finally found one of the MIPS dyntrans bugs that I've been
		looking for (copy/paste spelling error BIG vs LITTLE endian in
		cpu_mips_instr_loadstore.c for 16-bit fast stores).
		FINALLY found the major MIPS dyntrans bug: slti vs sltiu
		signed/unsigned code in cpu_mips_instr.c. :-)
		Adding more MIPS dyntrans instructions (lwc1, swc1, bgezal[l],
		ctc1, tlt[u], tge[u], tne, beginning on rdhwr).
		NetBSD/hpcmips can now reach userland when using dyntrans :-)
		Adding some more x86 dyntrans instructions.
		Finally removed the old Alpha-specific virtual memory code,
		and replaced it with the generic 64-bit version.
		Beginning to add disassembly support for SPECIAL3 MIPS opcodes.
20060423	Continuing on the delay-slot-across-page-boundary issue;
		adding an end_of_page2 ic slot (like I had planned before, but
		had removed for some reason).
		Adding a quick-and-dirty fallback to legacy coprocessor 1
		code (i.e. skipping dyntrans implementation for now).
		NetBSD/hpcmips and NetBSD/pmax (when running on an emulated
		R4400) can now be installed and run. :-)  (Many bugs left
		to fix, though.)
		Adding more MIPS dyntrans instructions: madd[u], msub[u].
		Cleaning up the SPECIAL2 vs R5900/TX79/C790 "MMI" opcode
		maps somewhat (disassembly and dyntrans instruction decoding).
20060424	Adding an isa_revision field to mips_cpu_types.h, and making
		sure that SPECIAL3 opcodes cause Reserved Instruction
		exceptions on MIPS32/64 revisions lower than 2.
		Adding the SPARC 'ba', 'call', 'jmpl/retl', 'and', and 'xor'
		instructions.
20060425	Removing the -m command line option ("run at most x 
		instructions") and -T ("single_step_on_bad_addr"), because
		they never worked correctly with dyntrans anyway.
		Freshening up the man page.
20060428	Adding more MIPS dyntrans instructions: bltzal[l], idle.
		Enabling MIPS dyntrans compare interrupts.
20060429	FINALLY found the weird dyntrans bug, causing NetBSD etc. to
		behave strangely: some floating point code (conditional
		coprocessor branches) could not be reused from the old
		non-dyntrans code. The "quick-and-dirty fallback" only appeared
		to work. Fixing by implementing bc1* for MIPS dyntrans.
		More MIPS instructions: [d]sub, sdc1, ldc1, dmtc1, dmfc1, cfc0.
		Freshening up MIPS floating point disassembly appearance.
20060430	Continuing on C790/R5900/TX79 disassembly; implementing 128-bit
		"por" and "pextlw".
20060504	Disabling -u (userland emulation) unless compiled as unstable
		development version.
		Beginning on freshening up the testmachine include files,
		to make it easier to reuse those files (placing them in
		src/include/testmachine/), and beginning on a set of "demos"
		or "tutorials" for the testmachine functionality.
		Minor updates to the MIPS GDB remote protocol stub.
		Refreshing doc/experiments.html and gdb_remote.html.
		Enabling Alpha emulation in the stable release configuration,
		even though no guest OSes for Alpha can run yet.
20060505	Adding a generic 'settings' object, which will contain
		references to settable variables (which will later be possible
		to access using the debugger).
20060506	Updating dev_disk and corresponding demo/documentation (and
		switching from SCSI to IDE disk types, so it actually works
		with current test machines :-).
20060510	Adding a -D_LARGEFILE_SOURCE hack for 64-bit Linux hosts,
		so that fseeko() doesn't give a warning.
		Updating the section about how dyntrans works (the "runnable
		IR") in doc/intro.html.
		Instruction updates (some x64=1 checks, some more R5900
		dyntrans stuff: better mul/mult separation from MIPS32/64,
		adding ei and di).
		Updating MIPS cpuregs.h to a newer one (from NetBSD).
		Adding more MIPS dyntrans instructions: deret, ehb.
20060514	Adding disassembly and beginning implementation of SPARC wr
		and wrpr instructions.
20060515	Adding a SUN SPARC machine mode, with dummy SS20 and Ultra1
		machines. Adding the 32-bit "rd psr" instruction.
20060517	Disassembly support for the general SPARC rd instruction.
		Partial implementation of the cmp (subcc) instruction.
		Some other minor updates (making sure that R5900 processors
		start up with the EIE bit enabled, otherwise Linux/playstation2
		receives no interrupts).
20060519	Minor MIPS updates/cleanups.
20060521	Moving the MeshCube machine into evbmips; this seems to work
		reasonably well with a snapshot of a NetBSD MeshCube kernel.
		Cleanup/fix of MIPS config0 register initialization.
20060529	Minor MIPS fixes, including a sign-extension fix to the
		unaligned load/store code, which makes NetBSD/pmax on R3000
		work better with dyntrans. (Ultrix and Linux/DECstation still
		don't work, though.)
20060530	Minor updates to the Alpha machine mode: adding an AlphaBook
		mode, an LCA bus (forwarding accesses to an ISA bus), etc.
20060531	Applying a bugfix for the MIPS dyntrans sc[d] instruction from
		Ondrej Palkovsky. (Many thanks.)
20060601	Minifix to allow ARM immediate msr instruction to not give
		an error for some valid values.
		More Alpha updates.
20060602	Some minor Alpha updates.
20060603	Adding the Alpha cmpbge instruction. NetBSD/alpha prints its
		first boot messages :-) on an emulated Alphabook 1.
20060612	Minor updates; adding a dev_ether.h include file for the
		testmachine ether device. Continuing the hunt for the dyntrans
		bug which makes Linux and Ultrix on DECstation behave
		strangely... FINALLY found it! It seems to be related to
		invalidation of the translation cache, on tlbw{r,i}. There
		also seems to be some remaining interrupt-related problems.
20060614	Correcting the implementation of ldc1/sdc1 for MIPS dyntrans
		(so that it uses 16 32-bit registers if the FR bit in the
		status register is not set).
20060616	REMOVING BINTRANS COMPLETELY!
		Removing the old MIPS interpretation mode.
		Removing the MFHILO_DELAY and instruction delay stuff, because
		they wouldn't work with dyntrans anyway.
20060617	Some documentation updates (adding "NetBSD-archive" to some
		URLs, and new Debian/DECstation installation screenshots).
		Removing the "tracenull" and "enable-caches" configure options.
		Improving MIPS dyntrans performance somewhat (only invalidate
		translations if necessary, on writes to the entryhi register,
		instead of doing it for all cop0 writes).
20060618	More cleanup after the removal of the old MIPS emulation.
		Trying to fix the MIPS dyntrans performance bugs/bottlenecks;
		only semi-successful so far (for R3000).
20060620	Minor update to allow clean compilation again on Tru64/Alpha.
20060622	MIPS cleanup and fixes (removing the pc_last stuff, which
		doesn't make sense with dyntrans anyway, and fixing a cross-
		page-delay-slot-with-exception case in end_of_page).
		Removing the old max_random_cycles_per_chunk stuff, and the
		concept of cycles vs instructions for MIPS emulation.
		FINALLY found and fixed the bug which caused NetBSD/pmax
		clocks to behave strangely (it was a load to the zero register,
		which was treated as a NOP; now it is treated as a load to a
		dummy scratch register).
20060623	Increasing the dyntrans chunk size back to
		N_SAFE_DYNTRANS_LIMIT, instead of N_SAFE_DYNTRANS_LIMIT/2.
		Preparing for a quick release, even though there are known
		bugs, and performance for non-R3000 MIPS emulation is very
		poor. :-/
		Reverting to half the dyntrans chunk size again, because
		NetBSD/cats seemed less stable with full size chunks. :(
		NetBSD/sgimips 3.0 can now run :-)  (With release 0.3.8, only
		NetBSD/sgimips 2.1 worked, not 3.0.)

==============  RELEASE 0.4.0  ==============


1 PNG
2 
3 IHDR ~pigAMA a1PLTE
4
5
6 ^"""% &
7 &&&***. ...2"2226&666:::=*>>>BBBF/FFFJ6JJJNNNP6R>"RRRVBVB"VVVYQBZZZ[<^F^VB^VL^^^bFbN
8 dR4ebYeeefN
9 ffhEjV:jjjmj_nnnpdNtQtttvb.yWy\zfF{{{|P|pXSb.V\Vn2fn.zHjcr
10 y<z.Zk v
11 v$^nCrz
12 |,2rv={$,j s" . Ŋ ƛ
13 Ȑ ʖ"ʢE˦Α
14 ΢*Җ
15 Ң
16 Ҧ
17 κ՚ ֦:֪6׮؞
18 †ۢ
19
20  
21
22  6-+&<J;Y8tEXtSoftwareXV Version 3.10a Rev: 12/29/94 (PNG patch 1.2).I IDATx흍]Y'ڻeW]URRVqZL|I!PH5PL6ivLL]qbQⴵCk~ߙcfι=y~dw=w33g sx`M;xo@t״߱#38cm$2x#j+ x$
23 2i(8/2``f ݗIÙ{7 k[K+l\ㅆ72 V7y{MۆN;}[z|]s|m|&Oan2H]pԚ+.8c g >28c`S8*pDw4'`!dvaC?28jgo>Q7&v?J2CͯH1GNK4
24 #4Ch$ Y7o%$ =!6IwvS.ҿepЮe 2oo iqm8I{;.X8mIQ5X2p!v g0qoO[fWL;iL6'gv6=p&=?1 a{,md v2O7`[g2-oۺ_4B±`R8A6R 9:[y)3@p礛d-d \e߮4al<ɉRH饓""31Fr3m9 lCb:RY%d 2Hd'2x  CxH{0gKO dp1duuu2QyG]յͳΞ\_[+o{޸qK7d0}ՍWo]<wk6װe V7/޼<Y9`ri `2o[I\qa,[`~kMV8O`s V^t 6okV gvj"yser3l\Nl^Zߑù[k|㔁3q6A7Ef :g`OlZ[1tu,S`ݧGd
25 `zkn`qnՋ{Å[4 >pƮn}Wn]@&=|&|/}'e "eRҗ[WV>{ů_0\J\y0nꏬ]xɵ+`{oM>֥\Y{2~Sk};x 2 `u뾵n//w\{V,՜
26 /Ov~OE$sV> woַ}`dp;?+w;W9YT28{{n|; .`dpa#z/[;*}gerimeip^c<++7>pye t H[.N~?O=l\F`id0YՏ>[=}Ͻ++LVV#V `idz>̣Ͼuާ*\~
27 !ՍK\>g>裏vyPC9C uE<b* +v 'w/uʍk(
28 0~zcW_=R{@]eyow%~h/mbq`q͕3 ۗSoݺ$"e0Yۺ[ooH[y ,+Ww㑮www>=OVri1`z'~N=2Yqr`qڎ
29 V6ڂߞN+]+ճ/ln<{o}s UZ[ev 4w_{Wַޠhe0Ytses#;l]ڕL!U;;f% [׶'SQfYOVVVTa0Rn^5Y3 v
30 eGa/ztn`sr~^ÿ7]-|He1X_!½~G}~o5
31 d­sg2xquG70Ft W7^.Ww'epDQ`N;v-O{Op#dkÄGS.H^A#Q  z8e0`2ظ+7V&l{ D`ʃwC+(W"_ݚOm%`u_=o}֢G>H|vaAzdmk~t9# vttvMd0"Lַ.߸gƎ !{k7ϱ`D2Xۺ}'旋2xo_˿!HK˯}OL>m'|;w>̳E`O|x׾owJ=b-EF38{/y3;/%!/==/Yl0|)/</K?xO{G۹ l|_'}+/w2Lؼk2x o xow3 g0"<#dk:Aͷ?##^5f`GoP>Kr7^K<_ ֶn}9|͕~;o~gB?K?&.xrP<$dמE F"˿^;?{٫%gg?|mHdp7~vq?KW.n'<]=vxΝW߼tfˏ= /;w+<Օ{>+y>[6Vq8d]O<SO?K`;v)w}nQ헞~r~Gd|z|wx慗o O<oGzᕯ3=Y 0*&::w[|!<'ϥ|ܼu?'{{~ "K)]~?>yֹC_>#!ez|lm1G~-*֥ku]M N.|M\0bun]tu5%0Yܺx%o0.;p# XN=v~eޯG?_o(7Pn>_#U=?㒁jD~cVvlR^,h `, Fkh]Ȯ4=6E3 Æp4|8YL&
32 }N5NC>ӷ2jGeK7h)yc_z~]fM}ǐ5Jfon=10:o|92S3}n =ԺJUAYRz?zΠ `l)+wgaBaAU*3 @󔁷 I}dȠ  <&ԣ^xe"2p>@5+'.9aGzB1YtPZ,T\4Mɩd?+@?{?׫&eie'>X A \`.hk1F\  tP9{clDk<9㕭G th_asASwf cĢ 2(<6O1~!dzڶ'
33 =;*nNԣjP,ˀ Bw@ڼ+N 28 U[ D˘U < H^ S'5dޒdj2 9 o, <"eoq s*#h0e0أ
34 2QL]2d8(p|L<ȏD^)I2d d g/o>:~ fCw3^O,P2_@x#" ˠK> p !|1AB g0|n+s>Òg0A[>0|>P*J>!eЖ Upe0|!6ˀ|3N593*3hg@ e@>@ 2dȠr>H3ϋ|sCgsg#gp28|VE%C@Ȁ|s3-%AKI3P=iΠ-A BS>=OD-2ho5k>2 <  $ ?A"&2d Xf$Oˁ3M tf"3 mP. J"-^}TLw)eQ ƺt9o &#RyEu,sy.`00!Yo%9.PV¡ s h?߁ (n xц]N U!aٍ#"< Sq`t<d0 b2g Rn
35 G()g Y?`EH1so4G9o=(dzEz 2@ 2 V{b7`NK["|^Sy!Xu s4D.[;
36 M=cB+PdM k-2չʠ<!8 IK|ir@ǯ%RgGH51MF3S-yB 8Ad Zj5UMC}re"a/C$ 5)0B!_ͤC _h"mtD=qVAވ}U! qYyZ3<2y@
37 BM8՞E pB QwƦeP?N7FIqfjг "X<X_d ΜA JbQsΣ:q\_j2
38 0/blΛ5o(Q?W/G +lkM=%Pc c4${P5i<|a.=d˹Ќ, zpRT~o  W]n,})r@`8v *=Q q{@6,ko@_:A&~GGd+DAF|:fUQV%y+zPj Fku0Ad{+F@G@7f/PHC0ͼ0 T+ke`ed
39 ܟ j"ρ;@ T62[+'_6!/o@P*@ V<~ {i|iBt ^`nA{"yπ5> 82HyYA#, <I] -Z82Xaa].$yXȗ PAˏz%D٨=h @'XF0'Q~, d衝cQp"8՗C),fY+oW K#2Ltj
40 b`46X9tj`2G#t\;R#2ʠ?p4Gn zRZwV:54$=_vYcn^O5 cAV7ې, <xQd3;O|! 5yB㐗ot2HeIJȢ]kQvE wb9!Y1 A/{*f+`e m$gL2O?a.'3r `2ډ uڹ:9ՠ5S7 & S*Ջs !OW0L3z>g C6ļNm/o/OHYOX D@ d 2 :ܯxDz2(MOV,_Ըy?{ Sc=sN+I\{V9:hwmAhhVpur\YheXk̍28H&%i.?86FȕE9KpT½@NfyyG;: W.ZrlaUg(++2_ҝ8t~銣2A4CβbIc 4X2!ꐩ
41 +1Zyߐt~y&%Iכ{fOܨi 6R1Ðeo7 dMyXN `FxK2p]bMьaa-֬k B,5YAʢ 0 WE5q B0dciղԷoj9 {?Z -ʼ 5x9 ~4c?GOf:\]&DlwY܃N& Oմ(yAgp Ӏh<<ThN :YE~cU+m22ң2(2dF&^ :{O z3h.hs>'.R>e/b-6TX+ vI~^#_ ECˠg>}^ BeN0NR}x=ʠ?!\`>2Zhҝ?.T'T|d&Zd0tgW 9;8fA|^ك  %ウ 2Q8@ Q,0 8-2*@)DkLr Ѫ_AHBE]|߸*i޶zcLt@S$Ģ,MS! X S 1NZ"o~D7_j@ b hMW1guEH.)(V%Ӷq2er Z{!!:jIJfb>r[0|3d *2p2L0G$#onAN5sK&*92^ޣ^2h&/Y9q޸A1-*6b@&VO҄2ohR!'`.bb@[2@ @PAkvΏ8{&f /Qtjprl2(7evw#giyÎ_d);4 '`>2Py ڿpmy( kL 3 sAJH=rRZ)KǠ$XZJz_ BPavg0ox5nhJTcWOqw!?yB}T0 tH`r+`j U !?Ϯ{2?G[A"8fhladPtCeO% qѾL Z2?d_Vd"}@wnl2p0eS76g] M"*Vb'w$2 ~3ApgApȟlp ㎜B IDAT;_ q:_HOX穏匌B*bG`q; xd n<0LdE1_ڢʓ(m"
42 SQ-₫3 #N_ (p{2X]h 7ncIbڔ+ݚ\h. nvAE1ɠc +"F#BLBI146[x4|<9n ~o {+y3! dE+lw>L(t۰'[?]lve^ci$/C2ʰUgC-A6QV ~
43 RVNWO3?NNR 2^ʙd/q>0 ^~0hD(wy~`>^~ Gee2"xyݚ3BiJNj%Ag [Dt48cc'=ʗT#g`$FxO9 D wjz2 r`YՊiٰ`ٵA?; e4hXɠP<3tn3яɩb Bе,iUl<+d/>NV`bCe
44 HaR4+ǯXWU^Qg0 n:L1"8m)hjGGCOy,2r$K~62~jEdPXd<AsAXe @eаd0(_`6w1|<~i@5O[Hژ>>22 >>kz  d @)ϓQ+C| }P|a~" #gCJlUФcT `F%LZcAQ֞!1 UbqoEY(8!%t^?:e,ʱU-jXIu23a.W<(iZR1Z[m@6O}6hw(T!?!w
45 s  6" 1򷥣"=ʥ~2` |QD" Tt32d`=Z--AXyg%A8= E##@UM1D9U<MHg {UْO2@ @Prl+?U/zI3}G<<ԣS{)ٳGQj'%BWY/!?S̟zOkvkSW[;"% T ̊IGW"*6nIFמu xd KזFffWAL*=2e d$dl+r>z-tY^j2'W͐M?K$/N ėdwLn tA9:)Hdt01ȠVّA(`96dUegmsd^U820C}{ ݝ@&+@-0dPydh&bGΜ%zG yPA-ɄX>۞ im]yy \sϐ^Hz2O|4ȠԱ>$ָdp
46 ;t6Ld\m $N fg@>X
47 ˉπ|0
48 tgx8{3pA>X^|ѝ`4e@>!\XN ||0.3 Q xF"||3ˠԱ>$  @ 8 BgK  /gcA|*o@  `=?π|2  g!җ|3%AKN>e@>2
49 3H7 b:֧d@>d@>d22xz,XG uP0^ M8+N+6"ˠti%~ޟ.-(Ad`[;/N ~~39]22! DΑAB 'Oi~3e78#O> b5"2IMeczAŲaխ∽.J~N[ fC:1@(2,t@*$vA:
50 rr&aV-2H] BeבX2p|&w]"[mmd;#82&A>dP˫ `e`L1sQyѢJ$:gPʿh1wY!:2S!dێOG
51 lV\7^َCuw7S"(EG #C( t f`48u l- K{NpR~o=6 y{dv!>$=@?
52 MT=] aQm fj1:!vw0mݮ4WNWt!΃>NS42F BتQh5J7?%hA Y6 ^>#v5 n (t=n#Q@w&, bQ`1dPGP0g R fs#I9iC 4!ENrۮ_zagEvA)`g d  OGДz[ڛy Q^u 9:("^nRtrc̊tB1q k7jA@m2H^X+4$0/  N%`uuI&0 I0q-}Y*hT~>d0 j(#e )d`'9UE#(r4e8BArW!Yw'<@N$Ve`UȻ: Ă|
53 2L&]30?~6j%ED", 1yqWKɛWo0ZsNBsJׄ `2D+XȪ~_\9\ńcG]K`=}04Xt3i,Pȣ7dLLR
54 'Мf̖]͕oב 53kK=Ƞk>T򁅕:/ BVSq
55 |D  32(/g4 身0g39םF!ou%S@#282Ϡ}Z"oO[A|cO@-9  d 2d
56 2HXI_Hd$'maW53ЁNrf#qK>?Q6t Qdp3HVMG+p-&2 ՚rkެ.Pթ^2z娕HB., 5Ay*׸^wMgm*PthZLw 25Jyw6>>M~FG@]lmҼ#Q:뒱edᠥF,v3BUET'D*Ǒ,+FªX3NU׭{g$GnO$Y+ҽNi]GzjDž1 n}BS=n2ꎯ:ŕ;u=#'S(FN a\][V_O<_ظ{x_:{ZQmie`GM:2z4ɠmb:Cd~\Xvx^'&L2פA(=p.ˠhYd -z2Pc.2:`.282h}hݭ㹟sS;.U6.:H:fuFM'u5=pfcE zd/Tu뒳 ˱v=ˆ{ 2@ 2 >9\}m?m@מAVc'ZO`h42o-(@L zŝd}[
57 96 L :d)&(EZ2#X6(dp2
58 Ӹ+3dD6 /Q_ AL&w/Cʠx2hH $; YKȠgSf8n.KxZ/ u%Cq@מ m  d =@ XMKT$┻-(bQz<R?Lfe f )twQBգ zUZԚ} pZe`nVRlV8HY1 UPȠՄ#*\D٭؂BOIĤؓ_2ܓٶjQËt~ͫn`^=73P.4j§b!hHw{ N6dBrT66) /lj 3@4'x}dvK2UYT ;wgDe3Y5 (D; Ä3!8EeίEk82jΠ 8 L ZSewC0Ƭ/%Ks2-$ -Y2cMև˜ g&@A,*OĴ;Yy'(о(G2})APyOzz>'Ɨgh
59 .8!,Zg1I  d XhDY5xOY&(܏A_wN4{gLz |bj6m՝}</ (~uW ':t Ƞ0r+jFP,z֪!]dp+e8@P e1se2b*ĝ>0Ix" .n#y^2nZCMP
60 n߿jѩ5]2E 黠 y!YYygcA&Y" d+/w;Ǟrmsv~(ɖNG!/PYc3=z2p ` 2K(^ͻˀ `,2"oё=kc{#_BuC< .:+Og(286o 2 2/Wx5Ɓxcqϲ]+Df?{]Ǧ[k:r2"0%äE'(lT/&,0!o!*X!ퟋuQA(vD+sP@(wȿ+&Cb D񽷗ZOTCY0κ;BfzQDteP0^%\iiE3o|QXEdIfEdg]7b0h(!}"BRqD;] `9eeH$u>>72Md\l?[d`ÕA)Awx dк( Of1z?ud F8"˲w=0!+ d" @043OaNT,hK_ԎCvQV>>7缬ˊ|DWNDU2gv@}V.Rͬ6+-?JeW|U\rNV ˑ¢-p?A_d<:pz9K2IL)׈0>6Վ 0aBPdP>Ae`v|8v>q$(c$\7;F82Ac>Z.iYp% uRwIBEJ2ȓd)' >!_d'&| 58pzfWBah߽skXb dЖk٭V ;qgP81L.cI؂ O Z7oEŜd+2 2nzd %A[ѢC+d+jAa8|hބӱI f\td> ޢ"hvA30L]G,MF'3x93ヶ 4 XXG\Kfh,Udڭ;6\^EI*d*?m>4׻bACQ5 *] hqn28=2E+ˑy믨S2p|XVb\f!+Itq+NN7k;}95`1RtU͌MNJW:@E~p=\I gmn)
61
62 J*bG Y6;L2>Fd'?g.z d^)usAt
63 `dДw2%؃6 ×A)SI]4MCޡd@>XX~Q+g*N`7p,x
64 j~tjv8N̯&:;
65 '3XZh΀ 2lt 2ˠ?#[v*P L9ˠGP^B 68aBx5 3$+ C>2t[d#0+2FS[v/2@Ӌ܂ZVVLF! "82B!a{..F58R@ ϑ@sQ-Dwn4 dp2ps6X1U Ȉ NjkGPoVzP \0М4Y,h;Z4̨Ƣ#'Am  2@2d2(<kJ=4sw\%"!؅d[zJ B^H[)V9-kR4AAQ-9Ȃ/5, 20 b 앑aVd1ZחݰdF
66 iǒ+! ϊ2p6 ++KԬkNLVW-paY/TP"E$XAtj+ ;?N@ɷW+l3w,ajI?3'4agBYpiaT2,aYaPG}Wly <,?:ād0!#2ELC>Z, 6֨}3adb6 ҃|Q`=]f-6:EGAeXt''@ 2@ 򢣙&%V~YѨH_Nd0€;;`z*V~*F1FS: AZJ˦ښŖX]0 nl2pF2@{k &Akas^*v<D^RtHe )Z`^lyzercE*U6+twznI4.@54ޒ LX 0;)'n~#U~ p2h/n˅i1{6ޝX~N'`SX>N ,9( wM VeH ȠmΠ*{d1 s<Z-]| sf^F
67 @nBgӇYރhd5^ʧ aEGs 
68 ȼ J3Y2 0I`@ r OG)~Bz^CH|bp2hLJ %cCR a-S]#2sy5}Ku~Ca2ƒ.Z]:jB@ſ|v\Ue??zd`?e2hNQQ>&yd`uEX)*Xh/m/,(Lޛtr zW2g«ў3 bcg/cQV8A-Uʠ2v ZY ar\Ap2P_%ه@lAb|&K, |a}XAޘ2H7<G^C*2cA (zIDAT\t쮘 U#ù)6H1p7f p2d d 2gIdՁ:B^`Tn*$Xtc) V(2 ( AMc2X[PVjj! 8*!o20?TUURCNwIE9".@ j %Rdyыڍ UeN= :1%S_@uUPT'ȏ tGd32Mu{wbksIT5Ag 42y*; &23gPhhQtaHmG'EG^v&̸(y##8)n!,#_dи1$2PXV 1LdTGkTO9RjO?z_hxre^[R)cS 0 Ō&:dZebjam]{S+VOa.|dc02h{e0ݺVe<UG~WyHOv++碱Nvs8{/9[Ag&n6&:,ܼ~#+e"8FX=Q[1:/imٟ*VjCyxyuZSwz}}EFY 0/lDji\~a"ГoU@gFDb<2Y㏶ 77ndgB߽JƢ;\Уd俱X J{;x2=e0]mz Xzz Q Fh NDY`6t>sR^y 'XqE s!54oo/pWwNM2ȱt4gcGTɉ|?iB/u]I!ynoX\düTҶ2d, SsR~qc-0vu'Wdgxzj暗e<eХXʌ2h#YudV+z\M(]c~.1] `~2g.7hH- "T=k=7@٘ܶwg~n~%?/|dgwb|Czy)un~99,  % Lp#aʍ<?n'4@<cT}e-0g`'Uo\JbΉ MFJyȓ=oft!\fdWr =]4 juN<t1&纬#?eb|v ܼfP2(5ad`|EA#X$4S1V^oΠ z=Z402J2[ÜPVx£E0uёo֞&xy
69 EG5 )k38B\w!`ÜA;@xud@"2@ A2nj);'3IVʠ_+-, y\~xd ʕz,XP8zFޫZ(h=`ݹgAHgbu2P#dJ`ae ӈY902Ȣ}֯܀O#B@ 3d 2dtA%*0z>g˴0ɾ"}>9 A(4fRcAk`Moj ):7 jGw{]G7^$ `2HKUP̿N>Xo՚v1_H)Oq1" d~l0{y;aX dn5qzn=FQݬX'oqdMԤqZ(˱b0߬y 0 /C`:7Fk 5^(GPwe`^_Vْ@"Out `FdqJxfSDKmT=X^ow׷z-nitYwy`qK:iTVd}Wx<P& _w3h&  djj4"330tKbmgkHf[e#_yn' ^:=gӄd~ӃtM 8b |`; /"sʯg!-9d 62v@ )ADc:~c!@*4QR2PǦ0) 6X-od}ů vA-A{SSY$c$@WD3gHX-R/[WڏTG-+UרAx|
70 v~7@Fe^ru!;^(h T^d3ߣ#<D/h 95RVY85KQ?@W2^^Mar+4K4,428-5+&,f@%5!s|*ܝ-X:Ry^nϠۜ2`&JM :Afӂ #8dY=ˉ=0gh1sWϫ@k9oCˀG0<^gV SQȏ FgNL>Mpƺn'f.}~1Y `qԆǽ_6 @ 2ŗA7=EwkN5>6%2Xzt_һxG/x+ o=l2h̖N$#d``++Ȗ<8z+_'@S ATbm? 'jZF.lvB4atb)ςw A,kQ^||Kgrq#¡^ڳPhLL+:S ,!C%_tI&^ L7R 2D $N=MWW08ĐsX2qgJF"UvSAq<gP1@%3Ұ L;"Du"/A2`9rg@@" d ҧt|r=r4#$Ь7cҠo~ʠ1A@sQXk M;%uX oum\Z=SʠWbtJ, d^sYm T­$W.') X\uuAQX8eb$јm5TE9tVT8F)2Q9d aBhZTNlk.dGqd`80,\Ƞ -~ J2ȏ:ge[{"$:+fN{?٠!SYGY< 0Afa\G 2@ 2 1&: >nXpV+b鰭D@2PUEf&UDQ) -՘`d. BVüp ](e}L^)ʠv]~XGQN]ALʕ/Rn~ 4 y 2sZ({@or޼s^[` e;6&k/郬A | Ẑ 
71 s-`2 Te`m_. LyD)h%;DdIQ1v3]yŕ9I" gQHh%j9$O&nLf)u 2@ @ @Mv>Bʓڣ:1$Ϋ7j=/m-OB c*RP̛',d!b#/Mep'@f~b`2(MN2Py8 0j)j
72 l ܹ /otX{9^d`pW2(͞AhAe?U@%'ZM 7 IEmy`20
73
74 sDž <Dq |Ҡ?(>MPOTo[td6)F(q&@{`hm4v @ `d;~~A{].D]uu>{o=0W_XuLk52m*xpEO')-{L閁gD솗<* %ˋ>`a{lH[#pz>iHuzX8vٌGRX?& IC˱%2w~(GU*Nʨ/3L^SNgz&,<ȫ, ܒN %i-Ro?djN&
75 VGFc+ {%Ȼe`(}4M""5OF p20''/|dP;k`f({c8=2wœ5v |Q Äjxyzp\2(|1@e+a|tlnnn/6۹u{,⣌zND>iX`pw`2`"y2
76 h`@ t@DZC=U/=6兾SVWS>l<
77 ۏќL[Sp)@gTJ` -vwϠy,,|vn !` ʒ١''IyVe uy(K]s`iIC(2/C%+j< 2 2i0 9|;k/vXo+H@5f`wV)-FmY`=P@*πKׁIF_pd`%T3XB{Rm-d D?K%7yi T z'A dˠ^}<^ރlshpR2 ]cŢ f3<gE0;n<9'rQbA>;5<Mcx~:@<z'KN7t1kC N4d@dwa @0_?Y|0z9.SꥶکU[h@\  rtAR,j4 ΣQo!t^8o)`> b,o.MG үw
78 -
79 (Dȋ, yWPq>_d 3g !r5V6 rÕJ ;`9,x˄&6o|gA\ɌUm`
80 %Ѱ2~U9?_d !/ZSϠQYOݒTޱ+'CJ2wAiA-/X0i/\d.
81 u ,S)AA~NN2(x9}&xי8vD.82o'{ 'TAr>
82 yt%׭/Xdʞ22@2d2HC/}O1XrVRw Dj;`{YӐ[SL`4\Z|0kst_">~F#BUt]_u4<b%/T%$q&2 ^څhzH^9 ` 2N1t(TrZ}cd"2UDGIy Ãj`M TUP~|baմ XӞ ܂f ,3LA[_{o3G `9d:.[H#AѢ2t Är
83 (Ҕi;v z/:2dyjOάjC#|c 'itR39N v-\0sl">eorje0Ge&' b p2 jad @ 2d @ \eKL"ic7CXo@tAYnF`Z{'utIME,ܒLIENDB`

Properties

Name Value
svn:mime-type application/octet-stream

  ViewVC Help
Powered by ViewVC 1.1.26